WP fail2ban - Version 4.2.4

Version Description

  • Add filter for login failed message.
  • Fix logging spam comments from admin area.
  • Fix Settings link from Plugins page.
  • Update Freemius library
Download this release

Release Info

Developer invisnet
Plugin Icon 128x128 WP fail2ban
Version 4.2.4
Comparing to
See all releases

Code changes from version 4.2.3 to 4.2.4

Files changed (54) hide show
  1. admin/admin.php +3 -3
  2. admin/config.php +1 -1
  3. admin/lib/about.php +24 -11
  4. filters.d/wordpress-extra.conf +1 -1
  5. filters.d/wordpress-hard.conf +1 -1
  6. filters.d/wordpress-soft.conf +1 -1
  7. readme.txt +10 -1
  8. vendor/freemius/wordpress-sdk/.gitattributes +11 -0
  9. vendor/freemius/wordpress-sdk/assets/css/admin/account.css +1 -1
  10. vendor/freemius/wordpress-sdk/assets/css/admin/add-ons.css +2 -2
  11. vendor/freemius/wordpress-sdk/assets/css/admin/common.css +1 -1
  12. vendor/freemius/wordpress-sdk/assets/css/admin/connect.css +1 -1
  13. vendor/freemius/wordpress-sdk/assets/css/admin/dialog-boxes.css +1 -1
  14. vendor/freemius/wordpress-sdk/assets/scss/admin/_badge.scss +14 -0
  15. vendor/freemius/wordpress-sdk/assets/scss/admin/_license-activation.scss +5 -5
  16. vendor/freemius/wordpress-sdk/assets/scss/admin/_multisite-options.scss +4 -4
  17. vendor/freemius/wordpress-sdk/assets/scss/admin/_tag.scss +28 -0
  18. vendor/freemius/wordpress-sdk/assets/scss/admin/_themes.scss +21 -14
  19. vendor/freemius/wordpress-sdk/assets/scss/admin/account.scss +5 -0
  20. vendor/freemius/wordpress-sdk/assets/scss/admin/add-ons.scss +172 -12
  21. vendor/freemius/wordpress-sdk/assets/scss/admin/connect.scss +1 -1
  22. vendor/freemius/wordpress-sdk/assets/scss/admin/plugins.scss +12 -0
  23. vendor/freemius/wordpress-sdk/config.php +3 -3
  24. vendor/freemius/wordpress-sdk/includes/class-freemius.php +1844 -355
  25. vendor/freemius/wordpress-sdk/includes/class-fs-api.php +77 -38
  26. vendor/freemius/wordpress-sdk/includes/class-fs-plugin-updater.php +164 -36
  27. vendor/freemius/wordpress-sdk/includes/class-fs-storage.php +2 -0
  28. vendor/freemius/wordpress-sdk/includes/entities/class-fs-payment.php +58 -0
  29. vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin-license.php +22 -1
  30. vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin-tag.php +12 -2
  31. vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin.php +12 -0
  32. vendor/freemius/wordpress-sdk/includes/entities/class-fs-site.php +4 -1
  33. vendor/freemius/wordpress-sdk/includes/entities/class-fs-user.php +17 -0
  34. vendor/freemius/wordpress-sdk/includes/fs-core-functions.php +35 -6
  35. vendor/freemius/wordpress-sdk/includes/fs-plugin-info-dialog.php +557 -90
  36. vendor/freemius/wordpress-sdk/includes/i18n.php +2 -2
  37. vendor/freemius/wordpress-sdk/includes/managers/class-fs-admin-menu-manager.php +25 -14
  38. vendor/freemius/wordpress-sdk/includes/managers/class-fs-option-manager.php +10 -3
  39. vendor/freemius/wordpress-sdk/languages/freemius-da_DK.mo +0 -0
  40. vendor/freemius/wordpress-sdk/languages/freemius-da_DK.po +1010 -722
  41. vendor/freemius/wordpress-sdk/languages/freemius-en.mo +0 -0
  42. vendor/freemius/wordpress-sdk/languages/freemius-en.po +510 -444
  43. vendor/freemius/wordpress-sdk/languages/freemius-es_ES.mo +0 -0
  44. vendor/freemius/wordpress-sdk/languages/freemius-es_ES.po +585 -510
  45. vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.mo +0 -0
  46. vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.po +585 -510
  47. vendor/freemius/wordpress-sdk/languages/freemius-he_IL.mo +0 -0
  48. vendor/freemius/wordpress-sdk/languages/freemius-he_IL.po +585 -510
  49. vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.mo +0 -0
  50. vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.po +586 -511
  51. vendor/freemius/wordpress-sdk/languages/freemius-it_IT.mo +0 -0
  52. vendor/freemius/wordpress-sdk/languages/freemius-it_IT.po +586 -511
  53. vendor/freemius/wordpress-sdk/languages/freemius-ja_JP.mo +0 -0
  54. vendor/freemius/wordpress-sdk/languages/freemius-ja_JP.po +442 -389
admin/admin.php CHANGED
@@ -11,8 +11,8 @@ namespace org\lecklider\charles\wordpress\wp_fail2ban;
11
  if ( !defined( 'ABSPATH' ) ) {
12
  exit;
13
  }
14
- require dirname( __FILE__ ) . '/config.php';
15
- require dirname( __FILE__ ) . '/lib/about.php';
16
  /**
17
  * Register admin menus
18
  *
@@ -53,7 +53,7 @@ function plugin_action_links( $links, $file )
53
  {
54
  if ( preg_match( "|{$file}\$|", WP_FAIL2BAN_FILE ) ) {
55
  // Add Settings at the start
56
- array_unshift( $links, '<a href="' . admin_url( 'options-general.php' ) . '?page=wp-fail2ban-settings&tab=welcome">Settings</a>' );
57
  }
58
  return $links;
59
  }
11
  if ( !defined( 'ABSPATH' ) ) {
12
  exit;
13
  }
14
+ require __DIR__ . '/config.php';
15
+ require __DIR__ . '/lib/about.php';
16
  /**
17
  * Register admin menus
18
  *
53
  {
54
  if ( preg_match( "|{$file}\$|", WP_FAIL2BAN_FILE ) ) {
55
  // Add Settings at the start
56
+ array_unshift( $links, '<a href="' . admin_url( 'admin.php' ) . '?page=wp-fail2ban-settings&tab=about">Settings</a>' );
57
  }
58
  return $links;
59
  }
admin/config.php CHANGED
@@ -12,7 +12,7 @@ if ( !defined( 'ABSPATH' ) ) {
12
  exit;
13
  }
14
  require_once 'lib/tab.php';
15
- foreach ( glob( dirname( __FILE__ ) . '/config/*.php' ) as $filename ) {
16
  require_once $filename;
17
  }
18
  /**
12
  exit;
13
  }
14
  require_once 'lib/tab.php';
15
+ foreach ( glob( __DIR__ . '/config/*.php' ) as $filename ) {
16
  require_once $filename;
17
  }
18
  /**
admin/lib/about.php CHANGED
@@ -39,14 +39,27 @@ function about( $hide_title = false )
39
  <div id="poststuff">
40
  <div id="post-body" class="metabox-holder columns-2">
41
  <div id="post-body-content">
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  <div class="meta-box-sortables ui-sortable">
43
  <div class="postbox">
44
  <h2>Version 4.2.3</h2>
45
  <div class="inside">
46
  <ul>
47
- <li><p>Workaround for some versions of PHP 7.x that would cause <tt>define()</tt>s to be ignored.</p></li>
48
- <li><p>Add config note to settings tabs.</p></li>
49
- <li><p>Fix documentation links.</p></li>
50
  </ul>
51
  </div>
52
  </div>
@@ -56,7 +69,7 @@ function about( $hide_title = false )
56
  <h2>Version 4.2.2</h2>
57
  <div class="inside">
58
  <ul>
59
- <li><p>Fix 5.3 compatibility.</p></li>
60
  </ul>
61
  </div>
62
  </div>
@@ -66,16 +79,16 @@ function about( $hide_title = false )
66
  <h2>Version 4.2.1</h2>
67
  <div class="inside">
68
  <ul>
69
- <li><p>Completed support for <tt><a href="https://docs.wp-fail2ban.com/en/4.2/defines/WP_FAIL2BAN_COMMENT_EXTRA_LOG.html" target="docs.wp-fail2ban.com">WP_FAIL2BAN_COMMENT_EXTRA_LOG</a></tt>.</p></li>
70
- <li><p>Add support for 3rd-party plugins; see <a href="https://docs.wp-fail2ban.com/en/4.2/developers.html" target="docs.wp-fail2ban.com">Developers</a>.</p>
71
- <ul>
72
  <li>Add-on for <a href="https://wordpress.org/plugins/wp-fail2ban-addon-contact-form-7/">Contact Form 7</a> (experimental).</li>
73
  <li>Add-on for <a href="https://wordpress.org/plugins/wp-fail2ban-addon-gravity-forms/">Gravity Forms</a> (experimental).</li>
74
- </ul>
75
  </li>
76
- <li><p>Change logging for known-user with incorrect password; previously logged as unknown user and matched by <tt>hard</tt> filters (due to limitations in older versions of WordPress), now logged as known user and matched by <tt>soft</tt>.</p></li>
77
- <li><p>Bugfix for email-as-username - now logged correctly and matched by <tt>soft</tt>, not <tt>hard</tt>, filters.</p></li>
78
- <li><p>Bugfix for regression in code to prevent Free/Premium conflict.</p></li>
79
  </ul>
80
  </div>
81
  </div>
39
  <div id="poststuff">
40
  <div id="post-body" class="metabox-holder columns-2">
41
  <div id="post-body-content">
42
+ <div class="meta-box-sortables ui-sortable">
43
+ <div class="postbox">
44
+ <h2>Version 4.2.4</h2>
45
+ <div class="inside">
46
+ <ul>
47
+ <li>Add filter for login failed message.</li>
48
+ <li>Fix logging spam comments from admin area.</li>
49
+ <li>Fix Settings link from Plugins page.</li>
50
+ <li>Update Freemius library.</li>
51
+ </ul>
52
+ </div>
53
+ </div>
54
+ </div>
55
  <div class="meta-box-sortables ui-sortable">
56
  <div class="postbox">
57
  <h2>Version 4.2.3</h2>
58
  <div class="inside">
59
  <ul>
60
+ <li>Workaround for some versions of PHP 7.x that would cause <tt>define()</tt>s to be ignored.</li>
61
+ <li>Add config note to settings tabs.</li>
62
+ <li>Fix documentation links.</li>
63
  </ul>
64
  </div>
65
  </div>
69
  <h2>Version 4.2.2</h2>
70
  <div class="inside">
71
  <ul>
72
+ <li>Fix 5.3 compatibility.</li>
73
  </ul>
74
  </div>
75
  </div>
79
  <h2>Version 4.2.1</h2>
80
  <div class="inside">
81
  <ul>
82
+ <li>Completed support for <tt><a href="https://docs.wp-fail2ban.com/en/4.2/defines/WP_FAIL2BAN_COMMENT_EXTRA_LOG.html" target="docs.wp-fail2ban.com">WP_FAIL2BAN_COMMENT_EXTRA_LOG</a></tt>.</li>
83
+ <li>Add support for 3rd-party plugins; see <a href="https://docs.wp-fail2ban.com/en/4.2/developers.html" target="docs.wp-fail2ban.com">Developers</a>.<br>
84
+ <p><ul>
85
  <li>Add-on for <a href="https://wordpress.org/plugins/wp-fail2ban-addon-contact-form-7/">Contact Form 7</a> (experimental).</li>
86
  <li>Add-on for <a href="https://wordpress.org/plugins/wp-fail2ban-addon-gravity-forms/">Gravity Forms</a> (experimental).</li>
87
+ </ul></p>
88
  </li>
89
+ <li>Change logging for known-user with incorrect password; previously logged as unknown user and matched by <tt>hard</tt> filters (due to limitations in older versions of WordPress), now logged as known user and matched by <tt>soft</tt>.</li>
90
+ <li>Bugfix for email-as-username - now logged correctly and matched by <tt>soft</tt>, not <tt>hard</tt>, filters.</li>
91
+ <li>Bugfix for regression in code to prevent Free/Premium conflict.</li>
92
  </ul>
93
  </div>
94
  </div>
filters.d/wordpress-extra.conf CHANGED
@@ -1,5 +1,5 @@
1
  # Fail2Ban filter for WordPress extra failures
2
- # Auto-generated: 2019-05-16T11:33:34+00:00
3
  #
4
 
5
  [INCLUDES]
1
  # Fail2Ban filter for WordPress extra failures
2
+ # Auto-generated: 2019-06-23T20:07:39+00:00
3
  #
4
 
5
  [INCLUDES]
filters.d/wordpress-hard.conf CHANGED
@@ -1,5 +1,5 @@
1
  # Fail2Ban filter for WordPress hard failures
2
- # Auto-generated: 2019-05-16T11:33:34+00:00
3
  #
4
 
5
  [INCLUDES]
1
  # Fail2Ban filter for WordPress hard failures
2
+ # Auto-generated: 2019-06-23T20:07:39+00:00
3
  #
4
 
5
  [INCLUDES]
filters.d/wordpress-soft.conf CHANGED
@@ -1,5 +1,5 @@
1
  # Fail2Ban filter for WordPress soft failures
2
- # Auto-generated: 2019-05-16T11:33:34+00:00
3
  #
4
 
5
  [INCLUDES]
1
  # Fail2Ban filter for WordPress soft failures
2
+ # Auto-generated: 2019-06-23T20:07:39+00:00
3
  #
4
 
5
  [INCLUDES]
readme.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: https://wp-fail2ban.com/
6
  Tags: fail2ban, login, security, syslog
7
  Requires at least: 4.2
8
  Tested up to: 5.2
9
- Stable tag: 4.2.3
10
  Requires PHP: 5.3
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -63,6 +63,12 @@ Write a myriad of WordPress events to syslog for integration with fail2ban.
63
 
64
  == Changelog ==
65
 
 
 
 
 
 
 
66
  = 4.2.3 =
67
  * Workaround for some versions of PHP 7.x that would cause `define()`s to be ignored.
68
  * Add config note to settings tabs.
@@ -196,6 +202,9 @@ Write a myriad of WordPress events to syslog for integration with fail2ban.
196
 
197
  == Upgrade Notice ==
198
 
 
 
 
199
  = 4.2.3 =
200
  This is a bugfix release. You do not need to update your filters from 4.1.0.
201
 
6
  Tags: fail2ban, login, security, syslog
7
  Requires at least: 4.2
8
  Tested up to: 5.2
9
+ Stable tag: 4.2.4
10
  Requires PHP: 5.3
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
63
 
64
  == Changelog ==
65
 
66
+ = 4.2.4 =
67
+ * Add filter for login failed message.
68
+ * Fix logging spam comments from admin area.
69
+ * Fix Settings link from Plugins page.
70
+ * Update Freemius library
71
+
72
  = 4.2.3 =
73
  * Workaround for some versions of PHP 7.x that would cause `define()`s to be ignored.
74
  * Add config note to settings tabs.
202
 
203
  == Upgrade Notice ==
204
 
205
+ = 4.2.4 =
206
+ This is a minor release. You do not need to update your filters from 4.1.0.
207
+
208
  = 4.2.3 =
209
  This is a bugfix release. You do not need to update your filters from 4.1.0.
210
 
vendor/freemius/wordpress-sdk/.gitattributes ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # Items to ignore when downloading a zip
2
+
3
+ .codeclimate.yml export-ignore
4
+ .git export-ignore
5
+ .github export-ignore
6
+ .gitattributes export-ignore
7
+ .gitignore export-ignore
8
+ .travis.yml export-ignore
9
+ gulpfile.js export-ignore
10
+ composer.json export-ignore
11
+ /assets/scss/ export-ignore
vendor/freemius/wordpress-sdk/assets/css/admin/account.css CHANGED
@@ -1 +1 @@
1
- #fs_account .postbox,#fs_account .widefat{max-width:700px}#fs_account h3{font-size:1.3em;padding:12px 15px;margin:0 0 12px 0;line-height:1.4;border-bottom:1px solid #F1F1F1}#fs_account h3 .dashicons{width:26px;height:26px;font-size:1.3em}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{position:absolute;top:17px;right:15px;font-size:0.9em}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:bold}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table var,.fs-key-value-table code,.fs-key-value-table input[type="text"]{color:#0073AA;font-size:16px;background:none}.fs-key-value-table input[type="text"]{width:100%;font-weight:bold}label.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{max-height:200px;overflow:auto;border:1px solid #e5e5e5}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none !important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{text-align:right;color:grey;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{width:1px;white-space:nowrap}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{text-align:left;font-weight:bold}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:bold}#fs_billing_address{width:100%}#fs_billing_address tr td{width:50%;padding:5px}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:bold}#fs_billing_address input,#fs_billing_address select{display:block;width:100%;margin-top:5px}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent;opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:transparent}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}
1
+ label.fs-tag,span.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}#fs_account .postbox,#fs_account .widefat{max-width:700px}#fs_account h3{font-size:1.3em;padding:12px 15px;margin:0 0 12px 0;line-height:1.4;border-bottom:1px solid #F1F1F1}#fs_account h3 .dashicons{width:26px;height:26px;font-size:1.3em}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{position:absolute;top:17px;right:15px;font-size:0.9em}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:bold}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table var,.fs-key-value-table code,.fs-key-value-table input[type="text"]{color:#0073AA;font-size:16px;background:none}.fs-key-value-table input[type="text"]{width:100%;font-weight:bold}.fs-field-beta_program label{margin-left:7px}label.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{max-height:200px;overflow:auto;border:1px solid #e5e5e5}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none !important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{text-align:right;color:grey;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{width:1px;white-space:nowrap}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{text-align:left;font-weight:bold}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:bold}#fs_billing_address{width:100%}#fs_billing_address tr td{width:50%;padding:5px}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:bold}#fs_billing_address input,#fs_billing_address select{display:block;width:100%;margin-top:5px}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent;opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:transparent}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}
vendor/freemius/wordpress-sdk/assets/css/admin/add-ons.css CHANGED
@@ -1,2 +1,2 @@
1
- #fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner ul{-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:0.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:greenyellow;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.3);box-shadow:1px 1px 1px rgba(0,0,0,0.3);text-transform:uppercase;font-size:0.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button{position:absolute;top:112px;right:10px}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}}
2
- #TB_window,#TB_window iframe{width:772px !important}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:greenyellow;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid darkgreen;padding:2px;text-align:center;font-size:0.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#F3F3F3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:greenyellow}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}}
1
+ .fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:white;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3)}#fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner>ul{-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner>ul>li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner .fs-badge.fs-installed-addon-badge{font-size:1.02em;line-height:1.3em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:0.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:greenyellow;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.3);box-shadow:1px 1px 1px rgba(0,0,0,0.3);text-transform:uppercase;font-size:0.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button,#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button-group{position:absolute;top:112px;right:10px}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}}
2
+ #TB_window,#TB_window iframe{width:821px !important}#plugin-information .fyi{width:266px !important}#plugin-information #section-holder{margin-right:299px}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:greenyellow;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid darkgreen;padding:2px;text-align:center;font-size:0.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#F3F3F3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:greenyellow}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button,#plugin-information .fs-dropdown .button-group .button{position:relative;width:auto;top:0;right:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button:focus,#plugin-information .fs-dropdown .button-group .button:focus{z-index:10}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .fs-dropdown-arrow,#plugin-information .fs-dropdown .button-group .fs-dropdown-arrow{border-top:6px solid white;border-right:4px solid transparent;border-left:4px solid transparent;top:12px;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button){border-bottom-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button{border-bottom-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button){border-top-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active.up .fs-dropdown-arrow-button{border-top-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list,#plugin-information .fs-dropdown .fs-dropdown-list{position:absolute;right:-1px;top:100%;margin-left:auto;padding:3px 0;border:1px solid #bfbfbf;background-color:#fff;z-index:1;width:230px;text-align:left;-moz-box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);-webkit-box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li,#plugin-information .fs-dropdown .fs-dropdown-list li{margin:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li a,#plugin-information .fs-dropdown .fs-dropdown-list li a{display:block;padding:5px 10px;text-decoration:none;text-shadow:none}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover,#plugin-information .fs-dropdown .fs-dropdown-list li:hover{background-color:#0074a3;color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover a,#plugin-information .fs-dropdown .fs-dropdown-list li:hover a{color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown:not(.up) .fs-dropdown-list,#plugin-information .fs-dropdown:not(.up) .fs-dropdown-list{-moz-border-radius:3px 0 3px 3px;-webkit-border-radius:3px 0 3px 3px;border-radius:3px 0 3px 3px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.up .fs-dropdown-list,#plugin-information .fs-dropdown.up .fs-dropdown-list{-moz-border-radius:3px 3px 0 3px;-webkit-border-radius:3px 3px 0 3px;border-radius:3px 3px 0 3px}#plugin-information .fs-dropdown .button-group{width:100%}#plugin-information .fs-dropdown .button-group .button{float:none;font-size:14px;font-weight:normal;text-transform:none}#plugin-information .fs-dropdown .fs-dropdown-list{margin-top:1px}#plugin-information .fs-dropdown.up .fs-dropdown-list{top:auto;bottom:100%;margin-bottom:2px}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group{text-align:center;display:table}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button{display:table-cell}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button:not(.fs-dropdown-arrow-button){left:1px;width:100%}#plugin-information-footer>.button,#plugin-information-footer .fs-dropdown{position:relative;top:3px}#plugin-information-footer>.button.left,#plugin-information-footer .fs-dropdown.left{float:left}#plugin-information-footer>.right,#plugin-information-footer .fs-dropdown{float:right}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}}
vendor/freemius/wordpress-sdk/assets/css/admin/common.css CHANGED
@@ -1,2 +1,2 @@
1
- .theme-browser .theme .fs-premium-theme-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);font-size:1.1em}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}
2
  .fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}
1
+ .fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:white;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3)}.theme-browser .theme .fs-premium-theme-badge-container{position:absolute;right:0;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge{position:relative;top:0;margin-top:10px;text-align:center}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-premium-theme-badge{font-size:1.1em}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-beta-theme-badge{background:#00a0d2}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}
2
  .fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}
vendor/freemius/wordpress-sdk/assets/css/admin/connect.css CHANGED
@@ -1 +1 @@
1
- #fs_connect{width:480px;-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.3);box-shadow:0px 1px 2px rgba(0,0,0,0.3);margin:20px 0}@media screen and (max-width: 479px){#fs_connect{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:auto;margin:0 0 0 -10px}}#fs_connect .fs-content{background:#fff;padding:15px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key #sites_list_container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:' \279C'}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#FEFEFE;-moz-transition:background 0.5s ease;-o-transition:background 0.5s ease;-ms-transition:background 0.5s ease;-webkit-transition:background 0.5s ease;transition:background 0.5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions .fs-trigger{font-size:0.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions ul{height:0;overflow:hidden;margin:0}#fs_connect .fs-permissions ul li{margin-bottom:12px}#fs_connect .fs-permissions ul li:last-child{margin-bottom:0}#fs_connect .fs-permissions ul li i.dashicons{float:left;font-size:40px;width:40px;height:40px}#fs_connect .fs-permissions ul li div{margin-left:55px}#fs_connect .fs-permissions ul li div span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li div p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{height:auto;margin:20px 20px 10px 20px}@media screen and (max-width: 479px){#fs_connect .fs-permissions{background:#fff}#fs_connect .fs-permissions .fs-trigger{display:none}#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:#C2EEFF;text-decoration:underline}#fs_connect .fs-visual{padding:12px;line-height:0;background:#fafafa;height:80px;position:relative}#fs_connect .fs-visual .fs-site-icon{position:absolute;left:20px;top:10px}#fs_connect .fs-visual .fs-connect-logo{position:absolute;right:20px;top:10px}#fs_connect .fs-visual .fs-plugin-icon{position:absolute;top:10px;left:50%;margin-left:-40px}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-site-icon,#fs_connect .fs-visual img,#fs_connect .fs-visual object{width:80px;height:80px}#fs_connect .fs-visual .dashicons-wordpress{font-size:64px;background:#01749a;color:#fff;width:64px;height:64px;padding:8px}#fs_connect .fs-visual .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-visual .dashicons-plus.fs-first{left:28%}#fs_connect .fs-visual .dashicons-plus.fs-second{left:65%}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-connect-logo,#fs_connect .fs-visual .fs-site-icon{border:1px solid #ccc;padding:1px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:0.85em;padding:5px;background:rgba(0,0,0,0.05)}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:rgba(0,0,0,0.8);color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,0.8) transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}#fs_marketing_optin{display:none;margin-top:10px;border:1px solid #ccc;padding:10px;line-height:1.5em}#fs_marketing_optin .fs-message{display:block;margin-bottom:5px;font-size:1.05em;font-weight:600}#fs_marketing_optin.error{border:1px solid #d3135a;background:#fee}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{margin-top:5px;display:block}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:' \000bb'}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-permissions ul li div{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li i.dashicons{float:right}.rtl #fs_connect .fs-visual .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-visual .fs-connect-logo{right:auto;left:20px}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,0.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:white;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:transparent;top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:52px;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms{background:rgba(140,140,140,0.64)}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa}
1
+ #fs_connect{width:480px;-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.3);box-shadow:0px 1px 2px rgba(0,0,0,0.3);margin:20px 0}@media screen and (max-width: 479px){#fs_connect{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:auto;margin:0 0 0 -10px}}#fs_connect .fs-content{background:#fff;padding:15px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key .fs-sites-list-container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:' \279C'}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#FEFEFE;-moz-transition:background 0.5s ease;-o-transition:background 0.5s ease;-ms-transition:background 0.5s ease;-webkit-transition:background 0.5s ease;transition:background 0.5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions .fs-trigger{font-size:0.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions ul{height:0;overflow:hidden;margin:0}#fs_connect .fs-permissions ul li{margin-bottom:12px}#fs_connect .fs-permissions ul li:last-child{margin-bottom:0}#fs_connect .fs-permissions ul li i.dashicons{float:left;font-size:40px;width:40px;height:40px}#fs_connect .fs-permissions ul li div{margin-left:55px}#fs_connect .fs-permissions ul li div span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li div p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{height:auto;margin:20px 20px 10px 20px}@media screen and (max-width: 479px){#fs_connect .fs-permissions{background:#fff}#fs_connect .fs-permissions .fs-trigger{display:none}#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:#C2EEFF;text-decoration:underline}#fs_connect .fs-visual{padding:12px;line-height:0;background:#fafafa;height:80px;position:relative}#fs_connect .fs-visual .fs-site-icon{position:absolute;left:20px;top:10px}#fs_connect .fs-visual .fs-connect-logo{position:absolute;right:20px;top:10px}#fs_connect .fs-visual .fs-plugin-icon{position:absolute;top:10px;left:50%;margin-left:-40px}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-site-icon,#fs_connect .fs-visual img,#fs_connect .fs-visual object{width:80px;height:80px}#fs_connect .fs-visual .dashicons-wordpress{font-size:64px;background:#01749a;color:#fff;width:64px;height:64px;padding:8px}#fs_connect .fs-visual .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-visual .dashicons-plus.fs-first{left:28%}#fs_connect .fs-visual .dashicons-plus.fs-second{left:65%}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-connect-logo,#fs_connect .fs-visual .fs-site-icon{border:1px solid #ccc;padding:1px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:0.85em;padding:5px;background:rgba(0,0,0,0.05)}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}.fs-multisite-options-container{margin-top:10px;border:1px solid #ccc;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:bold}.fs-multisite-options-container.fs-apply-on-all-sites{border:0 none;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:rgba(0,0,0,0.8);color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,0.8) transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}#fs_marketing_optin{display:none;margin-top:10px;border:1px solid #ccc;padding:10px;line-height:1.5em}#fs_marketing_optin .fs-message{display:block;margin-bottom:5px;font-size:1.05em;font-weight:600}#fs_marketing_optin.error{border:1px solid #d3135a;background:#fee}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{margin-top:5px;display:block}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:' \000bb'}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-permissions ul li div{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li i.dashicons{float:right}.rtl #fs_connect .fs-visual .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-visual .fs-connect-logo{right:auto;left:20px}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,0.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:white;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:transparent;top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:52px;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms{background:rgba(140,140,140,0.64)}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa}
vendor/freemius/wordpress-sdk/assets/css/admin/dialog-boxes.css CHANGED
@@ -1,2 +1,2 @@
1
- .fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eeeeee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:0.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media (max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label{float:left}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.license_key{width:100%}#license_options_container table,#license_options_container table select,#license_options_container table #available_license_key{width:100%}#license_options_container table td:first-child{width:1%}#license_options_container table #other_license_key_container label{position:relative;top:6px;float:left;margin-right:5px}#license_options_container table #other_license_key_container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}#license_options_container table #other_license_key_container div input{margin:0}#sites_list_container td{cursor:pointer}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media (max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}
2
  .rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-right:7px;margin-left:0}a.show-license-resend-modal{margin-top:4px;display:inline-block}.fs-ajax-loader{position:relative;width:170px;height:20px;margin:auto}.fs-ajax-loader .fs-ajax-loader-bar{position:absolute;top:0;background-color:#0074a3;width:20px;height:20px;-webkit-animation-name:bounce_ajaxLoader;-moz-animation-name:bounce_ajaxLoader;-ms-animation-name:bounce_ajaxLoader;-o-animation-name:bounce_ajaxLoader;animation-name:bounce_ajaxLoader;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-webkit-animation-direction:normal;-moz-animation-direction:normal;-ms-animation-direction:normal;-o-animation-direction:normal;animation-direction:normal;-moz-transform:0.3;-o-transform:0.3;-ms-transform:0.3;-webkit-transform:0.3;transform:0.3}.fs-ajax-loader .fs-ajax-loader-bar-1{left:0px;animation-delay:0.6s;-o-animation-delay:0.6s;-ms-animation-delay:0.6s;-webkit-animation-delay:0.6s;-moz-animation-delay:0.6s}.fs-ajax-loader .fs-ajax-loader-bar-2{left:19px;animation-delay:0.75s;-o-animation-delay:0.75s;-ms-animation-delay:0.75s;-webkit-animation-delay:0.75s;-moz-animation-delay:0.75s}.fs-ajax-loader .fs-ajax-loader-bar-3{left:38px;animation-delay:0.9s;-o-animation-delay:0.9s;-ms-animation-delay:0.9s;-webkit-animation-delay:0.9s;-moz-animation-delay:0.9s}.fs-ajax-loader .fs-ajax-loader-bar-4{left:57px;animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s}.fs-ajax-loader .fs-ajax-loader-bar-5{left:76px;animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s}.fs-ajax-loader .fs-ajax-loader-bar-6{left:95px;animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s}.fs-ajax-loader .fs-ajax-loader-bar-7{left:114px;animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s}.fs-ajax-loader .fs-ajax-loader-bar-8{left:133px;animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s}@-moz-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-ms-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-o-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-webkit-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}.fs-modal-auto-install #request-filesystem-credentials-form h2,.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;padding:10px 10px 5px 10px;width:300px;max-width:100%}.fs-modal-auto-install #request-filesystem-credentials-form>div,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form fieldset{width:300px;max-width:100%;margin:0 auto;display:block}.button-primary.warn{box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c;background:#f56a48;border-color:#ec6544 #d2593c #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{color:#f5b3a1 !important;background:#e76444 !important;border-color:#d85e40 !important;text-shadow:0 -1px 0 rgba(0,0,0,0.1) !important}
1
+ .fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eeeeee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:0.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media (max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label{float:left}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table,.fs-license-options-container table select,.fs-license-options-container table .fs-available-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{position:relative;top:6px;float:left;margin-right:5px}.fs-license-options-container table .fs-other-license-key-container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-multisite-options-container{margin-top:10px;border:1px solid #ccc;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:bold}.fs-multisite-options-container.fs-apply-on-all-sites{border:0 none;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media (max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}
2
  .rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-right:7px;margin-left:0}a.show-license-resend-modal{margin-top:4px;display:inline-block}.fs-ajax-loader{position:relative;width:170px;height:20px;margin:auto}.fs-ajax-loader .fs-ajax-loader-bar{position:absolute;top:0;background-color:#0074a3;width:20px;height:20px;-webkit-animation-name:bounce_ajaxLoader;-moz-animation-name:bounce_ajaxLoader;-ms-animation-name:bounce_ajaxLoader;-o-animation-name:bounce_ajaxLoader;animation-name:bounce_ajaxLoader;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-webkit-animation-direction:normal;-moz-animation-direction:normal;-ms-animation-direction:normal;-o-animation-direction:normal;animation-direction:normal;-moz-transform:0.3;-o-transform:0.3;-ms-transform:0.3;-webkit-transform:0.3;transform:0.3}.fs-ajax-loader .fs-ajax-loader-bar-1{left:0px;animation-delay:0.6s;-o-animation-delay:0.6s;-ms-animation-delay:0.6s;-webkit-animation-delay:0.6s;-moz-animation-delay:0.6s}.fs-ajax-loader .fs-ajax-loader-bar-2{left:19px;animation-delay:0.75s;-o-animation-delay:0.75s;-ms-animation-delay:0.75s;-webkit-animation-delay:0.75s;-moz-animation-delay:0.75s}.fs-ajax-loader .fs-ajax-loader-bar-3{left:38px;animation-delay:0.9s;-o-animation-delay:0.9s;-ms-animation-delay:0.9s;-webkit-animation-delay:0.9s;-moz-animation-delay:0.9s}.fs-ajax-loader .fs-ajax-loader-bar-4{left:57px;animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s}.fs-ajax-loader .fs-ajax-loader-bar-5{left:76px;animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s}.fs-ajax-loader .fs-ajax-loader-bar-6{left:95px;animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s}.fs-ajax-loader .fs-ajax-loader-bar-7{left:114px;animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s}.fs-ajax-loader .fs-ajax-loader-bar-8{left:133px;animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s}@-moz-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-ms-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-o-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-webkit-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}.fs-modal-auto-install #request-filesystem-credentials-form h2,.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;padding:10px 10px 5px 10px;width:300px;max-width:100%}.fs-modal-auto-install #request-filesystem-credentials-form>div,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form fieldset{width:300px;max-width:100%;margin:0 auto;display:block}.button-primary.warn{box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c;background:#f56a48;border-color:#ec6544 #d2593c #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{color:#f5b3a1 !important;background:#e76444 !important;border-color:#d85e40 !important;text-shadow:0 -1px 0 rgba(0,0,0,0.1) !important}
vendor/freemius/wordpress-sdk/assets/scss/admin/_badge.scss ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-badge
2
+ {
3
+ position: absolute;
4
+ top: 10px;
5
+ right: 0;
6
+ background: $fs-logo-green-color;
7
+ color: white;
8
+ text-transform: uppercase;
9
+ padding: 5px 10px;
10
+ @include border-radius(3px 0 0 3px);
11
+ font-weight: bold;
12
+ border-right: 0;
13
+ @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3));
14
+ }
vendor/freemius/wordpress-sdk/assets/scss/admin/_license-activation.scss CHANGED
@@ -1,14 +1,14 @@
1
  .fs-modal.fs-modal-license-activation {
2
  .fs-modal-body {
3
- input.license_key {
4
  width: 100%;
5
  }
6
  }
7
  }
8
 
9
- #license_options_container {
10
  table {
11
- &, select, #available_license_key {
12
  width: 100%;
13
  }
14
 
@@ -16,7 +16,7 @@
16
  width: 1%;
17
  }
18
 
19
- #other_license_key_container {
20
  label {
21
  position: relative;
22
  top: 6px;
@@ -40,7 +40,7 @@
40
  }
41
  }
42
 
43
- #sites_list_container {
44
  td {
45
  cursor: pointer;
46
  }
1
  .fs-modal.fs-modal-license-activation {
2
  .fs-modal-body {
3
+ input.fs-license-key {
4
  width: 100%;
5
  }
6
  }
7
  }
8
 
9
+ .fs-license-options-container {
10
  table {
11
+ &, select, .fs-available-license-key {
12
  width: 100%;
13
  }
14
 
16
  width: 1%;
17
  }
18
 
19
+ .fs-other-license-key-container {
20
  label {
21
  position: relative;
22
  top: 6px;
40
  }
41
  }
42
 
43
+ .fs-sites-list-container {
44
  td {
45
  cursor: pointer;
46
  }
vendor/freemius/wordpress-sdk/assets/scss/admin/_multisite-options.scss CHANGED
@@ -1,4 +1,4 @@
1
- #multisite_options_container {
2
  margin-top: 10px;
3
  border: 1px solid #ccc;
4
  padding: 5px;
@@ -15,11 +15,11 @@
15
  }
16
  }
17
 
18
- &.apply-on-all-sites {
19
  border: 0 none;
20
  padding: 0;
21
 
22
- #all_sites_options {
23
  border-spacing: 0;
24
 
25
  td:not(:first-child) {
@@ -28,7 +28,7 @@
28
  }
29
  }
30
 
31
- #sites_list_container {
32
  display: none;
33
  overflow: auto;
34
 
1
+ .fs-multisite-options-container {
2
  margin-top: 10px;
3
  border: 1px solid #ccc;
4
  padding: 5px;
15
  }
16
  }
17
 
18
+ &.fs-apply-on-all-sites {
19
  border: 0 none;
20
  padding: 0;
21
 
22
+ .fs-all-sites-options {
23
  border-spacing: 0;
24
 
25
  td:not(:first-child) {
28
  }
29
  }
30
 
31
+ .fs-sites-list-container {
32
  display: none;
33
  overflow: auto;
34
 
vendor/freemius/wordpress-sdk/assets/scss/admin/_tag.scss ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ label.fs-tag, span.fs-tag
2
+ {
3
+ background: #ffba00;
4
+ color: #fff;
5
+ display: inline-block;
6
+ border-radius: 3px;
7
+ padding: 5px;
8
+ font-size: 11px;
9
+ line-height: 11px;
10
+ vertical-align: baseline;
11
+
12
+ &.fs-warn
13
+ {
14
+ background: #ffba00;
15
+ }
16
+ &.fs-info
17
+ {
18
+ background: #00a0d2;
19
+ }
20
+ &.fs-success
21
+ {
22
+ background: #46b450;
23
+ }
24
+ &.fs-error
25
+ {
26
+ background: #dc3232;
27
+ }
28
+ }
vendor/freemius/wordpress-sdk/assets/scss/admin/_themes.scss CHANGED
@@ -1,21 +1,28 @@
 
 
1
  .theme-browser
2
  {
3
  .theme
4
  {
5
- .fs-premium-theme-badge
6
- {
7
- position: absolute;
8
- top: 10px;
9
- right: 0;
10
- background: $fs-logo-green-color;
11
- color: #fff;
12
- text-transform: uppercase;
13
- padding: 5px 10px;
14
- @include border-radius(3px 0 0 3px);
15
- font-weight: bold;
16
- border-right: 0;
17
- @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3));
18
- font-size: 1.1em;
 
 
 
 
 
19
  }
20
  }
21
  }
1
+ @import "badge";
2
+
3
  .theme-browser
4
  {
5
  .theme
6
  {
7
+ .fs-premium-theme-badge-container {
8
+ position: absolute;
9
+ right: 0;
10
+ top: 0;
11
+
12
+ .fs-badge {
13
+ position: relative;
14
+ top: 0;
15
+ margin-top: 10px;
16
+ text-align: center;
17
+
18
+ &.fs-premium-theme-badge {
19
+ font-size: 1.1em;
20
+ }
21
+
22
+ &.fs-beta-theme-badge {
23
+ background: #00a0d2;
24
+ }
25
+ }
26
  }
27
  }
28
  }
vendor/freemius/wordpress-sdk/assets/scss/admin/account.scss CHANGED
@@ -1,4 +1,5 @@
1
  @import "../start";
 
2
 
3
  #fs_account
4
  {
@@ -132,6 +133,10 @@
132
  }
133
  }
134
 
 
 
 
 
135
  label.fs-tag
136
  {
137
  background: #ffba00;
1
  @import "../start";
2
+ @import "tag";
3
 
4
  #fs_account
5
  {
133
  }
134
  }
135
 
136
+ .fs-field-beta_program label {
137
+ margin-left: 7px;
138
+ }
139
+
140
  label.fs-tag
141
  {
142
  background: #ffba00;
vendor/freemius/wordpress-sdk/assets/scss/admin/add-ons.scss CHANGED
@@ -1,4 +1,5 @@
1
  @import "../start";
 
2
 
3
  #fs_addons
4
  {
@@ -37,23 +38,23 @@
37
  height: 100%;
38
  position: relative;
39
 
40
- ul
41
  {
42
  @include transition(all, 0.15s);
43
  left: 0;
44
  right: 0;
45
  top: 0;
46
  position: absolute;
47
- }
48
 
49
- li
50
- {
51
- list-style: none;
52
- line-height: 18px;
53
- padding: 0 15px;
54
- width: 100%;
55
- display: block;
56
- @include box-sizing(border-box);
 
57
  }
58
 
59
  .fs-card-banner
@@ -66,6 +67,11 @@
66
  background-repeat: repeat-x;
67
  background-size: 100% 100%;
68
  @include transition(all, 0.15s);
 
 
 
 
 
69
  }
70
 
71
  .fs-title
@@ -109,7 +115,7 @@
109
 
110
  .fs-cta
111
  {
112
- .button
113
  {
114
  position: absolute;
115
  top: 112px;
@@ -156,12 +162,20 @@
156
  {
157
  &, iframe
158
  {
159
- width: 772px !important;
160
  }
161
  }
162
 
163
  #plugin-information
164
  {
 
 
 
 
 
 
 
 
165
  #section-description
166
  {
167
  h2, h3, p, b, i, blockquote, li, ul, ol
@@ -435,6 +449,152 @@
435
  }
436
  }
437
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
438
  @media screen and (max-width: 961px) {
439
  #fs_addons
440
  {
1
  @import "../start";
2
+ @import "badge";
3
 
4
  #fs_addons
5
  {
38
  height: 100%;
39
  position: relative;
40
 
41
+ & > ul
42
  {
43
  @include transition(all, 0.15s);
44
  left: 0;
45
  right: 0;
46
  top: 0;
47
  position: absolute;
 
48
 
49
+ & > li
50
+ {
51
+ list-style: none;
52
+ line-height: 18px;
53
+ padding: 0 15px;
54
+ width: 100%;
55
+ display: block;
56
+ @include box-sizing(border-box);
57
+ }
58
  }
59
 
60
  .fs-card-banner
67
  background-repeat: repeat-x;
68
  background-size: 100% 100%;
69
  @include transition(all, 0.15s);
70
+
71
+ .fs-badge.fs-installed-addon-badge {
72
+ font-size: 1.02em;
73
+ line-height: 1.3em;
74
+ }
75
  }
76
 
77
  .fs-title
115
 
116
  .fs-cta
117
  {
118
+ .button, .button-group
119
  {
120
  position: absolute;
121
  top: 112px;
162
  {
163
  &, iframe
164
  {
165
+ width: 821px !important;
166
  }
167
  }
168
 
169
  #plugin-information
170
  {
171
+ .fyi {
172
+ width: 266px !important;
173
+ }
174
+
175
+ #section-holder {
176
+ margin-right: 299px;
177
+ }
178
+
179
  #section-description
180
  {
181
  h2, h3, p, b, i, blockquote, li, ul, ol
449
  }
450
  }
451
 
452
+ .fs-dropdown {
453
+ #fs_addons .fs-cards-list .fs-card .fs-inner &, #plugin-information & {
454
+ .button-group {
455
+ .button {
456
+ position: relative;
457
+ width: auto;
458
+ top: 0;
459
+ right: 0;
460
+
461
+ &:focus {
462
+ z-index: 10;
463
+ }
464
+ }
465
+
466
+ .fs-dropdown-arrow {
467
+ border-top: 6px solid white;
468
+ border-right: 4px solid transparent;
469
+ border-left: 4px solid transparent;
470
+ top: 12px;
471
+ position: relative;
472
+ }
473
+ }
474
+
475
+ &.active:not(.up) {
476
+ .button:not(.fs-dropdown-arrow-button) {
477
+ border-bottom-left-radius: 0;
478
+ }
479
+
480
+ .fs-dropdown-arrow-button {
481
+ border-bottom-right-radius: 0;
482
+ }
483
+ }
484
+
485
+ &.active.up {
486
+ .button:not(.fs-dropdown-arrow-button) {
487
+ border-top-left-radius: 0;
488
+ }
489
+
490
+ .fs-dropdown-arrow-button {
491
+ border-top-right-radius: 0;
492
+ }
493
+ }
494
+
495
+ .fs-dropdown-list {
496
+ position: absolute;
497
+ right: -1px;
498
+ top: 100%;
499
+ margin-left: auto;
500
+ padding: 3px 0;
501
+ border: 1px solid lighten($darkest-color, 75%);
502
+ background-color: #fff;
503
+ z-index: 1;
504
+ width: 230px;
505
+ text-align: left;
506
+ @include box-shadow(0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12));
507
+
508
+ li {
509
+ margin: 0;
510
+
511
+ a {
512
+ display: block;
513
+ padding: 5px 10px;
514
+ text-decoration: none;
515
+ text-shadow: none;
516
+ }
517
+
518
+ &:hover {
519
+ background-color: $wp-selected-color;
520
+ color: #fff;
521
+
522
+ a {
523
+ color: #fff;
524
+ }
525
+ }
526
+ }
527
+ }
528
+
529
+ &:not(.up) {
530
+ .fs-dropdown-list {
531
+ @include border-radius(3px 0 3px 3px);
532
+ }
533
+ }
534
+
535
+ &.up {
536
+ .fs-dropdown-list {
537
+ @include border-radius(3px 3px 0 3px);
538
+ }
539
+ }
540
+ }
541
+
542
+ #plugin-information & {
543
+ .button-group {
544
+ width: 100%;
545
+
546
+ .button {
547
+ float: none;
548
+ font-size: 14px;
549
+ font-weight: normal;
550
+ text-transform: none;
551
+ }
552
+ }
553
+
554
+ .fs-dropdown-list {
555
+ margin-top: 1px;
556
+ }
557
+
558
+ &.up {
559
+ .fs-dropdown-list {
560
+ top: auto;
561
+ bottom: 100%;
562
+ margin-bottom: 2px;
563
+ }
564
+ }
565
+ }
566
+ }
567
+
568
+ #plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group {
569
+ text-align: center;
570
+
571
+ display: table;
572
+
573
+ .button {
574
+ display: table-cell;
575
+
576
+ &:not(.fs-dropdown-arrow-button) {
577
+ left: 1px;
578
+ width: 100%;
579
+ }
580
+ }
581
+ }
582
+
583
+ #plugin-information-footer {
584
+ > .button, .fs-dropdown {
585
+ position: relative;
586
+ top: 3px;
587
+
588
+ &.left {
589
+ float: left;
590
+ }
591
+ }
592
+
593
+ > .right, .fs-dropdown {
594
+ float: right;
595
+ }
596
+ }
597
+
598
  @media screen and (max-width: 961px) {
599
  #fs_addons
600
  {
vendor/freemius/wordpress-sdk/assets/scss/admin/connect.scss CHANGED
@@ -54,7 +54,7 @@ $form_width: 480px;
54
  }
55
 
56
  &.require-license-key {
57
- #sites_list_container {
58
  td {
59
  cursor: pointer;
60
  }
54
  }
55
 
56
  &.require-license-key {
57
+ .fs-sites-list-container {
58
  td {
59
  cursor: pointer;
60
  }
vendor/freemius/wordpress-sdk/assets/scss/admin/plugins.scss ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "tag";
3
+
4
+ .wp-list-table.plugins {
5
+ .plugin-title {
6
+ span.fs-tag {
7
+ display : inline-block;
8
+ margin-left: 5px;
9
+ line-height: 10px;
10
+ }
11
+ }
12
+ }
vendor/freemius/wordpress-sdk/config.php CHANGED
@@ -204,7 +204,7 @@
204
  #--------------------------------------------------------------------------------
205
 
206
  if ( ! defined( 'WP_FS__API_ADDRESS_LOCALHOST' ) ) {
207
- define( 'WP_FS__API_ADDRESS_LOCALHOST', 'http://api.freemius:8080' );
208
  }
209
  if ( ! defined( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST' ) ) {
210
  define( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST', 'http://sandbox-api.freemius:8080' );
@@ -351,8 +351,8 @@
351
  */
352
  if ( ! defined( 'WP_FS__IS_NETWORK_ADMIN' ) ) {
353
  define( 'WP_FS__IS_NETWORK_ADMIN',
354
- is_network_admin() ||
355
- ( is_multisite() &&
356
  ( ( defined( 'DOING_AJAX' ) && DOING_AJAX &&
357
  ( isset( $_REQUEST['_fs_network_admin'] ) /*||
358
  ( ! empty( $_REQUEST['action'] ) && 'delete-plugin' === $_REQUEST['action'] )*/ )
204
  #--------------------------------------------------------------------------------
205
 
206
  if ( ! defined( 'WP_FS__API_ADDRESS_LOCALHOST' ) ) {
207
+ define( 'WP_FS__API_ADDRESS_LOCALHOST', 'http://api.freemius-local.com:8080' );
208
  }
209
  if ( ! defined( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST' ) ) {
210
  define( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST', 'http://sandbox-api.freemius:8080' );
351
  */
352
  if ( ! defined( 'WP_FS__IS_NETWORK_ADMIN' ) ) {
353
  define( 'WP_FS__IS_NETWORK_ADMIN',
354
+ is_multisite() &&
355
+ ( is_network_admin() ||
356
  ( ( defined( 'DOING_AJAX' ) && DOING_AJAX &&
357
  ( isset( $_REQUEST['_fs_network_admin'] ) /*||
358
  ( ! empty( $_REQUEST['action'] ) && 'delete-plugin' === $_REQUEST['action'] )*/ )
vendor/freemius/wordpress-sdk/includes/class-freemius.php CHANGED
@@ -399,9 +399,11 @@
399
  $this->_is_multisite_integrated &&
400
  // Themes are always network activated, but the ACTUAL activation is per site.
401
  $this->is_plugin() &&
402
- ( is_plugin_active_for_network( $this->_plugin_basename ) ||
403
- // Plugin network level activation or uninstall.
404
- is_plugin_inactive( $this->_plugin_basename ) )
 
 
405
  );
406
 
407
  $this->_storage->set_network_active(
@@ -409,6 +411,17 @@
409
  $this->is_delegated_connection()
410
  );
411
 
 
 
 
 
 
 
 
 
 
 
 
412
  #region Migration
413
 
414
  if ( is_multisite() ) {
@@ -493,6 +506,188 @@
493
  $this->_version_updates_handler();
494
  }
495
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  /**
497
  * Checks whether this module has a settings menu.
498
  *
@@ -1275,9 +1470,7 @@
1275
  add_filter( 'site_transient_update_plugins', array( 'Freemius', '_remove_fs_updates_from_plugin_install_page' ), 10, 2 );
1276
  } else if ( self::is_plugins_page() || self::is_updates_page() ) {
1277
  /**
1278
- * On the "Plugins" and "Updates" admin pages, if there are premium or non–org-compliant
1279
- * plugins, modify their details dialog URLs (add a Freemius-specific param) so that the SDK can
1280
- * determine if the plugin information dialog should show information from Freemius.
1281
  *
1282
  * @author Leo Fajardo (@leorw)
1283
  * @since 2.2.3
@@ -1408,6 +1601,7 @@
1408
 
1409
  add_action( 'admin_init', array( &$this, '_add_license_activation' ) );
1410
  add_action( 'admin_init', array( &$this, '_add_premium_version_upgrade_selection' ) );
 
1411
 
1412
  $this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) );
1413
  $this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) );
@@ -1467,7 +1661,7 @@
1467
  static function _remove_fs_updates_from_plugin_install_page( $updates, $transient = null ) {
1468
  if ( is_object( $updates ) && isset( $updates->response ) ) {
1469
  foreach ( $updates->response as $file => $plugin ) {
1470
- if ( false !== strpos( $plugin->package, 'api.freemius' ) ) {
1471
  unset( $updates->response[ $file ] );
1472
  }
1473
  }
@@ -1530,6 +1724,122 @@
1530
  <?php
1531
  }
1532
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1533
  /**
1534
  * Keeping the uninstall hook registered for free or premium plugin version may result to a fatal error that
1535
  * could happen when a user tries to uninstall either version while one of them is still active. Uninstalling a
@@ -1655,7 +1965,7 @@
1655
  // Try to load the cached value of the file path.
1656
  if ( isset( $this->_storage->plugin_main_file ) ) {
1657
  $plugin_main_file = $this->_storage->plugin_main_file;
1658
- if ( isset( $plugin_main_file->path ) ) {
1659
  $absolute_path = $this->get_absolute_path( $plugin_main_file->path );
1660
  if ( file_exists( $absolute_path ) ) {
1661
  return $absolute_path;
@@ -1676,7 +1986,7 @@
1676
  if ( ! $is_init ) {
1677
  // Fetch prev path cache.
1678
  if ( isset( $this->_storage->plugin_main_file ) &&
1679
- isset( $this->_storage->plugin_main_file->prev_path )
1680
  ) {
1681
  $absolute_path = $this->get_absolute_path( $this->_storage->plugin_main_file->prev_path );
1682
  if ( file_exists( $absolute_path ) ) {
@@ -1780,7 +2090,7 @@
1780
  $store_option = true;
1781
  }
1782
 
1783
- if ( ! isset( $id_slug_type_path_map[ $module_id ]['path'] ) ||
1784
  /**
1785
  * This verification is for cases when suddenly the same module
1786
  * is installed but with a different folder name.
@@ -1844,6 +2154,7 @@
1844
  $caller_map = array();
1845
  $module_type = WP_FS__MODULE_TYPE_PLUGIN;
1846
  $themes_dir = fs_normalize_path( get_theme_root( get_stylesheet() ) );
 
1847
 
1848
  for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) {
1849
  if ( empty( $bt[ $i ]['file'] ) ) {
@@ -1869,12 +2180,46 @@
1869
  'activate_plugin'
1870
  ) )
1871
  ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1872
  // Ignore call stack hooks and files inclusion.
1873
  continue;
1874
  }
1875
 
1876
  $caller_file_path = fs_normalize_path( $bt[ $i ]['file'] );
1877
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1878
  if ( 'functions.php' === basename( $caller_file_path ) ) {
1879
  /**
1880
  * 1. Assumes that theme's starting execution file is functions.php.
@@ -1934,50 +2279,84 @@
1934
  *
1935
  * @author Vova Feldman (@svovaf)
1936
  * @author Leo Fajardo (@leorw)
 
1937
  * @since 1.1.2
1938
  */
1939
  function _add_deactivation_feedback_dialog_box() {
1940
- /* Check the type of user:
1941
- * 1. Long-term (long-term)
1942
- * 2. Non-registered and non-anonymous short-term (non-registered-and-non-anonymous-short-term).
1943
- * 3. Short-term (short-term)
1944
- */
1945
- $is_long_term_user = true;
1946
-
1947
- // Check if the site is at least 2 days old.
1948
- $time_installed = $this->_storage->install_timestamp;
1949
 
1950
- // Difference in seconds.
1951
- $date_diff = time() - $time_installed;
 
 
 
 
 
 
 
 
 
 
1952
 
1953
- // Convert seconds to days.
1954
- $date_diff_days = floor( $date_diff / ( 60 * 60 * 24 ) );
1955
 
1956
- if ( $date_diff_days < 2 ) {
1957
- $is_long_term_user = false;
 
 
 
 
1958
  }
1959
 
1960
- $is_long_term_user = $this->apply_filters( 'is_long_term_user', $is_long_term_user );
1961
 
1962
- if ( $is_long_term_user ) {
1963
- $user_type = 'long-term';
1964
- } else {
1965
- if ( ! $this->is_registered() && ! $this->is_anonymous() ) {
1966
- $user_type = 'non-registered-and-non-anonymous-short-term';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1967
  } else {
1968
- $user_type = 'short-term';
 
 
 
 
1969
  }
1970
- }
1971
 
1972
- $uninstall_reasons = $this->_get_uninstall_reasons( $user_type );
1973
 
1974
- // Load the HTML template for the deactivation feedback dialog box.
1975
- $vars = array(
1976
- 'reasons' => $uninstall_reasons,
1977
- 'id' => $this->_module_id
1978
- );
 
1979
 
1980
  /**
 
 
1981
  * @todo Deactivation form core functions should be loaded only once! Otherwise, when there are multiple Freemius powered plugins the same code is loaded multiple times. The only thing that should be loaded differently is the various deactivation reasons object based on the state of the plugin.
1982
  */
1983
  fs_require_template( 'forms/deactivation/form.php', $vars );
@@ -2484,12 +2863,14 @@
2484
  function is_site_activation_mode( $and_on = true ) {
2485
  return (
2486
  ( $this->is_on() || ! $and_on ) &&
2487
- ( $this->is_premium() && true === $this->_storage->require_license_activation ) ||
2488
  (
2489
- ( ! $this->is_registered() ||
2490
- ( $this->is_only_premium() && ! $this->has_features_enabled_license() ) ) &&
2491
- ( ! $this->is_enable_anonymous() ||
2492
- ( ! $this->is_anonymous() && ! $this->is_pending_activation() ) )
 
 
 
2493
  )
2494
  );
2495
  }
@@ -2621,17 +3002,47 @@
2621
  $active_basenames = get_option( 'active_plugins' );
2622
  }
2623
 
 
 
 
 
2624
  if ( is_multisite() ) {
2625
  $network_active_basenames = get_site_option( 'active_sitewide_plugins' );
2626
 
2627
  if ( is_array( $network_active_basenames ) && ! empty( $network_active_basenames ) ) {
2628
- $active_basenames = array_merge( $active_basenames, $network_active_basenames );
2629
  }
2630
  }
2631
 
2632
  return $active_basenames;
2633
  }
2634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2635
  /**
2636
  * Get collection of all active plugins. Including network activated plugins.
2637
  *
@@ -2879,6 +3290,18 @@
2879
  add_action( 'admin_footer', array( 'Freemius', '_enrich_ajax_url' ) );
2880
  add_action( 'admin_footer', array( 'Freemius', '_open_support_forum_in_new_page' ) );
2881
 
 
 
 
 
 
 
 
 
 
 
 
 
2882
 
2883
  self::$_statics_loaded = true;
2884
  }
@@ -3475,7 +3898,10 @@
3475
  $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
3476
 
3477
  $secure_auth = SECURE_AUTH_KEY;
3478
- if ( empty( $secure_auth ) || false !== strpos( $secure_auth, ' ' ) ) {
 
 
 
3479
  // Protect against default auth key.
3480
  $secure_auth = md5( microtime() );
3481
  }
@@ -4372,9 +4798,31 @@
4372
 
4373
  return;
4374
  } else {
4375
- if ( $this->_parent->is_registered() && ! $this->is_registered() ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4376
  // If parent plugin activated, automatically install add-on for the user.
4377
- $this->_activate_addon_account( $this->_parent );
 
 
 
 
 
4378
  } else if ( ! $this->_parent->is_registered() && $this->is_registered() ) {
4379
  // If add-on activated and parent not, automatically install parent for the user.
4380
  $this->activate_parent_account( $this->_parent );
@@ -4480,14 +4928,18 @@
4480
  private function should_use_freemius_updater_and_dialog() {
4481
  return (
4482
  /**
4483
- * Unless the `fs_allow_updater_and_dialog` URL param exists and its value is `true`, disallow updater
4484
- * and dialog on the "Add Plugins" admin page (/plugin-install.php) so that they won't interfere with
4485
- * the .org plugins' functionalities on that page (e.g. installation and viewing plugin details from
4486
- * .org).
 
4487
  */
4488
- ( ! self::is_plugin_install_page() || true === fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) &&
4489
- // Disallow updater and dialog when installing a plugin, otherwise .org "add-on" plugins will be affected.
4490
- ( 'install-plugin' !== fs_request_get( 'action' ) )
 
 
 
4491
  );
4492
  }
4493
 
@@ -4943,6 +5395,7 @@
4943
  'premium_suffix' => $premium_suffix,
4944
  'is_live' => $this->get_bool_option( $plugin_info, 'is_live', true ),
4945
  'affiliate_moderation' => $this->get_option( $plugin_info, 'has_affiliation' ),
 
4946
  ) );
4947
 
4948
  if ( $plugin->is_updated() ) {
@@ -4952,6 +5405,21 @@
4952
  // Set the secret key after storing the plugin, we don't want to store the key in the storage.
4953
  $this->_plugin->secret_key = $secret_key;
4954
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4955
  if ( ! isset( $plugin_info['menu'] ) ) {
4956
  $plugin_info['menu'] = array();
4957
 
@@ -6066,7 +6534,7 @@
6066
  }
6067
 
6068
  if ( is_multisite() ) {
6069
- $this->switch_to_blog( $current_blog_id );
6070
 
6071
  $this->do_action( "after_{$name}_cron_multisite" );
6072
  }
@@ -6146,6 +6614,8 @@
6146
  */
6147
  function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6148
  if ( $this->is_registered() ) {
 
 
6149
  if ( $this->has_paid_plan() ) {
6150
  // Initiate background plan sync.
6151
  $this->_sync_license( true, false, $current_blog_id );
@@ -6486,10 +6956,10 @@
6486
  * @author Leo Fajardo (@leorw)
6487
  * @since 1.2.2
6488
  */
6489
- if ( $this->is_theme()
6490
- && ! $this->has_settings_menu()
6491
- && ! isset( $_REQUEST['fs_action'] )
6492
- && $this->can_activate_previous_theme()
6493
  ) {
6494
  if ( $this->is_only_premium() ) {
6495
  $this->activate_previous_theme();
@@ -6804,7 +7274,7 @@
6804
  foreach ( $plans_ids_to_keep as $plan_id ) {
6805
  $plan = self::_get_plan_by_id( $plan_id );
6806
  if ( is_object( $plan ) ) {
6807
- $plans_to_keep[] = $plan;
6808
  }
6809
  }
6810
  }
@@ -6973,44 +7443,48 @@
6973
  // Clear API cache on activation.
6974
  FS_Api::clear_cache();
6975
 
6976
- $is_premium_version_activation = ( current_filter() !== ( 'activate_' . $this->_free_plugin_basename ) );
 
 
6977
 
6978
  $this->_logger->info( 'Activating ' . ( $is_premium_version_activation ? 'premium' : 'free' ) . ' plugin version.' );
6979
 
6980
- // 1. If running in the activation of the FREE module, get the basename of the PREMIUM.
6981
- // 2. If running in the activation of the PREMIUM module, get the basename of the FREE.
6982
- $other_version_basename = $is_premium_version_activation ?
6983
- $this->_free_plugin_basename :
6984
- $this->premium_plugin_basename();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6985
 
6986
- if ( ! $this->_is_network_active ) {
6987
  /**
6988
- * During the activation, the plugin isn't yet active, therefore,
6989
- * _is_network_active will be set to false even if it's a network level
6990
- * activation. So we need to fix that by looking at the is_network_admin() value.
6991
  *
6992
- * @author Vova Feldman
 
 
 
 
6993
  */
6994
- $this->_is_network_active = (
6995
- $this->_is_multisite_integrated &&
6996
- // Themes are always network activated, but the ACTUAL activation is per site.
6997
- $this->is_plugin() &&
6998
- fs_is_network_admin()
6999
- );
7000
- }
7001
-
7002
- /**
7003
- * If the other module version is activate, deactivate it.
7004
- *
7005
- * is_plugin_active() checks if the plugin active on the site or the network level
7006
- * and deactivate_plugins() deactivates the plugin whether its activated on the site
7007
- * or network level.
7008
- *
7009
- * @author Leo Fajardo (@leorw)
7010
- * @since 1.2.2
7011
- */
7012
- if ( is_plugin_active( $other_version_basename ) ) {
7013
- deactivate_plugins( $other_version_basename );
7014
  }
7015
 
7016
  if ( $this->is_registered() ) {
@@ -7060,14 +7534,41 @@
7060
  }
7061
  }
7062
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7063
  if (
7064
  $is_premium_version_activation &&
7065
  (
7066
  ( ! $this->is_registered() && $this->is_anonymous() ) ||
7067
  (
7068
  $this->is_registered() &&
7069
- ! $this->is_trial() &&
7070
- ! $this->has_features_enabled_license()
7071
  )
7072
  )
7073
  ) {
@@ -7109,6 +7610,194 @@
7109
  $this->_storage->was_plugin_loaded = true;
7110
  }
7111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7112
  /**
7113
  * Delete account.
7114
  *
@@ -7166,6 +7855,7 @@
7166
 
7167
  // Clear all storage data.
7168
  $this->_storage->clear_all( true, array(
 
7169
  'connectivity_test',
7170
  'is_on',
7171
  ), false );
@@ -7521,7 +8211,7 @@
7521
  get_current_blog_id() == $network_or_blog_id ||
7522
  ( true === $network_or_blog_id && fs_is_network_admin() )
7523
  ) {
7524
- unset( $this->_is_anonymous );
7525
  }
7526
  }
7527
 
@@ -7985,16 +8675,18 @@
7985
  * @author Vova Feldman (@svovaf)
7986
  * @since 1.1.2
7987
  *
7988
- * @param string[] string $override
7989
- * @param bool $include_plugins Since 1.1.8 by default include plugin changes.
7990
- * @param bool $include_themes Since 1.1.8 by default include plugin changes.
 
7991
  *
7992
  * @return array
7993
  */
7994
  private function get_install_data_for_api(
7995
  array $override,
7996
  $include_plugins = true,
7997
- $include_themes = true
 
7998
  ) {
7999
  if ( ! defined( 'WP_FS__TRACK_PLUGINS' ) || false !== WP_FS__TRACK_PLUGINS ) {
8000
  /**
@@ -8022,13 +8714,18 @@
8022
 
8023
  $versions = $this->get_versions();
8024
 
8025
- return array_merge( $versions, array(
 
 
 
 
 
 
 
 
 
8026
  'version' => $this->get_plugin_version(),
8027
  'is_premium' => $this->is_premium(),
8028
- 'language' => get_bloginfo( 'language' ),
8029
- 'charset' => get_bloginfo( 'charset' ),
8030
- 'title' => get_bloginfo( 'name' ),
8031
- 'url' => get_site_url(),
8032
  // Special params.
8033
  'is_active' => true,
8034
  'is_disconnected' => $this->is_tracking_prohibited(),
@@ -8796,6 +9493,18 @@
8796
  return $this->_plugin->id;
8797
  }
8798
 
 
 
 
 
 
 
 
 
 
 
 
 
8799
  /**
8800
  * @author Vova Feldman (@svovaf)
8801
  * @since 1.2.1.5
@@ -9539,6 +10248,176 @@
9539
  return false;
9540
  }
9541
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9542
  /**
9543
  * @author Vova Feldman (@svovaf)
9544
  * @since 2.0.0
@@ -10017,7 +10896,7 @@
10017
  * @return number[]
10018
  */
10019
  private function get_plans_ids_associated_with_installs() {
10020
- if ( ! $this->_is_network_active ) {
10021
  if ( ! is_object( $this->_site ) ||
10022
  ! FS_Plugin_Plan::is_valid_id( $this->_site->plan_id )
10023
  ) {
@@ -10152,24 +11031,11 @@
10152
  $all_licenses = $this->get_user_licenses( $this->_user->id );
10153
  }
10154
 
10155
- $foreign_licenses = array(
10156
- 'ids' => array(),
10157
- 'license_keys' => array()
10158
- );
10159
 
10160
  $all_licenses_map = array();
10161
  foreach ( $all_licenses as $license ) {
10162
  $all_licenses_map[ $license->id ] = true;
10163
- if ( $license->user_id == $this->_user->id || $license->id == $site_license_id ) {
10164
- continue;
10165
- }
10166
-
10167
- $foreign_licenses['ids'][] = $license->id;
10168
- $foreign_licenses['license_keys'][] = $license->secret_key;
10169
- }
10170
-
10171
- if ( empty( $foreign_licenses['ids'] ) ) {
10172
- $foreign_licenses = array();
10173
  }
10174
 
10175
  $licenses = $this->_fetch_licenses( false, $site_license_id, $foreign_licenses, $blog_id );
@@ -10901,7 +11767,7 @@
10901
  return true;
10902
  }
10903
 
10904
- return ( 1 === count( $this->_plans ) );
10905
  }
10906
 
10907
  /**
@@ -11025,11 +11891,13 @@
11025
  * @since 2.2.1
11026
  *
11027
  * @param bool $is_license_deactivation
 
 
11028
  */
11029
- function _maybe_add_subscription_cancellation_dialog_box( $is_license_deactivation = false ) {
11030
  if ( fs_is_network_admin() ) {
11031
  // Subscription cancellation dialog box is currently not supported for multisite networks.
11032
- return;
11033
  }
11034
 
11035
  $license = $this->_get_license();
@@ -11044,7 +11912,7 @@
11044
  $license->is_lifetime() ||
11045
  ( ! $license->is_single_site() && $license->activated > 1 )
11046
  ) {
11047
- return;
11048
  }
11049
 
11050
  /**
@@ -11052,17 +11920,15 @@
11052
  */
11053
  $subscription = $this->_get_subscription( $license->id );
11054
  if ( ! is_object( $subscription ) || ! $subscription->is_active() ) {
11055
- return;
11056
  }
11057
 
11058
- $vars = array(
11059
  'id' => $this->_module_id,
11060
  'license' => $license,
11061
  'has_trial' => $this->is_paid_trial(),
11062
  'is_license_deactivation' => $is_license_deactivation,
11063
  );
11064
-
11065
- fs_require_template( 'forms/subscription-cancellation.php', $vars );
11066
  }
11067
 
11068
  /**
@@ -11127,10 +11993,17 @@
11127
 
11128
  // Add license activation link and AJAX request handler.
11129
  if ( self::is_plugins_page() ) {
11130
- /**
11131
- * @since 1.2.0 Add license action link only on plugins page.
11132
- */
11133
- $this->_add_license_action_link();
 
 
 
 
 
 
 
11134
  }
11135
 
11136
  // Add license activation AJAX callback.
@@ -11161,34 +12034,173 @@
11161
 
11162
  /**
11163
  * @author Leo Fajardo (@leorw)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11164
  *
 
11165
  * @since 1.1.9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11166
  * @since 2.0.0 When a super-admin that hasn't connected before is network activating a license and excluding some of the sites for the license activation, go over the unselected sites in the network and if a site is not connected, skipped, nor delegated, if it's a freemium product then just skip the connection for the site, if it's a premium only product, delegate the connection and license activation to the site admin (Vova Feldman @svovaf).
 
 
 
 
 
 
 
 
 
 
 
11167
  */
11168
- function _activate_license_ajax_action() {
 
 
 
 
 
 
11169
  $this->_logger->entrance();
11170
-
11171
- $this->check_ajax_referer( 'activate_license' );
11172
 
11173
- $license_key = trim( fs_request_get( 'license_key' ) );
11174
 
11175
- if ( empty( $license_key ) ) {
11176
- exit;
 
11177
  }
11178
 
11179
- $plugin_id = fs_request_get( 'module_id', '', 'post' );
11180
- $fs = ( $plugin_id == $this->_module_id ) ?
11181
  $this :
11182
  $this->get_addon_instance( $plugin_id );
11183
 
11184
  $error = false;
11185
  $next_page = false;
11186
 
11187
- $sites = fs_is_network_admin() ?
11188
- fs_request_get( 'sites', array(), 'post' ) :
11189
- array();
11190
-
11191
- $blog_id = fs_request_get( 'blog_id' );
11192
  $has_valid_blog_id = is_numeric( $blog_id );
11193
 
11194
  if ( $fs->is_registered() ) {
@@ -11278,7 +12290,7 @@
11278
  false,
11279
  false,
11280
  false,
11281
- fs_request_get_bool( 'is_marketing_allowed', null ),
11282
  $sites
11283
  );
11284
 
@@ -11332,7 +12344,7 @@
11332
  }
11333
 
11334
  if ( ! empty( $pending_sites ) ) {
11335
- if ( $this->is_freemium() ) {
11336
  $this->skip_connection( $pending_sites );
11337
  } else {
11338
  $this->delegate_connection( $pending_sites );
@@ -11351,14 +12363,24 @@
11351
  );
11352
 
11353
  if ( false !== $error ) {
11354
- $result['error'] = $error;
11355
  } else {
 
 
 
 
 
 
 
 
 
 
 
 
11356
  $result['next_page'] = $next_page;
11357
  }
11358
 
11359
- echo json_encode( $result );
11360
-
11361
- exit;
11362
  }
11363
 
11364
  /**
@@ -11393,8 +12415,12 @@
11393
  $total_sites_to_delegate = count( $sites_by_action['delegate'] );
11394
 
11395
  $next_page = '';
 
 
 
11396
  if ( $total_sites === $total_sites_to_delegate &&
11397
- ! $this->is_network_upgrade_mode()
 
11398
  ) {
11399
  $this->delegate_connection();
11400
  } else {
@@ -11406,7 +12432,19 @@
11406
  $this->skip_connection( $sites_by_action['skip'] );
11407
  }
11408
 
11409
- if ( ! empty( $sites_by_action['allow'] ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
11410
  if ( ! $fs->is_registered() || ! $this->_is_network_active ) {
11411
  $next_page = $fs->opt_in(
11412
  false,
@@ -11993,11 +13031,11 @@
11993
  $params['trial'] = 'true';
11994
  }
11995
 
11996
- if ( $this->is_addon() ) {
11997
- return $this->_parent->addon_url( $this->_slug );
11998
- }
11999
 
12000
- return $this->_get_admin_page_url( 'pricing', $params );
12001
  }
12002
 
12003
  /**
@@ -12006,16 +13044,18 @@
12006
  * @author Vova Feldman (@svovaf)
12007
  * @since 1.0.6
12008
  *
12009
- * @param string $billing_cycle Billing cycle
12010
- * @param bool $is_trial
12011
- * @param array $extra (optional) Extra parameters, override other query params.
 
12012
  *
12013
  * @return string
12014
  */
12015
  function checkout_url(
12016
  $billing_cycle = WP_FS__PERIOD_ANNUALLY,
12017
  $is_trial = false,
12018
- $extra = array()
 
12019
  ) {
12020
  $this->_logger->entrance();
12021
 
@@ -12033,7 +13073,7 @@
12033
  */
12034
  $params = array_merge( $params, $extra );
12035
 
12036
- return $this->_get_admin_page_url( 'pricing', $params );
12037
  }
12038
 
12039
  /**
@@ -12042,10 +13082,11 @@
12042
  * @author Vova Feldman (@svovaf)
12043
  * @since 1.1.7
12044
  *
12045
- * @param number $addon_id
12046
- * @param number $pricing_id
12047
- * @param string $billing_cycle
12048
- * @param bool $is_trial
 
12049
  *
12050
  * @return string
12051
  */
@@ -12053,12 +13094,13 @@
12053
  $addon_id,
12054
  $pricing_id,
12055
  $billing_cycle = WP_FS__PERIOD_ANNUALLY,
12056
- $is_trial = false
 
12057
  ) {
12058
  return $this->checkout_url( $billing_cycle, $is_trial, array(
12059
  'plugin_id' => $addon_id,
12060
  'pricing_id' => $pricing_id,
12061
- ) );
12062
  }
12063
 
12064
  #endregion
@@ -12598,6 +13640,10 @@
12598
  * @return array Active & public sites collection.
12599
  */
12600
  static function get_sites() {
 
 
 
 
12601
  /**
12602
  * For consistency with get_blog_list() which only return active public sites.
12603
  *
@@ -12769,7 +13815,7 @@
12769
  * 'blog_id' => string The associated blog ID.
12770
  * }
12771
  */
12772
- private function find_first_install() {
12773
  $sites = self::get_sites();
12774
 
12775
  foreach ( $sites as $site ) {
@@ -13445,6 +14491,18 @@
13445
  ) );
13446
  }
13447
 
 
 
 
 
 
 
 
 
 
 
 
 
13448
  /* Logger
13449
  ------------------------------------------------------------------------------------------------------------------*/
13450
  /**
@@ -13670,8 +14728,9 @@
13670
  $this->get_install_by_blog_id();
13671
 
13672
  if ( fs_is_network_admin() &&
13673
- ! is_object( $site ) &&
13674
- FS_Site::is_valid_id( $this->_storage->network_install_blog_id )
 
13675
  ) {
13676
  $first_install = $this->find_first_install();
13677
 
@@ -13850,6 +14909,47 @@
13850
  return $versions;
13851
  }
13852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13853
  /**
13854
  * @author Vova Feldman (@svovaf)
13855
  * @since 1.1.7.4
@@ -13895,18 +14995,7 @@
13895
 
13896
  if ( true === $network_level_or_blog_id ) {
13897
  if ( ! isset( $override_with['sites'] ) ) {
13898
- $params['sites'] = array();
13899
-
13900
- $sites = self::get_sites();
13901
-
13902
- foreach ( $sites as $site ) {
13903
- $blog_id = self::get_site_blog_id( $site );
13904
- if ( ! $this->is_site_delegated_connection( $blog_id ) &&
13905
- ! $this->is_installed_on_site( $blog_id )
13906
- ) {
13907
- $params['sites'][] = $this->get_site_info( $site );
13908
- }
13909
- }
13910
  }
13911
  } else {
13912
  $site = is_numeric( $network_level_or_blog_id ) ?
@@ -14266,71 +15355,10 @@
14266
  // If Freemius was OFF before, turn it on.
14267
  $this->turn_on();
14268
 
14269
- if ( ! $this->_is_network_active || ! $is_network_level_opt_in ) {
14270
- $this->_set_account( $user, $first_install );
14271
-
14272
- $this->do_action( 'after_account_connection', $user, $first_install );
14273
- } else {
14274
- $this->_store_user();
14275
-
14276
- // Map site addresses to their blog IDs.
14277
- $address_to_blog_map = $this->get_address_to_blog_map();
14278
-
14279
- $first_blog_id = null;
14280
- $blog_2_install_map = array();
14281
- foreach ( $installs as $install ) {
14282
- $address = trailingslashit( fs_strip_url_protocol( $install->url ) );
14283
- $blog_id = $address_to_blog_map[ $address ];
14284
-
14285
- $this->_store_site( true, $blog_id, $install );
14286
-
14287
- if ( is_null( $first_blog_id ) ) {
14288
- $first_blog_id = $blog_id;
14289
- }
14290
-
14291
- $blog_2_install_map[ $blog_id ] = $install;
14292
- }
14293
-
14294
- if ( ! FS_User::is_valid_id( $this->_storage->network_user_id ) ||
14295
- ! is_object( self::_get_user_by_id( $this->_storage->network_user_id ) )
14296
- ) {
14297
- // Store network user.
14298
- $this->_storage->network_user_id = $this->_user->id;
14299
- }
14300
-
14301
- if ( ! FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) {
14302
- $this->_storage->network_install_blog_id = $first_blog_id;
14303
- }
14304
-
14305
- if ( count( $installs ) === count( $address_to_blog_map ) ) {
14306
- // Super-admin opted-in for all sites in the network.
14307
- $this->_storage->is_network_connected = true;
14308
- }
14309
-
14310
- $this->_store_licenses( false );
14311
-
14312
- self::$_accounts->store();
14313
-
14314
- // Don't sync the installs data on network upgrade
14315
- if ( ! $this->network_upgrade_mode_completed() ) {
14316
- $this->send_installs_update();
14317
- }
14318
-
14319
- // Switch install context back to the first install.
14320
- $this->_site = $first_install;
14321
-
14322
- $current_blog = get_current_blog_id();
14323
-
14324
- foreach ( $blog_2_install_map as $blog_id => $install ) {
14325
- $this->switch_to_blog( $blog_id );
14326
-
14327
- $this->do_action( 'after_account_connection', $user, $install );
14328
- }
14329
-
14330
- $this->switch_to_blog( $current_blog );
14331
-
14332
- $this->do_action( 'after_network_account_connection', $user, $blog_2_install_map );
14333
- }
14334
 
14335
  if ( is_numeric( $first_install->license_id ) ) {
14336
  $this->_license = $this->_get_license_by_id( $first_install->license_id );
@@ -14975,27 +16003,63 @@
14975
  * @author Vova Feldman (@svovaf)
14976
  * @since 1.0.6
14977
  *
14978
- * @param Freemius $parent_fs
 
14979
  */
14980
- private function _activate_addon_account( Freemius $parent_fs ) {
14981
  if ( $this->is_registered() ) {
14982
  // Already activated.
14983
  return;
14984
  }
14985
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14986
  // Activate add-on with parent plugin credentials.
14987
- $addon_install = $parent_fs->get_api_site_scope()->call(
14988
  "/addons/{$this->_plugin->id}/installs.json",
14989
  'post',
14990
- $this->get_install_data_for_api( array(
14991
- 'uid' => $this->get_anonymous_id(),
14992
- ), false, false )
14993
  );
14994
 
14995
- if ( isset( $addon_install->error ) ) {
 
 
 
 
14996
  $this->_admin_notices->add(
14997
  sprintf( $this->get_text_inline( 'Couldn\'t activate %s.', 'could-not-activate-x' ), $this->get_plugin_name() ) . ' ' .
14998
- $this->get_text_inline( 'Please contact us with the following message:', 'contact-us-with-error-message' ) . ' ' . '<b>' . $addon_install->error->message . '</b>',
14999
  $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...',
15000
  'error'
15001
  );
@@ -15003,27 +16067,131 @@
15003
  return;
15004
  }
15005
 
 
 
 
 
 
 
 
15006
  // Get user information based on parent's plugin.
15007
  $user = $parent_fs->get_user();
15008
 
15009
  // First of all, set site and user info - otherwise we won't
15010
  // be able to invoke API calls.
15011
- $this->_site = new FS_Site( $addon_install );
15012
  $this->_user = $user;
15013
 
15014
  // Sync add-on plans.
15015
  $this->_sync_plans();
15016
 
15017
- // Get site's current plan.
15018
- //$this->_site->plan = $this->_get_plan_by_id( $this->_site->plan->id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15019
 
15020
- $this->_set_account( $user, $this->_site );
 
15021
 
15022
- // Sync licenses.
15023
- $this->_sync_licenses();
15024
 
15025
- // Try to activate premium license.
15026
- $this->_activate_license( true );
15027
  }
15028
 
15029
  /**
@@ -15140,6 +16308,8 @@
15140
  ! $this->is_registered()
15141
  );
15142
 
 
 
15143
  if ( ( ! $this->has_api_connectivity() && ! $this->is_enable_anonymous() ) ||
15144
  $should_hide_site_admin_settings
15145
  ) {
@@ -15346,12 +16516,18 @@
15346
  }
15347
 
15348
  if ( ! $this->_menu->has_menu() || $this->_menu->is_top_level() ) {
15349
- $this->_dynamically_added_top_level_page_hook_name = $this->_menu->add_page_and_update(
15350
- $this->get_plugin_name(),
15351
- $this->get_plugin_name(),
15352
- 'manage_options',
15353
- $this->_menu->has_menu() ? $this->_menu->get_slug() : $this->_slug
15354
- );
 
 
 
 
 
 
15355
  } else {
15356
  $this->_menu->add_subpage_and_update(
15357
  $this->_menu->get_parent_slug(),
@@ -15437,6 +16613,44 @@
15437
  );
15438
  }
15439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15440
  /**
15441
  * Add default Freemius menu items.
15442
  *
@@ -15449,28 +16663,7 @@
15449
 
15450
  $is_activation_mode = $this->is_activation_mode();
15451
 
15452
- if ( $this->is_addon() ) {
15453
- // No submenu items for add-ons.
15454
- $add_submenu_items = false;
15455
- } else if ( $this->is_free_wp_org_theme() && ! fs_is_network_admin() ) {
15456
- // Also add submenu items when running in a free .org theme so the tabs will be visible.
15457
- $add_submenu_items = true;
15458
- } else if ( $is_activation_mode && ! $this->is_free_wp_org_theme() ) {
15459
- $add_submenu_items = false;
15460
- } else if ( fs_is_network_admin() ) {
15461
- /**
15462
- * Add submenu items to network level when plugin was network
15463
- * activated and the super-admin did NOT delegated the connection
15464
- * of all sites to site admins.
15465
- */
15466
- $add_submenu_items = (
15467
- $this->_is_network_active &&
15468
- ( WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED ||
15469
- ! $this->is_network_delegated_connection() )
15470
- );
15471
- } else {
15472
- $add_submenu_items = ( ! $this->_is_network_active || $this->is_delegated_connection() );
15473
- }
15474
 
15475
  if ( $add_submenu_items ) {
15476
  if ( $this->has_affiliate_program() ) {
@@ -16521,6 +17714,165 @@
16521
  self::$_accounts->set_option( 'account_addons', $all_addons, $store );
16522
  }
16523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16524
  /**
16525
  * Store account params in the Database.
16526
  *
@@ -16615,7 +17967,9 @@
16615
  $api = $this->get_api_site_scope();
16616
 
16617
  if ( ! is_numeric( $license_id ) ) {
16618
- $license_id = $this->_license->id;
 
 
16619
  }
16620
 
16621
  $result = $api->get( "/licenses/{$license_id}/subscriptions.json", true );
@@ -16722,7 +18076,7 @@
16722
  $plugin_id = $this->_plugin->id;
16723
  }
16724
 
16725
- $user_licenses_endpoint = "/plugins/{$plugin_id}/licenses.json";
16726
  if ( ! empty ( $foreign_licenses ) ) {
16727
  $foreign_licenses = array(
16728
  // Prefix with `+` to tell the server to include foreign licenses in the licenses collection.
@@ -16771,7 +18125,7 @@
16771
 
16772
  if ( is_numeric( $site_license_id ) ) {
16773
  // Try to retrieve a foreign license that is linked to the install.
16774
- $api_result = $api->call( '/licenses.json' );
16775
 
16776
  if ( $this->is_api_result_object( $api_result, 'licenses' ) &&
16777
  is_array( $api_result->licenses )
@@ -16784,7 +18138,17 @@
16784
  } else {
16785
  $api_errors[] = $api_result;
16786
  }
16787
- } else if ( is_object( $this->_license ) ) {
 
 
 
 
 
 
 
 
 
 
16788
  $is_license_in_result = false;
16789
  if ( ! empty( $result ) ) {
16790
  foreach ( $result as $license ) {
@@ -16798,7 +18162,7 @@
16798
  if ( ! $is_license_in_result ) {
16799
  // Fetch foreign license by ID and license key.
16800
  $license = $api->get( "/licenses/{$this->_license->id}.json?license_key=" .
16801
- urlencode( $this->_license->secret_key ) );
16802
 
16803
  if ( $this->is_api_result_entity( $license ) ) {
16804
  $result[] = new FS_Plugin_License( $license );
@@ -16867,7 +18231,15 @@
16867
  $plugin_id = $this->_plugin->id;
16868
  }
16869
 
16870
- $result = $api->get( "/plugins/{$plugin_id}/payments.json?include_addons=true", $flush );
 
 
 
 
 
 
 
 
16871
 
16872
  if ( ! isset( $result->error ) ) {
16873
  for ( $i = 0, $len = count( $result->payments ); $i < $len; $i ++ ) {
@@ -16937,15 +18309,24 @@
16937
  return false;
16938
  }
16939
 
 
 
16940
  // Check if version is actually newer.
16941
  $has_new_version =
16942
  // If it's an non-installed add-on then always return latest.
16943
  ( $this->_is_addon_id( $plugin_id ) && ! $this->is_addon_activated( $plugin_id ) ) ||
16944
  // Compare versions.
16945
- version_compare( $this->get_plugin_version(), $latest_tag->version, '<' );
16946
 
16947
  $this->_logger->departure( $has_new_version ? 'Found newer plugin version ' . $latest_tag->version : 'No new version' );
16948
 
 
 
 
 
 
 
 
16949
  return $has_new_version ? $latest_tag : false;
16950
  }
16951
 
@@ -17156,9 +18537,19 @@
17156
  if ( $this->is_addon_activated( $addon_id ) ) {
17157
  // If already installed, use add-on sync.
17158
  $fs_addon = self::get_instance_by_id( $addon_id );
17159
- $fs_addon->_sync_license( $background );
17160
 
17161
- return;
 
 
 
 
 
 
 
 
 
 
 
17162
  }
17163
 
17164
  // Validate add-on exists.
@@ -17287,9 +18678,12 @@
17287
  if ( ! self::$_global_admin_notices->has_sticky( 'api_blocked' ) ) {
17288
  self::$_global_admin_notices->add(
17289
  sprintf(
17290
- $this->get_text_x_inline( 'Your server is blocking the access to Freemius\' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s', '%1s - plugin title, %2s - API domain', 'server-blocking-access' ),
17291
  $this->get_plugin_name(),
17292
- '<a href="' . $api->get_url() . '" target="_blank">' . $api->get_url() . '</a>'
 
 
 
17293
  ) . '<br> ' . $this->get_text_inline( 'Error received from the server:', 'server-error-message' ) . var_export( $result->error, true ),
17294
  $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...',
17295
  'error',
@@ -17452,7 +18846,7 @@
17452
  $this->_store_licenses();
17453
 
17454
  $plan_change = $is_free ?
17455
- 'upgraded' :
17456
  ( is_object( $new_license ) ?
17457
  'changed' :
17458
  'downgraded' );
@@ -17480,6 +18874,18 @@
17480
  $this->_sync_site_subscription( $this->_license );
17481
  }
17482
  }
 
 
 
 
 
 
 
 
 
 
 
 
17483
  }
17484
 
17485
  $hmm_text = $this->get_text_x_inline( 'Hmm', 'something somebody says when they are thinking about what you have just said.', 'hmm' ) . '...';
@@ -17513,11 +18919,12 @@
17513
  }
17514
  break;
17515
  case 'upgraded':
 
17516
  $this->_admin_notices->add_sticky(
17517
- sprintf(
17518
- $this->get_text_inline( 'Your plan was successfully upgraded.', 'plan-upgraded-message' ),
17519
- '<i>' . $this->get_plugin_name() . '</i>'
17520
- ) . $this->get_complete_upgrade_instructions(),
17521
  'plan_upgraded',
17522
  $this->get_text_x_inline( 'Yee-haw', 'interjection expressing joy or exuberance', 'yee-haw' ) . '!'
17523
  );
@@ -17632,22 +19039,24 @@
17632
  *
17633
  * @param bool $background
17634
  */
17635
- protected function _activate_license( $background = false ) {
17636
  $this->_logger->entrance();
17637
 
17638
- $license_id = fs_request_get( 'license_id' );
 
17639
 
17640
- if ( is_object( $this->_site ) &&
17641
- FS_Plugin_License::is_valid_id( $license_id ) &&
17642
- $license_id == $this->_site->license_id
17643
- ) {
17644
- // License is already activated.
17645
- return;
17646
- }
17647
 
17648
- $premium_license = FS_Plugin_License::is_valid_id( $license_id ) ?
17649
- $this->_get_license_by_id( $license_id ) :
17650
- $this->_get_available_premium_license();
 
17651
 
17652
  if ( ! is_object( $premium_license ) ) {
17653
  return;
@@ -17696,7 +19105,7 @@
17696
  }
17697
 
17698
  $api = $this->get_api_site_scope();
17699
- $license = $api->call( "/licenses/{$premium_license->id}.json", 'put', $api_request_params );
17700
 
17701
  if ( ! $this->is_api_result_entity( $license ) ) {
17702
  if ( ! $background ) {
@@ -17730,6 +19139,18 @@
17730
 
17731
  $this->_store_account();
17732
 
 
 
 
 
 
 
 
 
 
 
 
 
17733
  if ( ! $background ) {
17734
  $this->_admin_notices->add_sticky(
17735
  $this->get_text_inline( 'Your license was successfully activated.', 'license-activated-message' ) .
@@ -18132,6 +19553,8 @@
18132
 
18133
  if ( $this->has_secret_key() ) {
18134
  $endpoint = add_query_arg( 'type', 'all', $endpoint );
 
 
18135
  }
18136
 
18137
  return $endpoint;
@@ -18288,9 +19711,16 @@
18288
  function _get_invoice_api_url( $payment_id = false ) {
18289
  $this->_logger->entrance();
18290
 
18291
- return $this->get_api_user_scope()->get_signed_url(
18292
  "/payments/{$payment_id}/invoice.pdf"
18293
  );
 
 
 
 
 
 
 
18294
  }
18295
 
18296
  /**
@@ -18336,7 +19766,7 @@
18336
  $this->get_parent_instance() :
18337
  $this;
18338
 
18339
- return $fs->get_account_url( 'download_latest', $params );
18340
  }
18341
 
18342
  #endregion Download Plugin ------------------------------------------------------------------
@@ -18425,7 +19855,9 @@
18425
  if ( ! $flush && $api->is_cached( $path ) ) {
18426
  $addons = self::get_all_addons();
18427
 
18428
- return $addons[ $this->_plugin->id ];
 
 
18429
  }
18430
 
18431
  $result = $api->get( $path, $flush );
@@ -18661,7 +20093,7 @@
18661
  if ( ! isset( $result->error ) ) {
18662
  $this->_admin_notices->add( sprintf(
18663
  $this->get_text_inline( 'Verification mail was just sent to %s. If you can\'t find it after 5 min, please check your spam box.', 'verification-email-sent-message' ),
18664
- sprintf( '<a href="mailto:%1s">%2s</a>', esc_url( $this->_user->email ), $this->_user->email )
18665
  ) );
18666
  } else {
18667
  // handle different error cases.
@@ -18726,7 +20158,9 @@
18726
  ) {
18727
  $first_time_path = '';
18728
  } else {
18729
- $first_time_path = $this->_menu->get_first_time_path();
 
 
18730
  }
18731
 
18732
  if ( $this->_is_network_active &&
@@ -19371,7 +20805,8 @@
19371
  $user->id,
19372
  $user->public_key,
19373
  ! $this->is_live(),
19374
- $user->secret_key
 
19375
  );
19376
  }
19377
 
@@ -19399,7 +20834,8 @@
19399
  $user->id,
19400
  $user->public_key,
19401
  ! $this->is_live(),
19402
- $user->secret_key
 
19403
  );
19404
 
19405
  return $this->_user_api;
@@ -19424,7 +20860,8 @@
19424
  $this->_site->id,
19425
  $this->_site->public_key,
19426
  ! $this->is_live(),
19427
- $this->_site->secret_key
 
19428
  );
19429
  }
19430
 
@@ -19448,7 +20885,9 @@
19448
  'plugin',
19449
  $this->_plugin->id,
19450
  $this->_plugin->public_key,
19451
- ! $this->is_live()
 
 
19452
  );
19453
  }
19454
 
@@ -19488,6 +20927,10 @@
19488
  $plans = array( $plans );
19489
  }
19490
 
 
 
 
 
19491
  $this->_storage->has_trial_plan = FS_Plan_Manager::instance()->has_trial_plan( $plans );
19492
  }
19493
 
@@ -19865,7 +21308,33 @@
19865
  function _add_upgrade_action_link() {
19866
  $this->_logger->entrance();
19867
 
19868
- if ( ! $this->is_paying() && $this->has_paid_plan() ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19869
  $this->add_plugin_action_link(
19870
  $this->get_text_inline( 'Upgrade', 'upgrade' ),
19871
  $this->get_upgrade_url(),
@@ -19875,7 +21344,11 @@
19875
  );
19876
  }
19877
 
19878
- if ( $this->has_addons() ) {
 
 
 
 
19879
  $this->add_plugin_action_link(
19880
  $this->get_text_inline( 'Add-Ons', 'add-ons' ),
19881
  $this->_get_admin_page_url( 'addons' ),
@@ -19926,7 +21399,7 @@
19926
  }
19927
 
19928
  /**
19929
- * Adds "Opt in" or "Opt out" link to the main "Plugins" page link actions collection.
19930
  *
19931
  * @author Leo Fajardo (@leorw)
19932
  * @since 1.2.1.5
@@ -19938,13 +21411,19 @@
19938
 
19939
  $this->_logger->entrance();
19940
 
19941
- /**
19942
- * If the activation has been delegated to site admins, no tracking-related actions for now.
19943
- *
19944
- * @author Leo Fajardo (@leorw)
19945
- */
19946
- if ( $this->_is_network_active && $this->is_network_delegated_connection() ) {
19947
- return;
 
 
 
 
 
 
19948
  }
19949
 
19950
  if ( fs_request_is_action_secure( $this->get_unique_affix() . '_reconnect' ) ) {
@@ -19962,14 +21441,16 @@
19962
  return;
19963
  }
19964
 
19965
- if ( ! $this->is_enable_anonymous() ) {
19966
- // Don't allow to opt-out if anonymous mode is disabled.
19967
- return;
19968
- }
 
19969
 
19970
- if ( ! $this->is_free_plan() ) {
19971
- // Don't allow to opt-out if running in paid plan.
19972
- return;
 
19973
  }
19974
 
19975
  if ( $this->add_ajax_action( 'stop_tracking', array( &$this, '_stop_tracking_callback' ) ) ) {
@@ -19980,7 +21461,8 @@
19980
  return;
19981
  }
19982
 
19983
- $url = '#';
 
19984
 
19985
  if ( $this->is_registered() ) {
19986
  if ( $this->is_tracking_allowed() ) {
@@ -19990,7 +21472,10 @@
19990
  }
19991
 
19992
  add_action( 'admin_footer', array( &$this, '_add_optout_dialog' ) );
19993
- } else {
 
 
 
19994
  $link_text_id = $this->get_text_inline( 'Opt In', 'opt-in' );
19995
 
19996
  $params = ! $this->is_anonymous() ?
@@ -20003,7 +21488,7 @@
20003
  $url = $this->get_activation_url( $params );
20004
  }
20005
 
20006
- if ( $this->is_plugin() && self::is_plugins_page() ) {
20007
  $this->add_plugin_action_link(
20008
  $link_text_id,
20009
  $url,
@@ -20026,7 +21511,9 @@
20026
  $url = false;
20027
 
20028
  if ( ! $this->is_addon() || ! $this->has_free_plan() ) {
20029
- $first_time_path = $this->_menu->get_first_time_path();
 
 
20030
 
20031
  if ( $this->is_activation_mode() ) {
20032
  $url = $this->get_activation_url();
@@ -20214,8 +21701,8 @@
20214
  $premium_plugin_basename = $this->premium_plugin_basename();
20215
 
20216
  return sprintf(
20217
- /* translators: %1s: Product title; %2s: Plan title */
20218
- $this->get_text_inline( ' The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s', 'activate-premium-version' ),
20219
  sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
20220
  $plan_title,
20221
  sprintf(
@@ -20245,7 +21732,7 @@
20245
  ) ),
20246
  $deactivation_step,
20247
  $this->get_text_inline( 'Upload and activate the downloaded version', 'upload-and-activate' ),
20248
- '//bit.ly/upload-wp-' . $this->_module_type . 's',
20249
  $this->get_text_inline( 'How to upload and activate?', 'howto-upload-activate' )
20250
  );
20251
  }
@@ -21228,7 +22715,9 @@
21228
  'plugin',
21229
  $user_plugin->id,
21230
  $user_plugin->public_key,
21231
- ! $user_plugin->is_live
 
 
21232
  );
21233
 
21234
  $addons_result = $plugin_api->get( '/addons.json?enriched=true', true );
@@ -21318,7 +22807,7 @@
21318
  '%s %s %s',
21319
  $thank_you,
21320
  $already_opted_in,
21321
- sprintf($this->get_text_inline( 'Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂', 'due-to-gdpr-compliance-requirements' ), '<a href="https://eugdpr.org/" target="_blank" rel="noopener noreferrer">', '</a>') .
21322
  '<br><br>' .
21323
  '<b>' . $this->get_text_inline( "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:", 'contact-for-updates' ) . '</b>' .
21324
  $actions .
399
  $this->_is_multisite_integrated &&
400
  // Themes are always network activated, but the ACTUAL activation is per site.
401
  $this->is_plugin() &&
402
+ (
403
+ is_plugin_active_for_network( $this->_plugin_basename ) ||
404
+ // Plugin network level activation or uninstall.
405
+ ( fs_is_network_admin() && is_plugin_inactive( $this->_plugin_basename ) )
406
+ )
407
  );
408
 
409
  $this->_storage->set_network_active(
411
  $this->is_delegated_connection()
412
  );
413
 
414
+ if ( ! isset( $this->_storage->is_network_activated ) ) {
415
+ $this->_storage->is_network_activated = $this->_is_network_active;
416
+ }
417
+
418
+ if ( $this->_storage->is_network_activated != $this->_is_network_active ) {
419
+ // Update last activation level.
420
+ $this->_storage->is_network_activated = $this->_is_network_active;
421
+
422
+ $this->maybe_adjust_storage();
423
+ }
424
+
425
  #region Migration
426
 
427
  if ( is_multisite() ) {
506
  $this->_version_updates_handler();
507
  }
508
 
509
+ /**
510
+ * @author Leo Fajardo (@leorw)
511
+ * @since 2.3.0
512
+ */
513
+ private function maybe_adjust_storage() {
514
+ $install_timestamp = null;
515
+ $prev_is_premium = null;
516
+
517
+ $options_to_update = array();
518
+
519
+ $is_network_admin = fs_is_network_admin();
520
+
521
+ $network_install_timestamp = $this->_storage->get( 'install_timestamp', null, true );
522
+
523
+ if ( ! $is_network_admin ) {
524
+ if ( is_null( $network_install_timestamp ) ) {
525
+ // Plugin was not network-activated before.
526
+ return;
527
+ }
528
+
529
+ if ( is_null( $this->_storage->get( 'install_timestamp', null, false ) ) ) {
530
+ // Set the `install_timestamp` only if it's not yet set.
531
+ $install_timestamp = $network_install_timestamp;
532
+ }
533
+
534
+ $prev_is_premium = $this->_storage->get( 'prev_is_premium', null, true );
535
+ } else {
536
+ $current_wp_user = self::_get_current_wp_user();
537
+ $current_fs_user = self::_get_user_by_email( $current_wp_user->user_email );
538
+ $network_user_info = array();
539
+
540
+ $skips_count = 0;
541
+
542
+ $sites = self::get_sites();
543
+ $sites_count = count( $sites );
544
+
545
+ $blog_id_2_install_map = array();
546
+
547
+ $is_first_non_ignored_blog = true;
548
+
549
+ foreach ( $sites as $site ) {
550
+ $blog_id = self::get_site_blog_id( $site );
551
+
552
+ $blog_install_timestamp = $this->_storage->get( 'install_timestamp', null, $blog_id );
553
+
554
+ if ( is_null( $blog_install_timestamp ) ) {
555
+ // Plugin has not been installed on this blog.
556
+ continue;
557
+ }
558
+
559
+ $is_earlier_install = (
560
+ ! is_null( $install_timestamp ) &&
561
+ $blog_install_timestamp < $install_timestamp
562
+ );
563
+
564
+ $install = $this->get_install_by_blog_id( $blog_id );
565
+
566
+ $update_network_user_info = false;
567
+
568
+ if ( ! is_object( $install ) ) {
569
+ if ( ! $this->_storage->get( 'is_anonymous', false, $blog_id ) ) {
570
+ // The opt-in decision (whether to skip or opt in) is yet to be made.
571
+ continue;
572
+ }
573
+
574
+ $skips_count ++;
575
+ } else {
576
+ $blog_id_2_install_map[ $blog_id ] = $install;
577
+
578
+ if ( empty( $network_user_info ) ) {
579
+ // Set the network user info for the 1st time. Choose any user information whether or not it is for the current WP user.
580
+ $update_network_user_info = true;
581
+ }
582
+
583
+ if ( ! $update_network_user_info &&
584
+ is_object( $current_fs_user ) &&
585
+ $network_user_info['user_id'] != $current_fs_user->id &&
586
+ $install->user_id == $current_fs_user->id
587
+ ) {
588
+ // If an install that is owned by the current WP user is found, use its user information instead.
589
+ $update_network_user_info = true;
590
+ }
591
+
592
+ if ( ! $update_network_user_info &&
593
+ $is_earlier_install &&
594
+ ( ! is_object( $current_fs_user ) || $current_fs_user->id == $install->user_id )
595
+ ) {
596
+ // Update to the earliest install info if there's no install found so far that is owned by the current WP user; OR only if the found install is owned by the current WP user.
597
+ $update_network_user_info = true;
598
+ }
599
+ }
600
+
601
+ if ( $update_network_user_info ) {
602
+ $network_user_info = array(
603
+ 'user_id' => $install->user_id,
604
+ 'blog_id' => $blog_id
605
+ );
606
+ }
607
+
608
+ $site_prev_is_premium = $this->_storage->get( 'prev_is_premium', null, $blog_id );
609
+
610
+ if ( $is_first_non_ignored_blog ) {
611
+ $prev_is_premium = $site_prev_is_premium;
612
+
613
+ if ( is_null( $network_install_timestamp ) ) {
614
+ $install_timestamp = $blog_install_timestamp;
615
+ }
616
+
617
+ $is_first_non_ignored_blog = false;
618
+
619
+ continue;
620
+ }
621
+
622
+ if ( ! is_null( $prev_is_premium ) && $prev_is_premium !== $site_prev_is_premium ) {
623
+ // If a different `$site_prev_is_premium` value is found, do not include the option in the collection of options to update.
624
+ $prev_is_premium = null;
625
+ }
626
+
627
+ if ( $is_earlier_install ) {
628
+ // If an earlier install timestamp is found.
629
+ $install_timestamp = $blog_install_timestamp;
630
+ }
631
+ }
632
+
633
+ $installs_count = count( $blog_id_2_install_map );
634
+
635
+ if ( $sites_count === ( $installs_count + $skips_count ) ) {
636
+ if ( ! empty( $network_user_info ) ) {
637
+ $options_to_update['network_user_id'] = $network_user_info['user_id'];
638
+ $options_to_update['network_install_blog_id'] = $network_user_info['blog_id'];
639
+
640
+ foreach ( $blog_id_2_install_map as $blog_id => $install ) {
641
+ if ( $install->user_id == $network_user_info['user_id'] ) {
642
+ continue;
643
+ }
644
+
645
+ $this->_storage->store( 'is_delegated_connection', true, $blog_id );
646
+ }
647
+ }
648
+
649
+ if ( $sites_count === $skips_count ) {
650
+ /**
651
+ * Assume network-level skipping as the intended action if all actions identified were only
652
+ * skipping of the connection (i.e., no opt-ins and delegated connections so far).
653
+ */
654
+ $options_to_update['is_anonymous_ms'] = true;
655
+ } else if ( $sites_count === $installs_count ) {
656
+ /**
657
+ * Assume network-level opt-in as the intended action if all actions identified were only opt-ins
658
+ * (i.e., no delegation and skipping of the connections so far).
659
+ */
660
+ $options_to_update['is_network_connected'] = true;
661
+ }
662
+ }
663
+ }
664
+
665
+ if ( ! is_null( $install_timestamp ) ) {
666
+ $options_to_update['install_timestamp'] = $install_timestamp;
667
+ }
668
+
669
+ if ( ! is_null( $prev_is_premium ) ) {
670
+ $options_to_update['prev_is_premium'] = $prev_is_premium;
671
+ }
672
+
673
+ if ( ! empty( $options_to_update ) ) {
674
+ $this->adjust_storage( $options_to_update, $is_network_admin );
675
+ }
676
+ }
677
+
678
+ /**
679
+ * @author Leo Fajardo (@leorw)
680
+ * @since 2.3.0
681
+ *
682
+ * @param array $options
683
+ * @param bool $is_network_admin
684
+ */
685
+ private function adjust_storage( $options, $is_network_admin ) {
686
+ foreach ( $options as $name => $value ) {
687
+ $this->_storage->store( $name, $value, $is_network_admin ? true : null );
688
+ }
689
+ }
690
+
691
  /**
692
  * Checks whether this module has a settings menu.
693
  *
1470
  add_filter( 'site_transient_update_plugins', array( 'Freemius', '_remove_fs_updates_from_plugin_install_page' ), 10, 2 );
1471
  } else if ( self::is_plugins_page() || self::is_updates_page() ) {
1472
  /**
1473
+ * On the "Plugins" and "Updates" admin pages, if there are premium or non–org-compliant plugins, modify their details dialog URLs (add a Freemius-specific param) so that the SDK can determine if the plugin information dialog should show information from Freemius.
 
 
1474
  *
1475
  * @author Leo Fajardo (@leorw)
1476
  * @since 2.2.3
1601
 
1602
  add_action( 'admin_init', array( &$this, '_add_license_activation' ) );
1603
  add_action( 'admin_init', array( &$this, '_add_premium_version_upgrade_selection' ) );
1604
+ add_action( 'admin_init', array( &$this, '_add_beta_mode_update_handler' ) );
1605
 
1606
  $this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) );
1607
  $this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) );
1661
  static function _remove_fs_updates_from_plugin_install_page( $updates, $transient = null ) {
1662
  if ( is_object( $updates ) && isset( $updates->response ) ) {
1663
  foreach ( $updates->response as $file => $plugin ) {
1664
+ if ( isset( $plugin->package ) && false !== strpos( $plugin->package, 'api.freemius' ) ) {
1665
  unset( $updates->response[ $file ] );
1666
  }
1667
  }
1724
  <?php
1725
  }
1726
 
1727
+ /**
1728
+ * @author Leo Fajardo (@leorw)
1729
+ * @since 2.3.0
1730
+ */
1731
+ static function _maybe_add_beta_label_styles() {
1732
+ $has_any_beta_version = false;
1733
+
1734
+ foreach ( self::$_instances as $instance ) {
1735
+ if ( $instance->is_beta() ) {
1736
+ $has_any_beta_version = true;
1737
+ break;
1738
+ }
1739
+ }
1740
+
1741
+ if ( $has_any_beta_version ) {
1742
+ fs_enqueue_local_style( 'fs_plugins', '/admin/plugins.css' );
1743
+ }
1744
+ }
1745
+
1746
+ /**
1747
+ * @author Leo Fajardo (@leorw)
1748
+ * @since 2.3.0
1749
+ */
1750
+ static function _maybe_add_beta_label_to_plugins_and_handle_confirmation() {
1751
+ $beta_data = array();
1752
+
1753
+ foreach ( self::$_instances as $instance ) {
1754
+ if ( ! $instance->is_premium() ) {
1755
+ continue;
1756
+ }
1757
+
1758
+ /**
1759
+ * If there's an available beta version update, a confirmation message will be shown when the
1760
+ * "Update now" link on the "Plugins" or "Themes" page is clicked.
1761
+ */
1762
+ $has_beta_update = $instance->has_beta_update();
1763
+
1764
+ $is_beta = (
1765
+ // The "Beta" label is added separately for themes.
1766
+ $instance->is_plugin() &&
1767
+ $instance->is_beta()
1768
+ );
1769
+
1770
+ if ( ! $is_beta && ! $has_beta_update ) {
1771
+ continue;
1772
+ }
1773
+
1774
+ $beta_data[ $instance->get_plugin_basename() ] = array( 'is_installed_version_beta' => $is_beta );
1775
+
1776
+ if ( ! $has_beta_update ) {
1777
+ continue;
1778
+ }
1779
+
1780
+ $beta_data[ $instance->get_plugin_basename() ]['beta_version_update_confirmation_message'] = sprintf(
1781
+ '%s %s',
1782
+ sprintf(
1783
+ fs_esc_attr_inline(
1784
+ '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.',
1785
+ 'beta-version-update-caution',
1786
+ $instance->get_slug()
1787
+ ),
1788
+ $instance->get_plugin_title()
1789
+ ),
1790
+ fs_esc_attr_inline( 'Would you like to proceed with the update?', 'update-confirmation', $instance->get_slug() )
1791
+ );
1792
+ }
1793
+
1794
+ if ( empty( $beta_data ) ) {
1795
+ return;
1796
+ }
1797
+ ?>
1798
+ <script type="text/javascript">
1799
+ ( function( $ ) {
1800
+ var betaData = <?php echo json_encode( $beta_data ) ?>;
1801
+
1802
+ for ( var pluginBasename in betaData ) {
1803
+ if ( ! betaData.hasOwnProperty( pluginBasename ) ) {
1804
+ continue;
1805
+ }
1806
+
1807
+ if ( ! betaData[ pluginBasename ].is_installed_version_beta ) {
1808
+ continue;
1809
+ }
1810
+
1811
+ var $parentContainer = $( '.wp-list-table.plugins tr[data-plugin="' + pluginBasename + '"]' );
1812
+ if ( 0 === $parentContainer.length ) {
1813
+ continue;
1814
+ }
1815
+
1816
+ $parentContainer.find( '.plugin-title > strong:first-child').append(
1817
+ '<span class="fs-tag fs-info"><?php fs_esc_js_echo_inline( 'Beta', 'beta' ) ?></span>'
1818
+ );
1819
+ }
1820
+
1821
+ setTimeout( function() {
1822
+ // Wait a little bit before adding the event handler, otherwise, it will be overridden by the core WP logic.
1823
+ $( '.plugins .update-message .update-link, .themes .theme .update-message' ).on( 'click', function() {
1824
+ var $parentContainer = $( this ).parents( 'tr:first' );
1825
+ pluginBasename = ( 0 !== $parentContainer.length ) ?
1826
+ $parentContainer.data( 'plugin' ) :
1827
+ $( this ).parents( '.theme:first' ).data( 'slug' );
1828
+
1829
+ if (
1830
+ betaData[ pluginBasename ] &&
1831
+ betaData[ pluginBasename ].beta_version_update_confirmation_message &&
1832
+ ! confirm( betaData[ pluginBasename ].beta_version_update_confirmation_message )
1833
+ ) {
1834
+ return false;
1835
+ }
1836
+ } );
1837
+ }, 20 );
1838
+ } )( jQuery );
1839
+ </script>
1840
+ <?php
1841
+ }
1842
+
1843
  /**
1844
  * Keeping the uninstall hook registered for free or premium plugin version may result to a fatal error that
1845
  * could happen when a user tries to uninstall either version while one of them is still active. Uninstalling a
1965
  // Try to load the cached value of the file path.
1966
  if ( isset( $this->_storage->plugin_main_file ) ) {
1967
  $plugin_main_file = $this->_storage->plugin_main_file;
1968
+ if ( ! empty( $plugin_main_file->path ) ) {
1969
  $absolute_path = $this->get_absolute_path( $plugin_main_file->path );
1970
  if ( file_exists( $absolute_path ) ) {
1971
  return $absolute_path;
1986
  if ( ! $is_init ) {
1987
  // Fetch prev path cache.
1988
  if ( isset( $this->_storage->plugin_main_file ) &&
1989
+ ! empty( $this->_storage->plugin_main_file->prev_path )
1990
  ) {
1991
  $absolute_path = $this->get_absolute_path( $this->_storage->plugin_main_file->prev_path );
1992
  if ( file_exists( $absolute_path ) ) {
2090
  $store_option = true;
2091
  }
2092
 
2093
+ if ( empty( $id_slug_type_path_map[ $module_id ]['path'] ) ||
2094
  /**
2095
  * This verification is for cases when suddenly the same module
2096
  * is installed but with a different folder name.
2154
  $caller_map = array();
2155
  $module_type = WP_FS__MODULE_TYPE_PLUGIN;
2156
  $themes_dir = fs_normalize_path( get_theme_root( get_stylesheet() ) );
2157
+ $plugin_dir_to_skip = false;
2158
 
2159
  for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) {
2160
  if ( empty( $bt[ $i ]['file'] ) ) {
2180
  'activate_plugin'
2181
  ) )
2182
  ) {
2183
+ if ( 'activate_plugin' === $bt[ $i ]['function'] ) {
2184
+ /**
2185
+ * Store the directory of the activator plugin so that any other file that starts with it
2186
+ * cannot be mistakenly chosen as a candidate caller file.
2187
+ *
2188
+ * @author Leo Fajardo
2189
+ *
2190
+ * @since 2.3.0
2191
+ */
2192
+ $caller_file_path = fs_normalize_path( $bt[ $i ]['file'] );
2193
+
2194
+ foreach ( $all_plugins_paths as $plugin_path ) {
2195
+ $plugin_dir = fs_normalize_path( dirname( $plugin_path ) . '/' );
2196
+ if ( false !== strpos( $caller_file_path, $plugin_dir ) ) {
2197
+ $plugin_dir_to_skip = $plugin_dir;
2198
+
2199
+ break;
2200
+ }
2201
+ }
2202
+ }
2203
+
2204
  // Ignore call stack hooks and files inclusion.
2205
  continue;
2206
  }
2207
 
2208
  $caller_file_path = fs_normalize_path( $bt[ $i ]['file'] );
2209
 
2210
+ if ( ! empty( $plugin_dir_to_skip ) ) {
2211
+ /**
2212
+ * Skip if it's an activator plugin file to avoid mistakenly choosing it as a candidate caller file.
2213
+ *
2214
+ * @author Leo Fajardo
2215
+ *
2216
+ * @since 2.3.0
2217
+ */
2218
+ if ( 0 === strpos( $caller_file_path, $plugin_dir_to_skip ) ) {
2219
+ continue;
2220
+ }
2221
+ }
2222
+
2223
  if ( 'functions.php' === basename( $caller_file_path ) ) {
2224
  /**
2225
  * 1. Assumes that theme's starting execution file is functions.php.
2279
  *
2280
  * @author Vova Feldman (@svovaf)
2281
  * @author Leo Fajardo (@leorw)
2282
+ *
2283
  * @since 1.1.2
2284
  */
2285
  function _add_deactivation_feedback_dialog_box() {
2286
+ $subscription_cancellation_dialog_box_template_params = $this->apply_filters( 'show_deactivation_subscription_cancellation', true ) ?
2287
+ $this->_get_subscription_cancellation_dialog_box_template_params() :
2288
+ array();
 
 
 
 
 
 
2289
 
2290
+ /**
2291
+ * @since 2.3.0 Developers can optionally hide the deactivation feedback form using the 'show_deactivation_feedback_form' filter.
2292
+ */
2293
+ $show_deactivation_feedback_form = true;
2294
+ if ( $this->has_filter( 'show_deactivation_feedback_form' ) ) {
2295
+ $show_deactivation_feedback_form = $this->apply_filters( 'show_deactivation_feedback_form', true );
2296
+ } else if ( $this->is_addon() ) {
2297
+ /**
2298
+ * If the add-on's 'show_deactivation_feedback_form' is not set, try to inherit the value from the parent.
2299
+ */
2300
+ $show_deactivation_feedback_form = $this->get_parent_instance()->apply_filters( 'show_deactivation_feedback_form', true );
2301
+ }
2302
 
2303
+ $uninstall_confirmation_message = $this->apply_filters( 'uninstall_confirmation_message', '' );
 
2304
 
2305
+ if (
2306
+ empty( $subscription_cancellation_dialog_box_template_params ) &&
2307
+ ! $show_deactivation_feedback_form &&
2308
+ empty( $uninstall_confirmation_message )
2309
+ ) {
2310
+ return;
2311
  }
2312
 
2313
+ $vars = array( 'id' => $this->_module_id );
2314
 
2315
+ if ( $show_deactivation_feedback_form ) {
2316
+ /* Check the type of user:
2317
+ * 1. Long-term (long-term)
2318
+ * 2. Non-registered and non-anonymous short-term (non-registered-and-non-anonymous-short-term).
2319
+ * 3. Short-term (short-term)
2320
+ */
2321
+ $is_long_term_user = true;
2322
+
2323
+ // Check if the site is at least 2 days old.
2324
+ $time_installed = $this->_storage->install_timestamp;
2325
+
2326
+ // Difference in seconds.
2327
+ $date_diff = time() - $time_installed;
2328
+
2329
+ // Convert seconds to days.
2330
+ $date_diff_days = floor( $date_diff / ( 60 * 60 * 24 ) );
2331
+
2332
+ if ( $date_diff_days < 2 ) {
2333
+ $is_long_term_user = false;
2334
+ }
2335
+
2336
+ $is_long_term_user = $this->apply_filters( 'is_long_term_user', $is_long_term_user );
2337
+
2338
+ if ( $is_long_term_user ) {
2339
+ $user_type = 'long-term';
2340
  } else {
2341
+ if ( ! $this->is_registered() && ! $this->is_anonymous() ) {
2342
+ $user_type = 'non-registered-and-non-anonymous-short-term';
2343
+ } else {
2344
+ $user_type = 'short-term';
2345
+ }
2346
  }
 
2347
 
2348
+ $uninstall_reasons = $this->_get_uninstall_reasons( $user_type );
2349
 
2350
+ $vars['reasons'] = $uninstall_reasons;
2351
+ }
2352
+
2353
+ $vars['subscription_cancellation_dialog_box_template_params'] = &$subscription_cancellation_dialog_box_template_params;
2354
+ $vars['show_deactivation_feedback_form'] = $show_deactivation_feedback_form;
2355
+ $vars['uninstall_confirmation_message'] = $uninstall_confirmation_message;
2356
 
2357
  /**
2358
+ * Load the HTML template for the deactivation feedback dialog box.
2359
+ *
2360
  * @todo Deactivation form core functions should be loaded only once! Otherwise, when there are multiple Freemius powered plugins the same code is loaded multiple times. The only thing that should be loaded differently is the various deactivation reasons object based on the state of the plugin.
2361
  */
2362
  fs_require_template( 'forms/deactivation/form.php', $vars );
2863
  function is_site_activation_mode( $and_on = true ) {
2864
  return (
2865
  ( $this->is_on() || ! $and_on ) &&
 
2866
  (
2867
+ ( $this->is_premium() && true === $this->_storage->require_license_activation ) ||
2868
+ (
2869
+ ( ! $this->is_registered() ||
2870
+ ( $this->is_only_premium() && ! $this->has_features_enabled_license() ) ) &&
2871
+ ( ! $this->is_enable_anonymous() ||
2872
+ ( ! $this->is_anonymous() && ! $this->is_pending_activation() ) )
2873
+ )
2874
  )
2875
  );
2876
  }
3002
  $active_basenames = get_option( 'active_plugins' );
3003
  }
3004
 
3005
+ if ( ! is_array( $active_basenames ) ) {
3006
+ $active_basenames = array();
3007
+ }
3008
+
3009
  if ( is_multisite() ) {
3010
  $network_active_basenames = get_site_option( 'active_sitewide_plugins' );
3011
 
3012
  if ( is_array( $network_active_basenames ) && ! empty( $network_active_basenames ) ) {
3013
+ $active_basenames = array_merge( $active_basenames, array_keys( $network_active_basenames ) );
3014
  }
3015
  }
3016
 
3017
  return $active_basenames;
3018
  }
3019
 
3020
+ /**
3021
+ * @author Leo Fajardo (@leorw)
3022
+ * @since 2.3.0
3023
+ *
3024
+ * @param int $blog_id
3025
+ *
3026
+ * @return array
3027
+ */
3028
+ static function get_active_plugins_directories_map( $blog_id = 0 ) {
3029
+ $active_basenames = self::get_active_plugins_basenames( $blog_id );
3030
+
3031
+ $map = array();
3032
+
3033
+ foreach ( $active_basenames as $active_basename ) {
3034
+ $active_basename = fs_normalize_path( $active_basename );
3035
+
3036
+ if ( false === strpos( $active_basename, '/' ) ) {
3037
+ continue;
3038
+ }
3039
+
3040
+ $map[ dirname( $active_basename ) ] = true;
3041
+ }
3042
+
3043
+ return $map;
3044
+ }
3045
+
3046
  /**
3047
  * Get collection of all active plugins. Including network activated plugins.
3048
  *
3290
  add_action( 'admin_footer', array( 'Freemius', '_enrich_ajax_url' ) );
3291
  add_action( 'admin_footer', array( 'Freemius', '_open_support_forum_in_new_page' ) );
3292
 
3293
+ if ( self::is_plugins_page() || self::is_themes_page() ) {
3294
+ add_action( 'admin_print_footer_scripts', array( 'Freemius', '_maybe_add_beta_label_styles' ), 9 );
3295
+
3296
+ /**
3297
+ * Specifically use this hook so that the JS event handlers will work properly on the "Themes"
3298
+ * page.
3299
+ *
3300
+ * @author Leo Fajardo (@leorw)
3301
+ * @since 2.3.0
3302
+ */
3303
+ add_action( 'admin_footer-' . self::get_current_page(), array( 'Freemius', '_maybe_add_beta_label_to_plugins_and_handle_confirmation') );
3304
+ }
3305
 
3306
  self::$_statics_loaded = true;
3307
  }
3898
  $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
3899
 
3900
  $secure_auth = SECURE_AUTH_KEY;
3901
+ if ( empty( $secure_auth ) ||
3902
+ false !== strpos( $secure_auth, ' ' ) ||
3903
+ 'put your unique phrase here' === $secure_auth
3904
+ ) {
3905
  // Protect against default auth key.
3906
  $secure_auth = md5( microtime() );
3907
  }
4798
 
4799
  return;
4800
  } else {
4801
+ $is_network_admin = fs_is_network_admin();
4802
+
4803
+ if (
4804
+ $this->_parent->is_registered() &&
4805
+ ! $this->is_registered() &&
4806
+ /**
4807
+ * If not registered for add-on and the following conditions for the add-on are met, activate add-on account.
4808
+ * * Network active and in network admin - network activate add-on account.
4809
+ * * Network active and not in network admin - activate add-on account for the current blog.
4810
+ * * Not network active and not in network admin - activate add-on account for the current blog.
4811
+ *
4812
+ * If not registered for add-on, not network active, and in network admin, do not handle the add-on activation.
4813
+ *
4814
+ * @author Leo Fajardo (@leorw)
4815
+ * @since 2.3.0
4816
+ */
4817
+ ( $this->is_network_active() || ! $is_network_admin )
4818
+ ) {
4819
  // If parent plugin activated, automatically install add-on for the user.
4820
+ $this->_activate_addon_account(
4821
+ $this->_parent,
4822
+ ( $this->is_network_active() && $is_network_admin ) ?
4823
+ true :
4824
+ get_current_blog_id()
4825
+ );
4826
  } else if ( ! $this->_parent->is_registered() && $this->is_registered() ) {
4827
  // If add-on activated and parent not, automatically install parent for the user.
4828
  $this->activate_parent_account( $this->_parent );
4928
  private function should_use_freemius_updater_and_dialog() {
4929
  return (
4930
  /**
4931
+ * Allow updater and dialog when the `fs_allow_updater_and_dialog` URL query param exists and has `true`
4932
+ * value, or when the current page is not the "Add Plugins" page (/plugin-install.php) and the `action`
4933
+ * URL query param doesn't exist or its value is not `install-plugin` so that there will be no conflicts
4934
+ * with the .org plugins' functionalities (e.g. installation from the "Add Plugins" page and viewing
4935
+ * plugin details from .org).
4936
  */
4937
+ ( true === fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) ||
4938
+ (
4939
+ ! self::is_plugin_install_page() &&
4940
+ // Disallow updater and dialog when installing a plugin, otherwise .org "add-on" plugins will be affected.
4941
+ ( 'install-plugin' !== fs_request_get( 'action' ) )
4942
+ )
4943
  );
4944
  }
4945
 
5395
  'premium_suffix' => $premium_suffix,
5396
  'is_live' => $this->get_bool_option( $plugin_info, 'is_live', true ),
5397
  'affiliate_moderation' => $this->get_option( $plugin_info, 'has_affiliation' ),
5398
+ 'bundle_id' => $this->get_option( $plugin_info, 'bundle_id', null ),
5399
  ) );
5400
 
5401
  if ( $plugin->is_updated() ) {
5405
  // Set the secret key after storing the plugin, we don't want to store the key in the storage.
5406
  $this->_plugin->secret_key = $secret_key;
5407
 
5408
+ /**
5409
+ * If the product is network integrated and activated and the current view is in the network level Admin dashboard, if the product's network-level menu located differently from the sub-site level, then use the network menu details (when set).
5410
+ *
5411
+ * @author Vova Feldman
5412
+ * @since 2.4.5
5413
+ */
5414
+ if ( $this->is_network_active() && fs_is_network_admin() ) {
5415
+ if ( isset( $plugin_info['menu_network'] ) &&
5416
+ is_array( $plugin_info['menu_network'] ) &&
5417
+ ! empty( $plugin_info['menu_network'] )
5418
+ ) {
5419
+ $plugin_info['menu'] = $plugin_info['menu_network'];
5420
+ }
5421
+ }
5422
+
5423
  if ( ! isset( $plugin_info['menu'] ) ) {
5424
  $plugin_info['menu'] = array();
5425
 
6534
  }
6535
 
6536
  if ( is_multisite() ) {
6537
+ $this->switch_to_blog( $current_blog_id, fs_is_network_admin() ? $this->get_network_install() : null );
6538
 
6539
  $this->do_action( "after_{$name}_cron_multisite" );
6540
  }
6614
  */
6615
  function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6616
  if ( $this->is_registered() ) {
6617
+ $this->sync_user_beta_mode();
6618
+
6619
  if ( $this->has_paid_plan() ) {
6620
  // Initiate background plan sync.
6621
  $this->_sync_license( true, false, $current_blog_id );
6956
  * @author Leo Fajardo (@leorw)
6957
  * @since 1.2.2
6958
  */
6959
+ if ( $this->is_theme() &&
6960
+ ! $this->has_settings_menu() &&
6961
+ ! isset( $_REQUEST['fs_action'] ) &&
6962
+ $this->can_activate_previous_theme()
6963
  ) {
6964
  if ( $this->is_only_premium() ) {
6965
  $this->activate_previous_theme();
7274
  foreach ( $plans_ids_to_keep as $plan_id ) {
7275
  $plan = self::_get_plan_by_id( $plan_id );
7276
  if ( is_object( $plan ) ) {
7277
+ $plans_to_keep[] = self::_encrypt_entity( $plan );
7278
  }
7279
  }
7280
  }
7443
  // Clear API cache on activation.
7444
  FS_Api::clear_cache();
7445
 
7446
+ $is_premium_version_activation = $this->is_plugin() ?
7447
+ ( current_filter() !== ( 'activate_' . $this->_free_plugin_basename ) ) :
7448
+ $this->is_premium();
7449
 
7450
  $this->_logger->info( 'Activating ' . ( $is_premium_version_activation ? 'premium' : 'free' ) . ' plugin version.' );
7451
 
7452
+ if ( $this->is_plugin() ) {
7453
+ // This logic is relevant only to plugins since both the free and premium versions of a plugin can be active at the same time.
7454
+ // 1. If running in the activation of the FREE module, get the basename of the PREMIUM.
7455
+ // 2. If running in the activation of the PREMIUM module, get the basename of the FREE.
7456
+ $other_version_basename = $is_premium_version_activation ?
7457
+ $this->_free_plugin_basename :
7458
+ $this->premium_plugin_basename();
7459
+
7460
+ if ( ! $this->_is_network_active ) {
7461
+ /**
7462
+ * Themes are always network activated, but the ACTUAL activation is per site.
7463
+ *
7464
+ * During the activation, the plugin isn't yet active, therefore,
7465
+ * _is_network_active will be set to false even if it's a network level
7466
+ * activation. So we need to fix that by looking at the is_network_admin() value.
7467
+ *
7468
+ * @author Vova Feldman
7469
+ */
7470
+ $this->_is_network_active = (
7471
+ $this->_is_multisite_integrated &&
7472
+ fs_is_network_admin()
7473
+ );
7474
+ }
7475
 
 
7476
  /**
7477
+ * If the other module version is active, deactivate it.
 
 
7478
  *
7479
+ * is_plugin_active() checks if the plugin is active on the site or the network level and
7480
+ * deactivate_plugins() deactivates the plugin whether it's activated on the site or network level.
7481
+ *
7482
+ * @author Leo Fajardo (@leorw)
7483
+ * @since 1.2.2
7484
  */
7485
+ if ( is_plugin_active( $other_version_basename ) ) {
7486
+ deactivate_plugins( $other_version_basename );
7487
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7488
  }
7489
 
7490
  if ( $this->is_registered() ) {
7534
  }
7535
  }
7536
 
7537
+ $is_trial_or_has_features_enabled_license = ( $this->is_trial() || $this->has_features_enabled_license() );
7538
+
7539
+ if ( $this->is_addon() && ! $is_trial_or_has_features_enabled_license ) {
7540
+ /**
7541
+ * When activating an add-on, try to also activate a license.
7542
+ *
7543
+ * @author Leo Fajardo (@leorw)
7544
+ * @since 2.3.0
7545
+ */
7546
+ if ( ! $this->_is_network_active ) {
7547
+ $this->maybe_activate_addon_license();
7548
+ } else {
7549
+ $this->maybe_network_activate_addon_license();
7550
+ }
7551
+
7552
+ /**
7553
+ * Avoid redirecting to the license activation screen after automatically activating an add-on license.
7554
+ *
7555
+ * @author Leo Fajardo (@leorw)
7556
+ * @since 2.3.0
7557
+ */
7558
+ $is_trial_or_has_features_enabled_license = ( $this->is_trial() || $this->has_features_enabled_license() );
7559
+
7560
+ if ( $is_trial_or_has_features_enabled_license && true === $this->_storage->require_license_activation ) {
7561
+ $this->_storage->require_license_activation = false;
7562
+ }
7563
+ }
7564
+
7565
  if (
7566
  $is_premium_version_activation &&
7567
  (
7568
  ( ! $this->is_registered() && $this->is_anonymous() ) ||
7569
  (
7570
  $this->is_registered() &&
7571
+ ! $is_trial_or_has_features_enabled_license
 
7572
  )
7573
  )
7574
  ) {
7610
  $this->_storage->was_plugin_loaded = true;
7611
  }
7612
 
7613
+ /**
7614
+ * @author Leo Fajardo (@leorw)
7615
+ * @since 2.3.0
7616
+ */
7617
+ private function maybe_activate_addon_license() {
7618
+ $parent_fs = $this->get_parent_instance();
7619
+
7620
+ if (
7621
+ ! is_object( $parent_fs ) ||
7622
+ ( ! $parent_fs->is_registered() && ! $parent_fs->is_network_registered() )
7623
+ ) {
7624
+ // Try to activate a license only if the parent plugin is active and has a valid `install`.
7625
+ return;
7626
+ }
7627
+
7628
+ $license = $this->get_addon_active_parent_license();
7629
+ if ( ! is_object( $license ) ) {
7630
+ return;
7631
+ }
7632
+
7633
+ if ( ! $this->is_registered() ) {
7634
+ // Opt in with a license key.
7635
+ $this->opt_in(
7636
+ $parent_fs->get_current_or_network_user()->email,
7637
+ false,
7638
+ false,
7639
+ $license->secret_key
7640
+ );
7641
+ } else {
7642
+ // Activate the license.
7643
+ $install = $this->get_api_site_scope()->call(
7644
+ '/',
7645
+ 'put',
7646
+ array( 'license_key' => $this->apply_filters( 'license_key', $license->secret_key ) )
7647
+ );
7648
+
7649
+ if ( ! FS_Api::is_api_error( $install ) ) {
7650
+ $this->_sync_addon_license( $this->get_id(), true );
7651
+ }
7652
+ }
7653
+ }
7654
+
7655
+
7656
+ /**
7657
+ * @author Leo Fajardo (@leorw)
7658
+ * @since 2.3.0
7659
+ *
7660
+ * @param FS_Plugin_License $license
7661
+ */
7662
+ private function maybe_network_activate_addon_license( $license = null ) {
7663
+ $parent_fs = $this->get_parent_instance();
7664
+ if ( ! is_object( $parent_fs ) || ( ! $parent_fs->is_registered() && ! $parent_fs->is_network_registered() ) ) {
7665
+ // Try to activate a license only if the parent plugin is active and has a valid `install`.
7666
+ return;
7667
+ }
7668
+
7669
+ $license = ( ! is_null( $license ) ) ?
7670
+ $license :
7671
+ $this->get_addon_active_parent_license();
7672
+
7673
+ if ( ! is_object( $license ) ) {
7674
+ return;
7675
+ }
7676
+
7677
+ if ( ! $this->is_network_registered() ) {
7678
+ $sites = $this->get_sites_for_network_level_optin();
7679
+
7680
+ if ( count( $sites ) > $license->left() ) {
7681
+ // If the add-on is network active, try to activate the license only if it can be activated on all sites.
7682
+ return;
7683
+ }
7684
+
7685
+ // Opt in with a license key.
7686
+ $this->opt_in(
7687
+ $parent_fs->get_user()->email,
7688
+ false,
7689
+ false,
7690
+ $license->secret_key,
7691
+ false,
7692
+ false,
7693
+ false,
7694
+ null,
7695
+ $sites
7696
+ );
7697
+ } else {
7698
+ $blog_2_install_map = array();
7699
+ $site_ids = array();
7700
+
7701
+ $all_sites = Freemius::get_sites();
7702
+
7703
+ foreach ( $all_sites as $site ) {
7704
+ $blog_id = Freemius::get_site_blog_id( $site );
7705
+ $install = $this->get_install_by_blog_id( $blog_id );
7706
+
7707
+ if ( is_object( $install ) && FS_Plugin_License::is_valid_id( $install->license_id ) ) {
7708
+ // Skip license activation for installs that are already associated with a license.
7709
+ continue;
7710
+ }
7711
+
7712
+ if ( is_object( $install ) ) {
7713
+ $blog_2_install_map[ $blog_id ] = $install;
7714
+ } else {
7715
+ $site_ids[] = $blog_id;
7716
+ }
7717
+ }
7718
+
7719
+ if ( ( count( $blog_2_install_map ) + count( $site_ids ) ) > $license->left() ) {
7720
+ return;
7721
+ }
7722
+
7723
+ $user = $this->get_current_or_network_user();
7724
+
7725
+ if ( ! empty( $blog_2_install_map ) ) {
7726
+ $result = $this->activate_license_on_many_installs( $user, $license->secret_key, $blog_2_install_map );
7727
+
7728
+ if ( true !== $result ) {
7729
+ return;
7730
+ }
7731
+ }
7732
+
7733
+ if ( ! empty( $site_ids ) ) {
7734
+ $this->activate_license_on_many_sites( $user, $license->secret_key, $site_ids );
7735
+ }
7736
+ }
7737
+ }
7738
+
7739
+ /**
7740
+ * @author Leo Fajardo (@leorw)
7741
+ * @since 2.3.0
7742
+ *
7743
+ * @return FS_Plugin_License
7744
+ */
7745
+ private function get_addon_active_parent_license() {
7746
+ $parent_licenses_endpoint = "/plugins/{$this->get_id()}/parent_licenses.json?filter=activatable";
7747
+ $parent_instance = $this->get_parent_instance();
7748
+
7749
+ $foreign_licenses = $parent_instance->get_foreign_licenses_info(
7750
+ self::get_all_licenses( $this->get_parent_id() )
7751
+ );
7752
+
7753
+ if ( ! empty ( $foreign_licenses ) ) {
7754
+ $foreign_licenses = array(
7755
+ // Prefix with `+` to tell the server to include foreign licenses in the licenses collection.
7756
+ 'ids' => ( urlencode( '+' ) . implode( ',', $foreign_licenses['ids'] ) ),
7757
+ 'license_keys' => implode( ',', array_map( 'urlencode', $foreign_licenses['license_keys'] ) )
7758
+ );
7759
+
7760
+ $parent_licenses_endpoint = add_query_arg( $foreign_licenses, $parent_licenses_endpoint );
7761
+ }
7762
+
7763
+ $result = $parent_instance->get_current_or_network_user_api_scope()->get( $parent_licenses_endpoint, true );
7764
+
7765
+ if (
7766
+ ! $this->is_api_result_object( $result, 'licenses' ) ||
7767
+ ! is_array( $result->licenses ) ||
7768
+ empty( $result->licenses )
7769
+ ) {
7770
+ return null;
7771
+ }
7772
+
7773
+ $license = new FS_Plugin_License( $result->licenses[ 0 ] );
7774
+
7775
+ return $license;
7776
+ }
7777
+
7778
+ /**
7779
+ * @author Leo Fajardo (@leorw)
7780
+ * @since 2.3.0
7781
+ *
7782
+ * @return array
7783
+ */
7784
+ private function get_sites_for_network_level_optin() {
7785
+ $sites = array();
7786
+ $all_sites = self::get_sites();
7787
+
7788
+ foreach ( $all_sites as $site ) {
7789
+ $blog_id = self::get_site_blog_id( $site );
7790
+
7791
+ if ( ! $this->is_site_delegated_connection( $blog_id ) &&
7792
+ ! $this->is_installed_on_site( $blog_id )
7793
+ ) {
7794
+ $sites[] = $this->get_site_info( $site );
7795
+ }
7796
+ }
7797
+
7798
+ return $sites;
7799
+ }
7800
+
7801
  /**
7802
  * Delete account.
7803
  *
7855
 
7856
  // Clear all storage data.
7857
  $this->_storage->clear_all( true, array(
7858
+ 'is_delegated_connection',
7859
  'connectivity_test',
7860
  'is_on',
7861
  ), false );
8211
  get_current_blog_id() == $network_or_blog_id ||
8212
  ( true === $network_or_blog_id && fs_is_network_admin() )
8213
  ) {
8214
+ $this->_is_anonymous = null;
8215
  }
8216
  }
8217
 
8675
  * @author Vova Feldman (@svovaf)
8676
  * @since 1.1.2
8677
  *
8678
+ * @param string[] $override
8679
+ * @param bool $include_plugins Since 1.1.8 by default include plugin changes.
8680
+ * @param bool $include_themes Since 1.1.8 by default include plugin changes.
8681
+ * @param bool $include_blog_data Since 2.3.0 by default include the current blog's data (language, charset, title, and URL).
8682
  *
8683
  * @return array
8684
  */
8685
  private function get_install_data_for_api(
8686
  array $override,
8687
  $include_plugins = true,
8688
+ $include_themes = true,
8689
+ $include_blog_data = true
8690
  ) {
8691
  if ( ! defined( 'WP_FS__TRACK_PLUGINS' ) || false !== WP_FS__TRACK_PLUGINS ) {
8692
  /**
8714
 
8715
  $versions = $this->get_versions();
8716
 
8717
+ $blog_data = $include_blog_data ?
8718
+ array(
8719
+ 'language' => get_bloginfo( 'language' ),
8720
+ 'charset' => get_bloginfo( 'charset' ),
8721
+ 'title' => get_bloginfo( 'name' ),
8722
+ 'url' => get_site_url(),
8723
+ ) :
8724
+ array();
8725
+
8726
+ return array_merge( $versions, $blog_data, array(
8727
  'version' => $this->get_plugin_version(),
8728
  'is_premium' => $this->is_premium(),
 
 
 
 
8729
  // Special params.
8730
  'is_active' => true,
8731
  'is_disconnected' => $this->is_tracking_prohibited(),
9493
  return $this->_plugin->id;
9494
  }
9495
 
9496
+ /**
9497
+ * @author Leo Fajardo (@leorw)
9498
+ * @since 2.2.4
9499
+ *
9500
+ * @return number|null Bundle ID.
9501
+ */
9502
+ function get_bundle_id() {
9503
+ return ( isset( $this->_plugin->bundle_id ) && FS_Plugin::is_valid_id( $this->_plugin->bundle_id ) ) ?
9504
+ $this->_plugin->bundle_id :
9505
+ null;
9506
+ }
9507
+
9508
  /**
9509
  * @author Vova Feldman (@svovaf)
9510
  * @since 1.2.1.5
10248
  return false;
10249
  }
10250
 
10251
+ /**
10252
+ * @var array<number,object[]> {
10253
+ * @key number Add-on ID.
10254
+ * @val object[] The add-on's plans and prices object.
10255
+ * }
10256
+ */
10257
+ private $plans_and_pricing_by_addon_id;
10258
+
10259
+ /**
10260
+ * @author Leo Fajardo (@leorw)
10261
+ * @since 2.3.0
10262
+ *
10263
+ * @return array<number,object[]> {
10264
+ * @key number Add-on ID.
10265
+ * @val object[] The add-on's plans and prices object.
10266
+ * }
10267
+ */
10268
+ function _get_addons_plans_and_pricing_map_by_id() {
10269
+ if ( ! isset( $this->plans_and_pricing_by_addon_id ) ) {
10270
+ $result = $this->get_api_plugin_scope()->get( $this->add_show_pending( "/addons/pricing.json?type=visible" ) );
10271
+
10272
+ $plans_and_pricing_by_addon_id = array();
10273
+ if ( $this->is_api_result_object( $result, 'addons' ) ) {
10274
+ foreach ( $result->addons as $addon ) {
10275
+ $plans_and_pricing_by_addon_id[ $addon->id ] = $addon->plans;
10276
+ }
10277
+ }
10278
+
10279
+ $this->plans_and_pricing_by_addon_id = $plans_and_pricing_by_addon_id;
10280
+ }
10281
+
10282
+ return $this->plans_and_pricing_by_addon_id;
10283
+ }
10284
+
10285
+ /**
10286
+ * @author Leo Fajardo (@leorw)
10287
+ * @since 2.3.0
10288
+ *
10289
+ * @param number $addon_id
10290
+ * @param bool $is_installed
10291
+ *
10292
+ * @return array
10293
+ */
10294
+ function _get_addon_info( $addon_id, $is_installed ) {
10295
+ $addon = $this->get_addon( $addon_id );
10296
+
10297
+ if ( ! is_object( $addon ) ) {
10298
+ // Unexpected call.
10299
+ return array();
10300
+ }
10301
+
10302
+ $slug = $addon->slug;
10303
+
10304
+ $addon_storage = FS_Storage::instance( WP_FS__MODULE_TYPE_PLUGIN, $slug );
10305
+
10306
+ if ( ! fs_is_network_admin() ) {
10307
+ // Get blog-level activated installations.
10308
+ $sites = self::$_accounts->get_option( 'sites', array() );
10309
+ } else {
10310
+ $sites = null;
10311
+
10312
+ if ( $this->is_addon_activated( $addon_id ) &&
10313
+ $this->get_addon_instance( $addon_id )->is_network_active()
10314
+ ) {
10315
+ if ( FS_Site::is_valid_id( $addon_storage->network_install_blog_id ) ) {
10316
+ // Get network-level activated installations.
10317
+ $sites = self::$_accounts->get_option(
10318
+ 'sites',
10319
+ array(),
10320
+ $addon_storage->network_install_blog_id
10321
+ );
10322
+ }
10323
+ }
10324
+ }
10325
+
10326
+ $addon_info = array(
10327
+ 'is_connected' => false,
10328
+ 'slug' => $slug,
10329
+ 'title' => $addon->title
10330
+ );
10331
+
10332
+ if ( ! $is_installed ) {
10333
+ $plans_and_pricing_by_addon_id = $this->_get_addons_plans_and_pricing_map_by_id();
10334
+
10335
+ if ( isset( $plans_and_pricing_by_addon_id[ $addon_id ] ) ) {
10336
+ $has_paid_plan = false;
10337
+ $plans = $plans_and_pricing_by_addon_id[ $addon_id ];
10338
+
10339
+ if ( is_array( $plans ) && count( $plans ) > 0 ) {
10340
+ foreach ( $plans as $plan ) {
10341
+ if ( isset( $plan->pricing ) &&
10342
+ is_array( $plan->pricing ) &&
10343
+ count( $plan->pricing ) > 0
10344
+ ) {
10345
+ $has_paid_plan = true;
10346
+ break;
10347
+ }
10348
+ }
10349
+ }
10350
+
10351
+ $addon_info['has_paid_plan'] = $has_paid_plan;
10352
+ }
10353
+ }
10354
+
10355
+ if ( ! is_array( $sites ) || ! isset( $sites[ $slug ] ) ) {
10356
+ return $addon_info;
10357
+ }
10358
+
10359
+ $site = $sites[ $slug ];
10360
+
10361
+ $addon_info['is_connected'] = (
10362
+ ( $addon->parent_plugin_id == $this->get_id() ) &&
10363
+ is_object( $site ) &&
10364
+ FS_Site::is_valid_id( $site->id ) &&
10365
+ FS_User::is_valid_id( $site->user_id ) &&
10366
+ FS_Plugin_Plan::is_valid_id( $site->plan_id )
10367
+ );
10368
+
10369
+ if ( $addon_info['is_connected'] && $is_installed ) {
10370
+ return $addon_info;
10371
+ }
10372
+
10373
+ $addon_info['site'] = $site;
10374
+
10375
+ $plugins_data = self::$_accounts->get_option( WP_FS__MODULE_TYPE_PLUGIN . 's', array() );
10376
+ if ( isset( $plugins_data[ $slug ] ) ) {
10377
+ $plugin_data = $plugins_data[ $slug ];
10378
+
10379
+ $addon_info['version'] = $plugin_data->version;
10380
+ }
10381
+
10382
+ $all_plans = self::$_accounts->get_option( 'plans', array() );
10383
+ if ( isset( $all_plans[ $slug ] ) ) {
10384
+ $plans = $all_plans[ $slug ];
10385
+
10386
+ foreach ( $plans as $plan ) {
10387
+ if ( $site->plan_id == Freemius::_decrypt( $plan->id ) ) {
10388
+ $addon_info['plan_name'] = Freemius::_decrypt( $plan->name );
10389
+ $addon_info['plan_title'] = Freemius::_decrypt( $plan->title );
10390
+ break;
10391
+ }
10392
+ }
10393
+ }
10394
+
10395
+ $licenses = self::$_accounts->get_option( 'all_licenses', array() );
10396
+ if ( is_array( $licenses ) && isset( $licenses[ $addon_id ] ) ) {
10397
+ foreach ( $licenses[ $addon_id ] as $license ) {
10398
+ if ( $license->id == $site->license_id ) {
10399
+ $addon_info['license'] = $license;
10400
+ break;
10401
+ }
10402
+ }
10403
+ }
10404
+
10405
+ if ( isset( $addon_info['license'] ) ) {
10406
+ if ( isset( $addon_storage->subscriptions ) &&
10407
+ ! empty( $addon_storage->subscriptions )
10408
+ ) {
10409
+ foreach ( $addon_storage->subscriptions as $subscription ) {
10410
+ if ( $subscription->license_id == $site->license_id ) {
10411
+ $addon_info['subscription'] = $subscription;
10412
+ break;
10413
+ }
10414
+ }
10415
+ }
10416
+ }
10417
+
10418
+ return $addon_info;
10419
+ }
10420
+
10421
  /**
10422
  * @author Vova Feldman (@svovaf)
10423
  * @since 2.0.0
10896
  * @return number[]
10897
  */
10898
  private function get_plans_ids_associated_with_installs() {
10899
+ if ( ! is_multisite() ) {
10900
  if ( ! is_object( $this->_site ) ||
10901
  ! FS_Plugin_Plan::is_valid_id( $this->_site->plan_id )
10902
  ) {
11031
  $all_licenses = $this->get_user_licenses( $this->_user->id );
11032
  }
11033
 
11034
+ $foreign_licenses = $this->get_foreign_licenses_info( $all_licenses, $site_license_id );
 
 
 
11035
 
11036
  $all_licenses_map = array();
11037
  foreach ( $all_licenses as $license ) {
11038
  $all_licenses_map[ $license->id ] = true;
 
 
 
 
 
 
 
 
 
 
11039
  }
11040
 
11041
  $licenses = $this->_fetch_licenses( false, $site_license_id, $foreign_licenses, $blog_id );
11767
  return true;
11768
  }
11769
 
11770
+ return ( 1 === ( count( $this->_plans ) - ( $this->has_free_plan() ? 1 : 0 ) ) );
11771
  }
11772
 
11773
  /**
11891
  * @since 2.2.1
11892
  *
11893
  * @param bool $is_license_deactivation
11894
+ *
11895
+ * @return array
11896
  */
11897
+ function _get_subscription_cancellation_dialog_box_template_params( $is_license_deactivation = false ) {
11898
  if ( fs_is_network_admin() ) {
11899
  // Subscription cancellation dialog box is currently not supported for multisite networks.
11900
+ return array();
11901
  }
11902
 
11903
  $license = $this->_get_license();
11912
  $license->is_lifetime() ||
11913
  ( ! $license->is_single_site() && $license->activated > 1 )
11914
  ) {
11915
+ return array();
11916
  }
11917
 
11918
  /**
11920
  */
11921
  $subscription = $this->_get_subscription( $license->id );
11922
  if ( ! is_object( $subscription ) || ! $subscription->is_active() ) {
11923
+ return array();
11924
  }
11925
 
11926
+ return array(
11927
  'id' => $this->_module_id,
11928
  'license' => $license,
11929
  'has_trial' => $this->is_paid_trial(),
11930
  'is_license_deactivation' => $is_license_deactivation,
11931
  );
 
 
11932
  }
11933
 
11934
  /**
11993
 
11994
  // Add license activation link and AJAX request handler.
11995
  if ( self::is_plugins_page() ) {
11996
+ $is_network_admin = fs_is_network_admin();
11997
+
11998
+ if (
11999
+ ( $is_network_admin && $this->is_network_active() && ! $this->is_network_delegated_connection() ) ||
12000
+ ( ! $is_network_admin && ( ! $this->is_network_active() || $this->is_delegated_connection() ) )
12001
+ ) {
12002
+ /**
12003
+ * @since 1.2.0 Add license action link only on plugins page.
12004
+ */
12005
+ $this->_add_license_action_link();
12006
+ }
12007
  }
12008
 
12009
  // Add license activation AJAX callback.
12034
 
12035
  /**
12036
  * @author Leo Fajardo (@leorw)
12037
+ * @since 2.3.0
12038
+ */
12039
+ function _add_beta_mode_update_handler() {
12040
+ if ( ! $this->is_user_admin() ) {
12041
+ return;
12042
+ }
12043
+
12044
+ if ( ! $this->is_premium() ) {
12045
+ return;
12046
+ }
12047
+
12048
+ $this->add_ajax_action( 'set_beta_mode', array( &$this, '_set_beta_mode_ajax_handler' ) );
12049
+ }
12050
+
12051
+ /**
12052
+ * @author Leo Fajardo (@leorw)
12053
+ * @since 2.3.0
12054
+ */
12055
+ function _set_beta_mode_ajax_handler() {
12056
+ $this->_logger->entrance();
12057
+
12058
+ $this->check_ajax_referer( 'set_beta_mode' );
12059
+
12060
+ if ( ! $this->is_user_admin() ) {
12061
+ // Only for admins.
12062
+ self::shoot_ajax_failure();
12063
+ }
12064
+
12065
+ $is_beta = trim( fs_request_get( 'is_beta', '', 'post' ) );
12066
+
12067
+ if ( empty( $is_beta ) || ! in_array( $is_beta, array( 'true', 'false' ) ) ) {
12068
+ self::shoot_ajax_failure();
12069
+ }
12070
+
12071
+ $user = $this->get_api_user_scope()->call(
12072
+ '',
12073
+ 'put',
12074
+ array(
12075
+ 'plugin_id' => $this->get_id(),
12076
+ 'is_beta' => ( 'true' == $is_beta ),
12077
+ 'fields' => 'is_beta'
12078
+ )
12079
+ );
12080
+
12081
+ if ( ! $this->is_api_result_entity( $user ) ) {
12082
+ self::shoot_ajax_failure(
12083
+ FS_Api::is_api_error_object( $user ) ?
12084
+ $user->error->message :
12085
+ fs_text_inline( "An unknown error has occurred while trying to set the user's beta mode.", 'unknown-error-occurred', $this->get_slug() )
12086
+ );
12087
+ }
12088
+
12089
+ $this->_user->is_beta = $user->is_beta;
12090
+ $this->_store_user();
12091
+
12092
+ self::shoot_ajax_response( array( 'success' => true ) );
12093
+ }
12094
+
12095
+ /**
12096
+ * License activation WP AJAX handler.
12097
  *
12098
+ * @author Leo Fajardo (@leorw)
12099
  * @since 1.1.9
12100
+ *
12101
+ * @uses Freemius::activate_license()
12102
+ */
12103
+ function _activate_license_ajax_action() {
12104
+ $this->_logger->entrance();
12105
+
12106
+ $this->check_ajax_referer( 'activate_license' );
12107
+
12108
+ $license_key = trim( fs_request_get( 'license_key' ) );
12109
+
12110
+ if ( empty( $license_key ) ) {
12111
+ exit;
12112
+ }
12113
+
12114
+ $result = $this->activate_license(
12115
+ $license_key,
12116
+ fs_is_network_admin() ?
12117
+ fs_request_get( 'sites', array(), 'post' ) :
12118
+ array(),
12119
+ fs_request_get_bool( 'is_marketing_allowed', null ),
12120
+ fs_request_get( 'blog_id', null ),
12121
+ fs_request_get( 'module_id', null, 'post' )
12122
+ );
12123
+
12124
+ echo json_encode( $result );
12125
+
12126
+ exit;
12127
+ }
12128
+
12129
+ /**
12130
+ * A helper method to activate migrated licenses. If the product is network activated and integrated, the method will network activate the license.
12131
+ *
12132
+ * @author Vova Feldman (@svovaf)
12133
+ * @since 2.3.0
12134
+ *
12135
+ * @param string $license_key
12136
+ * @param null|bool $is_marketing_allowed
12137
+ * @param null|number $plugin_id
12138
+ *
12139
+ * @return array {
12140
+ * @var bool $success
12141
+ * @var string $error
12142
+ * @var string $next_page
12143
+ * }
12144
+ *
12145
+ * @uses Freemius::activate_license()
12146
+ */
12147
+ function activate_migrated_license(
12148
+ $license_key,
12149
+ $is_marketing_allowed = null,
12150
+ $plugin_id = null
12151
+ ) {
12152
+ return $this->activate_license(
12153
+ $license_key,
12154
+ $this->is_network_active() ?
12155
+ $this->get_sites_for_network_level_optin() :
12156
+ array(),
12157
+ $is_marketing_allowed,
12158
+ null,
12159
+ $plugin_id
12160
+ );
12161
+ }
12162
+
12163
+ /**
12164
+ * The implementation of this method was previously in `_activate_license_ajax_action()`.
12165
+ *
12166
+ * @author Vova Feldman (@svovaf)
12167
+ * @since 2.2.4
12168
  * @since 2.0.0 When a super-admin that hasn't connected before is network activating a license and excluding some of the sites for the license activation, go over the unselected sites in the network and if a site is not connected, skipped, nor delegated, if it's a freemium product then just skip the connection for the site, if it's a premium only product, delegate the connection and license activation to the site admin (Vova Feldman @svovaf).
12169
+ * @param string $license_key
12170
+ * @param array $sites
12171
+ * @param null|bool $is_marketing_allowed
12172
+ * @param null|int $blog_id
12173
+ * @param null|number $plugin_id
12174
+ *
12175
+ * @return array {
12176
+ * @var bool $success
12177
+ * @var string $error
12178
+ * @var string $next_page
12179
+ * }
12180
  */
12181
+ private function activate_license(
12182
+ $license_key,
12183
+ $sites = array(),
12184
+ $is_marketing_allowed = null,
12185
+ $blog_id = null,
12186
+ $plugin_id = null
12187
+ ) {
12188
  $this->_logger->entrance();
 
 
12189
 
12190
+ $license_key = trim( $license_key );
12191
 
12192
+ if ( ! fs_is_network_admin() ) {
12193
+ // If the license activation is executed outside the context of a network admin, ignore the sites collection.
12194
+ $sites = array();
12195
  }
12196
 
12197
+ $fs = ( empty($plugin_id) || $plugin_id == $this->_module_id ) ?
 
12198
  $this :
12199
  $this->get_addon_instance( $plugin_id );
12200
 
12201
  $error = false;
12202
  $next_page = false;
12203
 
 
 
 
 
 
12204
  $has_valid_blog_id = is_numeric( $blog_id );
12205
 
12206
  if ( $fs->is_registered() ) {
12290
  false,
12291
  false,
12292
  false,
12293
+ $is_marketing_allowed,
12294
  $sites
12295
  );
12296
 
12344
  }
12345
 
12346
  if ( ! empty( $pending_sites ) ) {
12347
+ if ( $this->is_freemium() && $this->is_enable_anonymous() ) {
12348
  $this->skip_connection( $pending_sites );
12349
  } else {
12350
  $this->delegate_connection( $pending_sites );
12363
  );
12364
 
12365
  if ( false !== $error ) {
12366
+ $result['error'] = $this->apply_filters( 'opt_in_error_message', $error );
12367
  } else {
12368
+ if ( $this->is_addon() || $this->has_addons() ) {
12369
+ /**
12370
+ * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
12371
+ * an updated valid user licenses collection will be fetched from the server which is used to also
12372
+ * update the account add-ons (add-ons the user has licenses for).
12373
+ *
12374
+ * @author Leo Fajardo (@leorw)
12375
+ * @since 2.2.4
12376
+ */
12377
+ $this->purge_valid_user_licenses_cache();
12378
+ }
12379
+
12380
  $result['next_page'] = $next_page;
12381
  }
12382
 
12383
+ return $result;
 
 
12384
  }
12385
 
12386
  /**
12415
  $total_sites_to_delegate = count( $sites_by_action['delegate'] );
12416
 
12417
  $next_page = '';
12418
+
12419
+ $has_any_install = fs_request_get_bool( 'has_any_install' );
12420
+
12421
  if ( $total_sites === $total_sites_to_delegate &&
12422
+ ! $this->is_network_upgrade_mode() &&
12423
+ ! $has_any_install
12424
  ) {
12425
  $this->delegate_connection();
12426
  } else {
12432
  $this->skip_connection( $sites_by_action['skip'] );
12433
  }
12434
 
12435
+ if ( empty( $sites_by_action['allow'] ) ) {
12436
+ if ( $has_any_install ) {
12437
+ $first_install = $fs->find_first_install();
12438
+
12439
+ if ( ! is_null( $first_install ) ) {
12440
+ $fs->_site = $first_install['install'];
12441
+ $fs->_storage->network_install_blog_id = $first_install['blog_id'];
12442
+
12443
+ $fs->_user = self::_get_user_by_id( $fs->_site->user_id );
12444
+ $fs->_storage->network_user_id = $fs->_user->id;
12445
+ }
12446
+ }
12447
+ } else {
12448
  if ( ! $fs->is_registered() || ! $this->_is_network_active ) {
12449
  $next_page = $fs->opt_in(
12450
  false,
13031
  $params['trial'] = 'true';
13032
  }
13033
 
13034
+ $url = $this->is_addon() ?
13035
+ $this->_parent->addon_url( $this->_slug ) :
13036
+ $this->_get_admin_page_url( 'pricing', $params );
13037
 
13038
+ return $this->apply_filters( 'pricing_url', $url );
13039
  }
13040
 
13041
  /**
13044
  * @author Vova Feldman (@svovaf)
13045
  * @since 1.0.6
13046
  *
13047
+ * @param string $billing_cycle Billing cycle
13048
+ * @param bool $is_trial
13049
+ * @param array $extra (optional) Extra parameters, override other query params.
13050
+ * @param bool|null $network
13051
  *
13052
  * @return string
13053
  */
13054
  function checkout_url(
13055
  $billing_cycle = WP_FS__PERIOD_ANNUALLY,
13056
  $is_trial = false,
13057
+ $extra = array(),
13058
+ $network = null
13059
  ) {
13060
  $this->_logger->entrance();
13061
 
13073
  */
13074
  $params = array_merge( $params, $extra );
13075
 
13076
+ return $this->_get_admin_page_url( 'pricing', $params, $network );
13077
  }
13078
 
13079
  /**
13082
  * @author Vova Feldman (@svovaf)
13083
  * @since 1.1.7
13084
  *
13085
+ * @param number $addon_id
13086
+ * @param number $pricing_id
13087
+ * @param string $billing_cycle
13088
+ * @param bool $is_trial
13089
+ * @param bool|null $network
13090
  *
13091
  * @return string
13092
  */
13094
  $addon_id,
13095
  $pricing_id,
13096
  $billing_cycle = WP_FS__PERIOD_ANNUALLY,
13097
+ $is_trial = false,
13098
+ $network = null
13099
  ) {
13100
  return $this->checkout_url( $billing_cycle, $is_trial, array(
13101
  'plugin_id' => $addon_id,
13102
  'pricing_id' => $pricing_id,
13103
+ ), $network );
13104
  }
13105
 
13106
  #endregion
13640
  * @return array Active & public sites collection.
13641
  */
13642
  static function get_sites() {
13643
+ if ( ! is_multisite() ) {
13644
+ return array();
13645
+ }
13646
+
13647
  /**
13648
  * For consistency with get_blog_list() which only return active public sites.
13649
  *
13815
  * 'blog_id' => string The associated blog ID.
13816
  * }
13817
  */
13818
+ function find_first_install() {
13819
  $sites = self::get_sites();
13820
 
13821
  foreach ( $sites as $site ) {
14491
  ) );
14492
  }
14493
 
14494
+ /**
14495
+ * Add-ons URL.
14496
+ *
14497
+ * @author Vova Feldman (@svovaf)
14498
+ * @since 2.4.5
14499
+ *
14500
+ * @return string
14501
+ */
14502
+ function get_addons_url() {
14503
+ return $this->_get_admin_page_url( 'addons' );
14504
+ }
14505
+
14506
  /* Logger
14507
  ------------------------------------------------------------------------------------------------------------------*/
14508
  /**
14728
  $this->get_install_by_blog_id();
14729
 
14730
  if ( fs_is_network_admin() &&
14731
+ $this->is_network_active() &&
14732
+ ! is_object( $site ) &&
14733
+ FS_Site::is_valid_id( $this->_storage->network_install_blog_id )
14734
  ) {
14735
  $first_install = $this->find_first_install();
14736
 
14909
  return $versions;
14910
  }
14911
 
14912
+ /**
14913
+ * @author Leo Fajardo (@leorw)
14914
+ * @since 2.3.0
14915
+ *
14916
+ * @return bool
14917
+ */
14918
+ function has_beta_update() {
14919
+ return (
14920
+ ! empty( $this->_storage->beta_data ) &&
14921
+ ( true === $this->_storage->beta_data['is_beta'] ) &&
14922
+ version_compare( $this->_storage->beta_data['version'], $this->get_plugin_version(), '>' )
14923
+ );
14924
+ }
14925
+
14926
+ /**
14927
+ * @author Leo Fajardo (@leorw)
14928
+ * @since 2.3.0
14929
+ *
14930
+ * @return bool
14931
+ */
14932
+ function is_beta() {
14933
+ return (
14934
+ ! empty( $this->_storage->beta_data ) &&
14935
+ ( true === $this->_storage->beta_data['is_beta'] ) &&
14936
+ ( $this->get_plugin_version() === $this->_storage->beta_data['version'] )
14937
+ );
14938
+ }
14939
+
14940
+ /**
14941
+ * @author Leo Fajardo (@leorw)
14942
+ * @since 2.3.0
14943
+ */
14944
+ private function sync_user_beta_mode() {
14945
+ $user = $this->get_api_user_scope()->get( '/?plugin_id=' . $this->get_id() . '&fields=is_beta' );
14946
+
14947
+ if ( $this->is_api_result_entity( $user ) ) {
14948
+ $this->_user->is_beta = $user->is_beta;
14949
+ $this->_store_user();
14950
+ }
14951
+ }
14952
+
14953
  /**
14954
  * @author Vova Feldman (@svovaf)
14955
  * @since 1.1.7.4
14995
 
14996
  if ( true === $network_level_or_blog_id ) {
14997
  if ( ! isset( $override_with['sites'] ) ) {
14998
+ $params['sites'] = $this->get_sites_for_network_level_optin();
 
 
 
 
 
 
 
 
 
 
 
14999
  }
15000
  } else {
15001
  $site = is_numeric( $network_level_or_blog_id ) ?
15355
  // If Freemius was OFF before, turn it on.
15356
  $this->turn_on();
15357
 
15358
+ $this->handle_account_connection(
15359
+ $installs,
15360
+ ( ! $this->_is_network_active || ! $is_network_level_opt_in )
15361
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15362
 
15363
  if ( is_numeric( $first_install->license_id ) ) {
15364
  $this->_license = $this->_get_license_by_id( $first_install->license_id );
16003
  * @author Vova Feldman (@svovaf)
16004
  * @since 1.0.6
16005
  *
16006
+ * @param Freemius $parent_fs
16007
+ * @param bool|int|null $network_level_or_blog_id True for network level opt-in and integer for opt-in for specified blog in the network.
16008
  */
16009
+ private function _activate_addon_account( Freemius $parent_fs, $network_level_or_blog_id = null ) {
16010
  if ( $this->is_registered() ) {
16011
  // Already activated.
16012
  return;
16013
  }
16014
 
16015
+ /**
16016
+ * Do not override the `uid` if network-level opt-in since the call to `get_sites_for_network_level_optin()`
16017
+ * already returns the data for the current blog.
16018
+ *
16019
+ * @author Leo Fajardo (@leorw)
16020
+ * @since 2.3.0
16021
+ */
16022
+ $uid_param_to_override = ( true === $network_level_or_blog_id ) ?
16023
+ array() :
16024
+ array( 'uid' => $this->get_anonymous_id() );
16025
+
16026
+ $params = $this->get_install_data_for_api(
16027
+ $uid_param_to_override,
16028
+ false,
16029
+ false,
16030
+ /**
16031
+ * Do not include the data for the current blog if network-level opt-in since the call to `get_sites_for_network_level_optin`
16032
+ * already includes the data for it.
16033
+ *
16034
+ * @author Leo Fajardo (@leorw)
16035
+ * @since 2.3.0
16036
+ */
16037
+ ( true !== $network_level_or_blog_id )
16038
+ );
16039
+
16040
+ if ( true === $network_level_or_blog_id ) {
16041
+ $params['sites'] = $this->get_sites_for_network_level_optin();
16042
+
16043
+ if ( empty( $params['sites'] ) ) {
16044
+ return;
16045
+ }
16046
+ }
16047
+
16048
  // Activate add-on with parent plugin credentials.
16049
+ $result = $parent_fs->get_api_site_scope()->call(
16050
  "/addons/{$this->_plugin->id}/installs.json",
16051
  'post',
16052
+ $params
 
 
16053
  );
16054
 
16055
+ if ( ! $this->is_api_result_object( $result, 'installs' ) ) {
16056
+ $error_message = FS_Api::is_api_error_object( $result ) ?
16057
+ $result->error->message :
16058
+ $this->get_text_inline( 'An unknown error has occurred.', 'unknown-error' );
16059
+
16060
  $this->_admin_notices->add(
16061
  sprintf( $this->get_text_inline( 'Couldn\'t activate %s.', 'could-not-activate-x' ), $this->get_plugin_name() ) . ' ' .
16062
+ $this->get_text_inline( 'Please contact us with the following message:', 'contact-us-with-error-message' ) . ' ' . '<b>' . $error_message . '</b>',
16063
  $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...',
16064
  'error'
16065
  );
16067
  return;
16068
  }
16069
 
16070
+ $addon_installs = $result->installs;
16071
+ foreach ( $addon_installs as $key => $addon_install ) {
16072
+ $addon_installs[ $key ] = new FS_Site( $addon_install );
16073
+ }
16074
+
16075
+ $first_install = $addon_installs[0];
16076
+
16077
  // Get user information based on parent's plugin.
16078
  $user = $parent_fs->get_user();
16079
 
16080
  // First of all, set site and user info - otherwise we won't
16081
  // be able to invoke API calls.
16082
+ $this->_site = $first_install;
16083
  $this->_user = $user;
16084
 
16085
  // Sync add-on plans.
16086
  $this->_sync_plans();
16087
 
16088
+ $this->handle_account_connection( $addon_installs, ! fs_is_network_admin() );
16089
+
16090
+ // Get site's current plan.
16091
+ //$this->_site->plan = $this->_get_plan_by_id( $this->_site->plan->id );
16092
+
16093
+ // Sync licenses.
16094
+ $this->_sync_licenses();
16095
+
16096
+ if ( ! fs_is_network_admin() ) {
16097
+ // Try to activate premium license.
16098
+ $this->_activate_license( true );
16099
+ } else {
16100
+ $license_id = fs_request_get( 'license_id' );
16101
+
16102
+ if ( is_object( $this->_site ) &&
16103
+ FS_Plugin_License::is_valid_id( $license_id ) &&
16104
+ $license_id == $this->_site->license_id
16105
+ ) {
16106
+ // License is already activated.
16107
+ return;
16108
+ }
16109
+
16110
+ $premium_license = FS_Plugin_License::is_valid_id( $license_id ) ?
16111
+ $this->_get_license_by_id( $license_id ) :
16112
+ $this->_get_available_premium_license();
16113
+
16114
+ if ( is_object( $premium_license ) ) {
16115
+ $this->maybe_network_activate_addon_license( $premium_license );
16116
+ }
16117
+ }
16118
+ }
16119
+
16120
+ /**
16121
+ * @author Leo Fajardo (@leorw)
16122
+ * @since 2.3.0
16123
+ *
16124
+ * @param FS_Site[] $installs
16125
+ * @param bool $is_site_level
16126
+ */
16127
+ private function handle_account_connection( $installs, $is_site_level ) {
16128
+ $first_install = $installs[0];
16129
+
16130
+ if ( $is_site_level ) {
16131
+ $this->_set_account( $this->_user, $first_install );
16132
+
16133
+ $this->do_action( 'after_account_connection', $this->_user, $first_install );
16134
+ } else {
16135
+ $this->_store_user();
16136
+
16137
+ // Map site addresses to their blog IDs.
16138
+ $address_to_blog_map = $this->get_address_to_blog_map();
16139
+
16140
+ $first_blog_id = null;
16141
+ $blog_2_install_map = array();
16142
+ foreach ( $installs as $install ) {
16143
+ $address = trailingslashit( fs_strip_url_protocol( $install->url ) );
16144
+ $blog_id = $address_to_blog_map[ $address ];
16145
+
16146
+ $this->_store_site( true, $blog_id, $install );
16147
+
16148
+ if ( is_null( $first_blog_id ) ) {
16149
+ $first_blog_id = $blog_id;
16150
+ }
16151
+
16152
+ $blog_2_install_map[ $blog_id ] = $install;
16153
+ }
16154
+
16155
+ if ( ! FS_User::is_valid_id( $this->_storage->network_user_id ) ||
16156
+ ! is_object( self::_get_user_by_id( $this->_storage->network_user_id ) )
16157
+ ) {
16158
+ // Store network user.
16159
+ $this->_storage->network_user_id = $this->_user->id;
16160
+ }
16161
+
16162
+ if ( ! FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) {
16163
+ $this->_storage->network_install_blog_id = $first_blog_id;
16164
+ }
16165
+
16166
+ if ( count( $installs ) === count( $address_to_blog_map ) ) {
16167
+ // Super admin opted in for all sites in the network.
16168
+ $this->_storage->is_network_connected = true;
16169
+ }
16170
+
16171
+ $this->_store_licenses( false );
16172
+
16173
+ self::$_accounts->store();
16174
+
16175
+ // Don't sync the installs data on network upgrade
16176
+ if ( ! $this->network_upgrade_mode_completed() ) {
16177
+ $this->send_installs_update();
16178
+ }
16179
+
16180
+ // Switch install context back to the first install.
16181
+ $this->_site = $first_install;
16182
+
16183
+ $current_blog = get_current_blog_id();
16184
+
16185
+ foreach ( $blog_2_install_map as $blog_id => $install ) {
16186
+ $this->switch_to_blog( $blog_id );
16187
 
16188
+ $this->do_action( 'after_account_connection', $this->_user, $install );
16189
+ }
16190
 
16191
+ $this->switch_to_blog( $current_blog );
 
16192
 
16193
+ $this->do_action( 'after_network_account_connection', $this->_user, $blog_2_install_map );
16194
+ }
16195
  }
16196
 
16197
  /**
16308
  ! $this->is_registered()
16309
  );
16310
 
16311
+ $should_hide_site_admin_settings = $this->apply_filters( 'should_hide_site_admin_settings_on_network_activation_mode', $should_hide_site_admin_settings );
16312
+
16313
  if ( ( ! $this->has_api_connectivity() && ! $this->is_enable_anonymous() ) ||
16314
  $should_hide_site_admin_settings
16315
  ) {
16516
  }
16517
 
16518
  if ( ! $this->_menu->has_menu() || $this->_menu->is_top_level() ) {
16519
+
16520
+ if ( $this->_menu->has_menu() ||
16521
+ ! $this->is_addon() ||
16522
+ $this->is_activation_mode()
16523
+ ) {
16524
+ $this->_dynamically_added_top_level_page_hook_name = $this->_menu->add_page_and_update(
16525
+ $this->get_plugin_name(),
16526
+ $this->get_plugin_name(),
16527
+ 'manage_options',
16528
+ $this->_menu->has_menu() ? $this->_menu->get_slug() : $this->_slug
16529
+ );
16530
+ }
16531
  } else {
16532
  $this->_menu->add_subpage_and_update(
16533
  $this->_menu->get_parent_slug(),
16613
  );
16614
  }
16615
 
16616
+ /**
16617
+ * @author Leo Fajardo (@leorw)
16618
+ * @since 2.3.0
16619
+ *
16620
+ * @param bool $is_activation_mode
16621
+ *
16622
+ * @return bool
16623
+ */
16624
+ private function should_add_submenu_or_action_links( $is_activation_mode ) {
16625
+ if ( $this->is_addon() ) {
16626
+ // No submenu items or action links for add-ons.
16627
+ return false;
16628
+ }
16629
+
16630
+ if ( $this->is_free_wp_org_theme() && ! fs_is_network_admin() ) {
16631
+ // Also add action links or submenu items when running in a free .org theme so the tabs will be visible.
16632
+ return true;
16633
+ }
16634
+
16635
+ if ( $is_activation_mode && ! $this->is_free_wp_org_theme() ) {
16636
+ return false;
16637
+ }
16638
+
16639
+ if ( fs_is_network_admin() ) {
16640
+ /**
16641
+ * Add submenu items or action links to network level when plugin was network activated and the super
16642
+ * admin did NOT delegate the connection of all sites to site admins.
16643
+ */
16644
+ return (
16645
+ $this->_is_network_active &&
16646
+ ( WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED ||
16647
+ ! $this->is_network_delegated_connection() )
16648
+ );
16649
+ }
16650
+
16651
+ return ( ! $this->_is_network_active || $this->is_delegated_connection() );
16652
+ }
16653
+
16654
  /**
16655
  * Add default Freemius menu items.
16656
  *
16663
 
16664
  $is_activation_mode = $this->is_activation_mode();
16665
 
16666
+ $add_submenu_items = $this->should_add_submenu_or_action_links( $is_activation_mode );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16667
 
16668
  if ( $add_submenu_items ) {
16669
  if ( $this->has_affiliate_program() ) {
17714
  self::$_accounts->set_option( 'account_addons', $all_addons, $store );
17715
  }
17716
 
17717
+ /**
17718
+ * Purges the cache for the valid user licenses API call so that when the `Account` or `Add-Ons` page is loaded,
17719
+ * the valid user licenses will be fetched again and the account add-ons may be updated.
17720
+ *
17721
+ * @author Leo Fajardo (@leorw)
17722
+ * @since 2.2.4
17723
+ */
17724
+ private function purge_valid_user_licenses_cache() {
17725
+ $this->get_api_user_scope()->purge_cache( $this->get_valid_user_licenses_endpoint() );
17726
+ }
17727
+
17728
+ /**
17729
+ * @author Leo Fajardo (@leorw)
17730
+ * @since 2.3.0
17731
+ *
17732
+ * @param array $all_licenses
17733
+ * @param number|null $site_license_id
17734
+ * @param bool $include_parent_licenses
17735
+ *
17736
+ * @return array
17737
+ */
17738
+ private function get_foreign_licenses_info( $all_licenses, $site_license_id = null, $include_parent_licenses = false ) {
17739
+ $foreign_licenses = array(
17740
+ 'ids' => array(),
17741
+ 'license_keys' => array()
17742
+ );
17743
+
17744
+ $parent_license_ids_map = array();
17745
+
17746
+ foreach ( $all_licenses as $license ) {
17747
+ if ( $license->user_id == $this->_user->id || $license->id == $site_license_id ) {
17748
+ continue;
17749
+ }
17750
+
17751
+ $foreign_licenses['ids'][] = $license->id;
17752
+ $foreign_licenses['license_keys'][] = $license->secret_key;
17753
+
17754
+ if (
17755
+ $include_parent_licenses &&
17756
+ is_object( $this->_license ) &&
17757
+ FS_Plugin_License::is_valid_id( $this->_license->parent_license_id ) &&
17758
+ ! isset( $parent_license_ids_map[ $this->_license->parent_license_id ] )
17759
+ ) {
17760
+ /**
17761
+ * Include the parent license's info only if it has not been included before since child licenses
17762
+ * can have the same parent license.
17763
+ */
17764
+ $foreign_licenses['ids'][] = $this->_license->parent_license_id;
17765
+ $foreign_licenses['license_keys'][] = $license->secret_key;
17766
+
17767
+ $parent_license_ids_map[ $this->_license->parent_license_id ] = true;
17768
+ }
17769
+ }
17770
+
17771
+ if ( empty( $foreign_licenses['ids'] ) ) {
17772
+ $foreign_licenses = array();
17773
+ }
17774
+
17775
+ return $foreign_licenses;
17776
+ }
17777
+
17778
+ /**
17779
+ * @author Leo Fajardo (@leorw)
17780
+ * @since 2.3.0
17781
+ *
17782
+ * @return string
17783
+ */
17784
+ private function get_valid_user_licenses_endpoint() {
17785
+ $user_licenses_endpoint = '/licenses.json?type=active' .
17786
+ ( FS_Plugin::is_valid_id( $this->get_bundle_id() ) ? '&is_enriched=true' : '' );
17787
+
17788
+ $foreign_licenses = $this->get_foreign_licenses_info( self::get_all_licenses( $this->_module_id ), null, true );
17789
+
17790
+ if ( ! empty ( $foreign_licenses ) ) {
17791
+ $foreign_licenses = array(
17792
+ // Prefix with `+` to tell the server to include foreign licenses in the licenses collection.
17793
+ 'ids' => ( urlencode( '+' ) . implode( ',', $foreign_licenses['ids'] ) ),
17794
+ 'license_keys' => implode( ',', array_map( 'urlencode', $foreign_licenses['license_keys'] ) )
17795
+ );
17796
+
17797
+ $user_licenses_endpoint = add_query_arg( $foreign_licenses, $user_licenses_endpoint );
17798
+ }
17799
+
17800
+ return $user_licenses_endpoint;
17801
+ }
17802
+
17803
+ /**
17804
+ * Fetches active licenses that are enriched with product type if there's a context `bundle_id` and bundle
17805
+ * licenses enriched with product IDs if there are any. From the licenses, the `get_updated_account_addons`
17806
+ * method filters out non–add-on product IDs and stores the add-on IDs.
17807
+ *
17808
+ * @author Leo Fajardo (@leorw)
17809
+ * @since 2.2.4
17810
+ *
17811
+ * @return stdClass[] array
17812
+ */
17813
+ private function fetch_valid_user_licenses() {
17814
+ $this->_logger->entrance();
17815
+
17816
+ $result = $this->get_api_user_scope()->get( $this->get_valid_user_licenses_endpoint() );
17817
+
17818
+ if ( ! $this->is_api_result_object( $result, 'licenses' ) ||
17819
+ ! is_array( $result->licenses )
17820
+ ) {
17821
+ return array();
17822
+ }
17823
+
17824
+ return $result->licenses;
17825
+ }
17826
+
17827
+ /**
17828
+ * @author Leo Fajardo (@leorw)
17829
+ * @since 2.2.4
17830
+ *
17831
+ * @return number[] Account add-on IDs.
17832
+ */
17833
+ function get_updated_account_addons() {
17834
+ $addons = $this->get_addons();
17835
+ if ( empty( $addons ) ) {
17836
+ return array();
17837
+ }
17838
+
17839
+ $account_addons = $this->get_account_addons();
17840
+ if ( ! is_array( $account_addons ) ) {
17841
+ $account_addons = array();
17842
+ }
17843
+
17844
+ $user_licenses = $this->is_registered() ?
17845
+ $this->fetch_valid_user_licenses() :
17846
+ array();
17847
+
17848
+ if ( empty( $user_licenses ) ) {
17849
+ return $account_addons;
17850
+ }
17851
+
17852
+ $addon_ids = array();
17853
+ foreach ( $addons as $addon ) {
17854
+ $addon_ids[] = $addon->id;
17855
+ }
17856
+
17857
+ $license_product_ids = array();
17858
+
17859
+ foreach ( $user_licenses as $license ) {
17860
+ if ( isset( $license->plugin_type ) && 'bundle' === $license->plugin_type ) {
17861
+ $license_product_ids = array_merge( $license_product_ids, $license->products );
17862
+ } else {
17863
+ $license_product_ids[] = $license->plugin_id;
17864
+ }
17865
+ }
17866
+
17867
+ // Filter out non–add-on IDs.
17868
+ $new_account_addons = array_intersect( $addon_ids, $license_product_ids );
17869
+ if ( count( $new_account_addons ) !== count( $account_addons ) ) {
17870
+ $this->_store_account_addons( array_unique( $new_account_addons ) );
17871
+ }
17872
+
17873
+ return $new_account_addons;
17874
+ }
17875
+
17876
  /**
17877
  * Store account params in the Database.
17878
  *
17967
  $api = $this->get_api_site_scope();
17968
 
17969
  if ( ! is_numeric( $license_id ) ) {
17970
+ $license_id = FS_Plugin_License::is_valid_id( $this->_license->parent_license_id ) ?
17971
+ $this->_license->parent_license_id :
17972
+ $this->_license->id;
17973
  }
17974
 
17975
  $result = $api->get( "/licenses/{$license_id}/subscriptions.json", true );
18076
  $plugin_id = $this->_plugin->id;
18077
  }
18078
 
18079
+ $user_licenses_endpoint = "/plugins/{$plugin_id}/licenses.json?is_enriched=true";
18080
  if ( ! empty ( $foreign_licenses ) ) {
18081
  $foreign_licenses = array(
18082
  // Prefix with `+` to tell the server to include foreign licenses in the licenses collection.
18125
 
18126
  if ( is_numeric( $site_license_id ) ) {
18127
  // Try to retrieve a foreign license that is linked to the install.
18128
+ $api_result = $api->call( '/licenses.json?is_enriched=true' );
18129
 
18130
  if ( $this->is_api_result_object( $api_result, 'licenses' ) &&
18131
  is_array( $api_result->licenses )
18138
  } else {
18139
  $api_errors[] = $api_result;
18140
  }
18141
+ } else if (
18142
+ is_object( $this->_license ) &&
18143
+ /**
18144
+ * Sync only if the license belongs to the context plugin. `$plugin_id` can be an add-on ID while
18145
+ * the FS instance that does the syncing is the parent FS instance.
18146
+ *
18147
+ * @author Leo Fajardo (@leorw)
18148
+ * @since 2.3.0
18149
+ */
18150
+ $this->_license->plugin_id == $plugin_id
18151
+ ) {
18152
  $is_license_in_result = false;
18153
  if ( ! empty( $result ) ) {
18154
  foreach ( $result as $license ) {
18162
  if ( ! $is_license_in_result ) {
18163
  // Fetch foreign license by ID and license key.
18164
  $license = $api->get( "/licenses/{$this->_license->id}.json?license_key=" .
18165
+ urlencode( $this->_license->secret_key ) . '&is_enriched=true' );
18166
 
18167
  if ( $this->is_api_result_entity( $license ) ) {
18168
  $result[] = new FS_Plugin_License( $license );
18231
  $plugin_id = $this->_plugin->id;
18232
  }
18233
 
18234
+ $include_bundles = (
18235
+ is_object( $this->_plugin ) &&
18236
+ FS_Plugin::is_valid_id( $this->_plugin->bundle_id )
18237
+ );
18238
+
18239
+ $result = $api->get(
18240
+ "/plugins/{$plugin_id}/payments.json?include_addons=true" . ($include_bundles ? '&include_bundles=true' : ''),
18241
+ $flush
18242
+ );
18243
 
18244
  if ( ! isset( $result->error ) ) {
18245
  for ( $i = 0, $len = count( $result->payments ); $i < $len; $i ++ ) {
18309
  return false;
18310
  }
18311
 
18312
+ $plugin_version = $this->get_plugin_version();
18313
+
18314
  // Check if version is actually newer.
18315
  $has_new_version =
18316
  // If it's an non-installed add-on then always return latest.
18317
  ( $this->_is_addon_id( $plugin_id ) && ! $this->is_addon_activated( $plugin_id ) ) ||
18318
  // Compare versions.
18319
+ version_compare( $plugin_version, $latest_tag->version, '<' );
18320
 
18321
  $this->_logger->departure( $has_new_version ? 'Found newer plugin version ' . $latest_tag->version : 'No new version' );
18322
 
18323
+ $is_latest_version_beta = ( 'beta' === $latest_tag->release_mode );
18324
+
18325
+ $this->_storage->beta_data = array(
18326
+ 'is_beta' => $is_latest_version_beta,
18327
+ 'version' => $latest_tag->version
18328
+ );
18329
+
18330
  return $has_new_version ? $latest_tag : false;
18331
  }
18332
 
18537
  if ( $this->is_addon_activated( $addon_id ) ) {
18538
  // If already installed, use add-on sync.
18539
  $fs_addon = self::get_instance_by_id( $addon_id );
 
18540
 
18541
+ if (
18542
+ // Add-on is network activated and network integrated.
18543
+ $fs_addon->is_network_active() ||
18544
+ // Background sync cron.
18545
+ self::is_cron() ||
18546
+ // Add-on is not network activated or not network integrated.
18547
+ ! fs_is_network_admin()
18548
+ ) {
18549
+ $fs_addon->_sync_license( $background );
18550
+
18551
+ return;
18552
+ }
18553
  }
18554
 
18555
  // Validate add-on exists.
18678
  if ( ! self::$_global_admin_notices->has_sticky( 'api_blocked' ) ) {
18679
  self::$_global_admin_notices->add(
18680
  sprintf(
18681
+ $this->get_text_inline( 'Your server is blocking the access to Freemius\' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s', 'server-blocking-access' ),
18682
  $this->get_plugin_name(),
18683
+ '<b>' . implode( ', ', $this->apply_filters( 'api_domains', array(
18684
+ 'api.freemius.com',
18685
+ 'wp.freemius.com'
18686
+ ) ) ) . '</b>'
18687
  ) . '<br> ' . $this->get_text_inline( 'Error received from the server:', 'server-error-message' ) . var_export( $result->error, true ),
18688
  $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...',
18689
  'error',
18846
  $this->_store_licenses();
18847
 
18848
  $plan_change = $is_free ?
18849
+ ( $this->is_only_premium() ? 'activated' : 'upgraded' ) :
18850
  ( is_object( $new_license ) ?
18851
  'changed' :
18852
  'downgraded' );
18874
  $this->_sync_site_subscription( $this->_license );
18875
  }
18876
  }
18877
+
18878
+ if ( $this->is_addon() || $this->has_addons() ) {
18879
+ /**
18880
+ * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
18881
+ * an updated valid user licenses collection will be fetched from the server which is used to also
18882
+ * update the account add-ons (add-ons the user has licenses for).
18883
+ *
18884
+ * @author Leo Fajardo (@leorw)
18885
+ * @since 2.2.4
18886
+ */
18887
+ $this->purge_valid_user_licenses_cache();
18888
+ }
18889
  }
18890
 
18891
  $hmm_text = $this->get_text_x_inline( 'Hmm', 'something somebody says when they are thinking about what you have just said.', 'hmm' ) . '...';
18919
  }
18920
  break;
18921
  case 'upgraded':
18922
+ case 'activated':
18923
  $this->_admin_notices->add_sticky(
18924
+ ( 'activated' === $plan_change ) ?
18925
+ $this->get_text_inline( 'Your plan was successfully activated.', 'plan-activated-message' ) :
18926
+ $this->get_text_inline( 'Your plan was successfully upgraded.', 'plan-upgraded-message' ) .
18927
+ $this->get_complete_upgrade_instructions(),
18928
  'plan_upgraded',
18929
  $this->get_text_x_inline( 'Yee-haw', 'interjection expressing joy or exuberance', 'yee-haw' ) . '!'
18930
  );
19039
  *
19040
  * @param bool $background
19041
  */
19042
+ protected function _activate_license( $background = false, $premium_license = null ) {
19043
  $this->_logger->entrance();
19044
 
19045
+ if ( is_null( $premium_license ) ) {
19046
+ $license_id = fs_request_get( 'license_id' );
19047
 
19048
+ if ( is_object( $this->_site ) &&
19049
+ FS_Plugin_License::is_valid_id( $license_id ) &&
19050
+ $license_id == $this->_site->license_id
19051
+ ) {
19052
+ // License is already activated.
19053
+ return;
19054
+ }
19055
 
19056
+ $premium_license = FS_Plugin_License::is_valid_id( $license_id ) ?
19057
+ $this->_get_license_by_id( $license_id ) :
19058
+ $this->_get_available_premium_license();
19059
+ }
19060
 
19061
  if ( ! is_object( $premium_license ) ) {
19062
  return;
19105
  }
19106
 
19107
  $api = $this->get_api_site_scope();
19108
+ $license = $api->call( "/licenses/{$premium_license->id}.json?is_enriched=true", 'put', $api_request_params );
19109
 
19110
  if ( ! $this->is_api_result_entity( $license ) ) {
19111
  if ( ! $background ) {
19139
 
19140
  $this->_store_account();
19141
 
19142
+ if ( $this->is_addon() || $this->has_addons() ) {
19143
+ /**
19144
+ * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
19145
+ * an updated valid user licenses collection will be fetched from the server which is used to also
19146
+ * update the account add-ons (add-ons the user has licenses for).
19147
+ *
19148
+ * @author Leo Fajardo (@leorw)
19149
+ * @since 2.2.4
19150
+ */
19151
+ $this->purge_valid_user_licenses_cache();
19152
+ }
19153
+
19154
  if ( ! $background ) {
19155
  $this->_admin_notices->add_sticky(
19156
  $this->get_text_inline( 'Your license was successfully activated.', 'license-activated-message' ) .
19553
 
19554
  if ( $this->has_secret_key() ) {
19555
  $endpoint = add_query_arg( 'type', 'all', $endpoint );
19556
+ } else if ( $this->is_registered() && $this->_user->is_beta() ) {
19557
+ $endpoint = add_query_arg( 'type', 'beta', $endpoint );
19558
  }
19559
 
19560
  return $endpoint;
19711
  function _get_invoice_api_url( $payment_id = false ) {
19712
  $this->_logger->entrance();
19713
 
19714
+ $url = $this->get_api_user_scope()->get_signed_url(
19715
  "/payments/{$payment_id}/invoice.pdf"
19716
  );
19717
+
19718
+ if ( ! fs_starts_with( $url, 'https://' ) ) {
19719
+ // Always use HTTPS for invoices.
19720
+ $url = 'https' . substr( $url, 4 );
19721
+ }
19722
+
19723
+ return $url;
19724
  }
19725
 
19726
  /**
19766
  $this->get_parent_instance() :
19767
  $this;
19768
 
19769
+ return $this->apply_filters( 'download_latest_url', $fs->get_account_url( 'download_latest', $params ) );
19770
  }
19771
 
19772
  #endregion Download Plugin ------------------------------------------------------------------
19855
  if ( ! $flush && $api->is_cached( $path ) ) {
19856
  $addons = self::get_all_addons();
19857
 
19858
+ return isset( $addons[ $this->_plugin->id ] ) ?
19859
+ $addons[ $this->_plugin->id ] :
19860
+ array();
19861
  }
19862
 
19863
  $result = $api->get( $path, $flush );
20093
  if ( ! isset( $result->error ) ) {
20094
  $this->_admin_notices->add( sprintf(
20095
  $this->get_text_inline( 'Verification mail was just sent to %s. If you can\'t find it after 5 min, please check your spam box.', 'verification-email-sent-message' ),
20096
+ sprintf( '<a href="mailto:%1$s">%2$s</a>', esc_url( $this->_user->email ), $this->_user->email )
20097
  ) );
20098
  } else {
20099
  // handle different error cases.
20158
  ) {
20159
  $first_time_path = '';
20160
  } else {
20161
+ $first_time_path = $this->_menu->get_first_time_path(
20162
+ fs_is_network_admin() && $this->_is_network_active
20163
+ );
20164
  }
20165
 
20166
  if ( $this->_is_network_active &&
20805
  $user->id,
20806
  $user->public_key,
20807
  ! $this->is_live(),
20808
+ $user->secret_key,
20809
+ $this->get_sdk_version()
20810
  );
20811
  }
20812
 
20834
  $user->id,
20835
  $user->public_key,
20836
  ! $this->is_live(),
20837
+ $user->secret_key,
20838
+ $this->get_sdk_version()
20839
  );
20840
 
20841
  return $this->_user_api;
20860
  $this->_site->id,
20861
  $this->_site->public_key,
20862
  ! $this->is_live(),
20863
+ $this->_site->secret_key,
20864
+ $this->get_sdk_version()
20865
  );
20866
  }
20867
 
20885
  'plugin',
20886
  $this->_plugin->id,
20887
  $this->_plugin->public_key,
20888
+ ! $this->is_live(),
20889
+ false,
20890
+ $this->get_sdk_version()
20891
  );
20892
  }
20893
 
20927
  $plans = array( $plans );
20928
  }
20929
 
20930
+ if ( ! $this->is_array_instanceof( $plans, 'FS_Plugin_Plan' ) ) {
20931
+ $plans = array();
20932
+ }
20933
+
20934
  $this->_storage->has_trial_plan = FS_Plan_Manager::instance()->has_trial_plan( $plans );
20935
  }
20936
 
21308
  function _add_upgrade_action_link() {
21309
  $this->_logger->entrance();
21310
 
21311
+ $is_activation_mode = $this->is_activation_mode();
21312
+
21313
+ $add_action_links = $this->should_add_submenu_or_action_links( $is_activation_mode );
21314
+
21315
+ /**
21316
+ * The following logic is based on the logic in `add_submenu_items()` method that decides when the "Upgrade"
21317
+ * and "Add-Ons" menus should be added.
21318
+ *
21319
+ * @author Leo Fajardo (@leorw)
21320
+ * @since 2.3.0
21321
+ */
21322
+ $add_upgrade_link = (
21323
+ $add_action_links ||
21324
+ ( $is_activation_mode && $this->is_only_premium() )
21325
+ ) && ! WP_FS__DEMO_MODE;
21326
+
21327
+ $add_addons_link = ( $add_action_links && $this->has_addons() );
21328
+
21329
+ if ( ! $add_upgrade_link && ! $add_addons_link ) {
21330
+ return;
21331
+ }
21332
+
21333
+ if (
21334
+ $add_upgrade_link &&
21335
+ $this->is_pricing_page_visible() &&
21336
+ $this->is_submenu_item_visible( 'pricing' )
21337
+ ) {
21338
  $this->add_plugin_action_link(
21339
  $this->get_text_inline( 'Upgrade', 'upgrade' ),
21340
  $this->get_upgrade_url(),
21344
  );
21345
  }
21346
 
21347
+ if (
21348
+ $add_addons_link &&
21349
+ $this->has_addons() &&
21350
+ $this->is_submenu_item_visible( 'addons' )
21351
+ ) {
21352
  $this->add_plugin_action_link(
21353
  $this->get_text_inline( 'Add-Ons', 'add-ons' ),
21354
  $this->_get_admin_page_url( 'addons' ),
21399
  }
21400
 
21401
  /**
21402
+ * Adds "Opt In" or "Opt Out" link to the main "Plugins" page link actions collection.
21403
  *
21404
  * @author Leo Fajardo (@leorw)
21405
  * @since 1.2.1.5
21411
 
21412
  $this->_logger->entrance();
21413
 
21414
+ if ( fs_is_network_admin() ) {
21415
+ if ( ! $this->_is_network_active ) {
21416
+ // Don't add tracking links when browsing the network WP Admin and the plugin is not network active.
21417
+ return;
21418
+ } else if ( $this->is_network_delegated_connection() ) {
21419
+ // Don't add tracking links when browsing the network WP Admin and the activation has been delegated to site admins.
21420
+ return;
21421
+ }
21422
+ } else {
21423
+ if ( $this->_is_network_active && ! $this->is_delegated_connection() ) {
21424
+ // Don't add tracking links when browsing the sub-site WP Admin, the plugin is network active, and the connection was not delegated.
21425
+ return;
21426
+ }
21427
  }
21428
 
21429
  if ( fs_request_is_action_secure( $this->get_unique_affix() . '_reconnect' ) ) {
21441
  return;
21442
  }
21443
 
21444
+ if ( $this->is_registered() && $this->is_tracking_allowed() ) {
21445
+ if ( ! $this->is_enable_anonymous() ) {
21446
+ // If opted in and tracking is allowed, don't allow to opt out if anonymous mode is disabled.
21447
+ return;
21448
+ }
21449
 
21450
+ if ( ! $this->is_free_plan() ) {
21451
+ // Don't allow to opt out if running in paid plan.
21452
+ return;
21453
+ }
21454
  }
21455
 
21456
  if ( $this->add_ajax_action( 'stop_tracking', array( &$this, '_stop_tracking_callback' ) ) ) {
21461
  return;
21462
  }
21463
 
21464
+ $link_text_id = '';
21465
+ $url = '#';
21466
 
21467
  if ( $this->is_registered() ) {
21468
  if ( $this->is_tracking_allowed() ) {
21472
  }
21473
 
21474
  add_action( 'admin_footer', array( &$this, '_add_optout_dialog' ) );
21475
+ } else if ( $this->is_anonymous() || $this->is_activation_mode() ) {
21476
+ /**
21477
+ * Show opt-in link only if skipped or in activation mode.
21478
+ */
21479
  $link_text_id = $this->get_text_inline( 'Opt In', 'opt-in' );
21480
 
21481
  $params = ! $this->is_anonymous() ?
21488
  $url = $this->get_activation_url( $params );
21489
  }
21490
 
21491
+ if ( ! empty( $link_text_id ) && $this->is_plugin() && self::is_plugins_page() ) {
21492
  $this->add_plugin_action_link(
21493
  $link_text_id,
21494
  $url,
21511
  $url = false;
21512
 
21513
  if ( ! $this->is_addon() || ! $this->has_free_plan() ) {
21514
+ $first_time_path = $this->_menu->get_first_time_path(
21515
+ fs_is_network_admin() && $this->_is_network_active
21516
+ );
21517
 
21518
  if ( $this->is_activation_mode() ) {
21519
  $url = $this->get_activation_url();
21701
  $premium_plugin_basename = $this->premium_plugin_basename();
21702
 
21703
  return sprintf(
21704
+ /* translators: %1$s: Product title; %2$s: Plan title */
21705
+ $this->get_text_inline( ' The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s', 'activate-premium-version' ),
21706
  sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
21707
  $plan_title,
21708
  sprintf(
21732
  ) ),
21733
  $deactivation_step,
21734
  $this->get_text_inline( 'Upload and activate the downloaded version', 'upload-and-activate' ),
21735
+ $this->apply_filters( 'upload_and_install_video_url', '//bit.ly/upload-wp-' . $this->_module_type . 's' ),
21736
  $this->get_text_inline( 'How to upload and activate?', 'howto-upload-activate' )
21737
  );
21738
  }
22715
  'plugin',
22716
  $user_plugin->id,
22717
  $user_plugin->public_key,
22718
+ ! $user_plugin->is_live,
22719
+ false,
22720
+ $this->get_sdk_version()
22721
  );
22722
 
22723
  $addons_result = $plugin_api->get( '/addons.json?enriched=true', true );
22807
  '%s %s %s',
22808
  $thank_you,
22809
  $already_opted_in,
22810
+ sprintf( $this->get_text_inline( 'Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)', 'due-to-gdpr-compliance-requirements' ), '<a href="https://eugdpr.org/" target="_blank" rel="noopener noreferrer">', '</a>' ) .
22811
  '<br><br>' .
22812
  '<b>' . $this->get_text_inline( "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:", 'contact-for-updates' ) . '</b>' .
22813
  $actions .
vendor/freemius/wordpress-sdk/includes/class-fs-api.php CHANGED
@@ -56,23 +56,40 @@
56
  */
57
  private $_logger;
58
 
59
- /**
 
 
 
 
 
 
 
 
60
  * @param string $slug
61
  * @param string $scope 'app', 'developer', 'user' or 'install'.
62
  * @param number $id Element's id.
63
  * @param string $public_key Public key.
64
  * @param bool $is_sandbox
65
  * @param bool|string $secret_key Element's secret key.
 
66
  *
67
  * @return FS_Api
68
  */
69
- static function instance( $slug, $scope, $id, $public_key, $is_sandbox, $secret_key = false ) {
 
 
 
 
 
 
 
 
70
  $identifier = md5( $slug . $scope . $id . $public_key . ( is_string( $secret_key ) ? $secret_key : '' ) . json_encode( $is_sandbox ) );
71
 
72
  if ( ! isset( self::$_instances[ $identifier ] ) ) {
73
  self::_init();
74
 
75
- self::$_instances[ $identifier ] = new FS_Api( $slug, $scope, $id, $public_key, $secret_key, $is_sandbox );
76
  }
77
 
78
  return self::$_instances[ $identifier ];
@@ -105,12 +122,22 @@
105
  * @param string $public_key Public key.
106
  * @param bool|string $secret_key Element's secret key.
107
  * @param bool $is_sandbox
 
108
  */
109
- private function __construct( $slug, $scope, $id, $public_key, $secret_key, $is_sandbox ) {
 
 
 
 
 
 
 
 
110
  $this->_api = new Freemius_Api_WordPress( $scope, $id, $public_key, $secret_key, $is_sandbox );
111
 
112
- $this->_slug = $slug;
113
- $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $slug . '_api', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK );
 
114
  }
115
 
116
  /**
@@ -154,39 +181,51 @@
154
  * @return array|mixed|string|void
155
  */
156
  private function _call( $path, $method = 'GET', $params = array(), $retry = false ) {
157
- $this->_logger->entrance( $method . ':' . $path );
158
-
159
- if ( self::is_temporary_down() ) {
160
- $result = $this->get_temporary_unavailable_error();
161
- } else {
162
- $result = $this->_api->Api( $path, $method, $params );
163
-
164
- if ( null !== $result &&
165
- isset( $result->error ) &&
166
- isset( $result->error->code ) &&
167
- 'request_expired' === $result->error->code
168
- ) {
169
- if ( ! $retry ) {
170
- $diff = isset( $result->error->timestamp ) ?
171
- ( time() - strtotime( $result->error->timestamp ) ) :
172
- false;
173
-
174
- // Try to sync clock diff.
175
- if ( false !== $this->_sync_clock_diff( $diff ) ) {
176
- // Retry call with new synced clock.
177
- return $this->_call( $path, $method, $params, true );
178
- }
179
- }
180
- }
181
- }
 
 
 
 
 
 
 
 
 
 
 
 
182
 
183
- if ( $this->_logger->is_on() && self::is_api_error( $result ) ) {
184
- // Log API errors.
185
- $this->_logger->api_error( $result );
186
- }
187
 
188
- return $result;
189
- }
190
 
191
  /**
192
  * Override API call to wrap it in servers' clock sync method.
@@ -253,7 +292,7 @@
253
  * If the response code is 404, cache the result for half of the `$expiration`.
254
  *
255
  * @author Leo Fajardo (@leorw)
256
- * @since 2.2.3.1
257
  */
258
  $expiration /= 2;
259
  } else {
56
  */
57
  private $_logger;
58
 
59
+ /**
60
+ * @author Leo Fajardo (@leorw)
61
+ * @since 2.3.0
62
+ *
63
+ * @var string
64
+ */
65
+ private $_sdk_version;
66
+
67
+ /**
68
  * @param string $slug
69
  * @param string $scope 'app', 'developer', 'user' or 'install'.
70
  * @param number $id Element's id.
71
  * @param string $public_key Public key.
72
  * @param bool $is_sandbox
73
  * @param bool|string $secret_key Element's secret key.
74
+ * @param null|string $sdk_version
75
  *
76
  * @return FS_Api
77
  */
78
+ static function instance(
79
+ $slug,
80
+ $scope,
81
+ $id,
82
+ $public_key,
83
+ $is_sandbox,
84
+ $secret_key = false,
85
+ $sdk_version = null
86
+ ) {
87
  $identifier = md5( $slug . $scope . $id . $public_key . ( is_string( $secret_key ) ? $secret_key : '' ) . json_encode( $is_sandbox ) );
88
 
89
  if ( ! isset( self::$_instances[ $identifier ] ) ) {
90
  self::_init();
91
 
92
+ self::$_instances[ $identifier ] = new FS_Api( $slug, $scope, $id, $public_key, $secret_key, $is_sandbox, $sdk_version );
93
  }
94
 
95
  return self::$_instances[ $identifier ];
122
  * @param string $public_key Public key.
123
  * @param bool|string $secret_key Element's secret key.
124
  * @param bool $is_sandbox
125
+ * @param null|string $sdk_version
126
  */
127
+ private function __construct(
128
+ $slug,
129
+ $scope,
130
+ $id,
131
+ $public_key,
132
+ $secret_key,
133
+ $is_sandbox,
134
+ $sdk_version
135
+ ) {
136
  $this->_api = new Freemius_Api_WordPress( $scope, $id, $public_key, $secret_key, $is_sandbox );
137
 
138
+ $this->_slug = $slug;
139
+ $this->_sdk_version = $sdk_version;
140
+ $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $slug . '_api', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK );
141
  }
142
 
143
  /**
181
  * @return array|mixed|string|void
182
  */
183
  private function _call( $path, $method = 'GET', $params = array(), $retry = false ) {
184
+ $this->_logger->entrance( $method . ':' . $path );
185
+
186
+ if ( self::is_temporary_down() ) {
187
+ $result = $this->get_temporary_unavailable_error();
188
+ } else {
189
+ /**
190
+ * @since 2.3.0 Include the SDK version with all API requests that going through the API manager. IMPORTANT: Only pass the SDK version if the caller didn't include it yet.
191
+ */
192
+ if ( ! empty( $this->_sdk_version ) ) {
193
+ if ( false === strpos( $path, 'sdk_version=' ) &&
194
+ ! isset( $params['sdk_version'] )
195
+ ) {
196
+ // Always add the sdk_version param in the querystring. DO NOT INCLUDE IT IN THE BODY PARAMS, OTHERWISE, IT MAY LEAD TO AN UNEXPECTED PARAMS PARSING IN CASES WHERE THE $params IS A REGULAR NON-ASSOCIATIVE ARRAY.
197
+ $path = add_query_arg( 'sdk_version', $this->_sdk_version, $path );
198
+ }
199
+ }
200
+
201
+ $result = $this->_api->Api( $path, $method, $params );
202
+
203
+ if ( null !== $result &&
204
+ isset( $result->error ) &&
205
+ isset( $result->error->code ) &&
206
+ 'request_expired' === $result->error->code
207
+ ) {
208
+ if ( ! $retry ) {
209
+ $diff = isset( $result->error->timestamp ) ?
210
+ ( time() - strtotime( $result->error->timestamp ) ) :
211
+ false;
212
+
213
+ // Try to sync clock diff.
214
+ if ( false !== $this->_sync_clock_diff( $diff ) ) {
215
+ // Retry call with new synced clock.
216
+ return $this->_call( $path, $method, $params, true );
217
+ }
218
+ }
219
+ }
220
+ }
221
 
222
+ if ( $this->_logger->is_on() && self::is_api_error( $result ) ) {
223
+ // Log API errors.
224
+ $this->_logger->api_error( $result );
225
+ }
226
 
227
+ return $result;
228
+ }
229
 
230
  /**
231
  * Override API call to wrap it in servers' clock sync method.
292
  * If the response code is 404, cache the result for half of the `$expiration`.
293
  *
294
  * @author Leo Fajardo (@leorw)
295
+ * @since 2.2.4
296
  */
297
  $expiration /= 2;
298
  } else {
vendor/freemius/wordpress-sdk/includes/class-fs-plugin-updater.php CHANGED
@@ -164,32 +164,71 @@
164
 
165
  $contents = ob_get_clean();
166
 
167
- /**
168
- * Replace the plugin information dialog's "Install Update Now" button's text and URL. If there's a license,
169
- * the text will be "Renew license" and will link to the checkout page with the license's billing cycle
170
- * and quota. If there's no license, the text will be "Buy license" and will link to the pricing page.
171
- */
172
- $contents = preg_replace(
173
- '/(.+\<a.+)(id="plugin_update_from_iframe")(.+href=")([^\s]+)(".+\>)(.+)(\<\/a.+)/is',
174
- is_object( $license ) ?
175
- sprintf(
176
- '$1$3%s$5%s$7',
177
- $this->_fs->checkout_url(
178
- is_object( $subscription ) ?
179
- ( 1 == $subscription->billing_cycle ? WP_FS__PERIOD_MONTHLY : WP_FS__PERIOD_ANNUALLY ) :
180
- WP_FS__PERIOD_LIFETIME,
181
- false,
182
- array( 'licenses' => $license->quota )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  ),
184
- fs_text_inline( 'Renew license', 'renew-license', $this->_fs->get_slug() )
185
- ) :
186
- sprintf(
187
- '$1$3%s$5%s$7',
188
- $this->_fs->pricing_url(),
189
- fs_text_inline( 'Buy license', 'buy-license', $this->_fs->get_slug() )
190
- ),
191
- $contents
192
- );
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
  echo $contents;
195
  }
@@ -257,7 +296,40 @@
257
 
258
  $r = $current->response[ $file ];
259
 
260
- if ( ! $this->_fs->has_any_active_valid_license() ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  /**
262
  * Turn the "new version" text into a link that opens the plugin information dialog when clicked and
263
  * make the "View version x details" text link to the checkout page instead of opening the plugin
@@ -267,6 +339,8 @@
267
  * There is a new version of Awesome Plugin available. <a href="...>View version x.y.z details</a> or <a href="...>update now</a>.
268
  * Output:
269
  * There is a <a href="...>new version</a> of Awesome Plugin available. <a href="...>Buy a license now</a> to access version x.y.z security & feature updates, and support.
 
 
270
  *
271
  * @author Leo Fajardo (@leorw)
272
  */
@@ -279,7 +353,9 @@
279
  sprintf(
280
  '<a href="$4"%s>%s</a>',
281
  '$5',
282
- fs_text_inline( 'new version', 'new-version', $this->_fs->get_slug() )
 
 
283
  ),
284
  $this->_fs->get_plugin_title()
285
  ) .
@@ -299,7 +375,7 @@
299
  $slug = $this->_fs->get_slug();
300
 
301
  $upgrade_notice_html = sprintf(
302
- '<p class="notice fs-upgrade-notice fs-slug-%1s fs-type-%2s" data-slug="%1s" data-type="%2s"><strong>%3s</strong> %4s</p>',
303
  $slug,
304
  $this->_fs->get_module_type(),
305
  fs_text_inline( 'Important Upgrade Notice:', 'upgrade_notice', $slug ),
@@ -422,7 +498,7 @@
422
 
423
  $this->_update_details = false;
424
 
425
- if ( is_object( $new_version ) ) {
426
  $this->_logger->log( 'Found newer plugin version ' . $new_version->version );
427
 
428
  /**
@@ -437,10 +513,22 @@
437
  }
438
 
439
  if ( is_object( $this->_update_details ) ) {
 
 
 
 
440
  // Add plugin to transient data.
441
- $transient_data->response[ $this->_fs->get_plugin_basename() ] = $this->_fs->is_plugin() ?
442
  $this->_update_details :
443
  (array) $this->_update_details;
 
 
 
 
 
 
 
 
444
  }
445
 
446
  $slug = $this->_fs->get_slug();
@@ -532,6 +620,25 @@
532
  return $update;
533
  }
534
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
  /**
536
  * Update the updates transient with the module's update information.
537
  *
@@ -550,6 +657,10 @@
550
  function set_update_data( FS_Plugin_Tag $new_version ) {
551
  $this->_logger->entrance();
552
 
 
 
 
 
553
  $transient_key = "update_{$this->_fs->get_module_type()}s";
554
 
555
  $transient_data = get_site_transient( $transient_key );
@@ -834,8 +945,9 @@
834
  return $data;
835
  }
836
 
837
- $addon = false;
838
- $is_addon = false;
 
839
 
840
  if ( $this->_fs->get_slug() !== $args->slug ) {
841
  $addon = $this->_fs->get_addon_by_slug( $args->slug );
@@ -844,6 +956,20 @@
844
  return $data;
845
  }
846
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
847
  $is_addon = true;
848
  }
849
 
@@ -874,7 +1000,9 @@ if ( !isset($info->error) ) {
874
  }*/
875
  }
876
 
877
- $plugin_version = $this->_fs->get_plugin_version();
 
 
878
 
879
  // Get plugin's newest update.
880
  $new_version = $this->get_latest_download_details( $is_addon ? $addon->id : false, $plugin_version );
@@ -1002,8 +1130,8 @@ if ( !isset($info->error) ) {
1002
 
1003
  $active_plugins_basenames = get_option( 'active_plugins' );
1004
 
1005
- for ( $i = 0, $len = count( $active_plugins_basenames ); $i < $len; $i ++ ) {
1006
- if ( $basename === $active_plugins_basenames[ $i ] ) {
1007
  // Get filename including extension.
1008
  $filename = basename( $basename );
1009
 
@@ -1015,7 +1143,7 @@ if ( !isset($info->error) ) {
1015
  // Verify that the expected correct path exists.
1016
  if ( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $new_basename ) ) ) {
1017
  // Override active plugin name.
1018
- $active_plugins_basenames[ $i ] = $new_basename;
1019
  update_option( 'active_plugins', $active_plugins_basenames );
1020
  }
1021
 
164
 
165
  $contents = ob_get_clean();
166
 
167
+ $update_button_id_attribute_pos = strpos( $contents, 'id="plugin_update_from_iframe"' );
168
+
169
+ if ( false !== $update_button_id_attribute_pos ) {
170
+ $update_button_start_pos = strrpos(
171
+ substr( $contents, 0, $update_button_id_attribute_pos ),
172
+ '<a'
173
+ );
174
+
175
+ $update_button_end_pos = ( strpos( $contents, '</a>', $update_button_id_attribute_pos ) + strlen( '</a>' ) );
176
+
177
+ /**
178
+ * The part of the contents without the update button.
179
+ *
180
+ * @author Leo Fajardo (@leorw)
181
+ * @since 2.2.5
182
+ */
183
+ $modified_contents = substr( $contents, 0, $update_button_start_pos );
184
+
185
+ $update_button = substr( $contents, $update_button_start_pos, ( $update_button_end_pos - $update_button_start_pos ) );
186
+
187
+ /**
188
+ * Replace the plugin information dialog's "Install Update Now" button's text and URL. If there's a license,
189
+ * the text will be "Renew license" and will link to the checkout page with the license's billing cycle
190
+ * and quota. If there's no license, the text will be "Buy license" and will link to the pricing page.
191
+ */
192
+ $update_button = preg_replace(
193
+ '/(\<a.+)(id="plugin_update_from_iframe")(.+href=")([^\s]+)(".*\>)(.+)(\<\/a>)/is',
194
+ is_object( $license ) ?
195
+ sprintf(
196
+ '$1$3%s$5%s$7',
197
+ $this->_fs->checkout_url(
198
+ is_object( $subscription ) ?
199
+ ( 1 == $subscription->billing_cycle ? WP_FS__PERIOD_MONTHLY : WP_FS__PERIOD_ANNUALLY ) :
200
+ WP_FS__PERIOD_LIFETIME,
201
+ false,
202
+ array( 'licenses' => $license->quota )
203
+ ),
204
+ fs_text_inline( 'Renew license', 'renew-license', $this->_fs->get_slug() )
205
+ ) :
206
+ sprintf(
207
+ '$1$3%s$5%s$7',
208
+ $this->_fs->pricing_url(),
209
+ fs_text_inline( 'Buy license', 'buy-license', $this->_fs->get_slug() )
210
  ),
211
+ $update_button
212
+ );
213
+
214
+ /**
215
+ * Append the modified button.
216
+ *
217
+ * @author Leo Fajardo (@leorw)
218
+ * @since 2.2.5
219
+ */
220
+ $modified_contents .= $update_button;
221
+
222
+ /**
223
+ * Append the remaining part of the contents after the update button.
224
+ *
225
+ * @author Leo Fajardo (@leorw)
226
+ * @since 2.2.5
227
+ */
228
+ $modified_contents .= substr( $contents, $update_button_end_pos );
229
+
230
+ $contents = $modified_contents;
231
+ }
232
 
233
  echo $contents;
234
  }
296
 
297
  $r = $current->response[ $file ];
298
 
299
+ $has_beta_update = $this->_fs->has_beta_update();
300
+
301
+ if ( $this->_fs->has_any_active_valid_license() ) {
302
+ if ( $has_beta_update ) {
303
+ /**
304
+ * Turn the "new version" text into "new Beta version".
305
+ *
306
+ * Sample input:
307
+ * There is a new version of Awesome Plugin available. <a href="...>View version x.y.z details</a> or <a href="...>update now</a>.
308
+ * Output:
309
+ * There is a new Beta version of Awesome Plugin available. <a href="...>View version x.y.z details</a> or <a href="...>update now</a>.
310
+ *
311
+ * @author Leo Fajardo (@leorw)
312
+ * @since 2.3.0
313
+ */
314
+ $plugin_update_row = preg_replace(
315
+ '/(\<div.+>)(.+)(\<a.+href="([^\s]+)"([^\<]+)\>.+\<a.+)(\<\/div\>)/is',
316
+ (
317
+ '$1' .
318
+ sprintf(
319
+ fs_text_inline( 'There is a %s of %s available.', 'new-version-available', $this->_fs->get_slug() ),
320
+ $has_beta_update ?
321
+ fs_text_inline( 'new Beta version', 'new-beta-version', $this->_fs->get_slug() ) :
322
+ fs_text_inline( 'new version', 'new-version', $this->_fs->get_slug() ),
323
+ $this->_fs->get_plugin_title()
324
+ ) .
325
+ ' ' .
326
+ '$3' .
327
+ '$6'
328
+ ),
329
+ $plugin_update_row
330
+ );
331
+ }
332
+ } else {
333
  /**
334
  * Turn the "new version" text into a link that opens the plugin information dialog when clicked and
335
  * make the "View version x details" text link to the checkout page instead of opening the plugin
339
  * There is a new version of Awesome Plugin available. <a href="...>View version x.y.z details</a> or <a href="...>update now</a>.
340
  * Output:
341
  * There is a <a href="...>new version</a> of Awesome Plugin available. <a href="...>Buy a license now</a> to access version x.y.z security & feature updates, and support.
342
+ * OR
343
+ * There is a <a href="...>new Beta version</a> of Awesome Plugin available. <a href="...>Buy a license now</a> to access version x.y.z security & feature updates, and support.
344
  *
345
  * @author Leo Fajardo (@leorw)
346
  */
353
  sprintf(
354
  '<a href="$4"%s>%s</a>',
355
  '$5',
356
+ $has_beta_update ?
357
+ fs_text_inline( 'new Beta version', 'new-beta-version', $this->_fs->get_slug() ) :
358
+ fs_text_inline( 'new version', 'new-version', $this->_fs->get_slug() )
359
  ),
360
  $this->_fs->get_plugin_title()
361
  ) .
375
  $slug = $this->_fs->get_slug();
376
 
377
  $upgrade_notice_html = sprintf(
378
+ '<p class="notice fs-upgrade-notice fs-slug-%1$s fs-type-%2$s" data-slug="%1$s" data-type="%2$s"><strong>%3$s</strong> %4$s</p>',
379
  $slug,
380
  $this->_fs->get_module_type(),
381
  fs_text_inline( 'Important Upgrade Notice:', 'upgrade_notice', $slug ),
498
 
499
  $this->_update_details = false;
500
 
501
+ if ( is_object( $new_version ) && $this->is_new_version_premium( $new_version ) ) {
502
  $this->_logger->log( 'Found newer plugin version ' . $new_version->version );
503
 
504
  /**
513
  }
514
 
515
  if ( is_object( $this->_update_details ) ) {
516
+ if ( ! isset( $transient_data->response ) ) {
517
+ $transient_data->response = array();
518
+ }
519
+
520
  // Add plugin to transient data.
521
+ $transient_data->response[ $this->_fs->premium_plugin_basename() ] = $this->_fs->is_plugin() ?
522
  $this->_update_details :
523
  (array) $this->_update_details;
524
+ } else if ( isset( $transient_data->response ) ) {
525
+ /**
526
+ * Ensure that there's no update data for the plugin to prevent upgrading the premium version to the latest free version.
527
+ *
528
+ * @author Leo Fajardo (@leorw)
529
+ * @since 2.3.0
530
+ */
531
+ unset( $transient_data->response[ $this->_fs->premium_plugin_basename() ] );
532
  }
533
 
534
  $slug = $this->_fs->get_slug();
620
  return $update;
621
  }
622
 
623
+ /**
624
+ * @author Leo Fajardo (@leorw)
625
+ * @since 2.3.0
626
+ *
627
+ * @param FS_Plugin_Tag $new_version
628
+ *
629
+ * @return bool
630
+ */
631
+ private function is_new_version_premium( FS_Plugin_Tag $new_version ) {
632
+ $query_str = parse_url( $new_version->url, PHP_URL_QUERY );
633
+ if ( empty( $query_str ) ) {
634
+ return false;
635
+ }
636
+
637
+ parse_str( $query_str, $params );
638
+
639
+ return ( isset( $params['is_premium'] ) && 'true' == $params['is_premium'] );
640
+ }
641
+
642
  /**
643
  * Update the updates transient with the module's update information.
644
  *
657
  function set_update_data( FS_Plugin_Tag $new_version ) {
658
  $this->_logger->entrance();
659
 
660
+ if ( ! $this->is_new_version_premium( $new_version ) ) {
661
+ return;
662
+ }
663
+
664
  $transient_key = "update_{$this->_fs->get_module_type()}s";
665
 
666
  $transient_data = get_site_transient( $transient_key );
945
  return $data;
946
  }
947
 
948
+ $addon = false;
949
+ $is_addon = false;
950
+ $addon_version = false;
951
 
952
  if ( $this->_fs->get_slug() !== $args->slug ) {
953
  $addon = $this->_fs->get_addon_by_slug( $args->slug );
956
  return $data;
957
  }
958
 
959
+ if ( $this->_fs->is_addon_activated( $addon->id ) ) {
960
+ $addon_version = $this->_fs->get_addon_instance( $addon->id )->get_plugin_version();
961
+ } else if ( $this->_fs->is_addon_installed( $addon->id ) ) {
962
+ $addon_plugin_data = get_plugin_data(
963
+ ( WP_PLUGIN_DIR . '/' . $this->_fs->get_addon_basename( $addon->id ) ),
964
+ false,
965
+ false
966
+ );
967
+
968
+ if ( ! empty( $addon_plugin_data ) ) {
969
+ $addon_version = $addon_plugin_data['Version'];
970
+ }
971
+ }
972
+
973
  $is_addon = true;
974
  }
975
 
1000
  }*/
1001
  }
1002
 
1003
+ $plugin_version = $is_addon ?
1004
+ $addon_version :
1005
+ $this->_fs->get_plugin_version();
1006
 
1007
  // Get plugin's newest update.
1008
  $new_version = $this->get_latest_download_details( $is_addon ? $addon->id : false, $plugin_version );
1130
 
1131
  $active_plugins_basenames = get_option( 'active_plugins' );
1132
 
1133
+ foreach ( $active_plugins_basenames as $key => $active_plugin_basename ) {
1134
+ if ( $basename === $active_plugin_basename ) {
1135
  // Get filename including extension.
1136
  $filename = basename( $basename );
1137
 
1143
  // Verify that the expected correct path exists.
1144
  if ( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $new_basename ) ) ) {
1145
  // Override active plugin name.
1146
+ $active_plugins_basenames[ $key ] = $new_basename;
1147
  update_option( 'active_plugins', $active_plugins_basenames );
1148
  }
1149
 
vendor/freemius/wordpress-sdk/includes/class-fs-storage.php CHANGED
@@ -337,12 +337,14 @@
337
  self::$_NETWORK_OPTIONS_MAP = array(
338
  // Network level options.
339
  'affiliate_application_data' => 0,
 
340
  'connectivity_test' => 0,
341
  'handle_gdpr_admin_notice' => 0,
342
  'has_trial_plan' => 0,
343
  'install_sync_timestamp' => 0,
344
  'install_sync_cron' => 0,
345
  'is_anonymous_ms' => 0,
 
346
  'is_on' => 0,
347
  'is_plugin_new_install' => 0,
348
  'network_install_blog_id' => 0,
337
  self::$_NETWORK_OPTIONS_MAP = array(
338
  // Network level options.
339
  'affiliate_application_data' => 0,
340
+ 'beta_data' => 0,
341
  'connectivity_test' => 0,
342
  'handle_gdpr_admin_notice' => 0,
343
  'has_trial_plan' => 0,
344
  'install_sync_timestamp' => 0,
345
  'install_sync_cron' => 0,
346
  'is_anonymous_ms' => 0,
347
+ 'is_network_activated' => 0,
348
  'is_on' => 0,
349
  'is_plugin_new_install' => 0,
350
  'network_install_blog_id' => 0,
vendor/freemius/wordpress-sdk/includes/entities/class-fs-payment.php CHANGED
@@ -42,6 +42,13 @@
42
  * @var float
43
  */
44
  public $gross;
 
 
 
 
 
 
 
45
  /**
46
  * @var number
47
  */
@@ -75,6 +82,10 @@
75
 
76
  #endregion Properties
77
 
 
 
 
 
78
  /**
79
  * @param object|bool $payment
80
  */
@@ -107,4 +118,51 @@
107
  function is_migrated() {
108
  return ( 0 != $this->source );
109
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  }
42
  * @var float
43
  */
44
  public $gross;
45
+ /**
46
+ * @author Leo Fajardo (@leorw)
47
+ * @since 2.3.0
48
+ *
49
+ * @var string One of the following: `usd`, `gbp`, `eur`.
50
+ */
51
+ public $currency;
52
  /**
53
  * @var number
54
  */
82
 
83
  #endregion Properties
84
 
85
+ const CURRENCY_USD = 'usd';
86
+ const CURRENCY_GBP = 'gbp';
87
+ const CURRENCY_EUR = 'eur';
88
+
89
  /**
90
  * @param object|bool $payment
91
  */
118
  function is_migrated() {
119
  return ( 0 != $this->source );
120
  }
121
+
122
+ /**
123
+ * Returns the gross in this format:
124
+ * `{symbol}{amount | 2 decimal digits} {currency | uppercase}`
125
+ *
126
+ * Examples: £9.99 GBP, -£9.99 GBP.
127
+ *
128
+ * @author Leo Fajardo (@leorw)
129
+ * @since 2.3.0
130
+ *
131
+ * @return string
132
+ */
133
+ function formatted_gross()
134
+ {
135
+ return (
136
+ ( $this->gross < 0 ? '-' : '' ) .
137
+ $this->get_symbol() .
138
+ number_format( abs( $this->gross ), 2, '.', ',' ) . ' ' .
139
+ strtoupper( $this->currency )
140
+ );
141
+ }
142
+
143
+ /**
144
+ * A map between supported currencies with their symbols.
145
+ *
146
+ * @var array<string,string>
147
+ */
148
+ static $CURRENCY_2_SYMBOL;
149
+
150
+ /**
151
+ * @author Leo Fajardo (@leorw)
152
+ * @since 2.3.0
153
+ *
154
+ * @return string
155
+ */
156
+ private function get_symbol() {
157
+ if ( ! isset( self::$CURRENCY_2_SYMBOL ) ) {
158
+ // Lazy load.
159
+ self::$CURRENCY_2_SYMBOL = array(
160
+ self::CURRENCY_USD => '$',
161
+ self::CURRENCY_GBP => '£',
162
+ self::CURRENCY_EUR => '€',
163
+ );
164
+ }
165
+
166
+ return self::$CURRENCY_2_SYMBOL[ $this->currency ];
167
+ }
168
  }
vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin-license.php CHANGED
@@ -29,6 +29,27 @@
29
  * @var number
30
  */
31
  public $plan_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  /**
33
  * @var number
34
  */
@@ -95,7 +116,7 @@
95
  * @return int
96
  */
97
  function left() {
98
- if ( ! $this->is_active() || $this->is_expired() ) {
99
  return 0;
100
  }
101
 
29
  * @var number
30
  */
31
  public $plan_id;
32
+ /**
33
+ * @author Leo Fajardo (@leorw)
34
+ * @since 2.3.0
35
+ *
36
+ * @var string
37
+ */
38
+ public $parent_plan_name;
39
+ /**
40
+ * @author Leo Fajardo (@leorw)
41
+ * @since 2.3.0
42
+ *
43
+ * @var string
44
+ */
45
+ public $parent_plan_title;
46
+ /**
47
+ * @author Leo Fajardo (@leorw)
48
+ * @since 2.3.0
49
+ *
50
+ * @var number
51
+ */
52
+ public $parent_license_id;
53
  /**
54
  * @var number
55
  */
116
  * @return int
117
  */
118
  function left() {
119
+ if ( ! $this->is_features_enabled() ) {
120
  return 0;
121
  }
122
 
vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin-tag.php CHANGED
@@ -36,9 +36,9 @@
36
  */
37
  public $has_premium;
38
  /**
39
- * @var bool
40
  */
41
- public $is_released;
42
 
43
  function __construct( $tag = false ) {
44
  parent::__construct( $tag );
@@ -47,4 +47,14 @@
47
  static function get_type() {
48
  return 'tag';
49
  }
 
 
 
 
 
 
 
 
 
 
50
  }
36
  */
37
  public $has_premium;
38
  /**
39
+ * @var string One of the following: `pending`, `beta`, `unreleased`.
40
  */
41
+ public $release_mode;
42
 
43
  function __construct( $tag = false ) {
44
  parent::__construct( $tag );
47
  static function get_type() {
48
  return 'tag';
49
  }
50
+
51
+ /**
52
+ * @author Leo Fajardo (@leorw)
53
+ * @since 2.3.0
54
+ *
55
+ * @return bool
56
+ */
57
+ function is_beta() {
58
+ return ( 'beta' === $this->release_mode );
59
+ }
60
  }
vendor/freemius/wordpress-sdk/includes/entities/class-fs-plugin.php CHANGED
@@ -49,6 +49,13 @@
49
  * @var bool Set to true if the free version of the module is hosted on WordPress.org. Defaults to true.
50
  */
51
  public $is_wp_org_compliant = true;
 
 
 
 
 
 
 
52
 
53
  #region Install Specific Properties
54
 
@@ -87,6 +94,11 @@
87
  * @var bool
88
  */
89
  public $is_live;
 
 
 
 
 
90
 
91
  const AFFILIATE_MODERATION_CUSTOMERS = 'customers';
92
 
49
  * @var bool Set to true if the free version of the module is hosted on WordPress.org. Defaults to true.
50
  */
51
  public $is_wp_org_compliant = true;
52
+ /**
53
+ * @author Leo Fajardo (@leorw)
54
+ * @since 2.2.5
55
+ *
56
+ * @var int
57
+ */
58
+ public $premium_releases_count;
59
 
60
  #region Install Specific Properties
61
 
94
  * @var bool
95
  */
96
  public $is_live;
97
+ /**
98
+ * @since 2.2.3
99
+ * @var null|number
100
+ */
101
+ public $bundle_id;
102
 
103
  const AFFILIATE_MODERATION_CUSTOMERS = 'customers';
104
 
vendor/freemius/wordpress-sdk/includes/entities/class-fs-site.php CHANGED
@@ -170,13 +170,16 @@
170
  fs_starts_with( $subdomain, 'staging' ) ||
171
  // WPEngine staging.
172
  fs_ends_with( $subdomain, '.staging.wpengine.com' ) ||
 
173
  // Pantheon
174
  ( fs_ends_with($subdomain, 'pantheonsite.io') &&
175
  (fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-'))) ||
176
  // Cloudways
177
  fs_ends_with( $subdomain, '.cloudwaysapps.com' ) ||
178
  // Kinsta
179
- (fs_ends_with($subdomain, '.kinsta.com') && fs_starts_with($subdomain, 'staging-'))
 
 
180
  );
181
  }
182
 
170
  fs_starts_with( $subdomain, 'staging' ) ||
171
  // WPEngine staging.
172
  fs_ends_with( $subdomain, '.staging.wpengine.com' ) ||
173
+ fs_ends_with( $subdomain, '.dev.wpengine.com' ) ||
174
  // Pantheon
175
  ( fs_ends_with($subdomain, 'pantheonsite.io') &&
176
  (fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-'))) ||
177
  // Cloudways
178
  fs_ends_with( $subdomain, '.cloudwaysapps.com' ) ||
179
  // Kinsta
180
+ (fs_ends_with($subdomain, '.kinsta.com') && fs_starts_with($subdomain, 'staging-')) ||
181
+ // DesktopServer
182
+ fs_ends_with( $subdomain, '.dev.cc' )
183
  );
184
  }
185
 
vendor/freemius/wordpress-sdk/includes/entities/class-fs-user.php CHANGED
@@ -31,6 +31,13 @@
31
  */
32
  public $is_verified;
33
  /**
 
 
 
 
 
 
 
34
  * @var string|null
35
  */
36
  public $customer_id;
@@ -56,6 +63,16 @@
56
  return ( isset( $this->is_verified ) && true === $this->is_verified );
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
59
  static function get_type() {
60
  return 'user';
61
  }
31
  */
32
  public $is_verified;
33
  /**
34
+ * @author Leo Fajardo (@leorw)
35
+ * @since 2.3.0
36
+ *
37
+ * @var bool
38
+ */
39
+ public $is_beta;
40
+ /**
41
  * @var string|null
42
  */
43
  public $customer_id;
63
  return ( isset( $this->is_verified ) && true === $this->is_verified );
64
  }
65
 
66
+ /**
67
+ * @author Leo Fajardo (@leorw)
68
+ * @since 2.3.0
69
+ *
70
+ * @return bool
71
+ */
72
+ function is_beta() {
73
+ return ( isset( $this->is_beta ) && true === $this->is_beta );
74
+ }
75
+
76
  static function get_type() {
77
  return 'user';
78
  }
vendor/freemius/wordpress-sdk/includes/fs-core-functions.php CHANGED
@@ -127,6 +127,9 @@
127
 
128
  if ( ! function_exists( 'fs_request_get' ) ) {
129
  /**
 
 
 
130
  * @param string $key
131
  * @param mixed $def
132
  * @param string|bool $type Since 1.2.1.7 - when set to 'get' will look for the value passed via querystring, when
@@ -140,6 +143,10 @@
140
  $type = strtolower( $type );
141
  }
142
 
 
 
 
 
143
  switch ( $type ) {
144
  case 'post':
145
  $value = isset( $_POST[ $key ] ) ? $_POST[ $key ] : $def;
@@ -163,17 +170,39 @@
163
  }
164
 
165
  if ( ! function_exists( 'fs_request_get_bool' ) ) {
 
 
 
 
 
 
 
 
 
 
166
  function fs_request_get_bool( $key, $def = false ) {
167
- if ( ! isset( $_REQUEST[ $key ] ) ) {
 
 
168
  return $def;
169
  }
170
 
171
- if ( 1 == $_REQUEST[ $key ] || 'true' === strtolower( $_REQUEST[ $key ] ) ) {
172
- return true;
173
- }
 
 
 
 
 
 
 
174
 
175
- if ( 0 == $_REQUEST[ $key ] || 'false' === strtolower( $_REQUEST[ $key ] ) ) {
176
- return false;
 
 
 
177
  }
178
 
179
  return $def;
127
 
128
  if ( ! function_exists( 'fs_request_get' ) ) {
129
  /**
130
+ * A helper method to fetch GET/POST user input with an optional default value when the input is not set.
131
+ * @author Vova Feldman (@svovaf)
132
+ *
133
  * @param string $key
134
  * @param mixed $def
135
  * @param string|bool $type Since 1.2.1.7 - when set to 'get' will look for the value passed via querystring, when
143
  $type = strtolower( $type );
144
  }
145
 
146
+ /**
147
+ * Note to WordPress.org Reviewers:
148
+ * This is a helper method to fetch GET/POST user input with an optional default value when the input is not set. The actual sanitization is done in the scope of the function's usage.
149
+ */
150
  switch ( $type ) {
151
  case 'post':
152
  $value = isset( $_POST[ $key ] ) ? $_POST[ $key ] : $def;
170
  }
171
 
172
  if ( ! function_exists( 'fs_request_get_bool' ) ) {
173
+ /**
174
+ * A helper method to fetch GET/POST user boolean input with an optional default value when the input is not set.
175
+ *
176
+ * @author Vova Feldman (@svovaf)
177
+ *
178
+ * @param string $key
179
+ * @param bool $def
180
+ *
181
+ * @return bool|mixed
182
+ */
183
  function fs_request_get_bool( $key, $def = false ) {
184
+ $val = fs_request_get( $key, null );
185
+
186
+ if ( is_null( $val ) ) {
187
  return $def;
188
  }
189
 
190
+ if ( is_bool( $val ) ) {
191
+ return $val;
192
+ } else if ( is_numeric( $val ) ) {
193
+ if ( 1 == $val ) {
194
+ return true;
195
+ } else if ( 0 == $val ) {
196
+ return false;
197
+ }
198
+ } else if ( is_string( $val ) ) {
199
+ $val = strtolower( $val );
200
 
201
+ if ( 'true' === $val ) {
202
+ return true;
203
+ } else if ( 'false' === $val ) {
204
+ return false;
205
+ }
206
  }
207
 
208
  return $def;
vendor/freemius/wordpress-sdk/includes/fs-plugin-info-dialog.php CHANGED
@@ -31,6 +31,29 @@
31
  */
32
  private $_fs;
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  function __construct( Freemius $fs ) {
35
  $this->_fs = $fs;
36
 
@@ -170,11 +193,14 @@
170
 
171
  $data->fs_missing = ( ! $has_free_plan || $data->wp_org_missing );
172
  } else {
173
- $data->wp_org_missing = false;
 
174
 
 
175
  $current_addon_version = false;
176
  if ( $this->_fs->is_addon_activated( $selected_addon->id ) ) {
177
- $current_addon_version = $this->_fs->get_addon_instance( $selected_addon->id )->get_plugin_version();
 
178
  } else if ( $this->_fs->is_addon_installed( $selected_addon->id ) ) {
179
  $addon_plugin_data = get_plugin_data(
180
  ( WP_PLUGIN_DIR . '/' . $this->_fs->get_addon_basename( $selected_addon->id ) ),
@@ -196,14 +222,45 @@
196
  );
197
 
198
  if ( $has_paid_plan ) {
199
- $data->checkout_link = $this->_fs->checkout_url();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  }
201
- if ( $has_free_plan ) {
 
202
  $data->download_link = $this->_fs->_get_latest_download_local_url( $selected_addon->id );
203
  }
204
 
205
- $data->fs_missing = ( false === $latest );
206
-
 
 
 
 
 
207
 
208
  // Fetch as much as possible info from local files.
209
  $plugin_local_data = $this->_fs->get_plugin_data();
@@ -228,6 +285,8 @@
228
  $data->last_updated = $latest->created;
229
  $data->requires = $latest->requires_platform_version;
230
  $data->tested = $latest->tested_up_to_version;
 
 
231
  } else {
232
  // Add dummy version.
233
  $data->version = '1.0.0';
@@ -267,6 +326,12 @@
267
  $data->has_paid_plan = $has_paid_plan;
268
  $data->is_paid = $has_paid_plan;
269
  $data->is_wp_org_compliant = $selected_addon->is_wp_org_compliant;
 
 
 
 
 
 
270
 
271
  return $data;
272
  }
@@ -332,6 +397,70 @@
332
  return '$' . $price_tag;
333
  }
334
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  /**
336
  * @author Vova Feldman (@svovaf)
337
  * @since 1.1.7
@@ -359,14 +488,32 @@
359
  }
360
  }
361
 
362
- return '<a class="button button-primary fs-checkout-button right" href="' . $this->_fs->addon_checkout_url(
 
 
 
 
 
 
 
363
  $plan->plugin_id,
364
  $plan->pricing[0]->id,
365
  $this->get_billing_cycle( $plan ),
366
- $plan->has_trial()
367
- ) . '" target="_parent">' .
368
- ( ! $plan->has_trial() ?
369
- fs_text_x_inline( 'Purchase', 'verb', 'purchase', $api->slug ) :
 
 
 
 
 
 
 
 
 
 
 
370
  sprintf(
371
  /* translators: %s: N-days trial */
372
  fs_text_inline( 'Start my free %s', 'start-free-x', $api->slug ),
@@ -377,92 +524,305 @@
377
  }
378
 
379
  /**
380
- * @author Vova Feldman (@svovaf)
381
- * @since 2.0.0
382
  *
383
  * @param object $api
384
- * @param bool $is_primary
385
  *
386
- * @return string
387
  */
388
- private function get_download_cta( $api, $is_primary = true ) {
389
- if ( empty( $api->download_link ) ) {
390
- return '';
 
 
 
 
 
 
391
  }
392
 
393
- $status = install_plugin_install_status( $api );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
 
395
- $has_paid_version = $api->has_paid_plan;
 
 
 
 
 
 
 
 
 
 
 
 
396
 
397
- // Hosted on WordPress.org.
398
- switch ( $status['status'] ) {
399
- case 'install':
400
- if ( $api->is_wp_org_compliant ||
401
- ! $this->_fs->is_org_repo_compliant() ||
402
- $this->_fs->is_premium()
403
- ) {
404
- /**
405
- * Allow immediate installation if one of the following:
406
- * 1. WordPress.org add-on.
407
- * 2. The core module is NOT wp.org compliant.
408
- * 3. The core module is running the premium version which is not wp.org compliant.
409
- */
410
- if ( $status['url'] ) {
411
- return $this->get_cta(
412
- ( $has_paid_version ?
413
- fs_esc_html_inline( 'Install Free Version Now', 'install-free-version-now', $api->slug ) :
414
- fs_esc_html_inline( 'Install Now', 'install-now', $api->slug ) ),
415
- $is_primary,
416
- false,
417
- $status['url'],
418
- '_parent'
419
- );
420
  }
421
  }
 
422
 
423
- return $this->get_cta(
424
- ( $has_paid_version ?
425
- fs_esc_html_x_inline( 'Download Latest Free Version', 'as download latest version', 'download-latest-free-version', $api->slug ) :
426
- fs_esc_html_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $api->slug ) ),
427
- $is_primary,
428
- false,
429
- esc_url( $api->download_link )
430
- );
431
- break;
432
- case 'update_available':
433
- if ( $status['url'] ) {
434
- return $this->get_cta(
435
- ( $has_paid_version ?
436
- fs_esc_html_inline( 'Install Free Version Update Now', 'install-free-version-update-now', $api->slug ) :
437
- fs_esc_html_inline( 'Install Update Now', 'install-update-now', $api->slug ) ),
438
- $is_primary,
439
- false,
440
- $status['url'],
441
- '_parent'
442
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
443
  }
444
- break;
445
- case 'newer_installed':
446
- return $this->get_cta(
447
- ( $has_paid_version ?
448
- esc_html( sprintf( fs_text_inline( 'Newer Free Version (%s) Installed', 'newer-free-installed', $api->slug ), $status['version'] ) ) :
449
- esc_html( sprintf( fs_text_inline( 'Newer Version (%s) Installed', 'newer-installed', $api->slug ), $status['version'] ) ) ),
450
- $is_primary,
451
- true
452
- );
453
- break;
454
- case 'latest_installed':
455
- return $this->get_cta(
456
- ( $has_paid_version ?
457
- fs_esc_html_inline( 'Latest Free Version Installed', 'latest-free-installed', $api->slug ) :
458
- fs_esc_html_inline( 'Latest Version Installed', 'latest-installed', $api->slug ) ),
459
- $is_primary,
460
- true
461
- );
462
- break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
  }
464
 
465
- return '';
 
 
 
 
 
 
 
466
  }
467
 
468
  /**
@@ -815,7 +1175,7 @@
815
  }?>;
816
  },
817
  _updateCtaUrl = function (plan, pricing, cycle) {
818
- $('.plugin-information-pricing .button, #plugin-information-footer .button.fs-checkout-button').attr('href', _checkoutUrl(plan, pricing, cycle));
819
  };
820
 
821
  $(document).ready(function () {
@@ -902,7 +1262,7 @@
902
  <?php endif ?>
903
  <ul class="fs-licenses">
904
  </ul>
905
- <?php echo $this->get_checkout_cta( $api, $plan, false ) ?>
906
  <div style="clear:both"></div>
907
  <?php if ( $plan->has_trial() ) : ?>
908
  <?php $trial_period = $this->get_trial_period( $plan ) ?>
@@ -1127,16 +1487,123 @@
1127
  echo "</div>\n"; // #plugin-information-scrollable
1128
  echo "<div id='$tab-footer'>\n";
1129
 
1130
- if ( $api->has_paid_plan && ! empty( $api->checkout_link ) ) {
1131
- echo $this->get_checkout_cta( $api );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1132
  }
1133
 
1134
- if ( ! empty( $api->download_link ) ) {
1135
- echo $this->get_download_cta( $api, empty( $api->checkout_link ) );
1136
- }
1137
 
1138
  echo "</div>\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1140
  iframe_footer();
1141
  exit;
1142
  }
31
  */
32
  private $_fs;
33
 
34
+ /**
35
+ * Collection of plugin installation, update, download, activation, and purchase actions. This is used in
36
+ * populating the actions dropdown list when there are at least 2 actions. If there's only 1 action, a button
37
+ * is used instead.
38
+ *
39
+ * @author Leo Fajardo (@leorw)
40
+ * @since 2.3.0
41
+ *
42
+ * @var string[]
43
+ */
44
+ private $actions;
45
+
46
+ /**
47
+ * Contains plugin status information that is used to determine which actions should be part of the actions
48
+ * dropdown list.
49
+ *
50
+ * @author Leo Fajardo (@leorw)
51
+ * @since 2.3.0
52
+ *
53
+ * @var string[]
54
+ */
55
+ private $status;
56
+
57
  function __construct( Freemius $fs ) {
58
  $this->_fs = $fs;
59
 
193
 
194
  $data->fs_missing = ( ! $has_free_plan || $data->wp_org_missing );
195
  } else {
196
+ $data->has_purchased_license = false;
197
+ $data->wp_org_missing = false;
198
 
199
+ $fs_addon = null;
200
  $current_addon_version = false;
201
  if ( $this->_fs->is_addon_activated( $selected_addon->id ) ) {
202
+ $fs_addon = $this->_fs->get_addon_instance( $selected_addon->id );
203
+ $current_addon_version = $fs_addon->get_plugin_version();
204
  } else if ( $this->_fs->is_addon_installed( $selected_addon->id ) ) {
205
  $addon_plugin_data = get_plugin_data(
206
  ( WP_PLUGIN_DIR . '/' . $this->_fs->get_addon_basename( $selected_addon->id ) ),
222
  );
223
 
224
  if ( $has_paid_plan ) {
225
+ $blog_id = fs_request_get( 'fs_blog_id' );
226
+ $has_valid_blog_id = is_numeric( $blog_id );
227
+
228
+ if ( $has_valid_blog_id ) {
229
+ switch_to_blog( $blog_id );
230
+ }
231
+
232
+ $data->checkout_link = $this->_fs->checkout_url(
233
+ WP_FS__PERIOD_ANNUALLY,
234
+ false,
235
+ array(),
236
+ ( $has_valid_blog_id ? false : null )
237
+ );
238
+
239
+ if ( $has_valid_blog_id ) {
240
+ restore_current_blog();
241
+ }
242
+
243
+ if ( is_object( $fs_addon ) ) {
244
+ $data->has_purchased_license = $fs_addon->has_active_valid_license();
245
+ } else {
246
+ $account_addons = $this->_fs->get_account_addons();
247
+ if ( ! empty( $account_addons ) && in_array( $selected_addon->id, $account_addons ) ) {
248
+ $data->has_purchased_license = true;
249
+ }
250
+ }
251
  }
252
+
253
+ if ( $has_free_plan || $data->has_purchased_license ) {
254
  $data->download_link = $this->_fs->_get_latest_download_local_url( $selected_addon->id );
255
  }
256
 
257
+ $data->fs_missing = (
258
+ false === $latest &&
259
+ (
260
+ empty( $selected_addon->premium_releases_count ) ||
261
+ ! ( $selected_addon->premium_releases_count > 0 )
262
+ )
263
+ );
264
 
265
  // Fetch as much as possible info from local files.
266
  $plugin_local_data = $this->_fs->get_plugin_data();
285
  $data->last_updated = $latest->created;
286
  $data->requires = $latest->requires_platform_version;
287
  $data->tested = $latest->tested_up_to_version;
288
+ } else if ( ! empty( $current_addon_version ) ) {
289
+ $data->version = $current_addon_version;
290
  } else {
291
  // Add dummy version.
292
  $data->version = '1.0.0';
326
  $data->has_paid_plan = $has_paid_plan;
327
  $data->is_paid = $has_paid_plan;
328
  $data->is_wp_org_compliant = $selected_addon->is_wp_org_compliant;
329
+ $data->premium_slug = $selected_addon->premium_slug;
330
+ $data->addon_id = $selected_addon->id;
331
+
332
+ if ( ! isset( $data->has_purchased_license ) ) {
333
+ $data->has_purchased_license = false;
334
+ }
335
 
336
  return $data;
337
  }
397
  return '$' . $price_tag;
398
  }
399
 
400
+ /**
401
+ * @author Leo Fajardo (@leorw)
402
+ * @since 2.3.0
403
+ *
404
+ * @param object $api
405
+ * @param FS_Plugin_Plan $plan
406
+ *
407
+ * @return string
408
+ */
409
+ private function get_actions_dropdown( $api, $plan = null ) {
410
+ $this->actions = isset( $this->actions ) ?
411
+ $this->actions :
412
+ $this->get_plugin_actions( $api );
413
+
414
+ $actions = $this->actions;
415
+
416
+ $checkout_cta = $this->get_checkout_cta( $api, $plan );
417
+ if ( ! empty( $checkout_cta ) ) {
418
+ /**
419
+ * If there's no license yet, make the checkout button the main CTA. Otherwise, make it the last item in
420
+ * the actions dropdown.
421
+ *
422
+ * @author Leo Fajardo (@leorw)
423
+ * @since 2.3.0
424
+ */
425
+ if ( ! $api->has_purchased_license ) {
426
+ array_unshift( $actions, $checkout_cta );
427
+ } else {
428
+ $actions[] = $checkout_cta;
429
+ }
430
+ }
431
+
432
+ if ( empty( $actions ) ) {
433
+ return '';
434
+ }
435
+
436
+ $total_actions = count( $actions );
437
+ if ( 1 === $total_actions ) {
438
+ return $actions[0];
439
+ }
440
+
441
+ ob_start();
442
+
443
+ ?>
444
+ <div class="fs-cta fs-dropdown">
445
+ <div class="button-group">
446
+ <?php
447
+ // This should NOT be sanitized as the $actions are HTML buttons already.
448
+ echo $actions[0] ?>
449
+ <div class="button button-primary fs-dropdown-arrow-button">
450
+ <span class="fs-dropdown-arrow"></span>
451
+ <ul class="fs-dropdown-list" style="display: none">
452
+ <?php for ( $i = 1; $i < $total_actions; $i ++ ) : ?>
453
+ <li><?php echo str_replace( 'button button-primary', '', $actions[ $i ] ) ?></li>
454
+ <?php endfor ?>
455
+ </ul>
456
+ </div>
457
+ </div>
458
+ </div>
459
+ <?php
460
+
461
+ return ob_get_clean();
462
+ }
463
+
464
  /**
465
  * @author Vova Feldman (@svovaf)
466
  * @since 1.1.7
488
  }
489
  }
490
 
491
+ $blog_id = fs_request_get( 'fs_blog_id' );
492
+ $has_valid_blog_id = is_numeric( $blog_id );
493
+
494
+ if ( $has_valid_blog_id ) {
495
+ switch_to_blog( $blog_id );
496
+ }
497
+
498
+ $addon_checkout_url = $this->_fs->addon_checkout_url(
499
  $plan->plugin_id,
500
  $plan->pricing[0]->id,
501
  $this->get_billing_cycle( $plan ),
502
+ $plan->has_trial(),
503
+ ( $has_valid_blog_id ? false : null )
504
+ );
505
+
506
+ if ( $has_valid_blog_id ) {
507
+ restore_current_blog();
508
+ }
509
+
510
+ return '<a class="button button-primary fs-checkout-button right" href="' . $addon_checkout_url . '" target="_parent">' .
511
+ esc_html( ! $plan->has_trial() ?
512
+ (
513
+ $api->has_purchased_license ?
514
+ fs_text_inline( 'Purchase More', 'purchase-more', $api->slug ) :
515
+ fs_text_x_inline( 'Purchase', 'verb', 'purchase', $api->slug )
516
+ ) :
517
  sprintf(
518
  /* translators: %s: N-days trial */
519
  fs_text_inline( 'Start my free %s', 'start-free-x', $api->slug ),
524
  }
525
 
526
  /**
527
+ * @author Leo Fajardo (@leorw)
528
+ * @since 2.3.0
529
  *
530
  * @param object $api
 
531
  *
532
+ * @return string[]
533
  */
534
+ private function get_plugin_actions( $api ) {
535
+ $this->status = isset( $this->status ) ?
536
+ $this->status :
537
+ install_plugin_install_status( $api );
538
+
539
+ $is_update_available = ( 'update_available' === $this->status['status'] );
540
+
541
+ if ( $is_update_available && empty( $this->status['url'] ) ) {
542
+ return array();
543
  }
544
 
545
+ $blog_id = fs_request_get( 'fs_blog_id' );
546
+
547
+ $active_plugins_directories_map = Freemius::get_active_plugins_directories_map( $blog_id );
548
+
549
+ $actions = array();
550
+
551
+ $is_addon_activated = $this->_fs->is_addon_activated( $api->slug );
552
+ $fs_addon = null;
553
+
554
+ $is_free_installed = null;
555
+ $is_premium_installed = null;
556
+
557
+ $has_installed_version = ( 'install' !== $this->status['status'] );
558
+
559
+ if ( ! $api->has_paid_plan ) {
560
+ /**
561
+ * Free-only add-on.
562
+ *
563
+ * @author Leo Fajardo (@leorw)
564
+ * @since 2.3.0
565
+ */
566
+ $is_free_installed = $has_installed_version;
567
+ $is_premium_installed = false;
568
+ } else if ( ! $api->has_free_plan ) {
569
+ /**
570
+ * Premium-only add-on.
571
+ *
572
+ * @author Leo Fajardo (@leorw)
573
+ * @since 2.3.0
574
+ */
575
+ $is_free_installed = false;
576
+ $is_premium_installed = $has_installed_version;
577
+ } else {
578
+ /**
579
+ * Freemium add-on.
580
+ *
581
+ * @author Leo Fajardo (@leorw)
582
+ * @since 2.3.0
583
+ */
584
+ if ( ! $has_installed_version ) {
585
+ $is_free_installed = false;
586
+ $is_premium_installed = false;
587
+ } else {
588
+ $fs_addon = $is_addon_activated ?
589
+ $this->_fs->get_addon_instance( $api->slug ) :
590
+ null;
591
+
592
+ if ( is_object( $fs_addon ) ) {
593
+ if ( $fs_addon->is_premium() ) {
594
+ $is_premium_installed = true;
595
+ } else {
596
+ $is_free_installed = true;
597
+ }
598
+ }
599
 
600
+ if ( is_null( $is_free_installed ) ) {
601
+ $is_free_installed = file_exists( fs_normalize_path( WP_PLUGIN_DIR . "/{$api->slug}/{$api->slug}.php" ) );
602
+ if ( ! $is_free_installed ) {
603
+ /**
604
+ * Check if there's a plugin installed in a directory named `$api->slug`.
605
+ *
606
+ * @author Leo Fajardo (@leorw)
607
+ * @since 2.3.0
608
+ */
609
+ $installed_plugins = get_plugins( '/' . $api->slug );
610
+ $is_free_installed = ( ! empty( $installed_plugins ) );
611
+ }
612
+ }
613
 
614
+ if ( is_null( $is_premium_installed ) ) {
615
+ $is_premium_installed = file_exists( fs_normalize_path( WP_PLUGIN_DIR . "/{$api->premium_slug}/{$api->slug}.php" ) );
616
+ if ( ! $is_premium_installed ) {
617
+ /**
618
+ * Check if there's a plugin installed in a directory named `$api->premium_slug`.
619
+ *
620
+ * @author Leo Fajardo (@leorw)
621
+ * @since 2.3.0
622
+ */
623
+ $installed_plugins = get_plugins( '/' . $api->premium_slug );
624
+ $is_premium_installed = ( ! empty( $installed_plugins ) );
 
 
 
 
 
 
 
 
 
 
 
 
625
  }
626
  }
627
+ }
628
 
629
+ $has_installed_version = ( $is_free_installed || $is_premium_installed );
630
+ }
631
+
632
+ $this->status['is_free_installed'] = $is_free_installed;
633
+ $this->status['is_premium_installed'] = $is_premium_installed;
634
+
635
+ $can_install_free_version = false;
636
+ $can_install_free_version_update = false;
637
+ $can_download_free_version = false;
638
+ $can_activate_free_version = false;
639
+ $can_install_premium_version = false;
640
+ $can_install_premium_version_update = false;
641
+ $can_download_premium_version = false;
642
+ $can_activate_premium_version = false;
643
+
644
+ if ( ! $api->has_purchased_license ) {
645
+ if ( $api->has_free_plan ) {
646
+ if ( $has_installed_version ) {
647
+ if ( $is_update_available ) {
648
+ $can_install_free_version_update = true;
649
+ } else if ( ! $is_premium_installed && ! isset( $active_plugins_directories_map[ dirname( $this->status['file'] ) ] ) ) {
650
+ $can_activate_free_version = true;
651
+ }
652
+ } else {
653
+ if (
654
+ $this->_fs->is_premium() ||
655
+ ! $this->_fs->is_org_repo_compliant() ||
656
+ $api->is_wp_org_compliant
657
+ ) {
658
+ $can_install_free_version = true;
659
+ } else {
660
+ $can_download_free_version = true;
661
+ }
662
  }
663
+ }
664
+ } else {
665
+ if ( ! is_object( $fs_addon ) && $is_addon_activated ) {
666
+ $fs_addon = $this->_fs->get_addon_instance( $api->slug );
667
+ }
668
+
669
+ $can_download_premium_version = true;
670
+
671
+ if ( ! isset( $active_plugins_directories_map[ dirname( $this->status['file'] ) ] ) ) {
672
+ if ( $is_premium_installed ) {
673
+ $can_activate_premium_version = ( ! $is_addon_activated || ! $fs_addon->is_premium() );
674
+ } else if ( $is_free_installed ) {
675
+ $can_activate_free_version = ( ! $is_addon_activated );
676
+ }
677
+ }
678
+
679
+ if ( $this->_fs->is_premium() || ! $this->_fs->is_org_repo_compliant() ) {
680
+ if ( $is_update_available ) {
681
+ $can_install_premium_version_update = true;
682
+ } else if ( ! $is_premium_installed ) {
683
+ $can_install_premium_version = true;
684
+ }
685
+ }
686
+ }
687
+
688
+ if (
689
+ $can_install_premium_version ||
690
+ $can_install_premium_version_update
691
+ ) {
692
+ if ( is_numeric( $blog_id ) ) {
693
+ /**
694
+ * Replace the network status URL with a blog admin–based status URL if the `Add-Ons` page is loaded
695
+ * from a specific blog admin page (when `fs_blog_id` is valid) in order for plugin installation/update
696
+ * to work.
697
+ *
698
+ * @author Leo Fajardo (@leorw)
699
+ * @since 2.3.0
700
+ */
701
+ $this->status['url'] = self::get_blog_status_url( $blog_id, $this->status['url'], $this->status['status'] );
702
+ }
703
+
704
+ /**
705
+ * Add the `fs_allow_updater_and_dialog` param to the install/update URL so that the add-on can be
706
+ * installed/updated.
707
+ *
708
+ * @author Leo Fajardo (@leorw)
709
+ * @since 2.3.0
710
+ */
711
+ $this->status['url'] = str_replace( '?', '?fs_allow_updater_and_dialog=true&amp;', $this->status['url'] );
712
+ }
713
+
714
+ if ( $can_install_free_version_update || $can_install_premium_version_update ) {
715
+ $actions[] = $this->get_cta(
716
+ ( $can_install_free_version_update ?
717
+ fs_esc_html_inline( 'Install Free Version Update Now', 'install-free-version-update-now', $api->slug ) :
718
+ fs_esc_html_inline( 'Install Update Now', 'install-update-now', $api->slug ) ),
719
+ true,
720
+ false,
721
+ $this->status['url'],
722
+ '_parent'
723
+ );
724
+ } else if ( $can_install_free_version || $can_install_premium_version ) {
725
+ $actions[] = $this->get_cta(
726
+ ( $can_install_free_version ?
727
+ fs_esc_html_inline( 'Install Free Version Now', 'install-free-version-now', $api->slug ) :
728
+ fs_esc_html_inline( 'Install Now', 'install-now', $api->slug ) ),
729
+ true,
730
+ false,
731
+ $this->status['url'],
732
+ '_parent'
733
+ );
734
+ }
735
+
736
+ $download_latest_action = '';
737
+
738
+ if (
739
+ ! empty( $api->download_link ) &&
740
+ ( $can_download_free_version || $can_download_premium_version )
741
+ ) {
742
+ $download_latest_action = $this->get_cta(
743
+ ( $can_download_free_version ?
744
+ fs_esc_html_x_inline( 'Download Latest Free Version', 'as download latest version', 'download-latest-free-version', $api->slug ) :
745
+ fs_esc_html_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $api->slug ) ),
746
+ true,
747
+ false,
748
+ esc_url( $api->download_link )
749
+ );
750
+ }
751
+
752
+ if ( ! $can_activate_free_version && ! $can_activate_premium_version ) {
753
+ if ( ! empty( $download_latest_action ) ) {
754
+ $actions[] = $download_latest_action;
755
+ }
756
+ } else {
757
+ $activate_action = sprintf(
758
+ '<a class="button button-primary edit" href="%s" title="%s" target="_parent">%s</a>',
759
+ wp_nonce_url( ( is_numeric( $blog_id ) ? trailingslashit( get_admin_url( $blog_id ) ) : '' ) . 'plugins.php?action=activate&amp;plugin=' . $this->status['file'], 'activate-plugin_' . $this->status['file'] ),
760
+ fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $api->slug ),
761
+ $can_activate_free_version ?
762
+ fs_text_inline( 'Activate Free Version', 'activate-free', $api->slug ) :
763
+ fs_text_inline( 'Activate', 'activate', $api->slug )
764
+ );
765
+
766
+ if ( ! $can_download_premium_version && ! empty( $download_latest_action ) ) {
767
+ $actions[] = $download_latest_action;
768
+
769
+ $download_latest_action = '';
770
+ }
771
+
772
+ if ( $can_install_premium_version || $can_install_premium_version_update ) {
773
+ if ( $can_download_premium_version && ! empty( $download_latest_action ) ) {
774
+ $actions[] = $download_latest_action;
775
+
776
+ $download_latest_action = '';
777
+ }
778
+
779
+ $actions[] = $activate_action;
780
+ } else {
781
+ array_unshift( $actions, $activate_action );
782
+ }
783
+
784
+ if ( ! empty ($download_latest_action ) ) {
785
+ $actions[] = $download_latest_action;
786
+ }
787
+ }
788
+
789
+ return $actions;
790
+ }
791
+
792
+ /**
793
+ * Rebuilds the status URL based on the admin URL.
794
+ *
795
+ * @author Leo Fajardo (@leorw)
796
+ * @since 2.3.0
797
+ *
798
+ * @param int $blog_id
799
+ * @param string $network_status_url
800
+ * @param string $status
801
+ *
802
+ * @return string
803
+ */
804
+ private static function get_blog_status_url( $blog_id, $network_status_url, $status ) {
805
+ if ( ! in_array( $status, array( 'install', 'update_available' ) ) ) {
806
+ return $network_status_url;
807
+ }
808
+
809
+ $action = ( 'install' === $status ) ?
810
+ 'install-plugin' :
811
+ 'upgrade-plugin';
812
+
813
+ $query = parse_url( $network_status_url, PHP_URL_QUERY );
814
+ if ( empty( $query ) ) {
815
+ return $network_status_url;
816
  }
817
 
818
+ parse_str( html_entity_decode( $query ), $url_params );
819
+ if ( empty( $url_params ) || ! isset( $url_params['plugin'] ) ) {
820
+ return $network_status_url;
821
+ }
822
+
823
+ $plugin = $url_params['plugin'];
824
+
825
+ return wp_nonce_url( get_admin_url( $blog_id,"update.php?action={$action}&plugin={$plugin}"), "{$action}_{$plugin}");
826
  }
827
 
828
  /**
1175
  }?>;
1176
  },
1177
  _updateCtaUrl = function (plan, pricing, cycle) {
1178
+ $('.plugin-information-pricing .fs-checkout-button, #plugin-information-footer .fs-checkout-button').attr('href', _checkoutUrl(plan, pricing, cycle));
1179
  };
1180
 
1181
  $(document).ready(function () {
1262
  <?php endif ?>
1263
  <ul class="fs-licenses">
1264
  </ul>
1265
+ <?php echo $this->get_actions_dropdown( $api, $plan ) ?>
1266
  <div style="clear:both"></div>
1267
  <?php if ( $plan->has_trial() ) : ?>
1268
  <?php $trial_period = $this->get_trial_period( $plan ) ?>
1487
  echo "</div>\n"; // #plugin-information-scrollable
1488
  echo "<div id='$tab-footer'>\n";
1489
 
1490
+ if (
1491
+ ! empty( $api->download_link ) &&
1492
+ ! empty( $this->status ) &&
1493
+ in_array( $this->status['status'], array( 'newer_installed', 'latest_installed' ) )
1494
+ ) {
1495
+ if ( 'newer_installed' === $this->status['status'] ) {
1496
+ echo $this->get_cta(
1497
+ ( $this->status['is_premium_installed'] ?
1498
+ esc_html( sprintf( fs_text_inline( 'Newer Version (%s) Installed', 'newer-installed', $api->slug ), $this->status['version'] ) ) :
1499
+ esc_html( sprintf( fs_text_inline( 'Newer Free Version (%s) Installed', 'newer-free-installed', $api->slug ), $this->status['version'] ) ) ),
1500
+ false,
1501
+ true
1502
+ );
1503
+ } else {
1504
+ echo $this->get_cta(
1505
+ ( $this->status['is_premium_installed'] ?
1506
+ fs_esc_html_inline( 'Latest Version Installed', 'latest-installed', $api->slug ) :
1507
+ fs_esc_html_inline( 'Latest Free Version Installed', 'latest-free-installed', $api->slug ) ),
1508
+ false,
1509
+ true
1510
+ );
1511
+ }
1512
  }
1513
 
1514
+ echo $this->get_actions_dropdown( $api, null );
 
 
1515
 
1516
  echo "</div>\n";
1517
+ ?>
1518
+ <script type="text/javascript">
1519
+ ( function( $, undef ) {
1520
+ var $dropdowns = $( '.fs-dropdown' );
1521
+
1522
+ $( '#plugin-information' )
1523
+ .click( function( evt ) {
1524
+ var $target = $( evt.target );
1525
+
1526
+ if (
1527
+ $target.hasClass( 'fs-dropdown-arrow-button' ) ||
1528
+ ( 0 !== $target.parents( '.fs-dropdown-arrow-button' ).length )
1529
+ ) {
1530
+ var $dropdown = $target.parents( '.fs-dropdown' ),
1531
+ isActive = $dropdown.hasClass( 'active' );
1532
+
1533
+ if ( ! isActive ) {
1534
+ /**
1535
+ * Close the other dropdown if it's active.
1536
+ *
1537
+ * @author Leo Fajardo (@leorw)
1538
+ * @since 2.3.0
1539
+ */
1540
+ $( '.fs-dropdown.active' ).each( function() {
1541
+ toggleDropdown( $( this ), false );
1542
+ } );
1543
+ }
1544
+
1545
+ /**
1546
+ * Toggle the current dropdown.
1547
+ *
1548
+ * @author Leo Fajardo (@leorw)
1549
+ * @since 2.3.0
1550
+ */
1551
+ toggleDropdown( $dropdown, ! isActive );
1552
+
1553
+ return true;
1554
+ }
1555
+
1556
+ /**
1557
+ * Close all dropdowns.
1558
+ *
1559
+ * @author Leo Fajardo (@leorw)
1560
+ * @since 2.3.0
1561
+ */
1562
+ toggleDropdown( $( this ).find( '.fs-dropdown' ), false );
1563
+ });
1564
+
1565
+ if ( 0 !== $dropdowns.length ) {
1566
+ /**
1567
+ * Add the `up` class so that the bottom dropdown's content will be shown above its buttons.
1568
+ *
1569
+ * @author Leo Fajardo (@leorw)
1570
+ * @since 2.3.0
1571
+ */
1572
+ $( '#plugin-information-footer' ).find( '.fs-dropdown' ).addClass( 'up' );
1573
+ }
1574
+
1575
+ /**
1576
+ * Returns the default state of the dropdown arrow button and hides the dropdown list.
1577
+ *
1578
+ * @author Leo Fajardo (@leorw)
1579
+ * @since 2.3.0
1580
+ *
1581
+ * @param {Object} [$dropdown]
1582
+ * @param {Boolean} [state]
1583
+ */
1584
+ function toggleDropdown( $dropdown, state ) {
1585
+ if ( undef === $dropdown ) {
1586
+ var $activeDropdown = $dropdowns.find( '.active' );
1587
+ if ( 0 !== $activeDropdown.length ) {
1588
+ $dropdown = $activeDropdown;
1589
+ }
1590
+ }
1591
 
1592
+ if ( undef === $dropdown ) {
1593
+ return;
1594
+ }
1595
+
1596
+ if ( undef === state ) {
1597
+ state = false;
1598
+ }
1599
+
1600
+ $dropdown.toggleClass( 'active', state );
1601
+ $dropdown.find( '.fs-dropdown-list' ).toggle( state );
1602
+ $dropdown.find( '.fs-dropdown-arrow-button' ).toggleClass( 'active', state );
1603
+ }
1604
+ } )( jQuery );
1605
+ </script>
1606
+ <?php
1607
  iframe_footer();
1608
  exit;
1609
  }
vendor/freemius/wordpress-sdk/includes/i18n.php CHANGED
@@ -465,8 +465,8 @@
465
  'deactivate-plugin-title' => _fs_text( 'That\'s exhausting, please deactivate' ),
466
  'deactivate-plugin-desc' => _fs_text( 'We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future.' ),
467
  'fix-request-sent-message' => _fs_text( '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.' ),
468
- 'server-blocking-access' => _fs_x( 'Your server is blocking the access to Freemius\' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s',
469
- '%1s - plugin title, %2s - API domain' ),
470
  'wrong-authentication-param-message' => _fs_text( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.' ),
471
  #endregion Connectivity Issues
472
  #region Change Owner
465
  'deactivate-plugin-title' => _fs_text( 'That\'s exhausting, please deactivate' ),
466
  'deactivate-plugin-desc' => _fs_text( 'We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future.' ),
467
  'fix-request-sent-message' => _fs_text( '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.' ),
468
+ 'server-blocking-access' => _fs_x( 'Your server is blocking the access to Freemius\' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s',
469
+ '%1$s - plugin title, %2$s - API domain' ),
470
  'wrong-authentication-param-message' => _fs_text( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.' ),
471
  #endregion Connectivity Issues
472
  #region Change Owner
vendor/freemius/wordpress-sdk/includes/managers/class-fs-admin-menu-manager.php CHANGED
@@ -204,9 +204,10 @@
204
  // ) );
205
  }
206
 
207
- $this->_first_time_path = $this->get_option( $menu, 'first-path', false );
208
- if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
209
- $this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
 
210
  }
211
  }
212
  }
@@ -236,17 +237,27 @@
236
  }
237
 
238
 
239
- /**
240
- * Get the path of the page the user should be forwarded to after first activation.
241
- *
242
- * @author Vova Feldman (@svovaf)
243
- * @since 1.1.3
244
- *
245
- * @return string
246
- */
247
- function get_first_time_path() {
248
- return $this->_first_time_path;
249
- }
 
 
 
 
 
 
 
 
 
 
250
 
251
  /**
252
  * Check if plugin's menu item is part of a custom top level menu.
204
  // ) );
205
  }
206
 
207
+ $first_path = $this->get_option( $menu, 'first-path', false );
208
+
209
+ if ( ! empty( $first_path ) && is_string( $first_path ) ) {
210
+ $this->_first_time_path = $first_path;
211
  }
212
  }
213
  }
237
  }
238
 
239
 
240
+ /**
241
+ * Get the path of the page the user should be forwarded to after first activation.
242
+ *
243
+ * @author Vova Feldman (@svovaf)
244
+ * @since 1.1.3
245
+ *
246
+ * @param bool $is_network Since 2.4.5
247
+ *
248
+ * @return string
249
+ */
250
+ function get_first_time_path( $is_network = false ) {
251
+ if ( empty ( $this->_first_time_path ) ) {
252
+ return $this->_first_time_path;
253
+ }
254
+
255
+ if ( $is_network ) {
256
+ return network_admin_url( $this->_first_time_path );
257
+ } else {
258
+ return admin_url( $this->_first_time_path );
259
+ }
260
+ }
261
 
262
  /**
263
  * Check if plugin's menu item is part of a custom top level menu.
vendor/freemius/wordpress-sdk/includes/managers/class-fs-option-manager.php CHANGED
@@ -143,17 +143,24 @@
143
 
144
  $cache_group = $this->get_cache_group();
145
 
146
- if ( ! WP_FS__DEBUG_SDK ) {
 
 
 
 
 
147
 
148
  $this->_options = wp_cache_get(
149
  $option_name,
150
  $cache_group
151
  );
 
 
152
  }
153
 
154
  $cached = true;
155
 
156
- if ( empty( $this->_options ) ) {
157
  if ( $this->_is_network_storage ) {
158
  $this->_options = get_site_option( $option_name );
159
  } else if ( $this->_blog_id > 0 ) {
@@ -487,4 +494,4 @@
487
  }
488
 
489
  #endregion
490
- }
143
 
144
  $cache_group = $this->get_cache_group();
145
 
146
+ if ( WP_FS__DEBUG_SDK ) {
147
+
148
+ // Don't use cache layer in DEBUG mode.
149
+ $load_options = empty( $this->_options );
150
+
151
+ } else {
152
 
153
  $this->_options = wp_cache_get(
154
  $option_name,
155
  $cache_group
156
  );
157
+
158
+ $load_options = ( false === $this->_options );
159
  }
160
 
161
  $cached = true;
162
 
163
+ if ( $load_options ) {
164
  if ( $this->_is_network_storage ) {
165
  $this->_options = get_site_option( $option_name );
166
  } else if ( $this->_blog_id > 0 ) {
494
  }
495
 
496
  #endregion
497
+ }
vendor/freemius/wordpress-sdk/languages/freemius-da_DK.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-da_DK.po CHANGED
@@ -1,793 +1,918 @@
1
- # Copyright (C) 2019 freemius
2
- # This file is distributed under the same license as the freemius package.
3
- # Translators:
4
- # Joachim Jensen, 2016-2018
5
- # Lars Koudal, 2018
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: 2018-11-25 07:22+0000\n"
12
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
- "Language: da_DK\n"
 
 
 
 
 
 
 
 
14
  "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
 
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "MIME-Version: 1.0\n"
19
  "X-Poedit-Basepath: ..\n"
20
  "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php:1688
26
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
- msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- #: includes/class-freemius.php:1690
30
  msgid "Error"
31
  msgstr "Fejl"
32
 
33
- #: includes/class-freemius.php:2011
34
  msgid "I found a better %s"
35
  msgstr "Jeg fandt et bedre %s"
36
 
37
- #: includes/class-freemius.php:2013
38
  msgid "What's the %s's name?"
39
  msgstr "Hvad er navnet på %s?"
40
 
41
- #: includes/class-freemius.php:2019
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
44
 
45
- #: includes/class-freemius.php:2021
46
  msgid "Deactivation"
47
  msgstr "Deaktivering"
48
 
49
- #: includes/class-freemius.php:2022
50
  msgid "Theme Switch"
51
  msgstr "Temaskift"
52
 
53
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "Andet"
56
 
57
- #: includes/class-freemius.php:2039
58
  msgid "I no longer need the %s"
59
  msgstr "Jeg har ikke længere brug for %s"
60
 
61
- #: includes/class-freemius.php:2046
62
  msgid "I only needed the %s for a short period"
63
  msgstr "Jeg behøvede kun %s i en kort periode"
64
 
65
- #: includes/class-freemius.php:2052
66
  msgid "The %s broke my site"
67
  msgstr "%s ødelagde min webside"
68
 
69
- #: includes/class-freemius.php:2059
70
  msgid "The %s suddenly stopped working"
71
  msgstr "%s stoppede pludseligt med at virke"
72
 
73
- #: includes/class-freemius.php:2069
74
  msgid "I can't pay for it anymore"
75
  msgstr "Jeg kan ikke længere betale for det"
76
 
77
- #: includes/class-freemius.php:2071
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "Hvilken pris ville du foretrække at betale?"
80
 
81
- #: includes/class-freemius.php:2077
82
  msgid "I don't like to share my information with you"
83
  msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
84
 
85
- #: includes/class-freemius.php:2098
86
  msgid "The %s didn't work"
87
  msgstr "%s virkede ikke"
88
 
89
- #: includes/class-freemius.php:2108
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
92
 
93
- #: includes/class-freemius.php:2116
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
96
 
97
- #: includes/class-freemius.php:2118
98
  msgid "What feature?"
99
  msgstr "Hvilken feature?"
100
 
101
- #: includes/class-freemius.php:2122
102
  msgid "The %s is not working"
103
  msgstr "%s virker ikke"
104
 
105
- #: includes/class-freemius.php:2124
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
- msgstr "Kindly share what didn't work so we can fix it for future users..."
108
 
109
- #: includes/class-freemius.php:2128
110
  msgid "It's not what I was looking for"
111
  msgstr "Det er ikke, hvad jeg søgte"
112
 
113
- #: includes/class-freemius.php:2130
114
  msgid "What you've been looking for?"
115
  msgstr "Hvad har du ledt efter?"
116
 
117
- #: includes/class-freemius.php:2134
118
  msgid "The %s didn't work as expected"
119
  msgstr "%s virkede ikke som forventet"
120
 
121
- #: includes/class-freemius.php:2136
122
  msgid "What did you expect?"
123
  msgstr "Hvad forventede du?"
124
 
125
- #: includes/class-freemius.php2942, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "Freemius Debug"
128
 
129
- #: includes/class-freemius.php:3670
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
132
 
133
- #: includes/class-freemius.php:3672
134
- 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."
 
 
135
  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."
136
 
137
- #: includes/class-freemius.php:3679
138
- 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."
139
- 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."
 
 
 
 
 
140
 
141
- #: includes/class-freemius.php:3784
142
  msgid "Yes - do your thing"
143
  msgstr "Ja - fortsæt bare"
144
 
145
- #: includes/class-freemius.php:3789
146
  msgid "No - just deactivate"
147
  msgstr "Nej - bare deaktiver"
148
 
149
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
150
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
151
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
152
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
153
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
154
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
155
- #: includes/class-freemius.php19001, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "Ups"
159
 
160
- #: includes/class-freemius.php:3903
161
- 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."
 
 
 
162
  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."
163
 
164
- #: includes/class-freemius.php:4340
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s virker ikke uden %s."
168
 
169
- #: includes/class-freemius.php:4341
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "%s virker ikke uden pluginnet."
173
 
174
- #: includes/class-freemius.php4487, includes/class-freemius.php4512,
175
- #: includes/class-freemius.php:17953
176
- msgid "Unexpected API error. Please contact the %s's author with the following error."
177
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
 
 
178
 
179
- #: includes/class-freemius.php:5130
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium-versionen af %s blev aktiveret."
182
 
183
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
184
  msgctxt ""
 
 
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
- #: includes/class-freemius.php:5157
189
  msgid "You have a %s license."
190
  msgstr "Du har en %s licens."
191
 
192
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
193
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
194
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
195
- #: includes/class-freemius.php:17707
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "Yee-haw"
199
 
200
- #: includes/class-freemius.php:5425
201
- 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."
202
- 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."
 
 
 
203
 
204
- #: includes/class-freemius.php:5429
205
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
- msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
 
 
207
 
208
- #: includes/class-freemius.php5438, templates/add-ons.php103,
209
- #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "Mere information om %s"
212
 
213
- #: includes/class-freemius.php:5439
214
  msgid "Purchase License"
215
  msgstr "Køb licens"
216
 
217
- #: includes/class-freemius.php6372, templates/connect.php:163
218
- 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."
219
- 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."
 
 
220
 
221
- #: includes/class-freemius.php:6376
222
  msgid "start the trial"
223
  msgstr "start prøveperioden"
224
 
225
- #: includes/class-freemius.php6377, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "færdiggør installeringen"
228
 
229
- #: includes/class-freemius.php:6490
230
  msgid "You are just one step away - %s"
231
  msgstr "Du mangler kun ét skridt - %s"
232
 
233
- #: includes/class-freemius.php:6493
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "Færdiggør aktivering af \"%s\" nu"
237
 
238
- #: includes/class-freemius.php:6571
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "Vi har foretaget nogle rettelser til %s, %s"
241
 
242
- #: includes/class-freemius.php:6575
243
  msgid "Opt in to make \"%s\" better!"
244
- msgstr "Opt in to make \"%s\" better!"
245
 
246
- #: includes/class-freemius.php:7003
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "Opgraderingen af %s blev fuldendt."
249
 
250
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
251
- #: includes/class-fs-plugin-updater.php1081,
252
- #: includes/class-fs-plugin-updater.php1088,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Tilføjelse"
256
 
257
- #: includes/class-freemius.php8927, templates/debug.php359,
258
- #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "Plugin"
261
 
262
- #: includes/class-freemius.php8928, templates/debug.php359,
263
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
264
  msgid "Theme"
265
  msgstr "Tema"
266
 
267
- #: includes/class-freemius.php:11412
 
 
 
 
 
268
  msgid "Invalid site details collection."
269
- msgstr "Invalid site details collection."
270
 
271
- #: includes/class-freemius.php:11532
272
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
 
 
273
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
274
 
275
- #: includes/class-freemius.php:11534
276
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
 
 
277
  msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
278
 
279
- #: includes/class-freemius.php:11808
280
  msgid "Account is pending activation."
281
  msgstr "Konto afventer aktivering."
282
 
283
- #: includes/class-freemius.php11920,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
- msgstr "Buy a license now"
287
 
288
- #: includes/class-freemius.php11932,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
- msgstr "Renew your license now"
292
 
293
- #: includes/class-freemius.php:11936
294
  msgid "%s to access version %s security & feature updates, and support."
295
- msgstr "%s to access version %s security & feature updates, and support."
296
 
297
- #: includes/class-freemius.php:14319
298
  msgid "%s activation was successfully completed."
299
  msgstr "Aktivering af %s blev gennemført."
300
 
301
- #: includes/class-freemius.php:14333
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "Din konto blev aktiveret med planen %s."
304
 
305
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
306
  msgid "Your trial has been successfully started."
307
  msgstr "Din prøveperiode er begyndt."
308
 
309
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
310
- #: includes/class-freemius.php:15028
311
  msgid "Couldn't activate %s."
312
  msgstr "Kunne ikke aktivere %s."
313
 
314
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
315
- #: includes/class-freemius.php:15029
316
  msgid "Please contact us with the following message:"
317
  msgstr "Kontakt os venligst med følgende besked:"
318
 
319
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
320
  msgid "Upgrade"
321
  msgstr "Opgrader"
322
 
323
- #: includes/class-freemius.php:15384
324
  msgid "Start Trial"
325
  msgstr "Start prøveperiode"
326
 
327
- #: includes/class-freemius.php:15386
328
  msgid "Pricing"
329
  msgstr "Priser"
330
 
331
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
332
  msgid "Affiliation"
333
  msgstr "Affiliation"
334
 
335
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
336
- #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "Konto"
339
 
340
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "Kontakt os"
344
 
345
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
346
- #: includes/class-freemius.php19849, templates/account.php100,
347
- #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Tilføjelser"
350
 
351
- #: includes/class-freemius.php:15541
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
- msgstr "&#x2190;"
355
 
356
- #: includes/class-freemius.php:15541
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
- msgstr "&#x27a4;"
360
 
361
- #: includes/class-freemius.php15543, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "Priser"
365
 
366
- #: includes/class-freemius.php15756,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "Supportforum"
370
 
371
- #: includes/class-freemius.php:16542
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
374
 
375
- #: includes/class-freemius.php:16543
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "Sådan"
379
 
380
- #: includes/class-freemius.php:17168
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
- msgstr "Your %s Add-on plan was successfully upgraded."
383
 
384
- #: includes/class-freemius.php:17170
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
387
 
388
- #: includes/class-freemius.php:17173
389
  msgid "Download the latest version"
390
  msgstr "Download den seneste version"
391
 
392
- #: includes/class-freemius.php:17259
393
- msgctxt "%1s - plugin title, %2s - API domain"
394
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
 
396
 
397
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
398
- #: includes/class-freemius.php:17755
399
  msgid "Error received from the server:"
400
  msgstr "Fejl modtager fra serveren:"
401
 
402
- #: includes/class-freemius.php:17272
403
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
- msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
 
 
405
 
406
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
407
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
408
  msgctxt ""
 
 
409
  msgid "Hmm"
410
  msgstr "Hmm"
411
 
412
- #: includes/class-freemius.php:17467
413
- 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."
414
- 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."
 
 
415
 
416
- #: includes/class-freemius.php17468, templates/account.php102,
417
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "Prøveperiode"
421
 
422
- #: includes/class-freemius.php:17473
423
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
 
 
424
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
425
 
426
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
427
  msgid "Please contact us here"
428
  msgstr "Kontakt os her"
429
 
430
- #: includes/class-freemius.php:17487
 
 
 
 
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "Din plan er blevet opgraderet."
433
 
434
- #: includes/class-freemius.php:17505
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "Din plan er blevet ændret til %s."
437
 
438
- #: includes/class-freemius.php:17521
439
- msgid "Your license has expired. You can still continue using the free %s forever."
 
440
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
441
 
442
- #: includes/class-freemius.php:17523
443
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
 
 
444
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
445
 
446
- #: includes/class-freemius.php:17531
447
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
 
 
448
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
449
 
450
- #: includes/class-freemius.php:17544
451
- 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."
 
 
 
452
  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."
453
 
454
- #: includes/class-freemius.php:17567
455
- msgid "Your free trial has expired. You can still continue using all our free features."
 
 
456
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
457
 
458
- #: includes/class-freemius.php:17569
459
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
- msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
 
 
461
 
462
- #: includes/class-freemius.php:17674
463
  msgid "It looks like the license could not be activated."
464
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
465
 
466
- #: includes/class-freemius.php:17704
467
  msgid "Your license was successfully activated."
468
  msgstr "Din licens er blevet aktiveret."
469
 
470
- #: includes/class-freemius.php:17730
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
473
 
474
- #: includes/class-freemius.php:17754
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
477
 
478
- #: includes/class-freemius.php:17782
479
- msgid "Your license was successfully deactivated, you are back to the %s plan."
 
480
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
481
 
482
- #: includes/class-freemius.php:17783
483
  msgid "O.K"
484
  msgstr "O.K"
485
 
486
- #: includes/class-freemius.php:17836
487
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
- msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
 
 
489
 
490
- #: includes/class-freemius.php:17845
491
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
- msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
 
 
493
 
494
- #: includes/class-freemius.php:17887
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "Du benytter allerede %s under en prøveperiode."
497
 
498
- #: includes/class-freemius.php:17898
499
  msgid "You already utilized a trial before."
500
  msgstr "Du har allerede brugt din prøveperiode."
501
 
502
- #: includes/class-freemius.php:17912
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
505
 
506
- #: includes/class-freemius.php:17923
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "Plan %s understøtter ikke en prøveperiode."
509
 
510
- #: includes/class-freemius.php:17934
511
  msgid "None of the %s's plans supports a trial period."
512
- msgstr "None of the %s's plans supports a trial period."
513
 
514
- #: includes/class-freemius.php:17984
515
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
 
 
516
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
517
 
518
- #: includes/class-freemius.php:18020
519
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
- msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
 
 
521
 
522
- #: includes/class-freemius.php:18039
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
525
 
526
- #: includes/class-freemius.php:18346
527
  msgid "Version %s was released."
528
  msgstr "Version %s er blevet udgivet."
529
 
530
- #: includes/class-freemius.php:18346
531
  msgid "Please download %s."
532
  msgstr "Download venligst %s."
533
 
534
- #: includes/class-freemius.php:18353
535
  msgid "the latest %s version here"
536
  msgstr "den seneste version af %s her"
537
 
538
- #: includes/class-freemius.php:18358
539
  msgid "New"
540
  msgstr "Ny"
541
 
542
- #: includes/class-freemius.php:18363
543
  msgid "Seems like you got the latest release."
544
  msgstr "Det ser ud til, at du har den seneste udgivelse."
545
 
546
- #: includes/class-freemius.php:18364
547
  msgid "You are all good!"
548
  msgstr "Det var det!"
549
 
550
- #: includes/class-freemius.php:18632
551
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
- msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
 
 
553
 
554
- #: includes/class-freemius.php:18769
555
  msgid "Site successfully opted in."
556
  msgstr "Websted er tilmeldt."
557
 
558
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
559
  msgid "Awesome"
560
  msgstr "Sejt"
561
 
562
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
563
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
 
 
564
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
565
 
566
- #: includes/class-freemius.php:18787
567
  msgid "Thank you!"
568
  msgstr "Mange tak!"
569
 
570
- #: includes/class-freemius.php:18794
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
573
 
574
- #: includes/class-freemius.php:18923
575
- 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."
576
- 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."
 
 
 
 
577
 
578
- #: includes/class-freemius.php:18929
579
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
- msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
 
 
581
 
582
- #: includes/class-freemius.php:18934
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s er den nye ejer af kontoen."
585
 
586
- #: includes/class-freemius.php:18936
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "Tillykke"
590
 
591
- #: includes/class-freemius.php:18956
592
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
- msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
 
 
594
 
595
- #: includes/class-freemius.php:18957
596
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
 
 
598
 
599
- #: includes/class-freemius.php:18964
600
  msgid "Change Ownership"
601
  msgstr "Skift ejerskab"
602
 
603
- #: includes/class-freemius.php:18972
604
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
- msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
 
 
606
 
607
- #: includes/class-freemius.php:18984
608
  msgid "Please provide your full name."
609
  msgstr "Indtast venligst dit fulde navn."
610
 
611
- #: includes/class-freemius.php:18989
612
  msgid "Your name was successfully updated."
613
  msgstr "Dit navn er blevet opdateret."
614
 
615
- #: includes/class-freemius.php:19050
616
  msgid "You have successfully updated your %s."
617
  msgstr "Opdatering af %s blev gennemført."
618
 
619
- #: includes/class-freemius.php:19190
620
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
- msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
 
 
622
 
623
- #: includes/class-freemius.php:19191
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "Se her"
627
 
628
- #: includes/class-freemius.php:19621
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "Hey"
632
 
633
- #: includes/class-freemius.php:19621
634
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
 
 
635
  msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
636
 
637
- #: includes/class-freemius.php:19629
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
640
 
641
- #: includes/class-freemius.php:19630
642
  msgid "No credit card required"
643
  msgstr "Betalingskort ikke påkrævet"
644
 
645
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "Start gratis prøveperiode"
649
 
650
- #: includes/class-freemius.php:19714
651
- 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!"
652
- 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!"
 
 
653
 
654
- #: includes/class-freemius.php:19723
655
  msgid "Learn more"
656
  msgstr "Læs mere"
657
 
658
- #: includes/class-freemius.php19873, templates/account.php406,
659
- #: templates/account.php509, templates/connect.php171,
660
- #: templates/connect.php421, templates/forms/license-activation.php24,
661
- #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "Aktiver licens"
664
 
665
- #: includes/class-freemius.php19874, templates/account.php469,
666
- #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "Skift licens"
669
 
670
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Frameld"
673
 
674
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Tilmeld"
679
 
680
- #: includes/class-freemius.php:20187
681
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
 
 
683
 
684
- #: includes/class-freemius.php:20195
685
  msgid "Activate %s features"
686
- msgstr "Activate %s features"
687
 
688
- #: includes/class-freemius.php:20208
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
691
 
692
- #: includes/class-freemius.php:20212
693
  msgid "Download the latest %s version"
694
  msgstr "Download den seneste version af %s"
695
 
696
- #: includes/class-freemius.php:20216
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "Upload og aktiver den downloadede version"
699
 
700
- #: includes/class-freemius.php:20218
701
  msgid "How to upload and activate?"
702
  msgstr "Upload og aktivering, hvordan?"
703
 
704
- #: includes/class-freemius.php:20352
705
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
- msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
 
 
707
 
708
- #: includes/class-freemius.php:20513
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
711
 
712
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
713
- #: includes/class-fs-plugin-updater.php1060,
714
- #: includes/class-fs-plugin-updater.php:1074
715
  msgid "Invalid module ID."
716
  msgstr "Ugyldigt modul-ID."
717
 
718
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
719
  msgid "Premium version already active."
720
  msgstr "Premium version allerede aktiv."
721
 
722
- #: includes/class-freemius.php:20539
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
725
 
726
- #: includes/class-freemius.php:20546
727
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
- msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
 
 
729
 
730
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium tilføjelse er allerede installeret."
733
 
734
- #: includes/class-freemius.php:20909
735
  msgid "View paid features"
736
  msgstr "Vis betalte features"
737
 
738
- #: includes/class-freemius.php:21229
739
  msgid "Thank you so much for using %s and its add-ons!"
740
- msgstr "Thank you so much for using %s and its add-ons!"
741
 
742
- #: includes/class-freemius.php:21230
743
  msgid "Thank you so much for using %s!"
744
  msgstr "Tak fordi du benytter %s!"
745
 
746
- #: includes/class-freemius.php:21236
747
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
 
 
748
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
749
 
750
- #: includes/class-freemius.php:21240
751
  msgid "Thank you so much for using our products!"
752
  msgstr "Mange tak for at benytte vores produkter!"
753
 
754
- #: includes/class-freemius.php:21241
755
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
 
 
756
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
757
 
758
- #: includes/class-freemius.php:21260
759
  msgid "%s and its add-ons"
760
  msgstr "%s og tilføjelser"
761
 
762
- #: includes/class-freemius.php:21269
763
  msgid "Products"
764
  msgstr "Produkter"
765
 
766
- #: includes/class-freemius.php21276, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "Ja"
769
 
770
- #: includes/class-freemius.php21277, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
773
 
774
- #: includes/class-freemius.php21278, templates/connect.php:278
775
  msgid "No"
776
  msgstr "Nej"
777
 
778
- #: includes/class-freemius.php21280, templates/connect.php:280
779
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
 
 
780
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
781
 
782
- #: includes/class-freemius.php:21290
783
- 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 🙂"
784
- msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
 
 
 
785
 
786
- #: includes/class-freemius.php21292, templates/connect.php:287
787
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
 
 
788
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
789
 
790
- #: includes/class-freemius.php:21574
791
  msgid "License key is empty."
792
  msgstr "Licensnøglen er tom."
793
 
@@ -799,630 +924,709 @@ msgstr "Forny licens"
799
  #: includes/class-fs-plugin-updater.php189,
800
  #: templates/forms/premium-versions-upgrade-handler.php:58
801
  msgid "Buy license"
802
- msgstr "Buy license"
803
 
804
- #: includes/class-fs-plugin-updater.php:278
 
805
  msgid "There is a %s of %s available."
806
- msgstr "There is a %s of %s available."
807
 
808
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
809
  msgid "new version"
810
- msgstr "new version"
811
 
812
- #: includes/class-fs-plugin-updater.php:305
813
  msgid "Important Upgrade Notice:"
814
- msgstr "Important Upgrade Notice:"
815
 
816
- #: includes/class-fs-plugin-updater.php:1125
817
  msgid "Installing plugin: %s"
818
  msgstr "Installerer plugin: %s"
819
 
820
- #: includes/class-fs-plugin-updater.php:1166
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
- msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
 
824
- #: includes/class-fs-plugin-updater.php:1348
825
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
- msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
 
 
827
 
828
- #: includes/fs-plugin-info-dialog.php369,
829
- #: templates/account/partials/addon.php:292
 
 
 
 
830
  msgctxt "verb"
831
  msgid "Purchase"
832
  msgstr "Køb"
833
 
834
- #: includes/fs-plugin-info-dialog.php:372
835
  msgid "Start my free %s"
836
  msgstr "Start min gratis %s"
837
 
838
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
839
  msgid "Install Free Version Now"
840
  msgstr "Installer gratis version nu"
841
 
842
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
843
- #: templates/account/partials/addon.php272,
844
- #: templates/account/partials/addon.php:322
 
845
  msgid "Install Now"
846
  msgstr "Installer nu"
847
 
848
- #: includes/fs-plugin-info-dialog.php:425
849
  msgctxt "as download latest version"
850
  msgid "Download Latest Free Version"
851
  msgstr "Download seneste gratis version"
852
 
853
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
854
- #: templates/account/partials/addon.php:21
855
  msgctxt "as download latest version"
856
  msgid "Download Latest"
857
  msgstr "Download seneste"
858
 
859
- #: includes/fs-plugin-info-dialog.php:436
860
- msgid "Install Free Version Update Now"
861
- msgstr "Installer opdatering til gratis version nu"
862
-
863
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
864
- msgid "Install Update Now"
865
- msgstr "Installer opdatering nu"
866
-
867
- #: includes/fs-plugin-info-dialog.php:448
868
- msgid "Newer Free Version (%s) Installed"
869
- msgstr "Nyere gratis version (%s) installeret"
870
-
871
- #: includes/fs-plugin-info-dialog.php:449
872
- msgid "Newer Version (%s) Installed"
873
- msgstr "Nyere version (%s) installeret"
874
 
875
- #: includes/fs-plugin-info-dialog.php:457
876
- msgid "Latest Free Version Installed"
877
- msgstr "Seneste gratis version installeret"
878
 
879
- #: includes/fs-plugin-info-dialog.php:458
880
- msgid "Latest Version Installed"
881
- msgstr "Seneste version installeret"
 
882
 
883
- #: includes/fs-plugin-info-dialog.php:613
884
  msgctxt "Plugin installer section title"
885
  msgid "Description"
886
  msgstr "Beskrivelse"
887
 
888
- #: includes/fs-plugin-info-dialog.php:614
889
  msgctxt "Plugin installer section title"
890
  msgid "Installation"
891
  msgstr "Installering"
892
 
893
- #: includes/fs-plugin-info-dialog.php:615
894
  msgctxt "Plugin installer section title"
895
  msgid "FAQ"
896
  msgstr "FAQ"
897
 
898
- #: includes/fs-plugin-info-dialog.php616,
899
  #: templates/plugin-info/description.php:55
900
  msgid "Screenshots"
901
  msgstr "Skærmbilleder"
902
 
903
- #: includes/fs-plugin-info-dialog.php:617
904
  msgctxt "Plugin installer section title"
905
  msgid "Changelog"
906
  msgstr "Ændringslog"
907
 
908
- #: includes/fs-plugin-info-dialog.php:618
909
  msgctxt "Plugin installer section title"
910
  msgid "Reviews"
911
  msgstr "Anmeldelser"
912
 
913
- #: includes/fs-plugin-info-dialog.php:619
914
  msgctxt "Plugin installer section title"
915
  msgid "Other Notes"
916
  msgstr "Andre noter"
917
 
918
- #: includes/fs-plugin-info-dialog.php:634
919
  msgctxt "Plugin installer section title"
920
  msgid "Features & Pricing"
921
  msgstr "Funktioner og priser"
922
 
923
- #: includes/fs-plugin-info-dialog.php:644
924
  msgid "Plugin Install"
925
  msgstr "Plugin-installering"
926
 
927
- #: includes/fs-plugin-info-dialog.php:716
928
  msgctxt "e.g. Professional Plan"
929
  msgid "%s Plan"
930
  msgstr "%s Plan"
931
 
932
- #: includes/fs-plugin-info-dialog.php:742
933
  msgctxt "e.g. the best product"
934
  msgid "Best"
935
  msgstr "Bedste"
936
 
937
- #: includes/fs-plugin-info-dialog.php748,
938
- #: includes/fs-plugin-info-dialog.php:768
939
  msgctxt "as every month"
940
  msgid "Monthly"
941
  msgstr "Månedligt"
942
 
943
- #: includes/fs-plugin-info-dialog.php:751
944
  msgctxt "as once a year"
945
  msgid "Annual"
946
  msgstr "Årligt"
947
 
948
- #: includes/fs-plugin-info-dialog.php:754
949
  msgid "Lifetime"
950
  msgstr "Livstid"
951
 
952
- #: includes/fs-plugin-info-dialog.php768,
953
- #: includes/fs-plugin-info-dialog.php770,
954
- #: includes/fs-plugin-info-dialog.php:772
955
  msgctxt "e.g. billed monthly"
956
  msgid "Billed %s"
957
  msgstr "Faktureret %s"
958
 
959
- #: includes/fs-plugin-info-dialog.php:770
960
  msgctxt "as once a year"
961
  msgid "Annually"
962
  msgstr "Årligt"
963
 
964
- #: includes/fs-plugin-info-dialog.php:772
965
  msgctxt "as once a year"
966
  msgid "Once"
967
  msgstr "Engangsbeløb"
968
 
969
- #: includes/fs-plugin-info-dialog.php:778
970
  msgid "Single Site License"
971
- msgstr "Single Site License"
972
 
973
- #: includes/fs-plugin-info-dialog.php:780
974
  msgid "Unlimited Licenses"
975
  msgstr "Ubegrænsede licenser"
976
 
977
- #: includes/fs-plugin-info-dialog.php:782
978
  msgid "Up to %s Sites"
979
  msgstr "Op til %s websteder"
980
 
981
- #: includes/fs-plugin-info-dialog.php792,
982
  #: templates/plugin-info/features.php:82
983
  msgctxt "as monthly period"
984
  msgid "mo"
985
  msgstr "md"
986
 
987
- #: includes/fs-plugin-info-dialog.php799,
988
  #: templates/plugin-info/features.php:80
989
  msgctxt "as annual period"
990
  msgid "year"
991
  msgstr "år"
992
 
993
- #: includes/fs-plugin-info-dialog.php:853
994
  msgctxt "noun"
995
  msgid "Price"
996
  msgstr "Pris"
997
 
998
- #: includes/fs-plugin-info-dialog.php:901
999
  msgid "Save %s"
1000
  msgstr "Spar %s"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php:911
1003
  msgid "No commitment for %s - cancel anytime"
1004
  msgstr "Ingen bindinger ved %s - annuller når som helst"
1005
 
1006
- #: includes/fs-plugin-info-dialog.php:914
1007
  msgid "After your free %s, pay as little as %s"
1008
  msgstr "Efter din gratis %s er prisen kun %s"
1009
 
1010
- #: includes/fs-plugin-info-dialog.php:925
1011
  msgid "Details"
1012
  msgstr "Detaljer"
1013
 
1014
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1015
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1016
- #: templates/account/partials/addon.php:32
1017
  msgctxt "product version"
1018
  msgid "Version"
1019
  msgstr "Version"
1020
 
1021
- #: includes/fs-plugin-info-dialog.php:936
1022
  msgctxt "as the plugin author"
1023
  msgid "Author"
1024
  msgstr "Forfatter"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:943
1027
  msgid "Last Updated"
1028
  msgstr "Senest opdateret"
1029
 
1030
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1031
  msgctxt "x-ago"
1032
  msgid "%s ago"
1033
  msgstr "%s siden"
1034
 
1035
- #: includes/fs-plugin-info-dialog.php:957
1036
  msgid "Requires WordPress Version"
1037
  msgstr "Kræver WordPress-version"
1038
 
1039
- #: includes/fs-plugin-info-dialog.php:958
1040
  msgid "%s or higher"
1041
  msgstr "%s eller højere"
1042
 
1043
- #: includes/fs-plugin-info-dialog.php:965
1044
  msgid "Compatible up to"
1045
  msgstr "Kompatibel op til"
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:973
1048
  msgid "Downloaded"
1049
  msgstr "Downloadet"
1050
 
1051
- #: includes/fs-plugin-info-dialog.php:977
1052
  msgid "%s time"
1053
  msgstr "%s gang"
1054
 
1055
- #: includes/fs-plugin-info-dialog.php:979
1056
  msgid "%s times"
1057
  msgstr "%s gange"
1058
 
1059
- #: includes/fs-plugin-info-dialog.php:989
1060
  msgid "WordPress.org Plugin Page"
1061
  msgstr "WordPress.org Plugin-side"
1062
 
1063
- #: includes/fs-plugin-info-dialog.php:997
1064
  msgid "Plugin Homepage"
1065
  msgstr "Plugin-websted"
1066
 
1067
- #: includes/fs-plugin-info-dialog.php1005,
1068
- #: includes/fs-plugin-info-dialog.php:1087
1069
  msgid "Donate to this plugin"
1070
  msgstr "Donér til dette plugin"
1071
 
1072
- #: includes/fs-plugin-info-dialog.php:1012
1073
  msgid "Average Rating"
1074
  msgstr "Gennemsnitlig vurdering"
1075
 
1076
- #: includes/fs-plugin-info-dialog.php:1019
1077
  msgid "based on %s"
1078
  msgstr "baseret på %s"
1079
 
1080
- #: includes/fs-plugin-info-dialog.php:1023
1081
  msgid "%s rating"
1082
  msgstr "%s vurdering"
1083
 
1084
- #: includes/fs-plugin-info-dialog.php:1025
1085
  msgid "%s ratings"
1086
  msgstr "%s vurderinger"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php:1040
1089
  msgid "%s star"
1090
  msgstr "%s stjerne"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php:1042
1093
  msgid "%s stars"
1094
  msgstr "%s stjerner"
1095
 
1096
- #: includes/fs-plugin-info-dialog.php:1053
1097
  msgid "Click to see reviews that provided a rating of %s"
1098
- msgstr "Click to see reviews that provided a rating of %s"
1099
 
1100
- #: includes/fs-plugin-info-dialog.php:1066
1101
  msgid "Contributors"
1102
  msgstr "Bidragsydere"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php1095,
1105
- #: includes/fs-plugin-info-dialog.php:1097
1106
  msgid "Warning"
1107
  msgstr "Advarsel"
1108
 
1109
- #: includes/fs-plugin-info-dialog.php:1095
1110
- msgid "This plugin has not been tested with your current version of WordPress."
 
1111
  msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1112
 
1113
- #: includes/fs-plugin-info-dialog.php:1097
1114
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1115
- msgstr "This plugin has not been marked as compatible with your version of WordPress."
 
 
1116
 
1117
- #: includes/fs-plugin-info-dialog.php:1116
1118
  msgid "Paid add-on must be deployed to Freemius."
1119
- msgstr "Paid add-on must be deployed to Freemius."
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1117
1122
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1123
- msgstr "Add-on must be deployed to WordPress.org or Freemius."
1124
 
1125
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1126
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  #: templates/account/partials/site.php:295
1128
  msgid "Downgrading your plan"
1129
- msgstr "Downgrading your plan"
1130
 
1131
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1132
- #: templates/account/partials/addon.php23,
1133
  #: templates/account/partials/site.php:296
1134
  msgid "Cancelling the subscription"
1135
- msgstr "Cancelling the subscription"
1136
 
1137
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1138
  #. subscription'
1139
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1140
- #: templates/account/partials/addon.php25,
1141
- #: templates/account/partials/site.php:298
1142
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1144
 
1145
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1146
- #: templates/account/partials/addon.php26,
1147
  #: templates/account/partials/site.php:299
1148
- 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."
1149
- 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."
 
 
 
 
1150
 
1151
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1152
- #: templates/account/partials/addon.php:27
1153
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
- msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
 
 
1155
 
1156
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1157
- #: templates/account/partials/addon.php28,
1158
  #: templates/account/partials/site.php:300
1159
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
 
 
1161
 
1162
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1163
- #: templates/account/partials/addon.php29,
1164
  #: templates/account/partials/site.php:301
1165
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
- msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
 
 
1167
 
1168
  #. translators: %s: Plan title (e.g. "Professional")
1169
- #: templates/account.php90,
1170
  #: templates/account/partials/activate-license-button.php31,
1171
- #: templates/account/partials/addon.php:31
1172
  msgid "Activate %s Plan"
1173
  msgstr "Aktiver %s plan"
1174
 
1175
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1176
- #: templates/account.php93, templates/account/partials/addon.php34,
1177
  #: templates/account/partials/site.php:275
1178
  msgid "Auto renews in %s"
1179
  msgstr "Auto-fornyer om %s"
1180
 
1181
  #. translators: %s: Time period (e.g. Expires in "2 months")
1182
- #: templates/account.php95, templates/account/partials/addon.php36,
1183
  #: templates/account/partials/site.php:277
1184
  msgid "Expires in %s"
1185
  msgstr "Udløber om %s"
1186
 
1187
- #: templates/account.php96, templates/account/partials/addon.php:37
1188
  msgctxt "as synchronize license"
1189
  msgid "Sync License"
1190
  msgstr "Synkroniser licens"
1191
 
1192
- #: templates/account.php97, templates/account/partials/addon.php:38
1193
  msgid "Cancel Trial"
1194
  msgstr "Annuller prøveperiode"
1195
 
1196
- #: templates/account.php98, templates/account/partials/addon.php:39
1197
  msgid "Change Plan"
1198
  msgstr "Skift plan"
1199
 
1200
- #: templates/account.php99, templates/account/partials/addon.php:40
1201
  msgctxt "verb"
1202
  msgid "Upgrade"
1203
  msgstr "Opgrader"
1204
 
1205
- #: templates/account.php101, templates/account/partials/addon.php42,
1206
  #: templates/account/partials/site.php:302
1207
  msgctxt "verb"
1208
  msgid "Downgrade"
1209
  msgstr "Nedgrader"
1210
 
1211
- #: templates/account.php103, templates/add-ons.php130,
1212
  #: templates/plugin-info/features.php72,
1213
- #: templates/account/partials/addon.php44,
1214
  #: templates/account/partials/site.php:31
1215
  msgid "Free"
1216
  msgstr "Gratis"
1217
 
1218
- #: templates/account.php104, templates/account/partials/addon.php:45
1219
- msgid "Activate"
1220
- msgstr "Aktiver"
1221
-
1222
- #: templates/account.php105, templates/debug.php371,
1223
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1224
- #: templates/account/partials/addon.php:46
1225
  msgctxt "as product pricing plan"
1226
  msgid "Plan"
1227
  msgstr "Plan"
1228
 
1229
- #: templates/account.php:158
 
 
 
 
1230
  msgid "Free Trial"
1231
  msgstr "Gratis prøveperiode"
1232
 
1233
- #: templates/account.php:169
1234
  msgid "Account Details"
1235
  msgstr "Kontodetaljer"
1236
 
1237
- #: templates/account.php:179
1238
- 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?"
1239
- 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?"
1240
 
1241
- #: templates/account.php:181
1242
- 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?"
1243
- 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?"
 
 
 
 
1244
 
1245
- #: templates/account.php:184
 
 
 
 
 
 
1246
  msgid "Delete Account"
1247
  msgstr "Slet konto"
1248
 
1249
- #: templates/account.php196, templates/account/partials/addon.php159,
1250
  #: templates/account/partials/deactivate-license-button.php:35
1251
  msgid "Deactivate License"
1252
  msgstr "Deaktiver licens"
1253
 
1254
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1255
  msgid "Are you sure you want to proceed?"
1256
  msgstr "Er du sikker på, du vil fortsætte?"
1257
 
1258
- #: templates/account.php219, templates/account/partials/addon.php:182
1259
  msgid "Cancel Subscription"
1260
  msgstr "Annuller abonnement"
1261
 
1262
- #: templates/account.php:247
1263
  msgctxt "as synchronize"
1264
  msgid "Sync"
1265
  msgstr "Synkroniser"
1266
 
1267
- #: templates/account.php261, templates/debug.php:487
1268
  msgid "Name"
1269
  msgstr "Navn"
1270
 
1271
- #: templates/account.php267, templates/debug.php:488
1272
  msgid "Email"
1273
  msgstr "E-mail"
1274
 
1275
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1276
  msgid "User ID"
1277
  msgstr "Bruger-ID"
1278
 
1279
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1280
  msgid "Site ID"
1281
  msgstr "Websteds-ID"
1282
 
1283
- #: templates/account.php:285
1284
  msgid "No ID"
1285
  msgstr "Intet ID"
1286
 
1287
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1288
- #: templates/debug.php453, templates/debug.php490,
1289
  #: templates/account/partials/site.php:219
1290
  msgid "Public Key"
1291
  msgstr "Offentlig nøgle"
1292
 
1293
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1294
- #: templates/debug.php491, templates/account/partials/site.php:231
1295
  msgid "Secret Key"
1296
  msgstr "Privat nøgle"
1297
 
1298
- #: templates/account.php:299
1299
  msgctxt "as secret encryption key missing"
1300
  msgid "No Secret"
1301
  msgstr "Ingen privat nøgle"
1302
 
1303
- #: templates/account.php318, templates/account/partials/site.php112,
1304
  #: templates/account/partials/site.php:114
1305
  msgid "Trial"
1306
  msgstr "Prøveperiode"
1307
 
1308
- #: templates/account.php337, templates/debug.php531,
1309
  #: templates/account/partials/site.php:248
1310
  msgid "License Key"
1311
  msgstr "Licensnøgle"
1312
 
1313
- #: templates/account.php:367
 
 
 
 
1314
  msgid "not verified"
1315
  msgstr "ikke verificeret"
1316
 
1317
- #: templates/account.php376, templates/account/partials/addon.php:120
1318
  msgid "Expired"
1319
  msgstr "Udløbet"
1320
 
1321
- #: templates/account.php:428
1322
  msgid "Premium version"
1323
  msgstr "Premium version"
1324
 
1325
- #: templates/account.php:430
1326
  msgid "Free version"
1327
  msgstr "Gratis version"
1328
 
1329
- #: templates/account.php:442
1330
  msgid "Verify Email"
1331
  msgstr "Verificer e-mail"
1332
 
1333
- #: templates/account.php:453
1334
  msgid "Download %s Version"
1335
  msgstr "Download 1%s version"
1336
 
1337
- #: templates/account.php467, templates/account.php649,
1338
  #: templates/account/partials/site.php237,
1339
  #: templates/account/partials/site.php:255
1340
  msgctxt "verb"
1341
  msgid "Show"
1342
  msgstr "Vis"
1343
 
1344
- #: templates/account.php:481
1345
  msgid "What is your %s?"
1346
  msgstr "Angiv venligst %s?"
1347
 
1348
- #: templates/account.php489, templates/account/billing.php:27
1349
  msgctxt "verb"
1350
  msgid "Edit"
1351
  msgstr "Rediger"
1352
 
1353
- #: templates/account.php:502
1354
  msgid "Sites"
1355
  msgstr "Websteder"
1356
 
1357
- #: templates/account.php:513
1358
  msgid "Search by address"
1359
  msgstr "Søg efter adresse"
1360
 
1361
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1362
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1363
- #: templates/debug.php524, templates/debug.php597,
1364
- #: templates/account/payments.php35, templates/debug/logger.php:21
1365
- msgid "ID"
1366
- msgstr "ID"
1367
-
1368
- #: templates/account.php523, templates/debug.php:367
1369
  msgid "Address"
1370
  msgstr "Adresse"
1371
 
1372
- #: templates/account.php:524
1373
  msgid "License"
1374
  msgstr "Licens"
1375
 
1376
- #: templates/account.php:525
1377
  msgid "Plan"
1378
  msgstr "Plan"
1379
 
1380
- #: templates/account.php:573
1381
  msgctxt "as software license"
1382
  msgid "License"
1383
  msgstr "Licens"
1384
 
1385
- #: templates/account.php:643
1386
  msgctxt "verb"
1387
  msgid "Hide"
1388
  msgstr "Skjul"
1389
 
1390
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1391
  msgid "Cancelling %s"
1392
- msgstr "Cancelling %s"
1393
 
1394
- #: templates/account.php686, templates/account.php703,
1395
  #: templates/forms/subscription-cancellation.php27,
1396
- #: templates/forms/deactivation/form.php:117
1397
  msgid "trial"
1398
- msgstr "trial"
1399
 
1400
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1401
  msgid "Cancelling %s..."
1402
- msgstr "Cancelling %s..."
1403
 
1404
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1405
- #: templates/forms/deactivation/form.php:118
1406
  msgid "subscription"
1407
- msgstr "subscription"
 
 
 
 
 
 
1408
 
1409
- #: templates/account.php:718
1410
- 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?"
1411
- 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?"
1412
 
1413
- #: templates/add-ons.php:36
1414
  msgid "Add Ons for %s"
1415
  msgstr "Tilføjelser til %s"
1416
 
1417
- #: templates/add-ons.php:44
1418
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
- msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
 
 
1420
 
1421
- #: templates/add-ons.php:139
1422
- msgid "View details"
1423
- msgstr "Vis detaljer"
 
1424
 
1425
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
 
 
 
 
 
1426
  #: templates/forms/resend-key.php:77
1427
  msgctxt "as close a window"
1428
  msgid "Dismiss"
@@ -1437,24 +1641,29 @@ msgid "Automatic Installation"
1437
  msgstr "Automatisk installering"
1438
 
1439
  #: templates/auto-installation.php:93
1440
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1441
- msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
 
 
 
1442
 
1443
  #: templates/auto-installation.php:104
1444
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1445
- msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
 
 
1446
 
1447
  #: templates/auto-installation.php:109
1448
  msgid "Cancel Installation"
1449
  msgstr "Annuller installering"
1450
 
1451
- #: templates/checkout.php:172
1452
  msgid "Checkout"
1453
  msgstr "Udtjekning"
1454
 
1455
- #: templates/checkout.php:172
1456
  msgid "PCI compliant"
1457
- msgstr "PCI compliant"
1458
 
1459
  #. translators: %s: name (e.g. Hey John,)
1460
  #: templates/connect.php:112
@@ -1474,63 +1683,84 @@ msgstr "Gensend e-mail om aktivering"
1474
  msgid "Thanks %s!"
1475
  msgstr "Tak %s!"
1476
 
1477
- #: templates/connect.php172, templates/forms/license-activation.php:43
1478
  msgid "Agree & Activate License"
1479
  msgstr "Accepter & aktiver licens"
1480
 
1481
  #: templates/connect.php:181
1482
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
 
1483
  msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
1484
 
1485
  #: templates/connect.php:188
1486
- 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."
1487
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
 
 
 
1488
 
1489
  #: templates/connect.php:189
1490
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1491
- msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
 
 
1492
 
1493
  #: templates/connect.php:195
1494
- 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."
1495
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
 
 
 
 
1496
 
1497
  #: templates/connect.php:196
1498
- 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."
1499
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
 
 
 
1500
 
1501
  #: templates/connect.php:230
1502
  msgid "We're excited to introduce the Freemius network-level integration."
1503
- msgstr "We're excited to introduce the Freemius network-level integration."
1504
 
1505
  #: templates/connect.php:233
1506
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1507
- msgstr "During the update process we detected %d site(s) that are still pending license activation."
 
 
1508
 
1509
  #: templates/connect.php:235
1510
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1511
- msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
 
 
1512
 
1513
  #: templates/connect.php:237
1514
  msgid "%s's paid features"
1515
- msgstr "%s's paid features"
1516
 
1517
  #: templates/connect.php:242
1518
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1519
- msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
 
 
1520
 
1521
  #: templates/connect.php:244
1522
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
- msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
 
 
1524
 
1525
- #: templates/connect.php253, templates/forms/license-activation.php:46
1526
  msgid "License key"
1527
  msgstr "Licensnøgle"
1528
 
1529
- #: templates/connect.php256, templates/forms/license-activation.php:19
1530
  msgid "Can't find your license key?"
1531
  msgstr "Kan du ikke finde din licensnøgle?"
1532
 
1533
- #: templates/connect.php315, templates/connect.php630,
1534
  #: templates/forms/deactivation/retry-skip.php:20
1535
  msgctxt "verb"
1536
  msgid "Skip"
@@ -1538,11 +1768,13 @@ msgstr "Spring over"
1538
 
1539
  #: templates/connect.php:318
1540
  msgid "Delegate to Site Admins"
1541
- msgstr "Delegate to Site Admins"
1542
 
1543
  #: templates/connect.php:318
1544
- msgid "If you click it, this decision will be delegated to the sites administrators."
1545
- msgstr "If you click it, this decision will be delegated to the sites administrators."
 
 
1546
 
1547
  #: templates/connect.php:346
1548
  msgid "Your Profile Overview"
@@ -1566,11 +1798,11 @@ msgstr "Admin-meddelelser"
1566
 
1567
  #: templates/connect.php359, templates/connect.php:375
1568
  msgid "Updates, announcements, marketing, no spam"
1569
- msgstr "Updates, announcements, marketing, no spam"
1570
 
1571
  #: templates/connect.php:364
1572
  msgid "Current %s Events"
1573
- msgstr "Current %s Events"
1574
 
1575
  #: templates/connect.php:365
1576
  msgid "Activation, deactivation and uninstall"
@@ -1580,9 +1812,11 @@ msgstr "Aktivering, deaktivering og afinstallering"
1580
  msgid "Newsletter"
1581
  msgstr "Nyhedsbrev"
1582
 
1583
- #: templates/connect.php391, templates/forms/license-activation.php:38
1584
- 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."
1585
- 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."
 
 
1586
 
1587
  #: templates/connect.php:396
1588
  msgid "What permissions are being granted?"
@@ -1592,10 +1826,6 @@ msgstr "Hvilke tilladelser bliver givet?"
1592
  msgid "Don't have a license key?"
1593
  msgstr "Har du ikke en licensnøgle?"
1594
 
1595
- #: templates/connect.php:418
1596
- msgid "Activate Free Version"
1597
- msgstr "Aktiver gratis version"
1598
-
1599
  #: templates/connect.php:420
1600
  msgid "Have a license key?"
1601
  msgstr "Har du en licensnøgle?"
@@ -1606,18 +1836,18 @@ msgstr "Privatlivspolitik"
1606
 
1607
  #: templates/connect.php:430
1608
  msgid "License Agreement"
1609
- msgstr "License Agreement"
1610
 
1611
  #: templates/connect.php:430
1612
  msgid "Terms of Service"
1613
  msgstr "Servicevilkår"
1614
 
1615
- #: templates/connect.php:766
1616
  msgctxt "as in the process of sending an email"
1617
  msgid "Sending email"
1618
  msgstr "Sender e-mail"
1619
 
1620
- #: templates/connect.php:767
1621
  msgctxt "as activating plugin"
1622
  msgid "Activating"
1623
  msgstr "Aktiverer"
@@ -1645,8 +1875,8 @@ msgctxt "as code debugging"
1645
  msgid "Debugging"
1646
  msgstr "Fejlfinding"
1647
 
1648
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1649
- #: templates/debug.php:492
1650
  msgid "Actions"
1651
  msgstr "Handlinger"
1652
 
@@ -1664,7 +1894,7 @@ msgstr "Ryd API-cache"
1664
 
1665
  #: templates/debug.php:79
1666
  msgid "Clear Updates Transients"
1667
- msgstr "Clear Updates Transients"
1668
 
1669
  #: templates/debug.php:86
1670
  msgid "Sync Data From Server"
@@ -1672,7 +1902,7 @@ msgstr "Synkroniser data fra server"
1672
 
1673
  #: templates/debug.php:95
1674
  msgid "Migrate Options to Network"
1675
- msgstr "Migrate Options to Network"
1676
 
1677
  #: templates/debug.php:100
1678
  msgid "Load DB Option"
@@ -1682,197 +1912,197 @@ msgstr "Hent DB-indstilling"
1682
  msgid "Set DB Option"
1683
  msgstr "Sæt DB-indstilling"
1684
 
1685
- #: templates/debug.php:180
1686
  msgid "Key"
1687
  msgstr "Nøgle"
1688
 
1689
- #: templates/debug.php:181
1690
  msgid "Value"
1691
  msgstr "Værdi"
1692
 
1693
- #: templates/debug.php:197
1694
  msgctxt "as software development kit versions"
1695
  msgid "SDK Versions"
1696
  msgstr "SDK-versioner"
1697
 
1698
- #: templates/debug.php:202
1699
  msgid "SDK Path"
1700
  msgstr "SDK-sti"
1701
 
1702
- #: templates/debug.php203, templates/debug.php:242
1703
  msgid "Module Path"
1704
  msgstr "Modul-sti"
1705
 
1706
- #: templates/debug.php:204
1707
  msgid "Is Active"
1708
  msgstr "Er aktiv"
1709
 
1710
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1711
  msgid "Plugins"
1712
  msgstr "Plugins"
1713
 
1714
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1715
  msgid "Themes"
1716
  msgstr "Temaer"
1717
 
1718
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1719
  #: templates/debug/scheduled-crons.php:80
1720
  msgid "Slug"
1721
  msgstr "Kortnavn"
1722
 
1723
- #: templates/debug.php239, templates/debug.php:450
1724
  msgid "Title"
1725
  msgstr "Titel"
1726
 
1727
- #: templates/debug.php:240
1728
  msgctxt "as application program interface"
1729
  msgid "API"
1730
  msgstr "API"
1731
 
1732
- #: templates/debug.php:241
1733
  msgid "Freemius State"
1734
  msgstr "Freemius tilstand"
1735
 
1736
- #: templates/debug.php:245
1737
  msgid "Network Blog"
1738
  msgstr "Netværksblog"
1739
 
1740
- #: templates/debug.php:246
1741
  msgid "Network User"
1742
  msgstr "Netværksbruger"
1743
 
1744
- #: templates/debug.php:283
1745
  msgctxt "as connection was successful"
1746
  msgid "Connected"
1747
  msgstr "Forbundet"
1748
 
1749
- #: templates/debug.php:284
1750
  msgctxt "as connection blocked"
1751
  msgid "Blocked"
1752
  msgstr "Blokeret"
1753
 
1754
- #: templates/debug.php:320
1755
  msgid "Simulate Trial Promotion"
1756
- msgstr "Simulate Trial Promotion"
1757
 
1758
- #: templates/debug.php:332
1759
  msgid "Simulate Network Upgrade"
1760
  msgstr "Simuler netværksopgradering"
1761
 
1762
- #: templates/debug.php:358
1763
  msgid "%s Installs"
1764
  msgstr "%s installeringer"
1765
 
1766
- #: templates/debug.php:360
1767
  msgctxt "like websites"
1768
  msgid "Sites"
1769
  msgstr "Websteder"
1770
 
1771
- #: templates/debug.php366, templates/account/partials/site.php:148
1772
  msgid "Blog ID"
1773
  msgstr "Blog-ID"
1774
 
1775
- #: templates/debug.php431, templates/debug.php509,
1776
- #: templates/account/partials/addon.php:339
1777
  msgctxt "verb"
1778
  msgid "Delete"
1779
  msgstr "Slet"
1780
 
1781
- #: templates/debug.php:445
1782
  msgid "Add Ons of module %s"
1783
  msgstr "Tilføjelser til modul %s"
1784
 
1785
- #: templates/debug.php:482
1786
  msgid "Users"
1787
  msgstr "Brugere"
1788
 
1789
- #: templates/debug.php:489
1790
  msgid "Verified"
1791
  msgstr "Verificeret"
1792
 
1793
- #: templates/debug.php:520
1794
  msgid "%s Licenses"
1795
  msgstr "1%s licenser"
1796
 
1797
- #: templates/debug.php:525
1798
  msgid "Plugin ID"
1799
  msgstr "Plugin-ID"
1800
 
1801
- #: templates/debug.php:527
1802
  msgid "Plan ID"
1803
  msgstr "Plan-ID"
1804
 
1805
- #: templates/debug.php:528
1806
  msgid "Quota"
1807
  msgstr "Kvote"
1808
 
1809
- #: templates/debug.php:529
1810
  msgid "Activated"
1811
  msgstr "Aktiveret"
1812
 
1813
- #: templates/debug.php:530
1814
  msgid "Blocking"
1815
  msgstr "Blokerer"
1816
 
1817
- #: templates/debug.php:532
1818
  msgctxt "as expiration date"
1819
  msgid "Expiration"
1820
  msgstr "Udløber"
1821
 
1822
- #: templates/debug.php:555
1823
  msgid "Debug Log"
1824
  msgstr "Fejlfindingslog"
1825
 
1826
- #: templates/debug.php:559
1827
  msgid "All Types"
1828
  msgstr "Alle typer"
1829
 
1830
- #: templates/debug.php:566
1831
  msgid "All Requests"
1832
  msgstr "Alle forespørgsler"
1833
 
1834
- #: templates/debug.php571, templates/debug.php600,
1835
  #: templates/debug/logger.php:25
1836
  msgid "File"
1837
  msgstr "Fil"
1838
 
1839
- #: templates/debug.php572, templates/debug.php598,
1840
  #: templates/debug/logger.php:23
1841
  msgid "Function"
1842
  msgstr "Funktion"
1843
 
1844
- #: templates/debug.php:573
1845
  msgid "Process ID"
1846
  msgstr "Proces-ID"
1847
 
1848
- #: templates/debug.php:574
1849
  msgid "Logger"
1850
  msgstr "Logger"
1851
 
1852
- #: templates/debug.php575, templates/debug.php599,
1853
  #: templates/debug/logger.php:24
1854
  msgid "Message"
1855
  msgstr "Besked"
1856
 
1857
- #: templates/debug.php:577
1858
  msgid "Filter"
1859
  msgstr "Filter"
1860
 
1861
- #: templates/debug.php:585
1862
  msgid "Download"
1863
  msgstr "Download"
1864
 
1865
- #: templates/debug.php596, templates/debug/logger.php:22
1866
  msgid "Type"
1867
  msgstr "Type"
1868
 
1869
- #: templates/debug.php601, templates/debug/logger.php:26
1870
  msgid "Timestamp"
1871
  msgstr "Tidsstempel"
1872
 
1873
  #: templates/secure-https-header.php:28
1874
  msgid "Secure HTTPS %s page, running from an external domain"
1875
- msgstr "Secure HTTPS %s page, running from an external domain"
1876
 
1877
  #: includes/customizer/class-fs-customizer-support-section.php55,
1878
  #: templates/plugin-info/features.php:43
@@ -1891,55 +2121,55 @@ msgstr "Freemius API"
1891
 
1892
  #: includes/debug/debug-bar-start.php:42
1893
  msgid "Requests"
1894
- msgstr "Requests"
1895
 
1896
- #: templates/account/billing.php:28
1897
  msgctxt "verb"
1898
  msgid "Update"
1899
  msgstr "Opdater"
1900
 
1901
- #: templates/account/billing.php:39
1902
  msgid "Billing"
1903
  msgstr "Betaling"
1904
 
1905
- #: templates/account/billing.php44, templates/account/billing.php:44
1906
  msgid "Business name"
1907
  msgstr "Firmanavn"
1908
 
1909
- #: templates/account/billing.php45, templates/account/billing.php:45
1910
  msgid "Tax / VAT ID"
1911
  msgstr "Moms / VAT ID"
1912
 
1913
- #: templates/account/billing.php48, templates/account/billing.php48,
1914
- #: templates/account/billing.php49, templates/account/billing.php:49
1915
  msgid "Address Line %d"
1916
  msgstr "Adresselinje %d"
1917
 
1918
- #: templates/account/billing.php52, templates/account/billing.php:52
1919
  msgid "City"
1920
  msgstr "By"
1921
 
1922
- #: templates/account/billing.php52, templates/account/billing.php:52
1923
  msgid "Town"
1924
  msgstr "By"
1925
 
1926
- #: templates/account/billing.php53, templates/account/billing.php:53
1927
  msgid "ZIP / Postal Code"
1928
  msgstr "ZIP / Postnummer"
1929
 
1930
- #: templates/account/billing.php:308
1931
  msgid "Country"
1932
  msgstr "Land"
1933
 
1934
- #: templates/account/billing.php:310
1935
  msgid "Select Country"
1936
  msgstr "Vælg land"
1937
 
1938
- #: templates/account/billing.php317, templates/account/billing.php:318
1939
  msgid "State"
1940
  msgstr "Stat"
1941
 
1942
- #: templates/account/billing.php317, templates/account/billing.php:318
1943
  msgid "Province"
1944
  msgstr "Provins"
1945
 
@@ -1982,7 +2212,7 @@ msgstr "Sti"
1982
 
1983
  #: templates/debug/api-calls.php:73
1984
  msgid "Body"
1985
- msgstr "Body"
1986
 
1987
  #: templates/debug/api-calls.php:75
1988
  msgid "Result"
@@ -2057,35 +2287,46 @@ msgstr "Udløber ikke"
2057
 
2058
  #: templates/forms/affiliation.php:85
2059
  msgid "Apply to become an affiliate"
2060
- msgstr "Apply to become an affiliate"
2061
 
2062
  #: templates/forms/affiliation.php:104
2063
- msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2064
- msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
 
 
2065
 
2066
  #: templates/forms/affiliation.php:119
2067
- 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."
2068
- 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."
 
 
2069
 
2070
  #: templates/forms/affiliation.php:122
2071
  msgid "Your affiliation account was temporarily suspended."
2072
- msgstr "Your affiliation account was temporarily suspended."
2073
 
2074
  #: templates/forms/affiliation.php:125
2075
- 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."
2076
- 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."
 
 
 
2077
 
2078
  #: templates/forms/affiliation.php:128
2079
- msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2080
- msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
 
 
2081
 
2082
  #: templates/forms/affiliation.php:141
2083
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2084
- msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2085
 
2086
  #: templates/forms/affiliation.php:142
2087
- msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2088
- msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
 
 
2089
 
2090
  #: templates/forms/affiliation.php:145
2091
  msgid "Program Summary"
@@ -2093,31 +2334,34 @@ msgstr "Programoversigt"
2093
 
2094
  #: templates/forms/affiliation.php:147
2095
  msgid "%s commission when a customer purchases a new license."
2096
- msgstr "%s commission when a customer purchases a new license."
2097
 
2098
  #: templates/forms/affiliation.php:149
2099
  msgid "Get commission for automated subscription renewals."
2100
- msgstr "Get commission for automated subscription renewals."
2101
 
2102
  #: templates/forms/affiliation.php:152
2103
- msgid "%s tracking cookie after the first visit to maximize earnings potential."
2104
- msgstr "%s tracking cookie after the first visit to maximize earnings potential."
 
2105
 
2106
  #: templates/forms/affiliation.php:155
2107
  msgid "Unlimited commissions."
2108
- msgstr "Unlimited commissions."
2109
 
2110
  #: templates/forms/affiliation.php:157
2111
  msgid "%s minimum payout amount."
2112
- msgstr "%s minimum payout amount."
2113
 
2114
  #: templates/forms/affiliation.php:158
2115
  msgid "Payouts are in USD and processed monthly via PayPal."
2116
- msgstr "Payouts are in USD and processed monthly via PayPal."
2117
 
2118
  #: templates/forms/affiliation.php:159
2119
- msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2120
- msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
 
 
2121
 
2122
  #: templates/forms/affiliation.php:162
2123
  msgid "Affiliate"
@@ -2140,8 +2384,10 @@ msgid "Where are you going to promote the %s?"
2140
  msgstr "Hvor vil du promovere %s?"
2141
 
2142
  #: templates/forms/affiliation.php:179
2143
- msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2144
- msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
 
 
2145
 
2146
  #: templates/forms/affiliation.php:181
2147
  msgid "Add another domain"
@@ -2172,16 +2418,21 @@ msgid "Website, email, and social media statistics (optional)"
2172
  msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2173
 
2174
  #: templates/forms/affiliation.php:210
2175
- 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)."
2176
- 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)."
 
 
 
2177
 
2178
  #: templates/forms/affiliation.php:214
2179
  msgid "How will you promote us?"
2180
  msgstr "Hvordan vil du promovere os?"
2181
 
2182
  #: templates/forms/affiliation.php:217
2183
- msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2184
- msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
 
 
2185
 
2186
  #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2187
  msgid "Cancel"
@@ -2191,11 +2442,13 @@ msgstr "Annuller"
2191
  msgid "Become an affiliate"
2192
  msgstr "Bliv en affiliate"
2193
 
2194
- #: templates/forms/license-activation.php:20
2195
- msgid "Please enter the license key that you received in the email right after the purchase:"
 
 
2196
  msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:"
2197
 
2198
- #: templates/forms/license-activation.php:25
2199
  msgid "Update License"
2200
  msgstr "Opdater licens"
2201
 
@@ -2210,11 +2463,16 @@ msgid "Opt In"
2210
  msgstr "Tilmeld"
2211
 
2212
  #: templates/forms/optout.php:33
2213
- 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."
2214
- 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."
 
 
 
2215
 
2216
  #: templates/forms/optout.php:35
2217
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
 
 
2218
  msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
2219
 
2220
  #: templates/forms/premium-versions-upgrade-handler.php:40
@@ -2223,7 +2481,7 @@ msgstr "En ny version af %s er tilgængelig."
2223
 
2224
  #: templates/forms/premium-versions-upgrade-handler.php:41
2225
  msgid " %s to access version %s security & feature updates, and support."
2226
- msgstr " %s to access version %s security & feature updates, and support."
2227
 
2228
  #: templates/forms/premium-versions-upgrade-handler.php:54
2229
  msgid "New Version Available"
@@ -2239,86 +2497,118 @@ msgid "Send License Key"
2239
  msgstr "Send licensnøgle"
2240
 
2241
  #: templates/forms/resend-key.php:57
2242
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
 
 
2243
  msgstr "Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi vil gensende licensnøglen til dig."
2244
 
2245
  #: templates/forms/subscription-cancellation.php:37
2246
- msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
- msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
 
 
2248
 
2249
  #: templates/forms/subscription-cancellation.php:47
2250
- msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
- msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
 
 
2252
 
2253
  #: templates/forms/subscription-cancellation.php:52
2254
  msgid "license"
2255
- msgstr "license"
2256
 
2257
  #: templates/forms/subscription-cancellation.php:57
2258
- msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
- msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
 
 
2260
 
2261
  #: templates/forms/subscription-cancellation.php:68
2262
- msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
- msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
 
 
 
 
 
 
 
 
 
 
 
 
2264
 
2265
  #: templates/forms/subscription-cancellation.php:103
2266
- msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
- msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
 
 
2268
 
2269
  #: templates/forms/subscription-cancellation.php:136
2270
  msgid "Cancel %s?"
2271
- msgstr "Cancel %s?"
2272
 
2273
  #: templates/forms/subscription-cancellation.php:143
2274
  msgid "Proceed"
2275
- msgstr "Proceed"
2276
 
2277
  #: templates/forms/subscription-cancellation.php191,
2278
- #: templates/forms/deactivation/form.php:150
2279
  msgid "Cancel %s & Proceed"
2280
- msgstr "Cancel %s & Proceed"
2281
 
2282
  #: templates/forms/trial-start.php:22
2283
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
 
 
2284
  msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
2285
 
2286
  #: templates/forms/trial-start.php:28
2287
- 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."
2288
- msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
 
 
 
 
2289
 
2290
- #: templates/js/style-premium-theme.php:37
2291
  msgid "Premium"
2292
  msgstr "Premium"
2293
 
2294
- #: templates/partials/network-activation.php:23
 
 
 
 
2295
  msgid "Activate license on all sites in the network."
2296
  msgstr "Aktiver licens på alle websteder i netværket."
2297
 
2298
- #: templates/partials/network-activation.php:24
2299
  msgid "Apply on all sites in the network."
2300
  msgstr "Anvend på alle websteder i netværket."
2301
 
2302
- #: templates/partials/network-activation.php:27
2303
  msgid "Activate license on all pending sites."
2304
  msgstr "Akiver licens på alle afventende websteder."
2305
 
2306
- #: templates/partials/network-activation.php:28
2307
  msgid "Apply on all pending sites."
2308
  msgstr "Anvend på alle afventende websteder."
2309
 
2310
- #: templates/partials/network-activation.php36,
2311
- #: templates/partials/network-activation.php:68
2312
  msgid "allow"
2313
  msgstr "tillad"
2314
 
2315
- #: templates/partials/network-activation.php38,
2316
- #: templates/partials/network-activation.php:70
2317
  msgid "delegate"
2318
  msgstr "delegér"
2319
 
2320
- #: templates/partials/network-activation.php41,
2321
- #: templates/partials/network-activation.php:73
2322
  msgid "skip"
2323
  msgstr "spring over"
2324
 
@@ -2344,19 +2634,14 @@ msgstr "%s tilbage"
2344
  msgid "Last license"
2345
  msgstr "Seneste license"
2346
 
2347
- #: templates/account/partials/addon.php:115
2348
  msgid "Cancelled"
2349
  msgstr "Annulleret"
2350
 
2351
- #: templates/account/partials/addon.php:125
2352
  msgid "No expiration"
2353
  msgstr "Udløber ikke"
2354
 
2355
- #: templates/account/partials/addon.php264,
2356
- #: templates/account/partials/addon.php:317
2357
- msgid "Activate this add-on"
2358
- msgstr "Aktiver denne tilføjelse"
2359
-
2360
  #: templates/account/partials/site.php:181
2361
  msgid "Owner Name"
2362
  msgstr "Ejer-navn"
@@ -2374,54 +2659,55 @@ msgid "Subscription"
2374
  msgstr "Abonnement"
2375
 
2376
  #: templates/forms/deactivation/contact.php:19
2377
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
 
2378
  msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
2379
 
2380
  #: templates/forms/deactivation/contact.php:22
2381
  msgid "Contact Support"
2382
  msgstr "Kontakt support"
2383
 
2384
- #: templates/forms/deactivation/form.php:59
2385
  msgid "Anonymous feedback"
2386
  msgstr "Anonym feedback"
2387
 
2388
- #: templates/forms/deactivation/form.php:66
2389
  msgid "Deactivate"
2390
  msgstr "Deaktiver"
2391
 
2392
- #: templates/forms/deactivation/form.php:68
2393
  msgid "Activate %s"
2394
  msgstr "Aktiver %s"
2395
 
2396
- #: templates/forms/deactivation/form.php:80
2397
  msgid "Quick Feedback"
2398
- msgstr "Quick Feedback"
2399
 
2400
- #: templates/forms/deactivation/form.php:84
2401
  msgid "If you have a moment, please let us know why you are %s"
2402
  msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
2403
 
2404
- #: templates/forms/deactivation/form.php:84
2405
  msgid "deactivating"
2406
  msgstr "deaktiverer"
2407
 
2408
- #: templates/forms/deactivation/form.php:84
2409
  msgid "switching"
2410
  msgstr "skifter"
2411
 
2412
- #: templates/forms/deactivation/form.php:332
2413
  msgid "Submit & %s"
2414
  msgstr "Send & %s"
2415
 
2416
- #: templates/forms/deactivation/form.php:353
2417
  msgid "Kindly tell us the reason so we can improve."
2418
  msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2419
 
2420
- #: templates/forms/deactivation/form.php:478
2421
  msgid "Yes - %s"
2422
  msgstr "Ja - %s"
2423
 
2424
- #: templates/forms/deactivation/form.php:485
2425
  msgid "Skip & %s"
2426
  msgstr "Spring over & %s"
2427
 
@@ -2430,5 +2716,7 @@ msgid "Click here to use the plugin anonymously"
2430
  msgstr "Klik her for at benytte pluginnet anonymt"
2431
 
2432
  #: templates/forms/deactivation/retry-skip.php:23
2433
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
 
 
2434
  msgstr "Du har måske overset det, men du behøver ikke at dele data og kan blot %s tilmeldingen."
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language: \n"
9
+ "Language-Team: \n"
10
+ "Content-Type: \n"
11
+ "Content-Transfer-Encoding: \n"
12
+ "Plural-Forms: \n"
13
+ o: https://github.com/Freemius/wordpress-sdk/issues\n"
14
+ "POT-Creation-Date: \n"
15
+ "PO-Revision-Date: 2019-06-05 13:40+0000\n"
16
+ "Last-Translator: Joachim Jensen\n"
17
  "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
18
+ "MIME-Version: 1.0\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: da_DK\n"
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
23
  "X-Poedit-Basepath: ..\n"
24
  "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
  "X-Poedit-SearchPathExcluded-0: *.js\n"
27
  "X-Poedit-SourceCharset: UTF-8\n"
28
 
29
+ #: includes/class-freemius.php1838, templates/account.php:769
30
+ msgid ""
31
+ "An update to a Beta version will replace your installed version of %s with "
32
+ "the latest Beta release - use with caution, and not on production sites. You"
33
+ " have been warned."
34
+ msgstr ""
35
+
36
+ #: includes/class-freemius.php:1845
37
+ msgid "Would you like to proceed with the update?"
38
+ msgstr ""
39
+
40
+ #: includes/class-freemius.php:2053
41
+ msgid ""
42
+ "Freemius SDK couldn't find the plugin's main file. Please contact "
43
+ "sdk@freemius.com with the current error."
44
+ msgstr ""
45
 
46
+ #: includes/class-freemius.php:2055
47
  msgid "Error"
48
  msgstr "Fejl"
49
 
50
+ #: includes/class-freemius.php:2445
51
  msgid "I found a better %s"
52
  msgstr "Jeg fandt et bedre %s"
53
 
54
+ #: includes/class-freemius.php:2447
55
  msgid "What's the %s's name?"
56
  msgstr "Hvad er navnet på %s?"
57
 
58
+ #: includes/class-freemius.php:2453
59
  msgid "It's a temporary %s. I'm just debugging an issue."
60
  msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
61
 
62
+ #: includes/class-freemius.php:2455
63
  msgid "Deactivation"
64
  msgstr "Deaktivering"
65
 
66
+ #: includes/class-freemius.php:2456
67
  msgid "Theme Switch"
68
  msgstr "Temaskift"
69
 
70
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
71
  msgid "Other"
72
  msgstr "Andet"
73
 
74
+ #: includes/class-freemius.php:2473
75
  msgid "I no longer need the %s"
76
  msgstr "Jeg har ikke længere brug for %s"
77
 
78
+ #: includes/class-freemius.php:2480
79
  msgid "I only needed the %s for a short period"
80
  msgstr "Jeg behøvede kun %s i en kort periode"
81
 
82
+ #: includes/class-freemius.php:2486
83
  msgid "The %s broke my site"
84
  msgstr "%s ødelagde min webside"
85
 
86
+ #: includes/class-freemius.php:2493
87
  msgid "The %s suddenly stopped working"
88
  msgstr "%s stoppede pludseligt med at virke"
89
 
90
+ #: includes/class-freemius.php:2503
91
  msgid "I can't pay for it anymore"
92
  msgstr "Jeg kan ikke længere betale for det"
93
 
94
+ #: includes/class-freemius.php:2505
95
  msgid "What price would you feel comfortable paying?"
96
  msgstr "Hvilken pris ville du foretrække at betale?"
97
 
98
+ #: includes/class-freemius.php:2511
99
  msgid "I don't like to share my information with you"
100
  msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
101
 
102
+ #: includes/class-freemius.php:2532
103
  msgid "The %s didn't work"
104
  msgstr "%s virkede ikke"
105
 
106
+ #: includes/class-freemius.php:2542
107
  msgid "I couldn't understand how to make it work"
108
  msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
109
 
110
+ #: includes/class-freemius.php:2550
111
  msgid "The %s is great, but I need specific feature that you don't support"
112
  msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
113
 
114
+ #: includes/class-freemius.php:2552
115
  msgid "What feature?"
116
  msgstr "Hvilken feature?"
117
 
118
+ #: includes/class-freemius.php:2556
119
  msgid "The %s is not working"
120
  msgstr "%s virker ikke"
121
 
122
+ #: includes/class-freemius.php:2558
123
  msgid "Kindly share what didn't work so we can fix it for future users..."
124
+ msgstr ""
125
 
126
+ #: includes/class-freemius.php:2562
127
  msgid "It's not what I was looking for"
128
  msgstr "Det er ikke, hvad jeg søgte"
129
 
130
+ #: includes/class-freemius.php:2564
131
  msgid "What you've been looking for?"
132
  msgstr "Hvad har du ledt efter?"
133
 
134
+ #: includes/class-freemius.php:2568
135
  msgid "The %s didn't work as expected"
136
  msgstr "%s virkede ikke som forventet"
137
 
138
+ #: includes/class-freemius.php:2570
139
  msgid "What did you expect?"
140
  msgstr "Hvad forventede du?"
141
 
142
+ #: includes/class-freemius.php3425, templates/debug.php:20
143
  msgid "Freemius Debug"
144
  msgstr "Freemius Debug"
145
 
146
+ #: includes/class-freemius.php:4177
147
  msgid "I don't know what is cURL or how to install it, help me!"
148
  msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
149
 
150
+ #: includes/class-freemius.php:4179
151
+ msgid ""
152
+ "We'll make sure to contact your hosting company and resolve the issue. You "
153
+ "will get a follow-up email to %s once we have an update."
154
  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."
155
 
156
+ #: includes/class-freemius.php:4186
157
+ msgid ""
158
+ "Great, please install cURL and enable it in your php.ini file. In addition, "
159
+ "search for the 'disable_functions' directive in your php.ini file and remove"
160
+ " any disabled methods starting with 'curl_'. To make sure it was "
161
+ "successfully activated, use 'phpinfo()'. Once activated, deactivate the %s "
162
+ "and reactivate it back again."
163
+ msgstr ""
164
 
165
+ #: includes/class-freemius.php:4291
166
  msgid "Yes - do your thing"
167
  msgstr "Ja - fortsæt bare"
168
 
169
+ #: includes/class-freemius.php:4296
170
  msgid "No - just deactivate"
171
  msgstr "Nej - bare deaktiver"
172
 
173
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
174
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
175
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
176
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
177
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
178
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
179
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
180
  msgctxt "exclamation"
181
  msgid "Oops"
182
  msgstr "Ups"
183
 
184
+ #: includes/class-freemius.php:4410
185
+ msgid ""
186
+ "Thank for giving us the chance to fix it! A message was just sent to our "
187
+ "technical staff. We will get back to you as soon as we have an update to %s."
188
+ " Appreciate your patience."
189
  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."
190
 
191
+ #: includes/class-freemius.php:4847
192
  msgctxt "addonX cannot run without pluginY"
193
  msgid "%s cannot run without %s."
194
  msgstr "%s virker ikke uden %s."
195
 
196
+ #: includes/class-freemius.php:4848
197
  msgctxt "addonX cannot run..."
198
  msgid "%s cannot run without the plugin."
199
  msgstr "%s virker ikke uden pluginnet."
200
 
201
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
202
+ #: includes/class-freemius.php:19475
203
+ msgid ""
204
+ "Unexpected API error. Please contact the %s's author with the following "
205
+ "error."
206
+ msgstr ""
207
 
208
+ #: includes/class-freemius.php:5687
209
  msgid "Premium %s version was successfully activated."
210
  msgstr "Premium-versionen af %s blev aktiveret."
211
 
212
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
213
  msgctxt ""
214
+ "Used to express elation, enthusiasm, or triumph (especially in electronic "
215
+ "communication)."
216
  msgid "W00t"
217
  msgstr "W00t"
218
 
219
+ #: includes/class-freemius.php:5714
220
  msgid "You have a %s license."
221
  msgstr "Du har en %s licens."
222
 
223
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
224
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
225
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
226
+ #: includes/class-freemius.php:19229
227
  msgctxt "interjection expressing joy or exuberance"
228
  msgid "Yee-haw"
229
  msgstr "Yee-haw"
230
 
231
+ #: includes/class-freemius.php:5982
232
+ msgid ""
233
+ "%s free trial was successfully cancelled. Since the add-on is premium only "
234
+ "it was automatically deactivated. If you like to use it in the future, "
235
+ "you'll have to purchase a license."
236
+ msgstr ""
237
 
238
+ #: includes/class-freemius.php:5986
239
+ msgid ""
240
+ "%s is a premium only add-on. You have to purchase a license first before "
241
+ "activating the plugin."
242
+ msgstr ""
243
 
244
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
245
+ #: templates/account/partials/addon.php:343
246
  msgid "More information about %s"
247
  msgstr "Mere information om %s"
248
 
249
+ #: includes/class-freemius.php:5996
250
  msgid "Purchase License"
251
  msgstr "Køb licens"
252
 
253
+ #: includes/class-freemius.php6931, templates/connect.php:163
254
+ msgid ""
255
+ "You should receive an activation email for %s to your mailbox at %s. Please "
256
+ "make sure you click the activation button in that email to %s."
257
+ msgstr ""
258
 
259
+ #: includes/class-freemius.php:6935
260
  msgid "start the trial"
261
  msgstr "start prøveperioden"
262
 
263
+ #: includes/class-freemius.php6936, templates/connect.php:167
264
  msgid "complete the install"
265
  msgstr "færdiggør installeringen"
266
 
267
+ #: includes/class-freemius.php:7049
268
  msgid "You are just one step away - %s"
269
  msgstr "Du mangler kun ét skridt - %s"
270
 
271
+ #: includes/class-freemius.php:7052
272
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
273
  msgid "Complete \"%s\" Activation Now"
274
  msgstr "Færdiggør aktivering af \"%s\" nu"
275
 
276
+ #: includes/class-freemius.php:7130
277
  msgid "We made a few tweaks to the %s, %s"
278
  msgstr "Vi har foretaget nogle rettelser til %s, %s"
279
 
280
+ #: includes/class-freemius.php:7134
281
  msgid "Opt in to make \"%s\" better!"
282
+ msgstr ""
283
 
284
+ #: includes/class-freemius.php:7566
285
  msgid "The upgrade of %s was successfully completed."
286
  msgstr "Opgraderingen af %s blev fuldendt."
287
 
288
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
289
+ #: includes/class-fs-plugin-updater.php1170,
290
+ #: includes/class-fs-plugin-updater.php1177,
291
  #: templates/auto-installation.php:32
292
  msgid "Add-On"
293
  msgstr "Tilføjelse"
294
 
295
+ #: includes/class-freemius.php9730, templates/account.php313,
296
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
297
  msgid "Plugin"
298
  msgstr "Plugin"
299
 
300
+ #: includes/class-freemius.php9731, templates/account.php314,
301
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
302
+ #: templates/forms/deactivation/form.php:71
303
  msgid "Theme"
304
  msgstr "Tema"
305
 
306
+ #: includes/class-freemius.php:12148
307
+ msgid ""
308
+ "An unknown error has occurred while trying to set the user's beta mode."
309
+ msgstr ""
310
+
311
+ #: includes/class-freemius.php:12549
312
  msgid "Invalid site details collection."
313
+ msgstr ""
314
 
315
+ #: includes/class-freemius.php:12669
316
+ msgid ""
317
+ "We couldn't find your email address in the system, are you sure it's the "
318
+ "right address?"
319
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
320
 
321
+ #: includes/class-freemius.php:12671
322
+ msgid ""
323
+ "We can't see any active licenses associated with that email address, are you"
324
+ " 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:12945
328
  msgid "Account is pending activation."
329
  msgstr "Konto afventer aktivering."
330
 
331
+ #: includes/class-freemius.php13057,
332
  #: templates/forms/premium-versions-upgrade-handler.php:47
333
  msgid "Buy a license now"
334
+ msgstr ""
335
 
336
+ #: includes/class-freemius.php13069,
337
  #: templates/forms/premium-versions-upgrade-handler.php:46
338
  msgid "Renew your license now"
339
+ msgstr ""
340
 
341
+ #: includes/class-freemius.php:13073
342
  msgid "%s to access version %s security & feature updates, and support."
343
+ msgstr ""
344
 
345
+ #: includes/class-freemius.php:15448
346
  msgid "%s activation was successfully completed."
347
  msgstr "Aktivering af %s blev gennemført."
348
 
349
+ #: includes/class-freemius.php:15462
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.php15473, includes/class-freemius.php:19061
354
  msgid "Your trial has been successfully started."
355
  msgstr "Din prøveperiode er begyndt."
356
 
357
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
358
+ #: includes/class-freemius.php:16297
359
  msgid "Couldn't activate %s."
360
  msgstr "Kunne ikke aktivere %s."
361
 
362
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
363
+ #: includes/class-freemius.php:16298
364
  msgid "Please contact us with the following message:"
365
  msgstr "Kontakt os venligst med følgende besked:"
366
 
367
+ #: includes/class-freemius.php:16128
368
+ msgid "An unknown error has occurred."
369
+ msgstr ""
370
+
371
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
372
  msgid "Upgrade"
373
  msgstr "Opgrader"
374
 
375
+ #: includes/class-freemius.php:16661
376
  msgid "Start Trial"
377
  msgstr "Start prøveperiode"
378
 
379
+ #: includes/class-freemius.php:16663
380
  msgid "Pricing"
381
  msgstr "Priser"
382
 
383
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
384
  msgid "Affiliation"
385
  msgstr "Affiliation"
386
 
387
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
388
+ #: templates/account.php177, templates/debug.php:326
389
  msgid "Account"
390
  msgstr "Konto"
391
 
392
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
393
  #: includes/customizer/class-fs-customizer-support-section.php:60
394
  msgid "Contact Us"
395
  msgstr "Kontakt os"
396
 
397
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
398
+ #: includes/class-freemius.php21423, templates/account.php105,
399
+ #: templates/account/partials/addon.php:45
400
  msgid "Add-Ons"
401
  msgstr "Tilføjelser"
402
 
403
+ #: includes/class-freemius.php:16835
404
  msgctxt "ASCII arrow left icon"
405
  msgid "&#x2190;"
406
+ msgstr ""
407
 
408
+ #: includes/class-freemius.php:16835
409
  msgctxt "ASCII arrow right icon"
410
  msgid "&#x27a4;"
411
+ msgstr ""
412
 
413
+ #: includes/class-freemius.php16837, templates/pricing.php:102
414
  msgctxt "noun"
415
  msgid "Pricing"
416
  msgstr "Priser"
417
 
418
+ #: includes/class-freemius.php17050,
419
  #: includes/customizer/class-fs-customizer-support-section.php:67
420
  msgid "Support Forum"
421
  msgstr "Supportforum"
422
 
423
+ #: includes/class-freemius.php:17995
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:17996
428
  msgctxt "a positive response"
429
  msgid "Right on"
430
  msgstr "Sådan"
431
 
432
+ #: includes/class-freemius.php:18660
433
  msgid "Your %s Add-on plan was successfully upgraded."
434
+ msgstr ""
435
 
436
+ #: includes/class-freemius.php:18662
437
  msgid "%s Add-on was successfully purchased."
438
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
439
 
440
+ #: includes/class-freemius.php:18665
441
  msgid "Download the latest version"
442
  msgstr "Download den seneste version"
443
 
444
+ #: includes/class-freemius.php:18751
445
+ msgid ""
446
+ "Your server is blocking the access to Freemius' API, which is crucial for "
447
+ "%1$s synchronization. Please contact your host to whitelist %2$s"
448
+ msgstr ""
449
 
450
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
451
+ #: includes/class-freemius.php:19277
452
  msgid "Error received from the server:"
453
  msgstr "Fejl modtager fra serveren:"
454
 
455
+ #: includes/class-freemius.php:18767
456
+ msgid ""
457
+ "It seems like one of the authentication parameters is wrong. Update your "
458
+ "Public Key, Secret Key & User ID, and try again."
459
+ msgstr ""
460
 
461
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
462
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
463
  msgctxt ""
464
+ "something somebody says when they are thinking about what you have just "
465
+ "said."
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
+ #: includes/class-freemius.php:18974
470
+ msgid ""
471
+ "It looks like you are still on the %s plan. If you did upgrade or change "
472
+ "your plan, it's probably an issue on our side - sorry."
473
+ msgstr ""
474
 
475
+ #: includes/class-freemius.php18975, templates/account.php107,
476
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
477
  msgctxt "trial period"
478
  msgid "Trial"
479
  msgstr "Prøveperiode"
480
 
481
+ #: includes/class-freemius.php:18980
482
+ msgid ""
483
+ "I have upgraded my account but when I try to Sync the License, the plan "
484
+ "remains %s."
485
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
486
 
487
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
488
  msgid "Please contact us here"
489
  msgstr "Kontakt os her"
490
 
491
+ #: includes/class-freemius.php:18995
492
+ msgid "Your plan was successfully activated."
493
+ msgstr ""
494
+
495
+ #: includes/class-freemius.php:18996
496
  msgid "Your plan was successfully upgraded."
497
  msgstr "Din plan er blevet opgraderet."
498
 
499
+ #: includes/class-freemius.php:19013
500
  msgid "Your plan was successfully changed to %s."
501
  msgstr "Din plan er blevet ændret til %s."
502
 
503
+ #: includes/class-freemius.php:19029
504
+ msgid ""
505
+ "Your license has expired. You can still continue using the free %s forever."
506
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
507
 
508
+ #: includes/class-freemius.php:19031
509
+ msgid ""
510
+ "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s "
511
+ "without interruptions."
512
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
513
 
514
+ #: includes/class-freemius.php:19039
515
+ msgid ""
516
+ "Your license has been cancelled. If you think it's a mistake, please contact"
517
+ " support."
518
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
519
 
520
+ #: includes/class-freemius.php:19052
521
+ msgid ""
522
+ "Your license has expired. You can still continue using all the %s features, "
523
+ "but you'll need to renew your license to continue getting updates and "
524
+ "support."
525
  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."
526
 
527
+ #: includes/class-freemius.php:19075
528
+ msgid ""
529
+ "Your free trial has expired. You can still continue using all our free "
530
+ "features."
531
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
532
 
533
+ #: includes/class-freemius.php:19077
534
+ msgid ""
535
+ "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s "
536
+ "without interruptions."
537
+ msgstr ""
538
 
539
+ #: includes/class-freemius.php:19184
540
  msgid "It looks like the license could not be activated."
541
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
542
 
543
+ #: includes/class-freemius.php:19226
544
  msgid "Your license was successfully activated."
545
  msgstr "Din licens er blevet aktiveret."
546
 
547
+ #: includes/class-freemius.php:19252
548
  msgid "It looks like your site currently doesn't have an active license."
549
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
550
 
551
+ #: includes/class-freemius.php:19276
552
  msgid "It looks like the license deactivation failed."
553
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
554
 
555
+ #: includes/class-freemius.php:19304
556
+ msgid ""
557
+ "Your license was successfully deactivated, you are back to the %s plan."
558
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
559
 
560
+ #: includes/class-freemius.php:19305
561
  msgid "O.K"
562
  msgstr "O.K"
563
 
564
+ #: includes/class-freemius.php:19358
565
+ msgid ""
566
+ "Seems like we are having some temporary issue with your subscription "
567
+ "cancellation. Please try again in few minutes."
568
+ msgstr ""
569
 
570
+ #: includes/class-freemius.php:19367
571
+ msgid ""
572
+ "Your subscription was successfully cancelled. Your %s plan license will "
573
+ "expire in %s."
574
+ msgstr ""
575
 
576
+ #: includes/class-freemius.php:19409
577
  msgid "You are already running the %s in a trial mode."
578
  msgstr "Du benytter allerede %s under en prøveperiode."
579
 
580
+ #: includes/class-freemius.php:19420
581
  msgid "You already utilized a trial before."
582
  msgstr "Du har allerede brugt din prøveperiode."
583
 
584
+ #: includes/class-freemius.php:19434
585
  msgid "Plan %s do not exist, therefore, can't start a trial."
586
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
587
 
588
+ #: includes/class-freemius.php:19445
589
  msgid "Plan %s does not support a trial period."
590
  msgstr "Plan %s understøtter ikke en prøveperiode."
591
 
592
+ #: includes/class-freemius.php:19456
593
  msgid "None of the %s's plans supports a trial period."
594
+ msgstr ""
595
 
596
+ #: includes/class-freemius.php:19506
597
+ msgid ""
598
+ "It looks like you are not in trial mode anymore so there's nothing to cancel"
599
+ " :)"
600
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
601
 
602
+ #: includes/class-freemius.php:19542
603
+ msgid ""
604
+ "Seems like we are having some temporary issue with your trial cancellation. "
605
+ "Please try again in few minutes."
606
+ msgstr ""
607
 
608
+ #: includes/class-freemius.php:19561
609
  msgid "Your %s free trial was successfully cancelled."
610
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
611
 
612
+ #: includes/class-freemius.php:19877
613
  msgid "Version %s was released."
614
  msgstr "Version %s er blevet udgivet."
615
 
616
+ #: includes/class-freemius.php:19877
617
  msgid "Please download %s."
618
  msgstr "Download venligst %s."
619
 
620
+ #: includes/class-freemius.php:19884
621
  msgid "the latest %s version here"
622
  msgstr "den seneste version af %s her"
623
 
624
+ #: includes/class-freemius.php:19889
625
  msgid "New"
626
  msgstr "Ny"
627
 
628
+ #: includes/class-freemius.php:19894
629
  msgid "Seems like you got the latest release."
630
  msgstr "Det ser ud til, at du har den seneste udgivelse."
631
 
632
+ #: includes/class-freemius.php:19895
633
  msgid "You are all good!"
634
  msgstr "Det var det!"
635
 
636
+ #: includes/class-freemius.php:20165
637
+ msgid ""
638
+ "Verification mail was just sent to %s. If you can't find it after 5 min, "
639
+ "please check your spam box."
640
+ msgstr ""
641
 
642
+ #: includes/class-freemius.php:20304
643
  msgid "Site successfully opted in."
644
  msgstr "Websted er tilmeldt."
645
 
646
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
647
  msgid "Awesome"
648
  msgstr "Sejt"
649
 
650
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
651
+ msgid ""
652
+ "We appreciate your help in making the %s better by letting us track some "
653
+ "usage data."
654
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
655
 
656
+ #: includes/class-freemius.php:20322
657
  msgid "Thank you!"
658
  msgstr "Mange tak!"
659
 
660
+ #: includes/class-freemius.php:20329
661
  msgid "We will no longer be sending any usage data of %s on %s to %s."
662
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
663
 
664
+ #: includes/class-freemius.php:20458
665
+ msgid ""
666
+ "Please check your mailbox, you should receive an email via %s to confirm the"
667
+ " ownership change. From security reasons, you must confirm the change within"
668
+ " the next 15 min. If you cannot find the email, please check your spam "
669
+ "folder."
670
+ msgstr ""
671
 
672
+ #: includes/class-freemius.php:20464
673
+ msgid ""
674
+ "Thanks for confirming the ownership change. An email was just sent to %s for"
675
+ " final approval."
676
+ msgstr ""
677
 
678
+ #: includes/class-freemius.php:20469
679
  msgid "%s is the new owner of the account."
680
  msgstr "%s er den nye ejer af kontoen."
681
 
682
+ #: includes/class-freemius.php:20471
683
  msgctxt "as congratulations"
684
  msgid "Congrats"
685
  msgstr "Tillykke"
686
 
687
+ #: includes/class-freemius.php:20491
688
+ msgid ""
689
+ "Sorry, we could not complete the email update. Another user with the same "
690
+ "email is already registered."
691
+ msgstr ""
692
 
693
+ #: includes/class-freemius.php:20492
694
+ msgid ""
695
+ "If you would like to give up the ownership of the %s's account to %s click "
696
+ "the Change Ownership button."
697
+ msgstr ""
698
 
699
+ #: includes/class-freemius.php:20499
700
  msgid "Change Ownership"
701
  msgstr "Skift ejerskab"
702
 
703
+ #: includes/class-freemius.php:20507
704
+ msgid ""
705
+ "Your email was successfully updated. You should receive an email with "
706
+ "confirmation instructions in few moments."
707
+ msgstr ""
708
 
709
+ #: includes/class-freemius.php:20519
710
  msgid "Please provide your full name."
711
  msgstr "Indtast venligst dit fulde navn."
712
 
713
+ #: includes/class-freemius.php:20524
714
  msgid "Your name was successfully updated."
715
  msgstr "Dit navn er blevet opdateret."
716
 
717
+ #: includes/class-freemius.php:20585
718
  msgid "You have successfully updated your %s."
719
  msgstr "Opdatering af %s blev gennemført."
720
 
721
+ #: includes/class-freemius.php:20725
722
+ msgid ""
723
+ "Just letting you know that the add-ons information of %s is being pulled "
724
+ "from an external server."
725
+ msgstr ""
726
 
727
+ #: includes/class-freemius.php:20726
728
  msgctxt "advance notice of something that will need attention."
729
  msgid "Heads up"
730
  msgstr "Se her"
731
 
732
+ #: includes/class-freemius.php:21165
733
  msgctxt "exclamation"
734
  msgid "Hey"
735
  msgstr "Hey"
736
 
737
+ #: includes/class-freemius.php:21165
738
+ msgid ""
739
+ "How do you like %s so far? Test all our %s premium features with a %d-day "
740
+ "free trial."
741
  msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
742
 
743
+ #: includes/class-freemius.php:21173
744
  msgid "No commitment for %s days - cancel anytime!"
745
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
746
 
747
+ #: includes/class-freemius.php:21174
748
  msgid "No credit card required"
749
  msgstr "Betalingskort ikke påkrævet"
750
 
751
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
752
  msgctxt "call to action"
753
  msgid "Start free trial"
754
  msgstr "Start gratis prøveperiode"
755
 
756
+ #: includes/class-freemius.php:21258
757
+ msgid ""
758
+ "Hey there, did you know that %s has an affiliate program? If you like the %s"
759
+ " you can become our ambassador and earn some cash!"
760
+ msgstr ""
761
 
762
+ #: includes/class-freemius.php:21267
763
  msgid "Learn more"
764
  msgstr "Læs mere"
765
 
766
+ #: includes/class-freemius.php21447, templates/account.php474,
767
+ #: templates/account.php595, templates/connect.php171,
768
+ #: templates/connect.php421, templates/forms/license-activation.php25,
769
+ #: templates/account/partials/addon.php:287
770
  msgid "Activate License"
771
  msgstr "Aktiver licens"
772
 
773
+ #: includes/class-freemius.php21448, templates/account.php543,
774
+ #: templates/account.php594, templates/account/partials/site.php:256
775
  msgid "Change License"
776
  msgstr "Skift licens"
777
 
778
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
779
  msgid "Opt Out"
780
  msgstr "Frameld"
781
 
782
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
783
  #: templates/account/partials/site.php43,
784
  #: templates/account/partials/site.php:161
785
  msgid "Opt In"
786
  msgstr "Tilmeld"
787
 
788
+ #: includes/class-freemius.php:21775
789
+ msgid ""
790
+ " The paid version of %1$s is already installed. Please activate it to start "
791
+ "benefiting the %2$s features. %3$s"
792
+ msgstr ""
793
 
794
+ #: includes/class-freemius.php:21783
795
  msgid "Activate %s features"
796
+ msgstr ""
797
 
798
+ #: includes/class-freemius.php:21796
799
  msgid "Please follow these steps to complete the upgrade"
800
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
801
 
802
+ #: includes/class-freemius.php:21800
803
  msgid "Download the latest %s version"
804
  msgstr "Download den seneste version af %s"
805
 
806
+ #: includes/class-freemius.php:21804
807
  msgid "Upload and activate the downloaded version"
808
  msgstr "Upload og aktiver den downloadede version"
809
 
810
+ #: includes/class-freemius.php:21806
811
  msgid "How to upload and activate?"
812
  msgstr "Upload og aktivering, hvordan?"
813
 
814
+ #: includes/class-freemius.php:21940
815
+ msgid ""
816
+ "%sClick here%s to choose the sites where you'd like to activate the license "
817
+ "on."
818
+ msgstr ""
819
 
820
+ #: includes/class-freemius.php:22101
821
  msgid "Auto installation only works for opted-in users."
822
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
823
 
824
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
825
+ #: includes/class-fs-plugin-updater.php1149,
826
+ #: includes/class-fs-plugin-updater.php:1163
827
  msgid "Invalid module ID."
828
  msgstr "Ugyldigt modul-ID."
829
 
830
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
831
  msgid "Premium version already active."
832
  msgstr "Premium version allerede aktiv."
833
 
834
+ #: includes/class-freemius.php:22127
835
  msgid "You do not have a valid license to access the premium version."
836
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
837
 
838
+ #: includes/class-freemius.php:22134
839
+ msgid ""
840
+ "Plugin is a \"Serviceware\" which means it does not have a premium code "
841
+ "version."
842
+ msgstr ""
843
 
844
+ #: includes/class-freemius.php22152, includes/class-fs-plugin-updater.php:1184
845
  msgid "Premium add-on version already installed."
846
  msgstr "Premium tilføjelse er allerede installeret."
847
 
848
+ #: includes/class-freemius.php:22497
849
  msgid "View paid features"
850
  msgstr "Vis betalte features"
851
 
852
+ #: includes/class-freemius.php:22819
853
  msgid "Thank you so much for using %s and its add-ons!"
854
+ msgstr ""
855
 
856
+ #: includes/class-freemius.php:22820
857
  msgid "Thank you so much for using %s!"
858
  msgstr "Tak fordi du benytter %s!"
859
 
860
+ #: includes/class-freemius.php:22826
861
+ msgid ""
862
+ "You've already opted-in to our usage-tracking, which helps us keep improving"
863
+ " the %s."
864
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
865
 
866
+ #: includes/class-freemius.php:22830
867
  msgid "Thank you so much for using our products!"
868
  msgstr "Mange tak for at benytte vores produkter!"
869
 
870
+ #: includes/class-freemius.php:22831
871
+ msgid ""
872
+ "You've already opted-in to our usage-tracking, which helps us keep improving"
873
+ " them."
874
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
875
 
876
+ #: includes/class-freemius.php:22850
877
  msgid "%s and its add-ons"
878
  msgstr "%s og tilføjelser"
879
 
880
+ #: includes/class-freemius.php:22859
881
  msgid "Products"
882
  msgstr "Produkter"
883
 
884
+ #: includes/class-freemius.php22866, templates/connect.php:272
885
  msgid "Yes"
886
  msgstr "Ja"
887
 
888
+ #: includes/class-freemius.php22867, templates/connect.php:273
889
  msgid "send me security & feature updates, educational content and offers."
890
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
891
 
892
+ #: includes/class-freemius.php22868, templates/connect.php:278
893
  msgid "No"
894
  msgstr "Nej"
895
 
896
+ #: includes/class-freemius.php22870, templates/connect.php:280
897
+ msgid ""
898
+ "do %sNOT%s send me security & feature updates, educational content and "
899
+ "offers."
900
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
901
 
902
+ #: includes/class-freemius.php:22880
903
+ msgid ""
904
+ "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance "
905
+ "requirements it is required that you provide your explicit consent, again, "
906
+ "confirming that you are onboard :-)"
907
+ msgstr ""
908
 
909
+ #: includes/class-freemius.php22882, templates/connect.php:287
910
+ msgid ""
911
+ "Please let us know if you'd like us to contact you for security & feature "
912
+ "updates, educational content, and occasional offers:"
913
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
914
 
915
+ #: includes/class-freemius.php:23164
916
  msgid "License key is empty."
917
  msgstr "Licensnøglen er tom."
918
 
924
  #: includes/class-fs-plugin-updater.php189,
925
  #: templates/forms/premium-versions-upgrade-handler.php:58
926
  msgid "Buy license"
927
+ msgstr ""
928
 
929
+ #: includes/class-fs-plugin-updater.php280,
930
+ #: includes/class-fs-plugin-updater.php:313
931
  msgid "There is a %s of %s available."
932
+ msgstr ""
933
 
934
+ #: includes/class-fs-plugin-updater.php282,
935
+ #: includes/class-fs-plugin-updater.php:318
936
+ msgid "new Beta version"
937
+ msgstr ""
938
+
939
+ #: includes/class-fs-plugin-updater.php283,
940
+ #: includes/class-fs-plugin-updater.php:319
941
  msgid "new version"
942
+ msgstr ""
943
 
944
+ #: includes/class-fs-plugin-updater.php:342
945
  msgid "Important Upgrade Notice:"
946
+ msgstr ""
947
 
948
+ #: includes/class-fs-plugin-updater.php:1214
949
  msgid "Installing plugin: %s"
950
  msgstr "Installerer plugin: %s"
951
 
952
+ #: includes/class-fs-plugin-updater.php:1255
953
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
954
+ msgstr ""
955
 
956
+ #: includes/class-fs-plugin-updater.php:1437
957
+ msgid ""
958
+ "The remote plugin package does not contain a folder with the desired slug "
959
+ "and renaming did not work."
960
+ msgstr ""
961
 
962
+ #: includes/fs-plugin-info-dialog.php:509
963
+ msgid "Purchase More"
964
+ msgstr ""
965
+
966
+ #: includes/fs-plugin-info-dialog.php510,
967
+ #: templates/account/partials/addon.php:347
968
  msgctxt "verb"
969
  msgid "Purchase"
970
  msgstr "Køb"
971
 
972
+ #: includes/fs-plugin-info-dialog.php:514
973
  msgid "Start my free %s"
974
  msgstr "Start min gratis %s"
975
 
976
+ #: includes/fs-plugin-info-dialog.php:712
977
+ msgid "Install Free Version Update Now"
978
+ msgstr "Installer opdatering til gratis version nu"
979
+
980
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
981
+ msgid "Install Update Now"
982
+ msgstr "Installer opdatering nu"
983
+
984
+ #: includes/fs-plugin-info-dialog.php:722
985
  msgid "Install Free Version Now"
986
  msgstr "Installer gratis version nu"
987
 
988
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
989
+ #: templates/auto-installation.php111,
990
+ #: templates/account/partials/addon.php327,
991
+ #: templates/account/partials/addon.php:379
992
  msgid "Install Now"
993
  msgstr "Installer nu"
994
 
995
+ #: includes/fs-plugin-info-dialog.php:739
996
  msgctxt "as download latest version"
997
  msgid "Download Latest Free Version"
998
  msgstr "Download seneste gratis version"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
1001
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
1002
  msgctxt "as download latest version"
1003
  msgid "Download Latest"
1004
  msgstr "Download seneste"
1005
 
1006
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
1007
+ #: templates/account/partials/addon.php318,
1008
+ #: templates/account/partials/addon.php:373
1009
+ msgid "Activate this add-on"
1010
+ msgstr "Aktiver denne tilføjelse"
 
 
 
 
 
 
 
 
 
 
1011
 
1012
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
1013
+ msgid "Activate Free Version"
1014
+ msgstr "Aktiver gratis version"
1015
 
1016
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
1017
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
1018
+ msgid "Activate"
1019
+ msgstr "Aktiver"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:968
1022
  msgctxt "Plugin installer section title"
1023
  msgid "Description"
1024
  msgstr "Beskrivelse"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php:969
1027
  msgctxt "Plugin installer section title"
1028
  msgid "Installation"
1029
  msgstr "Installering"
1030
 
1031
+ #: includes/fs-plugin-info-dialog.php:970
1032
  msgctxt "Plugin installer section title"
1033
  msgid "FAQ"
1034
  msgstr "FAQ"
1035
 
1036
+ #: includes/fs-plugin-info-dialog.php971,
1037
  #: templates/plugin-info/description.php:55
1038
  msgid "Screenshots"
1039
  msgstr "Skærmbilleder"
1040
 
1041
+ #: includes/fs-plugin-info-dialog.php:972
1042
  msgctxt "Plugin installer section title"
1043
  msgid "Changelog"
1044
  msgstr "Ændringslog"
1045
 
1046
+ #: includes/fs-plugin-info-dialog.php:973
1047
  msgctxt "Plugin installer section title"
1048
  msgid "Reviews"
1049
  msgstr "Anmeldelser"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:974
1052
  msgctxt "Plugin installer section title"
1053
  msgid "Other Notes"
1054
  msgstr "Andre noter"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php:989
1057
  msgctxt "Plugin installer section title"
1058
  msgid "Features & Pricing"
1059
  msgstr "Funktioner og priser"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php:999
1062
  msgid "Plugin Install"
1063
  msgstr "Plugin-installering"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php:1071
1066
  msgctxt "e.g. Professional Plan"
1067
  msgid "%s Plan"
1068
  msgstr "%s Plan"
1069
 
1070
+ #: includes/fs-plugin-info-dialog.php:1097
1071
  msgctxt "e.g. the best product"
1072
  msgid "Best"
1073
  msgstr "Bedste"
1074
 
1075
+ #: includes/fs-plugin-info-dialog.php1103,
1076
+ #: includes/fs-plugin-info-dialog.php:1123
1077
  msgctxt "as every month"
1078
  msgid "Monthly"
1079
  msgstr "Månedligt"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1106
1082
  msgctxt "as once a year"
1083
  msgid "Annual"
1084
  msgstr "Årligt"
1085
 
1086
+ #: includes/fs-plugin-info-dialog.php:1109
1087
  msgid "Lifetime"
1088
  msgstr "Livstid"
1089
 
1090
+ #: includes/fs-plugin-info-dialog.php1123,
1091
+ #: includes/fs-plugin-info-dialog.php1125,
1092
+ #: includes/fs-plugin-info-dialog.php:1127
1093
  msgctxt "e.g. billed monthly"
1094
  msgid "Billed %s"
1095
  msgstr "Faktureret %s"
1096
 
1097
+ #: includes/fs-plugin-info-dialog.php:1125
1098
  msgctxt "as once a year"
1099
  msgid "Annually"
1100
  msgstr "Årligt"
1101
 
1102
+ #: includes/fs-plugin-info-dialog.php:1127
1103
  msgctxt "as once a year"
1104
  msgid "Once"
1105
  msgstr "Engangsbeløb"
1106
 
1107
+ #: includes/fs-plugin-info-dialog.php:1133
1108
  msgid "Single Site License"
1109
+ msgstr ""
1110
 
1111
+ #: includes/fs-plugin-info-dialog.php:1135
1112
  msgid "Unlimited Licenses"
1113
  msgstr "Ubegrænsede licenser"
1114
 
1115
+ #: includes/fs-plugin-info-dialog.php:1137
1116
  msgid "Up to %s Sites"
1117
  msgstr "Op til %s websteder"
1118
 
1119
+ #: includes/fs-plugin-info-dialog.php1147,
1120
  #: templates/plugin-info/features.php:82
1121
  msgctxt "as monthly period"
1122
  msgid "mo"
1123
  msgstr "md"
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php1154,
1126
  #: templates/plugin-info/features.php:80
1127
  msgctxt "as annual period"
1128
  msgid "year"
1129
  msgstr "år"
1130
 
1131
+ #: includes/fs-plugin-info-dialog.php:1208
1132
  msgctxt "noun"
1133
  msgid "Price"
1134
  msgstr "Pris"
1135
 
1136
+ #: includes/fs-plugin-info-dialog.php:1256
1137
  msgid "Save %s"
1138
  msgstr "Spar %s"
1139
 
1140
+ #: includes/fs-plugin-info-dialog.php:1266
1141
  msgid "No commitment for %s - cancel anytime"
1142
  msgstr "Ingen bindinger ved %s - annuller når som helst"
1143
 
1144
+ #: includes/fs-plugin-info-dialog.php:1269
1145
  msgid "After your free %s, pay as little as %s"
1146
  msgstr "Efter din gratis %s er prisen kun %s"
1147
 
1148
+ #: includes/fs-plugin-info-dialog.php:1280
1149
  msgid "Details"
1150
  msgstr "Detaljer"
1151
 
1152
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1153
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1154
+ #: templates/account/partials/addon.php:36
1155
  msgctxt "product version"
1156
  msgid "Version"
1157
  msgstr "Version"
1158
 
1159
+ #: includes/fs-plugin-info-dialog.php:1291
1160
  msgctxt "as the plugin author"
1161
  msgid "Author"
1162
  msgstr "Forfatter"
1163
 
1164
+ #: includes/fs-plugin-info-dialog.php:1298
1165
  msgid "Last Updated"
1166
  msgstr "Senest opdateret"
1167
 
1168
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1169
  msgctxt "x-ago"
1170
  msgid "%s ago"
1171
  msgstr "%s siden"
1172
 
1173
+ #: includes/fs-plugin-info-dialog.php:1312
1174
  msgid "Requires WordPress Version"
1175
  msgstr "Kræver WordPress-version"
1176
 
1177
+ #: includes/fs-plugin-info-dialog.php:1313
1178
  msgid "%s or higher"
1179
  msgstr "%s eller højere"
1180
 
1181
+ #: includes/fs-plugin-info-dialog.php:1320
1182
  msgid "Compatible up to"
1183
  msgstr "Kompatibel op til"
1184
 
1185
+ #: includes/fs-plugin-info-dialog.php:1328
1186
  msgid "Downloaded"
1187
  msgstr "Downloadet"
1188
 
1189
+ #: includes/fs-plugin-info-dialog.php:1332
1190
  msgid "%s time"
1191
  msgstr "%s gang"
1192
 
1193
+ #: includes/fs-plugin-info-dialog.php:1334
1194
  msgid "%s times"
1195
  msgstr "%s gange"
1196
 
1197
+ #: includes/fs-plugin-info-dialog.php:1344
1198
  msgid "WordPress.org Plugin Page"
1199
  msgstr "WordPress.org Plugin-side"
1200
 
1201
+ #: includes/fs-plugin-info-dialog.php:1352
1202
  msgid "Plugin Homepage"
1203
  msgstr "Plugin-websted"
1204
 
1205
+ #: includes/fs-plugin-info-dialog.php1360,
1206
+ #: includes/fs-plugin-info-dialog.php:1442
1207
  msgid "Donate to this plugin"
1208
  msgstr "Donér til dette plugin"
1209
 
1210
+ #: includes/fs-plugin-info-dialog.php:1367
1211
  msgid "Average Rating"
1212
  msgstr "Gennemsnitlig vurdering"
1213
 
1214
+ #: includes/fs-plugin-info-dialog.php:1374
1215
  msgid "based on %s"
1216
  msgstr "baseret på %s"
1217
 
1218
+ #: includes/fs-plugin-info-dialog.php:1378
1219
  msgid "%s rating"
1220
  msgstr "%s vurdering"
1221
 
1222
+ #: includes/fs-plugin-info-dialog.php:1380
1223
  msgid "%s ratings"
1224
  msgstr "%s vurderinger"
1225
 
1226
+ #: includes/fs-plugin-info-dialog.php:1395
1227
  msgid "%s star"
1228
  msgstr "%s stjerne"
1229
 
1230
+ #: includes/fs-plugin-info-dialog.php:1397
1231
  msgid "%s stars"
1232
  msgstr "%s stjerner"
1233
 
1234
+ #: includes/fs-plugin-info-dialog.php:1408
1235
  msgid "Click to see reviews that provided a rating of %s"
1236
+ msgstr ""
1237
 
1238
+ #: includes/fs-plugin-info-dialog.php:1421
1239
  msgid "Contributors"
1240
  msgstr "Bidragsydere"
1241
 
1242
+ #: includes/fs-plugin-info-dialog.php1450,
1243
+ #: includes/fs-plugin-info-dialog.php:1452
1244
  msgid "Warning"
1245
  msgstr "Advarsel"
1246
 
1247
+ #: includes/fs-plugin-info-dialog.php:1450
1248
+ msgid ""
1249
+ "This plugin has not been tested with your current version of WordPress."
1250
  msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1251
 
1252
+ #: includes/fs-plugin-info-dialog.php:1452
1253
+ msgid ""
1254
+ "This plugin has not been marked as compatible with your version of "
1255
+ "WordPress."
1256
+ msgstr ""
1257
 
1258
+ #: includes/fs-plugin-info-dialog.php:1471
1259
  msgid "Paid add-on must be deployed to Freemius."
1260
+ msgstr ""
1261
 
1262
+ #: includes/fs-plugin-info-dialog.php:1472
1263
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1264
+ msgstr ""
1265
 
1266
+ #: includes/fs-plugin-info-dialog.php:1493
1267
+ msgid "Newer Version (%s) Installed"
1268
+ msgstr "Nyere version (%s) installeret"
1269
+
1270
+ #: includes/fs-plugin-info-dialog.php:1494
1271
+ msgid "Newer Free Version (%s) Installed"
1272
+ msgstr "Nyere gratis version (%s) installeret"
1273
+
1274
+ #: includes/fs-plugin-info-dialog.php:1501
1275
+ msgid "Latest Version Installed"
1276
+ msgstr "Seneste version installeret"
1277
+
1278
+ #: includes/fs-plugin-info-dialog.php:1502
1279
+ msgid "Latest Free Version Installed"
1280
+ msgstr "Seneste gratis version installeret"
1281
+
1282
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1283
+ #: templates/account/partials/addon.php26,
1284
  #: templates/account/partials/site.php:295
1285
  msgid "Downgrading your plan"
1286
+ msgstr ""
1287
 
1288
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1289
+ #: templates/account/partials/addon.php27,
1290
  #: templates/account/partials/site.php:296
1291
  msgid "Cancelling the subscription"
1292
+ msgstr ""
1293
 
1294
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1295
  #. subscription'
1296
+ #: templates/account.php:89
1297
+ msgid ""
1298
+ "%1$s will immediately stop all future recurring payments and your %2$s plan "
1299
+ "license will expire in %3$s."
1300
+ msgstr ""
1301
 
1302
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1303
+ #: templates/account/partials/addon.php30,
1304
  #: templates/account/partials/site.php:299
1305
+ msgid ""
1306
+ "Please note that we will not be able to grandfather outdated pricing for "
1307
+ "renewals/new subscriptions after a cancellation. If you choose to renew the "
1308
+ "subscription manually in the future, after a price increase, which typically"
1309
+ " occurs once a year, you will be charged the updated price."
1310
+ msgstr ""
1311
 
1312
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1313
+ #: templates/account/partials/addon.php:31
1314
+ msgid ""
1315
+ "Cancelling the trial will immediately block access to all premium features. "
1316
+ "Are you sure?"
1317
+ msgstr ""
1318
 
1319
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1320
+ #: templates/account/partials/addon.php32,
1321
  #: templates/account/partials/site.php:300
1322
+ msgid ""
1323
+ "You can still enjoy all %s features but you will not have access to %s "
1324
+ "security & feature updates, nor support."
1325
+ msgstr ""
1326
 
1327
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1328
+ #: templates/account/partials/addon.php33,
1329
  #: templates/account/partials/site.php:301
1330
+ msgid ""
1331
+ "Once your license expires you can still use the Free version but you will "
1332
+ "NOT have access to the %s features."
1333
+ msgstr ""
1334
 
1335
  #. translators: %s: Plan title (e.g. "Professional")
1336
+ #: templates/account.php95,
1337
  #: templates/account/partials/activate-license-button.php31,
1338
+ #: templates/account/partials/addon.php:35
1339
  msgid "Activate %s Plan"
1340
  msgstr "Aktiver %s plan"
1341
 
1342
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1343
+ #: templates/account.php98, templates/account/partials/addon.php38,
1344
  #: templates/account/partials/site.php:275
1345
  msgid "Auto renews in %s"
1346
  msgstr "Auto-fornyer om %s"
1347
 
1348
  #. translators: %s: Time period (e.g. Expires in "2 months")
1349
+ #: templates/account.php100, templates/account/partials/addon.php40,
1350
  #: templates/account/partials/site.php:277
1351
  msgid "Expires in %s"
1352
  msgstr "Udløber om %s"
1353
 
1354
+ #: templates/account.php101, templates/account/partials/addon.php:41
1355
  msgctxt "as synchronize license"
1356
  msgid "Sync License"
1357
  msgstr "Synkroniser licens"
1358
 
1359
+ #: templates/account.php102, templates/account/partials/addon.php:42
1360
  msgid "Cancel Trial"
1361
  msgstr "Annuller prøveperiode"
1362
 
1363
+ #: templates/account.php103, templates/account/partials/addon.php:43
1364
  msgid "Change Plan"
1365
  msgstr "Skift plan"
1366
 
1367
+ #: templates/account.php104, templates/account/partials/addon.php:44
1368
  msgctxt "verb"
1369
  msgid "Upgrade"
1370
  msgstr "Opgrader"
1371
 
1372
+ #: templates/account.php106, templates/account/partials/addon.php46,
1373
  #: templates/account/partials/site.php:302
1374
  msgctxt "verb"
1375
  msgid "Downgrade"
1376
  msgstr "Nedgrader"
1377
 
1378
+ #: templates/account.php108, templates/add-ons.php187,
1379
  #: templates/plugin-info/features.php72,
1380
+ #: templates/account/partials/addon.php48,
1381
  #: templates/account/partials/site.php:31
1382
  msgid "Free"
1383
  msgstr "Gratis"
1384
 
1385
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1386
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1387
+ #: templates/account/partials/addon.php:50
1388
  msgctxt "as product pricing plan"
1389
  msgid "Plan"
1390
  msgstr "Plan"
1391
 
1392
+ #: templates/account.php:111
1393
+ msgid "Bundle Plan"
1394
+ msgstr ""
1395
+
1396
+ #: templates/account.php:185
1397
  msgid "Free Trial"
1398
  msgstr "Gratis prøveperiode"
1399
 
1400
+ #: templates/account.php:196
1401
  msgid "Account Details"
1402
  msgstr "Kontodetaljer"
1403
 
1404
+ #: templates/account.php:200
1405
+ msgid "Billing & Invoices"
1406
+ msgstr ""
1407
 
1408
+ #: templates/account.php:210
1409
+ msgid ""
1410
+ "Deleting the account will automatically deactivate your %s plan license so "
1411
+ "you can use it on other sites. If you want to terminate the recurring "
1412
+ "payments as well, click the \"Cancel\" button, and first \"Downgrade\" your "
1413
+ "account. Are you sure you would like to continue with the deletion?"
1414
+ msgstr ""
1415
 
1416
+ #: templates/account.php:212
1417
+ msgid ""
1418
+ "Deletion is not temporary. Only delete if you no longer want to use this %s "
1419
+ "anymore. Are you sure you would like to continue with the deletion?"
1420
+ msgstr ""
1421
+
1422
+ #: templates/account.php:215
1423
  msgid "Delete Account"
1424
  msgstr "Slet konto"
1425
 
1426
+ #: templates/account.php227, templates/account/partials/addon.php211,
1427
  #: templates/account/partials/deactivate-license-button.php:35
1428
  msgid "Deactivate License"
1429
  msgstr "Deaktiver licens"
1430
 
1431
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1432
  msgid "Are you sure you want to proceed?"
1433
  msgstr "Er du sikker på, du vil fortsætte?"
1434
 
1435
+ #: templates/account.php250, templates/account/partials/addon.php:234
1436
  msgid "Cancel Subscription"
1437
  msgstr "Annuller abonnement"
1438
 
1439
+ #: templates/account.php:278
1440
  msgctxt "as synchronize"
1441
  msgid "Sync"
1442
  msgstr "Synkroniser"
1443
 
1444
+ #: templates/account.php292, templates/debug.php:489
1445
  msgid "Name"
1446
  msgstr "Navn"
1447
 
1448
+ #: templates/account.php298, templates/debug.php:490
1449
  msgid "Email"
1450
  msgstr "E-mail"
1451
 
1452
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1453
  msgid "User ID"
1454
  msgstr "Bruger-ID"
1455
 
1456
+ #: templates/account.php322, templates/account.php608,
1457
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1458
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1459
+ #: templates/debug.php599, templates/account/payments.php35,
1460
+ #: templates/debug/logger.php:21
1461
+ msgid "ID"
1462
+ msgstr "ID"
1463
+
1464
+ #: templates/account.php:329
1465
  msgid "Site ID"
1466
  msgstr "Websteds-ID"
1467
 
1468
+ #: templates/account.php:332
1469
  msgid "No ID"
1470
  msgstr "Intet ID"
1471
 
1472
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1473
+ #: templates/debug.php455, templates/debug.php492,
1474
  #: templates/account/partials/site.php:219
1475
  msgid "Public Key"
1476
  msgstr "Offentlig nøgle"
1477
 
1478
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1479
+ #: templates/debug.php493, templates/account/partials/site.php:231
1480
  msgid "Secret Key"
1481
  msgstr "Privat nøgle"
1482
 
1483
+ #: templates/account.php:346
1484
  msgctxt "as secret encryption key missing"
1485
  msgid "No Secret"
1486
  msgstr "Ingen privat nøgle"
1487
 
1488
+ #: templates/account.php373, templates/account/partials/site.php112,
1489
  #: templates/account/partials/site.php:114
1490
  msgid "Trial"
1491
  msgstr "Prøveperiode"
1492
 
1493
+ #: templates/account.php400, templates/debug.php533,
1494
  #: templates/account/partials/site.php:248
1495
  msgid "License Key"
1496
  msgstr "Licensnøgle"
1497
 
1498
+ #: templates/account.php:429
1499
+ msgid "Join the Beta program"
1500
+ msgstr ""
1501
+
1502
+ #: templates/account.php:435
1503
  msgid "not verified"
1504
  msgstr "ikke verificeret"
1505
 
1506
+ #: templates/account.php444, templates/account/partials/addon.php:172
1507
  msgid "Expired"
1508
  msgstr "Udløbet"
1509
 
1510
+ #: templates/account.php:502
1511
  msgid "Premium version"
1512
  msgstr "Premium version"
1513
 
1514
+ #: templates/account.php:504
1515
  msgid "Free version"
1516
  msgstr "Gratis version"
1517
 
1518
+ #: templates/account.php:516
1519
  msgid "Verify Email"
1520
  msgstr "Verificer e-mail"
1521
 
1522
+ #: templates/account.php:527
1523
  msgid "Download %s Version"
1524
  msgstr "Download 1%s version"
1525
 
1526
+ #: templates/account.php541, templates/account.php749,
1527
  #: templates/account/partials/site.php237,
1528
  #: templates/account/partials/site.php:255
1529
  msgctxt "verb"
1530
  msgid "Show"
1531
  msgstr "Vis"
1532
 
1533
+ #: templates/account.php:555
1534
  msgid "What is your %s?"
1535
  msgstr "Angiv venligst %s?"
1536
 
1537
+ #: templates/account.php563, templates/account/billing.php:21
1538
  msgctxt "verb"
1539
  msgid "Edit"
1540
  msgstr "Rediger"
1541
 
1542
+ #: templates/account.php:588
1543
  msgid "Sites"
1544
  msgstr "Websteder"
1545
 
1546
+ #: templates/account.php:599
1547
  msgid "Search by address"
1548
  msgstr "Søg efter adresse"
1549
 
1550
+ #: templates/account.php609, templates/debug.php:369
 
 
 
 
 
 
 
1551
  msgid "Address"
1552
  msgstr "Adresse"
1553
 
1554
+ #: templates/account.php:610
1555
  msgid "License"
1556
  msgstr "Licens"
1557
 
1558
+ #: templates/account.php:611
1559
  msgid "Plan"
1560
  msgstr "Plan"
1561
 
1562
+ #: templates/account.php:656
1563
  msgctxt "as software license"
1564
  msgid "License"
1565
  msgstr "Licens"
1566
 
1567
+ #: templates/account.php:743
1568
  msgctxt "verb"
1569
  msgid "Hide"
1570
  msgstr "Skjul"
1571
 
1572
+ #: templates/account.php:765
1573
+ msgid "Processing"
1574
+ msgstr "Arbejder"
1575
+
1576
+ #: templates/account.php:768
1577
+ msgid "Get updates for bleeding edge Beta versions of %s."
1578
+ msgstr ""
1579
+
1580
+ #: templates/account.php:826
1581
  msgid "Cancelling %s"
1582
+ msgstr ""
1583
 
1584
+ #: templates/account.php826, templates/account.php843,
1585
  #: templates/forms/subscription-cancellation.php27,
1586
+ #: templates/forms/deactivation/form.php:133
1587
  msgid "trial"
1588
+ msgstr ""
1589
 
1590
+ #: templates/account.php841, templates/forms/deactivation/form.php:150
1591
  msgid "Cancelling %s..."
1592
+ msgstr ""
1593
 
1594
+ #: templates/account.php844, templates/forms/subscription-cancellation.php28,
1595
+ #: templates/forms/deactivation/form.php:134
1596
  msgid "subscription"
1597
+ msgstr ""
1598
+
1599
+ #: templates/account.php:858
1600
+ msgid ""
1601
+ "Deactivating your license will block all premium features, but will enable "
1602
+ "activating the license on another site. Are you sure you want to proceed?"
1603
+ msgstr ""
1604
 
1605
+ #: templates/add-ons.php:35
1606
+ msgid "View details"
1607
+ msgstr "Vis detaljer"
1608
 
1609
+ #: templates/add-ons.php:45
1610
  msgid "Add Ons for %s"
1611
  msgstr "Tilføjelser til %s"
1612
 
1613
+ #: templates/add-ons.php:55
1614
+ msgid ""
1615
+ "We could'nt load the add-ons list. It's probably an issue on our side, "
1616
+ "please try to come back in few minutes."
1617
+ msgstr ""
1618
 
1619
+ #: templates/add-ons.php:173
1620
+ msgctxt "active add-on"
1621
+ msgid "Active"
1622
+ msgstr "Aktiv"
1623
 
1624
+ #: templates/add-ons.php:174
1625
+ msgctxt "installed add-on"
1626
+ msgid "Installed"
1627
+ msgstr ""
1628
+
1629
+ #: templates/admin-notice.php13, templates/forms/license-activation.php209,
1630
  #: templates/forms/resend-key.php:77
1631
  msgctxt "as close a window"
1632
  msgid "Dismiss"
1641
  msgstr "Automatisk installering"
1642
 
1643
  #: templates/auto-installation.php:93
1644
+ msgid ""
1645
+ "An automated download and installation of %s (paid version) from %s will "
1646
+ "start in %s. If you would like to do it manually - click the cancellation "
1647
+ "button now."
1648
+ msgstr ""
1649
 
1650
  #: templates/auto-installation.php:104
1651
+ msgid ""
1652
+ "The installation process has started and may take a few minutes to complete."
1653
+ " Please wait until it is done - do not refresh this page."
1654
+ msgstr ""
1655
 
1656
  #: templates/auto-installation.php:109
1657
  msgid "Cancel Installation"
1658
  msgstr "Annuller installering"
1659
 
1660
+ #: templates/checkout.php:180
1661
  msgid "Checkout"
1662
  msgstr "Udtjekning"
1663
 
1664
+ #: templates/checkout.php:180
1665
  msgid "PCI compliant"
1666
+ msgstr ""
1667
 
1668
  #. translators: %s: name (e.g. Hey John,)
1669
  #: templates/connect.php:112
1683
  msgid "Thanks %s!"
1684
  msgstr "Tak %s!"
1685
 
1686
+ #: templates/connect.php172, templates/forms/license-activation.php:44
1687
  msgid "Agree & Activate License"
1688
  msgstr "Accepter & aktiver licens"
1689
 
1690
  #: templates/connect.php:181
1691
+ msgid ""
1692
+ "Thanks for purchasing %s! To get started, please enter your license key:"
1693
  msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
1694
 
1695
  #: templates/connect.php:188
1696
+ msgid ""
1697
+ "Never miss an important update - opt in to our security & feature updates "
1698
+ "notifications, educational content, offers, and non-sensitive diagnostic "
1699
+ "tracking with %4$s."
1700
+ msgstr ""
1701
 
1702
  #: templates/connect.php:189
1703
+ msgid ""
1704
+ "Never miss an important update - opt in to our security and feature updates "
1705
+ "notifications, and non-sensitive diagnostic tracking with %4$s."
1706
+ msgstr ""
1707
 
1708
  #: templates/connect.php:195
1709
+ msgid ""
1710
+ "Never miss an important update - opt in to our security & feature updates "
1711
+ "notifications, educational content, offers, and non-sensitive diagnostic "
1712
+ "tracking with %4$s. If you skip this, that's okay! %1$s will still work just"
1713
+ " fine."
1714
+ msgstr ""
1715
 
1716
  #: templates/connect.php:196
1717
+ msgid ""
1718
+ "Never miss an important update - opt in to our security & feature updates "
1719
+ "notifications, and non-sensitive diagnostic tracking with %4$s. If you skip "
1720
+ "this, that's okay! %1$s will still work just fine."
1721
+ msgstr ""
1722
 
1723
  #: templates/connect.php:230
1724
  msgid "We're excited to introduce the Freemius network-level integration."
1725
+ msgstr ""
1726
 
1727
  #: templates/connect.php:233
1728
+ msgid ""
1729
+ "During the update process we detected %d site(s) that are still pending "
1730
+ "license activation."
1731
+ msgstr ""
1732
 
1733
  #: templates/connect.php:235
1734
+ msgid ""
1735
+ "If you'd like to use the %s on those sites, please enter your license key "
1736
+ "below and click the activation button."
1737
+ msgstr ""
1738
 
1739
  #: templates/connect.php:237
1740
  msgid "%s's paid features"
1741
+ msgstr ""
1742
 
1743
  #: templates/connect.php:242
1744
+ msgid ""
1745
+ "Alternatively, you can skip it for now and activate the license later, in "
1746
+ "your %s's network-level Account page."
1747
+ msgstr ""
1748
 
1749
  #: templates/connect.php:244
1750
+ msgid ""
1751
+ "During the update process we detected %s site(s) in the network that are "
1752
+ "still pending your attention."
1753
+ msgstr ""
1754
 
1755
+ #: templates/connect.php253, templates/forms/license-activation.php:47
1756
  msgid "License key"
1757
  msgstr "Licensnøgle"
1758
 
1759
+ #: templates/connect.php256, templates/forms/license-activation.php:20
1760
  msgid "Can't find your license key?"
1761
  msgstr "Kan du ikke finde din licensnøgle?"
1762
 
1763
+ #: templates/connect.php315, templates/connect.php652,
1764
  #: templates/forms/deactivation/retry-skip.php:20
1765
  msgctxt "verb"
1766
  msgid "Skip"
1768
 
1769
  #: templates/connect.php:318
1770
  msgid "Delegate to Site Admins"
1771
+ msgstr ""
1772
 
1773
  #: templates/connect.php:318
1774
+ msgid ""
1775
+ "If you click it, this decision will be delegated to the sites "
1776
+ "administrators."
1777
+ msgstr ""
1778
 
1779
  #: templates/connect.php:346
1780
  msgid "Your Profile Overview"
1798
 
1799
  #: templates/connect.php359, templates/connect.php:375
1800
  msgid "Updates, announcements, marketing, no spam"
1801
+ msgstr ""
1802
 
1803
  #: templates/connect.php:364
1804
  msgid "Current %s Events"
1805
+ msgstr ""
1806
 
1807
  #: templates/connect.php:365
1808
  msgid "Activation, deactivation and uninstall"
1812
  msgid "Newsletter"
1813
  msgstr "Nyhedsbrev"
1814
 
1815
+ #: templates/connect.php391, templates/forms/license-activation.php:39
1816
+ msgid ""
1817
+ "The %1$s will be periodically sending data to %2$s to check for security and"
1818
+ " feature updates, and verify the validity of your license."
1819
+ msgstr ""
1820
 
1821
  #: templates/connect.php:396
1822
  msgid "What permissions are being granted?"
1826
  msgid "Don't have a license key?"
1827
  msgstr "Har du ikke en licensnøgle?"
1828
 
 
 
 
 
1829
  #: templates/connect.php:420
1830
  msgid "Have a license key?"
1831
  msgstr "Har du en licensnøgle?"
1836
 
1837
  #: templates/connect.php:430
1838
  msgid "License Agreement"
1839
+ msgstr ""
1840
 
1841
  #: templates/connect.php:430
1842
  msgid "Terms of Service"
1843
  msgstr "Servicevilkår"
1844
 
1845
+ #: templates/connect.php:805
1846
  msgctxt "as in the process of sending an email"
1847
  msgid "Sending email"
1848
  msgstr "Sender e-mail"
1849
 
1850
+ #: templates/connect.php:806
1851
  msgctxt "as activating plugin"
1852
  msgid "Activating"
1853
  msgstr "Aktiverer"
1875
  msgid "Debugging"
1876
  msgstr "Fejlfinding"
1877
 
1878
+ #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1879
+ #: templates/debug.php:494
1880
  msgid "Actions"
1881
  msgstr "Handlinger"
1882
 
1894
 
1895
  #: templates/debug.php:79
1896
  msgid "Clear Updates Transients"
1897
+ msgstr ""
1898
 
1899
  #: templates/debug.php:86
1900
  msgid "Sync Data From Server"
1902
 
1903
  #: templates/debug.php:95
1904
  msgid "Migrate Options to Network"
1905
+ msgstr ""
1906
 
1907
  #: templates/debug.php:100
1908
  msgid "Load DB Option"
1912
  msgid "Set DB Option"
1913
  msgstr "Sæt DB-indstilling"
1914
 
1915
+ #: templates/debug.php:182
1916
  msgid "Key"
1917
  msgstr "Nøgle"
1918
 
1919
+ #: templates/debug.php:183
1920
  msgid "Value"
1921
  msgstr "Værdi"
1922
 
1923
+ #: templates/debug.php:199
1924
  msgctxt "as software development kit versions"
1925
  msgid "SDK Versions"
1926
  msgstr "SDK-versioner"
1927
 
1928
+ #: templates/debug.php:204
1929
  msgid "SDK Path"
1930
  msgstr "SDK-sti"
1931
 
1932
+ #: templates/debug.php205, templates/debug.php:244
1933
  msgid "Module Path"
1934
  msgstr "Modul-sti"
1935
 
1936
+ #: templates/debug.php:206
1937
  msgid "Is Active"
1938
  msgstr "Er aktiv"
1939
 
1940
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1941
  msgid "Plugins"
1942
  msgstr "Plugins"
1943
 
1944
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1945
  msgid "Themes"
1946
  msgstr "Temaer"
1947
 
1948
+ #: templates/debug.php239, templates/debug.php371, templates/debug.php453,
1949
  #: templates/debug/scheduled-crons.php:80
1950
  msgid "Slug"
1951
  msgstr "Kortnavn"
1952
 
1953
+ #: templates/debug.php241, templates/debug.php:452
1954
  msgid "Title"
1955
  msgstr "Titel"
1956
 
1957
+ #: templates/debug.php:242
1958
  msgctxt "as application program interface"
1959
  msgid "API"
1960
  msgstr "API"
1961
 
1962
+ #: templates/debug.php:243
1963
  msgid "Freemius State"
1964
  msgstr "Freemius tilstand"
1965
 
1966
+ #: templates/debug.php:247
1967
  msgid "Network Blog"
1968
  msgstr "Netværksblog"
1969
 
1970
+ #: templates/debug.php:248
1971
  msgid "Network User"
1972
  msgstr "Netværksbruger"
1973
 
1974
+ #: templates/debug.php:285
1975
  msgctxt "as connection was successful"
1976
  msgid "Connected"
1977
  msgstr "Forbundet"
1978
 
1979
+ #: templates/debug.php:286
1980
  msgctxt "as connection blocked"
1981
  msgid "Blocked"
1982
  msgstr "Blokeret"
1983
 
1984
+ #: templates/debug.php:322
1985
  msgid "Simulate Trial Promotion"
1986
+ msgstr ""
1987
 
1988
+ #: templates/debug.php:334
1989
  msgid "Simulate Network Upgrade"
1990
  msgstr "Simuler netværksopgradering"
1991
 
1992
+ #: templates/debug.php:360
1993
  msgid "%s Installs"
1994
  msgstr "%s installeringer"
1995
 
1996
+ #: templates/debug.php:362
1997
  msgctxt "like websites"
1998
  msgid "Sites"
1999
  msgstr "Websteder"
2000
 
2001
+ #: templates/debug.php368, templates/account/partials/site.php:148
2002
  msgid "Blog ID"
2003
  msgstr "Blog-ID"
2004
 
2005
+ #: templates/debug.php433, templates/debug.php511,
2006
+ #: templates/account/partials/addon.php:396
2007
  msgctxt "verb"
2008
  msgid "Delete"
2009
  msgstr "Slet"
2010
 
2011
+ #: templates/debug.php:447
2012
  msgid "Add Ons of module %s"
2013
  msgstr "Tilføjelser til modul %s"
2014
 
2015
+ #: templates/debug.php:484
2016
  msgid "Users"
2017
  msgstr "Brugere"
2018
 
2019
+ #: templates/debug.php:491
2020
  msgid "Verified"
2021
  msgstr "Verificeret"
2022
 
2023
+ #: templates/debug.php:522
2024
  msgid "%s Licenses"
2025
  msgstr "1%s licenser"
2026
 
2027
+ #: templates/debug.php:527
2028
  msgid "Plugin ID"
2029
  msgstr "Plugin-ID"
2030
 
2031
+ #: templates/debug.php:529
2032
  msgid "Plan ID"
2033
  msgstr "Plan-ID"
2034
 
2035
+ #: templates/debug.php:530
2036
  msgid "Quota"
2037
  msgstr "Kvote"
2038
 
2039
+ #: templates/debug.php:531
2040
  msgid "Activated"
2041
  msgstr "Aktiveret"
2042
 
2043
+ #: templates/debug.php:532
2044
  msgid "Blocking"
2045
  msgstr "Blokerer"
2046
 
2047
+ #: templates/debug.php:534
2048
  msgctxt "as expiration date"
2049
  msgid "Expiration"
2050
  msgstr "Udløber"
2051
 
2052
+ #: templates/debug.php:557
2053
  msgid "Debug Log"
2054
  msgstr "Fejlfindingslog"
2055
 
2056
+ #: templates/debug.php:561
2057
  msgid "All Types"
2058
  msgstr "Alle typer"
2059
 
2060
+ #: templates/debug.php:568
2061
  msgid "All Requests"
2062
  msgstr "Alle forespørgsler"
2063
 
2064
+ #: templates/debug.php573, templates/debug.php602,
2065
  #: templates/debug/logger.php:25
2066
  msgid "File"
2067
  msgstr "Fil"
2068
 
2069
+ #: templates/debug.php574, templates/debug.php600,
2070
  #: templates/debug/logger.php:23
2071
  msgid "Function"
2072
  msgstr "Funktion"
2073
 
2074
+ #: templates/debug.php:575
2075
  msgid "Process ID"
2076
  msgstr "Proces-ID"
2077
 
2078
+ #: templates/debug.php:576
2079
  msgid "Logger"
2080
  msgstr "Logger"
2081
 
2082
+ #: templates/debug.php577, templates/debug.php601,
2083
  #: templates/debug/logger.php:24
2084
  msgid "Message"
2085
  msgstr "Besked"
2086
 
2087
+ #: templates/debug.php:579
2088
  msgid "Filter"
2089
  msgstr "Filter"
2090
 
2091
+ #: templates/debug.php:587
2092
  msgid "Download"
2093
  msgstr "Download"
2094
 
2095
+ #: templates/debug.php598, templates/debug/logger.php:22
2096
  msgid "Type"
2097
  msgstr "Type"
2098
 
2099
+ #: templates/debug.php603, templates/debug/logger.php:26
2100
  msgid "Timestamp"
2101
  msgstr "Tidsstempel"
2102
 
2103
  #: templates/secure-https-header.php:28
2104
  msgid "Secure HTTPS %s page, running from an external domain"
2105
+ msgstr ""
2106
 
2107
  #: includes/customizer/class-fs-customizer-support-section.php55,
2108
  #: templates/plugin-info/features.php:43
2121
 
2122
  #: includes/debug/debug-bar-start.php:42
2123
  msgid "Requests"
2124
+ msgstr ""
2125
 
2126
+ #: templates/account/billing.php:22
2127
  msgctxt "verb"
2128
  msgid "Update"
2129
  msgstr "Opdater"
2130
 
2131
+ #: templates/account/billing.php:33
2132
  msgid "Billing"
2133
  msgstr "Betaling"
2134
 
2135
+ #: templates/account/billing.php38, templates/account/billing.php:38
2136
  msgid "Business name"
2137
  msgstr "Firmanavn"
2138
 
2139
+ #: templates/account/billing.php39, templates/account/billing.php:39
2140
  msgid "Tax / VAT ID"
2141
  msgstr "Moms / VAT ID"
2142
 
2143
+ #: templates/account/billing.php42, templates/account/billing.php42,
2144
+ #: templates/account/billing.php43, templates/account/billing.php:43
2145
  msgid "Address Line %d"
2146
  msgstr "Adresselinje %d"
2147
 
2148
+ #: templates/account/billing.php46, templates/account/billing.php:46
2149
  msgid "City"
2150
  msgstr "By"
2151
 
2152
+ #: templates/account/billing.php46, templates/account/billing.php:46
2153
  msgid "Town"
2154
  msgstr "By"
2155
 
2156
+ #: templates/account/billing.php47, templates/account/billing.php:47
2157
  msgid "ZIP / Postal Code"
2158
  msgstr "ZIP / Postnummer"
2159
 
2160
+ #: templates/account/billing.php:302
2161
  msgid "Country"
2162
  msgstr "Land"
2163
 
2164
+ #: templates/account/billing.php:304
2165
  msgid "Select Country"
2166
  msgstr "Vælg land"
2167
 
2168
+ #: templates/account/billing.php311, templates/account/billing.php:312
2169
  msgid "State"
2170
  msgstr "Stat"
2171
 
2172
+ #: templates/account/billing.php311, templates/account/billing.php:312
2173
  msgid "Province"
2174
  msgstr "Provins"
2175
 
2212
 
2213
  #: templates/debug/api-calls.php:73
2214
  msgid "Body"
2215
+ msgstr ""
2216
 
2217
  #: templates/debug/api-calls.php:75
2218
  msgid "Result"
2287
 
2288
  #: templates/forms/affiliation.php:85
2289
  msgid "Apply to become an affiliate"
2290
+ msgstr ""
2291
 
2292
  #: templates/forms/affiliation.php:104
2293
+ msgid ""
2294
+ "Your affiliate application for %s has been accepted! Log in to your "
2295
+ "affiliate area at: %s."
2296
+ msgstr ""
2297
 
2298
  #: templates/forms/affiliation.php:119
2299
+ msgid ""
2300
+ "Thank you for applying for our affiliate program, we'll review your details "
2301
+ "during the next 14 days and will get back to you with further information."
2302
+ msgstr ""
2303
 
2304
  #: templates/forms/affiliation.php:122
2305
  msgid "Your affiliation account was temporarily suspended."
2306
+ msgstr ""
2307
 
2308
  #: templates/forms/affiliation.php:125
2309
+ msgid ""
2310
+ "Thank you for applying for our affiliate program, unfortunately, we've "
2311
+ "decided at this point to reject your application. Please try again in 30 "
2312
+ "days."
2313
+ msgstr ""
2314
 
2315
  #: templates/forms/affiliation.php:128
2316
+ msgid ""
2317
+ "Due to violation of our affiliation terms, we decided to temporarily block "
2318
+ "your affiliation account. If you have any questions, please contact support."
2319
+ msgstr ""
2320
 
2321
  #: templates/forms/affiliation.php:141
2322
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2323
+ msgstr ""
2324
 
2325
  #: templates/forms/affiliation.php:142
2326
+ msgid ""
2327
+ "Refer new customers to our %s and earn %s commission on each successful sale"
2328
+ " you refer!"
2329
+ msgstr ""
2330
 
2331
  #: templates/forms/affiliation.php:145
2332
  msgid "Program Summary"
2334
 
2335
  #: templates/forms/affiliation.php:147
2336
  msgid "%s commission when a customer purchases a new license."
2337
+ msgstr ""
2338
 
2339
  #: templates/forms/affiliation.php:149
2340
  msgid "Get commission for automated subscription renewals."
2341
+ msgstr ""
2342
 
2343
  #: templates/forms/affiliation.php:152
2344
+ msgid ""
2345
+ "%s tracking cookie after the first visit to maximize earnings potential."
2346
+ msgstr ""
2347
 
2348
  #: templates/forms/affiliation.php:155
2349
  msgid "Unlimited commissions."
2350
+ msgstr ""
2351
 
2352
  #: templates/forms/affiliation.php:157
2353
  msgid "%s minimum payout amount."
2354
+ msgstr ""
2355
 
2356
  #: templates/forms/affiliation.php:158
2357
  msgid "Payouts are in USD and processed monthly via PayPal."
2358
+ msgstr ""
2359
 
2360
  #: templates/forms/affiliation.php:159
2361
+ msgid ""
2362
+ "As we reserve 30 days for potential refunds, we only pay commissions that "
2363
+ "are older than 30 days."
2364
+ msgstr ""
2365
 
2366
  #: templates/forms/affiliation.php:162
2367
  msgid "Affiliate"
2384
  msgstr "Hvor vil du promovere %s?"
2385
 
2386
  #: templates/forms/affiliation.php:179
2387
+ msgid ""
2388
+ "Enter the domain of your website or other websites from where you plan to "
2389
+ "promote the %s."
2390
+ msgstr ""
2391
 
2392
  #: templates/forms/affiliation.php:181
2393
  msgid "Add another domain"
2418
  msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2419
 
2420
  #: templates/forms/affiliation.php:210
2421
+ msgid ""
2422
+ "Please feel free to provide any relevant website or social media statistics,"
2423
+ " e.g. monthly unique site visits, number of email subscribers, followers, "
2424
+ "etc. (we will keep this information confidential)."
2425
+ msgstr ""
2426
 
2427
  #: templates/forms/affiliation.php:214
2428
  msgid "How will you promote us?"
2429
  msgstr "Hvordan vil du promovere os?"
2430
 
2431
  #: templates/forms/affiliation.php:217
2432
+ msgid ""
2433
+ "Please provide details on how you intend to promote %s (please be as "
2434
+ "specific as possible)."
2435
+ msgstr ""
2436
 
2437
  #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2438
  msgid "Cancel"
2442
  msgid "Become an affiliate"
2443
  msgstr "Bliv en affiliate"
2444
 
2445
+ #: templates/forms/license-activation.php:21
2446
+ msgid ""
2447
+ "Please enter the license key that you received in the email right after the "
2448
+ "purchase:"
2449
  msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:"
2450
 
2451
+ #: templates/forms/license-activation.php:26
2452
  msgid "Update License"
2453
  msgstr "Opdater licens"
2454
 
2463
  msgstr "Tilmeld"
2464
 
2465
  #: templates/forms/optout.php:33
2466
+ msgid ""
2467
+ "Usage tracking is done in the name of making %s better. Making a better user"
2468
+ " experience, prioritizing new features, and more good things. We'd really "
2469
+ "appreciate if you'll reconsider letting us continue with the tracking."
2470
+ msgstr ""
2471
 
2472
  #: templates/forms/optout.php:35
2473
+ msgid ""
2474
+ "By clicking \"Opt Out\", we will no longer be sending any data from %s to "
2475
+ "%s."
2476
  msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
2477
 
2478
  #: templates/forms/premium-versions-upgrade-handler.php:40
2481
 
2482
  #: templates/forms/premium-versions-upgrade-handler.php:41
2483
  msgid " %s to access version %s security & feature updates, and support."
2484
+ msgstr ""
2485
 
2486
  #: templates/forms/premium-versions-upgrade-handler.php:54
2487
  msgid "New Version Available"
2497
  msgstr "Send licensnøgle"
2498
 
2499
  #: templates/forms/resend-key.php:57
2500
+ msgid ""
2501
+ "Enter the email address you've used for the upgrade below and we will resend"
2502
+ " you the license key."
2503
  msgstr "Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi vil gensende licensnøglen til dig."
2504
 
2505
  #: templates/forms/subscription-cancellation.php:37
2506
+ msgid ""
2507
+ "Deactivating or uninstalling the %s will automatically disable the license, "
2508
+ "which you'll be able to use on another site."
2509
+ msgstr ""
2510
 
2511
  #: templates/forms/subscription-cancellation.php:47
2512
+ msgid ""
2513
+ "In case you are NOT planning on using this %s on this site (or any other "
2514
+ "site) - would you like to cancel the %s as well?"
2515
+ msgstr ""
2516
 
2517
  #: templates/forms/subscription-cancellation.php:52
2518
  msgid "license"
2519
+ msgstr ""
2520
 
2521
  #: templates/forms/subscription-cancellation.php:57
2522
+ msgid ""
2523
+ "Cancel %s - I no longer need any security & feature updates, nor support for"
2524
+ " %s because I'm not planning to use the %s on this, or any other site."
2525
+ msgstr ""
2526
 
2527
  #: templates/forms/subscription-cancellation.php:68
2528
+ msgid ""
2529
+ "Don't cancel %s - I'm still interested in getting security & feature "
2530
+ "updates, as well as be able to contact support."
2531
+ msgstr ""
2532
+
2533
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2534
+ #. subscription'
2535
+ #: templates/forms/subscription-cancellation.php99,
2536
+ #: templates/account/partials/addon.php29,
2537
+ #: templates/account/partials/site.php:298
2538
+ msgid ""
2539
+ "%1$s will immediately stop all future recurring payments and your %s plan "
2540
+ "license will expire in %s."
2541
+ msgstr ""
2542
 
2543
  #: templates/forms/subscription-cancellation.php:103
2544
+ msgid ""
2545
+ "Once your license expires you will no longer be able to use the %s, unless "
2546
+ "you activate it again with a valid premium license."
2547
+ msgstr ""
2548
 
2549
  #: templates/forms/subscription-cancellation.php:136
2550
  msgid "Cancel %s?"
2551
+ msgstr ""
2552
 
2553
  #: templates/forms/subscription-cancellation.php:143
2554
  msgid "Proceed"
2555
+ msgstr ""
2556
 
2557
  #: templates/forms/subscription-cancellation.php191,
2558
+ #: templates/forms/deactivation/form.php:171
2559
  msgid "Cancel %s & Proceed"
2560
+ msgstr ""
2561
 
2562
  #: templates/forms/trial-start.php:22
2563
+ msgid ""
2564
+ "You are 1-click away from starting your %1$s-day free trial of the %2$s "
2565
+ "plan."
2566
  msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
2567
 
2568
  #: templates/forms/trial-start.php:28
2569
+ msgid ""
2570
+ "For compliance with the WordPress.org guidelines, before we start the trial "
2571
+ "we ask that you opt in with your user and non-sensitive site information, "
2572
+ "allowing the %s to periodically send data to %s to check for version updates"
2573
+ " and to validate your trial."
2574
+ msgstr ""
2575
 
2576
+ #: templates/js/style-premium-theme.php:39
2577
  msgid "Premium"
2578
  msgstr "Premium"
2579
 
2580
+ #: templates/js/style-premium-theme.php:42
2581
+ msgid "Beta"
2582
+ msgstr ""
2583
+
2584
+ #: templates/partials/network-activation.php:27
2585
  msgid "Activate license on all sites in the network."
2586
  msgstr "Aktiver licens på alle websteder i netværket."
2587
 
2588
+ #: templates/partials/network-activation.php:28
2589
  msgid "Apply on all sites in the network."
2590
  msgstr "Anvend på alle websteder i netværket."
2591
 
2592
+ #: templates/partials/network-activation.php:31
2593
  msgid "Activate license on all pending sites."
2594
  msgstr "Akiver licens på alle afventende websteder."
2595
 
2596
+ #: templates/partials/network-activation.php:32
2597
  msgid "Apply on all pending sites."
2598
  msgstr "Anvend på alle afventende websteder."
2599
 
2600
+ #: templates/partials/network-activation.php40,
2601
+ #: templates/partials/network-activation.php:74
2602
  msgid "allow"
2603
  msgstr "tillad"
2604
 
2605
+ #: templates/partials/network-activation.php43,
2606
+ #: templates/partials/network-activation.php:77
2607
  msgid "delegate"
2608
  msgstr "delegér"
2609
 
2610
+ #: templates/partials/network-activation.php47,
2611
+ #: templates/partials/network-activation.php:81
2612
  msgid "skip"
2613
  msgstr "spring over"
2614
 
2634
  msgid "Last license"
2635
  msgstr "Seneste license"
2636
 
2637
+ #: templates/account/partials/addon.php:167
2638
  msgid "Cancelled"
2639
  msgstr "Annulleret"
2640
 
2641
+ #: templates/account/partials/addon.php:177
2642
  msgid "No expiration"
2643
  msgstr "Udløber ikke"
2644
 
 
 
 
 
 
2645
  #: templates/account/partials/site.php:181
2646
  msgid "Owner Name"
2647
  msgstr "Ejer-navn"
2659
  msgstr "Abonnement"
2660
 
2661
  #: templates/forms/deactivation/contact.php:19
2662
+ msgid ""
2663
+ "Sorry for the inconvenience and we are here to help if you give us a chance."
2664
  msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
2665
 
2666
  #: templates/forms/deactivation/contact.php:22
2667
  msgid "Contact Support"
2668
  msgstr "Kontakt support"
2669
 
2670
+ #: templates/forms/deactivation/form.php:64
2671
  msgid "Anonymous feedback"
2672
  msgstr "Anonym feedback"
2673
 
2674
+ #: templates/forms/deactivation/form.php:70
2675
  msgid "Deactivate"
2676
  msgstr "Deaktiver"
2677
 
2678
+ #: templates/forms/deactivation/form.php:72
2679
  msgid "Activate %s"
2680
  msgstr "Aktiver %s"
2681
 
2682
+ #: templates/forms/deactivation/form.php:87
2683
  msgid "Quick Feedback"
2684
+ msgstr ""
2685
 
2686
+ #: templates/forms/deactivation/form.php:91
2687
  msgid "If you have a moment, please let us know why you are %s"
2688
  msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
2689
 
2690
+ #: templates/forms/deactivation/form.php:91
2691
  msgid "deactivating"
2692
  msgstr "deaktiverer"
2693
 
2694
+ #: templates/forms/deactivation/form.php:91
2695
  msgid "switching"
2696
  msgstr "skifter"
2697
 
2698
+ #: templates/forms/deactivation/form.php:365
2699
  msgid "Submit & %s"
2700
  msgstr "Send & %s"
2701
 
2702
+ #: templates/forms/deactivation/form.php:386
2703
  msgid "Kindly tell us the reason so we can improve."
2704
  msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2705
 
2706
+ #: templates/forms/deactivation/form.php:511
2707
  msgid "Yes - %s"
2708
  msgstr "Ja - %s"
2709
 
2710
+ #: templates/forms/deactivation/form.php:518
2711
  msgid "Skip & %s"
2712
  msgstr "Spring over & %s"
2713
 
2716
  msgstr "Klik her for at benytte pluginnet anonymt"
2717
 
2718
  #: templates/forms/deactivation/retry-skip.php:23
2719
+ msgid ""
2720
+ "You might have missed it, but you don't have to share any data and can just "
2721
+ "%s the opt-in."
2722
  msgstr "Du har måske overset det, men du behøver ikke at dele data og kan blot %s tilmeldingen."
vendor/freemius/wordpress-sdk/languages/freemius-en.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-en.po CHANGED
@@ -19,736 +19,755 @@ msgstr ""
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
23
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
24
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
25
 
26
- #: includes/class-freemius.php:1690
27
  msgid "Error"
28
  msgstr "Error"
29
 
30
- #: includes/class-freemius.php:2011
31
  msgid "I found a better %s"
32
  msgstr "I found a better %s"
33
 
34
- #: includes/class-freemius.php:2013
35
  msgid "What's the %s's name?"
36
  msgstr "What's the %s's name?"
37
 
38
- #: includes/class-freemius.php:2019
39
  msgid "It's a temporary %s. I'm just debugging an issue."
40
  msgstr "It's a temporary %s. I'm just debugging an issue."
41
 
42
- #: includes/class-freemius.php:2021
43
  msgid "Deactivation"
44
  msgstr "Deactivation"
45
 
46
- #: includes/class-freemius.php:2022
47
  msgid "Theme Switch"
48
  msgstr "Theme Switch"
49
 
50
- #: includes/class-freemius.php:2031, templates/forms/resend-key.php:24
51
  msgid "Other"
52
  msgstr "Other"
53
 
54
- #: includes/class-freemius.php:2039
55
  msgid "I no longer need the %s"
56
  msgstr "I no longer need the %s"
57
 
58
- #: includes/class-freemius.php:2046
59
  msgid "I only needed the %s for a short period"
60
  msgstr "I only needed the %s for a short period"
61
 
62
- #: includes/class-freemius.php:2052
63
  msgid "The %s broke my site"
64
  msgstr "The %s broke my site"
65
 
66
- #: includes/class-freemius.php:2059
67
  msgid "The %s suddenly stopped working"
68
  msgstr "The %s suddenly stopped working"
69
 
70
- #: includes/class-freemius.php:2069
71
  msgid "I can't pay for it anymore"
72
  msgstr "I can't pay for it anymore"
73
 
74
- #: includes/class-freemius.php:2071
75
  msgid "What price would you feel comfortable paying?"
76
  msgstr "What price would you feel comfortable paying?"
77
 
78
- #: includes/class-freemius.php:2077
79
  msgid "I don't like to share my information with you"
80
  msgstr "I don't like to share my information with you"
81
 
82
- #: includes/class-freemius.php:2098
83
  msgid "The %s didn't work"
84
  msgstr "The %s didn't work"
85
 
86
- #: includes/class-freemius.php:2108
87
  msgid "I couldn't understand how to make it work"
88
  msgstr "I couldn't understand how to make it work"
89
 
90
- #: includes/class-freemius.php:2116
91
  msgid "The %s is great, but I need specific feature that you don't support"
92
  msgstr "The %s is great, but I need specific feature that you don't support"
93
 
94
- #: includes/class-freemius.php:2118
95
  msgid "What feature?"
96
  msgstr "What feature?"
97
 
98
- #: includes/class-freemius.php:2122
99
  msgid "The %s is not working"
100
  msgstr "The %s is not working"
101
 
102
- #: includes/class-freemius.php:2124
103
  msgid "Kindly share what didn't work so we can fix it for future users..."
104
  msgstr "Kindly share what didn't work so we can fix it for future users..."
105
 
106
- #: includes/class-freemius.php:2128
107
  msgid "It's not what I was looking for"
108
  msgstr "It's not what I was looking for"
109
 
110
- #: includes/class-freemius.php:2130
111
  msgid "What you've been looking for?"
112
  msgstr "What you've been looking for?"
113
 
114
- #: includes/class-freemius.php:2134
115
  msgid "The %s didn't work as expected"
116
  msgstr "The %s didn't work as expected"
117
 
118
- #: includes/class-freemius.php:2136
119
  msgid "What did you expect?"
120
  msgstr "What did you expect?"
121
 
122
- #: includes/class-freemius.php:2942, templates/debug.php:20
123
  msgid "Freemius Debug"
124
  msgstr "Freemius Debug"
125
 
126
- #: includes/class-freemius.php:3670
127
  msgid "I don't know what is cURL or how to install it, help me!"
128
  msgstr "I don't know what is cURL or how to install it, help me!"
129
 
130
- #: includes/class-freemius.php:3672
131
  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."
132
  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."
133
 
134
- #: includes/class-freemius.php:3679
135
  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."
136
  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."
137
 
138
- #: includes/class-freemius.php:3784
139
  msgid "Yes - do your thing"
140
  msgstr "Yes - do your thing"
141
 
142
- #: includes/class-freemius.php:3789
143
  msgid "No - just deactivate"
144
  msgstr "No - just deactivate"
145
 
146
- #: includes/class-freemius.php:3834, includes/class-freemius.php:4343, includes/class-freemius.php:5442, includes/class-freemius.php:11545, includes/class-freemius.php:14916, includes/class-freemius.php:14968, includes/class-freemius.php:15030, includes/class-freemius.php:17263, includes/class-freemius.php:17273, includes/class-freemius.php:17882, includes/class-freemius.php:18742, includes/class-freemius.php:18857, includes/class-freemius.php:19001, templates/add-ons.php:43
147
  msgctxt "exclamation"
148
  msgid "Oops"
149
  msgstr "Oops"
150
 
151
- #: includes/class-freemius.php:3903
152
  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."
153
  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."
154
 
155
- #: includes/class-freemius.php:4340
156
  msgctxt "addonX cannot run without pluginY"
157
  msgid "%s cannot run without %s."
158
  msgstr "%s cannot run without %s."
159
 
160
- #: includes/class-freemius.php:4341
161
  msgctxt "addonX cannot run..."
162
  msgid "%s cannot run without the plugin."
163
  msgstr "%s cannot run without the plugin."
164
 
165
- #: includes/class-freemius.php:4487, includes/class-freemius.php:4512, includes/class-freemius.php:17953
166
  msgid "Unexpected API error. Please contact the %s's author with the following error."
167
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
168
 
169
- #: includes/class-freemius.php:5130
170
  msgid "Premium %s version was successfully activated."
171
  msgstr "Premium %s version was successfully activated."
172
 
173
- #: includes/class-freemius.php:5142, includes/class-freemius.php:7004
174
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
175
  msgid "W00t"
176
  msgstr "W00t"
177
 
178
- #: includes/class-freemius.php:5157
179
  msgid "You have a %s license."
180
  msgstr "You have a %s license."
181
 
182
- #: includes/class-freemius.php:5161, includes/class-freemius.php:14337, includes/class-freemius.php:14348, includes/class-freemius.php:17177, includes/class-freemius.php:17491, includes/class-freemius.php:17557, includes/class-freemius.php:17707
183
  msgctxt "interjection expressing joy or exuberance"
184
  msgid "Yee-haw"
185
  msgstr "Yee-haw"
186
 
187
- #: includes/class-freemius.php:5425
188
  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."
189
  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."
190
 
191
- #: includes/class-freemius.php:5429
192
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
193
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
194
 
195
- #: includes/class-freemius.php:5438, templates/add-ons.php:103, templates/account/partials/addon.php:288
196
  msgid "More information about %s"
197
  msgstr "More information about %s"
198
 
199
- #: includes/class-freemius.php:5439
200
  msgid "Purchase License"
201
  msgstr "Purchase License"
202
 
203
- #: includes/class-freemius.php:6372, templates/connect.php:163
204
  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."
205
  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."
206
 
207
- #: includes/class-freemius.php:6376
208
  msgid "start the trial"
209
  msgstr "start the trial"
210
 
211
- #: includes/class-freemius.php:6377, templates/connect.php:167
212
  msgid "complete the install"
213
  msgstr "complete the install"
214
 
215
- #: includes/class-freemius.php:6490
216
  msgid "You are just one step away - %s"
217
  msgstr "You are just one step away - %s"
218
 
219
- #: includes/class-freemius.php:6493
220
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
221
  msgid "Complete \"%s\" Activation Now"
222
  msgstr "Complete \"%s\" Activation Now"
223
 
224
- #: includes/class-freemius.php:6571
225
  msgid "We made a few tweaks to the %s, %s"
226
  msgstr "We made a few tweaks to the %s, %s"
227
 
228
- #: includes/class-freemius.php:6575
229
  msgid "Opt in to make \"%s\" better!"
230
  msgstr "Opt in to make \"%s\" better!"
231
 
232
- #: includes/class-freemius.php:7003
233
  msgid "The upgrade of %s was successfully completed."
234
  msgstr "The upgrade of %s was successfully completed."
235
 
236
- #: includes/class-freemius.php:8925, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32
237
  msgid "Add-On"
238
  msgstr "Add-On"
239
 
240
- #: includes/class-freemius.php:8927, templates/debug.php:359, templates/debug.php:520
241
  msgid "Plugin"
242
  msgstr "Plugin"
243
 
244
- #: includes/class-freemius.php:8928, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
245
  msgid "Theme"
246
  msgstr "Theme"
247
 
248
- #: includes/class-freemius.php:11412
 
 
 
 
249
  msgid "Invalid site details collection."
250
  msgstr "Invalid site details collection."
251
 
252
- #: includes/class-freemius.php:11532
253
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
254
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
255
 
256
- #: includes/class-freemius.php:11534
257
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
258
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
259
 
260
- #: includes/class-freemius.php:11808
261
  msgid "Account is pending activation."
262
  msgstr "Account is pending activation."
263
 
264
- #: includes/class-freemius.php:11920, templates/forms/premium-versions-upgrade-handler.php:47
265
  msgid "Buy a license now"
266
  msgstr "Buy a license now"
267
 
268
- #: includes/class-freemius.php:11932, templates/forms/premium-versions-upgrade-handler.php:46
269
  msgid "Renew your license now"
270
  msgstr "Renew your license now"
271
 
272
- #: includes/class-freemius.php:11936
273
  msgid "%s to access version %s security & feature updates, and support."
274
  msgstr "%s to access version %s security & feature updates, and support."
275
 
276
- #: includes/class-freemius.php:14319
277
  msgid "%s activation was successfully completed."
278
  msgstr "%s activation was successfully completed."
279
 
280
- #: includes/class-freemius.php:14333
281
  msgid "Your account was successfully activated with the %s plan."
282
  msgstr "Your account was successfully activated with the %s plan."
283
 
284
- #: includes/class-freemius.php:14344, includes/class-freemius.php:17553
285
  msgid "Your trial has been successfully started."
286
  msgstr "Your trial has been successfully started."
287
 
288
- #: includes/class-freemius.php:14914, includes/class-freemius.php:14966, includes/class-freemius.php:15028
289
  msgid "Couldn't activate %s."
290
  msgstr "Couldn't activate %s."
291
 
292
- #: includes/class-freemius.php:14915, includes/class-freemius.php:14967, includes/class-freemius.php:15029
293
  msgid "Please contact us with the following message:"
294
  msgstr "Please contact us with the following message:"
295
 
296
- #: includes/class-freemius.php:15378, includes/class-freemius.php:19839
 
 
 
 
297
  msgid "Upgrade"
298
  msgstr "Upgrade"
299
 
300
- #: includes/class-freemius.php:15384
301
  msgid "Start Trial"
302
  msgstr "Start Trial"
303
 
304
- #: includes/class-freemius.php:15386
305
  msgid "Pricing"
306
  msgstr "Pricing"
307
 
308
- #: includes/class-freemius.php:15448, includes/class-freemius.php:15450
309
  msgid "Affiliation"
310
  msgstr "Affiliation"
311
 
312
- #: includes/class-freemius.php:15478, includes/class-freemius.php:15480, templates/account.php:150, templates/debug.php:324
313
  msgid "Account"
314
  msgstr "Account"
315
 
316
- #: includes/class-freemius.php:15493, includes/class-freemius.php:15495, includes/customizer/class-fs-customizer-support-section.php:60
317
  msgid "Contact Us"
318
  msgstr "Contact Us"
319
 
320
- #: includes/class-freemius.php:15505, includes/class-freemius.php:15507, includes/class-freemius.php:19849, templates/account.php:100, templates/account/partials/addon.php:41
321
  msgid "Add-Ons"
322
  msgstr "Add-Ons"
323
 
324
- #: includes/class-freemius.php:15541
325
  msgctxt "ASCII arrow left icon"
326
  msgid "&#x2190;"
327
  msgstr "&#x2190;"
328
 
329
- #: includes/class-freemius.php:15541
330
  msgctxt "ASCII arrow right icon"
331
  msgid "&#x27a4;"
332
  msgstr "&#x27a4;"
333
 
334
- #: includes/class-freemius.php:15543, templates/pricing.php:97
335
  msgctxt "noun"
336
  msgid "Pricing"
337
  msgstr "Pricing"
338
 
339
- #: includes/class-freemius.php:15756, includes/customizer/class-fs-customizer-support-section.php:67
340
  msgid "Support Forum"
341
  msgstr "Support Forum"
342
 
343
- #: includes/class-freemius.php:16542
344
  msgid "Your email has been successfully verified - you are AWESOME!"
345
  msgstr "Your email has been successfully verified - you are AWESOME!"
346
 
347
- #: includes/class-freemius.php:16543
348
  msgctxt "a positive response"
349
  msgid "Right on"
350
  msgstr "Right on"
351
 
352
- #: includes/class-freemius.php:17168
353
  msgid "Your %s Add-on plan was successfully upgraded."
354
  msgstr "Your %s Add-on plan was successfully upgraded."
355
 
356
- #: includes/class-freemius.php:17170
357
  msgid "%s Add-on was successfully purchased."
358
  msgstr "%s Add-on was successfully purchased."
359
 
360
- #: includes/class-freemius.php:17173
361
  msgid "Download the latest version"
362
  msgstr "Download the latest version"
363
 
364
- #: includes/class-freemius.php:17259
365
- msgctxt "%1s - plugin title, %2s - API domain"
366
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
368
 
369
- #: includes/class-freemius.php:17262, includes/class-freemius.php:17678, includes/class-freemius.php:17755
370
  msgid "Error received from the server:"
371
  msgstr "Error received from the server:"
372
 
373
- #: includes/class-freemius.php:17272
374
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
 
377
- #: includes/class-freemius.php:17454, includes/class-freemius.php:17683, includes/class-freemius.php:17726, includes/class-freemius.php:17829
378
  msgctxt "something somebody says when they are thinking about what you have just said."
379
  msgid "Hmm"
380
  msgstr "Hmm"
381
 
382
- #: includes/class-freemius.php:17467
383
  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."
384
  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."
385
 
386
- #: includes/class-freemius.php:17468, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
387
  msgctxt "trial period"
388
  msgid "Trial"
389
  msgstr "Trial"
390
 
391
- #: includes/class-freemius.php:17473
392
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
393
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
 
395
- #: includes/class-freemius.php:17477, includes/class-freemius.php:17535
396
  msgid "Please contact us here"
397
  msgstr "Please contact us here"
398
 
399
- #: includes/class-freemius.php:17487
 
 
 
 
400
  msgid "Your plan was successfully upgraded."
401
  msgstr "Your plan was successfully upgraded."
402
 
403
- #: includes/class-freemius.php:17505
404
  msgid "Your plan was successfully changed to %s."
405
  msgstr "Your plan was successfully changed to %s."
406
 
407
- #: includes/class-freemius.php:17521
408
  msgid "Your license has expired. You can still continue using the free %s forever."
409
  msgstr "Your license has expired. You can still continue using the free %s forever."
410
 
411
- #: includes/class-freemius.php:17523
412
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
413
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
414
 
415
- #: includes/class-freemius.php:17531
416
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
417
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
418
 
419
- #: includes/class-freemius.php:17544
420
  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."
421
  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."
422
 
423
- #: includes/class-freemius.php:17567
424
  msgid "Your free trial has expired. You can still continue using all our free features."
425
  msgstr "Your free trial has expired. You can still continue using all our free features."
426
 
427
- #: includes/class-freemius.php:17569
428
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
429
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
430
 
431
- #: includes/class-freemius.php:17674
432
  msgid "It looks like the license could not be activated."
433
  msgstr "It looks like the license could not be activated."
434
 
435
- #: includes/class-freemius.php:17704
436
  msgid "Your license was successfully activated."
437
  msgstr "Your license was successfully activated."
438
 
439
- #: includes/class-freemius.php:17730
440
  msgid "It looks like your site currently doesn't have an active license."
441
  msgstr "It looks like your site currently doesn't have an active license."
442
 
443
- #: includes/class-freemius.php:17754
444
  msgid "It looks like the license deactivation failed."
445
  msgstr "It looks like the license deactivation failed."
446
 
447
- #: includes/class-freemius.php:17782
448
  msgid "Your license was successfully deactivated, you are back to the %s plan."
449
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
450
 
451
- #: includes/class-freemius.php:17783
452
  msgid "O.K"
453
  msgstr "O.K"
454
 
455
- #: includes/class-freemius.php:17836
456
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
457
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
458
 
459
- #: includes/class-freemius.php:17845
460
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
461
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
462
 
463
- #: includes/class-freemius.php:17887
464
  msgid "You are already running the %s in a trial mode."
465
  msgstr "You are already running the %s in a trial mode."
466
 
467
- #: includes/class-freemius.php:17898
468
  msgid "You already utilized a trial before."
469
  msgstr "You already utilized a trial before."
470
 
471
- #: includes/class-freemius.php:17912
472
  msgid "Plan %s do not exist, therefore, can't start a trial."
473
  msgstr "Plan %s do not exist, therefore, can't start a trial."
474
 
475
- #: includes/class-freemius.php:17923
476
  msgid "Plan %s does not support a trial period."
477
  msgstr "Plan %s does not support a trial period."
478
 
479
- #: includes/class-freemius.php:17934
480
  msgid "None of the %s's plans supports a trial period."
481
  msgstr "None of the %s's plans supports a trial period."
482
 
483
- #: includes/class-freemius.php:17984
484
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
485
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
486
 
487
- #: includes/class-freemius.php:18020
488
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
489
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
490
 
491
- #: includes/class-freemius.php:18039
492
  msgid "Your %s free trial was successfully cancelled."
493
  msgstr "Your %s free trial was successfully cancelled."
494
 
495
- #: includes/class-freemius.php:18346
496
  msgid "Version %s was released."
497
  msgstr "Version %s was released."
498
 
499
- #: includes/class-freemius.php:18346
500
  msgid "Please download %s."
501
  msgstr "Please download %s."
502
 
503
- #: includes/class-freemius.php:18353
504
  msgid "the latest %s version here"
505
  msgstr "the latest %s version here"
506
 
507
- #: includes/class-freemius.php:18358
508
  msgid "New"
509
  msgstr "New"
510
 
511
- #: includes/class-freemius.php:18363
512
  msgid "Seems like you got the latest release."
513
  msgstr "Seems like you got the latest release."
514
 
515
- #: includes/class-freemius.php:18364
516
  msgid "You are all good!"
517
  msgstr "You are all good!"
518
 
519
- #: includes/class-freemius.php:18632
520
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
521
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
522
 
523
- #: includes/class-freemius.php:18769
524
  msgid "Site successfully opted in."
525
  msgstr "Site successfully opted in."
526
 
527
- #: includes/class-freemius.php:18770, includes/class-freemius.php:19581
528
  msgid "Awesome"
529
  msgstr "Awesome"
530
 
531
- #: includes/class-freemius.php:18786, templates/forms/optout.php:32
532
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
533
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
534
 
535
- #: includes/class-freemius.php:18787
536
  msgid "Thank you!"
537
  msgstr "Thank you!"
538
 
539
- #: includes/class-freemius.php:18794
540
  msgid "We will no longer be sending any usage data of %s on %s to %s."
541
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
542
 
543
- #: includes/class-freemius.php:18923
544
  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."
545
  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."
546
 
547
- #: includes/class-freemius.php:18929
548
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
549
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
550
 
551
- #: includes/class-freemius.php:18934
552
  msgid "%s is the new owner of the account."
553
  msgstr "%s is the new owner of the account."
554
 
555
- #: includes/class-freemius.php:18936
556
  msgctxt "as congratulations"
557
  msgid "Congrats"
558
  msgstr "Congrats"
559
 
560
- #: includes/class-freemius.php:18956
561
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
562
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
563
 
564
- #: includes/class-freemius.php:18957
565
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
566
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
567
 
568
- #: includes/class-freemius.php:18964
569
  msgid "Change Ownership"
570
  msgstr "Change Ownership"
571
 
572
- #: includes/class-freemius.php:18972
573
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
574
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
575
 
576
- #: includes/class-freemius.php:18984
577
  msgid "Please provide your full name."
578
  msgstr "Please provide your full name."
579
 
580
- #: includes/class-freemius.php:18989
581
  msgid "Your name was successfully updated."
582
  msgstr "Your name was successfully updated."
583
 
584
- #: includes/class-freemius.php:19050
585
  msgid "You have successfully updated your %s."
586
  msgstr "You have successfully updated your %s."
587
 
588
- #: includes/class-freemius.php:19190
589
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
590
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
591
 
592
- #: includes/class-freemius.php:19191
593
  msgctxt "advance notice of something that will need attention."
594
  msgid "Heads up"
595
  msgstr "Heads up"
596
 
597
- #: includes/class-freemius.php:19621
598
  msgctxt "exclamation"
599
  msgid "Hey"
600
  msgstr "Hey"
601
 
602
- #: includes/class-freemius.php:19621
603
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
604
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
605
 
606
- #: includes/class-freemius.php:19629
607
  msgid "No commitment for %s days - cancel anytime!"
608
  msgstr "No commitment for %s days - cancel anytime!"
609
 
610
- #: includes/class-freemius.php:19630
611
  msgid "No credit card required"
612
  msgstr "No credit card required"
613
 
614
- #: includes/class-freemius.php:19637, templates/forms/trial-start.php:53
615
  msgctxt "call to action"
616
  msgid "Start free trial"
617
  msgstr "Start free trial"
618
 
619
- #: includes/class-freemius.php:19714
620
  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!"
621
  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!"
622
 
623
- #: includes/class-freemius.php:19723
624
  msgid "Learn more"
625
  msgstr "Learn more"
626
 
627
- #: includes/class-freemius.php:19873, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
628
  msgid "Activate License"
629
  msgstr "Activate License"
630
 
631
- #: includes/class-freemius.php:19874, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
632
  msgid "Change License"
633
  msgstr "Change License"
634
 
635
- #: includes/class-freemius.php:19956, templates/account/partials/site.php:161
636
  msgid "Opt Out"
637
  msgstr "Opt Out"
638
 
639
- #: includes/class-freemius.php:19958, includes/class-freemius.php:19963, templates/account/partials/site.php:43, templates/account/partials/site.php:161
640
  msgid "Opt In"
641
  msgstr "Opt In"
642
 
643
- #: includes/class-freemius.php:20187
644
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
645
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
646
 
647
- #: includes/class-freemius.php:20195
648
  msgid "Activate %s features"
649
  msgstr "Activate %s features"
650
 
651
- #: includes/class-freemius.php:20208
652
  msgid "Please follow these steps to complete the upgrade"
653
  msgstr "Please follow these steps to complete the upgrade"
654
 
655
- #: includes/class-freemius.php:20212
656
  msgid "Download the latest %s version"
657
  msgstr "Download the latest %s version"
658
 
659
- #: includes/class-freemius.php:20216
660
  msgid "Upload and activate the downloaded version"
661
  msgstr "Upload and activate the downloaded version"
662
 
663
- #: includes/class-freemius.php:20218
664
  msgid "How to upload and activate?"
665
  msgstr "How to upload and activate?"
666
 
667
- #: includes/class-freemius.php:20352
668
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
669
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
670
 
671
- #: includes/class-freemius.php:20513
672
  msgid "Auto installation only works for opted-in users."
673
  msgstr "Auto installation only works for opted-in users."
674
 
675
- #: includes/class-freemius.php:20523, includes/class-freemius.php:20556, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074
676
  msgid "Invalid module ID."
677
  msgstr "Invalid module ID."
678
 
679
- #: includes/class-freemius.php:20532, includes/class-fs-plugin-updater.php:1096
680
  msgid "Premium version already active."
681
  msgstr "Premium version already active."
682
 
683
- #: includes/class-freemius.php:20539
684
  msgid "You do not have a valid license to access the premium version."
685
  msgstr "You do not have a valid license to access the premium version."
686
 
687
- #: includes/class-freemius.php:20546
688
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
689
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
690
 
691
- #: includes/class-freemius.php:20564, includes/class-fs-plugin-updater.php:1095
692
  msgid "Premium add-on version already installed."
693
  msgstr "Premium add-on version already installed."
694
 
695
- #: includes/class-freemius.php:20909
696
  msgid "View paid features"
697
  msgstr "View paid features"
698
 
699
- #: includes/class-freemius.php:21229
700
  msgid "Thank you so much for using %s and its add-ons!"
701
  msgstr "Thank you so much for using %s and its add-ons!"
702
 
703
- #: includes/class-freemius.php:21230
704
  msgid "Thank you so much for using %s!"
705
  msgstr "Thank you so much for using %s!"
706
 
707
- #: includes/class-freemius.php:21236
708
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
709
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
710
 
711
- #: includes/class-freemius.php:21240
712
  msgid "Thank you so much for using our products!"
713
  msgstr "Thank you so much for using our products!"
714
 
715
- #: includes/class-freemius.php:21241
716
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
717
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
718
 
719
- #: includes/class-freemius.php:21260
720
  msgid "%s and its add-ons"
721
  msgstr "%s and its add-ons"
722
 
723
- #: includes/class-freemius.php:21269
724
  msgid "Products"
725
  msgstr "Products"
726
 
727
- #: includes/class-freemius.php:21276, templates/connect.php:272
728
  msgid "Yes"
729
  msgstr "Yes"
730
 
731
- #: includes/class-freemius.php:21277, templates/connect.php:273
732
  msgid "send me security & feature updates, educational content and offers."
733
  msgstr "send me security & feature updates, educational content and offers."
734
 
735
- #: includes/class-freemius.php:21278, templates/connect.php:278
736
  msgid "No"
737
  msgstr "No"
738
 
739
- #: includes/class-freemius.php:21280, templates/connect.php:280
740
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
741
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
742
 
743
- #: includes/class-freemius.php:21290
744
- 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 🙂"
745
- 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 🙂"
746
 
747
- #: includes/class-freemius.php:21292, templates/connect.php:287
748
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
749
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
750
 
751
- #: includes/class-freemius.php:21574
752
  msgid "License key is empty."
753
  msgstr "License key is empty."
754
 
@@ -760,576 +779,622 @@ msgstr "Renew license"
760
  msgid "Buy license"
761
  msgstr "Buy license"
762
 
763
- #: includes/class-fs-plugin-updater.php:278
764
  msgid "There is a %s of %s available."
765
  msgstr "There is a %s of %s available."
766
 
767
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
768
  msgid "new version"
769
  msgstr "new version"
770
 
771
- #: includes/class-fs-plugin-updater.php:305
772
  msgid "Important Upgrade Notice:"
773
  msgstr "Important Upgrade Notice:"
774
 
775
- #: includes/class-fs-plugin-updater.php:1125
776
  msgid "Installing plugin: %s"
777
  msgstr "Installing plugin: %s"
778
 
779
- #: includes/class-fs-plugin-updater.php:1166
780
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
781
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
782
 
783
- #: includes/class-fs-plugin-updater.php:1348
784
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
785
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
786
 
787
- #: includes/fs-plugin-info-dialog.php:369, templates/account/partials/addon.php:292
 
 
 
 
788
  msgctxt "verb"
789
  msgid "Purchase"
790
  msgstr "Purchase"
791
 
792
- #: includes/fs-plugin-info-dialog.php:372
793
  msgid "Start my free %s"
794
  msgstr "Start my free %s"
795
 
796
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
797
  msgid "Install Free Version Now"
798
  msgstr "Install Free Version Now"
799
 
800
- #: includes/fs-plugin-info-dialog.php:414, templates/auto-installation.php:111, templates/account/partials/addon.php:272, templates/account/partials/addon.php:322
801
  msgid "Install Now"
802
  msgstr "Install Now"
803
 
804
- #: includes/fs-plugin-info-dialog.php:425
805
  msgctxt "as download latest version"
806
  msgid "Download Latest Free Version"
807
  msgstr "Download Latest Free Version"
808
 
809
- #: includes/fs-plugin-info-dialog.php:426, templates/account.php:80, templates/account/partials/addon.php:21
810
  msgctxt "as download latest version"
811
  msgid "Download Latest"
812
  msgstr "Download Latest"
813
 
814
- #: includes/fs-plugin-info-dialog.php:436
815
- msgid "Install Free Version Update Now"
816
- msgstr "Install Free Version Update Now"
817
-
818
- #: includes/fs-plugin-info-dialog.php:437, templates/account.php:460
819
- msgid "Install Update Now"
820
- msgstr "Install Update Now"
821
-
822
- #: includes/fs-plugin-info-dialog.php:448
823
- msgid "Newer Free Version (%s) Installed"
824
- msgstr "Newer Free Version (%s) Installed"
825
-
826
- #: includes/fs-plugin-info-dialog.php:449
827
- msgid "Newer Version (%s) Installed"
828
- msgstr "Newer Version (%s) Installed"
829
 
830
- #: includes/fs-plugin-info-dialog.php:457
831
- msgid "Latest Free Version Installed"
832
- msgstr "Latest Free Version Installed"
833
 
834
- #: includes/fs-plugin-info-dialog.php:458
835
- msgid "Latest Version Installed"
836
- msgstr "Latest Version Installed"
837
 
838
- #: includes/fs-plugin-info-dialog.php:613
839
  msgctxt "Plugin installer section title"
840
  msgid "Description"
841
  msgstr "Description"
842
 
843
- #: includes/fs-plugin-info-dialog.php:614
844
  msgctxt "Plugin installer section title"
845
  msgid "Installation"
846
  msgstr "Installation"
847
 
848
- #: includes/fs-plugin-info-dialog.php:615
849
  msgctxt "Plugin installer section title"
850
  msgid "FAQ"
851
  msgstr "FAQ"
852
 
853
- #: includes/fs-plugin-info-dialog.php:616, templates/plugin-info/description.php:55
854
  msgid "Screenshots"
855
  msgstr "Screenshots"
856
 
857
- #: includes/fs-plugin-info-dialog.php:617
858
  msgctxt "Plugin installer section title"
859
  msgid "Changelog"
860
  msgstr "Changelog"
861
 
862
- #: includes/fs-plugin-info-dialog.php:618
863
  msgctxt "Plugin installer section title"
864
  msgid "Reviews"
865
  msgstr "Reviews"
866
 
867
- #: includes/fs-plugin-info-dialog.php:619
868
  msgctxt "Plugin installer section title"
869
  msgid "Other Notes"
870
  msgstr "Other Notes"
871
 
872
- #: includes/fs-plugin-info-dialog.php:634
873
  msgctxt "Plugin installer section title"
874
  msgid "Features & Pricing"
875
  msgstr "Features & Pricing"
876
 
877
- #: includes/fs-plugin-info-dialog.php:644
878
  msgid "Plugin Install"
879
  msgstr "Plugin Install"
880
 
881
- #: includes/fs-plugin-info-dialog.php:716
882
  msgctxt "e.g. Professional Plan"
883
  msgid "%s Plan"
884
  msgstr "%s Plan"
885
 
886
- #: includes/fs-plugin-info-dialog.php:742
887
  msgctxt "e.g. the best product"
888
  msgid "Best"
889
  msgstr "Best"
890
 
891
- #: includes/fs-plugin-info-dialog.php:748, includes/fs-plugin-info-dialog.php:768
892
  msgctxt "as every month"
893
  msgid "Monthly"
894
  msgstr "Monthly"
895
 
896
- #: includes/fs-plugin-info-dialog.php:751
897
  msgctxt "as once a year"
898
  msgid "Annual"
899
  msgstr "Annual"
900
 
901
- #: includes/fs-plugin-info-dialog.php:754
902
  msgid "Lifetime"
903
  msgstr "Lifetime"
904
 
905
- #: includes/fs-plugin-info-dialog.php:768, includes/fs-plugin-info-dialog.php:770, includes/fs-plugin-info-dialog.php:772
906
  msgctxt "e.g. billed monthly"
907
  msgid "Billed %s"
908
  msgstr "Billed %s"
909
 
910
- #: includes/fs-plugin-info-dialog.php:770
911
  msgctxt "as once a year"
912
  msgid "Annually"
913
  msgstr "Annually"
914
 
915
- #: includes/fs-plugin-info-dialog.php:772
916
  msgctxt "as once a year"
917
  msgid "Once"
918
  msgstr "Once"
919
 
920
- #: includes/fs-plugin-info-dialog.php:778
921
  msgid "Single Site License"
922
  msgstr "Single Site License"
923
 
924
- #: includes/fs-plugin-info-dialog.php:780
925
  msgid "Unlimited Licenses"
926
  msgstr "Unlimited Licenses"
927
 
928
- #: includes/fs-plugin-info-dialog.php:782
929
  msgid "Up to %s Sites"
930
  msgstr "Up to %s Sites"
931
 
932
- #: includes/fs-plugin-info-dialog.php:792, templates/plugin-info/features.php:82
933
  msgctxt "as monthly period"
934
  msgid "mo"
935
  msgstr "mo"
936
 
937
- #: includes/fs-plugin-info-dialog.php:799, templates/plugin-info/features.php:80
938
  msgctxt "as annual period"
939
  msgid "year"
940
  msgstr "year"
941
 
942
- #: includes/fs-plugin-info-dialog.php:853
943
  msgctxt "noun"
944
  msgid "Price"
945
  msgstr "Price"
946
 
947
- #: includes/fs-plugin-info-dialog.php:901
948
  msgid "Save %s"
949
  msgstr "Save %s"
950
 
951
- #: includes/fs-plugin-info-dialog.php:911
952
  msgid "No commitment for %s - cancel anytime"
953
  msgstr "No commitment for %s - cancel anytime"
954
 
955
- #: includes/fs-plugin-info-dialog.php:914
956
  msgid "After your free %s, pay as little as %s"
957
  msgstr "After your free %s, pay as little as %s"
958
 
959
- #: includes/fs-plugin-info-dialog.php:925
960
  msgid "Details"
961
  msgstr "Details"
962
 
963
- #: includes/fs-plugin-info-dialog.php:929, templates/account.php:91, templates/debug.php:201, templates/debug.php:238, templates/debug.php:452, templates/account/partials/addon.php:32
964
  msgctxt "product version"
965
  msgid "Version"
966
  msgstr "Version"
967
 
968
- #: includes/fs-plugin-info-dialog.php:936
969
  msgctxt "as the plugin author"
970
  msgid "Author"
971
  msgstr "Author"
972
 
973
- #: includes/fs-plugin-info-dialog.php:943
974
  msgid "Last Updated"
975
  msgstr "Last Updated"
976
 
977
- #: includes/fs-plugin-info-dialog.php:948, templates/account.php:376
978
  msgctxt "x-ago"
979
  msgid "%s ago"
980
  msgstr "%s ago"
981
 
982
- #: includes/fs-plugin-info-dialog.php:957
983
  msgid "Requires WordPress Version"
984
  msgstr "Requires WordPress Version"
985
 
986
- #: includes/fs-plugin-info-dialog.php:958
987
  msgid "%s or higher"
988
  msgstr "%s or higher"
989
 
990
- #: includes/fs-plugin-info-dialog.php:965
991
  msgid "Compatible up to"
992
  msgstr "Compatible up to"
993
 
994
- #: includes/fs-plugin-info-dialog.php:973
995
  msgid "Downloaded"
996
  msgstr "Downloaded"
997
 
998
- #: includes/fs-plugin-info-dialog.php:977
999
  msgid "%s time"
1000
  msgstr "%s time"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php:979
1003
  msgid "%s times"
1004
  msgstr "%s times"
1005
 
1006
- #: includes/fs-plugin-info-dialog.php:989
1007
  msgid "WordPress.org Plugin Page"
1008
  msgstr "WordPress.org Plugin Page"
1009
 
1010
- #: includes/fs-plugin-info-dialog.php:997
1011
  msgid "Plugin Homepage"
1012
  msgstr "Plugin Homepage"
1013
 
1014
- #: includes/fs-plugin-info-dialog.php:1005, includes/fs-plugin-info-dialog.php:1087
1015
  msgid "Donate to this plugin"
1016
  msgstr "Donate to this plugin"
1017
 
1018
- #: includes/fs-plugin-info-dialog.php:1012
1019
  msgid "Average Rating"
1020
  msgstr "Average Rating"
1021
 
1022
- #: includes/fs-plugin-info-dialog.php:1019
1023
  msgid "based on %s"
1024
  msgstr "based on %s"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:1023
1027
  msgid "%s rating"
1028
  msgstr "%s rating"
1029
 
1030
- #: includes/fs-plugin-info-dialog.php:1025
1031
  msgid "%s ratings"
1032
  msgstr "%s ratings"
1033
 
1034
- #: includes/fs-plugin-info-dialog.php:1040
1035
  msgid "%s star"
1036
  msgstr "%s star"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php:1042
1039
  msgid "%s stars"
1040
  msgstr "%s stars"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:1053
1043
  msgid "Click to see reviews that provided a rating of %s"
1044
  msgstr "Click to see reviews that provided a rating of %s"
1045
 
1046
- #: includes/fs-plugin-info-dialog.php:1066
1047
  msgid "Contributors"
1048
  msgstr "Contributors"
1049
 
1050
- #: includes/fs-plugin-info-dialog.php:1095, includes/fs-plugin-info-dialog.php:1097
1051
  msgid "Warning"
1052
  msgstr "Warning"
1053
 
1054
- #: includes/fs-plugin-info-dialog.php:1095
1055
  msgid "This plugin has not been tested with your current version of WordPress."
1056
  msgstr "This plugin has not been tested with your current version of WordPress."
1057
 
1058
- #: includes/fs-plugin-info-dialog.php:1097
1059
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1060
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1061
 
1062
- #: includes/fs-plugin-info-dialog.php:1116
1063
  msgid "Paid add-on must be deployed to Freemius."
1064
  msgstr "Paid add-on must be deployed to Freemius."
1065
 
1066
- #: includes/fs-plugin-info-dialog.php:1117
1067
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1068
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1069
 
1070
- #: templates/account.php:81, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:22, templates/account/partials/site.php:295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1071
  msgid "Downgrading your plan"
1072
  msgstr "Downgrading your plan"
1073
 
1074
- #: templates/account.php:82, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:23, templates/account/partials/site.php:296
1075
  msgid "Cancelling the subscription"
1076
  msgstr "Cancelling the subscription"
1077
 
1078
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1079
- #: templates/account.php:84, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:25, templates/account/partials/site.php:298
1080
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1081
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1082
 
1083
- #: templates/account.php:85, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:26, templates/account/partials/site.php:299
1084
  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."
1085
  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."
1086
 
1087
- #: templates/account.php:86, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:27
1088
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1089
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1090
 
1091
- #: templates/account.php:87, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:28, templates/account/partials/site.php:300
1092
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1093
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1094
 
1095
- #: templates/account.php:88, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:29, templates/account/partials/site.php:301
1096
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1097
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1098
 
1099
  #. translators: %s: Plan title (e.g. "Professional")
1100
- #: templates/account.php:90, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:31
1101
  msgid "Activate %s Plan"
1102
  msgstr "Activate %s Plan"
1103
 
1104
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1105
- #: templates/account.php:93, templates/account/partials/addon.php:34, templates/account/partials/site.php:275
1106
  msgid "Auto renews in %s"
1107
  msgstr "Auto renews in %s"
1108
 
1109
  #. translators: %s: Time period (e.g. Expires in "2 months")
1110
- #: templates/account.php:95, templates/account/partials/addon.php:36, templates/account/partials/site.php:277
1111
  msgid "Expires in %s"
1112
  msgstr "Expires in %s"
1113
 
1114
- #: templates/account.php:96, templates/account/partials/addon.php:37
1115
  msgctxt "as synchronize license"
1116
  msgid "Sync License"
1117
  msgstr "Sync License"
1118
 
1119
- #: templates/account.php:97, templates/account/partials/addon.php:38
1120
  msgid "Cancel Trial"
1121
  msgstr "Cancel Trial"
1122
 
1123
- #: templates/account.php:98, templates/account/partials/addon.php:39
1124
  msgid "Change Plan"
1125
  msgstr "Change Plan"
1126
 
1127
- #: templates/account.php:99, templates/account/partials/addon.php:40
1128
  msgctxt "verb"
1129
  msgid "Upgrade"
1130
  msgstr "Upgrade"
1131
 
1132
- #: templates/account.php:101, templates/account/partials/addon.php:42, templates/account/partials/site.php:302
1133
  msgctxt "verb"
1134
  msgid "Downgrade"
1135
  msgstr "Downgrade"
1136
 
1137
- #: templates/account.php:103, templates/add-ons.php:130, templates/plugin-info/features.php:72, templates/account/partials/addon.php:44, templates/account/partials/site.php:31
1138
  msgid "Free"
1139
  msgstr "Free"
1140
 
1141
- #: templates/account.php:104, templates/account/partials/addon.php:45
1142
- msgid "Activate"
1143
- msgstr "Activate"
1144
-
1145
- #: templates/account.php:105, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:46
1146
  msgctxt "as product pricing plan"
1147
  msgid "Plan"
1148
  msgstr "Plan"
1149
 
1150
- #: templates/account.php:158
 
 
 
 
1151
  msgid "Free Trial"
1152
  msgstr "Free Trial"
1153
 
1154
- #: templates/account.php:169
1155
  msgid "Account Details"
1156
  msgstr "Account Details"
1157
 
1158
- #: templates/account.php:179
 
 
 
 
1159
  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?"
1160
  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?"
1161
 
1162
- #: templates/account.php:181
1163
  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?"
1164
  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?"
1165
 
1166
- #: templates/account.php:184
1167
  msgid "Delete Account"
1168
  msgstr "Delete Account"
1169
 
1170
- #: templates/account.php:196, templates/account/partials/addon.php:159, templates/account/partials/deactivate-license-button.php:35
1171
  msgid "Deactivate License"
1172
  msgstr "Deactivate License"
1173
 
1174
- #: templates/account.php:219, templates/forms/subscription-cancellation.php:125
1175
  msgid "Are you sure you want to proceed?"
1176
  msgstr "Are you sure you want to proceed?"
1177
 
1178
- #: templates/account.php:219, templates/account/partials/addon.php:182
1179
  msgid "Cancel Subscription"
1180
  msgstr "Cancel Subscription"
1181
 
1182
- #: templates/account.php:247
1183
  msgctxt "as synchronize"
1184
  msgid "Sync"
1185
  msgstr "Sync"
1186
 
1187
- #: templates/account.php:261, templates/debug.php:487
1188
  msgid "Name"
1189
  msgstr "Name"
1190
 
1191
- #: templates/account.php:267, templates/debug.php:488
1192
  msgid "Email"
1193
  msgstr "Email"
1194
 
1195
- #: templates/account.php:274, templates/debug.php:370, templates/debug.php:526
1196
  msgid "User ID"
1197
  msgstr "User ID"
1198
 
1199
- #: templates/account.php:282
 
 
 
 
1200
  msgid "Site ID"
1201
  msgstr "Site ID"
1202
 
1203
- #: templates/account.php:285
1204
  msgid "No ID"
1205
  msgstr "No ID"
1206
 
1207
- #: templates/account.php:290, templates/debug.php:243, templates/debug.php:372, templates/debug.php:453, templates/debug.php:490, templates/account/partials/site.php:219
1208
  msgid "Public Key"
1209
  msgstr "Public Key"
1210
 
1211
- #: templates/account.php:296, templates/debug.php:373, templates/debug.php:454, templates/debug.php:491, templates/account/partials/site.php:231
1212
  msgid "Secret Key"
1213
  msgstr "Secret Key"
1214
 
1215
- #: templates/account.php:299
1216
  msgctxt "as secret encryption key missing"
1217
  msgid "No Secret"
1218
  msgstr "No Secret"
1219
 
1220
- #: templates/account.php:318, templates/account/partials/site.php:112, templates/account/partials/site.php:114
1221
  msgid "Trial"
1222
  msgstr "Trial"
1223
 
1224
- #: templates/account.php:337, templates/debug.php:531, templates/account/partials/site.php:248
1225
  msgid "License Key"
1226
  msgstr "License Key"
1227
 
1228
- #: templates/account.php:367
 
 
 
 
1229
  msgid "not verified"
1230
  msgstr "not verified"
1231
 
1232
- #: templates/account.php:376, templates/account/partials/addon.php:120
1233
  msgid "Expired"
1234
  msgstr "Expired"
1235
 
1236
- #: templates/account.php:428
1237
  msgid "Premium version"
1238
  msgstr "Premium version"
1239
 
1240
- #: templates/account.php:430
1241
  msgid "Free version"
1242
  msgstr "Free version"
1243
 
1244
- #: templates/account.php:442
1245
  msgid "Verify Email"
1246
  msgstr "Verify Email"
1247
 
1248
- #: templates/account.php:453
1249
  msgid "Download %s Version"
1250
  msgstr "Download %s Version"
1251
 
1252
- #: templates/account.php:467, templates/account.php:649, templates/account/partials/site.php:237, templates/account/partials/site.php:255
1253
  msgctxt "verb"
1254
  msgid "Show"
1255
  msgstr "Show"
1256
 
1257
- #: templates/account.php:481
1258
  msgid "What is your %s?"
1259
  msgstr "What is your %s?"
1260
 
1261
- #: templates/account.php:489, templates/account/billing.php:27
1262
  msgctxt "verb"
1263
  msgid "Edit"
1264
  msgstr "Edit"
1265
 
1266
- #: templates/account.php:502
1267
  msgid "Sites"
1268
  msgstr "Sites"
1269
 
1270
- #: templates/account.php:513
1271
  msgid "Search by address"
1272
  msgstr "Search by address"
1273
 
1274
- #: templates/account.php:522, templates/account.php:570, templates/debug.php:236, templates/debug.php:364, templates/debug.php:449, templates/debug.php:486, templates/debug.php:524, templates/debug.php:597, templates/account/payments.php:35, templates/debug/logger.php:21
1275
- msgid "ID"
1276
- msgstr "ID"
1277
-
1278
- #: templates/account.php:523, templates/debug.php:367
1279
  msgid "Address"
1280
  msgstr "Address"
1281
 
1282
- #: templates/account.php:524
1283
  msgid "License"
1284
  msgstr "License"
1285
 
1286
- #: templates/account.php:525
1287
  msgid "Plan"
1288
  msgstr "Plan"
1289
 
1290
- #: templates/account.php:573
1291
  msgctxt "as software license"
1292
  msgid "License"
1293
  msgstr "License"
1294
 
1295
- #: templates/account.php:643
1296
  msgctxt "verb"
1297
  msgid "Hide"
1298
  msgstr "Hide"
1299
 
1300
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1301
  msgid "Cancelling %s"
1302
  msgstr "Cancelling %s"
1303
 
1304
- #: templates/account.php:686, templates/account.php:703, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:117
1305
  msgid "trial"
1306
  msgstr "trial"
1307
 
1308
- #: templates/account.php:701, templates/forms/deactivation/form.php:134
1309
  msgid "Cancelling %s..."
1310
  msgstr "Cancelling %s..."
1311
 
1312
- #: templates/account.php:704, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:118
1313
  msgid "subscription"
1314
  msgstr "subscription"
1315
 
1316
- #: templates/account.php:718
1317
  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?"
1318
  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?"
1319
 
1320
- #: templates/add-ons.php:36
 
 
 
 
1321
  msgid "Add Ons for %s"
1322
  msgstr "Add Ons for %s"
1323
 
1324
- #: templates/add-ons.php:44
1325
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1326
  msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1327
 
1328
- #: templates/add-ons.php:139
1329
- msgid "View details"
1330
- msgstr "View details"
 
 
 
 
 
 
1331
 
1332
- #: templates/admin-notice.php:13, templates/forms/license-activation.php:208, templates/forms/resend-key.php:77
1333
  msgctxt "as close a window"
1334
  msgid "Dismiss"
1335
  msgstr "Dismiss"
@@ -1354,11 +1419,11 @@ msgstr "The installation process has started and may take a few minutes to compl
1354
  msgid "Cancel Installation"
1355
  msgstr "Cancel Installation"
1356
 
1357
- #: templates/checkout.php:172
1358
  msgid "Checkout"
1359
  msgstr "Checkout"
1360
 
1361
- #: templates/checkout.php:172
1362
  msgid "PCI compliant"
1363
  msgstr "PCI compliant"
1364
 
@@ -1380,7 +1445,7 @@ msgstr "Re-send activation email"
1380
  msgid "Thanks %s!"
1381
  msgstr "Thanks %s!"
1382
 
1383
- #: templates/connect.php:172, templates/forms/license-activation.php:43
1384
  msgid "Agree & Activate License"
1385
  msgstr "Agree & Activate License"
1386
 
@@ -1428,15 +1493,15 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i
1428
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1429
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1430
 
1431
- #: templates/connect.php:253, templates/forms/license-activation.php:46
1432
  msgid "License key"
1433
  msgstr "License key"
1434
 
1435
- #: templates/connect.php:256, templates/forms/license-activation.php:19
1436
  msgid "Can't find your license key?"
1437
  msgstr "Can't find your license key?"
1438
 
1439
- #: templates/connect.php:315, templates/connect.php:630, templates/forms/deactivation/retry-skip.php:20
1440
  msgctxt "verb"
1441
  msgid "Skip"
1442
  msgstr "Skip"
@@ -1485,7 +1550,7 @@ msgstr "Activation, deactivation and uninstall"
1485
  msgid "Newsletter"
1486
  msgstr "Newsletter"
1487
 
1488
- #: templates/connect.php:391, templates/forms/license-activation.php:38
1489
  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."
1490
  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."
1491
 
@@ -1497,10 +1562,6 @@ msgstr "What permissions are being granted?"
1497
  msgid "Don't have a license key?"
1498
  msgstr "Don't have a license key?"
1499
 
1500
- #: templates/connect.php:418
1501
- msgid "Activate Free Version"
1502
- msgstr "Activate Free Version"
1503
-
1504
  #: templates/connect.php:420
1505
  msgid "Have a license key?"
1506
  msgstr "Have a license key?"
@@ -1517,12 +1578,12 @@ msgstr "License Agreement"
1517
  msgid "Terms of Service"
1518
  msgstr "Terms of Service"
1519
 
1520
- #: templates/connect.php:766
1521
  msgctxt "as in the process of sending an email"
1522
  msgid "Sending email"
1523
  msgstr "Sending email"
1524
 
1525
- #: templates/connect.php:767
1526
  msgctxt "as activating plugin"
1527
  msgid "Activating"
1528
  msgstr "Activating"
@@ -1550,7 +1611,7 @@ msgctxt "as code debugging"
1550
  msgid "Debugging"
1551
  msgstr "Debugging"
1552
 
1553
- #: templates/debug.php:54, templates/debug.php:248, templates/debug.php:374, templates/debug.php:492
1554
  msgid "Actions"
1555
  msgstr "Actions"
1556
 
@@ -1586,186 +1647,186 @@ msgstr "Load DB Option"
1586
  msgid "Set DB Option"
1587
  msgstr "Set DB Option"
1588
 
1589
- #: templates/debug.php:180
1590
  msgid "Key"
1591
  msgstr "Key"
1592
 
1593
- #: templates/debug.php:181
1594
  msgid "Value"
1595
  msgstr "Value"
1596
 
1597
- #: templates/debug.php:197
1598
  msgctxt "as software development kit versions"
1599
  msgid "SDK Versions"
1600
  msgstr "SDK Versions"
1601
 
1602
- #: templates/debug.php:202
1603
  msgid "SDK Path"
1604
  msgstr "SDK Path"
1605
 
1606
- #: templates/debug.php:203, templates/debug.php:242
1607
  msgid "Module Path"
1608
  msgstr "Module Path"
1609
 
1610
- #: templates/debug.php:204
1611
  msgid "Is Active"
1612
  msgstr "Is Active"
1613
 
1614
- #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:35
1615
  msgid "Plugins"
1616
  msgstr "Plugins"
1617
 
1618
- #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:56
1619
  msgid "Themes"
1620
  msgstr "Themes"
1621
 
1622
- #: templates/debug.php:237, templates/debug.php:369, templates/debug.php:451, templates/debug/scheduled-crons.php:80
1623
  msgid "Slug"
1624
  msgstr "Slug"
1625
 
1626
- #: templates/debug.php:239, templates/debug.php:450
1627
  msgid "Title"
1628
  msgstr "Title"
1629
 
1630
- #: templates/debug.php:240
1631
  msgctxt "as application program interface"
1632
  msgid "API"
1633
  msgstr "API"
1634
 
1635
- #: templates/debug.php:241
1636
  msgid "Freemius State"
1637
  msgstr "Freemius State"
1638
 
1639
- #: templates/debug.php:245
1640
  msgid "Network Blog"
1641
  msgstr "Network Blog"
1642
 
1643
- #: templates/debug.php:246
1644
  msgid "Network User"
1645
  msgstr "Network User"
1646
 
1647
- #: templates/debug.php:283
1648
  msgctxt "as connection was successful"
1649
  msgid "Connected"
1650
  msgstr "Connected"
1651
 
1652
- #: templates/debug.php:284
1653
  msgctxt "as connection blocked"
1654
  msgid "Blocked"
1655
  msgstr "Blocked"
1656
 
1657
- #: templates/debug.php:320
1658
  msgid "Simulate Trial Promotion"
1659
  msgstr "Simulate Trial Promotion"
1660
 
1661
- #: templates/debug.php:332
1662
  msgid "Simulate Network Upgrade"
1663
  msgstr "Simulate Network Upgrade"
1664
 
1665
- #: templates/debug.php:358
1666
  msgid "%s Installs"
1667
  msgstr "%s Installs"
1668
 
1669
- #: templates/debug.php:360
1670
  msgctxt "like websites"
1671
  msgid "Sites"
1672
  msgstr "Sites"
1673
 
1674
- #: templates/debug.php:366, templates/account/partials/site.php:148
1675
  msgid "Blog ID"
1676
  msgstr "Blog ID"
1677
 
1678
- #: templates/debug.php:431, templates/debug.php:509, templates/account/partials/addon.php:339
1679
  msgctxt "verb"
1680
  msgid "Delete"
1681
  msgstr "Delete"
1682
 
1683
- #: templates/debug.php:445
1684
  msgid "Add Ons of module %s"
1685
  msgstr "Add Ons of module %s"
1686
 
1687
- #: templates/debug.php:482
1688
  msgid "Users"
1689
  msgstr "Users"
1690
 
1691
- #: templates/debug.php:489
1692
  msgid "Verified"
1693
  msgstr "Verified"
1694
 
1695
- #: templates/debug.php:520
1696
  msgid "%s Licenses"
1697
  msgstr "%s Licenses"
1698
 
1699
- #: templates/debug.php:525
1700
  msgid "Plugin ID"
1701
  msgstr "Plugin ID"
1702
 
1703
- #: templates/debug.php:527
1704
  msgid "Plan ID"
1705
  msgstr "Plan ID"
1706
 
1707
- #: templates/debug.php:528
1708
  msgid "Quota"
1709
  msgstr "Quota"
1710
 
1711
- #: templates/debug.php:529
1712
  msgid "Activated"
1713
  msgstr "Activated"
1714
 
1715
- #: templates/debug.php:530
1716
  msgid "Blocking"
1717
  msgstr "Blocking"
1718
 
1719
- #: templates/debug.php:532
1720
  msgctxt "as expiration date"
1721
  msgid "Expiration"
1722
  msgstr "Expiration"
1723
 
1724
- #: templates/debug.php:555
1725
  msgid "Debug Log"
1726
  msgstr "Debug Log"
1727
 
1728
- #: templates/debug.php:559
1729
  msgid "All Types"
1730
  msgstr "All Types"
1731
 
1732
- #: templates/debug.php:566
1733
  msgid "All Requests"
1734
  msgstr "All Requests"
1735
 
1736
- #: templates/debug.php:571, templates/debug.php:600, templates/debug/logger.php:25
1737
  msgid "File"
1738
  msgstr "File"
1739
 
1740
- #: templates/debug.php:572, templates/debug.php:598, templates/debug/logger.php:23
1741
  msgid "Function"
1742
  msgstr "Function"
1743
 
1744
- #: templates/debug.php:573
1745
  msgid "Process ID"
1746
  msgstr "Process ID"
1747
 
1748
- #: templates/debug.php:574
1749
  msgid "Logger"
1750
  msgstr "Logger"
1751
 
1752
- #: templates/debug.php:575, templates/debug.php:599, templates/debug/logger.php:24
1753
  msgid "Message"
1754
  msgstr "Message"
1755
 
1756
- #: templates/debug.php:577
1757
  msgid "Filter"
1758
  msgstr "Filter"
1759
 
1760
- #: templates/debug.php:585
1761
  msgid "Download"
1762
  msgstr "Download"
1763
 
1764
- #: templates/debug.php:596, templates/debug/logger.php:22
1765
  msgid "Type"
1766
  msgstr "Type"
1767
 
1768
- #: templates/debug.php:601, templates/debug/logger.php:26
1769
  msgid "Timestamp"
1770
  msgstr "Timestamp"
1771
 
@@ -1790,52 +1851,52 @@ msgstr "Freemius API"
1790
  msgid "Requests"
1791
  msgstr "Requests"
1792
 
1793
- #: templates/account/billing.php:28
1794
  msgctxt "verb"
1795
  msgid "Update"
1796
  msgstr "Update"
1797
 
1798
- #: templates/account/billing.php:39
1799
  msgid "Billing"
1800
  msgstr "Billing"
1801
 
1802
- #: templates/account/billing.php:44, templates/account/billing.php:44
1803
  msgid "Business name"
1804
  msgstr "Business name"
1805
 
1806
- #: templates/account/billing.php:45, templates/account/billing.php:45
1807
  msgid "Tax / VAT ID"
1808
  msgstr "Tax / VAT ID"
1809
 
1810
- #: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49
1811
  msgid "Address Line %d"
1812
  msgstr "Address Line %d"
1813
 
1814
- #: templates/account/billing.php:52, templates/account/billing.php:52
1815
  msgid "City"
1816
  msgstr "City"
1817
 
1818
- #: templates/account/billing.php:52, templates/account/billing.php:52
1819
  msgid "Town"
1820
  msgstr "Town"
1821
 
1822
- #: templates/account/billing.php:53, templates/account/billing.php:53
1823
  msgid "ZIP / Postal Code"
1824
  msgstr "ZIP / Postal Code"
1825
 
1826
- #: templates/account/billing.php:308
1827
  msgid "Country"
1828
  msgstr "Country"
1829
 
1830
- #: templates/account/billing.php:310
1831
  msgid "Select Country"
1832
  msgstr "Select Country"
1833
 
1834
- #: templates/account/billing.php:317, templates/account/billing.php:318
1835
  msgid "State"
1836
  msgstr "State"
1837
 
1838
- #: templates/account/billing.php:317, templates/account/billing.php:318
1839
  msgid "Province"
1840
  msgstr "Province"
1841
 
@@ -2083,11 +2144,11 @@ msgstr "Cancel"
2083
  msgid "Become an affiliate"
2084
  msgstr "Become an affiliate"
2085
 
2086
- #: templates/forms/license-activation.php:20
2087
  msgid "Please enter the license key that you received in the email right after the purchase:"
2088
  msgstr "Please enter the license key that you received in the email right after the purchase:"
2089
 
2090
- #: templates/forms/license-activation.php:25
2091
  msgid "Update License"
2092
  msgstr "Update License"
2093
 
@@ -2154,6 +2215,11 @@ msgstr "Cancel %s - I no longer need any security & feature updates, nor support
2154
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2155
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2156
 
 
 
 
 
 
2157
  #: templates/forms/subscription-cancellation.php:103
2158
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2159
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
@@ -2166,7 +2232,7 @@ msgstr "Cancel %s?"
2166
  msgid "Proceed"
2167
  msgstr "Proceed"
2168
 
2169
- #: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:150
2170
  msgid "Cancel %s & Proceed"
2171
  msgstr "Cancel %s & Proceed"
2172
 
@@ -2178,35 +2244,39 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s
2178
  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."
2179
  msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2180
 
2181
- #: templates/js/style-premium-theme.php:37
2182
  msgid "Premium"
2183
  msgstr "Premium"
2184
 
2185
- #: templates/partials/network-activation.php:23
 
 
 
 
2186
  msgid "Activate license on all sites in the network."
2187
  msgstr "Activate license on all sites in the network."
2188
 
2189
- #: templates/partials/network-activation.php:24
2190
  msgid "Apply on all sites in the network."
2191
  msgstr "Apply on all sites in the network."
2192
 
2193
- #: templates/partials/network-activation.php:27
2194
  msgid "Activate license on all pending sites."
2195
  msgstr "Activate license on all pending sites."
2196
 
2197
- #: templates/partials/network-activation.php:28
2198
  msgid "Apply on all pending sites."
2199
  msgstr "Apply on all pending sites."
2200
 
2201
- #: templates/partials/network-activation.php:36, templates/partials/network-activation.php:68
2202
  msgid "allow"
2203
  msgstr "allow"
2204
 
2205
- #: templates/partials/network-activation.php:38, templates/partials/network-activation.php:70
2206
  msgid "delegate"
2207
  msgstr "delegate"
2208
 
2209
- #: templates/partials/network-activation.php:41, templates/partials/network-activation.php:73
2210
  msgid "skip"
2211
  msgstr "skip"
2212
 
@@ -2231,18 +2301,14 @@ msgstr "%s left"
2231
  msgid "Last license"
2232
  msgstr "Last license"
2233
 
2234
- #: templates/account/partials/addon.php:115
2235
  msgid "Cancelled"
2236
  msgstr "Cancelled"
2237
 
2238
- #: templates/account/partials/addon.php:125
2239
  msgid "No expiration"
2240
  msgstr "No expiration"
2241
 
2242
- #: templates/account/partials/addon.php:264, templates/account/partials/addon.php:317
2243
- msgid "Activate this add-on"
2244
- msgstr "Activate this add-on"
2245
-
2246
  #: templates/account/partials/site.php:181
2247
  msgid "Owner Name"
2248
  msgstr "Owner Name"
@@ -2267,47 +2333,47 @@ msgstr "Sorry for the inconvenience and we are here to help if you give us a cha
2267
  msgid "Contact Support"
2268
  msgstr "Contact Support"
2269
 
2270
- #: templates/forms/deactivation/form.php:59
2271
  msgid "Anonymous feedback"
2272
  msgstr "Anonymous feedback"
2273
 
2274
- #: templates/forms/deactivation/form.php:66
2275
  msgid "Deactivate"
2276
  msgstr "Deactivate"
2277
 
2278
- #: templates/forms/deactivation/form.php:68
2279
  msgid "Activate %s"
2280
  msgstr "Activate %s"
2281
 
2282
- #: templates/forms/deactivation/form.php:80
2283
  msgid "Quick Feedback"
2284
  msgstr "Quick Feedback"
2285
 
2286
- #: templates/forms/deactivation/form.php:84
2287
  msgid "If you have a moment, please let us know why you are %s"
2288
  msgstr "If you have a moment, please let us know why you are %s"
2289
 
2290
- #: templates/forms/deactivation/form.php:84
2291
  msgid "deactivating"
2292
  msgstr "deactivating"
2293
 
2294
- #: templates/forms/deactivation/form.php:84
2295
  msgid "switching"
2296
  msgstr "switching"
2297
 
2298
- #: templates/forms/deactivation/form.php:332
2299
  msgid "Submit & %s"
2300
  msgstr "Submit & %s"
2301
 
2302
- #: templates/forms/deactivation/form.php:353
2303
  msgid "Kindly tell us the reason so we can improve."
2304
  msgstr "Kindly tell us the reason so we can improve."
2305
 
2306
- #: templates/forms/deactivation/form.php:478
2307
  msgid "Yes - %s"
2308
  msgstr "Yes - %s"
2309
 
2310
- #: templates/forms/deactivation/form.php:485
2311
  msgid "Skip & %s"
2312
  msgstr "Skip & %s"
2313
 
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
+ #: includes/class-freemius.php:1838, templates/account.php:769
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:1845
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:2053
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:2055
35
  msgid "Error"
36
  msgstr "Error"
37
 
38
+ #: includes/class-freemius.php:2445
39
  msgid "I found a better %s"
40
  msgstr "I found a better %s"
41
 
42
+ #: includes/class-freemius.php:2447
43
  msgid "What's the %s's name?"
44
  msgstr "What's the %s's name?"
45
 
46
+ #: includes/class-freemius.php:2453
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:2455
51
  msgid "Deactivation"
52
  msgstr "Deactivation"
53
 
54
+ #: includes/class-freemius.php:2456
55
  msgid "Theme Switch"
56
  msgstr "Theme Switch"
57
 
58
+ #: includes/class-freemius.php:2465, templates/forms/resend-key.php:24
59
  msgid "Other"
60
  msgstr "Other"
61
 
62
+ #: includes/class-freemius.php:2473
63
  msgid "I no longer need the %s"
64
  msgstr "I no longer need the %s"
65
 
66
+ #: includes/class-freemius.php:2480
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:2486
71
  msgid "The %s broke my site"
72
  msgstr "The %s broke my site"
73
 
74
+ #: includes/class-freemius.php:2493
75
  msgid "The %s suddenly stopped working"
76
  msgstr "The %s suddenly stopped working"
77
 
78
+ #: includes/class-freemius.php:2503
79
  msgid "I can't pay for it anymore"
80
  msgstr "I can't pay for it anymore"
81
 
82
+ #: includes/class-freemius.php:2505
83
  msgid "What price would you feel comfortable paying?"
84
  msgstr "What price would you feel comfortable paying?"
85
 
86
+ #: includes/class-freemius.php:2511
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:2532
91
  msgid "The %s didn't work"
92
  msgstr "The %s didn't work"
93
 
94
+ #: includes/class-freemius.php:2542
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:2550
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:2552
103
  msgid "What feature?"
104
  msgstr "What feature?"
105
 
106
+ #: includes/class-freemius.php:2556
107
  msgid "The %s is not working"
108
  msgstr "The %s is not working"
109
 
110
+ #: includes/class-freemius.php:2558
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:2562
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:2564
119
  msgid "What you've been looking for?"
120
  msgstr "What you've been looking for?"
121
 
122
+ #: includes/class-freemius.php:2568
123
  msgid "The %s didn't work as expected"
124
  msgstr "The %s didn't work as expected"
125
 
126
+ #: includes/class-freemius.php:2570
127
  msgid "What did you expect?"
128
  msgstr "What did you expect?"
129
 
130
+ #: includes/class-freemius.php:3425, templates/debug.php:20
131
  msgid "Freemius Debug"
132
  msgstr "Freemius Debug"
133
 
134
+ #: includes/class-freemius.php:4177
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:4179
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:4186
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:4291
147
  msgid "Yes - do your thing"
148
  msgstr "Yes - do your thing"
149
 
150
+ #: includes/class-freemius.php:4296
151
  msgid "No - just deactivate"
152
  msgstr "No - just deactivate"
153
 
154
+ #: includes/class-freemius.php:4341, includes/class-freemius.php:4850, includes/class-freemius.php:5999, includes/class-freemius.php:12682, includes/class-freemius.php:16045, includes/class-freemius.php:16133, includes/class-freemius.php:16299, includes/class-freemius.php:18758, includes/class-freemius.php:18768, includes/class-freemius.php:19404, includes/class-freemius.php:20277, includes/class-freemius.php:20392, includes/class-freemius.php:20536, templates/add-ons.php:54
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
+ #: includes/class-freemius.php:4410
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:4847
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:4848
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:5020, includes/class-freemius.php:5045, includes/class-freemius.php:19475
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:5687
178
  msgid "Premium %s version was successfully activated."
179
  msgstr "Premium %s version was successfully activated."
180
 
181
+ #: includes/class-freemius.php:5699, includes/class-freemius.php:7567
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:5714
187
  msgid "You have a %s license."
188
  msgstr "You have a %s license."
189
 
190
+ #: includes/class-freemius.php:5718, includes/class-freemius.php:15466, includes/class-freemius.php:15477, includes/class-freemius.php:18669, includes/class-freemius.php:18999, includes/class-freemius.php:19065, includes/class-freemius.php:19229
191
  msgctxt "interjection expressing joy or exuberance"
192
  msgid "Yee-haw"
193
  msgstr "Yee-haw"
194
 
195
+ #: includes/class-freemius.php:5982
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:5986
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:5995, templates/add-ons.php:130, templates/account/partials/addon.php:343
204
  msgid "More information about %s"
205
  msgstr "More information about %s"
206
 
207
+ #: includes/class-freemius.php:5996
208
  msgid "Purchase License"
209
  msgstr "Purchase License"
210
 
211
+ #: includes/class-freemius.php:6931, templates/connect.php:163
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:6935
216
  msgid "start the trial"
217
  msgstr "start the trial"
218
 
219
+ #: includes/class-freemius.php:6936, templates/connect.php:167
220
  msgid "complete the install"
221
  msgstr "complete the install"
222
 
223
+ #: includes/class-freemius.php:7049
224
  msgid "You are just one step away - %s"
225
  msgstr "You are just one step away - %s"
226
 
227
+ #: includes/class-freemius.php:7052
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:7130
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:7134
237
  msgid "Opt in to make \"%s\" better!"
238
  msgstr "Opt in to make \"%s\" better!"
239
 
240
+ #: includes/class-freemius.php:7566
241
  msgid "The upgrade of %s was successfully completed."
242
  msgstr "The upgrade of %s was successfully completed."
243
 
244
+ #: includes/class-freemius.php:9728, includes/class-fs-plugin-updater.php:975, includes/class-fs-plugin-updater.php:1170, includes/class-fs-plugin-updater.php:1177, templates/auto-installation.php:32
245
  msgid "Add-On"
246
  msgstr "Add-On"
247
 
248
+ #: includes/class-freemius.php:9730, templates/account.php:313, templates/account.php:321, templates/debug.php:361, templates/debug.php:522
249
  msgid "Plugin"
250
  msgstr "Plugin"
251
 
252
+ #: includes/class-freemius.php:9731, templates/account.php:314, templates/account.php:322, templates/debug.php:361, templates/debug.php:522, templates/forms/deactivation/form.php:71
253
  msgid "Theme"
254
  msgstr "Theme"
255
 
256
+ #: includes/class-freemius.php:12148
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:12549
261
  msgid "Invalid site details collection."
262
  msgstr "Invalid site details collection."
263
 
264
+ #: includes/class-freemius.php:12669
265
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
266
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
267
 
268
+ #: includes/class-freemius.php:12671
269
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
270
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
271
 
272
+ #: includes/class-freemius.php:12945
273
  msgid "Account is pending activation."
274
  msgstr "Account is pending activation."
275
 
276
+ #: includes/class-freemius.php:13057, templates/forms/premium-versions-upgrade-handler.php:47
277
  msgid "Buy a license now"
278
  msgstr "Buy a license now"
279
 
280
+ #: includes/class-freemius.php:13069, templates/forms/premium-versions-upgrade-handler.php:46
281
  msgid "Renew your license now"
282
  msgstr "Renew your license now"
283
 
284
+ #: includes/class-freemius.php:13073
285
  msgid "%s to access version %s security & feature updates, and support."
286
  msgstr "%s to access version %s security & feature updates, and support."
287
 
288
+ #: includes/class-freemius.php:15448
289
  msgid "%s activation was successfully completed."
290
  msgstr "%s activation was successfully completed."
291
 
292
+ #: includes/class-freemius.php:15462
293
  msgid "Your account was successfully activated with the %s plan."
294
  msgstr "Your account was successfully activated with the %s plan."
295
 
296
+ #: includes/class-freemius.php:15473, includes/class-freemius.php:19061
297
  msgid "Your trial has been successfully started."
298
  msgstr "Your trial has been successfully started."
299
 
300
+ #: includes/class-freemius.php:16043, includes/class-freemius.php:16131, includes/class-freemius.php:16297
301
  msgid "Couldn't activate %s."
302
  msgstr "Couldn't activate %s."
303
 
304
+ #: includes/class-freemius.php:16044, includes/class-freemius.php:16132, includes/class-freemius.php:16298
305
  msgid "Please contact us with the following message:"
306
  msgstr "Please contact us with the following message:"
307
 
308
+ #: includes/class-freemius.php:16128
309
+ msgid "An unknown error has occurred."
310
+ msgstr "An unknown error has occurred."
311
+
312
+ #: includes/class-freemius.php:16655, includes/class-freemius.php:21409
313
  msgid "Upgrade"
314
  msgstr "Upgrade"
315
 
316
+ #: includes/class-freemius.php:16661
317
  msgid "Start Trial"
318
  msgstr "Start Trial"
319
 
320
+ #: includes/class-freemius.php:16663
321
  msgid "Pricing"
322
  msgstr "Pricing"
323
 
324
+ #: includes/class-freemius.php:16742, includes/class-freemius.php:16744
325
  msgid "Affiliation"
326
  msgstr "Affiliation"
327
 
328
+ #: includes/class-freemius.php:16772, includes/class-freemius.php:16774, templates/account.php:177, templates/debug.php:326
329
  msgid "Account"
330
  msgstr "Account"
331
 
332
+ #: includes/class-freemius.php:16787, includes/class-freemius.php:16789, includes/customizer/class-fs-customizer-support-section.php:60
333
  msgid "Contact Us"
334
  msgstr "Contact Us"
335
 
336
+ #: includes/class-freemius.php:16799, includes/class-freemius.php:16801, includes/class-freemius.php:21423, templates/account.php:105, templates/account/partials/addon.php:45
337
  msgid "Add-Ons"
338
  msgstr "Add-Ons"
339
 
340
+ #: includes/class-freemius.php:16835
341
  msgctxt "ASCII arrow left icon"
342
  msgid "&#x2190;"
343
  msgstr "&#x2190;"
344
 
345
+ #: includes/class-freemius.php:16835
346
  msgctxt "ASCII arrow right icon"
347
  msgid "&#x27a4;"
348
  msgstr "&#x27a4;"
349
 
350
+ #: includes/class-freemius.php:16837, templates/pricing.php:102
351
  msgctxt "noun"
352
  msgid "Pricing"
353
  msgstr "Pricing"
354
 
355
+ #: includes/class-freemius.php:17050, includes/customizer/class-fs-customizer-support-section.php:67
356
  msgid "Support Forum"
357
  msgstr "Support Forum"
358
 
359
+ #: includes/class-freemius.php:17995
360
  msgid "Your email has been successfully verified - you are AWESOME!"
361
  msgstr "Your email has been successfully verified - you are AWESOME!"
362
 
363
+ #: includes/class-freemius.php:17996
364
  msgctxt "a positive response"
365
  msgid "Right on"
366
  msgstr "Right on"
367
 
368
+ #: includes/class-freemius.php:18660
369
  msgid "Your %s Add-on plan was successfully upgraded."
370
  msgstr "Your %s Add-on plan was successfully upgraded."
371
 
372
+ #: includes/class-freemius.php:18662
373
  msgid "%s Add-on was successfully purchased."
374
  msgstr "%s Add-on was successfully purchased."
375
 
376
+ #: includes/class-freemius.php:18665
377
  msgid "Download the latest version"
378
  msgstr "Download the latest version"
379
 
380
+ #: includes/class-freemius.php:18751
381
+ 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"
382
+ 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"
 
383
 
384
+ #: includes/class-freemius.php:18757, includes/class-freemius.php:19188, includes/class-freemius.php:19277
385
  msgid "Error received from the server:"
386
  msgstr "Error received from the server:"
387
 
388
+ #: includes/class-freemius.php:18767
389
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
390
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
391
 
392
+ #: includes/class-freemius.php:18961, includes/class-freemius.php:19193, includes/class-freemius.php:19248, includes/class-freemius.php:19351
393
  msgctxt "something somebody says when they are thinking about what you have just said."
394
  msgid "Hmm"
395
  msgstr "Hmm"
396
 
397
+ #: includes/class-freemius.php:18974
398
  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."
399
  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."
400
 
401
+ #: includes/class-freemius.php:18975, templates/account.php:107, templates/add-ons.php:191, templates/account/partials/addon.php:47
402
  msgctxt "trial period"
403
  msgid "Trial"
404
  msgstr "Trial"
405
 
406
+ #: includes/class-freemius.php:18980
407
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
408
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
409
 
410
+ #: includes/class-freemius.php:18984, includes/class-freemius.php:19043
411
  msgid "Please contact us here"
412
  msgstr "Please contact us here"
413
 
414
+ #: includes/class-freemius.php:18995
415
+ msgid "Your plan was successfully activated."
416
+ msgstr "Your plan was successfully activated."
417
+
418
+ #: includes/class-freemius.php:18996
419
  msgid "Your plan was successfully upgraded."
420
  msgstr "Your plan was successfully upgraded."
421
 
422
+ #: includes/class-freemius.php:19013
423
  msgid "Your plan was successfully changed to %s."
424
  msgstr "Your plan was successfully changed to %s."
425
 
426
+ #: includes/class-freemius.php:19029
427
  msgid "Your license has expired. You can still continue using the free %s forever."
428
  msgstr "Your license has expired. You can still continue using the free %s forever."
429
 
430
+ #: includes/class-freemius.php:19031
431
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
432
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
433
 
434
+ #: includes/class-freemius.php:19039
435
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
436
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
437
 
438
+ #: includes/class-freemius.php:19052
439
  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."
440
  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."
441
 
442
+ #: includes/class-freemius.php:19075
443
  msgid "Your free trial has expired. You can still continue using all our free features."
444
  msgstr "Your free trial has expired. You can still continue using all our free features."
445
 
446
+ #: includes/class-freemius.php:19077
447
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
448
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
449
 
450
+ #: includes/class-freemius.php:19184
451
  msgid "It looks like the license could not be activated."
452
  msgstr "It looks like the license could not be activated."
453
 
454
+ #: includes/class-freemius.php:19226
455
  msgid "Your license was successfully activated."
456
  msgstr "Your license was successfully activated."
457
 
458
+ #: includes/class-freemius.php:19252
459
  msgid "It looks like your site currently doesn't have an active license."
460
  msgstr "It looks like your site currently doesn't have an active license."
461
 
462
+ #: includes/class-freemius.php:19276
463
  msgid "It looks like the license deactivation failed."
464
  msgstr "It looks like the license deactivation failed."
465
 
466
+ #: includes/class-freemius.php:19304
467
  msgid "Your license was successfully deactivated, you are back to the %s plan."
468
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
469
 
470
+ #: includes/class-freemius.php:19305
471
  msgid "O.K"
472
  msgstr "O.K"
473
 
474
+ #: includes/class-freemius.php:19358
475
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
476
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
477
 
478
+ #: includes/class-freemius.php:19367
479
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
480
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
481
 
482
+ #: includes/class-freemius.php:19409
483
  msgid "You are already running the %s in a trial mode."
484
  msgstr "You are already running the %s in a trial mode."
485
 
486
+ #: includes/class-freemius.php:19420
487
  msgid "You already utilized a trial before."
488
  msgstr "You already utilized a trial before."
489
 
490
+ #: includes/class-freemius.php:19434
491
  msgid "Plan %s do not exist, therefore, can't start a trial."
492
  msgstr "Plan %s do not exist, therefore, can't start a trial."
493
 
494
+ #: includes/class-freemius.php:19445
495
  msgid "Plan %s does not support a trial period."
496
  msgstr "Plan %s does not support a trial period."
497
 
498
+ #: includes/class-freemius.php:19456
499
  msgid "None of the %s's plans supports a trial period."
500
  msgstr "None of the %s's plans supports a trial period."
501
 
502
+ #: includes/class-freemius.php:19506
503
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
504
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
505
 
506
+ #: includes/class-freemius.php:19542
507
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
508
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
509
 
510
+ #: includes/class-freemius.php:19561
511
  msgid "Your %s free trial was successfully cancelled."
512
  msgstr "Your %s free trial was successfully cancelled."
513
 
514
+ #: includes/class-freemius.php:19877
515
  msgid "Version %s was released."
516
  msgstr "Version %s was released."
517
 
518
+ #: includes/class-freemius.php:19877
519
  msgid "Please download %s."
520
  msgstr "Please download %s."
521
 
522
+ #: includes/class-freemius.php:19884
523
  msgid "the latest %s version here"
524
  msgstr "the latest %s version here"
525
 
526
+ #: includes/class-freemius.php:19889
527
  msgid "New"
528
  msgstr "New"
529
 
530
+ #: includes/class-freemius.php:19894
531
  msgid "Seems like you got the latest release."
532
  msgstr "Seems like you got the latest release."
533
 
534
+ #: includes/class-freemius.php:19895
535
  msgid "You are all good!"
536
  msgstr "You are all good!"
537
 
538
+ #: includes/class-freemius.php:20165
539
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
540
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
541
 
542
+ #: includes/class-freemius.php:20304
543
  msgid "Site successfully opted in."
544
  msgstr "Site successfully opted in."
545
 
546
+ #: includes/class-freemius.php:20305, includes/class-freemius.php:21125
547
  msgid "Awesome"
548
  msgstr "Awesome"
549
 
550
+ #: includes/class-freemius.php:20321, templates/forms/optout.php:32
551
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
552
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
553
 
554
+ #: includes/class-freemius.php:20322
555
  msgid "Thank you!"
556
  msgstr "Thank you!"
557
 
558
+ #: includes/class-freemius.php:20329
559
  msgid "We will no longer be sending any usage data of %s on %s to %s."
560
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
561
 
562
+ #: includes/class-freemius.php:20458
563
  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."
564
  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."
565
 
566
+ #: includes/class-freemius.php:20464
567
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
568
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
569
 
570
+ #: includes/class-freemius.php:20469
571
  msgid "%s is the new owner of the account."
572
  msgstr "%s is the new owner of the account."
573
 
574
+ #: includes/class-freemius.php:20471
575
  msgctxt "as congratulations"
576
  msgid "Congrats"
577
  msgstr "Congrats"
578
 
579
+ #: includes/class-freemius.php:20491
580
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
581
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
582
 
583
+ #: includes/class-freemius.php:20492
584
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
585
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
586
 
587
+ #: includes/class-freemius.php:20499
588
  msgid "Change Ownership"
589
  msgstr "Change Ownership"
590
 
591
+ #: includes/class-freemius.php:20507
592
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
593
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
594
 
595
+ #: includes/class-freemius.php:20519
596
  msgid "Please provide your full name."
597
  msgstr "Please provide your full name."
598
 
599
+ #: includes/class-freemius.php:20524
600
  msgid "Your name was successfully updated."
601
  msgstr "Your name was successfully updated."
602
 
603
+ #: includes/class-freemius.php:20585
604
  msgid "You have successfully updated your %s."
605
  msgstr "You have successfully updated your %s."
606
 
607
+ #: includes/class-freemius.php:20725
608
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
609
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
610
 
611
+ #: includes/class-freemius.php:20726
612
  msgctxt "advance notice of something that will need attention."
613
  msgid "Heads up"
614
  msgstr "Heads up"
615
 
616
+ #: includes/class-freemius.php:21165
617
  msgctxt "exclamation"
618
  msgid "Hey"
619
  msgstr "Hey"
620
 
621
+ #: includes/class-freemius.php:21165
622
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
623
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
624
 
625
+ #: includes/class-freemius.php:21173
626
  msgid "No commitment for %s days - cancel anytime!"
627
  msgstr "No commitment for %s days - cancel anytime!"
628
 
629
+ #: includes/class-freemius.php:21174
630
  msgid "No credit card required"
631
  msgstr "No credit card required"
632
 
633
+ #: includes/class-freemius.php:21181, templates/forms/trial-start.php:53
634
  msgctxt "call to action"
635
  msgid "Start free trial"
636
  msgstr "Start free trial"
637
 
638
+ #: includes/class-freemius.php:21258
639
  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!"
640
  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!"
641
 
642
+ #: includes/class-freemius.php:21267
643
  msgid "Learn more"
644
  msgstr "Learn more"
645
 
646
+ #: includes/class-freemius.php:21447, templates/account.php:474, templates/account.php:595, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:25, templates/account/partials/addon.php:287
647
  msgid "Activate License"
648
  msgstr "Activate License"
649
 
650
+ #: includes/class-freemius.php:21448, templates/account.php:543, templates/account.php:594, templates/account/partials/site.php:256
651
  msgid "Change License"
652
  msgstr "Change License"
653
 
654
+ #: includes/class-freemius.php:21539, templates/account/partials/site.php:161
655
  msgid "Opt Out"
656
  msgstr "Opt Out"
657
 
658
+ #: includes/class-freemius.php:21541, includes/class-freemius.php:21547, templates/account/partials/site.php:43, templates/account/partials/site.php:161
659
  msgid "Opt In"
660
  msgstr "Opt In"
661
 
662
+ #: includes/class-freemius.php:21775
663
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
664
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
665
 
666
+ #: includes/class-freemius.php:21783
667
  msgid "Activate %s features"
668
  msgstr "Activate %s features"
669
 
670
+ #: includes/class-freemius.php:21796
671
  msgid "Please follow these steps to complete the upgrade"
672
  msgstr "Please follow these steps to complete the upgrade"
673
 
674
+ #: includes/class-freemius.php:21800
675
  msgid "Download the latest %s version"
676
  msgstr "Download the latest %s version"
677
 
678
+ #: includes/class-freemius.php:21804
679
  msgid "Upload and activate the downloaded version"
680
  msgstr "Upload and activate the downloaded version"
681
 
682
+ #: includes/class-freemius.php:21806
683
  msgid "How to upload and activate?"
684
  msgstr "How to upload and activate?"
685
 
686
+ #: includes/class-freemius.php:21940
687
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
688
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
689
 
690
+ #: includes/class-freemius.php:22101
691
  msgid "Auto installation only works for opted-in users."
692
  msgstr "Auto installation only works for opted-in users."
693
 
694
+ #: includes/class-freemius.php:22111, includes/class-freemius.php:22144, includes/class-fs-plugin-updater.php:1149, includes/class-fs-plugin-updater.php:1163
695
  msgid "Invalid module ID."
696
  msgstr "Invalid module ID."
697
 
698
+ #: includes/class-freemius.php:22120, includes/class-fs-plugin-updater.php:1185
699
  msgid "Premium version already active."
700
  msgstr "Premium version already active."
701
 
702
+ #: includes/class-freemius.php:22127
703
  msgid "You do not have a valid license to access the premium version."
704
  msgstr "You do not have a valid license to access the premium version."
705
 
706
+ #: includes/class-freemius.php:22134
707
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
708
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
709
 
710
+ #: includes/class-freemius.php:22152, includes/class-fs-plugin-updater.php:1184
711
  msgid "Premium add-on version already installed."
712
  msgstr "Premium add-on version already installed."
713
 
714
+ #: includes/class-freemius.php:22497
715
  msgid "View paid features"
716
  msgstr "View paid features"
717
 
718
+ #: includes/class-freemius.php:22819
719
  msgid "Thank you so much for using %s and its add-ons!"
720
  msgstr "Thank you so much for using %s and its add-ons!"
721
 
722
+ #: includes/class-freemius.php:22820
723
  msgid "Thank you so much for using %s!"
724
  msgstr "Thank you so much for using %s!"
725
 
726
+ #: includes/class-freemius.php:22826
727
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
728
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
729
 
730
+ #: includes/class-freemius.php:22830
731
  msgid "Thank you so much for using our products!"
732
  msgstr "Thank you so much for using our products!"
733
 
734
+ #: includes/class-freemius.php:22831
735
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
736
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
737
 
738
+ #: includes/class-freemius.php:22850
739
  msgid "%s and its add-ons"
740
  msgstr "%s and its add-ons"
741
 
742
+ #: includes/class-freemius.php:22859
743
  msgid "Products"
744
  msgstr "Products"
745
 
746
+ #: includes/class-freemius.php:22866, templates/connect.php:272
747
  msgid "Yes"
748
  msgstr "Yes"
749
 
750
+ #: includes/class-freemius.php:22867, templates/connect.php:273
751
  msgid "send me security & feature updates, educational content and offers."
752
  msgstr "send me security & feature updates, educational content and offers."
753
 
754
+ #: includes/class-freemius.php:22868, templates/connect.php:278
755
  msgid "No"
756
  msgstr "No"
757
 
758
+ #: includes/class-freemius.php:22870, templates/connect.php:280
759
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
760
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
761
 
762
+ #: includes/class-freemius.php:22880
763
+ 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 :-)"
764
+ 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 :-)"
765
 
766
+ #: includes/class-freemius.php:22882, templates/connect.php:287
767
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
768
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
769
 
770
+ #: includes/class-freemius.php:23164
771
  msgid "License key is empty."
772
  msgstr "License key is empty."
773
 
779
  msgid "Buy license"
780
  msgstr "Buy license"
781
 
782
+ #: includes/class-fs-plugin-updater.php:280, includes/class-fs-plugin-updater.php:313
783
  msgid "There is a %s of %s available."
784
  msgstr "There is a %s of %s available."
785
 
786
+ #: includes/class-fs-plugin-updater.php:282, includes/class-fs-plugin-updater.php:318
787
+ msgid "new Beta version"
788
+ msgstr "new Beta version"
789
+
790
+ #: includes/class-fs-plugin-updater.php:283, includes/class-fs-plugin-updater.php:319
791
  msgid "new version"
792
  msgstr "new version"
793
 
794
+ #: includes/class-fs-plugin-updater.php:342
795
  msgid "Important Upgrade Notice:"
796
  msgstr "Important Upgrade Notice:"
797
 
798
+ #: includes/class-fs-plugin-updater.php:1214
799
  msgid "Installing plugin: %s"
800
  msgstr "Installing plugin: %s"
801
 
802
+ #: includes/class-fs-plugin-updater.php:1255
803
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
804
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
805
 
806
+ #: includes/class-fs-plugin-updater.php:1437
807
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
808
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
809
 
810
+ #: includes/fs-plugin-info-dialog.php:509
811
+ msgid "Purchase More"
812
+ msgstr "Purchase More"
813
+
814
+ #: includes/fs-plugin-info-dialog.php:510, templates/account/partials/addon.php:347
815
  msgctxt "verb"
816
  msgid "Purchase"
817
  msgstr "Purchase"
818
 
819
+ #: includes/fs-plugin-info-dialog.php:514
820
  msgid "Start my free %s"
821
  msgstr "Start my free %s"
822
 
823
+ #: includes/fs-plugin-info-dialog.php:712
824
+ msgid "Install Free Version Update Now"
825
+ msgstr "Install Free Version Update Now"
826
+
827
+ #: includes/fs-plugin-info-dialog.php:713, templates/account.php:534
828
+ msgid "Install Update Now"
829
+ msgstr "Install Update Now"
830
+
831
+ #: includes/fs-plugin-info-dialog.php:722
832
  msgid "Install Free Version Now"
833
  msgstr "Install Free Version Now"
834
 
835
+ #: includes/fs-plugin-info-dialog.php:723, templates/add-ons.php:262, templates/auto-installation.php:111, templates/account/partials/addon.php:327, templates/account/partials/addon.php:379
836
  msgid "Install Now"
837
  msgstr "Install Now"
838
 
839
+ #: includes/fs-plugin-info-dialog.php:739
840
  msgctxt "as download latest version"
841
  msgid "Download Latest Free Version"
842
  msgstr "Download Latest Free Version"
843
 
844
+ #: includes/fs-plugin-info-dialog.php:740, templates/account.php:85, templates/add-ons.php:34, templates/account/partials/addon.php:25
845
  msgctxt "as download latest version"
846
  msgid "Download Latest"
847
  msgstr "Download Latest"
848
 
849
+ #: includes/fs-plugin-info-dialog.php:755, templates/add-ons.php:268, templates/account/partials/addon.php:318, templates/account/partials/addon.php:373
850
+ msgid "Activate this add-on"
851
+ msgstr "Activate this add-on"
 
 
 
 
 
 
 
 
 
 
 
 
852
 
853
+ #: includes/fs-plugin-info-dialog.php:757, templates/connect.php:418
854
+ msgid "Activate Free Version"
855
+ msgstr "Activate Free Version"
856
 
857
+ #: includes/fs-plugin-info-dialog.php:758, templates/account.php:109, templates/add-ons.php:269, templates/account/partials/addon.php:49
858
+ msgid "Activate"
859
+ msgstr "Activate"
860
 
861
+ #: includes/fs-plugin-info-dialog.php:968
862
  msgctxt "Plugin installer section title"
863
  msgid "Description"
864
  msgstr "Description"
865
 
866
+ #: includes/fs-plugin-info-dialog.php:969
867
  msgctxt "Plugin installer section title"
868
  msgid "Installation"
869
  msgstr "Installation"
870
 
871
+ #: includes/fs-plugin-info-dialog.php:970
872
  msgctxt "Plugin installer section title"
873
  msgid "FAQ"
874
  msgstr "FAQ"
875
 
876
+ #: includes/fs-plugin-info-dialog.php:971, templates/plugin-info/description.php:55
877
  msgid "Screenshots"
878
  msgstr "Screenshots"
879
 
880
+ #: includes/fs-plugin-info-dialog.php:972
881
  msgctxt "Plugin installer section title"
882
  msgid "Changelog"
883
  msgstr "Changelog"
884
 
885
+ #: includes/fs-plugin-info-dialog.php:973
886
  msgctxt "Plugin installer section title"
887
  msgid "Reviews"
888
  msgstr "Reviews"
889
 
890
+ #: includes/fs-plugin-info-dialog.php:974
891
  msgctxt "Plugin installer section title"
892
  msgid "Other Notes"
893
  msgstr "Other Notes"
894
 
895
+ #: includes/fs-plugin-info-dialog.php:989
896
  msgctxt "Plugin installer section title"
897
  msgid "Features & Pricing"
898
  msgstr "Features & Pricing"
899
 
900
+ #: includes/fs-plugin-info-dialog.php:999
901
  msgid "Plugin Install"
902
  msgstr "Plugin Install"
903
 
904
+ #: includes/fs-plugin-info-dialog.php:1071
905
  msgctxt "e.g. Professional Plan"
906
  msgid "%s Plan"
907
  msgstr "%s Plan"
908
 
909
+ #: includes/fs-plugin-info-dialog.php:1097
910
  msgctxt "e.g. the best product"
911
  msgid "Best"
912
  msgstr "Best"
913
 
914
+ #: includes/fs-plugin-info-dialog.php:1103, includes/fs-plugin-info-dialog.php:1123
915
  msgctxt "as every month"
916
  msgid "Monthly"
917
  msgstr "Monthly"
918
 
919
+ #: includes/fs-plugin-info-dialog.php:1106
920
  msgctxt "as once a year"
921
  msgid "Annual"
922
  msgstr "Annual"
923
 
924
+ #: includes/fs-plugin-info-dialog.php:1109
925
  msgid "Lifetime"
926
  msgstr "Lifetime"
927
 
928
+ #: includes/fs-plugin-info-dialog.php:1123, includes/fs-plugin-info-dialog.php:1125, includes/fs-plugin-info-dialog.php:1127
929
  msgctxt "e.g. billed monthly"
930
  msgid "Billed %s"
931
  msgstr "Billed %s"
932
 
933
+ #: includes/fs-plugin-info-dialog.php:1125
934
  msgctxt "as once a year"
935
  msgid "Annually"
936
  msgstr "Annually"
937
 
938
+ #: includes/fs-plugin-info-dialog.php:1127
939
  msgctxt "as once a year"
940
  msgid "Once"
941
  msgstr "Once"
942
 
943
+ #: includes/fs-plugin-info-dialog.php:1133
944
  msgid "Single Site License"
945
  msgstr "Single Site License"
946
 
947
+ #: includes/fs-plugin-info-dialog.php:1135
948
  msgid "Unlimited Licenses"
949
  msgstr "Unlimited Licenses"
950
 
951
+ #: includes/fs-plugin-info-dialog.php:1137
952
  msgid "Up to %s Sites"
953
  msgstr "Up to %s Sites"
954
 
955
+ #: includes/fs-plugin-info-dialog.php:1147, templates/plugin-info/features.php:82
956
  msgctxt "as monthly period"
957
  msgid "mo"
958
  msgstr "mo"
959
 
960
+ #: includes/fs-plugin-info-dialog.php:1154, templates/plugin-info/features.php:80
961
  msgctxt "as annual period"
962
  msgid "year"
963
  msgstr "year"
964
 
965
+ #: includes/fs-plugin-info-dialog.php:1208
966
  msgctxt "noun"
967
  msgid "Price"
968
  msgstr "Price"
969
 
970
+ #: includes/fs-plugin-info-dialog.php:1256
971
  msgid "Save %s"
972
  msgstr "Save %s"
973
 
974
+ #: includes/fs-plugin-info-dialog.php:1266
975
  msgid "No commitment for %s - cancel anytime"
976
  msgstr "No commitment for %s - cancel anytime"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1269
979
  msgid "After your free %s, pay as little as %s"
980
  msgstr "After your free %s, pay as little as %s"
981
 
982
+ #: includes/fs-plugin-info-dialog.php:1280
983
  msgid "Details"
984
  msgstr "Details"
985
 
986
+ #: includes/fs-plugin-info-dialog.php:1284, templates/account.php:96, templates/debug.php:203, templates/debug.php:240, templates/debug.php:454, templates/account/partials/addon.php:36
987
  msgctxt "product version"
988
  msgid "Version"
989
  msgstr "Version"
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1291
992
  msgctxt "as the plugin author"
993
  msgid "Author"
994
  msgstr "Author"
995
 
996
+ #: includes/fs-plugin-info-dialog.php:1298
997
  msgid "Last Updated"
998
  msgstr "Last Updated"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1303, templates/account.php:444
1001
  msgctxt "x-ago"
1002
  msgid "%s ago"
1003
  msgstr "%s ago"
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1312
1006
  msgid "Requires WordPress Version"
1007
  msgstr "Requires WordPress Version"
1008
 
1009
+ #: includes/fs-plugin-info-dialog.php:1313
1010
  msgid "%s or higher"
1011
  msgstr "%s or higher"
1012
 
1013
+ #: includes/fs-plugin-info-dialog.php:1320
1014
  msgid "Compatible up to"
1015
  msgstr "Compatible up to"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php:1328
1018
  msgid "Downloaded"
1019
  msgstr "Downloaded"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:1332
1022
  msgid "%s time"
1023
  msgstr "%s time"
1024
 
1025
+ #: includes/fs-plugin-info-dialog.php:1334
1026
  msgid "%s times"
1027
  msgstr "%s times"
1028
 
1029
+ #: includes/fs-plugin-info-dialog.php:1344
1030
  msgid "WordPress.org Plugin Page"
1031
  msgstr "WordPress.org Plugin Page"
1032
 
1033
+ #: includes/fs-plugin-info-dialog.php:1352
1034
  msgid "Plugin Homepage"
1035
  msgstr "Plugin Homepage"
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1360, includes/fs-plugin-info-dialog.php:1442
1038
  msgid "Donate to this plugin"
1039
  msgstr "Donate to this plugin"
1040
 
1041
+ #: includes/fs-plugin-info-dialog.php:1367
1042
  msgid "Average Rating"
1043
  msgstr "Average Rating"
1044
 
1045
+ #: includes/fs-plugin-info-dialog.php:1374
1046
  msgid "based on %s"
1047
  msgstr "based on %s"
1048
 
1049
+ #: includes/fs-plugin-info-dialog.php:1378
1050
  msgid "%s rating"
1051
  msgstr "%s rating"
1052
 
1053
+ #: includes/fs-plugin-info-dialog.php:1380
1054
  msgid "%s ratings"
1055
  msgstr "%s ratings"
1056
 
1057
+ #: includes/fs-plugin-info-dialog.php:1395
1058
  msgid "%s star"
1059
  msgstr "%s star"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php:1397
1062
  msgid "%s stars"
1063
  msgstr "%s stars"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php:1408
1066
  msgid "Click to see reviews that provided a rating of %s"
1067
  msgstr "Click to see reviews that provided a rating of %s"
1068
 
1069
+ #: includes/fs-plugin-info-dialog.php:1421
1070
  msgid "Contributors"
1071
  msgstr "Contributors"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1450, includes/fs-plugin-info-dialog.php:1452
1074
  msgid "Warning"
1075
  msgstr "Warning"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1450
1078
  msgid "This plugin has not been tested with your current version of WordPress."
1079
  msgstr "This plugin has not been tested with your current version of WordPress."
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1452
1082
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1083
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1471
1086
  msgid "Paid add-on must be deployed to Freemius."
1087
  msgstr "Paid add-on must be deployed to Freemius."
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php:1472
1090
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1091
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1092
 
1093
+ #: includes/fs-plugin-info-dialog.php:1493
1094
+ msgid "Newer Version (%s) Installed"
1095
+ msgstr "Newer Version (%s) Installed"
1096
+
1097
+ #: includes/fs-plugin-info-dialog.php:1494
1098
+ msgid "Newer Free Version (%s) Installed"
1099
+ msgstr "Newer Free Version (%s) Installed"
1100
+
1101
+ #: includes/fs-plugin-info-dialog.php:1501
1102
+ msgid "Latest Version Installed"
1103
+ msgstr "Latest Version Installed"
1104
+
1105
+ #: includes/fs-plugin-info-dialog.php:1502
1106
+ msgid "Latest Free Version Installed"
1107
+ msgstr "Latest Free Version Installed"
1108
+
1109
+ #: templates/account.php:86, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:26, templates/account/partials/site.php:295
1110
  msgid "Downgrading your plan"
1111
  msgstr "Downgrading your plan"
1112
 
1113
+ #: templates/account.php:87, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:27, templates/account/partials/site.php:296
1114
  msgid "Cancelling the subscription"
1115
  msgstr "Cancelling the subscription"
1116
 
1117
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1118
+ #: templates/account.php:89
1119
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1120
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1121
 
1122
+ #: templates/account.php:90, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:30, templates/account/partials/site.php:299
1123
  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."
1124
  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."
1125
 
1126
+ #: templates/account.php:91, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:31
1127
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1128
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1129
 
1130
+ #: templates/account.php:92, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:32, templates/account/partials/site.php:300
1131
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1132
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1133
 
1134
+ #: templates/account.php:93, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:33, templates/account/partials/site.php:301
1135
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1136
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1137
 
1138
  #. translators: %s: Plan title (e.g. "Professional")
1139
+ #: templates/account.php:95, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:35
1140
  msgid "Activate %s Plan"
1141
  msgstr "Activate %s Plan"
1142
 
1143
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1144
+ #: templates/account.php:98, templates/account/partials/addon.php:38, templates/account/partials/site.php:275
1145
  msgid "Auto renews in %s"
1146
  msgstr "Auto renews in %s"
1147
 
1148
  #. translators: %s: Time period (e.g. Expires in "2 months")
1149
+ #: templates/account.php:100, templates/account/partials/addon.php:40, templates/account/partials/site.php:277
1150
  msgid "Expires in %s"
1151
  msgstr "Expires in %s"
1152
 
1153
+ #: templates/account.php:101, templates/account/partials/addon.php:41
1154
  msgctxt "as synchronize license"
1155
  msgid "Sync License"
1156
  msgstr "Sync License"
1157
 
1158
+ #: templates/account.php:102, templates/account/partials/addon.php:42
1159
  msgid "Cancel Trial"
1160
  msgstr "Cancel Trial"
1161
 
1162
+ #: templates/account.php:103, templates/account/partials/addon.php:43
1163
  msgid "Change Plan"
1164
  msgstr "Change Plan"
1165
 
1166
+ #: templates/account.php:104, templates/account/partials/addon.php:44
1167
  msgctxt "verb"
1168
  msgid "Upgrade"
1169
  msgstr "Upgrade"
1170
 
1171
+ #: templates/account.php:106, templates/account/partials/addon.php:46, templates/account/partials/site.php:302
1172
  msgctxt "verb"
1173
  msgid "Downgrade"
1174
  msgstr "Downgrade"
1175
 
1176
+ #: templates/account.php:108, templates/add-ons.php:187, templates/plugin-info/features.php:72, templates/account/partials/addon.php:48, templates/account/partials/site.php:31
1177
  msgid "Free"
1178
  msgstr "Free"
1179
 
1180
+ #: templates/account.php:110, templates/debug.php:373, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:50
 
 
 
 
1181
  msgctxt "as product pricing plan"
1182
  msgid "Plan"
1183
  msgstr "Plan"
1184
 
1185
+ #: templates/account.php:111
1186
+ msgid "Bundle Plan"
1187
+ msgstr "Bundle Plan"
1188
+
1189
+ #: templates/account.php:185
1190
  msgid "Free Trial"
1191
  msgstr "Free Trial"
1192
 
1193
+ #: templates/account.php:196
1194
  msgid "Account Details"
1195
  msgstr "Account Details"
1196
 
1197
+ #: templates/account.php:200
1198
+ msgid "Billing & Invoices"
1199
+ msgstr "Billing & Invoices"
1200
+
1201
+ #: templates/account.php:210
1202
  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?"
1203
  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?"
1204
 
1205
+ #: templates/account.php:212
1206
  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?"
1207
  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?"
1208
 
1209
+ #: templates/account.php:215
1210
  msgid "Delete Account"
1211
  msgstr "Delete Account"
1212
 
1213
+ #: templates/account.php:227, templates/account/partials/addon.php:211, templates/account/partials/deactivate-license-button.php:35
1214
  msgid "Deactivate License"
1215
  msgstr "Deactivate License"
1216
 
1217
+ #: templates/account.php:250, templates/forms/subscription-cancellation.php:125
1218
  msgid "Are you sure you want to proceed?"
1219
  msgstr "Are you sure you want to proceed?"
1220
 
1221
+ #: templates/account.php:250, templates/account/partials/addon.php:234
1222
  msgid "Cancel Subscription"
1223
  msgstr "Cancel Subscription"
1224
 
1225
+ #: templates/account.php:278
1226
  msgctxt "as synchronize"
1227
  msgid "Sync"
1228
  msgstr "Sync"
1229
 
1230
+ #: templates/account.php:292, templates/debug.php:489
1231
  msgid "Name"
1232
  msgstr "Name"
1233
 
1234
+ #: templates/account.php:298, templates/debug.php:490
1235
  msgid "Email"
1236
  msgstr "Email"
1237
 
1238
+ #: templates/account.php:305, templates/debug.php:372, templates/debug.php:528
1239
  msgid "User ID"
1240
  msgstr "User ID"
1241
 
1242
+ #: templates/account.php:322, templates/account.php:608, templates/account.php:653, templates/debug.php:238, templates/debug.php:366, templates/debug.php:451, templates/debug.php:488, templates/debug.php:526, templates/debug.php:599, templates/account/payments.php:35, templates/debug/logger.php:21
1243
+ msgid "ID"
1244
+ msgstr "ID"
1245
+
1246
+ #: templates/account.php:329
1247
  msgid "Site ID"
1248
  msgstr "Site ID"
1249
 
1250
+ #: templates/account.php:332
1251
  msgid "No ID"
1252
  msgstr "No ID"
1253
 
1254
+ #: templates/account.php:337, templates/debug.php:245, templates/debug.php:374, templates/debug.php:455, templates/debug.php:492, templates/account/partials/site.php:219
1255
  msgid "Public Key"
1256
  msgstr "Public Key"
1257
 
1258
+ #: templates/account.php:343, templates/debug.php:375, templates/debug.php:456, templates/debug.php:493, templates/account/partials/site.php:231
1259
  msgid "Secret Key"
1260
  msgstr "Secret Key"
1261
 
1262
+ #: templates/account.php:346
1263
  msgctxt "as secret encryption key missing"
1264
  msgid "No Secret"
1265
  msgstr "No Secret"
1266
 
1267
+ #: templates/account.php:373, templates/account/partials/site.php:112, templates/account/partials/site.php:114
1268
  msgid "Trial"
1269
  msgstr "Trial"
1270
 
1271
+ #: templates/account.php:400, templates/debug.php:533, templates/account/partials/site.php:248
1272
  msgid "License Key"
1273
  msgstr "License Key"
1274
 
1275
+ #: templates/account.php:429
1276
+ msgid "Join the Beta program"
1277
+ msgstr "Join the Beta program"
1278
+
1279
+ #: templates/account.php:435
1280
  msgid "not verified"
1281
  msgstr "not verified"
1282
 
1283
+ #: templates/account.php:444, templates/account/partials/addon.php:172
1284
  msgid "Expired"
1285
  msgstr "Expired"
1286
 
1287
+ #: templates/account.php:502
1288
  msgid "Premium version"
1289
  msgstr "Premium version"
1290
 
1291
+ #: templates/account.php:504
1292
  msgid "Free version"
1293
  msgstr "Free version"
1294
 
1295
+ #: templates/account.php:516
1296
  msgid "Verify Email"
1297
  msgstr "Verify Email"
1298
 
1299
+ #: templates/account.php:527
1300
  msgid "Download %s Version"
1301
  msgstr "Download %s Version"
1302
 
1303
+ #: templates/account.php:541, templates/account.php:749, templates/account/partials/site.php:237, templates/account/partials/site.php:255
1304
  msgctxt "verb"
1305
  msgid "Show"
1306
  msgstr "Show"
1307
 
1308
+ #: templates/account.php:555
1309
  msgid "What is your %s?"
1310
  msgstr "What is your %s?"
1311
 
1312
+ #: templates/account.php:563, templates/account/billing.php:21
1313
  msgctxt "verb"
1314
  msgid "Edit"
1315
  msgstr "Edit"
1316
 
1317
+ #: templates/account.php:588
1318
  msgid "Sites"
1319
  msgstr "Sites"
1320
 
1321
+ #: templates/account.php:599
1322
  msgid "Search by address"
1323
  msgstr "Search by address"
1324
 
1325
+ #: templates/account.php:609, templates/debug.php:369
 
 
 
 
1326
  msgid "Address"
1327
  msgstr "Address"
1328
 
1329
+ #: templates/account.php:610
1330
  msgid "License"
1331
  msgstr "License"
1332
 
1333
+ #: templates/account.php:611
1334
  msgid "Plan"
1335
  msgstr "Plan"
1336
 
1337
+ #: templates/account.php:656
1338
  msgctxt "as software license"
1339
  msgid "License"
1340
  msgstr "License"
1341
 
1342
+ #: templates/account.php:743
1343
  msgctxt "verb"
1344
  msgid "Hide"
1345
  msgstr "Hide"
1346
 
1347
+ #: templates/account.php:765
1348
+ msgid "Processing"
1349
+ msgstr "Processing"
1350
+
1351
+ #: templates/account.php:768
1352
+ msgid "Get updates for bleeding edge Beta versions of %s."
1353
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1354
+
1355
+ #: templates/account.php:826
1356
  msgid "Cancelling %s"
1357
  msgstr "Cancelling %s"
1358
 
1359
+ #: templates/account.php:826, templates/account.php:843, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133
1360
  msgid "trial"
1361
  msgstr "trial"
1362
 
1363
+ #: templates/account.php:841, templates/forms/deactivation/form.php:150
1364
  msgid "Cancelling %s..."
1365
  msgstr "Cancelling %s..."
1366
 
1367
+ #: templates/account.php:844, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134
1368
  msgid "subscription"
1369
  msgstr "subscription"
1370
 
1371
+ #: templates/account.php:858
1372
  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?"
1373
  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?"
1374
 
1375
+ #: templates/add-ons.php:35
1376
+ msgid "View details"
1377
+ msgstr "View details"
1378
+
1379
+ #: templates/add-ons.php:45
1380
  msgid "Add Ons for %s"
1381
  msgstr "Add Ons for %s"
1382
 
1383
+ #: templates/add-ons.php:55
1384
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1385
  msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1386
 
1387
+ #: templates/add-ons.php:173
1388
+ msgctxt "active add-on"
1389
+ msgid "Active"
1390
+ msgstr "Active"
1391
+
1392
+ #: templates/add-ons.php:174
1393
+ msgctxt "installed add-on"
1394
+ msgid "Installed"
1395
+ msgstr "Installed"
1396
 
1397
+ #: templates/admin-notice.php:13, templates/forms/license-activation.php:209, templates/forms/resend-key.php:77
1398
  msgctxt "as close a window"
1399
  msgid "Dismiss"
1400
  msgstr "Dismiss"
1419
  msgid "Cancel Installation"
1420
  msgstr "Cancel Installation"
1421
 
1422
+ #: templates/checkout.php:180
1423
  msgid "Checkout"
1424
  msgstr "Checkout"
1425
 
1426
+ #: templates/checkout.php:180
1427
  msgid "PCI compliant"
1428
  msgstr "PCI compliant"
1429
 
1445
  msgid "Thanks %s!"
1446
  msgstr "Thanks %s!"
1447
 
1448
+ #: templates/connect.php:172, templates/forms/license-activation.php:44
1449
  msgid "Agree & Activate License"
1450
  msgstr "Agree & Activate License"
1451
 
1493
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1494
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1495
 
1496
+ #: templates/connect.php:253, templates/forms/license-activation.php:47
1497
  msgid "License key"
1498
  msgstr "License key"
1499
 
1500
+ #: templates/connect.php:256, templates/forms/license-activation.php:20
1501
  msgid "Can't find your license key?"
1502
  msgstr "Can't find your license key?"
1503
 
1504
+ #: templates/connect.php:315, templates/connect.php:652, templates/forms/deactivation/retry-skip.php:20
1505
  msgctxt "verb"
1506
  msgid "Skip"
1507
  msgstr "Skip"
1550
  msgid "Newsletter"
1551
  msgstr "Newsletter"
1552
 
1553
+ #: templates/connect.php:391, templates/forms/license-activation.php:39
1554
  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."
1555
  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."
1556
 
1562
  msgid "Don't have a license key?"
1563
  msgstr "Don't have a license key?"
1564
 
 
 
 
 
1565
  #: templates/connect.php:420
1566
  msgid "Have a license key?"
1567
  msgstr "Have a license key?"
1578
  msgid "Terms of Service"
1579
  msgstr "Terms of Service"
1580
 
1581
+ #: templates/connect.php:805
1582
  msgctxt "as in the process of sending an email"
1583
  msgid "Sending email"
1584
  msgstr "Sending email"
1585
 
1586
+ #: templates/connect.php:806
1587
  msgctxt "as activating plugin"
1588
  msgid "Activating"
1589
  msgstr "Activating"
1611
  msgid "Debugging"
1612
  msgstr "Debugging"
1613
 
1614
+ #: templates/debug.php:54, templates/debug.php:250, templates/debug.php:376, templates/debug.php:494
1615
  msgid "Actions"
1616
  msgstr "Actions"
1617
 
1647
  msgid "Set DB Option"
1648
  msgstr "Set DB Option"
1649
 
1650
+ #: templates/debug.php:182
1651
  msgid "Key"
1652
  msgstr "Key"
1653
 
1654
+ #: templates/debug.php:183
1655
  msgid "Value"
1656
  msgstr "Value"
1657
 
1658
+ #: templates/debug.php:199
1659
  msgctxt "as software development kit versions"
1660
  msgid "SDK Versions"
1661
  msgstr "SDK Versions"
1662
 
1663
+ #: templates/debug.php:204
1664
  msgid "SDK Path"
1665
  msgstr "SDK Path"
1666
 
1667
+ #: templates/debug.php:205, templates/debug.php:244
1668
  msgid "Module Path"
1669
  msgstr "Module Path"
1670
 
1671
+ #: templates/debug.php:206
1672
  msgid "Is Active"
1673
  msgstr "Is Active"
1674
 
1675
+ #: templates/debug.php:234, templates/debug/plugins-themes-sync.php:35
1676
  msgid "Plugins"
1677
  msgstr "Plugins"
1678
 
1679
+ #: templates/debug.php:234, templates/debug/plugins-themes-sync.php:56
1680
  msgid "Themes"
1681
  msgstr "Themes"
1682
 
1683
+ #: templates/debug.php:239, templates/debug.php:371, templates/debug.php:453, templates/debug/scheduled-crons.php:80
1684
  msgid "Slug"
1685
  msgstr "Slug"
1686
 
1687
+ #: templates/debug.php:241, templates/debug.php:452
1688
  msgid "Title"
1689
  msgstr "Title"
1690
 
1691
+ #: templates/debug.php:242
1692
  msgctxt "as application program interface"
1693
  msgid "API"
1694
  msgstr "API"
1695
 
1696
+ #: templates/debug.php:243
1697
  msgid "Freemius State"
1698
  msgstr "Freemius State"
1699
 
1700
+ #: templates/debug.php:247
1701
  msgid "Network Blog"
1702
  msgstr "Network Blog"
1703
 
1704
+ #: templates/debug.php:248
1705
  msgid "Network User"
1706
  msgstr "Network User"
1707
 
1708
+ #: templates/debug.php:285
1709
  msgctxt "as connection was successful"
1710
  msgid "Connected"
1711
  msgstr "Connected"
1712
 
1713
+ #: templates/debug.php:286
1714
  msgctxt "as connection blocked"
1715
  msgid "Blocked"
1716
  msgstr "Blocked"
1717
 
1718
+ #: templates/debug.php:322
1719
  msgid "Simulate Trial Promotion"
1720
  msgstr "Simulate Trial Promotion"
1721
 
1722
+ #: templates/debug.php:334
1723
  msgid "Simulate Network Upgrade"
1724
  msgstr "Simulate Network Upgrade"
1725
 
1726
+ #: templates/debug.php:360
1727
  msgid "%s Installs"
1728
  msgstr "%s Installs"
1729
 
1730
+ #: templates/debug.php:362
1731
  msgctxt "like websites"
1732
  msgid "Sites"
1733
  msgstr "Sites"
1734
 
1735
+ #: templates/debug.php:368, templates/account/partials/site.php:148
1736
  msgid "Blog ID"
1737
  msgstr "Blog ID"
1738
 
1739
+ #: templates/debug.php:433, templates/debug.php:511, templates/account/partials/addon.php:396
1740
  msgctxt "verb"
1741
  msgid "Delete"
1742
  msgstr "Delete"
1743
 
1744
+ #: templates/debug.php:447
1745
  msgid "Add Ons of module %s"
1746
  msgstr "Add Ons of module %s"
1747
 
1748
+ #: templates/debug.php:484
1749
  msgid "Users"
1750
  msgstr "Users"
1751
 
1752
+ #: templates/debug.php:491
1753
  msgid "Verified"
1754
  msgstr "Verified"
1755
 
1756
+ #: templates/debug.php:522
1757
  msgid "%s Licenses"
1758
  msgstr "%s Licenses"
1759
 
1760
+ #: templates/debug.php:527
1761
  msgid "Plugin ID"
1762
  msgstr "Plugin ID"
1763
 
1764
+ #: templates/debug.php:529
1765
  msgid "Plan ID"
1766
  msgstr "Plan ID"
1767
 
1768
+ #: templates/debug.php:530
1769
  msgid "Quota"
1770
  msgstr "Quota"
1771
 
1772
+ #: templates/debug.php:531
1773
  msgid "Activated"
1774
  msgstr "Activated"
1775
 
1776
+ #: templates/debug.php:532
1777
  msgid "Blocking"
1778
  msgstr "Blocking"
1779
 
1780
+ #: templates/debug.php:534
1781
  msgctxt "as expiration date"
1782
  msgid "Expiration"
1783
  msgstr "Expiration"
1784
 
1785
+ #: templates/debug.php:557
1786
  msgid "Debug Log"
1787
  msgstr "Debug Log"
1788
 
1789
+ #: templates/debug.php:561
1790
  msgid "All Types"
1791
  msgstr "All Types"
1792
 
1793
+ #: templates/debug.php:568
1794
  msgid "All Requests"
1795
  msgstr "All Requests"
1796
 
1797
+ #: templates/debug.php:573, templates/debug.php:602, templates/debug/logger.php:25
1798
  msgid "File"
1799
  msgstr "File"
1800
 
1801
+ #: templates/debug.php:574, templates/debug.php:600, templates/debug/logger.php:23
1802
  msgid "Function"
1803
  msgstr "Function"
1804
 
1805
+ #: templates/debug.php:575
1806
  msgid "Process ID"
1807
  msgstr "Process ID"
1808
 
1809
+ #: templates/debug.php:576
1810
  msgid "Logger"
1811
  msgstr "Logger"
1812
 
1813
+ #: templates/debug.php:577, templates/debug.php:601, templates/debug/logger.php:24
1814
  msgid "Message"
1815
  msgstr "Message"
1816
 
1817
+ #: templates/debug.php:579
1818
  msgid "Filter"
1819
  msgstr "Filter"
1820
 
1821
+ #: templates/debug.php:587
1822
  msgid "Download"
1823
  msgstr "Download"
1824
 
1825
+ #: templates/debug.php:598, templates/debug/logger.php:22
1826
  msgid "Type"
1827
  msgstr "Type"
1828
 
1829
+ #: templates/debug.php:603, templates/debug/logger.php:26
1830
  msgid "Timestamp"
1831
  msgstr "Timestamp"
1832
 
1851
  msgid "Requests"
1852
  msgstr "Requests"
1853
 
1854
+ #: templates/account/billing.php:22
1855
  msgctxt "verb"
1856
  msgid "Update"
1857
  msgstr "Update"
1858
 
1859
+ #: templates/account/billing.php:33
1860
  msgid "Billing"
1861
  msgstr "Billing"
1862
 
1863
+ #: templates/account/billing.php:38, templates/account/billing.php:38
1864
  msgid "Business name"
1865
  msgstr "Business name"
1866
 
1867
+ #: templates/account/billing.php:39, templates/account/billing.php:39
1868
  msgid "Tax / VAT ID"
1869
  msgstr "Tax / VAT ID"
1870
 
1871
+ #: templates/account/billing.php:42, templates/account/billing.php:42, templates/account/billing.php:43, templates/account/billing.php:43
1872
  msgid "Address Line %d"
1873
  msgstr "Address Line %d"
1874
 
1875
+ #: templates/account/billing.php:46, templates/account/billing.php:46
1876
  msgid "City"
1877
  msgstr "City"
1878
 
1879
+ #: templates/account/billing.php:46, templates/account/billing.php:46
1880
  msgid "Town"
1881
  msgstr "Town"
1882
 
1883
+ #: templates/account/billing.php:47, templates/account/billing.php:47
1884
  msgid "ZIP / Postal Code"
1885
  msgstr "ZIP / Postal Code"
1886
 
1887
+ #: templates/account/billing.php:302
1888
  msgid "Country"
1889
  msgstr "Country"
1890
 
1891
+ #: templates/account/billing.php:304
1892
  msgid "Select Country"
1893
  msgstr "Select Country"
1894
 
1895
+ #: templates/account/billing.php:311, templates/account/billing.php:312
1896
  msgid "State"
1897
  msgstr "State"
1898
 
1899
+ #: templates/account/billing.php:311, templates/account/billing.php:312
1900
  msgid "Province"
1901
  msgstr "Province"
1902
 
2144
  msgid "Become an affiliate"
2145
  msgstr "Become an affiliate"
2146
 
2147
+ #: templates/forms/license-activation.php:21
2148
  msgid "Please enter the license key that you received in the email right after the purchase:"
2149
  msgstr "Please enter the license key that you received in the email right after the purchase:"
2150
 
2151
+ #: templates/forms/license-activation.php:26
2152
  msgid "Update License"
2153
  msgstr "Update License"
2154
 
2215
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2216
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2217
 
2218
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
2219
+ #: templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:29, templates/account/partials/site.php:298
2220
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2221
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2222
+
2223
  #: templates/forms/subscription-cancellation.php:103
2224
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2225
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2232
  msgid "Proceed"
2233
  msgstr "Proceed"
2234
 
2235
+ #: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:171
2236
  msgid "Cancel %s & Proceed"
2237
  msgstr "Cancel %s & Proceed"
2238
 
2244
  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."
2245
  msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2246
 
2247
+ #: templates/js/style-premium-theme.php:39
2248
  msgid "Premium"
2249
  msgstr "Premium"
2250
 
2251
+ #: templates/js/style-premium-theme.php:42
2252
+ msgid "Beta"
2253
+ msgstr "Beta"
2254
+
2255
+ #: templates/partials/network-activation.php:27
2256
  msgid "Activate license on all sites in the network."
2257
  msgstr "Activate license on all sites in the network."
2258
 
2259
+ #: templates/partials/network-activation.php:28
2260
  msgid "Apply on all sites in the network."
2261
  msgstr "Apply on all sites in the network."
2262
 
2263
+ #: templates/partials/network-activation.php:31
2264
  msgid "Activate license on all pending sites."
2265
  msgstr "Activate license on all pending sites."
2266
 
2267
+ #: templates/partials/network-activation.php:32
2268
  msgid "Apply on all pending sites."
2269
  msgstr "Apply on all pending sites."
2270
 
2271
+ #: templates/partials/network-activation.php:40, templates/partials/network-activation.php:74
2272
  msgid "allow"
2273
  msgstr "allow"
2274
 
2275
+ #: templates/partials/network-activation.php:43, templates/partials/network-activation.php:77
2276
  msgid "delegate"
2277
  msgstr "delegate"
2278
 
2279
+ #: templates/partials/network-activation.php:47, templates/partials/network-activation.php:81
2280
  msgid "skip"
2281
  msgstr "skip"
2282
 
2301
  msgid "Last license"
2302
  msgstr "Last license"
2303
 
2304
+ #: templates/account/partials/addon.php:167
2305
  msgid "Cancelled"
2306
  msgstr "Cancelled"
2307
 
2308
+ #: templates/account/partials/addon.php:177
2309
  msgid "No expiration"
2310
  msgstr "No expiration"
2311
 
 
 
 
 
2312
  #: templates/account/partials/site.php:181
2313
  msgid "Owner Name"
2314
  msgstr "Owner Name"
2333
  msgid "Contact Support"
2334
  msgstr "Contact Support"
2335
 
2336
+ #: templates/forms/deactivation/form.php:64
2337
  msgid "Anonymous feedback"
2338
  msgstr "Anonymous feedback"
2339
 
2340
+ #: templates/forms/deactivation/form.php:70
2341
  msgid "Deactivate"
2342
  msgstr "Deactivate"
2343
 
2344
+ #: templates/forms/deactivation/form.php:72
2345
  msgid "Activate %s"
2346
  msgstr "Activate %s"
2347
 
2348
+ #: templates/forms/deactivation/form.php:87
2349
  msgid "Quick Feedback"
2350
  msgstr "Quick Feedback"
2351
 
2352
+ #: templates/forms/deactivation/form.php:91
2353
  msgid "If you have a moment, please let us know why you are %s"
2354
  msgstr "If you have a moment, please let us know why you are %s"
2355
 
2356
+ #: templates/forms/deactivation/form.php:91
2357
  msgid "deactivating"
2358
  msgstr "deactivating"
2359
 
2360
+ #: templates/forms/deactivation/form.php:91
2361
  msgid "switching"
2362
  msgstr "switching"
2363
 
2364
+ #: templates/forms/deactivation/form.php:365
2365
  msgid "Submit & %s"
2366
  msgstr "Submit & %s"
2367
 
2368
+ #: templates/forms/deactivation/form.php:386
2369
  msgid "Kindly tell us the reason so we can improve."
2370
  msgstr "Kindly tell us the reason so we can improve."
2371
 
2372
+ #: templates/forms/deactivation/form.php:511
2373
  msgid "Yes - %s"
2374
  msgstr "Yes - %s"
2375
 
2376
+ #: templates/forms/deactivation/form.php:518
2377
  msgid "Skip & %s"
2378
  msgstr "Skip & %s"
2379
 
vendor/freemius/wordpress-sdk/languages/freemius-es_ES.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-es_ES.po CHANGED
@@ -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: 2018-11-25 12:57+0000\n"
11
  "Last-Translator: Carlos Longarela <carlos@longarela.eu>\n"
12
  "Language: es_ES\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
@@ -21,772 +21,792 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
 
28
- #: includes/class-freemius.php:1690
29
  msgid "Error"
30
  msgstr "Error"
31
 
32
- #: includes/class-freemius.php:2011
33
  msgid "I found a better %s"
34
  msgstr "He encontrado un %s mejor"
35
 
36
- #: includes/class-freemius.php:2013
37
  msgid "What's the %s's name?"
38
  msgstr "¿Cuál es el nombre de %s?"
39
 
40
- #: includes/class-freemius.php:2019
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Es una %stemporal . Sólo estoy depurando un problema"
43
 
44
- #: includes/class-freemius.php:2021
45
  msgid "Deactivation"
46
  msgstr "Desactivación"
47
 
48
- #: includes/class-freemius.php:2022
49
  msgid "Theme Switch"
50
  msgstr "Cambiar tema"
51
 
52
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Otra"
55
 
56
- #: includes/class-freemius.php:2039
57
  msgid "I no longer need the %s"
58
  msgstr "Ya no necesito el %s"
59
 
60
- #: includes/class-freemius.php:2046
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Sólo necesitaba la %s por un corto período"
63
 
64
- #: includes/class-freemius.php:2052
65
  msgid "The %s broke my site"
66
  msgstr "%s ha roto mi sitio"
67
 
68
- #: includes/class-freemius.php:2059
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s de repente ha dejado de funcionar"
71
 
72
- #: includes/class-freemius.php:2069
73
  msgid "I can't pay for it anymore"
74
  msgstr "No puedo pagarlo durante más tiempo"
75
 
76
- #: includes/class-freemius.php:2071
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
79
 
80
- #: includes/class-freemius.php:2077
81
  msgid "I don't like to share my information with you"
82
  msgstr "No me gusta compartir mi información contigo"
83
 
84
- #: includes/class-freemius.php:2098
85
  msgid "The %s didn't work"
86
  msgstr "El %s no funcionaba"
87
 
88
- #: includes/class-freemius.php:2108
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "No entiendo cómo hacerlo funcionar"
91
 
92
- #: includes/class-freemius.php:2116
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s es genial, pero necesito una característica que no soportáis"
95
 
96
- #: includes/class-freemius.php:2118
97
  msgid "What feature?"
98
  msgstr "¿Qué característica?"
99
 
100
- #: includes/class-freemius.php:2122
101
  msgid "The %s is not working"
102
  msgstr " El %s no funciona"
103
 
104
- #: includes/class-freemius.php:2124
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
 
108
- #: includes/class-freemius.php:2128
109
  msgid "It's not what I was looking for"
110
  msgstr "No es lo que estaba buscando"
111
 
112
- #: includes/class-freemius.php:2130
113
  msgid "What you've been looking for?"
114
  msgstr "¿Que has estado buscando?"
115
 
116
- #: includes/class-freemius.php:2134
117
  msgid "The %s didn't work as expected"
118
  msgstr " El %s no funciona como esperaba"
119
 
120
- #: includes/class-freemius.php:2136
121
  msgid "What did you expect?"
122
  msgstr "¿Qué esperas?"
123
 
124
- #: includes/class-freemius.php2942, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Debug Freemius"
127
 
128
- #: includes/class-freemius.php:3670
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
 
132
- #: includes/class-freemius.php:3672
133
  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."
134
  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."
135
 
136
- #: includes/class-freemius.php:3679
137
  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."
138
  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."
139
 
140
- #: includes/class-freemius.php:3784
141
  msgid "Yes - do your thing"
142
  msgstr "Vamos, adelante"
143
 
144
- #: includes/class-freemius.php:3789
145
  msgid "No - just deactivate"
146
  msgstr "No - sólo desactivar"
147
 
148
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
- #: includes/class-freemius.php19001, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
- #: includes/class-freemius.php:3903
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 "¡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."
162
 
163
- #: includes/class-freemius.php:4340
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s no se puede ejecutar sin %s."
167
 
168
- #: includes/class-freemius.php:4341
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s no se puede ejecutar sin el plugin."
172
 
173
- #: includes/class-freemius.php4487, includes/class-freemius.php4512,
174
- #: includes/class-freemius.php:17953
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
 
178
- #: includes/class-freemius.php:5130
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La versión Premium %s ha sido activada con éxito."
181
 
182
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "W00t"
186
 
187
- #: includes/class-freemius.php:5157
188
  msgid "You have a %s license."
189
  msgstr "Tienes una licencia %s."
190
 
191
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
- #: includes/class-freemius.php:17707
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Vaya"
198
 
199
- #: includes/class-freemius.php:5425
200
  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."
201
  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."
202
 
203
- #: includes/class-freemius.php:5429
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
 
207
- #: includes/class-freemius.php5438, templates/add-ons.php103,
208
- #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Más información sobre %s"
211
 
212
- #: includes/class-freemius.php:5439
213
  msgid "Purchase License"
214
  msgstr "Comprar licencia"
215
 
216
- #: includes/class-freemius.php6372, templates/connect.php:163
217
  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."
218
  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."
219
 
220
- #: includes/class-freemius.php:6376
221
  msgid "start the trial"
222
  msgstr "comenzar el período de prueba"
223
 
224
- #: includes/class-freemius.php6377, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "completar la instalación"
227
 
228
- #: includes/class-freemius.php:6490
229
  msgid "You are just one step away - %s"
230
  msgstr "Estás a sólo un paso - %s"
231
 
232
- #: includes/class-freemius.php:6493
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Completar la activación de \"%s\" ahora"
236
 
237
- #: includes/class-freemius.php:6571
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
 
241
- #: includes/class-freemius.php:6575
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
244
 
245
- #: includes/class-freemius.php:7003
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La actualización de %s se completó con éxito."
248
 
249
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
- #: includes/class-fs-plugin-updater.php1081,
251
- #: includes/class-fs-plugin-updater.php1088,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Complemento"
255
 
256
- #: includes/class-freemius.php8927, templates/debug.php359,
257
- #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Plugin"
260
 
261
- #: includes/class-freemius.php8928, templates/debug.php359,
262
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
263
  msgid "Theme"
264
  msgstr "Tema"
265
 
266
- #: includes/class-freemius.php:11412
 
 
 
 
267
  msgid "Invalid site details collection."
268
  msgstr "Colección de detalles del sitio no válida."
269
 
270
- #: includes/class-freemius.php:11532
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  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?"
273
 
274
- #: includes/class-freemius.php:11534
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  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?"
277
 
278
- #: includes/class-freemius.php:11808
279
  msgid "Account is pending activation."
280
  msgstr "La cuenta está pendiente de activación"
281
 
282
- #: includes/class-freemius.php11920,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Compra una licencia ahora"
286
 
287
- #: includes/class-freemius.php11932,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renueva tu licencia ahora"
291
 
292
- #: includes/class-freemius.php:11936
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
295
 
296
- #: includes/class-freemius.php:14319
297
  msgid "%s activation was successfully completed."
298
  msgstr "%s activación se completó con éxito."
299
 
300
- #: includes/class-freemius.php:14333
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
303
 
304
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
  msgid "Your trial has been successfully started."
306
  msgstr "Tu versión de prueba se ha iniciado con éxito."
307
 
308
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
- #: includes/class-freemius.php:15028
310
  msgid "Couldn't activate %s."
311
  msgstr "No se puede activar %s."
312
 
313
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
- #: includes/class-freemius.php:15029
315
  msgid "Please contact us with the following message:"
316
  msgstr "Por favor contáctanos con el siguiente mensaje:"
317
 
318
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
319
  msgid "Upgrade"
320
  msgstr "Actualizar"
321
 
322
- #: includes/class-freemius.php:15384
323
  msgid "Start Trial"
324
  msgstr "Comenzar el período de prueba"
325
 
326
- #: includes/class-freemius.php:15386
327
  msgid "Pricing"
328
  msgstr "Precio"
329
 
330
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
  msgid "Affiliation"
332
  msgstr "Afiliación"
333
 
334
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
- #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Cuenta"
338
 
339
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Contáctanos"
343
 
344
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
- #: includes/class-freemius.php19849, templates/account.php100,
346
- #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Complementos"
349
 
350
- #: includes/class-freemius.php:15541
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
- #: includes/class-freemius.php:15541
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
- #: includes/class-freemius.php15543, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Precio"
364
 
365
- #: includes/class-freemius.php15756,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Foro de soporte"
369
 
370
- #: includes/class-freemius.php:16542
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
373
 
374
- #: includes/class-freemius.php:16543
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Bien hecho"
378
 
379
- #: includes/class-freemius.php:17168
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Tu complemento %s del plan se actualizó con éxito."
382
 
383
- #: includes/class-freemius.php:17170
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "El complemento %s ha sido comprado correctamente."
386
 
387
- #: includes/class-freemius.php:17173
388
  msgid "Download the latest version"
389
  msgstr "Descargar la última versión"
390
 
391
- #: includes/class-freemius.php:17259
392
- msgctxt "%1s - plugin title, %2s - API domain"
393
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
- msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
395
 
396
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
- #: includes/class-freemius.php:17755
398
  msgid "Error received from the server:"
399
  msgstr "Error recibido del servidor:"
400
 
401
- #: includes/class-freemius.php:17272
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  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."
404
 
405
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
- #: includes/class-freemius.php:17467
412
  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."
413
  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."
414
 
415
- #: includes/class-freemius.php17468, templates/account.php102,
416
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Período de Prueba Gratuito"
420
 
421
- #: includes/class-freemius.php:17473
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
424
 
425
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
  msgid "Please contact us here"
427
  msgstr "Contacta aquí con nosotros"
428
 
429
- #: includes/class-freemius.php:17487
 
 
 
 
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Tu plan se actualizó con éxito."
432
 
433
- #: includes/class-freemius.php:17505
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Tu plan se cambió correctamente a %s."
436
 
437
- #: includes/class-freemius.php:17521
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
440
 
441
- #: includes/class-freemius.php:17523
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
444
 
445
- #: includes/class-freemius.php:17531
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
448
 
449
- #: includes/class-freemius.php:17544
450
  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."
451
  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."
452
 
453
- #: includes/class-freemius.php:17567
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
456
 
457
- #: includes/class-freemius.php:17569
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
460
 
461
- #: includes/class-freemius.php:17674
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Parece que la licencia no se pudo activar."
464
 
465
- #: includes/class-freemius.php:17704
466
  msgid "Your license was successfully activated."
467
  msgstr "Tu licencia fue activada correctamente."
468
 
469
- #: includes/class-freemius.php:17730
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
472
 
473
- #: includes/class-freemius.php:17754
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Parece que la desactivación de licencia ha fallado."
476
 
477
- #: includes/class-freemius.php:17782
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
480
 
481
- #: includes/class-freemius.php:17783
482
  msgid "O.K"
483
  msgstr "O.K"
484
 
485
- #: includes/class-freemius.php:17836
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
488
 
489
- #: includes/class-freemius.php:17845
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
492
 
493
- #: includes/class-freemius.php:17887
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Estás ejecutando %s en modo de prueba."
496
 
497
- #: includes/class-freemius.php:17898
498
  msgid "You already utilized a trial before."
499
  msgstr "Ya utilizaste un período de prueba antes."
500
 
501
- #: includes/class-freemius.php:17912
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
504
 
505
- #: includes/class-freemius.php:17923
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "El plan %s no admite un período de prueba."
508
 
509
- #: includes/class-freemius.php:17934
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
512
 
513
- #: includes/class-freemius.php:17984
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
516
 
517
- #: includes/class-freemius.php:18020
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
520
 
521
- #: includes/class-freemius.php:18039
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
524
 
525
- #: includes/class-freemius.php:18346
526
  msgid "Version %s was released."
527
  msgstr "La versión %s se ha lanzado."
528
 
529
- #: includes/class-freemius.php:18346
530
  msgid "Please download %s."
531
  msgstr "Por favor descarga %s."
532
 
533
- #: includes/class-freemius.php:18353
534
  msgid "the latest %s version here"
535
  msgstr "la última versión %s aquí"
536
 
537
- #: includes/class-freemius.php:18358
538
  msgid "New"
539
  msgstr "Nuevo"
540
 
541
- #: includes/class-freemius.php:18363
542
  msgid "Seems like you got the latest release."
543
  msgstr "Parece que tienes la última versión."
544
 
545
- #: includes/class-freemius.php:18364
546
  msgid "You are all good!"
547
  msgstr "¡Está todo listo!"
548
 
549
- #: includes/class-freemius.php:18632
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  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."
552
 
553
- #: includes/class-freemius.php:18769
554
  msgid "Site successfully opted in."
555
  msgstr "Sitio dado de alta correctamente."
556
 
557
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
  msgid "Awesome"
559
  msgstr "Increíble"
560
 
561
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
564
 
565
- #: includes/class-freemius.php:18787
566
  msgid "Thank you!"
567
  msgstr "¡Gracias!"
568
 
569
- #: includes/class-freemius.php:18794
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
572
 
573
- #: includes/class-freemius.php:18923
574
  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."
575
  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."
576
 
577
- #: includes/class-freemius.php:18929
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
580
 
581
- #: includes/class-freemius.php:18934
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s es el nuevo dueño de la cuenta."
584
 
585
- #: includes/class-freemius.php:18936
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Felicidades"
589
 
590
- #: includes/class-freemius.php:18956
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  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."
593
 
594
- #: includes/class-freemius.php:18957
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
597
 
598
- #: includes/class-freemius.php:18964
599
  msgid "Change Ownership"
600
  msgstr "Cambiar propietario"
601
 
602
- #: includes/class-freemius.php:18972
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
605
 
606
- #: includes/class-freemius.php:18984
607
  msgid "Please provide your full name."
608
  msgstr "Por favor, dinos tu nombre completo."
609
 
610
- #: includes/class-freemius.php:18989
611
  msgid "Your name was successfully updated."
612
  msgstr "Tu nombre fue actualizado correctamente."
613
 
614
- #: includes/class-freemius.php:19050
615
  msgid "You have successfully updated your %s."
616
  msgstr "Has actualizado correctamente tu %s."
617
 
618
- #: includes/class-freemius.php:19190
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
621
 
622
- #: includes/class-freemius.php:19191
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Atención"
626
 
627
- #: includes/class-freemius.php:19621
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Hey"
631
 
632
- #: includes/class-freemius.php:19621
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
635
 
636
- #: includes/class-freemius.php:19629
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
639
 
640
- #: includes/class-freemius.php:19630
641
  msgid "No credit card required"
642
  msgstr "No se necesita tarjeta de crédito"
643
 
644
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Comenzar el período de prueba gratuito"
648
 
649
- #: includes/class-freemius.php:19714
650
  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!"
651
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
652
 
653
- #: includes/class-freemius.php:19723
654
  msgid "Learn more"
655
  msgstr "Saber más"
656
 
657
- #: includes/class-freemius.php19873, templates/account.php406,
658
- #: templates/account.php509, templates/connect.php171,
659
- #: templates/connect.php421, templates/forms/license-activation.php24,
660
- #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Activar licencia"
663
 
664
- #: includes/class-freemius.php19874, templates/account.php469,
665
- #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Cambiar licencia"
668
 
669
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Darse de baja"
672
 
673
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Inscribirse"
678
 
679
- #: includes/class-freemius.php:20187
680
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
- msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
682
 
683
- #: includes/class-freemius.php:20195
684
  msgid "Activate %s features"
685
  msgstr "Activar características %s"
686
 
687
- #: includes/class-freemius.php:20208
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Por favor, sigue estos pasos para completar la actualización"
690
 
691
- #: includes/class-freemius.php:20212
692
  msgid "Download the latest %s version"
693
  msgstr "Descargar la última versión %s"
694
 
695
- #: includes/class-freemius.php:20216
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Cargar y activar la versión descargada"
698
 
699
- #: includes/class-freemius.php:20218
700
  msgid "How to upload and activate?"
701
  msgstr "¿Cómo subirlo y activarlo?"
702
 
703
- #: includes/class-freemius.php:20352
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
706
 
707
- #: includes/class-freemius.php:20513
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
710
 
711
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
- #: includes/class-fs-plugin-updater.php1060,
713
- #: includes/class-fs-plugin-updater.php:1074
714
  msgid "Invalid module ID."
715
  msgstr "Id de módulo no válido."
716
 
717
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
  msgid "Premium version already active."
719
  msgstr "Versión premium ya activa."
720
 
721
- #: includes/class-freemius.php:20539
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "No tienes una licencia válida para acceder a la versión premium."
724
 
725
- #: includes/class-freemius.php:20546
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
728
 
729
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
  msgid "Premium add-on version already installed."
731
  msgstr "Versión del complemento premium ya instalada."
732
 
733
- #: includes/class-freemius.php:20909
734
  msgid "View paid features"
735
  msgstr "Ver las funciones de pago"
736
 
737
- #: includes/class-freemius.php:21229
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
740
 
741
- #: includes/class-freemius.php:21230
742
  msgid "Thank you so much for using %s!"
743
  msgstr "¡Muchas gracias por utilizar %s!"
744
 
745
- #: includes/class-freemius.php:21236
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
748
 
749
- #: includes/class-freemius.php:21240
750
  msgid "Thank you so much for using our products!"
751
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
752
 
753
- #: includes/class-freemius.php:21241
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
756
 
757
- #: includes/class-freemius.php:21260
758
  msgid "%s and its add-ons"
759
  msgstr "%s y sus complementos"
760
 
761
- #: includes/class-freemius.php:21269
762
  msgid "Products"
763
  msgstr "Productos"
764
 
765
- #: includes/class-freemius.php21276, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Si"
768
 
769
- #: includes/class-freemius.php21277, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
772
 
773
- #: includes/class-freemius.php21278, templates/connect.php:278
774
  msgid "No"
775
  msgstr "No"
776
 
777
- #: includes/class-freemius.php21280, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
780
 
781
- #: includes/class-freemius.php:21290
782
- 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 🙂"
783
- msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
784
 
785
- #: includes/class-freemius.php21292, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
788
 
789
- #: includes/class-freemius.php:21574
790
  msgid "License key is empty."
791
  msgstr "La clave de licencia está vacía."
792
 
@@ -800,628 +820,680 @@ msgstr "Renovar la licencia"
800
  msgid "Buy license"
801
  msgstr "Comprar licencia"
802
 
803
- #: includes/class-fs-plugin-updater.php:278
 
804
  msgid "There is a %s of %s available."
805
  msgstr "Hay una %s de %s disponible."
806
 
807
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
808
  msgid "new version"
809
  msgstr "nueva versión"
810
 
811
- #: includes/class-fs-plugin-updater.php:305
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Aviso importante de actualización:"
814
 
815
- #: includes/class-fs-plugin-updater.php:1125
816
  msgid "Installing plugin: %s"
817
  msgstr "Instalando plugin: %s"
818
 
819
- #: includes/class-fs-plugin-updater.php:1166
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
822
 
823
- #: includes/class-fs-plugin-updater.php:1348
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
826
 
827
- #: includes/fs-plugin-info-dialog.php369,
828
- #: templates/account/partials/addon.php:292
 
 
 
 
829
  msgctxt "verb"
830
  msgid "Purchase"
831
  msgstr "Comprar"
832
 
833
- #: includes/fs-plugin-info-dialog.php:372
834
  msgid "Start my free %s"
835
  msgstr "Comenzar mi período gratuito de %s"
836
 
837
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
838
  msgid "Install Free Version Now"
839
  msgstr "Instalar la versión gratuita ahora"
840
 
841
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
- #: templates/account/partials/addon.php272,
843
- #: templates/account/partials/addon.php:322
 
844
  msgid "Install Now"
845
  msgstr "Instalar ahora"
846
 
847
- #: includes/fs-plugin-info-dialog.php:425
848
  msgctxt "as download latest version"
849
  msgid "Download Latest Free Version"
850
  msgstr "Descargar la última versión gratuita"
851
 
852
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
- #: templates/account/partials/addon.php:21
854
  msgctxt "as download latest version"
855
  msgid "Download Latest"
856
  msgstr "Descargar la última"
857
 
858
- #: includes/fs-plugin-info-dialog.php:436
859
- msgid "Install Free Version Update Now"
860
- msgstr "Instalar la actualización gratuita ahora"
861
-
862
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
- msgid "Install Update Now"
864
- msgstr "Instalar actualización ahora"
865
-
866
- #: includes/fs-plugin-info-dialog.php:448
867
- msgid "Newer Free Version (%s) Installed"
868
- msgstr "Versión gratuita más reciente (%s) instalada"
869
-
870
- #: includes/fs-plugin-info-dialog.php:449
871
- msgid "Newer Version (%s) Installed"
872
- msgstr "Versión más reciente (%s) instalada"
873
 
874
- #: includes/fs-plugin-info-dialog.php:457
875
- msgid "Latest Free Version Installed"
876
- msgstr "Última versión gratuita instalada"
877
 
878
- #: includes/fs-plugin-info-dialog.php:458
879
- msgid "Latest Version Installed"
880
- msgstr "Última versión instalada"
 
881
 
882
- #: includes/fs-plugin-info-dialog.php:613
883
  msgctxt "Plugin installer section title"
884
  msgid "Description"
885
  msgstr "Descripción"
886
 
887
- #: includes/fs-plugin-info-dialog.php:614
888
  msgctxt "Plugin installer section title"
889
  msgid "Installation"
890
  msgstr "Instalación"
891
 
892
- #: includes/fs-plugin-info-dialog.php:615
893
  msgctxt "Plugin installer section title"
894
  msgid "FAQ"
895
  msgstr "FAQ"
896
 
897
- #: includes/fs-plugin-info-dialog.php616,
898
  #: templates/plugin-info/description.php:55
899
  msgid "Screenshots"
900
  msgstr "Capturas de pantalla"
901
 
902
- #: includes/fs-plugin-info-dialog.php:617
903
  msgctxt "Plugin installer section title"
904
  msgid "Changelog"
905
  msgstr "Registro de cambios"
906
 
907
- #: includes/fs-plugin-info-dialog.php:618
908
  msgctxt "Plugin installer section title"
909
  msgid "Reviews"
910
  msgstr "Valoraciones"
911
 
912
- #: includes/fs-plugin-info-dialog.php:619
913
  msgctxt "Plugin installer section title"
914
  msgid "Other Notes"
915
  msgstr "Otras notas"
916
 
917
- #: includes/fs-plugin-info-dialog.php:634
918
  msgctxt "Plugin installer section title"
919
  msgid "Features & Pricing"
920
  msgstr "Características y precios"
921
 
922
- #: includes/fs-plugin-info-dialog.php:644
923
  msgid "Plugin Install"
924
  msgstr "Instalar plugin"
925
 
926
- #: includes/fs-plugin-info-dialog.php:716
927
  msgctxt "e.g. Professional Plan"
928
  msgid "%s Plan"
929
  msgstr "Plan %s"
930
 
931
- #: includes/fs-plugin-info-dialog.php:742
932
  msgctxt "e.g. the best product"
933
  msgid "Best"
934
  msgstr "El mejor"
935
 
936
- #: includes/fs-plugin-info-dialog.php748,
937
- #: includes/fs-plugin-info-dialog.php:768
938
  msgctxt "as every month"
939
  msgid "Monthly"
940
  msgstr "Mensual"
941
 
942
- #: includes/fs-plugin-info-dialog.php:751
943
  msgctxt "as once a year"
944
  msgid "Annual"
945
  msgstr "Anual"
946
 
947
- #: includes/fs-plugin-info-dialog.php:754
948
  msgid "Lifetime"
949
  msgstr "Permanente"
950
 
951
- #: includes/fs-plugin-info-dialog.php768,
952
- #: includes/fs-plugin-info-dialog.php770,
953
- #: includes/fs-plugin-info-dialog.php:772
954
  msgctxt "e.g. billed monthly"
955
  msgid "Billed %s"
956
  msgstr "Facturado %s"
957
 
958
- #: includes/fs-plugin-info-dialog.php:770
959
  msgctxt "as once a year"
960
  msgid "Annually"
961
  msgstr "Anualmente"
962
 
963
- #: includes/fs-plugin-info-dialog.php:772
964
  msgctxt "as once a year"
965
  msgid "Once"
966
  msgstr "Una vez"
967
 
968
- #: includes/fs-plugin-info-dialog.php:778
969
  msgid "Single Site License"
970
  msgstr "Licencia para un único sitio"
971
 
972
- #: includes/fs-plugin-info-dialog.php:780
973
  msgid "Unlimited Licenses"
974
  msgstr "Licencias ilimitadas"
975
 
976
- #: includes/fs-plugin-info-dialog.php:782
977
  msgid "Up to %s Sites"
978
  msgstr "Hasta %s sitios"
979
 
980
- #: includes/fs-plugin-info-dialog.php792,
981
  #: templates/plugin-info/features.php:82
982
  msgctxt "as monthly period"
983
  msgid "mo"
984
  msgstr "me"
985
 
986
- #: includes/fs-plugin-info-dialog.php799,
987
  #: templates/plugin-info/features.php:80
988
  msgctxt "as annual period"
989
  msgid "year"
990
  msgstr "año"
991
 
992
- #: includes/fs-plugin-info-dialog.php:853
993
  msgctxt "noun"
994
  msgid "Price"
995
  msgstr "Precio"
996
 
997
- #: includes/fs-plugin-info-dialog.php:901
998
  msgid "Save %s"
999
  msgstr "Guardar %s"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php:911
1002
  msgid "No commitment for %s - cancel anytime"
1003
  msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1004
 
1005
- #: includes/fs-plugin-info-dialog.php:914
1006
  msgid "After your free %s, pay as little as %s"
1007
  msgstr "Después de su período gratuito %s, pague sólo %s"
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:925
1010
  msgid "Details"
1011
  msgstr "Detalles"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
- #: templates/account/partials/addon.php:32
1016
  msgctxt "product version"
1017
  msgid "Version"
1018
  msgstr "Versión"
1019
 
1020
- #: includes/fs-plugin-info-dialog.php:936
1021
  msgctxt "as the plugin author"
1022
  msgid "Author"
1023
  msgstr "Autor"
1024
 
1025
- #: includes/fs-plugin-info-dialog.php:943
1026
  msgid "Last Updated"
1027
  msgstr "Última actualización"
1028
 
1029
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
  msgctxt "x-ago"
1031
  msgid "%s ago"
1032
  msgstr "hace %s"
1033
 
1034
- #: includes/fs-plugin-info-dialog.php:957
1035
  msgid "Requires WordPress Version"
1036
  msgstr "Necesita la versión de WordPress"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php:958
1039
  msgid "%s or higher"
1040
  msgstr "%s o mayor"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:965
1043
  msgid "Compatible up to"
1044
  msgstr "Compatible hasta"
1045
 
1046
- #: includes/fs-plugin-info-dialog.php:973
1047
  msgid "Downloaded"
1048
  msgstr "Descargado"
1049
 
1050
- #: includes/fs-plugin-info-dialog.php:977
1051
  msgid "%s time"
1052
  msgstr "% vez"
1053
 
1054
- #: includes/fs-plugin-info-dialog.php:979
1055
  msgid "%s times"
1056
  msgstr "%s veces"
1057
 
1058
- #: includes/fs-plugin-info-dialog.php:989
1059
  msgid "WordPress.org Plugin Page"
1060
  msgstr "Página del plugin en WordPress.org"
1061
 
1062
- #: includes/fs-plugin-info-dialog.php:997
1063
  msgid "Plugin Homepage"
1064
  msgstr "Página web del plugin"
1065
 
1066
- #: includes/fs-plugin-info-dialog.php1005,
1067
- #: includes/fs-plugin-info-dialog.php:1087
1068
  msgid "Donate to this plugin"
1069
  msgstr "Donar a este plugin"
1070
 
1071
- #: includes/fs-plugin-info-dialog.php:1012
1072
  msgid "Average Rating"
1073
  msgstr "Calificación media"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1019
1076
  msgid "based on %s"
1077
  msgstr "basado en %s"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php:1023
1080
  msgid "%s rating"
1081
  msgstr "%s calificación"
1082
 
1083
- #: includes/fs-plugin-info-dialog.php:1025
1084
  msgid "%s ratings"
1085
  msgstr "%s calificaciones"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php:1040
1088
  msgid "%s star"
1089
  msgstr "%s estrella"
1090
 
1091
- #: includes/fs-plugin-info-dialog.php:1042
1092
  msgid "%s stars"
1093
  msgstr "%s estrellas"
1094
 
1095
- #: includes/fs-plugin-info-dialog.php:1053
1096
  msgid "Click to see reviews that provided a rating of %s"
1097
  msgstr "Haz clic para ver los comentarios con una valoración de %s"
1098
 
1099
- #: includes/fs-plugin-info-dialog.php:1066
1100
  msgid "Contributors"
1101
  msgstr "Colaboradores"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1095,
1104
- #: includes/fs-plugin-info-dialog.php:1097
1105
  msgid "Warning"
1106
  msgstr "Atencion"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1095
1109
  msgid "This plugin has not been tested with your current version of WordPress."
1110
  msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1097
1113
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
  msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1115
 
1116
- #: includes/fs-plugin-info-dialog.php:1116
1117
  msgid "Paid add-on must be deployed to Freemius."
1118
  msgstr "El complemento de pago se debe implementar en Freemius."
1119
 
1120
- #: includes/fs-plugin-info-dialog.php:1117
1121
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
  msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1123
 
1124
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
  #: templates/account/partials/site.php:295
1127
  msgid "Downgrading your plan"
1128
  msgstr "Bajando tu plan"
1129
 
1130
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
- #: templates/account/partials/addon.php23,
1132
  #: templates/account/partials/site.php:296
1133
  msgid "Cancelling the subscription"
1134
  msgstr "Cancelando la suscripción"
1135
 
1136
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
  #. subscription'
1138
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
- #: templates/account/partials/addon.php25,
1140
- #: templates/account/partials/site.php:298
1141
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
- msgstr "%1s detendrá inmediatamente todos los pagos recurrentes futuros y tu %s licencia del plan caducará en %s."
1143
 
1144
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
- #: templates/account/partials/addon.php26,
1146
  #: templates/account/partials/site.php:299
1147
  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."
1148
  msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado."
1149
 
1150
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
- #: templates/account/partials/addon.php:27
1152
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
  msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1154
 
1155
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
- #: templates/account/partials/addon.php28,
1157
  #: templates/account/partials/site.php:300
1158
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
  msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1160
 
1161
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
- #: templates/account/partials/addon.php29,
1163
  #: templates/account/partials/site.php:301
1164
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
  msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
1166
 
1167
  #. translators: %s: Plan title (e.g. "Professional")
1168
- #: templates/account.php90,
1169
  #: templates/account/partials/activate-license-button.php31,
1170
- #: templates/account/partials/addon.php:31
1171
  msgid "Activate %s Plan"
1172
  msgstr "Activar plan %s"
1173
 
1174
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
- #: templates/account.php93, templates/account/partials/addon.php34,
1176
  #: templates/account/partials/site.php:275
1177
  msgid "Auto renews in %s"
1178
  msgstr "Auto renovaciones en %s"
1179
 
1180
  #. translators: %s: Time period (e.g. Expires in "2 months")
1181
- #: templates/account.php95, templates/account/partials/addon.php36,
1182
  #: templates/account/partials/site.php:277
1183
  msgid "Expires in %s"
1184
  msgstr "Caduca en %s"
1185
 
1186
- #: templates/account.php96, templates/account/partials/addon.php:37
1187
  msgctxt "as synchronize license"
1188
  msgid "Sync License"
1189
  msgstr "Sincronizar licencia"
1190
 
1191
- #: templates/account.php97, templates/account/partials/addon.php:38
1192
  msgid "Cancel Trial"
1193
  msgstr "Cancelar período de prueba"
1194
 
1195
- #: templates/account.php98, templates/account/partials/addon.php:39
1196
  msgid "Change Plan"
1197
  msgstr "Cambiar Plan"
1198
 
1199
- #: templates/account.php99, templates/account/partials/addon.php:40
1200
  msgctxt "verb"
1201
  msgid "Upgrade"
1202
  msgstr "Actualizar"
1203
 
1204
- #: templates/account.php101, templates/account/partials/addon.php42,
1205
  #: templates/account/partials/site.php:302
1206
  msgctxt "verb"
1207
  msgid "Downgrade"
1208
  msgstr "Degradar"
1209
 
1210
- #: templates/account.php103, templates/add-ons.php130,
1211
  #: templates/plugin-info/features.php72,
1212
- #: templates/account/partials/addon.php44,
1213
  #: templates/account/partials/site.php:31
1214
  msgid "Free"
1215
  msgstr "Gratis"
1216
 
1217
- #: templates/account.php104, templates/account/partials/addon.php:45
1218
- msgid "Activate"
1219
- msgstr "Activar"
1220
-
1221
- #: templates/account.php105, templates/debug.php371,
1222
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
- #: templates/account/partials/addon.php:46
1224
  msgctxt "as product pricing plan"
1225
  msgid "Plan"
1226
  msgstr "Plan"
1227
 
1228
- #: templates/account.php:158
 
 
 
 
1229
  msgid "Free Trial"
1230
  msgstr "Período de prueba gratuito"
1231
 
1232
- #: templates/account.php:169
1233
  msgid "Account Details"
1234
  msgstr "Detalles de la cuenta"
1235
 
1236
- #: templates/account.php:179
 
 
 
 
1237
  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?"
1238
  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?"
1239
 
1240
- #: templates/account.php:181
1241
  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?"
1242
  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?"
1243
 
1244
- #: templates/account.php:184
1245
  msgid "Delete Account"
1246
  msgstr "Borrar cuenta"
1247
 
1248
- #: templates/account.php196, templates/account/partials/addon.php159,
1249
  #: templates/account/partials/deactivate-license-button.php:35
1250
  msgid "Deactivate License"
1251
  msgstr "Desactivar licencia"
1252
 
1253
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
  msgid "Are you sure you want to proceed?"
1255
  msgstr "¿Estás seguro que quieres proceder?"
1256
 
1257
- #: templates/account.php219, templates/account/partials/addon.php:182
1258
  msgid "Cancel Subscription"
1259
  msgstr "Cancelar suscripción"
1260
 
1261
- #: templates/account.php:247
1262
  msgctxt "as synchronize"
1263
  msgid "Sync"
1264
  msgstr "Sincronizar"
1265
 
1266
- #: templates/account.php261, templates/debug.php:487
1267
  msgid "Name"
1268
  msgstr "Nombre"
1269
 
1270
- #: templates/account.php267, templates/debug.php:488
1271
  msgid "Email"
1272
  msgstr "Correo electrónico"
1273
 
1274
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
  msgid "User ID"
1276
  msgstr "ID de usuario"
1277
 
1278
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1279
  msgid "Site ID"
1280
  msgstr "ID del sitio"
1281
 
1282
- #: templates/account.php:285
1283
  msgid "No ID"
1284
  msgstr "Sin ID"
1285
 
1286
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
- #: templates/debug.php453, templates/debug.php490,
1288
  #: templates/account/partials/site.php:219
1289
  msgid "Public Key"
1290
  msgstr "Clave pública"
1291
 
1292
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
- #: templates/debug.php491, templates/account/partials/site.php:231
1294
  msgid "Secret Key"
1295
  msgstr "Clave secreta"
1296
 
1297
- #: templates/account.php:299
1298
  msgctxt "as secret encryption key missing"
1299
  msgid "No Secret"
1300
  msgstr "Sin clave secreta"
1301
 
1302
- #: templates/account.php318, templates/account/partials/site.php112,
1303
  #: templates/account/partials/site.php:114
1304
  msgid "Trial"
1305
  msgstr "Período de prueba gratuito"
1306
 
1307
- #: templates/account.php337, templates/debug.php531,
1308
  #: templates/account/partials/site.php:248
1309
  msgid "License Key"
1310
  msgstr "Clave de licencia"
1311
 
1312
- #: templates/account.php:367
 
 
 
 
1313
  msgid "not verified"
1314
  msgstr "no verificado"
1315
 
1316
- #: templates/account.php376, templates/account/partials/addon.php:120
1317
  msgid "Expired"
1318
  msgstr "Caducado"
1319
 
1320
- #: templates/account.php:428
1321
  msgid "Premium version"
1322
  msgstr "Versión premium"
1323
 
1324
- #: templates/account.php:430
1325
  msgid "Free version"
1326
  msgstr "Versión gratuita"
1327
 
1328
- #: templates/account.php:442
1329
  msgid "Verify Email"
1330
  msgstr "Verificar correo electrónico"
1331
 
1332
- #: templates/account.php:453
1333
  msgid "Download %s Version"
1334
  msgstr "Descargar versión %s"
1335
 
1336
- #: templates/account.php467, templates/account.php649,
1337
  #: templates/account/partials/site.php237,
1338
  #: templates/account/partials/site.php:255
1339
  msgctxt "verb"
1340
  msgid "Show"
1341
  msgstr "Mostrar"
1342
 
1343
- #: templates/account.php:481
1344
  msgid "What is your %s?"
1345
  msgstr "¿Cual es tú %s?"
1346
 
1347
- #: templates/account.php489, templates/account/billing.php:27
1348
  msgctxt "verb"
1349
  msgid "Edit"
1350
  msgstr "Editar"
1351
 
1352
- #: templates/account.php:502
1353
  msgid "Sites"
1354
  msgstr "Sitios"
1355
 
1356
- #: templates/account.php:513
1357
  msgid "Search by address"
1358
  msgstr "Buscar por dirección"
1359
 
1360
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
- #: templates/debug.php524, templates/debug.php597,
1363
- #: templates/account/payments.php35, templates/debug/logger.php:21
1364
- msgid "ID"
1365
- msgstr "ID"
1366
-
1367
- #: templates/account.php523, templates/debug.php:367
1368
  msgid "Address"
1369
  msgstr "Dirección"
1370
 
1371
- #: templates/account.php:524
1372
  msgid "License"
1373
  msgstr "Licencia"
1374
 
1375
- #: templates/account.php:525
1376
  msgid "Plan"
1377
  msgstr "Plan"
1378
 
1379
- #: templates/account.php:573
1380
  msgctxt "as software license"
1381
  msgid "License"
1382
  msgstr "Licencia"
1383
 
1384
- #: templates/account.php:643
1385
  msgctxt "verb"
1386
  msgid "Hide"
1387
  msgstr "Ocultar"
1388
 
1389
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1390
  msgid "Cancelling %s"
1391
  msgstr "Cancelando %s"
1392
 
1393
- #: templates/account.php686, templates/account.php703,
1394
  #: templates/forms/subscription-cancellation.php27,
1395
- #: templates/forms/deactivation/form.php:117
1396
  msgid "trial"
1397
  msgstr "período de prueba"
1398
 
1399
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
  msgid "Cancelling %s..."
1401
  msgstr "Cancelando %s..."
1402
 
1403
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
- #: templates/forms/deactivation/form.php:118
1405
  msgid "subscription"
1406
  msgstr "suscripción"
1407
 
1408
- #: templates/account.php:718
1409
  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?"
1410
  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?"
1411
 
1412
- #: templates/add-ons.php:36
 
 
 
 
1413
  msgid "Add Ons for %s"
1414
  msgstr "Complementos para %s"
1415
 
1416
- #: templates/add-ons.php:44
1417
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
  msgstr "No podemos cargar la lista de complementos. Probablemente es un problema por nuestro parte, por favor inténtalo de nuevo en unos minutos."
1419
 
1420
- #: templates/add-ons.php:139
1421
- msgid "View details"
1422
- msgstr "Ver detalles"
 
 
 
 
 
 
1423
 
1424
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
  #: templates/forms/resend-key.php:77
1426
  msgctxt "as close a window"
1427
  msgid "Dismiss"
@@ -1447,11 +1519,11 @@ msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en c
1447
  msgid "Cancel Installation"
1448
  msgstr "Cancelar instalación"
1449
 
1450
- #: templates/checkout.php:172
1451
  msgid "Checkout"
1452
  msgstr "Pagar"
1453
 
1454
- #: templates/checkout.php:172
1455
  msgid "PCI compliant"
1456
  msgstr "Compatible con PCI"
1457
 
@@ -1473,7 +1545,7 @@ msgstr "Reenviar correo electrónico de activación"
1473
  msgid "Thanks %s!"
1474
  msgstr "¡Gracias %s!"
1475
 
1476
- #: templates/connect.php172, templates/forms/license-activation.php:43
1477
  msgid "Agree & Activate License"
1478
  msgstr "De acuerdo y activar licencia"
1479
 
@@ -1521,15 +1593,15 @@ msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después,
1521
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
  msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1523
 
1524
- #: templates/connect.php253, templates/forms/license-activation.php:46
1525
  msgid "License key"
1526
  msgstr "Clave de licencia"
1527
 
1528
- #: templates/connect.php256, templates/forms/license-activation.php:19
1529
  msgid "Can't find your license key?"
1530
  msgstr "¿No puedes encontrar tu clave de licencia?"
1531
 
1532
- #: templates/connect.php315, templates/connect.php630,
1533
  #: templates/forms/deactivation/retry-skip.php:20
1534
  msgctxt "verb"
1535
  msgid "Skip"
@@ -1579,7 +1651,7 @@ msgstr "Activación, desactivación y desinstalación"
1579
  msgid "Newsletter"
1580
  msgstr "Boletín"
1581
 
1582
- #: templates/connect.php391, templates/forms/license-activation.php:38
1583
  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."
1584
  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."
1585
 
@@ -1591,10 +1663,6 @@ msgstr "¿Qué permisos se otorgan?"
1591
  msgid "Don't have a license key?"
1592
  msgstr "¿No tienes una clave de licencia?"
1593
 
1594
- #: templates/connect.php:418
1595
- msgid "Activate Free Version"
1596
- msgstr "Activar versión gratuita"
1597
-
1598
  #: templates/connect.php:420
1599
  msgid "Have a license key?"
1600
  msgstr "¿Tienes una clave de licencia?"
@@ -1611,12 +1679,12 @@ msgstr "Acuerdo de licencia"
1611
  msgid "Terms of Service"
1612
  msgstr "Términos de servicio"
1613
 
1614
- #: templates/connect.php:766
1615
  msgctxt "as in the process of sending an email"
1616
  msgid "Sending email"
1617
  msgstr "Enviando correo electrónico"
1618
 
1619
- #: templates/connect.php:767
1620
  msgctxt "as activating plugin"
1621
  msgid "Activating"
1622
  msgstr "Activando"
@@ -1644,8 +1712,8 @@ msgctxt "as code debugging"
1644
  msgid "Debugging"
1645
  msgstr "Depurando"
1646
 
1647
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
- #: templates/debug.php:492
1649
  msgid "Actions"
1650
  msgstr "Acciones"
1651
 
@@ -1681,191 +1749,191 @@ msgstr "Cargar opción de BD"
1681
  msgid "Set DB Option"
1682
  msgstr "Guardar opción en BD"
1683
 
1684
- #: templates/debug.php:180
1685
  msgid "Key"
1686
  msgstr "Clave"
1687
 
1688
- #: templates/debug.php:181
1689
  msgid "Value"
1690
  msgstr "Valor"
1691
 
1692
- #: templates/debug.php:197
1693
  msgctxt "as software development kit versions"
1694
  msgid "SDK Versions"
1695
  msgstr "Versiones SDK"
1696
 
1697
- #: templates/debug.php:202
1698
  msgid "SDK Path"
1699
  msgstr "Ruta del SDK"
1700
 
1701
- #: templates/debug.php203, templates/debug.php:242
1702
  msgid "Module Path"
1703
  msgstr "Ruta del módulo"
1704
 
1705
- #: templates/debug.php:204
1706
  msgid "Is Active"
1707
  msgstr "Está activo"
1708
 
1709
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
  msgid "Plugins"
1711
  msgstr "Plugins"
1712
 
1713
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
  msgid "Themes"
1715
  msgstr "Temas"
1716
 
1717
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
  #: templates/debug/scheduled-crons.php:80
1719
  msgid "Slug"
1720
  msgstr "Ruta"
1721
 
1722
- #: templates/debug.php239, templates/debug.php:450
1723
  msgid "Title"
1724
  msgstr "Título"
1725
 
1726
- #: templates/debug.php:240
1727
  msgctxt "as application program interface"
1728
  msgid "API"
1729
  msgstr "API"
1730
 
1731
- #: templates/debug.php:241
1732
  msgid "Freemius State"
1733
  msgstr "Estado Freemius"
1734
 
1735
- #: templates/debug.php:245
1736
  msgid "Network Blog"
1737
  msgstr "Blog de red"
1738
 
1739
- #: templates/debug.php:246
1740
  msgid "Network User"
1741
  msgstr "Usuario de red"
1742
 
1743
- #: templates/debug.php:283
1744
  msgctxt "as connection was successful"
1745
  msgid "Connected"
1746
  msgstr "Conectado"
1747
 
1748
- #: templates/debug.php:284
1749
  msgctxt "as connection blocked"
1750
  msgid "Blocked"
1751
  msgstr "Bloqueado"
1752
 
1753
- #: templates/debug.php:320
1754
  msgid "Simulate Trial Promotion"
1755
  msgstr "Simular período de prueba"
1756
 
1757
- #: templates/debug.php:332
1758
  msgid "Simulate Network Upgrade"
1759
  msgstr "Simular actualización de red"
1760
 
1761
- #: templates/debug.php:358
1762
  msgid "%s Installs"
1763
  msgstr "%s Instalaciones"
1764
 
1765
- #: templates/debug.php:360
1766
  msgctxt "like websites"
1767
  msgid "Sites"
1768
  msgstr "Sitios"
1769
 
1770
- #: templates/debug.php366, templates/account/partials/site.php:148
1771
  msgid "Blog ID"
1772
  msgstr "ID del blog"
1773
 
1774
- #: templates/debug.php431, templates/debug.php509,
1775
- #: templates/account/partials/addon.php:339
1776
  msgctxt "verb"
1777
  msgid "Delete"
1778
  msgstr "Borrar"
1779
 
1780
- #: templates/debug.php:445
1781
  msgid "Add Ons of module %s"
1782
  msgstr "Complementos del módulo %s"
1783
 
1784
- #: templates/debug.php:482
1785
  msgid "Users"
1786
  msgstr "Usuarios"
1787
 
1788
- #: templates/debug.php:489
1789
  msgid "Verified"
1790
  msgstr "Verificado"
1791
 
1792
- #: templates/debug.php:520
1793
  msgid "%s Licenses"
1794
  msgstr "%s Licencias"
1795
 
1796
- #: templates/debug.php:525
1797
  msgid "Plugin ID"
1798
  msgstr "ID del plugin"
1799
 
1800
- #: templates/debug.php:527
1801
  msgid "Plan ID"
1802
  msgstr "ID del plan"
1803
 
1804
- #: templates/debug.php:528
1805
  msgid "Quota"
1806
  msgstr "Cuota"
1807
 
1808
- #: templates/debug.php:529
1809
  msgid "Activated"
1810
  msgstr "Activado"
1811
 
1812
- #: templates/debug.php:530
1813
  msgid "Blocking"
1814
  msgstr "Bloqueando"
1815
 
1816
- #: templates/debug.php:532
1817
  msgctxt "as expiration date"
1818
  msgid "Expiration"
1819
  msgstr "Caducidad"
1820
 
1821
- #: templates/debug.php:555
1822
  msgid "Debug Log"
1823
  msgstr "Log de Debug"
1824
 
1825
- #: templates/debug.php:559
1826
  msgid "All Types"
1827
  msgstr "Todos los Tipos"
1828
 
1829
- #: templates/debug.php:566
1830
  msgid "All Requests"
1831
  msgstr "Todas las peticiones"
1832
 
1833
- #: templates/debug.php571, templates/debug.php600,
1834
  #: templates/debug/logger.php:25
1835
  msgid "File"
1836
  msgstr "Archivo"
1837
 
1838
- #: templates/debug.php572, templates/debug.php598,
1839
  #: templates/debug/logger.php:23
1840
  msgid "Function"
1841
  msgstr "Función"
1842
 
1843
- #: templates/debug.php:573
1844
  msgid "Process ID"
1845
  msgstr "ID del proceso"
1846
 
1847
- #: templates/debug.php:574
1848
  msgid "Logger"
1849
  msgstr "Logger"
1850
 
1851
- #: templates/debug.php575, templates/debug.php599,
1852
  #: templates/debug/logger.php:24
1853
  msgid "Message"
1854
  msgstr "Mensaje"
1855
 
1856
- #: templates/debug.php:577
1857
  msgid "Filter"
1858
  msgstr "Filtro"
1859
 
1860
- #: templates/debug.php:585
1861
  msgid "Download"
1862
  msgstr "Descarga"
1863
 
1864
- #: templates/debug.php596, templates/debug/logger.php:22
1865
  msgid "Type"
1866
  msgstr "Tipo"
1867
 
1868
- #: templates/debug.php601, templates/debug/logger.php:26
1869
  msgid "Timestamp"
1870
  msgstr "Timestamp"
1871
 
@@ -1892,53 +1960,53 @@ msgstr "API Freemius"
1892
  msgid "Requests"
1893
  msgstr "Peticiones"
1894
 
1895
- #: templates/account/billing.php:28
1896
  msgctxt "verb"
1897
  msgid "Update"
1898
  msgstr "Actualizar"
1899
 
1900
- #: templates/account/billing.php:39
1901
  msgid "Billing"
1902
  msgstr "Facturación"
1903
 
1904
- #: templates/account/billing.php44, templates/account/billing.php:44
1905
  msgid "Business name"
1906
  msgstr "Nombre de la empresa"
1907
 
1908
- #: templates/account/billing.php45, templates/account/billing.php:45
1909
  msgid "Tax / VAT ID"
1910
  msgstr "Tax / Núm IVA"
1911
 
1912
- #: templates/account/billing.php48, templates/account/billing.php48,
1913
- #: templates/account/billing.php49, templates/account/billing.php:49
1914
  msgid "Address Line %d"
1915
  msgstr "Línea de la dirección %d"
1916
 
1917
- #: templates/account/billing.php52, templates/account/billing.php:52
1918
  msgid "City"
1919
  msgstr "Ciudad"
1920
 
1921
- #: templates/account/billing.php52, templates/account/billing.php:52
1922
  msgid "Town"
1923
  msgstr "Municipio"
1924
 
1925
- #: templates/account/billing.php53, templates/account/billing.php:53
1926
  msgid "ZIP / Postal Code"
1927
  msgstr "Código postal"
1928
 
1929
- #: templates/account/billing.php:308
1930
  msgid "Country"
1931
  msgstr "País"
1932
 
1933
- #: templates/account/billing.php:310
1934
  msgid "Select Country"
1935
  msgstr "Seleccionar país"
1936
 
1937
- #: templates/account/billing.php317, templates/account/billing.php:318
1938
  msgid "State"
1939
  msgstr "Estado"
1940
 
1941
- #: templates/account/billing.php317, templates/account/billing.php:318
1942
  msgid "Province"
1943
  msgstr "Provincia"
1944
 
@@ -2190,11 +2258,11 @@ msgstr "Cancelar"
2190
  msgid "Become an affiliate"
2191
  msgstr "Hacerse afiliado"
2192
 
2193
- #: templates/forms/license-activation.php:20
2194
  msgid "Please enter the license key that you received in the email right after the purchase:"
2195
  msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:"
2196
 
2197
- #: templates/forms/license-activation.php:25
2198
  msgid "Update License"
2199
  msgstr "Activar licencia"
2200
 
@@ -2261,6 +2329,14 @@ msgstr "Cancelar %s - No necesito más actualizaciones de características y seg
2261
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
  msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte."
2263
 
 
 
 
 
 
 
 
 
2264
  #: templates/forms/subscription-cancellation.php:103
2265
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
  msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida."
@@ -2274,7 +2350,7 @@ msgid "Proceed"
2274
  msgstr "Proceder"
2275
 
2276
  #: templates/forms/subscription-cancellation.php191,
2277
- #: templates/forms/deactivation/form.php:150
2278
  msgid "Cancel %s & Proceed"
2279
  msgstr "Cancelar %s y proceder"
2280
 
@@ -2286,38 +2362,42 @@ msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del
2286
  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."
2287
  msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba."
2288
 
2289
- #: templates/js/style-premium-theme.php:37
2290
  msgid "Premium"
2291
  msgstr "Premium"
2292
 
2293
- #: templates/partials/network-activation.php:23
 
 
 
 
2294
  msgid "Activate license on all sites in the network."
2295
  msgstr "Activar licencia en todos los sitios de la red"
2296
 
2297
- #: templates/partials/network-activation.php:24
2298
  msgid "Apply on all sites in the network."
2299
  msgstr "Aplicar en todos los sitios de la red"
2300
 
2301
- #: templates/partials/network-activation.php:27
2302
  msgid "Activate license on all pending sites."
2303
  msgstr "Aplicar licencia en todos los sitios pendientes"
2304
 
2305
- #: templates/partials/network-activation.php:28
2306
  msgid "Apply on all pending sites."
2307
  msgstr "Aplicar en todos los sitios pendientes"
2308
 
2309
- #: templates/partials/network-activation.php36,
2310
- #: templates/partials/network-activation.php:68
2311
  msgid "allow"
2312
  msgstr "permitir"
2313
 
2314
- #: templates/partials/network-activation.php38,
2315
- #: templates/partials/network-activation.php:70
2316
  msgid "delegate"
2317
  msgstr "delegar"
2318
 
2319
- #: templates/partials/network-activation.php41,
2320
- #: templates/partials/network-activation.php:73
2321
  msgid "skip"
2322
  msgstr "saltar"
2323
 
@@ -2343,19 +2423,14 @@ msgstr "quedan %s"
2343
  msgid "Last license"
2344
  msgstr "Última licencia"
2345
 
2346
- #: templates/account/partials/addon.php:115
2347
  msgid "Cancelled"
2348
  msgstr "Cancelado"
2349
 
2350
- #: templates/account/partials/addon.php:125
2351
  msgid "No expiration"
2352
  msgstr "Sin caducidad"
2353
 
2354
- #: templates/account/partials/addon.php264,
2355
- #: templates/account/partials/addon.php:317
2356
- msgid "Activate this add-on"
2357
- msgstr "Activar este complemento"
2358
-
2359
  #: templates/account/partials/site.php:181
2360
  msgid "Owner Name"
2361
  msgstr "Nombre del propietario"
@@ -2380,47 +2455,47 @@ msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una opor
2380
  msgid "Contact Support"
2381
  msgstr "Contactar soporte"
2382
 
2383
- #: templates/forms/deactivation/form.php:59
2384
  msgid "Anonymous feedback"
2385
  msgstr "Comentarios anónimos"
2386
 
2387
- #: templates/forms/deactivation/form.php:66
2388
  msgid "Deactivate"
2389
  msgstr "Desactivar"
2390
 
2391
- #: templates/forms/deactivation/form.php:68
2392
  msgid "Activate %s"
2393
  msgstr "Activar %s"
2394
 
2395
- #: templates/forms/deactivation/form.php:80
2396
  msgid "Quick Feedback"
2397
  msgstr "Comentarios rápidos"
2398
 
2399
- #: templates/forms/deactivation/form.php:84
2400
  msgid "If you have a moment, please let us know why you are %s"
2401
  msgstr "Si tienes un momento, por favor, dinos por qué estás %s"
2402
 
2403
- #: templates/forms/deactivation/form.php:84
2404
  msgid "deactivating"
2405
  msgstr "desactivando"
2406
 
2407
- #: templates/forms/deactivation/form.php:84
2408
  msgid "switching"
2409
  msgstr "cambiando"
2410
 
2411
- #: templates/forms/deactivation/form.php:332
2412
  msgid "Submit & %s"
2413
  msgstr "Enviar y %s"
2414
 
2415
- #: templates/forms/deactivation/form.php:353
2416
  msgid "Kindly tell us the reason so we can improve."
2417
  msgstr "Por favor, dínos la razón para que podamos mejorar."
2418
 
2419
- #: templates/forms/deactivation/form.php:478
2420
  msgid "Yes - %s"
2421
  msgstr "Si - %s"
2422
 
2423
- #: templates/forms/deactivation/form.php:485
2424
  msgid "Skip & %s"
2425
  msgstr "Saltar y %s"
2426
 
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-06-05 13:40+0000\n"
11
  "Last-Translator: Carlos Longarela <carlos@longarela.eu>\n"
12
  "Language: es_ES\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1838, templates/account.php:769
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:1845
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:2053
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:2055
37
  msgid "Error"
38
  msgstr "Error"
39
 
40
+ #: includes/class-freemius.php:2445
41
  msgid "I found a better %s"
42
  msgstr "He encontrado un %s mejor"
43
 
44
+ #: includes/class-freemius.php:2447
45
  msgid "What's the %s's name?"
46
  msgstr "¿Cuál es el nombre de %s?"
47
 
48
+ #: includes/class-freemius.php:2453
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:2455
53
  msgid "Deactivation"
54
  msgstr "Desactivación"
55
 
56
+ #: includes/class-freemius.php:2456
57
  msgid "Theme Switch"
58
  msgstr "Cambiar tema"
59
 
60
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
61
  msgid "Other"
62
  msgstr "Otra"
63
 
64
+ #: includes/class-freemius.php:2473
65
  msgid "I no longer need the %s"
66
  msgstr "Ya no necesito el %s"
67
 
68
+ #: includes/class-freemius.php:2480
69
  msgid "I only needed the %s for a short period"
70
  msgstr "Sólo necesitaba la %s por un corto período"
71
 
72
+ #: includes/class-freemius.php:2486
73
  msgid "The %s broke my site"
74
  msgstr "%s ha roto mi sitio"
75
 
76
+ #: includes/class-freemius.php:2493
77
  msgid "The %s suddenly stopped working"
78
  msgstr "%s de repente ha dejado de funcionar"
79
 
80
+ #: includes/class-freemius.php:2503
81
  msgid "I can't pay for it anymore"
82
  msgstr "No puedo pagarlo durante más tiempo"
83
 
84
+ #: includes/class-freemius.php:2505
85
  msgid "What price would you feel comfortable paying?"
86
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
87
 
88
+ #: includes/class-freemius.php:2511
89
  msgid "I don't like to share my information with you"
90
  msgstr "No me gusta compartir mi información contigo"
91
 
92
+ #: includes/class-freemius.php:2532
93
  msgid "The %s didn't work"
94
  msgstr "El %s no funcionaba"
95
 
96
+ #: includes/class-freemius.php:2542
97
  msgid "I couldn't understand how to make it work"
98
  msgstr "No entiendo cómo hacerlo funcionar"
99
 
100
+ #: includes/class-freemius.php:2550
101
  msgid "The %s is great, but I need specific feature that you don't support"
102
  msgstr "%s es genial, pero necesito una característica que no soportáis"
103
 
104
+ #: includes/class-freemius.php:2552
105
  msgid "What feature?"
106
  msgstr "¿Qué característica?"
107
 
108
+ #: includes/class-freemius.php:2556
109
  msgid "The %s is not working"
110
  msgstr " El %s no funciona"
111
 
112
+ #: includes/class-freemius.php:2558
113
  msgid "Kindly share what didn't work so we can fix it for future users..."
114
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
115
 
116
+ #: includes/class-freemius.php:2562
117
  msgid "It's not what I was looking for"
118
  msgstr "No es lo que estaba buscando"
119
 
120
+ #: includes/class-freemius.php:2564
121
  msgid "What you've been looking for?"
122
  msgstr "¿Que has estado buscando?"
123
 
124
+ #: includes/class-freemius.php:2568
125
  msgid "The %s didn't work as expected"
126
  msgstr " El %s no funciona como esperaba"
127
 
128
+ #: includes/class-freemius.php:2570
129
  msgid "What did you expect?"
130
  msgstr "¿Qué esperas?"
131
 
132
+ #: includes/class-freemius.php3425, templates/debug.php:20
133
  msgid "Freemius Debug"
134
  msgstr "Debug Freemius"
135
 
136
+ #: includes/class-freemius.php:4177
137
  msgid "I don't know what is cURL or how to install it, help me!"
138
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
139
 
140
+ #: includes/class-freemius.php:4179
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 "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."
143
 
144
+ #: includes/class-freemius.php:4186
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 "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."
147
 
148
+ #: includes/class-freemius.php:4291
149
  msgid "Yes - do your thing"
150
  msgstr "Vamos, adelante"
151
 
152
+ #: includes/class-freemius.php:4296
153
  msgid "No - just deactivate"
154
  msgstr "No - sólo desactivar"
155
 
156
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
157
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
158
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
159
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
160
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
161
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
162
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
163
  msgctxt "exclamation"
164
  msgid "Oops"
165
  msgstr "Oops"
166
 
167
+ #: includes/class-freemius.php:4410
168
  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."
169
  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."
170
 
171
+ #: includes/class-freemius.php:4847
172
  msgctxt "addonX cannot run without pluginY"
173
  msgid "%s cannot run without %s."
174
  msgstr "%s no se puede ejecutar sin %s."
175
 
176
+ #: includes/class-freemius.php:4848
177
  msgctxt "addonX cannot run..."
178
  msgid "%s cannot run without the plugin."
179
  msgstr "%s no se puede ejecutar sin el plugin."
180
 
181
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
182
+ #: includes/class-freemius.php:19475
183
  msgid "Unexpected API error. Please contact the %s's author with the following error."
184
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
185
 
186
+ #: includes/class-freemius.php:5687
187
  msgid "Premium %s version was successfully activated."
188
  msgstr "La versión Premium %s ha sido activada con éxito."
189
 
190
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
191
  msgctxt ""
192
  msgid "W00t"
193
  msgstr "W00t"
194
 
195
+ #: includes/class-freemius.php:5714
196
  msgid "You have a %s license."
197
  msgstr "Tienes una licencia %s."
198
 
199
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
200
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
201
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
202
+ #: includes/class-freemius.php:19229
203
  msgctxt "interjection expressing joy or exuberance"
204
  msgid "Yee-haw"
205
  msgstr "Vaya"
206
 
207
+ #: includes/class-freemius.php:5982
208
  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."
209
  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."
210
 
211
+ #: includes/class-freemius.php:5986
212
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
213
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
214
 
215
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
216
+ #: templates/account/partials/addon.php:343
217
  msgid "More information about %s"
218
  msgstr "Más información sobre %s"
219
 
220
+ #: includes/class-freemius.php:5996
221
  msgid "Purchase License"
222
  msgstr "Comprar licencia"
223
 
224
+ #: includes/class-freemius.php6931, templates/connect.php:163
225
  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."
226
  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."
227
 
228
+ #: includes/class-freemius.php:6935
229
  msgid "start the trial"
230
  msgstr "comenzar el período de prueba"
231
 
232
+ #: includes/class-freemius.php6936, templates/connect.php:167
233
  msgid "complete the install"
234
  msgstr "completar la instalación"
235
 
236
+ #: includes/class-freemius.php:7049
237
  msgid "You are just one step away - %s"
238
  msgstr "Estás a sólo un paso - %s"
239
 
240
+ #: includes/class-freemius.php:7052
241
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
242
  msgid "Complete \"%s\" Activation Now"
243
  msgstr "Completar la activación de \"%s\" ahora"
244
 
245
+ #: includes/class-freemius.php:7130
246
  msgid "We made a few tweaks to the %s, %s"
247
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
248
 
249
+ #: includes/class-freemius.php:7134
250
  msgid "Opt in to make \"%s\" better!"
251
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
252
 
253
+ #: includes/class-freemius.php:7566
254
  msgid "The upgrade of %s was successfully completed."
255
  msgstr "La actualización de %s se completó con éxito."
256
 
257
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
258
+ #: includes/class-fs-plugin-updater.php1170,
259
+ #: includes/class-fs-plugin-updater.php1177,
260
  #: templates/auto-installation.php:32
261
  msgid "Add-On"
262
  msgstr "Complemento"
263
 
264
+ #: includes/class-freemius.php9730, templates/account.php313,
265
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
266
  msgid "Plugin"
267
  msgstr "Plugin"
268
 
269
+ #: includes/class-freemius.php9731, templates/account.php314,
270
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
271
+ #: templates/forms/deactivation/form.php:71
272
  msgid "Theme"
273
  msgstr "Tema"
274
 
275
+ #: includes/class-freemius.php:12148
276
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
277
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
278
+
279
+ #: includes/class-freemius.php:12549
280
  msgid "Invalid site details collection."
281
  msgstr "Colección de detalles del sitio no válida."
282
 
283
+ #: includes/class-freemius.php:12669
284
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
285
  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?"
286
 
287
+ #: includes/class-freemius.php:12671
288
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
289
  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?"
290
 
291
+ #: includes/class-freemius.php:12945
292
  msgid "Account is pending activation."
293
  msgstr "La cuenta está pendiente de activación"
294
 
295
+ #: includes/class-freemius.php13057,
296
  #: templates/forms/premium-versions-upgrade-handler.php:47
297
  msgid "Buy a license now"
298
  msgstr "Compra una licencia ahora"
299
 
300
+ #: includes/class-freemius.php13069,
301
  #: templates/forms/premium-versions-upgrade-handler.php:46
302
  msgid "Renew your license now"
303
  msgstr "Renueva tu licencia ahora"
304
 
305
+ #: includes/class-freemius.php:13073
306
  msgid "%s to access version %s security & feature updates, and support."
307
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
308
 
309
+ #: includes/class-freemius.php:15448
310
  msgid "%s activation was successfully completed."
311
  msgstr "%s activación se completó con éxito."
312
 
313
+ #: includes/class-freemius.php:15462
314
  msgid "Your account was successfully activated with the %s plan."
315
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
316
 
317
+ #: includes/class-freemius.php15473, includes/class-freemius.php:19061
318
  msgid "Your trial has been successfully started."
319
  msgstr "Tu versión de prueba se ha iniciado con éxito."
320
 
321
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
322
+ #: includes/class-freemius.php:16297
323
  msgid "Couldn't activate %s."
324
  msgstr "No se puede activar %s."
325
 
326
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
327
+ #: includes/class-freemius.php:16298
328
  msgid "Please contact us with the following message:"
329
  msgstr "Por favor contáctanos con el siguiente mensaje:"
330
 
331
+ #: includes/class-freemius.php:16128
332
+ msgid "An unknown error has occurred."
333
+ msgstr "An unknown error has occurred."
334
+
335
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
336
  msgid "Upgrade"
337
  msgstr "Actualizar"
338
 
339
+ #: includes/class-freemius.php:16661
340
  msgid "Start Trial"
341
  msgstr "Comenzar el período de prueba"
342
 
343
+ #: includes/class-freemius.php:16663
344
  msgid "Pricing"
345
  msgstr "Precio"
346
 
347
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
348
  msgid "Affiliation"
349
  msgstr "Afiliación"
350
 
351
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
352
+ #: templates/account.php177, templates/debug.php:326
353
  msgid "Account"
354
  msgstr "Cuenta"
355
 
356
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
357
  #: includes/customizer/class-fs-customizer-support-section.php:60
358
  msgid "Contact Us"
359
  msgstr "Contáctanos"
360
 
361
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
362
+ #: includes/class-freemius.php21423, templates/account.php105,
363
+ #: templates/account/partials/addon.php:45
364
  msgid "Add-Ons"
365
  msgstr "Complementos"
366
 
367
+ #: includes/class-freemius.php:16835
368
  msgctxt "ASCII arrow left icon"
369
  msgid "&#x2190;"
370
  msgstr "&#x2190;"
371
 
372
+ #: includes/class-freemius.php:16835
373
  msgctxt "ASCII arrow right icon"
374
  msgid "&#x27a4;"
375
  msgstr "&#x27a4;"
376
 
377
+ #: includes/class-freemius.php16837, templates/pricing.php:102
378
  msgctxt "noun"
379
  msgid "Pricing"
380
  msgstr "Precio"
381
 
382
+ #: includes/class-freemius.php17050,
383
  #: includes/customizer/class-fs-customizer-support-section.php:67
384
  msgid "Support Forum"
385
  msgstr "Foro de soporte"
386
 
387
+ #: includes/class-freemius.php:17995
388
  msgid "Your email has been successfully verified - you are AWESOME!"
389
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
390
 
391
+ #: includes/class-freemius.php:17996
392
  msgctxt "a positive response"
393
  msgid "Right on"
394
  msgstr "Bien hecho"
395
 
396
+ #: includes/class-freemius.php:18660
397
  msgid "Your %s Add-on plan was successfully upgraded."
398
  msgstr "Tu complemento %s del plan se actualizó con éxito."
399
 
400
+ #: includes/class-freemius.php:18662
401
  msgid "%s Add-on was successfully purchased."
402
  msgstr "El complemento %s ha sido comprado correctamente."
403
 
404
+ #: includes/class-freemius.php:18665
405
  msgid "Download the latest version"
406
  msgstr "Descargar la última versión"
407
 
408
+ #: includes/class-freemius.php:18751
409
+ 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"
410
+ 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"
 
411
 
412
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
413
+ #: includes/class-freemius.php:19277
414
  msgid "Error received from the server:"
415
  msgstr "Error recibido del servidor:"
416
 
417
+ #: includes/class-freemius.php:18767
418
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
419
  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."
420
 
421
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
422
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
423
  msgctxt ""
424
  msgid "Hmm"
425
  msgstr "Hmm"
426
 
427
+ #: includes/class-freemius.php:18974
428
  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."
429
  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."
430
 
431
+ #: includes/class-freemius.php18975, templates/account.php107,
432
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
433
  msgctxt "trial period"
434
  msgid "Trial"
435
  msgstr "Período de Prueba Gratuito"
436
 
437
+ #: includes/class-freemius.php:18980
438
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
439
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
440
 
441
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
442
  msgid "Please contact us here"
443
  msgstr "Contacta aquí con nosotros"
444
 
445
+ #: includes/class-freemius.php:18995
446
+ msgid "Your plan was successfully activated."
447
+ msgstr "Your plan was successfully activated."
448
+
449
+ #: includes/class-freemius.php:18996
450
  msgid "Your plan was successfully upgraded."
451
  msgstr "Tu plan se actualizó con éxito."
452
 
453
+ #: includes/class-freemius.php:19013
454
  msgid "Your plan was successfully changed to %s."
455
  msgstr "Tu plan se cambió correctamente a %s."
456
 
457
+ #: includes/class-freemius.php:19029
458
  msgid "Your license has expired. You can still continue using the free %s forever."
459
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
460
 
461
+ #: includes/class-freemius.php:19031
462
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
463
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
464
 
465
+ #: includes/class-freemius.php:19039
466
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
467
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
468
 
469
+ #: includes/class-freemius.php:19052
470
  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."
471
  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."
472
 
473
+ #: includes/class-freemius.php:19075
474
  msgid "Your free trial has expired. You can still continue using all our free features."
475
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
476
 
477
+ #: includes/class-freemius.php:19077
478
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
479
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
480
 
481
+ #: includes/class-freemius.php:19184
482
  msgid "It looks like the license could not be activated."
483
  msgstr "Parece que la licencia no se pudo activar."
484
 
485
+ #: includes/class-freemius.php:19226
486
  msgid "Your license was successfully activated."
487
  msgstr "Tu licencia fue activada correctamente."
488
 
489
+ #: includes/class-freemius.php:19252
490
  msgid "It looks like your site currently doesn't have an active license."
491
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
492
 
493
+ #: includes/class-freemius.php:19276
494
  msgid "It looks like the license deactivation failed."
495
  msgstr "Parece que la desactivación de licencia ha fallado."
496
 
497
+ #: includes/class-freemius.php:19304
498
  msgid "Your license was successfully deactivated, you are back to the %s plan."
499
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
500
 
501
+ #: includes/class-freemius.php:19305
502
  msgid "O.K"
503
  msgstr "O.K"
504
 
505
+ #: includes/class-freemius.php:19358
506
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
507
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
508
 
509
+ #: includes/class-freemius.php:19367
510
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
511
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
512
 
513
+ #: includes/class-freemius.php:19409
514
  msgid "You are already running the %s in a trial mode."
515
  msgstr "Estás ejecutando %s en modo de prueba."
516
 
517
+ #: includes/class-freemius.php:19420
518
  msgid "You already utilized a trial before."
519
  msgstr "Ya utilizaste un período de prueba antes."
520
 
521
+ #: includes/class-freemius.php:19434
522
  msgid "Plan %s do not exist, therefore, can't start a trial."
523
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
524
 
525
+ #: includes/class-freemius.php:19445
526
  msgid "Plan %s does not support a trial period."
527
  msgstr "El plan %s no admite un período de prueba."
528
 
529
+ #: includes/class-freemius.php:19456
530
  msgid "None of the %s's plans supports a trial period."
531
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
532
 
533
+ #: includes/class-freemius.php:19506
534
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
535
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
536
 
537
+ #: includes/class-freemius.php:19542
538
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
539
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
540
 
541
+ #: includes/class-freemius.php:19561
542
  msgid "Your %s free trial was successfully cancelled."
543
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
544
 
545
+ #: includes/class-freemius.php:19877
546
  msgid "Version %s was released."
547
  msgstr "La versión %s se ha lanzado."
548
 
549
+ #: includes/class-freemius.php:19877
550
  msgid "Please download %s."
551
  msgstr "Por favor descarga %s."
552
 
553
+ #: includes/class-freemius.php:19884
554
  msgid "the latest %s version here"
555
  msgstr "la última versión %s aquí"
556
 
557
+ #: includes/class-freemius.php:19889
558
  msgid "New"
559
  msgstr "Nuevo"
560
 
561
+ #: includes/class-freemius.php:19894
562
  msgid "Seems like you got the latest release."
563
  msgstr "Parece que tienes la última versión."
564
 
565
+ #: includes/class-freemius.php:19895
566
  msgid "You are all good!"
567
  msgstr "¡Está todo listo!"
568
 
569
+ #: includes/class-freemius.php:20165
570
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
571
  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."
572
 
573
+ #: includes/class-freemius.php:20304
574
  msgid "Site successfully opted in."
575
  msgstr "Sitio dado de alta correctamente."
576
 
577
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
578
  msgid "Awesome"
579
  msgstr "Increíble"
580
 
581
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
582
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
583
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
584
 
585
+ #: includes/class-freemius.php:20322
586
  msgid "Thank you!"
587
  msgstr "¡Gracias!"
588
 
589
+ #: includes/class-freemius.php:20329
590
  msgid "We will no longer be sending any usage data of %s on %s to %s."
591
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
592
 
593
+ #: includes/class-freemius.php:20458
594
  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."
595
  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."
596
 
597
+ #: includes/class-freemius.php:20464
598
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
599
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
600
 
601
+ #: includes/class-freemius.php:20469
602
  msgid "%s is the new owner of the account."
603
  msgstr "%s es el nuevo dueño de la cuenta."
604
 
605
+ #: includes/class-freemius.php:20471
606
  msgctxt "as congratulations"
607
  msgid "Congrats"
608
  msgstr "Felicidades"
609
 
610
+ #: includes/class-freemius.php:20491
611
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
612
  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."
613
 
614
+ #: includes/class-freemius.php:20492
615
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
616
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
617
 
618
+ #: includes/class-freemius.php:20499
619
  msgid "Change Ownership"
620
  msgstr "Cambiar propietario"
621
 
622
+ #: includes/class-freemius.php:20507
623
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
624
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
625
 
626
+ #: includes/class-freemius.php:20519
627
  msgid "Please provide your full name."
628
  msgstr "Por favor, dinos tu nombre completo."
629
 
630
+ #: includes/class-freemius.php:20524
631
  msgid "Your name was successfully updated."
632
  msgstr "Tu nombre fue actualizado correctamente."
633
 
634
+ #: includes/class-freemius.php:20585
635
  msgid "You have successfully updated your %s."
636
  msgstr "Has actualizado correctamente tu %s."
637
 
638
+ #: includes/class-freemius.php:20725
639
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
640
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
641
 
642
+ #: includes/class-freemius.php:20726
643
  msgctxt "advance notice of something that will need attention."
644
  msgid "Heads up"
645
  msgstr "Atención"
646
 
647
+ #: includes/class-freemius.php:21165
648
  msgctxt "exclamation"
649
  msgid "Hey"
650
  msgstr "Hey"
651
 
652
+ #: includes/class-freemius.php:21165
653
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
654
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
655
 
656
+ #: includes/class-freemius.php:21173
657
  msgid "No commitment for %s days - cancel anytime!"
658
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
659
 
660
+ #: includes/class-freemius.php:21174
661
  msgid "No credit card required"
662
  msgstr "No se necesita tarjeta de crédito"
663
 
664
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
665
  msgctxt "call to action"
666
  msgid "Start free trial"
667
  msgstr "Comenzar el período de prueba gratuito"
668
 
669
+ #: includes/class-freemius.php:21258
670
  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!"
671
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
672
 
673
+ #: includes/class-freemius.php:21267
674
  msgid "Learn more"
675
  msgstr "Saber más"
676
 
677
+ #: includes/class-freemius.php21447, templates/account.php474,
678
+ #: templates/account.php595, templates/connect.php171,
679
+ #: templates/connect.php421, templates/forms/license-activation.php25,
680
+ #: templates/account/partials/addon.php:287
681
  msgid "Activate License"
682
  msgstr "Activar licencia"
683
 
684
+ #: includes/class-freemius.php21448, templates/account.php543,
685
+ #: templates/account.php594, templates/account/partials/site.php:256
686
  msgid "Change License"
687
  msgstr "Cambiar licencia"
688
 
689
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
690
  msgid "Opt Out"
691
  msgstr "Darse de baja"
692
 
693
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
694
  #: templates/account/partials/site.php43,
695
  #: templates/account/partials/site.php:161
696
  msgid "Opt In"
697
  msgstr "Inscribirse"
698
 
699
+ #: includes/class-freemius.php:21775
700
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
701
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
702
 
703
+ #: includes/class-freemius.php:21783
704
  msgid "Activate %s features"
705
  msgstr "Activar características %s"
706
 
707
+ #: includes/class-freemius.php:21796
708
  msgid "Please follow these steps to complete the upgrade"
709
  msgstr "Por favor, sigue estos pasos para completar la actualización"
710
 
711
+ #: includes/class-freemius.php:21800
712
  msgid "Download the latest %s version"
713
  msgstr "Descargar la última versión %s"
714
 
715
+ #: includes/class-freemius.php:21804
716
  msgid "Upload and activate the downloaded version"
717
  msgstr "Cargar y activar la versión descargada"
718
 
719
+ #: includes/class-freemius.php:21806
720
  msgid "How to upload and activate?"
721
  msgstr "¿Cómo subirlo y activarlo?"
722
 
723
+ #: includes/class-freemius.php:21940
724
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
725
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
726
 
727
+ #: includes/class-freemius.php:22101
728
  msgid "Auto installation only works for opted-in users."
729
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
730
 
731
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
732
+ #: includes/class-fs-plugin-updater.php1149,
733
+ #: includes/class-fs-plugin-updater.php:1163
734
  msgid "Invalid module ID."
735
  msgstr "Id de módulo no válido."
736
 
737
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
738
  msgid "Premium version already active."
739
  msgstr "Versión premium ya activa."
740
 
741
+ #: includes/class-freemius.php:22127
742
  msgid "You do not have a valid license to access the premium version."
743
  msgstr "No tienes una licencia válida para acceder a la versión premium."
744
 
745
+ #: includes/class-freemius.php:22134
746
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
747
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
748
 
749
+ #: includes/class-freemius.php22152, includes/class-fs-plugin-updater.php:1184
750
  msgid "Premium add-on version already installed."
751
  msgstr "Versión del complemento premium ya instalada."
752
 
753
+ #: includes/class-freemius.php:22497
754
  msgid "View paid features"
755
  msgstr "Ver las funciones de pago"
756
 
757
+ #: includes/class-freemius.php:22819
758
  msgid "Thank you so much for using %s and its add-ons!"
759
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
760
 
761
+ #: includes/class-freemius.php:22820
762
  msgid "Thank you so much for using %s!"
763
  msgstr "¡Muchas gracias por utilizar %s!"
764
 
765
+ #: includes/class-freemius.php:22826
766
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
767
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
768
 
769
+ #: includes/class-freemius.php:22830
770
  msgid "Thank you so much for using our products!"
771
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
772
 
773
+ #: includes/class-freemius.php:22831
774
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
775
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
776
 
777
+ #: includes/class-freemius.php:22850
778
  msgid "%s and its add-ons"
779
  msgstr "%s y sus complementos"
780
 
781
+ #: includes/class-freemius.php:22859
782
  msgid "Products"
783
  msgstr "Productos"
784
 
785
+ #: includes/class-freemius.php22866, templates/connect.php:272
786
  msgid "Yes"
787
  msgstr "Si"
788
 
789
+ #: includes/class-freemius.php22867, templates/connect.php:273
790
  msgid "send me security & feature updates, educational content and offers."
791
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
792
 
793
+ #: includes/class-freemius.php22868, templates/connect.php:278
794
  msgid "No"
795
  msgstr "No"
796
 
797
+ #: includes/class-freemius.php22870, templates/connect.php:280
798
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
799
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
800
 
801
+ #: includes/class-freemius.php:22880
802
+ 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 :-)"
803
+ 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 :-)"
804
 
805
+ #: includes/class-freemius.php22882, templates/connect.php:287
806
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
807
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
808
 
809
+ #: includes/class-freemius.php:23164
810
  msgid "License key is empty."
811
  msgstr "La clave de licencia está vacía."
812
 
820
  msgid "Buy license"
821
  msgstr "Comprar licencia"
822
 
823
+ #: includes/class-fs-plugin-updater.php280,
824
+ #: includes/class-fs-plugin-updater.php:313
825
  msgid "There is a %s of %s available."
826
  msgstr "Hay una %s de %s disponible."
827
 
828
+ #: includes/class-fs-plugin-updater.php282,
829
+ #: includes/class-fs-plugin-updater.php:318
830
+ msgid "new Beta version"
831
+ msgstr "new Beta version"
832
+
833
+ #: includes/class-fs-plugin-updater.php283,
834
+ #: includes/class-fs-plugin-updater.php:319
835
  msgid "new version"
836
  msgstr "nueva versión"
837
 
838
+ #: includes/class-fs-plugin-updater.php:342
839
  msgid "Important Upgrade Notice:"
840
  msgstr "Aviso importante de actualización:"
841
 
842
+ #: includes/class-fs-plugin-updater.php:1214
843
  msgid "Installing plugin: %s"
844
  msgstr "Instalando plugin: %s"
845
 
846
+ #: includes/class-fs-plugin-updater.php:1255
847
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
848
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
849
 
850
+ #: includes/class-fs-plugin-updater.php:1437
851
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
852
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
853
 
854
+ #: includes/fs-plugin-info-dialog.php:509
855
+ msgid "Purchase More"
856
+ msgstr "Purchase More"
857
+
858
+ #: includes/fs-plugin-info-dialog.php510,
859
+ #: templates/account/partials/addon.php:347
860
  msgctxt "verb"
861
  msgid "Purchase"
862
  msgstr "Comprar"
863
 
864
+ #: includes/fs-plugin-info-dialog.php:514
865
  msgid "Start my free %s"
866
  msgstr "Comenzar mi período gratuito de %s"
867
 
868
+ #: includes/fs-plugin-info-dialog.php:712
869
+ msgid "Install Free Version Update Now"
870
+ msgstr "Instalar la actualización gratuita ahora"
871
+
872
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
873
+ msgid "Install Update Now"
874
+ msgstr "Instalar actualización ahora"
875
+
876
+ #: includes/fs-plugin-info-dialog.php:722
877
  msgid "Install Free Version Now"
878
  msgstr "Instalar la versión gratuita ahora"
879
 
880
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
881
+ #: templates/auto-installation.php111,
882
+ #: templates/account/partials/addon.php327,
883
+ #: templates/account/partials/addon.php:379
884
  msgid "Install Now"
885
  msgstr "Instalar ahora"
886
 
887
+ #: includes/fs-plugin-info-dialog.php:739
888
  msgctxt "as download latest version"
889
  msgid "Download Latest Free Version"
890
  msgstr "Descargar la última versión gratuita"
891
 
892
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
893
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
894
  msgctxt "as download latest version"
895
  msgid "Download Latest"
896
  msgstr "Descargar la última"
897
 
898
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
899
+ #: templates/account/partials/addon.php318,
900
+ #: templates/account/partials/addon.php:373
901
+ msgid "Activate this add-on"
902
+ msgstr "Activar este complemento"
 
 
 
 
 
 
 
 
 
 
903
 
904
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
905
+ msgid "Activate Free Version"
906
+ msgstr "Activar versión gratuita"
907
 
908
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
909
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
910
+ msgid "Activate"
911
+ msgstr "Activar"
912
 
913
+ #: includes/fs-plugin-info-dialog.php:968
914
  msgctxt "Plugin installer section title"
915
  msgid "Description"
916
  msgstr "Descripción"
917
 
918
+ #: includes/fs-plugin-info-dialog.php:969
919
  msgctxt "Plugin installer section title"
920
  msgid "Installation"
921
  msgstr "Instalación"
922
 
923
+ #: includes/fs-plugin-info-dialog.php:970
924
  msgctxt "Plugin installer section title"
925
  msgid "FAQ"
926
  msgstr "FAQ"
927
 
928
+ #: includes/fs-plugin-info-dialog.php971,
929
  #: templates/plugin-info/description.php:55
930
  msgid "Screenshots"
931
  msgstr "Capturas de pantalla"
932
 
933
+ #: includes/fs-plugin-info-dialog.php:972
934
  msgctxt "Plugin installer section title"
935
  msgid "Changelog"
936
  msgstr "Registro de cambios"
937
 
938
+ #: includes/fs-plugin-info-dialog.php:973
939
  msgctxt "Plugin installer section title"
940
  msgid "Reviews"
941
  msgstr "Valoraciones"
942
 
943
+ #: includes/fs-plugin-info-dialog.php:974
944
  msgctxt "Plugin installer section title"
945
  msgid "Other Notes"
946
  msgstr "Otras notas"
947
 
948
+ #: includes/fs-plugin-info-dialog.php:989
949
  msgctxt "Plugin installer section title"
950
  msgid "Features & Pricing"
951
  msgstr "Características y precios"
952
 
953
+ #: includes/fs-plugin-info-dialog.php:999
954
  msgid "Plugin Install"
955
  msgstr "Instalar plugin"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:1071
958
  msgctxt "e.g. Professional Plan"
959
  msgid "%s Plan"
960
  msgstr "Plan %s"
961
 
962
+ #: includes/fs-plugin-info-dialog.php:1097
963
  msgctxt "e.g. the best product"
964
  msgid "Best"
965
  msgstr "El mejor"
966
 
967
+ #: includes/fs-plugin-info-dialog.php1103,
968
+ #: includes/fs-plugin-info-dialog.php:1123
969
  msgctxt "as every month"
970
  msgid "Monthly"
971
  msgstr "Mensual"
972
 
973
+ #: includes/fs-plugin-info-dialog.php:1106
974
  msgctxt "as once a year"
975
  msgid "Annual"
976
  msgstr "Anual"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1109
979
  msgid "Lifetime"
980
  msgstr "Permanente"
981
 
982
+ #: includes/fs-plugin-info-dialog.php1123,
983
+ #: includes/fs-plugin-info-dialog.php1125,
984
+ #: includes/fs-plugin-info-dialog.php:1127
985
  msgctxt "e.g. billed monthly"
986
  msgid "Billed %s"
987
  msgstr "Facturado %s"
988
 
989
+ #: includes/fs-plugin-info-dialog.php:1125
990
  msgctxt "as once a year"
991
  msgid "Annually"
992
  msgstr "Anualmente"
993
 
994
+ #: includes/fs-plugin-info-dialog.php:1127
995
  msgctxt "as once a year"
996
  msgid "Once"
997
  msgstr "Una vez"
998
 
999
+ #: includes/fs-plugin-info-dialog.php:1133
1000
  msgid "Single Site License"
1001
  msgstr "Licencia para un único sitio"
1002
 
1003
+ #: includes/fs-plugin-info-dialog.php:1135
1004
  msgid "Unlimited Licenses"
1005
  msgstr "Licencias ilimitadas"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1137
1008
  msgid "Up to %s Sites"
1009
  msgstr "Hasta %s sitios"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php1147,
1012
  #: templates/plugin-info/features.php:82
1013
  msgctxt "as monthly period"
1014
  msgid "mo"
1015
  msgstr "me"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php1154,
1018
  #: templates/plugin-info/features.php:80
1019
  msgctxt "as annual period"
1020
  msgid "year"
1021
  msgstr "año"
1022
 
1023
+ #: includes/fs-plugin-info-dialog.php:1208
1024
  msgctxt "noun"
1025
  msgid "Price"
1026
  msgstr "Precio"
1027
 
1028
+ #: includes/fs-plugin-info-dialog.php:1256
1029
  msgid "Save %s"
1030
  msgstr "Guardar %s"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1266
1033
  msgid "No commitment for %s - cancel anytime"
1034
  msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1035
 
1036
+ #: includes/fs-plugin-info-dialog.php:1269
1037
  msgid "After your free %s, pay as little as %s"
1038
  msgstr "Después de su período gratuito %s, pague sólo %s"
1039
 
1040
+ #: includes/fs-plugin-info-dialog.php:1280
1041
  msgid "Details"
1042
  msgstr "Detalles"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1045
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1046
+ #: templates/account/partials/addon.php:36
1047
  msgctxt "product version"
1048
  msgid "Version"
1049
  msgstr "Versión"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1291
1052
  msgctxt "as the plugin author"
1053
  msgid "Author"
1054
  msgstr "Autor"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php:1298
1057
  msgid "Last Updated"
1058
  msgstr "Última actualización"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1061
  msgctxt "x-ago"
1062
  msgid "%s ago"
1063
  msgstr "hace %s"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php:1312
1066
  msgid "Requires WordPress Version"
1067
  msgstr "Necesita la versión de WordPress"
1068
 
1069
+ #: includes/fs-plugin-info-dialog.php:1313
1070
  msgid "%s or higher"
1071
  msgstr "%s o mayor"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1320
1074
  msgid "Compatible up to"
1075
  msgstr "Compatible hasta"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1328
1078
  msgid "Downloaded"
1079
  msgstr "Descargado"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1332
1082
  msgid "%s time"
1083
  msgstr "% vez"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1334
1086
  msgid "%s times"
1087
  msgstr "%s veces"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php:1344
1090
  msgid "WordPress.org Plugin Page"
1091
  msgstr "Página del plugin en WordPress.org"
1092
 
1093
+ #: includes/fs-plugin-info-dialog.php:1352
1094
  msgid "Plugin Homepage"
1095
  msgstr "Página web del plugin"
1096
 
1097
+ #: includes/fs-plugin-info-dialog.php1360,
1098
+ #: includes/fs-plugin-info-dialog.php:1442
1099
  msgid "Donate to this plugin"
1100
  msgstr "Donar a este plugin"
1101
 
1102
+ #: includes/fs-plugin-info-dialog.php:1367
1103
  msgid "Average Rating"
1104
  msgstr "Calificación media"
1105
 
1106
+ #: includes/fs-plugin-info-dialog.php:1374
1107
  msgid "based on %s"
1108
  msgstr "basado en %s"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1378
1111
  msgid "%s rating"
1112
  msgstr "%s calificación"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1380
1115
  msgid "%s ratings"
1116
  msgstr "%s calificaciones"
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1395
1119
  msgid "%s star"
1120
  msgstr "%s estrella"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1397
1123
  msgid "%s stars"
1124
  msgstr "%s estrellas"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1408
1127
  msgid "Click to see reviews that provided a rating of %s"
1128
  msgstr "Haz clic para ver los comentarios con una valoración de %s"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1421
1131
  msgid "Contributors"
1132
  msgstr "Colaboradores"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php1450,
1135
+ #: includes/fs-plugin-info-dialog.php:1452
1136
  msgid "Warning"
1137
  msgstr "Atencion"
1138
 
1139
+ #: includes/fs-plugin-info-dialog.php:1450
1140
  msgid "This plugin has not been tested with your current version of WordPress."
1141
  msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1142
 
1143
+ #: includes/fs-plugin-info-dialog.php:1452
1144
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1145
  msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1471
1148
  msgid "Paid add-on must be deployed to Freemius."
1149
  msgstr "El complemento de pago se debe implementar en Freemius."
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1472
1152
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1153
  msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1493
1156
+ msgid "Newer Version (%s) Installed"
1157
+ msgstr "Versión más reciente (%s) instalada"
1158
+
1159
+ #: includes/fs-plugin-info-dialog.php:1494
1160
+ msgid "Newer Free Version (%s) Installed"
1161
+ msgstr "Versión gratuita más reciente (%s) instalada"
1162
+
1163
+ #: includes/fs-plugin-info-dialog.php:1501
1164
+ msgid "Latest Version Installed"
1165
+ msgstr "Última versión instalada"
1166
+
1167
+ #: includes/fs-plugin-info-dialog.php:1502
1168
+ msgid "Latest Free Version Installed"
1169
+ msgstr "Última versión gratuita instalada"
1170
+
1171
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1172
+ #: templates/account/partials/addon.php26,
1173
  #: templates/account/partials/site.php:295
1174
  msgid "Downgrading your plan"
1175
  msgstr "Bajando tu plan"
1176
 
1177
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1178
+ #: templates/account/partials/addon.php27,
1179
  #: templates/account/partials/site.php:296
1180
  msgid "Cancelling the subscription"
1181
  msgstr "Cancelando la suscripción"
1182
 
1183
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1184
  #. subscription'
1185
+ #: templates/account.php:89
1186
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1187
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
 
 
1188
 
1189
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1190
+ #: templates/account/partials/addon.php30,
1191
  #: templates/account/partials/site.php:299
1192
  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."
1193
  msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado."
1194
 
1195
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1196
+ #: templates/account/partials/addon.php:31
1197
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1198
  msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1199
 
1200
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1201
+ #: templates/account/partials/addon.php32,
1202
  #: templates/account/partials/site.php:300
1203
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1204
  msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1205
 
1206
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1207
+ #: templates/account/partials/addon.php33,
1208
  #: templates/account/partials/site.php:301
1209
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1210
  msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
1211
 
1212
  #. translators: %s: Plan title (e.g. "Professional")
1213
+ #: templates/account.php95,
1214
  #: templates/account/partials/activate-license-button.php31,
1215
+ #: templates/account/partials/addon.php:35
1216
  msgid "Activate %s Plan"
1217
  msgstr "Activar plan %s"
1218
 
1219
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1220
+ #: templates/account.php98, templates/account/partials/addon.php38,
1221
  #: templates/account/partials/site.php:275
1222
  msgid "Auto renews in %s"
1223
  msgstr "Auto renovaciones en %s"
1224
 
1225
  #. translators: %s: Time period (e.g. Expires in "2 months")
1226
+ #: templates/account.php100, templates/account/partials/addon.php40,
1227
  #: templates/account/partials/site.php:277
1228
  msgid "Expires in %s"
1229
  msgstr "Caduca en %s"
1230
 
1231
+ #: templates/account.php101, templates/account/partials/addon.php:41
1232
  msgctxt "as synchronize license"
1233
  msgid "Sync License"
1234
  msgstr "Sincronizar licencia"
1235
 
1236
+ #: templates/account.php102, templates/account/partials/addon.php:42
1237
  msgid "Cancel Trial"
1238
  msgstr "Cancelar período de prueba"
1239
 
1240
+ #: templates/account.php103, templates/account/partials/addon.php:43
1241
  msgid "Change Plan"
1242
  msgstr "Cambiar Plan"
1243
 
1244
+ #: templates/account.php104, templates/account/partials/addon.php:44
1245
  msgctxt "verb"
1246
  msgid "Upgrade"
1247
  msgstr "Actualizar"
1248
 
1249
+ #: templates/account.php106, templates/account/partials/addon.php46,
1250
  #: templates/account/partials/site.php:302
1251
  msgctxt "verb"
1252
  msgid "Downgrade"
1253
  msgstr "Degradar"
1254
 
1255
+ #: templates/account.php108, templates/add-ons.php187,
1256
  #: templates/plugin-info/features.php72,
1257
+ #: templates/account/partials/addon.php48,
1258
  #: templates/account/partials/site.php:31
1259
  msgid "Free"
1260
  msgstr "Gratis"
1261
 
1262
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1263
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1264
+ #: templates/account/partials/addon.php:50
1265
  msgctxt "as product pricing plan"
1266
  msgid "Plan"
1267
  msgstr "Plan"
1268
 
1269
+ #: templates/account.php:111
1270
+ msgid "Bundle Plan"
1271
+ msgstr "Bundle Plan"
1272
+
1273
+ #: templates/account.php:185
1274
  msgid "Free Trial"
1275
  msgstr "Período de prueba gratuito"
1276
 
1277
+ #: templates/account.php:196
1278
  msgid "Account Details"
1279
  msgstr "Detalles de la cuenta"
1280
 
1281
+ #: templates/account.php:200
1282
+ msgid "Billing & Invoices"
1283
+ msgstr "Billing & Invoices"
1284
+
1285
+ #: templates/account.php:210
1286
  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?"
1287
  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?"
1288
 
1289
+ #: templates/account.php:212
1290
  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?"
1291
  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?"
1292
 
1293
+ #: templates/account.php:215
1294
  msgid "Delete Account"
1295
  msgstr "Borrar cuenta"
1296
 
1297
+ #: templates/account.php227, templates/account/partials/addon.php211,
1298
  #: templates/account/partials/deactivate-license-button.php:35
1299
  msgid "Deactivate License"
1300
  msgstr "Desactivar licencia"
1301
 
1302
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1303
  msgid "Are you sure you want to proceed?"
1304
  msgstr "¿Estás seguro que quieres proceder?"
1305
 
1306
+ #: templates/account.php250, templates/account/partials/addon.php:234
1307
  msgid "Cancel Subscription"
1308
  msgstr "Cancelar suscripción"
1309
 
1310
+ #: templates/account.php:278
1311
  msgctxt "as synchronize"
1312
  msgid "Sync"
1313
  msgstr "Sincronizar"
1314
 
1315
+ #: templates/account.php292, templates/debug.php:489
1316
  msgid "Name"
1317
  msgstr "Nombre"
1318
 
1319
+ #: templates/account.php298, templates/debug.php:490
1320
  msgid "Email"
1321
  msgstr "Correo electrónico"
1322
 
1323
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1324
  msgid "User ID"
1325
  msgstr "ID de usuario"
1326
 
1327
+ #: templates/account.php322, templates/account.php608,
1328
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1329
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1330
+ #: templates/debug.php599, templates/account/payments.php35,
1331
+ #: templates/debug/logger.php:21
1332
+ msgid "ID"
1333
+ msgstr "ID"
1334
+
1335
+ #: templates/account.php:329
1336
  msgid "Site ID"
1337
  msgstr "ID del sitio"
1338
 
1339
+ #: templates/account.php:332
1340
  msgid "No ID"
1341
  msgstr "Sin ID"
1342
 
1343
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1344
+ #: templates/debug.php455, templates/debug.php492,
1345
  #: templates/account/partials/site.php:219
1346
  msgid "Public Key"
1347
  msgstr "Clave pública"
1348
 
1349
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1350
+ #: templates/debug.php493, templates/account/partials/site.php:231
1351
  msgid "Secret Key"
1352
  msgstr "Clave secreta"
1353
 
1354
+ #: templates/account.php:346
1355
  msgctxt "as secret encryption key missing"
1356
  msgid "No Secret"
1357
  msgstr "Sin clave secreta"
1358
 
1359
+ #: templates/account.php373, templates/account/partials/site.php112,
1360
  #: templates/account/partials/site.php:114
1361
  msgid "Trial"
1362
  msgstr "Período de prueba gratuito"
1363
 
1364
+ #: templates/account.php400, templates/debug.php533,
1365
  #: templates/account/partials/site.php:248
1366
  msgid "License Key"
1367
  msgstr "Clave de licencia"
1368
 
1369
+ #: templates/account.php:429
1370
+ msgid "Join the Beta program"
1371
+ msgstr "Join the Beta program"
1372
+
1373
+ #: templates/account.php:435
1374
  msgid "not verified"
1375
  msgstr "no verificado"
1376
 
1377
+ #: templates/account.php444, templates/account/partials/addon.php:172
1378
  msgid "Expired"
1379
  msgstr "Caducado"
1380
 
1381
+ #: templates/account.php:502
1382
  msgid "Premium version"
1383
  msgstr "Versión premium"
1384
 
1385
+ #: templates/account.php:504
1386
  msgid "Free version"
1387
  msgstr "Versión gratuita"
1388
 
1389
+ #: templates/account.php:516
1390
  msgid "Verify Email"
1391
  msgstr "Verificar correo electrónico"
1392
 
1393
+ #: templates/account.php:527
1394
  msgid "Download %s Version"
1395
  msgstr "Descargar versión %s"
1396
 
1397
+ #: templates/account.php541, templates/account.php749,
1398
  #: templates/account/partials/site.php237,
1399
  #: templates/account/partials/site.php:255
1400
  msgctxt "verb"
1401
  msgid "Show"
1402
  msgstr "Mostrar"
1403
 
1404
+ #: templates/account.php:555
1405
  msgid "What is your %s?"
1406
  msgstr "¿Cual es tú %s?"
1407
 
1408
+ #: templates/account.php563, templates/account/billing.php:21
1409
  msgctxt "verb"
1410
  msgid "Edit"
1411
  msgstr "Editar"
1412
 
1413
+ #: templates/account.php:588
1414
  msgid "Sites"
1415
  msgstr "Sitios"
1416
 
1417
+ #: templates/account.php:599
1418
  msgid "Search by address"
1419
  msgstr "Buscar por dirección"
1420
 
1421
+ #: templates/account.php609, templates/debug.php:369
 
 
 
 
 
 
 
1422
  msgid "Address"
1423
  msgstr "Dirección"
1424
 
1425
+ #: templates/account.php:610
1426
  msgid "License"
1427
  msgstr "Licencia"
1428
 
1429
+ #: templates/account.php:611
1430
  msgid "Plan"
1431
  msgstr "Plan"
1432
 
1433
+ #: templates/account.php:656
1434
  msgctxt "as software license"
1435
  msgid "License"
1436
  msgstr "Licencia"
1437
 
1438
+ #: templates/account.php:743
1439
  msgctxt "verb"
1440
  msgid "Hide"
1441
  msgstr "Ocultar"
1442
 
1443
+ #: templates/account.php:765
1444
+ msgid "Processing"
1445
+ msgstr "Procesando"
1446
+
1447
+ #: templates/account.php:768
1448
+ msgid "Get updates for bleeding edge Beta versions of %s."
1449
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1450
+
1451
+ #: templates/account.php:826
1452
  msgid "Cancelling %s"
1453
  msgstr "Cancelando %s"
1454
 
1455
+ #: templates/account.php826, templates/account.php843,
1456
  #: templates/forms/subscription-cancellation.php27,
1457
+ #: templates/forms/deactivation/form.php:133
1458
  msgid "trial"
1459
  msgstr "período de prueba"
1460
 
1461
+ #: templates/account.php841, templates/forms/deactivation/form.php:150
1462
  msgid "Cancelling %s..."
1463
  msgstr "Cancelando %s..."
1464
 
1465
+ #: templates/account.php844, templates/forms/subscription-cancellation.php28,
1466
+ #: templates/forms/deactivation/form.php:134
1467
  msgid "subscription"
1468
  msgstr "suscripción"
1469
 
1470
+ #: templates/account.php:858
1471
  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?"
1472
  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?"
1473
 
1474
+ #: templates/add-ons.php:35
1475
+ msgid "View details"
1476
+ msgstr "Ver detalles"
1477
+
1478
+ #: templates/add-ons.php:45
1479
  msgid "Add Ons for %s"
1480
  msgstr "Complementos para %s"
1481
 
1482
+ #: templates/add-ons.php:55
1483
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1484
  msgstr "No podemos cargar la lista de complementos. Probablemente es un problema por nuestro parte, por favor inténtalo de nuevo en unos minutos."
1485
 
1486
+ #: templates/add-ons.php:173
1487
+ msgctxt "active add-on"
1488
+ msgid "Active"
1489
+ msgstr "Activo"
1490
+
1491
+ #: templates/add-ons.php:174
1492
+ msgctxt "installed add-on"
1493
+ msgid "Installed"
1494
+ msgstr "Installed"
1495
 
1496
+ #: templates/admin-notice.php13, templates/forms/license-activation.php209,
1497
  #: templates/forms/resend-key.php:77
1498
  msgctxt "as close a window"
1499
  msgid "Dismiss"
1519
  msgid "Cancel Installation"
1520
  msgstr "Cancelar instalación"
1521
 
1522
+ #: templates/checkout.php:180
1523
  msgid "Checkout"
1524
  msgstr "Pagar"
1525
 
1526
+ #: templates/checkout.php:180
1527
  msgid "PCI compliant"
1528
  msgstr "Compatible con PCI"
1529
 
1545
  msgid "Thanks %s!"
1546
  msgstr "¡Gracias %s!"
1547
 
1548
+ #: templates/connect.php172, templates/forms/license-activation.php:44
1549
  msgid "Agree & Activate License"
1550
  msgstr "De acuerdo y activar licencia"
1551
 
1593
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1594
  msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1595
 
1596
+ #: templates/connect.php253, templates/forms/license-activation.php:47
1597
  msgid "License key"
1598
  msgstr "Clave de licencia"
1599
 
1600
+ #: templates/connect.php256, templates/forms/license-activation.php:20
1601
  msgid "Can't find your license key?"
1602
  msgstr "¿No puedes encontrar tu clave de licencia?"
1603
 
1604
+ #: templates/connect.php315, templates/connect.php652,
1605
  #: templates/forms/deactivation/retry-skip.php:20
1606
  msgctxt "verb"
1607
  msgid "Skip"
1651
  msgid "Newsletter"
1652
  msgstr "Boletín"
1653
 
1654
+ #: templates/connect.php391, templates/forms/license-activation.php:39
1655
  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."
1656
  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."
1657
 
1663
  msgid "Don't have a license key?"
1664
  msgstr "¿No tienes una clave de licencia?"
1665
 
 
 
 
 
1666
  #: templates/connect.php:420
1667
  msgid "Have a license key?"
1668
  msgstr "¿Tienes una clave de licencia?"
1679
  msgid "Terms of Service"
1680
  msgstr "Términos de servicio"
1681
 
1682
+ #: templates/connect.php:805
1683
  msgctxt "as in the process of sending an email"
1684
  msgid "Sending email"
1685
  msgstr "Enviando correo electrónico"
1686
 
1687
+ #: templates/connect.php:806
1688
  msgctxt "as activating plugin"
1689
  msgid "Activating"
1690
  msgstr "Activando"
1712
  msgid "Debugging"
1713
  msgstr "Depurando"
1714
 
1715
+ #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1716
+ #: templates/debug.php:494
1717
  msgid "Actions"
1718
  msgstr "Acciones"
1719
 
1749
  msgid "Set DB Option"
1750
  msgstr "Guardar opción en BD"
1751
 
1752
+ #: templates/debug.php:182
1753
  msgid "Key"
1754
  msgstr "Clave"
1755
 
1756
+ #: templates/debug.php:183
1757
  msgid "Value"
1758
  msgstr "Valor"
1759
 
1760
+ #: templates/debug.php:199
1761
  msgctxt "as software development kit versions"
1762
  msgid "SDK Versions"
1763
  msgstr "Versiones SDK"
1764
 
1765
+ #: templates/debug.php:204
1766
  msgid "SDK Path"
1767
  msgstr "Ruta del SDK"
1768
 
1769
+ #: templates/debug.php205, templates/debug.php:244
1770
  msgid "Module Path"
1771
  msgstr "Ruta del módulo"
1772
 
1773
+ #: templates/debug.php:206
1774
  msgid "Is Active"
1775
  msgstr "Está activo"
1776
 
1777
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1778
  msgid "Plugins"
1779
  msgstr "Plugins"
1780
 
1781
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1782
  msgid "Themes"
1783
  msgstr "Temas"
1784
 
1785
+ #: templates/debug.php239, templates/debug.php371, templates/debug.php453,
1786
  #: templates/debug/scheduled-crons.php:80
1787
  msgid "Slug"
1788
  msgstr "Ruta"
1789
 
1790
+ #: templates/debug.php241, templates/debug.php:452
1791
  msgid "Title"
1792
  msgstr "Título"
1793
 
1794
+ #: templates/debug.php:242
1795
  msgctxt "as application program interface"
1796
  msgid "API"
1797
  msgstr "API"
1798
 
1799
+ #: templates/debug.php:243
1800
  msgid "Freemius State"
1801
  msgstr "Estado Freemius"
1802
 
1803
+ #: templates/debug.php:247
1804
  msgid "Network Blog"
1805
  msgstr "Blog de red"
1806
 
1807
+ #: templates/debug.php:248
1808
  msgid "Network User"
1809
  msgstr "Usuario de red"
1810
 
1811
+ #: templates/debug.php:285
1812
  msgctxt "as connection was successful"
1813
  msgid "Connected"
1814
  msgstr "Conectado"
1815
 
1816
+ #: templates/debug.php:286
1817
  msgctxt "as connection blocked"
1818
  msgid "Blocked"
1819
  msgstr "Bloqueado"
1820
 
1821
+ #: templates/debug.php:322
1822
  msgid "Simulate Trial Promotion"
1823
  msgstr "Simular período de prueba"
1824
 
1825
+ #: templates/debug.php:334
1826
  msgid "Simulate Network Upgrade"
1827
  msgstr "Simular actualización de red"
1828
 
1829
+ #: templates/debug.php:360
1830
  msgid "%s Installs"
1831
  msgstr "%s Instalaciones"
1832
 
1833
+ #: templates/debug.php:362
1834
  msgctxt "like websites"
1835
  msgid "Sites"
1836
  msgstr "Sitios"
1837
 
1838
+ #: templates/debug.php368, templates/account/partials/site.php:148
1839
  msgid "Blog ID"
1840
  msgstr "ID del blog"
1841
 
1842
+ #: templates/debug.php433, templates/debug.php511,
1843
+ #: templates/account/partials/addon.php:396
1844
  msgctxt "verb"
1845
  msgid "Delete"
1846
  msgstr "Borrar"
1847
 
1848
+ #: templates/debug.php:447
1849
  msgid "Add Ons of module %s"
1850
  msgstr "Complementos del módulo %s"
1851
 
1852
+ #: templates/debug.php:484
1853
  msgid "Users"
1854
  msgstr "Usuarios"
1855
 
1856
+ #: templates/debug.php:491
1857
  msgid "Verified"
1858
  msgstr "Verificado"
1859
 
1860
+ #: templates/debug.php:522
1861
  msgid "%s Licenses"
1862
  msgstr "%s Licencias"
1863
 
1864
+ #: templates/debug.php:527
1865
  msgid "Plugin ID"
1866
  msgstr "ID del plugin"
1867
 
1868
+ #: templates/debug.php:529
1869
  msgid "Plan ID"
1870
  msgstr "ID del plan"
1871
 
1872
+ #: templates/debug.php:530
1873
  msgid "Quota"
1874
  msgstr "Cuota"
1875
 
1876
+ #: templates/debug.php:531
1877
  msgid "Activated"
1878
  msgstr "Activado"
1879
 
1880
+ #: templates/debug.php:532
1881
  msgid "Blocking"
1882
  msgstr "Bloqueando"
1883
 
1884
+ #: templates/debug.php:534
1885
  msgctxt "as expiration date"
1886
  msgid "Expiration"
1887
  msgstr "Caducidad"
1888
 
1889
+ #: templates/debug.php:557
1890
  msgid "Debug Log"
1891
  msgstr "Log de Debug"
1892
 
1893
+ #: templates/debug.php:561
1894
  msgid "All Types"
1895
  msgstr "Todos los Tipos"
1896
 
1897
+ #: templates/debug.php:568
1898
  msgid "All Requests"
1899
  msgstr "Todas las peticiones"
1900
 
1901
+ #: templates/debug.php573, templates/debug.php602,
1902
  #: templates/debug/logger.php:25
1903
  msgid "File"
1904
  msgstr "Archivo"
1905
 
1906
+ #: templates/debug.php574, templates/debug.php600,
1907
  #: templates/debug/logger.php:23
1908
  msgid "Function"
1909
  msgstr "Función"
1910
 
1911
+ #: templates/debug.php:575
1912
  msgid "Process ID"
1913
  msgstr "ID del proceso"
1914
 
1915
+ #: templates/debug.php:576
1916
  msgid "Logger"
1917
  msgstr "Logger"
1918
 
1919
+ #: templates/debug.php577, templates/debug.php601,
1920
  #: templates/debug/logger.php:24
1921
  msgid "Message"
1922
  msgstr "Mensaje"
1923
 
1924
+ #: templates/debug.php:579
1925
  msgid "Filter"
1926
  msgstr "Filtro"
1927
 
1928
+ #: templates/debug.php:587
1929
  msgid "Download"
1930
  msgstr "Descarga"
1931
 
1932
+ #: templates/debug.php598, templates/debug/logger.php:22
1933
  msgid "Type"
1934
  msgstr "Tipo"
1935
 
1936
+ #: templates/debug.php603, templates/debug/logger.php:26
1937
  msgid "Timestamp"
1938
  msgstr "Timestamp"
1939
 
1960
  msgid "Requests"
1961
  msgstr "Peticiones"
1962
 
1963
+ #: templates/account/billing.php:22
1964
  msgctxt "verb"
1965
  msgid "Update"
1966
  msgstr "Actualizar"
1967
 
1968
+ #: templates/account/billing.php:33
1969
  msgid "Billing"
1970
  msgstr "Facturación"
1971
 
1972
+ #: templates/account/billing.php38, templates/account/billing.php:38
1973
  msgid "Business name"
1974
  msgstr "Nombre de la empresa"
1975
 
1976
+ #: templates/account/billing.php39, templates/account/billing.php:39
1977
  msgid "Tax / VAT ID"
1978
  msgstr "Tax / Núm IVA"
1979
 
1980
+ #: templates/account/billing.php42, templates/account/billing.php42,
1981
+ #: templates/account/billing.php43, templates/account/billing.php:43
1982
  msgid "Address Line %d"
1983
  msgstr "Línea de la dirección %d"
1984
 
1985
+ #: templates/account/billing.php46, templates/account/billing.php:46
1986
  msgid "City"
1987
  msgstr "Ciudad"
1988
 
1989
+ #: templates/account/billing.php46, templates/account/billing.php:46
1990
  msgid "Town"
1991
  msgstr "Municipio"
1992
 
1993
+ #: templates/account/billing.php47, templates/account/billing.php:47
1994
  msgid "ZIP / Postal Code"
1995
  msgstr "Código postal"
1996
 
1997
+ #: templates/account/billing.php:302
1998
  msgid "Country"
1999
  msgstr "País"
2000
 
2001
+ #: templates/account/billing.php:304
2002
  msgid "Select Country"
2003
  msgstr "Seleccionar país"
2004
 
2005
+ #: templates/account/billing.php311, templates/account/billing.php:312
2006
  msgid "State"
2007
  msgstr "Estado"
2008
 
2009
+ #: templates/account/billing.php311, templates/account/billing.php:312
2010
  msgid "Province"
2011
  msgstr "Provincia"
2012
 
2258
  msgid "Become an affiliate"
2259
  msgstr "Hacerse afiliado"
2260
 
2261
+ #: templates/forms/license-activation.php:21
2262
  msgid "Please enter the license key that you received in the email right after the purchase:"
2263
  msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:"
2264
 
2265
+ #: templates/forms/license-activation.php:26
2266
  msgid "Update License"
2267
  msgstr "Activar licencia"
2268
 
2329
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2330
  msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte."
2331
 
2332
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2333
+ #. subscription'
2334
+ #: templates/forms/subscription-cancellation.php99,
2335
+ #: templates/account/partials/addon.php29,
2336
+ #: templates/account/partials/site.php:298
2337
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2338
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2339
+
2340
  #: templates/forms/subscription-cancellation.php:103
2341
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2342
  msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida."
2350
  msgstr "Proceder"
2351
 
2352
  #: templates/forms/subscription-cancellation.php191,
2353
+ #: templates/forms/deactivation/form.php:171
2354
  msgid "Cancel %s & Proceed"
2355
  msgstr "Cancelar %s y proceder"
2356
 
2362
  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."
2363
  msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba."
2364
 
2365
+ #: templates/js/style-premium-theme.php:39
2366
  msgid "Premium"
2367
  msgstr "Premium"
2368
 
2369
+ #: templates/js/style-premium-theme.php:42
2370
+ msgid "Beta"
2371
+ msgstr "Beta"
2372
+
2373
+ #: templates/partials/network-activation.php:27
2374
  msgid "Activate license on all sites in the network."
2375
  msgstr "Activar licencia en todos los sitios de la red"
2376
 
2377
+ #: templates/partials/network-activation.php:28
2378
  msgid "Apply on all sites in the network."
2379
  msgstr "Aplicar en todos los sitios de la red"
2380
 
2381
+ #: templates/partials/network-activation.php:31
2382
  msgid "Activate license on all pending sites."
2383
  msgstr "Aplicar licencia en todos los sitios pendientes"
2384
 
2385
+ #: templates/partials/network-activation.php:32
2386
  msgid "Apply on all pending sites."
2387
  msgstr "Aplicar en todos los sitios pendientes"
2388
 
2389
+ #: templates/partials/network-activation.php40,
2390
+ #: templates/partials/network-activation.php:74
2391
  msgid "allow"
2392
  msgstr "permitir"
2393
 
2394
+ #: templates/partials/network-activation.php43,
2395
+ #: templates/partials/network-activation.php:77
2396
  msgid "delegate"
2397
  msgstr "delegar"
2398
 
2399
+ #: templates/partials/network-activation.php47,
2400
+ #: templates/partials/network-activation.php:81
2401
  msgid "skip"
2402
  msgstr "saltar"
2403
 
2423
  msgid "Last license"
2424
  msgstr "Última licencia"
2425
 
2426
+ #: templates/account/partials/addon.php:167
2427
  msgid "Cancelled"
2428
  msgstr "Cancelado"
2429
 
2430
+ #: templates/account/partials/addon.php:177
2431
  msgid "No expiration"
2432
  msgstr "Sin caducidad"
2433
 
 
 
 
 
 
2434
  #: templates/account/partials/site.php:181
2435
  msgid "Owner Name"
2436
  msgstr "Nombre del propietario"
2455
  msgid "Contact Support"
2456
  msgstr "Contactar soporte"
2457
 
2458
+ #: templates/forms/deactivation/form.php:64
2459
  msgid "Anonymous feedback"
2460
  msgstr "Comentarios anónimos"
2461
 
2462
+ #: templates/forms/deactivation/form.php:70
2463
  msgid "Deactivate"
2464
  msgstr "Desactivar"
2465
 
2466
+ #: templates/forms/deactivation/form.php:72
2467
  msgid "Activate %s"
2468
  msgstr "Activar %s"
2469
 
2470
+ #: templates/forms/deactivation/form.php:87
2471
  msgid "Quick Feedback"
2472
  msgstr "Comentarios rápidos"
2473
 
2474
+ #: templates/forms/deactivation/form.php:91
2475
  msgid "If you have a moment, please let us know why you are %s"
2476
  msgstr "Si tienes un momento, por favor, dinos por qué estás %s"
2477
 
2478
+ #: templates/forms/deactivation/form.php:91
2479
  msgid "deactivating"
2480
  msgstr "desactivando"
2481
 
2482
+ #: templates/forms/deactivation/form.php:91
2483
  msgid "switching"
2484
  msgstr "cambiando"
2485
 
2486
+ #: templates/forms/deactivation/form.php:365
2487
  msgid "Submit & %s"
2488
  msgstr "Enviar y %s"
2489
 
2490
+ #: templates/forms/deactivation/form.php:386
2491
  msgid "Kindly tell us the reason so we can improve."
2492
  msgstr "Por favor, dínos la razón para que podamos mejorar."
2493
 
2494
+ #: templates/forms/deactivation/form.php:511
2495
  msgid "Yes - %s"
2496
  msgstr "Si - %s"
2497
 
2498
+ #: templates/forms/deactivation/form.php:518
2499
  msgid "Skip & %s"
2500
  msgstr "Saltar y %s"
2501
 
vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.po CHANGED
@@ -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: 2018-11-29 17:40+0000\n"
11
  "Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
12
  "Language: fr_FR\n"
13
  "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
@@ -21,772 +21,792 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
27
 
28
- #: includes/class-freemius.php:1690
29
  msgid "Error"
30
  msgstr "Erreur"
31
 
32
- #: includes/class-freemius.php:2011
33
  msgid "I found a better %s"
34
  msgstr "J'ai trouvé un meilleur %s"
35
 
36
- #: includes/class-freemius.php:2013
37
  msgid "What's the %s's name?"
38
  msgstr "Quel est le nom du %s ?"
39
 
40
- #: includes/class-freemius.php:2019
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "C'est une %s temporaire. Je corrige un problème."
43
 
44
- #: includes/class-freemius.php:2021
45
  msgid "Deactivation"
46
  msgstr "Désactivation"
47
 
48
- #: includes/class-freemius.php:2022
49
  msgid "Theme Switch"
50
  msgstr "Changement de Thème"
51
 
52
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Autre"
55
 
56
- #: includes/class-freemius.php:2039
57
  msgid "I no longer need the %s"
58
  msgstr "Je n'ai plus besoin du %s"
59
 
60
- #: includes/class-freemius.php:2046
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Je n'ai besoin de %s que pour une courte période"
63
 
64
- #: includes/class-freemius.php:2052
65
  msgid "The %s broke my site"
66
  msgstr "Le %s a cassé mon site"
67
 
68
- #: includes/class-freemius.php:2059
69
  msgid "The %s suddenly stopped working"
70
  msgstr "Le %s a soudainement arrêté de fonctionner"
71
 
72
- #: includes/class-freemius.php:2069
73
  msgid "I can't pay for it anymore"
74
  msgstr "Je ne peux plus payer pour ça"
75
 
76
- #: includes/class-freemius.php:2071
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "Quel prix seriez-vous prêt à payer ?"
79
 
80
- #: includes/class-freemius.php:2077
81
  msgid "I don't like to share my information with you"
82
  msgstr "Je ne veux pas partager mes informations avec vous"
83
 
84
- #: includes/class-freemius.php:2098
85
  msgid "The %s didn't work"
86
  msgstr "Le %s n'a pas fonctionné"
87
 
88
- #: includes/class-freemius.php:2108
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "Je ne comprends pas comment le faire fonctionner"
91
 
92
- #: includes/class-freemius.php:2116
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
95
 
96
- #: includes/class-freemius.php:2118
97
  msgid "What feature?"
98
  msgstr "Quelle fonctionnalité ?"
99
 
100
- #: includes/class-freemius.php:2122
101
  msgid "The %s is not working"
102
  msgstr "Le %s ne fonctionne pas"
103
 
104
- #: includes/class-freemius.php:2124
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
107
 
108
- #: includes/class-freemius.php:2128
109
  msgid "It's not what I was looking for"
110
  msgstr "Ce n'est pas ce que je recherche"
111
 
112
- #: includes/class-freemius.php:2130
113
  msgid "What you've been looking for?"
114
  msgstr "Que recherchez-vous ?"
115
 
116
- #: includes/class-freemius.php:2134
117
  msgid "The %s didn't work as expected"
118
  msgstr "Le %s n'a pas fonctionné comme prévu"
119
 
120
- #: includes/class-freemius.php:2136
121
  msgid "What did you expect?"
122
  msgstr "À quoi vous attendiez-vous ?"
123
 
124
- #: includes/class-freemius.php2942, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Débuggage Freemius"
127
 
128
- #: includes/class-freemius.php:3670
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
131
 
132
- #: includes/class-freemius.php:3672
133
  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."
134
  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."
135
 
136
- #: includes/class-freemius.php:3679
137
  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."
138
  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."
139
 
140
- #: includes/class-freemius.php:3784
141
  msgid "Yes - do your thing"
142
  msgstr "Oui - allez-y"
143
 
144
- #: includes/class-freemius.php:3789
145
  msgid "No - just deactivate"
146
  msgstr "Non - désactivation seulement"
147
 
148
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
- #: includes/class-freemius.php19001, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oups"
158
 
159
- #: includes/class-freemius.php:3903
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 "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."
162
 
163
- #: includes/class-freemius.php:4340
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s ne peut pas fonctionner sans %s."
167
 
168
- #: includes/class-freemius.php:4341
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s ne peut pas fonctionner sans le plugin."
172
 
173
- #: includes/class-freemius.php4487, includes/class-freemius.php4512,
174
- #: includes/class-freemius.php:17953
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
177
 
178
- #: includes/class-freemius.php:5130
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La version premium de %s a été activée avec succès."
181
 
182
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "Génial"
186
 
187
- #: includes/class-freemius.php:5157
188
  msgid "You have a %s license."
189
  msgstr "Vous avez une license pour %s."
190
 
191
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
- #: includes/class-freemius.php:17707
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Youpi"
198
 
199
- #: includes/class-freemius.php:5425
200
  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."
201
  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."
202
 
203
- #: includes/class-freemius.php:5429
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
206
 
207
- #: includes/class-freemius.php5438, templates/add-ons.php103,
208
- #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Plus d'informations à propos de %s"
211
 
212
- #: includes/class-freemius.php:5439
213
  msgid "Purchase License"
214
  msgstr "Acheter une licence"
215
 
216
- #: includes/class-freemius.php6372, templates/connect.php:163
217
  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."
218
  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."
219
 
220
- #: includes/class-freemius.php:6376
221
  msgid "start the trial"
222
  msgstr "commencer la période d'essai"
223
 
224
- #: includes/class-freemius.php6377, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "compléter l'installation"
227
 
228
- #: includes/class-freemius.php:6490
229
  msgid "You are just one step away - %s"
230
  msgstr "Il ne reste qu'une étape - %s"
231
 
232
- #: includes/class-freemius.php:6493
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Compléter \"%s\" Activer Maintenant"
236
 
237
- #: includes/class-freemius.php:6571
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Nous avons fait quelques modifications au %s, %s"
240
 
241
- #: includes/class-freemius.php:6575
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
244
 
245
- #: includes/class-freemius.php:7003
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La mise à jour du %s s'est terminée avec succès "
248
 
249
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
- #: includes/class-fs-plugin-updater.php1081,
251
- #: includes/class-fs-plugin-updater.php1088,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Add-On"
255
 
256
- #: includes/class-freemius.php8927, templates/debug.php359,
257
- #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Plugin"
260
 
261
- #: includes/class-freemius.php8928, templates/debug.php359,
262
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
263
  msgid "Theme"
264
  msgstr "Thème"
265
 
266
- #: includes/class-freemius.php:11412
 
 
 
 
267
  msgid "Invalid site details collection."
268
  msgstr "Récupération des détails du site non valide."
269
 
270
- #: includes/class-freemius.php:11532
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
273
 
274
- #: includes/class-freemius.php:11534
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
277
 
278
- #: includes/class-freemius.php:11808
279
  msgid "Account is pending activation."
280
  msgstr "Compte en cours d'activation."
281
 
282
- #: includes/class-freemius.php11920,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Acheter une licence maintenant"
286
 
287
- #: includes/class-freemius.php11932,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renouvelez votre licence maintenant"
291
 
292
- #: includes/class-freemius.php:11936
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
295
 
296
- #: includes/class-freemius.php:14319
297
  msgid "%s activation was successfully completed."
298
  msgstr "L'activation de %s s'est terminée avec succès."
299
 
300
- #: includes/class-freemius.php:14333
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Votre compte a été activé avec succès avec la formule %s."
303
 
304
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
  msgid "Your trial has been successfully started."
306
  msgstr "Votre période d'essai a bien démarré."
307
 
308
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
- #: includes/class-freemius.php:15028
310
  msgid "Couldn't activate %s."
311
  msgstr "Impossible d'activer %s."
312
 
313
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
- #: includes/class-freemius.php:15029
315
  msgid "Please contact us with the following message:"
316
  msgstr "Merci de nous contacter avec le message suivant :"
317
 
318
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
319
  msgid "Upgrade"
320
  msgstr "Mise à jour"
321
 
322
- #: includes/class-freemius.php:15384
323
  msgid "Start Trial"
324
  msgstr "Essai gratuit"
325
 
326
- #: includes/class-freemius.php:15386
327
  msgid "Pricing"
328
  msgstr "Tarifs"
329
 
330
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
  msgid "Affiliation"
332
  msgstr "Affiliation"
333
 
334
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
- #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Compte"
338
 
339
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Contactez Nous"
343
 
344
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
- #: includes/class-freemius.php19849, templates/account.php100,
346
- #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Add-Ons"
349
 
350
- #: includes/class-freemius.php:15541
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
- #: includes/class-freemius.php:15541
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
- #: includes/class-freemius.php15543, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Tarifs"
364
 
365
- #: includes/class-freemius.php15756,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Forum de Support"
369
 
370
- #: includes/class-freemius.php:16542
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
373
 
374
- #: includes/class-freemius.php:16543
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Directement"
378
 
379
- #: includes/class-freemius.php:17168
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Votre Add-on %s a bien été mis à jour."
382
 
383
- #: includes/class-freemius.php:17170
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "L'Add-on %s a bien été acheté."
386
 
387
- #: includes/class-freemius.php:17173
388
  msgid "Download the latest version"
389
  msgstr "Télécharger la dernière version"
390
 
391
- #: includes/class-freemius.php:17259
392
- msgctxt "%1s - plugin title, %2s - API domain"
393
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
- msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
395
 
396
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
- #: includes/class-freemius.php:17755
398
  msgid "Error received from the server:"
399
  msgstr "Une erreur a été reçu depuis le serveur :"
400
 
401
- #: includes/class-freemius.php:17272
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  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."
404
 
405
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
- #: includes/class-freemius.php:17467
412
  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."
413
  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é."
414
 
415
- #: includes/class-freemius.php17468, templates/account.php102,
416
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Période d'essai"
420
 
421
- #: includes/class-freemius.php:17473
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
424
 
425
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
  msgid "Please contact us here"
427
  msgstr "Merci de nous contacter ici"
428
 
429
- #: includes/class-freemius.php:17487
 
 
 
 
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Votre formule a bien été mise à jour."
432
 
433
- #: includes/class-freemius.php:17505
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Votre formule a bien été modifié vers %s. "
436
 
437
- #: includes/class-freemius.php:17521
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
440
 
441
- #: includes/class-freemius.php:17523
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
444
 
445
- #: includes/class-freemius.php:17531
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
448
 
449
- #: includes/class-freemius.php:17544
450
  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."
451
  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."
452
 
453
- #: includes/class-freemius.php:17567
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
456
 
457
- #: includes/class-freemius.php:17569
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  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."
460
 
461
- #: includes/class-freemius.php:17674
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Il semble que la licence ne puisse être activée."
464
 
465
- #: includes/class-freemius.php:17704
466
  msgid "Your license was successfully activated."
467
  msgstr "Votre licence a bien été activée."
468
 
469
- #: includes/class-freemius.php:17730
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Il semble que votre site n'ait pas de licence active."
472
 
473
- #: includes/class-freemius.php:17754
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Il semble que la désactivation de la licence a échoué."
476
 
477
- #: includes/class-freemius.php:17782
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
480
 
481
- #: includes/class-freemius.php:17783
482
  msgid "O.K"
483
  msgstr "O.K"
484
 
485
- #: includes/class-freemius.php:17836
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
488
 
489
- #: includes/class-freemius.php:17845
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
492
 
493
- #: includes/class-freemius.php:17887
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Vous utilisez déjà le %s en période d'essai. "
496
 
497
- #: includes/class-freemius.php:17898
498
  msgid "You already utilized a trial before."
499
  msgstr "Vous avez déjà utilisé la période d'essai."
500
 
501
- #: includes/class-freemius.php:17912
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
504
 
505
- #: includes/class-freemius.php:17923
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "La formule %s ne propose pas de période d'essai."
508
 
509
- #: includes/class-freemius.php:17934
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Aucune formule du %s ne propose de période d'essai."
512
 
513
- #: includes/class-freemius.php:17984
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
516
 
517
- #: includes/class-freemius.php:18020
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
520
 
521
- #: includes/class-freemius.php:18039
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Votre période d'essai %s a bien été annulé."
524
 
525
- #: includes/class-freemius.php:18346
526
  msgid "Version %s was released."
527
  msgstr "La version %s vient d'être publiée."
528
 
529
- #: includes/class-freemius.php:18346
530
  msgid "Please download %s."
531
  msgstr "Merci de télécharger %s."
532
 
533
- #: includes/class-freemius.php:18353
534
  msgid "the latest %s version here"
535
  msgstr "la dernière version de %s ici"
536
 
537
- #: includes/class-freemius.php:18358
538
  msgid "New"
539
  msgstr "Nouveau"
540
 
541
- #: includes/class-freemius.php:18363
542
  msgid "Seems like you got the latest release."
543
  msgstr "Il semble que vous ayez la dernière version."
544
 
545
- #: includes/class-freemius.php:18364
546
  msgid "You are all good!"
547
  msgstr "Vous êtes tout bon !"
548
 
549
- #: includes/class-freemius.php:18632
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  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."
552
 
553
- #: includes/class-freemius.php:18769
554
  msgid "Site successfully opted in."
555
  msgstr "Site ajouté avec succès."
556
 
557
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
  msgid "Awesome"
559
  msgstr "Formidable"
560
 
561
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
564
 
565
- #: includes/class-freemius.php:18787
566
  msgid "Thank you!"
567
  msgstr "Merci !"
568
 
569
- #: includes/class-freemius.php:18794
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
572
 
573
- #: includes/class-freemius.php:18923
574
  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."
575
  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."
576
 
577
- #: includes/class-freemius.php:18929
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
580
 
581
- #: includes/class-freemius.php:18934
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s est le nouveau propriétaire du compte."
584
 
585
- #: includes/class-freemius.php:18936
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Félicitations"
589
 
590
- #: includes/class-freemius.php:18956
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
593
 
594
- #: includes/class-freemius.php:18957
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
597
 
598
- #: includes/class-freemius.php:18964
599
  msgid "Change Ownership"
600
  msgstr "Changement De Propriétaire"
601
 
602
- #: includes/class-freemius.php:18972
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
605
 
606
- #: includes/class-freemius.php:18984
607
  msgid "Please provide your full name."
608
  msgstr "Merci d'indiquer vos prénom et nom."
609
 
610
- #: includes/class-freemius.php:18989
611
  msgid "Your name was successfully updated."
612
  msgstr "Votre nom a été mis à jour."
613
 
614
- #: includes/class-freemius.php:19050
615
  msgid "You have successfully updated your %s."
616
  msgstr "Votre %s a bien été mis à jour."
617
 
618
- #: includes/class-freemius.php:19190
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
621
 
622
- #: includes/class-freemius.php:19191
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Avertissement"
626
 
627
- #: includes/class-freemius.php:19621
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Hey"
631
 
632
- #: includes/class-freemius.php:19621
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
635
 
636
- #: includes/class-freemius.php:19629
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
639
 
640
- #: includes/class-freemius.php:19630
641
  msgid "No credit card required"
642
  msgstr "Pas besoin de carte bancaire"
643
 
644
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Commencer l'essai gratuit"
648
 
649
- #: includes/class-freemius.php:19714
650
  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!"
651
  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 !"
652
 
653
- #: includes/class-freemius.php:19723
654
  msgid "Learn more"
655
  msgstr "En savoir plus"
656
 
657
- #: includes/class-freemius.php19873, templates/account.php406,
658
- #: templates/account.php509, templates/connect.php171,
659
- #: templates/connect.php421, templates/forms/license-activation.php24,
660
- #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Activer la licence"
663
 
664
- #: includes/class-freemius.php19874, templates/account.php469,
665
- #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Changer la licence"
668
 
669
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Désinscription"
672
 
673
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Inscription"
678
 
679
- #: includes/class-freemius.php:20187
680
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
- msgstr "La version payante de %1s est déjà installée. Merci de l'activer pour bénéficier des fonctionnalités %2s. %3s"
682
 
683
- #: includes/class-freemius.php:20195
684
  msgid "Activate %s features"
685
  msgstr "Activer les fonctionnalités %s"
686
 
687
- #: includes/class-freemius.php:20208
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
690
 
691
- #: includes/class-freemius.php:20212
692
  msgid "Download the latest %s version"
693
  msgstr "Télécharger la dernière version %s"
694
 
695
- #: includes/class-freemius.php:20216
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Téléverser et activer la version téléchargée"
698
 
699
- #: includes/class-freemius.php:20218
700
  msgid "How to upload and activate?"
701
  msgstr "Comment téléverser et activer ?"
702
 
703
- #: includes/class-freemius.php:20352
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
706
 
707
- #: includes/class-freemius.php:20513
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
710
 
711
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
- #: includes/class-fs-plugin-updater.php1060,
713
- #: includes/class-fs-plugin-updater.php:1074
714
  msgid "Invalid module ID."
715
  msgstr "ID du module non valide."
716
 
717
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
  msgid "Premium version already active."
719
  msgstr "Version premium déjà active."
720
 
721
- #: includes/class-freemius.php:20539
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
724
 
725
- #: includes/class-freemius.php:20546
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
728
 
729
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
  msgid "Premium add-on version already installed."
731
  msgstr "La version premium de l'add-on est déjà installée."
732
 
733
- #: includes/class-freemius.php:20909
734
  msgid "View paid features"
735
  msgstr "Voir les fonctionnalités payantes"
736
 
737
- #: includes/class-freemius.php:21229
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
740
 
741
- #: includes/class-freemius.php:21230
742
  msgid "Thank you so much for using %s!"
743
  msgstr "Merci beaucoup d'utiliser %s !"
744
 
745
- #: includes/class-freemius.php:21236
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
748
 
749
- #: includes/class-freemius.php:21240
750
  msgid "Thank you so much for using our products!"
751
  msgstr "Merci beaucoup d'utiliser nos produits !"
752
 
753
- #: includes/class-freemius.php:21241
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
756
 
757
- #: includes/class-freemius.php:21260
758
  msgid "%s and its add-ons"
759
  msgstr "%s et ses add-ons"
760
 
761
- #: includes/class-freemius.php:21269
762
  msgid "Products"
763
  msgstr "Produits"
764
 
765
- #: includes/class-freemius.php21276, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Oui"
768
 
769
- #: includes/class-freemius.php21277, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
772
 
773
- #: includes/class-freemius.php21278, templates/connect.php:278
774
  msgid "No"
775
  msgstr "Non"
776
 
777
- #: includes/class-freemius.php21280, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
780
 
781
- #: includes/class-freemius.php:21290
782
- 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 🙂"
783
- msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
784
 
785
- #: includes/class-freemius.php21292, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  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 :"
788
 
789
- #: includes/class-freemius.php:21574
790
  msgid "License key is empty."
791
  msgstr "La clé de licence est vide."
792
 
@@ -800,628 +820,680 @@ msgstr "Renouvelez votre licence"
800
  msgid "Buy license"
801
  msgstr "Acheter une licence"
802
 
803
- #: includes/class-fs-plugin-updater.php:278
 
804
  msgid "There is a %s of %s available."
805
  msgstr "Il y a une %s de %s disponible."
806
 
807
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
808
  msgid "new version"
809
  msgstr "Nouvelle version"
810
 
811
- #: includes/class-fs-plugin-updater.php:305
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Information importante de mise à jour :"
814
 
815
- #: includes/class-fs-plugin-updater.php:1125
816
  msgid "Installing plugin: %s"
817
  msgstr "Installation du plugin : %s"
818
 
819
- #: includes/class-fs-plugin-updater.php:1166
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
822
 
823
- #: includes/class-fs-plugin-updater.php:1348
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  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."
826
 
827
- #: includes/fs-plugin-info-dialog.php369,
828
- #: templates/account/partials/addon.php:292
 
 
 
 
829
  msgctxt "verb"
830
  msgid "Purchase"
831
  msgstr "Acheter"
832
 
833
- #: includes/fs-plugin-info-dialog.php:372
834
  msgid "Start my free %s"
835
  msgstr "Commencer ma %s gratuite"
836
 
837
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
838
  msgid "Install Free Version Now"
839
  msgstr "Installer la version gratuite maintenant"
840
 
841
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
- #: templates/account/partials/addon.php272,
843
- #: templates/account/partials/addon.php:322
 
844
  msgid "Install Now"
845
  msgstr "Installer maintenant"
846
 
847
- #: includes/fs-plugin-info-dialog.php:425
848
  msgctxt "as download latest version"
849
  msgid "Download Latest Free Version"
850
  msgstr "Télécharger la dernière version gratuite"
851
 
852
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
- #: templates/account/partials/addon.php:21
854
  msgctxt "as download latest version"
855
  msgid "Download Latest"
856
  msgstr "Télécharger la dernière version"
857
 
858
- #: includes/fs-plugin-info-dialog.php:436
859
- msgid "Install Free Version Update Now"
860
- msgstr "Installer la dernière mise à jour gratuite maintenant"
861
-
862
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
- msgid "Install Update Now"
864
- msgstr "Installer la mise à jour maintenant"
865
-
866
- #: includes/fs-plugin-info-dialog.php:448
867
- msgid "Newer Free Version (%s) Installed"
868
- msgstr "La nouvelle version gratuite ( %s ) a été installé"
869
-
870
- #: includes/fs-plugin-info-dialog.php:449
871
- msgid "Newer Version (%s) Installed"
872
- msgstr "Nouvelle Version (%s) Installée"
873
 
874
- #: includes/fs-plugin-info-dialog.php:457
875
- msgid "Latest Free Version Installed"
876
- msgstr "La dernière version gratuite a été installé"
877
 
878
- #: includes/fs-plugin-info-dialog.php:458
879
- msgid "Latest Version Installed"
880
- msgstr "Dernière Version Installée"
 
881
 
882
- #: includes/fs-plugin-info-dialog.php:613
883
  msgctxt "Plugin installer section title"
884
  msgid "Description"
885
  msgstr "Description"
886
 
887
- #: includes/fs-plugin-info-dialog.php:614
888
  msgctxt "Plugin installer section title"
889
  msgid "Installation"
890
  msgstr "Installation"
891
 
892
- #: includes/fs-plugin-info-dialog.php:615
893
  msgctxt "Plugin installer section title"
894
  msgid "FAQ"
895
  msgstr "FAQ"
896
 
897
- #: includes/fs-plugin-info-dialog.php616,
898
  #: templates/plugin-info/description.php:55
899
  msgid "Screenshots"
900
  msgstr "Captures d'écran"
901
 
902
- #: includes/fs-plugin-info-dialog.php:617
903
  msgctxt "Plugin installer section title"
904
  msgid "Changelog"
905
  msgstr "Changelog"
906
 
907
- #: includes/fs-plugin-info-dialog.php:618
908
  msgctxt "Plugin installer section title"
909
  msgid "Reviews"
910
  msgstr "Commentaires"
911
 
912
- #: includes/fs-plugin-info-dialog.php:619
913
  msgctxt "Plugin installer section title"
914
  msgid "Other Notes"
915
  msgstr "Autres Informations"
916
 
917
- #: includes/fs-plugin-info-dialog.php:634
918
  msgctxt "Plugin installer section title"
919
  msgid "Features & Pricing"
920
  msgstr "Fonctionnalités & Tarifs"
921
 
922
- #: includes/fs-plugin-info-dialog.php:644
923
  msgid "Plugin Install"
924
  msgstr "Installation du Plugin"
925
 
926
- #: includes/fs-plugin-info-dialog.php:716
927
  msgctxt "e.g. Professional Plan"
928
  msgid "%s Plan"
929
  msgstr "Formule %s"
930
 
931
- #: includes/fs-plugin-info-dialog.php:742
932
  msgctxt "e.g. the best product"
933
  msgid "Best"
934
  msgstr "Best"
935
 
936
- #: includes/fs-plugin-info-dialog.php748,
937
- #: includes/fs-plugin-info-dialog.php:768
938
  msgctxt "as every month"
939
  msgid "Monthly"
940
  msgstr "Mensuel"
941
 
942
- #: includes/fs-plugin-info-dialog.php:751
943
  msgctxt "as once a year"
944
  msgid "Annual"
945
  msgstr "Annuel"
946
 
947
- #: includes/fs-plugin-info-dialog.php:754
948
  msgid "Lifetime"
949
  msgstr "À vie"
950
 
951
- #: includes/fs-plugin-info-dialog.php768,
952
- #: includes/fs-plugin-info-dialog.php770,
953
- #: includes/fs-plugin-info-dialog.php:772
954
  msgctxt "e.g. billed monthly"
955
  msgid "Billed %s"
956
  msgstr "%s Facturé"
957
 
958
- #: includes/fs-plugin-info-dialog.php:770
959
  msgctxt "as once a year"
960
  msgid "Annually"
961
  msgstr "Annuel"
962
 
963
- #: includes/fs-plugin-info-dialog.php:772
964
  msgctxt "as once a year"
965
  msgid "Once"
966
  msgstr "Une fois"
967
 
968
- #: includes/fs-plugin-info-dialog.php:778
969
  msgid "Single Site License"
970
  msgstr "Licence 1 site"
971
 
972
- #: includes/fs-plugin-info-dialog.php:780
973
  msgid "Unlimited Licenses"
974
  msgstr "Licences sites illimités"
975
 
976
- #: includes/fs-plugin-info-dialog.php:782
977
  msgid "Up to %s Sites"
978
  msgstr "Jusqu'à %s Sites"
979
 
980
- #: includes/fs-plugin-info-dialog.php792,
981
  #: templates/plugin-info/features.php:82
982
  msgctxt "as monthly period"
983
  msgid "mo"
984
  msgstr "mois"
985
 
986
- #: includes/fs-plugin-info-dialog.php799,
987
  #: templates/plugin-info/features.php:80
988
  msgctxt "as annual period"
989
  msgid "year"
990
  msgstr "année"
991
 
992
- #: includes/fs-plugin-info-dialog.php:853
993
  msgctxt "noun"
994
  msgid "Price"
995
  msgstr "Tarif"
996
 
997
- #: includes/fs-plugin-info-dialog.php:901
998
  msgid "Save %s"
999
  msgstr "Économisez %s"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php:911
1002
  msgid "No commitment for %s - cancel anytime"
1003
  msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1004
 
1005
- #: includes/fs-plugin-info-dialog.php:914
1006
  msgid "After your free %s, pay as little as %s"
1007
  msgstr "Après vos %s gratuits, payez seulement %s"
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:925
1010
  msgid "Details"
1011
  msgstr "Détails"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
- #: templates/account/partials/addon.php:32
1016
  msgctxt "product version"
1017
  msgid "Version"
1018
  msgstr "Version"
1019
 
1020
- #: includes/fs-plugin-info-dialog.php:936
1021
  msgctxt "as the plugin author"
1022
  msgid "Author"
1023
  msgstr "Auteur"
1024
 
1025
- #: includes/fs-plugin-info-dialog.php:943
1026
  msgid "Last Updated"
1027
  msgstr "Dernière mise à jour"
1028
 
1029
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
  msgctxt "x-ago"
1031
  msgid "%s ago"
1032
  msgstr "Il y a %s"
1033
 
1034
- #: includes/fs-plugin-info-dialog.php:957
1035
  msgid "Requires WordPress Version"
1036
  msgstr "Version de WordPress requise"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php:958
1039
  msgid "%s or higher"
1040
  msgstr "%s ou plus"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:965
1043
  msgid "Compatible up to"
1044
  msgstr "Compatible jusqu'à"
1045
 
1046
- #: includes/fs-plugin-info-dialog.php:973
1047
  msgid "Downloaded"
1048
  msgstr "Téléchargé"
1049
 
1050
- #: includes/fs-plugin-info-dialog.php:977
1051
  msgid "%s time"
1052
  msgstr "%s fois"
1053
 
1054
- #: includes/fs-plugin-info-dialog.php:979
1055
  msgid "%s times"
1056
  msgstr "%s fois"
1057
 
1058
- #: includes/fs-plugin-info-dialog.php:989
1059
  msgid "WordPress.org Plugin Page"
1060
  msgstr "Page WordPress.org du plugin"
1061
 
1062
- #: includes/fs-plugin-info-dialog.php:997
1063
  msgid "Plugin Homepage"
1064
  msgstr "Site Web du plugin"
1065
 
1066
- #: includes/fs-plugin-info-dialog.php1005,
1067
- #: includes/fs-plugin-info-dialog.php:1087
1068
  msgid "Donate to this plugin"
1069
  msgstr "Faire une donation pour ce plugin"
1070
 
1071
- #: includes/fs-plugin-info-dialog.php:1012
1072
  msgid "Average Rating"
1073
  msgstr "Note moyenne"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1019
1076
  msgid "based on %s"
1077
  msgstr "Basé sur %s"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php:1023
1080
  msgid "%s rating"
1081
  msgstr "%s notation"
1082
 
1083
- #: includes/fs-plugin-info-dialog.php:1025
1084
  msgid "%s ratings"
1085
  msgstr "%snotations "
1086
 
1087
- #: includes/fs-plugin-info-dialog.php:1040
1088
  msgid "%s star"
1089
  msgstr "%s étoile"
1090
 
1091
- #: includes/fs-plugin-info-dialog.php:1042
1092
  msgid "%s stars"
1093
  msgstr "%s étoiles"
1094
 
1095
- #: includes/fs-plugin-info-dialog.php:1053
1096
  msgid "Click to see reviews that provided a rating of %s"
1097
  msgstr "Cliquez pour voir les avis avec une notation de %s"
1098
 
1099
- #: includes/fs-plugin-info-dialog.php:1066
1100
  msgid "Contributors"
1101
  msgstr "Contributeurs"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1095,
1104
- #: includes/fs-plugin-info-dialog.php:1097
1105
  msgid "Warning"
1106
  msgstr "Attention"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1095
1109
  msgid "This plugin has not been tested with your current version of WordPress."
1110
  msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1097
1113
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
  msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1115
 
1116
- #: includes/fs-plugin-info-dialog.php:1116
1117
  msgid "Paid add-on must be deployed to Freemius."
1118
  msgstr "Les add-ons payant doivent être déposés sur Freemius"
1119
 
1120
- #: includes/fs-plugin-info-dialog.php:1117
1121
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
  msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1123
 
1124
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
  #: templates/account/partials/site.php:295
1127
  msgid "Downgrading your plan"
1128
  msgstr "Rétrograder votre formule"
1129
 
1130
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
- #: templates/account/partials/addon.php23,
1132
  #: templates/account/partials/site.php:296
1133
  msgid "Cancelling the subscription"
1134
  msgstr "Annuler votre abonnement"
1135
 
1136
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
  #. subscription'
1138
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
- #: templates/account/partials/addon.php25,
1140
- #: templates/account/partials/site.php:298
1141
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
- msgstr "%1s va immédiatement arrêter tous les futurs paiements récurrents et la licence de votre formule %s expirera dans %s."
1143
 
1144
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
- #: templates/account/partials/addon.php26,
1146
  #: templates/account/partials/site.php:299
1147
  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."
1148
  msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé."
1149
 
1150
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
- #: templates/account/partials/addon.php:27
1152
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
  msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1154
 
1155
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
- #: templates/account/partials/addon.php28,
1157
  #: templates/account/partials/site.php:300
1158
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
  msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support."
1160
 
1161
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
- #: templates/account/partials/addon.php29,
1163
  #: templates/account/partials/site.php:301
1164
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
  msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s."
1166
 
1167
  #. translators: %s: Plan title (e.g. "Professional")
1168
- #: templates/account.php90,
1169
  #: templates/account/partials/activate-license-button.php31,
1170
- #: templates/account/partials/addon.php:31
1171
  msgid "Activate %s Plan"
1172
  msgstr "Activer la formule %s"
1173
 
1174
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
- #: templates/account.php93, templates/account/partials/addon.php34,
1176
  #: templates/account/partials/site.php:275
1177
  msgid "Auto renews in %s"
1178
  msgstr "Renouvellements automatique dans %s"
1179
 
1180
  #. translators: %s: Time period (e.g. Expires in "2 months")
1181
- #: templates/account.php95, templates/account/partials/addon.php36,
1182
  #: templates/account/partials/site.php:277
1183
  msgid "Expires in %s"
1184
  msgstr "Expire dans %s"
1185
 
1186
- #: templates/account.php96, templates/account/partials/addon.php:37
1187
  msgctxt "as synchronize license"
1188
  msgid "Sync License"
1189
  msgstr "Synchroniser la licence"
1190
 
1191
- #: templates/account.php97, templates/account/partials/addon.php:38
1192
  msgid "Cancel Trial"
1193
  msgstr "Annuler la période d'essai"
1194
 
1195
- #: templates/account.php98, templates/account/partials/addon.php:39
1196
  msgid "Change Plan"
1197
  msgstr "Changer de formule"
1198
 
1199
- #: templates/account.php99, templates/account/partials/addon.php:40
1200
  msgctxt "verb"
1201
  msgid "Upgrade"
1202
  msgstr "Mise à jour"
1203
 
1204
- #: templates/account.php101, templates/account/partials/addon.php42,
1205
  #: templates/account/partials/site.php:302
1206
  msgctxt "verb"
1207
  msgid "Downgrade"
1208
  msgstr "Rétrograder"
1209
 
1210
- #: templates/account.php103, templates/add-ons.php130,
1211
  #: templates/plugin-info/features.php72,
1212
- #: templates/account/partials/addon.php44,
1213
  #: templates/account/partials/site.php:31
1214
  msgid "Free"
1215
  msgstr "Gratuit"
1216
 
1217
- #: templates/account.php104, templates/account/partials/addon.php:45
1218
- msgid "Activate"
1219
- msgstr "Activer"
1220
-
1221
- #: templates/account.php105, templates/debug.php371,
1222
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
- #: templates/account/partials/addon.php:46
1224
  msgctxt "as product pricing plan"
1225
  msgid "Plan"
1226
  msgstr "Formule"
1227
 
1228
- #: templates/account.php:158
 
 
 
 
1229
  msgid "Free Trial"
1230
  msgstr "Essai gratuit"
1231
 
1232
- #: templates/account.php:169
1233
  msgid "Account Details"
1234
  msgstr "Détails du compte"
1235
 
1236
- #: templates/account.php:179
 
 
 
 
1237
  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?"
1238
  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 ? "
1239
 
1240
- #: templates/account.php:181
1241
  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?"
1242
  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 ?"
1243
 
1244
- #: templates/account.php:184
1245
  msgid "Delete Account"
1246
  msgstr "Supprimer le compte"
1247
 
1248
- #: templates/account.php196, templates/account/partials/addon.php159,
1249
  #: templates/account/partials/deactivate-license-button.php:35
1250
  msgid "Deactivate License"
1251
  msgstr "Désactiver la licence"
1252
 
1253
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
  msgid "Are you sure you want to proceed?"
1255
  msgstr "Êtes-vous de vouloir continuer ?"
1256
 
1257
- #: templates/account.php219, templates/account/partials/addon.php:182
1258
  msgid "Cancel Subscription"
1259
  msgstr "Annuler l'abonnement"
1260
 
1261
- #: templates/account.php:247
1262
  msgctxt "as synchronize"
1263
  msgid "Sync"
1264
  msgstr "Synchroniser"
1265
 
1266
- #: templates/account.php261, templates/debug.php:487
1267
  msgid "Name"
1268
  msgstr "Nom"
1269
 
1270
- #: templates/account.php267, templates/debug.php:488
1271
  msgid "Email"
1272
  msgstr "Email"
1273
 
1274
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
  msgid "User ID"
1276
  msgstr "User ID"
1277
 
1278
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1279
  msgid "Site ID"
1280
  msgstr "Site ID"
1281
 
1282
- #: templates/account.php:285
1283
  msgid "No ID"
1284
  msgstr "ID manquant"
1285
 
1286
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
- #: templates/debug.php453, templates/debug.php490,
1288
  #: templates/account/partials/site.php:219
1289
  msgid "Public Key"
1290
  msgstr "Clef publique"
1291
 
1292
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
- #: templates/debug.php491, templates/account/partials/site.php:231
1294
  msgid "Secret Key"
1295
  msgstr "Clef secrête"
1296
 
1297
- #: templates/account.php:299
1298
  msgctxt "as secret encryption key missing"
1299
  msgid "No Secret"
1300
  msgstr "Clef secrète manquante"
1301
 
1302
- #: templates/account.php318, templates/account/partials/site.php112,
1303
  #: templates/account/partials/site.php:114
1304
  msgid "Trial"
1305
  msgstr "Période d'essai"
1306
 
1307
- #: templates/account.php337, templates/debug.php531,
1308
  #: templates/account/partials/site.php:248
1309
  msgid "License Key"
1310
  msgstr "Clef de licence"
1311
 
1312
- #: templates/account.php:367
 
 
 
 
1313
  msgid "not verified"
1314
  msgstr "Non vérifié"
1315
 
1316
- #: templates/account.php376, templates/account/partials/addon.php:120
1317
  msgid "Expired"
1318
  msgstr "Expiré"
1319
 
1320
- #: templates/account.php:428
1321
  msgid "Premium version"
1322
  msgstr "Version premium"
1323
 
1324
- #: templates/account.php:430
1325
  msgid "Free version"
1326
  msgstr "Version gratuite"
1327
 
1328
- #: templates/account.php:442
1329
  msgid "Verify Email"
1330
  msgstr "Vérifier l'email"
1331
 
1332
- #: templates/account.php:453
1333
  msgid "Download %s Version"
1334
  msgstr "Télécharger la version %s"
1335
 
1336
- #: templates/account.php467, templates/account.php649,
1337
  #: templates/account/partials/site.php237,
1338
  #: templates/account/partials/site.php:255
1339
  msgctxt "verb"
1340
  msgid "Show"
1341
  msgstr "Afficher"
1342
 
1343
- #: templates/account.php:481
1344
  msgid "What is your %s?"
1345
  msgstr "Quel est votre %s ?"
1346
 
1347
- #: templates/account.php489, templates/account/billing.php:27
1348
  msgctxt "verb"
1349
  msgid "Edit"
1350
  msgstr "Éditer"
1351
 
1352
- #: templates/account.php:502
1353
  msgid "Sites"
1354
  msgstr "Sites"
1355
 
1356
- #: templates/account.php:513
1357
  msgid "Search by address"
1358
  msgstr "Recherche par adresse"
1359
 
1360
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
- #: templates/debug.php524, templates/debug.php597,
1363
- #: templates/account/payments.php35, templates/debug/logger.php:21
1364
- msgid "ID"
1365
- msgstr "ID"
1366
-
1367
- #: templates/account.php523, templates/debug.php:367
1368
  msgid "Address"
1369
  msgstr "Adresse"
1370
 
1371
- #: templates/account.php:524
1372
  msgid "License"
1373
  msgstr "Licence"
1374
 
1375
- #: templates/account.php:525
1376
  msgid "Plan"
1377
  msgstr "Formule"
1378
 
1379
- #: templates/account.php:573
1380
  msgctxt "as software license"
1381
  msgid "License"
1382
  msgstr "Licence"
1383
 
1384
- #: templates/account.php:643
1385
  msgctxt "verb"
1386
  msgid "Hide"
1387
  msgstr "Cacher"
1388
 
1389
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1390
  msgid "Cancelling %s"
1391
  msgstr "Annulation de %s"
1392
 
1393
- #: templates/account.php686, templates/account.php703,
1394
  #: templates/forms/subscription-cancellation.php27,
1395
- #: templates/forms/deactivation/form.php:117
1396
  msgid "trial"
1397
  msgstr "essai"
1398
 
1399
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
  msgid "Cancelling %s..."
1401
  msgstr "Annulation de %s..."
1402
 
1403
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
- #: templates/forms/deactivation/form.php:118
1405
  msgid "subscription"
1406
  msgstr "abonnement"
1407
 
1408
- #: templates/account.php:718
1409
  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?"
1410
  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 ?"
1411
 
1412
- #: templates/add-ons.php:36
 
 
 
 
1413
  msgid "Add Ons for %s"
1414
  msgstr "Add Ons pour %s"
1415
 
1416
- #: templates/add-ons.php:44
1417
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
  msgstr "Nous n'avons pas pu charger la liste des add-ons. C'est probablement une difficulté de notre côté, merci de d'essayer à nouveau dans quelques minutes."
1419
 
1420
- #: templates/add-ons.php:139
1421
- msgid "View details"
1422
- msgstr "Voir les détails"
 
 
 
 
 
 
1423
 
1424
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
  #: templates/forms/resend-key.php:77
1426
  msgctxt "as close a window"
1427
  msgid "Dismiss"
@@ -1447,11 +1519,11 @@ msgstr "L'installation a commencé et peut prendre quelques minutes pour se fini
1447
  msgid "Cancel Installation"
1448
  msgstr "Annuler l'installation"
1449
 
1450
- #: templates/checkout.php:172
1451
  msgid "Checkout"
1452
  msgstr "Paiement"
1453
 
1454
- #: templates/checkout.php:172
1455
  msgid "PCI compliant"
1456
  msgstr "Compatible PCI"
1457
 
@@ -1473,7 +1545,7 @@ msgstr "Renvoyer l'email d'activation"
1473
  msgid "Thanks %s!"
1474
  msgstr "Merci %s !"
1475
 
1476
- #: templates/connect.php172, templates/forms/license-activation.php:43
1477
  msgid "Agree & Activate License"
1478
  msgstr "Valider & Activer la licence"
1479
 
@@ -1521,15 +1593,15 @@ msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la lice
1521
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
  msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1523
 
1524
- #: templates/connect.php253, templates/forms/license-activation.php:46
1525
  msgid "License key"
1526
  msgstr "Clef de licence"
1527
 
1528
- #: templates/connect.php256, templates/forms/license-activation.php:19
1529
  msgid "Can't find your license key?"
1530
  msgstr "Vous ne trouvez pas votre clef de licence ?"
1531
 
1532
- #: templates/connect.php315, templates/connect.php630,
1533
  #: templates/forms/deactivation/retry-skip.php:20
1534
  msgctxt "verb"
1535
  msgid "Skip"
@@ -1579,7 +1651,7 @@ msgstr "Activation, désactivation et désintallation"
1579
  msgid "Newsletter"
1580
  msgstr "Newsletter"
1581
 
1582
- #: templates/connect.php391, templates/forms/license-activation.php:38
1583
  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."
1584
  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."
1585
 
@@ -1591,10 +1663,6 @@ msgstr "Quelles autorisations sont accordées ?"
1591
  msgid "Don't have a license key?"
1592
  msgstr "Vous n'avez pas de clef de licence ?"
1593
 
1594
- #: templates/connect.php:418
1595
- msgid "Activate Free Version"
1596
- msgstr "Activez la version gratuite"
1597
-
1598
  #: templates/connect.php:420
1599
  msgid "Have a license key?"
1600
  msgstr "Vous avez une clef de licence ?"
@@ -1611,12 +1679,12 @@ msgstr "Contrat de licence"
1611
  msgid "Terms of Service"
1612
  msgstr "Conditions générales de service"
1613
 
1614
- #: templates/connect.php:766
1615
  msgctxt "as in the process of sending an email"
1616
  msgid "Sending email"
1617
  msgstr "Email en cours d'envoi"
1618
 
1619
- #: templates/connect.php:767
1620
  msgctxt "as activating plugin"
1621
  msgid "Activating"
1622
  msgstr "Activation en cours"
@@ -1644,8 +1712,8 @@ msgctxt "as code debugging"
1644
  msgid "Debugging"
1645
  msgstr "Debuggage"
1646
 
1647
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
- #: templates/debug.php:492
1649
  msgid "Actions"
1650
  msgstr "Actions"
1651
 
@@ -1681,191 +1749,191 @@ msgstr "Chargement des options de la base de données"
1681
  msgid "Set DB Option"
1682
  msgstr "Mise en place des options de la base de données"
1683
 
1684
- #: templates/debug.php:180
1685
  msgid "Key"
1686
  msgstr "Clef"
1687
 
1688
- #: templates/debug.php:181
1689
  msgid "Value"
1690
  msgstr "Valeur"
1691
 
1692
- #: templates/debug.php:197
1693
  msgctxt "as software development kit versions"
1694
  msgid "SDK Versions"
1695
  msgstr "Versions du SDK"
1696
 
1697
- #: templates/debug.php:202
1698
  msgid "SDK Path"
1699
  msgstr "Chemin d'accès du SDK"
1700
 
1701
- #: templates/debug.php203, templates/debug.php:242
1702
  msgid "Module Path"
1703
  msgstr "Chemin d'accès du module"
1704
 
1705
- #: templates/debug.php:204
1706
  msgid "Is Active"
1707
  msgstr "Est actif"
1708
 
1709
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
  msgid "Plugins"
1711
  msgstr "Plugins"
1712
 
1713
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
  msgid "Themes"
1715
  msgstr "Thèmes"
1716
 
1717
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
  #: templates/debug/scheduled-crons.php:80
1719
  msgid "Slug"
1720
  msgstr "Slug"
1721
 
1722
- #: templates/debug.php239, templates/debug.php:450
1723
  msgid "Title"
1724
  msgstr "Titre"
1725
 
1726
- #: templates/debug.php:240
1727
  msgctxt "as application program interface"
1728
  msgid "API"
1729
  msgstr "API"
1730
 
1731
- #: templates/debug.php:241
1732
  msgid "Freemius State"
1733
  msgstr "État de Freemius"
1734
 
1735
- #: templates/debug.php:245
1736
  msgid "Network Blog"
1737
  msgstr "Réseau de Blog"
1738
 
1739
- #: templates/debug.php:246
1740
  msgid "Network User"
1741
  msgstr "Réseau d'Utilisateur"
1742
 
1743
- #: templates/debug.php:283
1744
  msgctxt "as connection was successful"
1745
  msgid "Connected"
1746
  msgstr "Connecté"
1747
 
1748
- #: templates/debug.php:284
1749
  msgctxt "as connection blocked"
1750
  msgid "Blocked"
1751
  msgstr "Bloqué"
1752
 
1753
- #: templates/debug.php:320
1754
  msgid "Simulate Trial Promotion"
1755
  msgstr "Simuler la promotion d'essai"
1756
 
1757
- #: templates/debug.php:332
1758
  msgid "Simulate Network Upgrade"
1759
  msgstr "Simuler la mise à jour du réseau"
1760
 
1761
- #: templates/debug.php:358
1762
  msgid "%s Installs"
1763
  msgstr "%s Installations"
1764
 
1765
- #: templates/debug.php:360
1766
  msgctxt "like websites"
1767
  msgid "Sites"
1768
  msgstr "Sites"
1769
 
1770
- #: templates/debug.php366, templates/account/partials/site.php:148
1771
  msgid "Blog ID"
1772
  msgstr "Blog ID"
1773
 
1774
- #: templates/debug.php431, templates/debug.php509,
1775
- #: templates/account/partials/addon.php:339
1776
  msgctxt "verb"
1777
  msgid "Delete"
1778
  msgstr "Supprimer"
1779
 
1780
- #: templates/debug.php:445
1781
  msgid "Add Ons of module %s"
1782
  msgstr "Add Ons du module %s"
1783
 
1784
- #: templates/debug.php:482
1785
  msgid "Users"
1786
  msgstr "Utilisateurs"
1787
 
1788
- #: templates/debug.php:489
1789
  msgid "Verified"
1790
  msgstr "Vérifié"
1791
 
1792
- #: templates/debug.php:520
1793
  msgid "%s Licenses"
1794
  msgstr "%s Licences"
1795
 
1796
- #: templates/debug.php:525
1797
  msgid "Plugin ID"
1798
  msgstr "ID du plugin"
1799
 
1800
- #: templates/debug.php:527
1801
  msgid "Plan ID"
1802
  msgstr "ID de la formule"
1803
 
1804
- #: templates/debug.php:528
1805
  msgid "Quota"
1806
  msgstr "Quota"
1807
 
1808
- #: templates/debug.php:529
1809
  msgid "Activated"
1810
  msgstr "Activé"
1811
 
1812
- #: templates/debug.php:530
1813
  msgid "Blocking"
1814
  msgstr "Bloquant"
1815
 
1816
- #: templates/debug.php:532
1817
  msgctxt "as expiration date"
1818
  msgid "Expiration"
1819
  msgstr "Expiration"
1820
 
1821
- #: templates/debug.php:555
1822
  msgid "Debug Log"
1823
  msgstr "Debug Log"
1824
 
1825
- #: templates/debug.php:559
1826
  msgid "All Types"
1827
  msgstr "Tous les types"
1828
 
1829
- #: templates/debug.php:566
1830
  msgid "All Requests"
1831
  msgstr "Toutes les demandes"
1832
 
1833
- #: templates/debug.php571, templates/debug.php600,
1834
  #: templates/debug/logger.php:25
1835
  msgid "File"
1836
  msgstr "Fichier"
1837
 
1838
- #: templates/debug.php572, templates/debug.php598,
1839
  #: templates/debug/logger.php:23
1840
  msgid "Function"
1841
  msgstr "Fonction"
1842
 
1843
- #: templates/debug.php:573
1844
  msgid "Process ID"
1845
  msgstr "ID du processus"
1846
 
1847
- #: templates/debug.php:574
1848
  msgid "Logger"
1849
  msgstr "Logger"
1850
 
1851
- #: templates/debug.php575, templates/debug.php599,
1852
  #: templates/debug/logger.php:24
1853
  msgid "Message"
1854
  msgstr "Message"
1855
 
1856
- #: templates/debug.php:577
1857
  msgid "Filter"
1858
  msgstr "Filter"
1859
 
1860
- #: templates/debug.php:585
1861
  msgid "Download"
1862
  msgstr "Téléchargement"
1863
 
1864
- #: templates/debug.php596, templates/debug/logger.php:22
1865
  msgid "Type"
1866
  msgstr "Type"
1867
 
1868
- #: templates/debug.php601, templates/debug/logger.php:26
1869
  msgid "Timestamp"
1870
  msgstr "Timestamp"
1871
 
@@ -1892,53 +1960,53 @@ msgstr "API Freemius"
1892
  msgid "Requests"
1893
  msgstr "Demandes"
1894
 
1895
- #: templates/account/billing.php:28
1896
  msgctxt "verb"
1897
  msgid "Update"
1898
  msgstr "Mise à jour"
1899
 
1900
- #: templates/account/billing.php:39
1901
  msgid "Billing"
1902
  msgstr "Facturation"
1903
 
1904
- #: templates/account/billing.php44, templates/account/billing.php:44
1905
  msgid "Business name"
1906
  msgstr "Raison sociale"
1907
 
1908
- #: templates/account/billing.php45, templates/account/billing.php:45
1909
  msgid "Tax / VAT ID"
1910
  msgstr "Code TVA"
1911
 
1912
- #: templates/account/billing.php48, templates/account/billing.php48,
1913
- #: templates/account/billing.php49, templates/account/billing.php:49
1914
  msgid "Address Line %d"
1915
  msgstr "Adresse ligne %d"
1916
 
1917
- #: templates/account/billing.php52, templates/account/billing.php:52
1918
  msgid "City"
1919
  msgstr "Ville"
1920
 
1921
- #: templates/account/billing.php52, templates/account/billing.php:52
1922
  msgid "Town"
1923
  msgstr "Ville"
1924
 
1925
- #: templates/account/billing.php53, templates/account/billing.php:53
1926
  msgid "ZIP / Postal Code"
1927
  msgstr "Code postal"
1928
 
1929
- #: templates/account/billing.php:308
1930
  msgid "Country"
1931
  msgstr "Pays"
1932
 
1933
- #: templates/account/billing.php:310
1934
  msgid "Select Country"
1935
  msgstr "Choisir le pays"
1936
 
1937
- #: templates/account/billing.php317, templates/account/billing.php:318
1938
  msgid "State"
1939
  msgstr "État"
1940
 
1941
- #: templates/account/billing.php317, templates/account/billing.php:318
1942
  msgid "Province"
1943
  msgstr "Région"
1944
 
@@ -2190,11 +2258,11 @@ msgstr "Annuler"
2190
  msgid "Become an affiliate"
2191
  msgstr "Devenir un affilié"
2192
 
2193
- #: templates/forms/license-activation.php:20
2194
  msgid "Please enter the license key that you received in the email right after the purchase:"
2195
  msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :"
2196
 
2197
- #: templates/forms/license-activation.php:25
2198
  msgid "Update License"
2199
  msgstr "Mettre à jour la licence"
2200
 
@@ -2261,6 +2329,14 @@ msgstr "Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de fo
2261
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
  msgstr "Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité et de fonctionnalités, ainsi que d'être en mesure de contacter le support."
2263
 
 
 
 
 
 
 
 
 
2264
  #: templates/forms/subscription-cancellation.php:103
2265
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
  msgstr "Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf si vous l'activez à nouveau avec une licence premium valide."
@@ -2274,7 +2350,7 @@ msgid "Proceed"
2274
  msgstr "Poursuivre"
2275
 
2276
  #: templates/forms/subscription-cancellation.php191,
2277
- #: templates/forms/deactivation/form.php:150
2278
  msgid "Cancel %s & Proceed"
2279
  msgstr "Annuler %s et poursuivre"
2280
 
@@ -2286,38 +2362,42 @@ msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$
2286
  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."
2287
  msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai."
2288
 
2289
- #: templates/js/style-premium-theme.php:37
2290
  msgid "Premium"
2291
  msgstr "Premium"
2292
 
2293
- #: templates/partials/network-activation.php:23
 
 
 
 
2294
  msgid "Activate license on all sites in the network."
2295
  msgstr "Activer la licence sur tous les sites du réseau."
2296
 
2297
- #: templates/partials/network-activation.php:24
2298
  msgid "Apply on all sites in the network."
2299
  msgstr "Effectuer sur tous les sites dans le réseau."
2300
 
2301
- #: templates/partials/network-activation.php:27
2302
  msgid "Activate license on all pending sites."
2303
  msgstr "Activer la licence sur tous les sites en attente."
2304
 
2305
- #: templates/partials/network-activation.php:28
2306
  msgid "Apply on all pending sites."
2307
  msgstr "Activer sur tous les sites en attente."
2308
 
2309
- #: templates/partials/network-activation.php36,
2310
- #: templates/partials/network-activation.php:68
2311
  msgid "allow"
2312
  msgstr "autoriser"
2313
 
2314
- #: templates/partials/network-activation.php38,
2315
- #: templates/partials/network-activation.php:70
2316
  msgid "delegate"
2317
  msgstr "déléguer"
2318
 
2319
- #: templates/partials/network-activation.php41,
2320
- #: templates/partials/network-activation.php:73
2321
  msgid "skip"
2322
  msgstr "passer"
2323
 
@@ -2343,19 +2423,14 @@ msgstr "%s restante(s)"
2343
  msgid "Last license"
2344
  msgstr "Dernière licence"
2345
 
2346
- #: templates/account/partials/addon.php:115
2347
  msgid "Cancelled"
2348
  msgstr "Annulé"
2349
 
2350
- #: templates/account/partials/addon.php:125
2351
  msgid "No expiration"
2352
  msgstr "Pas d'expiration"
2353
 
2354
- #: templates/account/partials/addon.php264,
2355
- #: templates/account/partials/addon.php:317
2356
- msgid "Activate this add-on"
2357
- msgstr "Activer cet add-on"
2358
-
2359
  #: templates/account/partials/site.php:181
2360
  msgid "Owner Name"
2361
  msgstr "Nom du propriétaire"
@@ -2380,47 +2455,47 @@ msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous
2380
  msgid "Contact Support"
2381
  msgstr "Contacter l'Assistance"
2382
 
2383
- #: templates/forms/deactivation/form.php:59
2384
  msgid "Anonymous feedback"
2385
  msgstr "Commentaire anonyme"
2386
 
2387
- #: templates/forms/deactivation/form.php:66
2388
  msgid "Deactivate"
2389
  msgstr "Désactiver"
2390
 
2391
- #: templates/forms/deactivation/form.php:68
2392
  msgid "Activate %s"
2393
  msgstr "Activer %s"
2394
 
2395
- #: templates/forms/deactivation/form.php:80
2396
  msgid "Quick Feedback"
2397
  msgstr "Commentaires rapides"
2398
 
2399
- #: templates/forms/deactivation/form.php:84
2400
  msgid "If you have a moment, please let us know why you are %s"
2401
  msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s"
2402
 
2403
- #: templates/forms/deactivation/form.php:84
2404
  msgid "deactivating"
2405
  msgstr "Désactivation"
2406
 
2407
- #: templates/forms/deactivation/form.php:84
2408
  msgid "switching"
2409
  msgstr "Changement"
2410
 
2411
- #: templates/forms/deactivation/form.php:332
2412
  msgid "Submit & %s"
2413
  msgstr "Envoyer & %s"
2414
 
2415
- #: templates/forms/deactivation/form.php:353
2416
  msgid "Kindly tell us the reason so we can improve."
2417
  msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2418
 
2419
- #: templates/forms/deactivation/form.php:478
2420
  msgid "Yes - %s"
2421
  msgstr "Oui - %s"
2422
 
2423
- #: templates/forms/deactivation/form.php:485
2424
  msgid "Skip & %s"
2425
  msgstr "Passer & %s"
2426
 
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-06-05 13:40+0000\n"
11
  "Last-Translator: Boris Colombier <transifex.com@wba.fr>\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.php1838, templates/account.php:769
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:1845
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:2053
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:2055
37
  msgid "Error"
38
  msgstr "Erreur"
39
 
40
+ #: includes/class-freemius.php:2445
41
  msgid "I found a better %s"
42
  msgstr "J'ai trouvé un meilleur %s"
43
 
44
+ #: includes/class-freemius.php:2447
45
  msgid "What's the %s's name?"
46
  msgstr "Quel est le nom du %s ?"
47
 
48
+ #: includes/class-freemius.php:2453
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:2455
53
  msgid "Deactivation"
54
  msgstr "Désactivation"
55
 
56
+ #: includes/class-freemius.php:2456
57
  msgid "Theme Switch"
58
  msgstr "Changement de Thème"
59
 
60
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
61
  msgid "Other"
62
  msgstr "Autre"
63
 
64
+ #: includes/class-freemius.php:2473
65
  msgid "I no longer need the %s"
66
  msgstr "Je n'ai plus besoin du %s"
67
 
68
+ #: includes/class-freemius.php:2480
69
  msgid "I only needed the %s for a short period"
70
  msgstr "Je n'ai besoin de %s que pour une courte période"
71
 
72
+ #: includes/class-freemius.php:2486
73
  msgid "The %s broke my site"
74
  msgstr "Le %s a cassé mon site"
75
 
76
+ #: includes/class-freemius.php:2493
77
  msgid "The %s suddenly stopped working"
78
  msgstr "Le %s a soudainement arrêté de fonctionner"
79
 
80
+ #: includes/class-freemius.php:2503
81
  msgid "I can't pay for it anymore"
82
  msgstr "Je ne peux plus payer pour ça"
83
 
84
+ #: includes/class-freemius.php:2505
85
  msgid "What price would you feel comfortable paying?"
86
  msgstr "Quel prix seriez-vous prêt à payer ?"
87
 
88
+ #: includes/class-freemius.php:2511
89
  msgid "I don't like to share my information with you"
90
  msgstr "Je ne veux pas partager mes informations avec vous"
91
 
92
+ #: includes/class-freemius.php:2532
93
  msgid "The %s didn't work"
94
  msgstr "Le %s n'a pas fonctionné"
95
 
96
+ #: includes/class-freemius.php:2542
97
  msgid "I couldn't understand how to make it work"
98
  msgstr "Je ne comprends pas comment le faire fonctionner"
99
 
100
+ #: includes/class-freemius.php:2550
101
  msgid "The %s is great, but I need specific feature that you don't support"
102
  msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
103
 
104
+ #: includes/class-freemius.php:2552
105
  msgid "What feature?"
106
  msgstr "Quelle fonctionnalité ?"
107
 
108
+ #: includes/class-freemius.php:2556
109
  msgid "The %s is not working"
110
  msgstr "Le %s ne fonctionne pas"
111
 
112
+ #: includes/class-freemius.php:2558
113
  msgid "Kindly share what didn't work so we can fix it for future users..."
114
  msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
115
 
116
+ #: includes/class-freemius.php:2562
117
  msgid "It's not what I was looking for"
118
  msgstr "Ce n'est pas ce que je recherche"
119
 
120
+ #: includes/class-freemius.php:2564
121
  msgid "What you've been looking for?"
122
  msgstr "Que recherchez-vous ?"
123
 
124
+ #: includes/class-freemius.php:2568
125
  msgid "The %s didn't work as expected"
126
  msgstr "Le %s n'a pas fonctionné comme prévu"
127
 
128
+ #: includes/class-freemius.php:2570
129
  msgid "What did you expect?"
130
  msgstr "À quoi vous attendiez-vous ?"
131
 
132
+ #: includes/class-freemius.php3425, templates/debug.php:20
133
  msgid "Freemius Debug"
134
  msgstr "Débuggage Freemius"
135
 
136
+ #: includes/class-freemius.php:4177
137
  msgid "I don't know what is cURL or how to install it, help me!"
138
  msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
139
 
140
+ #: includes/class-freemius.php:4179
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 "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."
143
 
144
+ #: includes/class-freemius.php:4186
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 "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."
147
 
148
+ #: includes/class-freemius.php:4291
149
  msgid "Yes - do your thing"
150
  msgstr "Oui - allez-y"
151
 
152
+ #: includes/class-freemius.php:4296
153
  msgid "No - just deactivate"
154
  msgstr "Non - désactivation seulement"
155
 
156
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
157
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
158
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
159
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
160
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
161
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
162
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
163
  msgctxt "exclamation"
164
  msgid "Oops"
165
  msgstr "Oups"
166
 
167
+ #: includes/class-freemius.php:4410
168
  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."
169
  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."
170
 
171
+ #: includes/class-freemius.php:4847
172
  msgctxt "addonX cannot run without pluginY"
173
  msgid "%s cannot run without %s."
174
  msgstr "%s ne peut pas fonctionner sans %s."
175
 
176
+ #: includes/class-freemius.php:4848
177
  msgctxt "addonX cannot run..."
178
  msgid "%s cannot run without the plugin."
179
  msgstr "%s ne peut pas fonctionner sans le plugin."
180
 
181
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
182
+ #: includes/class-freemius.php:19475
183
  msgid "Unexpected API error. Please contact the %s's author with the following error."
184
  msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
185
 
186
+ #: includes/class-freemius.php:5687
187
  msgid "Premium %s version was successfully activated."
188
  msgstr "La version premium de %s a été activée avec succès."
189
 
190
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
191
  msgctxt ""
192
  msgid "W00t"
193
  msgstr "Génial"
194
 
195
+ #: includes/class-freemius.php:5714
196
  msgid "You have a %s license."
197
  msgstr "Vous avez une license pour %s."
198
 
199
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
200
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
201
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
202
+ #: includes/class-freemius.php:19229
203
  msgctxt "interjection expressing joy or exuberance"
204
  msgid "Yee-haw"
205
  msgstr "Youpi"
206
 
207
+ #: includes/class-freemius.php:5982
208
  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."
209
  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."
210
 
211
+ #: includes/class-freemius.php:5986
212
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
213
  msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
214
 
215
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
216
+ #: templates/account/partials/addon.php:343
217
  msgid "More information about %s"
218
  msgstr "Plus d'informations à propos de %s"
219
 
220
+ #: includes/class-freemius.php:5996
221
  msgid "Purchase License"
222
  msgstr "Acheter une licence"
223
 
224
+ #: includes/class-freemius.php6931, templates/connect.php:163
225
  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."
226
  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."
227
 
228
+ #: includes/class-freemius.php:6935
229
  msgid "start the trial"
230
  msgstr "commencer la période d'essai"
231
 
232
+ #: includes/class-freemius.php6936, templates/connect.php:167
233
  msgid "complete the install"
234
  msgstr "compléter l'installation"
235
 
236
+ #: includes/class-freemius.php:7049
237
  msgid "You are just one step away - %s"
238
  msgstr "Il ne reste qu'une étape - %s"
239
 
240
+ #: includes/class-freemius.php:7052
241
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
242
  msgid "Complete \"%s\" Activation Now"
243
  msgstr "Compléter \"%s\" Activer Maintenant"
244
 
245
+ #: includes/class-freemius.php:7130
246
  msgid "We made a few tweaks to the %s, %s"
247
  msgstr "Nous avons fait quelques modifications au %s, %s"
248
 
249
+ #: includes/class-freemius.php:7134
250
  msgid "Opt in to make \"%s\" better!"
251
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
252
 
253
+ #: includes/class-freemius.php:7566
254
  msgid "The upgrade of %s was successfully completed."
255
  msgstr "La mise à jour du %s s'est terminée avec succès "
256
 
257
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
258
+ #: includes/class-fs-plugin-updater.php1170,
259
+ #: includes/class-fs-plugin-updater.php1177,
260
  #: templates/auto-installation.php:32
261
  msgid "Add-On"
262
  msgstr "Add-On"
263
 
264
+ #: includes/class-freemius.php9730, templates/account.php313,
265
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
266
  msgid "Plugin"
267
  msgstr "Plugin"
268
 
269
+ #: includes/class-freemius.php9731, templates/account.php314,
270
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
271
+ #: templates/forms/deactivation/form.php:71
272
  msgid "Theme"
273
  msgstr "Thème"
274
 
275
+ #: includes/class-freemius.php:12148
276
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
277
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
278
+
279
+ #: includes/class-freemius.php:12549
280
  msgid "Invalid site details collection."
281
  msgstr "Récupération des détails du site non valide."
282
 
283
+ #: includes/class-freemius.php:12669
284
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
285
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
286
 
287
+ #: includes/class-freemius.php:12671
288
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
289
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
290
 
291
+ #: includes/class-freemius.php:12945
292
  msgid "Account is pending activation."
293
  msgstr "Compte en cours d'activation."
294
 
295
+ #: includes/class-freemius.php13057,
296
  #: templates/forms/premium-versions-upgrade-handler.php:47
297
  msgid "Buy a license now"
298
  msgstr "Acheter une licence maintenant"
299
 
300
+ #: includes/class-freemius.php13069,
301
  #: templates/forms/premium-versions-upgrade-handler.php:46
302
  msgid "Renew your license now"
303
  msgstr "Renouvelez votre licence maintenant"
304
 
305
+ #: includes/class-freemius.php:13073
306
  msgid "%s to access version %s security & feature updates, and support."
307
  msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
308
 
309
+ #: includes/class-freemius.php:15448
310
  msgid "%s activation was successfully completed."
311
  msgstr "L'activation de %s s'est terminée avec succès."
312
 
313
+ #: includes/class-freemius.php:15462
314
  msgid "Your account was successfully activated with the %s plan."
315
  msgstr "Votre compte a été activé avec succès avec la formule %s."
316
 
317
+ #: includes/class-freemius.php15473, includes/class-freemius.php:19061
318
  msgid "Your trial has been successfully started."
319
  msgstr "Votre période d'essai a bien démarré."
320
 
321
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
322
+ #: includes/class-freemius.php:16297
323
  msgid "Couldn't activate %s."
324
  msgstr "Impossible d'activer %s."
325
 
326
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
327
+ #: includes/class-freemius.php:16298
328
  msgid "Please contact us with the following message:"
329
  msgstr "Merci de nous contacter avec le message suivant :"
330
 
331
+ #: includes/class-freemius.php:16128
332
+ msgid "An unknown error has occurred."
333
+ msgstr "An unknown error has occurred."
334
+
335
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
336
  msgid "Upgrade"
337
  msgstr "Mise à jour"
338
 
339
+ #: includes/class-freemius.php:16661
340
  msgid "Start Trial"
341
  msgstr "Essai gratuit"
342
 
343
+ #: includes/class-freemius.php:16663
344
  msgid "Pricing"
345
  msgstr "Tarifs"
346
 
347
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
348
  msgid "Affiliation"
349
  msgstr "Affiliation"
350
 
351
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
352
+ #: templates/account.php177, templates/debug.php:326
353
  msgid "Account"
354
  msgstr "Compte"
355
 
356
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
357
  #: includes/customizer/class-fs-customizer-support-section.php:60
358
  msgid "Contact Us"
359
  msgstr "Contactez Nous"
360
 
361
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
362
+ #: includes/class-freemius.php21423, templates/account.php105,
363
+ #: templates/account/partials/addon.php:45
364
  msgid "Add-Ons"
365
  msgstr "Add-Ons"
366
 
367
+ #: includes/class-freemius.php:16835
368
  msgctxt "ASCII arrow left icon"
369
  msgid "&#x2190;"
370
  msgstr "&#x2190;"
371
 
372
+ #: includes/class-freemius.php:16835
373
  msgctxt "ASCII arrow right icon"
374
  msgid "&#x27a4;"
375
  msgstr "&#x27a4;"
376
 
377
+ #: includes/class-freemius.php16837, templates/pricing.php:102
378
  msgctxt "noun"
379
  msgid "Pricing"
380
  msgstr "Tarifs"
381
 
382
+ #: includes/class-freemius.php17050,
383
  #: includes/customizer/class-fs-customizer-support-section.php:67
384
  msgid "Support Forum"
385
  msgstr "Forum de Support"
386
 
387
+ #: includes/class-freemius.php:17995
388
  msgid "Your email has been successfully verified - you are AWESOME!"
389
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
390
 
391
+ #: includes/class-freemius.php:17996
392
  msgctxt "a positive response"
393
  msgid "Right on"
394
  msgstr "Directement"
395
 
396
+ #: includes/class-freemius.php:18660
397
  msgid "Your %s Add-on plan was successfully upgraded."
398
  msgstr "Votre Add-on %s a bien été mis à jour."
399
 
400
+ #: includes/class-freemius.php:18662
401
  msgid "%s Add-on was successfully purchased."
402
  msgstr "L'Add-on %s a bien été acheté."
403
 
404
+ #: includes/class-freemius.php:18665
405
  msgid "Download the latest version"
406
  msgstr "Télécharger la dernière version"
407
 
408
+ #: includes/class-freemius.php:18751
409
+ 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"
410
+ 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"
 
411
 
412
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
413
+ #: includes/class-freemius.php:19277
414
  msgid "Error received from the server:"
415
  msgstr "Une erreur a été reçu depuis le serveur :"
416
 
417
+ #: includes/class-freemius.php:18767
418
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
419
  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."
420
 
421
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
422
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
423
  msgctxt ""
424
  msgid "Hmm"
425
  msgstr "Hmm"
426
 
427
+ #: includes/class-freemius.php:18974
428
  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."
429
  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é."
430
 
431
+ #: includes/class-freemius.php18975, templates/account.php107,
432
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
433
  msgctxt "trial period"
434
  msgid "Trial"
435
  msgstr "Période d'essai"
436
 
437
+ #: includes/class-freemius.php:18980
438
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
439
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
440
 
441
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
442
  msgid "Please contact us here"
443
  msgstr "Merci de nous contacter ici"
444
 
445
+ #: includes/class-freemius.php:18995
446
+ msgid "Your plan was successfully activated."
447
+ msgstr "Your plan was successfully activated."
448
+
449
+ #: includes/class-freemius.php:18996
450
  msgid "Your plan was successfully upgraded."
451
  msgstr "Votre formule a bien été mise à jour."
452
 
453
+ #: includes/class-freemius.php:19013
454
  msgid "Your plan was successfully changed to %s."
455
  msgstr "Votre formule a bien été modifié vers %s. "
456
 
457
+ #: includes/class-freemius.php:19029
458
  msgid "Your license has expired. You can still continue using the free %s forever."
459
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
460
 
461
+ #: includes/class-freemius.php:19031
462
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
463
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
464
 
465
+ #: includes/class-freemius.php:19039
466
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
467
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
468
 
469
+ #: includes/class-freemius.php:19052
470
  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."
471
  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."
472
 
473
+ #: includes/class-freemius.php:19075
474
  msgid "Your free trial has expired. You can still continue using all our free features."
475
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
476
 
477
+ #: includes/class-freemius.php:19077
478
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
479
  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."
480
 
481
+ #: includes/class-freemius.php:19184
482
  msgid "It looks like the license could not be activated."
483
  msgstr "Il semble que la licence ne puisse être activée."
484
 
485
+ #: includes/class-freemius.php:19226
486
  msgid "Your license was successfully activated."
487
  msgstr "Votre licence a bien été activée."
488
 
489
+ #: includes/class-freemius.php:19252
490
  msgid "It looks like your site currently doesn't have an active license."
491
  msgstr "Il semble que votre site n'ait pas de licence active."
492
 
493
+ #: includes/class-freemius.php:19276
494
  msgid "It looks like the license deactivation failed."
495
  msgstr "Il semble que la désactivation de la licence a échoué."
496
 
497
+ #: includes/class-freemius.php:19304
498
  msgid "Your license was successfully deactivated, you are back to the %s plan."
499
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
500
 
501
+ #: includes/class-freemius.php:19305
502
  msgid "O.K"
503
  msgstr "O.K"
504
 
505
+ #: includes/class-freemius.php:19358
506
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
507
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
508
 
509
+ #: includes/class-freemius.php:19367
510
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
511
  msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
512
 
513
+ #: includes/class-freemius.php:19409
514
  msgid "You are already running the %s in a trial mode."
515
  msgstr "Vous utilisez déjà le %s en période d'essai. "
516
 
517
+ #: includes/class-freemius.php:19420
518
  msgid "You already utilized a trial before."
519
  msgstr "Vous avez déjà utilisé la période d'essai."
520
 
521
+ #: includes/class-freemius.php:19434
522
  msgid "Plan %s do not exist, therefore, can't start a trial."
523
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
524
 
525
+ #: includes/class-freemius.php:19445
526
  msgid "Plan %s does not support a trial period."
527
  msgstr "La formule %s ne propose pas de période d'essai."
528
 
529
+ #: includes/class-freemius.php:19456
530
  msgid "None of the %s's plans supports a trial period."
531
  msgstr "Aucune formule du %s ne propose de période d'essai."
532
 
533
+ #: includes/class-freemius.php:19506
534
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
535
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
536
 
537
+ #: includes/class-freemius.php:19542
538
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
539
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
540
 
541
+ #: includes/class-freemius.php:19561
542
  msgid "Your %s free trial was successfully cancelled."
543
  msgstr "Votre période d'essai %s a bien été annulé."
544
 
545
+ #: includes/class-freemius.php:19877
546
  msgid "Version %s was released."
547
  msgstr "La version %s vient d'être publiée."
548
 
549
+ #: includes/class-freemius.php:19877
550
  msgid "Please download %s."
551
  msgstr "Merci de télécharger %s."
552
 
553
+ #: includes/class-freemius.php:19884
554
  msgid "the latest %s version here"
555
  msgstr "la dernière version de %s ici"
556
 
557
+ #: includes/class-freemius.php:19889
558
  msgid "New"
559
  msgstr "Nouveau"
560
 
561
+ #: includes/class-freemius.php:19894
562
  msgid "Seems like you got the latest release."
563
  msgstr "Il semble que vous ayez la dernière version."
564
 
565
+ #: includes/class-freemius.php:19895
566
  msgid "You are all good!"
567
  msgstr "Vous êtes tout bon !"
568
 
569
+ #: includes/class-freemius.php:20165
570
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
571
  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."
572
 
573
+ #: includes/class-freemius.php:20304
574
  msgid "Site successfully opted in."
575
  msgstr "Site ajouté avec succès."
576
 
577
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
578
  msgid "Awesome"
579
  msgstr "Formidable"
580
 
581
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
582
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
583
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
584
 
585
+ #: includes/class-freemius.php:20322
586
  msgid "Thank you!"
587
  msgstr "Merci !"
588
 
589
+ #: includes/class-freemius.php:20329
590
  msgid "We will no longer be sending any usage data of %s on %s to %s."
591
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
592
 
593
+ #: includes/class-freemius.php:20458
594
  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."
595
  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."
596
 
597
+ #: includes/class-freemius.php:20464
598
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
599
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
600
 
601
+ #: includes/class-freemius.php:20469
602
  msgid "%s is the new owner of the account."
603
  msgstr "%s est le nouveau propriétaire du compte."
604
 
605
+ #: includes/class-freemius.php:20471
606
  msgctxt "as congratulations"
607
  msgid "Congrats"
608
  msgstr "Félicitations"
609
 
610
+ #: includes/class-freemius.php:20491
611
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
612
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
613
 
614
+ #: includes/class-freemius.php:20492
615
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
616
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
617
 
618
+ #: includes/class-freemius.php:20499
619
  msgid "Change Ownership"
620
  msgstr "Changement De Propriétaire"
621
 
622
+ #: includes/class-freemius.php:20507
623
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
624
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
625
 
626
+ #: includes/class-freemius.php:20519
627
  msgid "Please provide your full name."
628
  msgstr "Merci d'indiquer vos prénom et nom."
629
 
630
+ #: includes/class-freemius.php:20524
631
  msgid "Your name was successfully updated."
632
  msgstr "Votre nom a été mis à jour."
633
 
634
+ #: includes/class-freemius.php:20585
635
  msgid "You have successfully updated your %s."
636
  msgstr "Votre %s a bien été mis à jour."
637
 
638
+ #: includes/class-freemius.php:20725
639
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
640
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
641
 
642
+ #: includes/class-freemius.php:20726
643
  msgctxt "advance notice of something that will need attention."
644
  msgid "Heads up"
645
  msgstr "Avertissement"
646
 
647
+ #: includes/class-freemius.php:21165
648
  msgctxt "exclamation"
649
  msgid "Hey"
650
  msgstr "Hey"
651
 
652
+ #: includes/class-freemius.php:21165
653
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
654
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
655
 
656
+ #: includes/class-freemius.php:21173
657
  msgid "No commitment for %s days - cancel anytime!"
658
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
659
 
660
+ #: includes/class-freemius.php:21174
661
  msgid "No credit card required"
662
  msgstr "Pas besoin de carte bancaire"
663
 
664
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
665
  msgctxt "call to action"
666
  msgid "Start free trial"
667
  msgstr "Commencer l'essai gratuit"
668
 
669
+ #: includes/class-freemius.php:21258
670
  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!"
671
  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 !"
672
 
673
+ #: includes/class-freemius.php:21267
674
  msgid "Learn more"
675
  msgstr "En savoir plus"
676
 
677
+ #: includes/class-freemius.php21447, templates/account.php474,
678
+ #: templates/account.php595, templates/connect.php171,
679
+ #: templates/connect.php421, templates/forms/license-activation.php25,
680
+ #: templates/account/partials/addon.php:287
681
  msgid "Activate License"
682
  msgstr "Activer la licence"
683
 
684
+ #: includes/class-freemius.php21448, templates/account.php543,
685
+ #: templates/account.php594, templates/account/partials/site.php:256
686
  msgid "Change License"
687
  msgstr "Changer la licence"
688
 
689
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
690
  msgid "Opt Out"
691
  msgstr "Désinscription"
692
 
693
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
694
  #: templates/account/partials/site.php43,
695
  #: templates/account/partials/site.php:161
696
  msgid "Opt In"
697
  msgstr "Inscription"
698
 
699
+ #: includes/class-freemius.php:21775
700
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
701
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
702
 
703
+ #: includes/class-freemius.php:21783
704
  msgid "Activate %s features"
705
  msgstr "Activer les fonctionnalités %s"
706
 
707
+ #: includes/class-freemius.php:21796
708
  msgid "Please follow these steps to complete the upgrade"
709
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
710
 
711
+ #: includes/class-freemius.php:21800
712
  msgid "Download the latest %s version"
713
  msgstr "Télécharger la dernière version %s"
714
 
715
+ #: includes/class-freemius.php:21804
716
  msgid "Upload and activate the downloaded version"
717
  msgstr "Téléverser et activer la version téléchargée"
718
 
719
+ #: includes/class-freemius.php:21806
720
  msgid "How to upload and activate?"
721
  msgstr "Comment téléverser et activer ?"
722
 
723
+ #: includes/class-freemius.php:21940
724
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
725
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
726
 
727
+ #: includes/class-freemius.php:22101
728
  msgid "Auto installation only works for opted-in users."
729
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
730
 
731
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
732
+ #: includes/class-fs-plugin-updater.php1149,
733
+ #: includes/class-fs-plugin-updater.php:1163
734
  msgid "Invalid module ID."
735
  msgstr "ID du module non valide."
736
 
737
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
738
  msgid "Premium version already active."
739
  msgstr "Version premium déjà active."
740
 
741
+ #: includes/class-freemius.php:22127
742
  msgid "You do not have a valid license to access the premium version."
743
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
744
 
745
+ #: includes/class-freemius.php:22134
746
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
747
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
748
 
749
+ #: includes/class-freemius.php22152, includes/class-fs-plugin-updater.php:1184
750
  msgid "Premium add-on version already installed."
751
  msgstr "La version premium de l'add-on est déjà installée."
752
 
753
+ #: includes/class-freemius.php:22497
754
  msgid "View paid features"
755
  msgstr "Voir les fonctionnalités payantes"
756
 
757
+ #: includes/class-freemius.php:22819
758
  msgid "Thank you so much for using %s and its add-ons!"
759
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
760
 
761
+ #: includes/class-freemius.php:22820
762
  msgid "Thank you so much for using %s!"
763
  msgstr "Merci beaucoup d'utiliser %s !"
764
 
765
+ #: includes/class-freemius.php:22826
766
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
767
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
768
 
769
+ #: includes/class-freemius.php:22830
770
  msgid "Thank you so much for using our products!"
771
  msgstr "Merci beaucoup d'utiliser nos produits !"
772
 
773
+ #: includes/class-freemius.php:22831
774
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
775
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
776
 
777
+ #: includes/class-freemius.php:22850
778
  msgid "%s and its add-ons"
779
  msgstr "%s et ses add-ons"
780
 
781
+ #: includes/class-freemius.php:22859
782
  msgid "Products"
783
  msgstr "Produits"
784
 
785
+ #: includes/class-freemius.php22866, templates/connect.php:272
786
  msgid "Yes"
787
  msgstr "Oui"
788
 
789
+ #: includes/class-freemius.php22867, templates/connect.php:273
790
  msgid "send me security & feature updates, educational content and offers."
791
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
792
 
793
+ #: includes/class-freemius.php22868, templates/connect.php:278
794
  msgid "No"
795
  msgstr "Non"
796
 
797
+ #: includes/class-freemius.php22870, templates/connect.php:280
798
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
799
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
800
 
801
+ #: includes/class-freemius.php:22880
802
+ 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 :-)"
803
+ 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 :-)"
804
 
805
+ #: includes/class-freemius.php22882, templates/connect.php:287
806
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
807
  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 :"
808
 
809
+ #: includes/class-freemius.php:23164
810
  msgid "License key is empty."
811
  msgstr "La clé de licence est vide."
812
 
820
  msgid "Buy license"
821
  msgstr "Acheter une licence"
822
 
823
+ #: includes/class-fs-plugin-updater.php280,
824
+ #: includes/class-fs-plugin-updater.php:313
825
  msgid "There is a %s of %s available."
826
  msgstr "Il y a une %s de %s disponible."
827
 
828
+ #: includes/class-fs-plugin-updater.php282,
829
+ #: includes/class-fs-plugin-updater.php:318
830
+ msgid "new Beta version"
831
+ msgstr "new Beta version"
832
+
833
+ #: includes/class-fs-plugin-updater.php283,
834
+ #: includes/class-fs-plugin-updater.php:319
835
  msgid "new version"
836
  msgstr "Nouvelle version"
837
 
838
+ #: includes/class-fs-plugin-updater.php:342
839
  msgid "Important Upgrade Notice:"
840
  msgstr "Information importante de mise à jour :"
841
 
842
+ #: includes/class-fs-plugin-updater.php:1214
843
  msgid "Installing plugin: %s"
844
  msgstr "Installation du plugin : %s"
845
 
846
+ #: includes/class-fs-plugin-updater.php:1255
847
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
848
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
849
 
850
+ #: includes/class-fs-plugin-updater.php:1437
851
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
852
  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."
853
 
854
+ #: includes/fs-plugin-info-dialog.php:509
855
+ msgid "Purchase More"
856
+ msgstr "Purchase More"
857
+
858
+ #: includes/fs-plugin-info-dialog.php510,
859
+ #: templates/account/partials/addon.php:347
860
  msgctxt "verb"
861
  msgid "Purchase"
862
  msgstr "Acheter"
863
 
864
+ #: includes/fs-plugin-info-dialog.php:514
865
  msgid "Start my free %s"
866
  msgstr "Commencer ma %s gratuite"
867
 
868
+ #: includes/fs-plugin-info-dialog.php:712
869
+ msgid "Install Free Version Update Now"
870
+ msgstr "Installer la dernière mise à jour gratuite maintenant"
871
+
872
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
873
+ msgid "Install Update Now"
874
+ msgstr "Installer la mise à jour maintenant"
875
+
876
+ #: includes/fs-plugin-info-dialog.php:722
877
  msgid "Install Free Version Now"
878
  msgstr "Installer la version gratuite maintenant"
879
 
880
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
881
+ #: templates/auto-installation.php111,
882
+ #: templates/account/partials/addon.php327,
883
+ #: templates/account/partials/addon.php:379
884
  msgid "Install Now"
885
  msgstr "Installer maintenant"
886
 
887
+ #: includes/fs-plugin-info-dialog.php:739
888
  msgctxt "as download latest version"
889
  msgid "Download Latest Free Version"
890
  msgstr "Télécharger la dernière version gratuite"
891
 
892
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
893
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
894
  msgctxt "as download latest version"
895
  msgid "Download Latest"
896
  msgstr "Télécharger la dernière version"
897
 
898
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
899
+ #: templates/account/partials/addon.php318,
900
+ #: templates/account/partials/addon.php:373
901
+ msgid "Activate this add-on"
902
+ msgstr "Activer cet add-on"
 
 
 
 
 
 
 
 
 
 
903
 
904
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
905
+ msgid "Activate Free Version"
906
+ msgstr "Activez la version gratuite"
907
 
908
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
909
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
910
+ msgid "Activate"
911
+ msgstr "Activer"
912
 
913
+ #: includes/fs-plugin-info-dialog.php:968
914
  msgctxt "Plugin installer section title"
915
  msgid "Description"
916
  msgstr "Description"
917
 
918
+ #: includes/fs-plugin-info-dialog.php:969
919
  msgctxt "Plugin installer section title"
920
  msgid "Installation"
921
  msgstr "Installation"
922
 
923
+ #: includes/fs-plugin-info-dialog.php:970
924
  msgctxt "Plugin installer section title"
925
  msgid "FAQ"
926
  msgstr "FAQ"
927
 
928
+ #: includes/fs-plugin-info-dialog.php971,
929
  #: templates/plugin-info/description.php:55
930
  msgid "Screenshots"
931
  msgstr "Captures d'écran"
932
 
933
+ #: includes/fs-plugin-info-dialog.php:972
934
  msgctxt "Plugin installer section title"
935
  msgid "Changelog"
936
  msgstr "Changelog"
937
 
938
+ #: includes/fs-plugin-info-dialog.php:973
939
  msgctxt "Plugin installer section title"
940
  msgid "Reviews"
941
  msgstr "Commentaires"
942
 
943
+ #: includes/fs-plugin-info-dialog.php:974
944
  msgctxt "Plugin installer section title"
945
  msgid "Other Notes"
946
  msgstr "Autres Informations"
947
 
948
+ #: includes/fs-plugin-info-dialog.php:989
949
  msgctxt "Plugin installer section title"
950
  msgid "Features & Pricing"
951
  msgstr "Fonctionnalités & Tarifs"
952
 
953
+ #: includes/fs-plugin-info-dialog.php:999
954
  msgid "Plugin Install"
955
  msgstr "Installation du Plugin"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:1071
958
  msgctxt "e.g. Professional Plan"
959
  msgid "%s Plan"
960
  msgstr "Formule %s"
961
 
962
+ #: includes/fs-plugin-info-dialog.php:1097
963
  msgctxt "e.g. the best product"
964
  msgid "Best"
965
  msgstr "Best"
966
 
967
+ #: includes/fs-plugin-info-dialog.php1103,
968
+ #: includes/fs-plugin-info-dialog.php:1123
969
  msgctxt "as every month"
970
  msgid "Monthly"
971
  msgstr "Mensuel"
972
 
973
+ #: includes/fs-plugin-info-dialog.php:1106
974
  msgctxt "as once a year"
975
  msgid "Annual"
976
  msgstr "Annuel"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1109
979
  msgid "Lifetime"
980
  msgstr "À vie"
981
 
982
+ #: includes/fs-plugin-info-dialog.php1123,
983
+ #: includes/fs-plugin-info-dialog.php1125,
984
+ #: includes/fs-plugin-info-dialog.php:1127
985
  msgctxt "e.g. billed monthly"
986
  msgid "Billed %s"
987
  msgstr "%s Facturé"
988
 
989
+ #: includes/fs-plugin-info-dialog.php:1125
990
  msgctxt "as once a year"
991
  msgid "Annually"
992
  msgstr "Annuel"
993
 
994
+ #: includes/fs-plugin-info-dialog.php:1127
995
  msgctxt "as once a year"
996
  msgid "Once"
997
  msgstr "Une fois"
998
 
999
+ #: includes/fs-plugin-info-dialog.php:1133
1000
  msgid "Single Site License"
1001
  msgstr "Licence 1 site"
1002
 
1003
+ #: includes/fs-plugin-info-dialog.php:1135
1004
  msgid "Unlimited Licenses"
1005
  msgstr "Licences sites illimités"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1137
1008
  msgid "Up to %s Sites"
1009
  msgstr "Jusqu'à %s Sites"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php1147,
1012
  #: templates/plugin-info/features.php:82
1013
  msgctxt "as monthly period"
1014
  msgid "mo"
1015
  msgstr "mois"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php1154,
1018
  #: templates/plugin-info/features.php:80
1019
  msgctxt "as annual period"
1020
  msgid "year"
1021
  msgstr "année"
1022
 
1023
+ #: includes/fs-plugin-info-dialog.php:1208
1024
  msgctxt "noun"
1025
  msgid "Price"
1026
  msgstr "Tarif"
1027
 
1028
+ #: includes/fs-plugin-info-dialog.php:1256
1029
  msgid "Save %s"
1030
  msgstr "Économisez %s"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1266
1033
  msgid "No commitment for %s - cancel anytime"
1034
  msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1035
 
1036
+ #: includes/fs-plugin-info-dialog.php:1269
1037
  msgid "After your free %s, pay as little as %s"
1038
  msgstr "Après vos %s gratuits, payez seulement %s"
1039
 
1040
+ #: includes/fs-plugin-info-dialog.php:1280
1041
  msgid "Details"
1042
  msgstr "Détails"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1045
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1046
+ #: templates/account/partials/addon.php:36
1047
  msgctxt "product version"
1048
  msgid "Version"
1049
  msgstr "Version"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1291
1052
  msgctxt "as the plugin author"
1053
  msgid "Author"
1054
  msgstr "Auteur"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php:1298
1057
  msgid "Last Updated"
1058
  msgstr "Dernière mise à jour"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1061
  msgctxt "x-ago"
1062
  msgid "%s ago"
1063
  msgstr "Il y a %s"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php:1312
1066
  msgid "Requires WordPress Version"
1067
  msgstr "Version de WordPress requise"
1068
 
1069
+ #: includes/fs-plugin-info-dialog.php:1313
1070
  msgid "%s or higher"
1071
  msgstr "%s ou plus"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1320
1074
  msgid "Compatible up to"
1075
  msgstr "Compatible jusqu'à"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1328
1078
  msgid "Downloaded"
1079
  msgstr "Téléchargé"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1332
1082
  msgid "%s time"
1083
  msgstr "%s fois"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1334
1086
  msgid "%s times"
1087
  msgstr "%s fois"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php:1344
1090
  msgid "WordPress.org Plugin Page"
1091
  msgstr "Page WordPress.org du plugin"
1092
 
1093
+ #: includes/fs-plugin-info-dialog.php:1352
1094
  msgid "Plugin Homepage"
1095
  msgstr "Site Web du plugin"
1096
 
1097
+ #: includes/fs-plugin-info-dialog.php1360,
1098
+ #: includes/fs-plugin-info-dialog.php:1442
1099
  msgid "Donate to this plugin"
1100
  msgstr "Faire une donation pour ce plugin"
1101
 
1102
+ #: includes/fs-plugin-info-dialog.php:1367
1103
  msgid "Average Rating"
1104
  msgstr "Note moyenne"
1105
 
1106
+ #: includes/fs-plugin-info-dialog.php:1374
1107
  msgid "based on %s"
1108
  msgstr "Basé sur %s"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1378
1111
  msgid "%s rating"
1112
  msgstr "%s notation"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1380
1115
  msgid "%s ratings"
1116
  msgstr "%snotations "
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1395
1119
  msgid "%s star"
1120
  msgstr "%s étoile"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1397
1123
  msgid "%s stars"
1124
  msgstr "%s étoiles"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1408
1127
  msgid "Click to see reviews that provided a rating of %s"
1128
  msgstr "Cliquez pour voir les avis avec une notation de %s"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1421
1131
  msgid "Contributors"
1132
  msgstr "Contributeurs"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php1450,
1135
+ #: includes/fs-plugin-info-dialog.php:1452
1136
  msgid "Warning"
1137
  msgstr "Attention"
1138
 
1139
+ #: includes/fs-plugin-info-dialog.php:1450
1140
  msgid "This plugin has not been tested with your current version of WordPress."
1141
  msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1142
 
1143
+ #: includes/fs-plugin-info-dialog.php:1452
1144
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1145
  msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1471
1148
  msgid "Paid add-on must be deployed to Freemius."
1149
  msgstr "Les add-ons payant doivent être déposés sur Freemius"
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1472
1152
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1153
  msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1493
1156
+ msgid "Newer Version (%s) Installed"
1157
+ msgstr "Nouvelle Version (%s) Installée"
1158
+
1159
+ #: includes/fs-plugin-info-dialog.php:1494
1160
+ msgid "Newer Free Version (%s) Installed"
1161
+ msgstr "La nouvelle version gratuite ( %s ) a été installé"
1162
+
1163
+ #: includes/fs-plugin-info-dialog.php:1501
1164
+ msgid "Latest Version Installed"
1165
+ msgstr "Dernière Version Installée"
1166
+
1167
+ #: includes/fs-plugin-info-dialog.php:1502
1168
+ msgid "Latest Free Version Installed"
1169
+ msgstr "La dernière version gratuite a été installé"
1170
+
1171
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1172
+ #: templates/account/partials/addon.php26,
1173
  #: templates/account/partials/site.php:295
1174
  msgid "Downgrading your plan"
1175
  msgstr "Rétrograder votre formule"
1176
 
1177
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1178
+ #: templates/account/partials/addon.php27,
1179
  #: templates/account/partials/site.php:296
1180
  msgid "Cancelling the subscription"
1181
  msgstr "Annuler votre abonnement"
1182
 
1183
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1184
  #. subscription'
1185
+ #: templates/account.php:89
1186
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1187
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
 
 
1188
 
1189
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1190
+ #: templates/account/partials/addon.php30,
1191
  #: templates/account/partials/site.php:299
1192
  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."
1193
  msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé."
1194
 
1195
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1196
+ #: templates/account/partials/addon.php:31
1197
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1198
  msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1199
 
1200
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1201
+ #: templates/account/partials/addon.php32,
1202
  #: templates/account/partials/site.php:300
1203
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1204
  msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support."
1205
 
1206
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1207
+ #: templates/account/partials/addon.php33,
1208
  #: templates/account/partials/site.php:301
1209
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1210
  msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s."
1211
 
1212
  #. translators: %s: Plan title (e.g. "Professional")
1213
+ #: templates/account.php95,
1214
  #: templates/account/partials/activate-license-button.php31,
1215
+ #: templates/account/partials/addon.php:35
1216
  msgid "Activate %s Plan"
1217
  msgstr "Activer la formule %s"
1218
 
1219
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1220
+ #: templates/account.php98, templates/account/partials/addon.php38,
1221
  #: templates/account/partials/site.php:275
1222
  msgid "Auto renews in %s"
1223
  msgstr "Renouvellements automatique dans %s"
1224
 
1225
  #. translators: %s: Time period (e.g. Expires in "2 months")
1226
+ #: templates/account.php100, templates/account/partials/addon.php40,
1227
  #: templates/account/partials/site.php:277
1228
  msgid "Expires in %s"
1229
  msgstr "Expire dans %s"
1230
 
1231
+ #: templates/account.php101, templates/account/partials/addon.php:41
1232
  msgctxt "as synchronize license"
1233
  msgid "Sync License"
1234
  msgstr "Synchroniser la licence"
1235
 
1236
+ #: templates/account.php102, templates/account/partials/addon.php:42
1237
  msgid "Cancel Trial"
1238
  msgstr "Annuler la période d'essai"
1239
 
1240
+ #: templates/account.php103, templates/account/partials/addon.php:43
1241
  msgid "Change Plan"
1242
  msgstr "Changer de formule"
1243
 
1244
+ #: templates/account.php104, templates/account/partials/addon.php:44
1245
  msgctxt "verb"
1246
  msgid "Upgrade"
1247
  msgstr "Mise à jour"
1248
 
1249
+ #: templates/account.php106, templates/account/partials/addon.php46,
1250
  #: templates/account/partials/site.php:302
1251
  msgctxt "verb"
1252
  msgid "Downgrade"
1253
  msgstr "Rétrograder"
1254
 
1255
+ #: templates/account.php108, templates/add-ons.php187,
1256
  #: templates/plugin-info/features.php72,
1257
+ #: templates/account/partials/addon.php48,
1258
  #: templates/account/partials/site.php:31
1259
  msgid "Free"
1260
  msgstr "Gratuit"
1261
 
1262
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1263
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1264
+ #: templates/account/partials/addon.php:50
1265
  msgctxt "as product pricing plan"
1266
  msgid "Plan"
1267
  msgstr "Formule"
1268
 
1269
+ #: templates/account.php:111
1270
+ msgid "Bundle Plan"
1271
+ msgstr "Bundle Plan"
1272
+
1273
+ #: templates/account.php:185
1274
  msgid "Free Trial"
1275
  msgstr "Essai gratuit"
1276
 
1277
+ #: templates/account.php:196
1278
  msgid "Account Details"
1279
  msgstr "Détails du compte"
1280
 
1281
+ #: templates/account.php:200
1282
+ msgid "Billing & Invoices"
1283
+ msgstr "Billing & Invoices"
1284
+
1285
+ #: templates/account.php:210
1286
  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?"
1287
  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 ? "
1288
 
1289
+ #: templates/account.php:212
1290
  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?"
1291
  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 ?"
1292
 
1293
+ #: templates/account.php:215
1294
  msgid "Delete Account"
1295
  msgstr "Supprimer le compte"
1296
 
1297
+ #: templates/account.php227, templates/account/partials/addon.php211,
1298
  #: templates/account/partials/deactivate-license-button.php:35
1299
  msgid "Deactivate License"
1300
  msgstr "Désactiver la licence"
1301
 
1302
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1303
  msgid "Are you sure you want to proceed?"
1304
  msgstr "Êtes-vous de vouloir continuer ?"
1305
 
1306
+ #: templates/account.php250, templates/account/partials/addon.php:234
1307
  msgid "Cancel Subscription"
1308
  msgstr "Annuler l'abonnement"
1309
 
1310
+ #: templates/account.php:278
1311
  msgctxt "as synchronize"
1312
  msgid "Sync"
1313
  msgstr "Synchroniser"
1314
 
1315
+ #: templates/account.php292, templates/debug.php:489
1316
  msgid "Name"
1317
  msgstr "Nom"
1318
 
1319
+ #: templates/account.php298, templates/debug.php:490
1320
  msgid "Email"
1321
  msgstr "Email"
1322
 
1323
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1324
  msgid "User ID"
1325
  msgstr "User ID"
1326
 
1327
+ #: templates/account.php322, templates/account.php608,
1328
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1329
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1330
+ #: templates/debug.php599, templates/account/payments.php35,
1331
+ #: templates/debug/logger.php:21
1332
+ msgid "ID"
1333
+ msgstr "ID"
1334
+
1335
+ #: templates/account.php:329
1336
  msgid "Site ID"
1337
  msgstr "Site ID"
1338
 
1339
+ #: templates/account.php:332
1340
  msgid "No ID"
1341
  msgstr "ID manquant"
1342
 
1343
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1344
+ #: templates/debug.php455, templates/debug.php492,
1345
  #: templates/account/partials/site.php:219
1346
  msgid "Public Key"
1347
  msgstr "Clef publique"
1348
 
1349
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1350
+ #: templates/debug.php493, templates/account/partials/site.php:231
1351
  msgid "Secret Key"
1352
  msgstr "Clef secrête"
1353
 
1354
+ #: templates/account.php:346
1355
  msgctxt "as secret encryption key missing"
1356
  msgid "No Secret"
1357
  msgstr "Clef secrète manquante"
1358
 
1359
+ #: templates/account.php373, templates/account/partials/site.php112,
1360
  #: templates/account/partials/site.php:114
1361
  msgid "Trial"
1362
  msgstr "Période d'essai"
1363
 
1364
+ #: templates/account.php400, templates/debug.php533,
1365
  #: templates/account/partials/site.php:248
1366
  msgid "License Key"
1367
  msgstr "Clef de licence"
1368
 
1369
+ #: templates/account.php:429
1370
+ msgid "Join the Beta program"
1371
+ msgstr "Join the Beta program"
1372
+
1373
+ #: templates/account.php:435
1374
  msgid "not verified"
1375
  msgstr "Non vérifié"
1376
 
1377
+ #: templates/account.php444, templates/account/partials/addon.php:172
1378
  msgid "Expired"
1379
  msgstr "Expiré"
1380
 
1381
+ #: templates/account.php:502
1382
  msgid "Premium version"
1383
  msgstr "Version premium"
1384
 
1385
+ #: templates/account.php:504
1386
  msgid "Free version"
1387
  msgstr "Version gratuite"
1388
 
1389
+ #: templates/account.php:516
1390
  msgid "Verify Email"
1391
  msgstr "Vérifier l'email"
1392
 
1393
+ #: templates/account.php:527
1394
  msgid "Download %s Version"
1395
  msgstr "Télécharger la version %s"
1396
 
1397
+ #: templates/account.php541, templates/account.php749,
1398
  #: templates/account/partials/site.php237,
1399
  #: templates/account/partials/site.php:255
1400
  msgctxt "verb"
1401
  msgid "Show"
1402
  msgstr "Afficher"
1403
 
1404
+ #: templates/account.php:555
1405
  msgid "What is your %s?"
1406
  msgstr "Quel est votre %s ?"
1407
 
1408
+ #: templates/account.php563, templates/account/billing.php:21
1409
  msgctxt "verb"
1410
  msgid "Edit"
1411
  msgstr "Éditer"
1412
 
1413
+ #: templates/account.php:588
1414
  msgid "Sites"
1415
  msgstr "Sites"
1416
 
1417
+ #: templates/account.php:599
1418
  msgid "Search by address"
1419
  msgstr "Recherche par adresse"
1420
 
1421
+ #: templates/account.php609, templates/debug.php:369
 
 
 
 
 
 
 
1422
  msgid "Address"
1423
  msgstr "Adresse"
1424
 
1425
+ #: templates/account.php:610
1426
  msgid "License"
1427
  msgstr "Licence"
1428
 
1429
+ #: templates/account.php:611
1430
  msgid "Plan"
1431
  msgstr "Formule"
1432
 
1433
+ #: templates/account.php:656
1434
  msgctxt "as software license"
1435
  msgid "License"
1436
  msgstr "Licence"
1437
 
1438
+ #: templates/account.php:743
1439
  msgctxt "verb"
1440
  msgid "Hide"
1441
  msgstr "Cacher"
1442
 
1443
+ #: templates/account.php:765
1444
+ msgid "Processing"
1445
+ msgstr "Traitement en cours"
1446
+
1447
+ #: templates/account.php:768
1448
+ msgid "Get updates for bleeding edge Beta versions of %s."
1449
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1450
+
1451
+ #: templates/account.php:826
1452
  msgid "Cancelling %s"
1453
  msgstr "Annulation de %s"
1454
 
1455
+ #: templates/account.php826, templates/account.php843,
1456
  #: templates/forms/subscription-cancellation.php27,
1457
+ #: templates/forms/deactivation/form.php:133
1458
  msgid "trial"
1459
  msgstr "essai"
1460
 
1461
+ #: templates/account.php841, templates/forms/deactivation/form.php:150
1462
  msgid "Cancelling %s..."
1463
  msgstr "Annulation de %s..."
1464
 
1465
+ #: templates/account.php844, templates/forms/subscription-cancellation.php28,
1466
+ #: templates/forms/deactivation/form.php:134
1467
  msgid "subscription"
1468
  msgstr "abonnement"
1469
 
1470
+ #: templates/account.php:858
1471
  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?"
1472
  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 ?"
1473
 
1474
+ #: templates/add-ons.php:35
1475
+ msgid "View details"
1476
+ msgstr "Voir les détails"
1477
+
1478
+ #: templates/add-ons.php:45
1479
  msgid "Add Ons for %s"
1480
  msgstr "Add Ons pour %s"
1481
 
1482
+ #: templates/add-ons.php:55
1483
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1484
  msgstr "Nous n'avons pas pu charger la liste des add-ons. C'est probablement une difficulté de notre côté, merci de d'essayer à nouveau dans quelques minutes."
1485
 
1486
+ #: templates/add-ons.php:173
1487
+ msgctxt "active add-on"
1488
+ msgid "Active"
1489
+ msgstr "Active"
1490
+
1491
+ #: templates/add-ons.php:174
1492
+ msgctxt "installed add-on"
1493
+ msgid "Installed"
1494
+ msgstr "Installed"
1495
 
1496
+ #: templates/admin-notice.php13, templates/forms/license-activation.php209,
1497
  #: templates/forms/resend-key.php:77
1498
  msgctxt "as close a window"
1499
  msgid "Dismiss"
1519
  msgid "Cancel Installation"
1520
  msgstr "Annuler l'installation"
1521
 
1522
+ #: templates/checkout.php:180
1523
  msgid "Checkout"
1524
  msgstr "Paiement"
1525
 
1526
+ #: templates/checkout.php:180
1527
  msgid "PCI compliant"
1528
  msgstr "Compatible PCI"
1529
 
1545
  msgid "Thanks %s!"
1546
  msgstr "Merci %s !"
1547
 
1548
+ #: templates/connect.php172, templates/forms/license-activation.php:44
1549
  msgid "Agree & Activate License"
1550
  msgstr "Valider & Activer la licence"
1551
 
1593
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1594
  msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1595
 
1596
+ #: templates/connect.php253, templates/forms/license-activation.php:47
1597
  msgid "License key"
1598
  msgstr "Clef de licence"
1599
 
1600
+ #: templates/connect.php256, templates/forms/license-activation.php:20
1601
  msgid "Can't find your license key?"
1602
  msgstr "Vous ne trouvez pas votre clef de licence ?"
1603
 
1604
+ #: templates/connect.php315, templates/connect.php652,
1605
  #: templates/forms/deactivation/retry-skip.php:20
1606
  msgctxt "verb"
1607
  msgid "Skip"
1651
  msgid "Newsletter"
1652
  msgstr "Newsletter"
1653
 
1654
+ #: templates/connect.php391, templates/forms/license-activation.php:39
1655
  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."
1656
  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."
1657
 
1663
  msgid "Don't have a license key?"
1664
  msgstr "Vous n'avez pas de clef de licence ?"
1665
 
 
 
 
 
1666
  #: templates/connect.php:420
1667
  msgid "Have a license key?"
1668
  msgstr "Vous avez une clef de licence ?"
1679
  msgid "Terms of Service"
1680
  msgstr "Conditions générales de service"
1681
 
1682
+ #: templates/connect.php:805
1683
  msgctxt "as in the process of sending an email"
1684
  msgid "Sending email"
1685
  msgstr "Email en cours d'envoi"
1686
 
1687
+ #: templates/connect.php:806
1688
  msgctxt "as activating plugin"
1689
  msgid "Activating"
1690
  msgstr "Activation en cours"
1712
  msgid "Debugging"
1713
  msgstr "Debuggage"
1714
 
1715
+ #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1716
+ #: templates/debug.php:494
1717
  msgid "Actions"
1718
  msgstr "Actions"
1719
 
1749
  msgid "Set DB Option"
1750
  msgstr "Mise en place des options de la base de données"
1751
 
1752
+ #: templates/debug.php:182
1753
  msgid "Key"
1754
  msgstr "Clef"
1755
 
1756
+ #: templates/debug.php:183
1757
  msgid "Value"
1758
  msgstr "Valeur"
1759
 
1760
+ #: templates/debug.php:199
1761
  msgctxt "as software development kit versions"
1762
  msgid "SDK Versions"
1763
  msgstr "Versions du SDK"
1764
 
1765
+ #: templates/debug.php:204
1766
  msgid "SDK Path"
1767
  msgstr "Chemin d'accès du SDK"
1768
 
1769
+ #: templates/debug.php205, templates/debug.php:244
1770
  msgid "Module Path"
1771
  msgstr "Chemin d'accès du module"
1772
 
1773
+ #: templates/debug.php:206
1774
  msgid "Is Active"
1775
  msgstr "Est actif"
1776
 
1777
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1778
  msgid "Plugins"
1779
  msgstr "Plugins"
1780
 
1781
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1782
  msgid "Themes"
1783
  msgstr "Thèmes"
1784
 
1785
+ #: templates/debug.php239, templates/debug.php371, templates/debug.php453,
1786
  #: templates/debug/scheduled-crons.php:80
1787
  msgid "Slug"
1788
  msgstr "Slug"
1789
 
1790
+ #: templates/debug.php241, templates/debug.php:452
1791
  msgid "Title"
1792
  msgstr "Titre"
1793
 
1794
+ #: templates/debug.php:242
1795
  msgctxt "as application program interface"
1796
  msgid "API"
1797
  msgstr "API"
1798
 
1799
+ #: templates/debug.php:243
1800
  msgid "Freemius State"
1801
  msgstr "État de Freemius"
1802
 
1803
+ #: templates/debug.php:247
1804
  msgid "Network Blog"
1805
  msgstr "Réseau de Blog"
1806
 
1807
+ #: templates/debug.php:248
1808
  msgid "Network User"
1809
  msgstr "Réseau d'Utilisateur"
1810
 
1811
+ #: templates/debug.php:285
1812
  msgctxt "as connection was successful"
1813
  msgid "Connected"
1814
  msgstr "Connecté"
1815
 
1816
+ #: templates/debug.php:286
1817
  msgctxt "as connection blocked"
1818
  msgid "Blocked"
1819
  msgstr "Bloqué"
1820
 
1821
+ #: templates/debug.php:322
1822
  msgid "Simulate Trial Promotion"
1823
  msgstr "Simuler la promotion d'essai"
1824
 
1825
+ #: templates/debug.php:334
1826
  msgid "Simulate Network Upgrade"
1827
  msgstr "Simuler la mise à jour du réseau"
1828
 
1829
+ #: templates/debug.php:360
1830
  msgid "%s Installs"
1831
  msgstr "%s Installations"
1832
 
1833
+ #: templates/debug.php:362
1834
  msgctxt "like websites"
1835
  msgid "Sites"
1836
  msgstr "Sites"
1837
 
1838
+ #: templates/debug.php368, templates/account/partials/site.php:148
1839
  msgid "Blog ID"
1840
  msgstr "Blog ID"
1841
 
1842
+ #: templates/debug.php433, templates/debug.php511,
1843
+ #: templates/account/partials/addon.php:396
1844
  msgctxt "verb"
1845
  msgid "Delete"
1846
  msgstr "Supprimer"
1847
 
1848
+ #: templates/debug.php:447
1849
  msgid "Add Ons of module %s"
1850
  msgstr "Add Ons du module %s"
1851
 
1852
+ #: templates/debug.php:484
1853
  msgid "Users"
1854
  msgstr "Utilisateurs"
1855
 
1856
+ #: templates/debug.php:491
1857
  msgid "Verified"
1858
  msgstr "Vérifié"
1859
 
1860
+ #: templates/debug.php:522
1861
  msgid "%s Licenses"
1862
  msgstr "%s Licences"
1863
 
1864
+ #: templates/debug.php:527
1865
  msgid "Plugin ID"
1866
  msgstr "ID du plugin"
1867
 
1868
+ #: templates/debug.php:529
1869
  msgid "Plan ID"
1870
  msgstr "ID de la formule"
1871
 
1872
+ #: templates/debug.php:530
1873
  msgid "Quota"
1874
  msgstr "Quota"
1875
 
1876
+ #: templates/debug.php:531
1877
  msgid "Activated"
1878
  msgstr "Activé"
1879
 
1880
+ #: templates/debug.php:532
1881
  msgid "Blocking"
1882
  msgstr "Bloquant"
1883
 
1884
+ #: templates/debug.php:534
1885
  msgctxt "as expiration date"
1886
  msgid "Expiration"
1887
  msgstr "Expiration"
1888
 
1889
+ #: templates/debug.php:557
1890
  msgid "Debug Log"
1891
  msgstr "Debug Log"
1892
 
1893
+ #: templates/debug.php:561
1894
  msgid "All Types"
1895
  msgstr "Tous les types"
1896
 
1897
+ #: templates/debug.php:568
1898
  msgid "All Requests"
1899
  msgstr "Toutes les demandes"
1900
 
1901
+ #: templates/debug.php573, templates/debug.php602,
1902
  #: templates/debug/logger.php:25
1903
  msgid "File"
1904
  msgstr "Fichier"
1905
 
1906
+ #: templates/debug.php574, templates/debug.php600,
1907
  #: templates/debug/logger.php:23
1908
  msgid "Function"
1909
  msgstr "Fonction"
1910
 
1911
+ #: templates/debug.php:575
1912
  msgid "Process ID"
1913
  msgstr "ID du processus"
1914
 
1915
+ #: templates/debug.php:576
1916
  msgid "Logger"
1917
  msgstr "Logger"
1918
 
1919
+ #: templates/debug.php577, templates/debug.php601,
1920
  #: templates/debug/logger.php:24
1921
  msgid "Message"
1922
  msgstr "Message"
1923
 
1924
+ #: templates/debug.php:579
1925
  msgid "Filter"
1926
  msgstr "Filter"
1927
 
1928
+ #: templates/debug.php:587
1929
  msgid "Download"
1930
  msgstr "Téléchargement"
1931
 
1932
+ #: templates/debug.php598, templates/debug/logger.php:22
1933
  msgid "Type"
1934
  msgstr "Type"
1935
 
1936
+ #: templates/debug.php603, templates/debug/logger.php:26
1937
  msgid "Timestamp"
1938
  msgstr "Timestamp"
1939
 
1960
  msgid "Requests"
1961
  msgstr "Demandes"
1962
 
1963
+ #: templates/account/billing.php:22
1964
  msgctxt "verb"
1965
  msgid "Update"
1966
  msgstr "Mise à jour"
1967
 
1968
+ #: templates/account/billing.php:33
1969
  msgid "Billing"
1970
  msgstr "Facturation"
1971
 
1972
+ #: templates/account/billing.php38, templates/account/billing.php:38
1973
  msgid "Business name"
1974
  msgstr "Raison sociale"
1975
 
1976
+ #: templates/account/billing.php39, templates/account/billing.php:39
1977
  msgid "Tax / VAT ID"
1978
  msgstr "Code TVA"
1979
 
1980
+ #: templates/account/billing.php42, templates/account/billing.php42,
1981
+ #: templates/account/billing.php43, templates/account/billing.php:43
1982
  msgid "Address Line %d"
1983
  msgstr "Adresse ligne %d"
1984
 
1985
+ #: templates/account/billing.php46, templates/account/billing.php:46
1986
  msgid "City"
1987
  msgstr "Ville"
1988
 
1989
+ #: templates/account/billing.php46, templates/account/billing.php:46
1990
  msgid "Town"
1991
  msgstr "Ville"
1992
 
1993
+ #: templates/account/billing.php47, templates/account/billing.php:47
1994
  msgid "ZIP / Postal Code"
1995
  msgstr "Code postal"
1996
 
1997
+ #: templates/account/billing.php:302
1998
  msgid "Country"
1999
  msgstr "Pays"
2000
 
2001
+ #: templates/account/billing.php:304
2002
  msgid "Select Country"
2003
  msgstr "Choisir le pays"
2004
 
2005
+ #: templates/account/billing.php311, templates/account/billing.php:312
2006
  msgid "State"
2007
  msgstr "État"
2008
 
2009
+ #: templates/account/billing.php311, templates/account/billing.php:312
2010
  msgid "Province"
2011
  msgstr "Région"
2012
 
2258
  msgid "Become an affiliate"
2259
  msgstr "Devenir un affilié"
2260
 
2261
+ #: templates/forms/license-activation.php:21
2262
  msgid "Please enter the license key that you received in the email right after the purchase:"
2263
  msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :"
2264
 
2265
+ #: templates/forms/license-activation.php:26
2266
  msgid "Update License"
2267
  msgstr "Mettre à jour la licence"
2268
 
2329
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2330
  msgstr "Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité et de fonctionnalités, ainsi que d'être en mesure de contacter le support."
2331
 
2332
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2333
+ #. subscription'
2334
+ #: templates/forms/subscription-cancellation.php99,
2335
+ #: templates/account/partials/addon.php29,
2336
+ #: templates/account/partials/site.php:298
2337
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2338
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2339
+
2340
  #: templates/forms/subscription-cancellation.php:103
2341
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2342
  msgstr "Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf si vous l'activez à nouveau avec une licence premium valide."
2350
  msgstr "Poursuivre"
2351
 
2352
  #: templates/forms/subscription-cancellation.php191,
2353
+ #: templates/forms/deactivation/form.php:171
2354
  msgid "Cancel %s & Proceed"
2355
  msgstr "Annuler %s et poursuivre"
2356
 
2362
  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."
2363
  msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai."
2364
 
2365
+ #: templates/js/style-premium-theme.php:39
2366
  msgid "Premium"
2367
  msgstr "Premium"
2368
 
2369
+ #: templates/js/style-premium-theme.php:42
2370
+ msgid "Beta"
2371
+ msgstr "Beta"
2372
+
2373
+ #: templates/partials/network-activation.php:27
2374
  msgid "Activate license on all sites in the network."
2375
  msgstr "Activer la licence sur tous les sites du réseau."
2376
 
2377
+ #: templates/partials/network-activation.php:28
2378
  msgid "Apply on all sites in the network."
2379
  msgstr "Effectuer sur tous les sites dans le réseau."
2380
 
2381
+ #: templates/partials/network-activation.php:31
2382
  msgid "Activate license on all pending sites."
2383
  msgstr "Activer la licence sur tous les sites en attente."
2384
 
2385
+ #: templates/partials/network-activation.php:32
2386
  msgid "Apply on all pending sites."
2387
  msgstr "Activer sur tous les sites en attente."
2388
 
2389
+ #: templates/partials/network-activation.php40,
2390
+ #: templates/partials/network-activation.php:74
2391
  msgid "allow"
2392
  msgstr "autoriser"
2393
 
2394
+ #: templates/partials/network-activation.php43,
2395
+ #: templates/partials/network-activation.php:77
2396
  msgid "delegate"
2397
  msgstr "déléguer"
2398
 
2399
+ #: templates/partials/network-activation.php47,
2400
+ #: templates/partials/network-activation.php:81
2401
  msgid "skip"
2402
  msgstr "passer"
2403
 
2423
  msgid "Last license"
2424
  msgstr "Dernière licence"
2425
 
2426
+ #: templates/account/partials/addon.php:167
2427
  msgid "Cancelled"
2428
  msgstr "Annulé"
2429
 
2430
+ #: templates/account/partials/addon.php:177
2431
  msgid "No expiration"
2432
  msgstr "Pas d'expiration"
2433
 
 
 
 
 
 
2434
  #: templates/account/partials/site.php:181
2435
  msgid "Owner Name"
2436
  msgstr "Nom du propriétaire"
2455
  msgid "Contact Support"
2456
  msgstr "Contacter l'Assistance"
2457
 
2458
+ #: templates/forms/deactivation/form.php:64
2459
  msgid "Anonymous feedback"
2460
  msgstr "Commentaire anonyme"
2461
 
2462
+ #: templates/forms/deactivation/form.php:70
2463
  msgid "Deactivate"
2464
  msgstr "Désactiver"
2465
 
2466
+ #: templates/forms/deactivation/form.php:72
2467
  msgid "Activate %s"
2468
  msgstr "Activer %s"
2469
 
2470
+ #: templates/forms/deactivation/form.php:87
2471
  msgid "Quick Feedback"
2472
  msgstr "Commentaires rapides"
2473
 
2474
+ #: templates/forms/deactivation/form.php:91
2475
  msgid "If you have a moment, please let us know why you are %s"
2476
  msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s"
2477
 
2478
+ #: templates/forms/deactivation/form.php:91
2479
  msgid "deactivating"
2480
  msgstr "Désactivation"
2481
 
2482
+ #: templates/forms/deactivation/form.php:91
2483
  msgid "switching"
2484
  msgstr "Changement"
2485
 
2486
+ #: templates/forms/deactivation/form.php:365
2487
  msgid "Submit & %s"
2488
  msgstr "Envoyer & %s"
2489
 
2490
+ #: templates/forms/deactivation/form.php:386
2491
  msgid "Kindly tell us the reason so we can improve."
2492
  msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2493
 
2494
+ #: templates/forms/deactivation/form.php:511
2495
  msgid "Yes - %s"
2496
  msgstr "Oui - %s"
2497
 
2498
+ #: templates/forms/deactivation/form.php:518
2499
  msgid "Skip & %s"
2500
  msgstr "Passer & %s"
2501
 
vendor/freemius/wordpress-sdk/languages/freemius-he_IL.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-he_IL.po CHANGED
@@ -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: 2018-11-25 07:22+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,772 +22,792 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
- #: includes/class-freemius.php:1690
30
  msgid "Error"
31
  msgstr "שגיאה"
32
 
33
- #: includes/class-freemius.php:2011
34
  msgid "I found a better %s"
35
  msgstr "מצאתי %s יותר טוב"
36
 
37
- #: includes/class-freemius.php:2013
38
  msgid "What's the %s's name?"
39
  msgstr "What's the %s's name?"
40
 
41
- #: includes/class-freemius.php:2019
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "It's a temporary %s. I'm just debugging an issue."
44
 
45
- #: includes/class-freemius.php:2021
46
  msgid "Deactivation"
47
  msgstr "דיאקטיבציה"
48
 
49
- #: includes/class-freemius.php:2022
50
  msgid "Theme Switch"
51
  msgstr "החלפת תֵמָה"
52
 
53
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "אחר"
56
 
57
- #: includes/class-freemius.php:2039
58
  msgid "I no longer need the %s"
59
  msgstr "I no longer need the %s"
60
 
61
- #: includes/class-freemius.php:2046
62
  msgid "I only needed the %s for a short period"
63
  msgstr "I only needed the %s for a short period"
64
 
65
- #: includes/class-freemius.php:2052
66
  msgid "The %s broke my site"
67
  msgstr "ה%s הרס לי את האתר"
68
 
69
- #: includes/class-freemius.php:2059
70
  msgid "The %s suddenly stopped working"
71
  msgstr "ה%s הפסיק פתאום לעבוד"
72
 
73
- #: includes/class-freemius.php:2069
74
  msgid "I can't pay for it anymore"
75
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
 
77
- #: includes/class-freemius.php:2071
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
 
81
- #: includes/class-freemius.php:2077
82
  msgid "I don't like to share my information with you"
83
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
 
85
- #: includes/class-freemius.php:2098
86
  msgid "The %s didn't work"
87
  msgstr "ה%s לא עבד"
88
 
89
- #: includes/class-freemius.php:2108
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
 
93
- #: includes/class-freemius.php:2116
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "The %s is great, but I need specific feature that you don't support"
96
 
97
- #: includes/class-freemius.php:2118
98
  msgid "What feature?"
99
  msgstr "איזה פיטצ'ר?"
100
 
101
- #: includes/class-freemius.php:2122
102
  msgid "The %s is not working"
103
  msgstr "ה%s לא עובד"
104
 
105
- #: includes/class-freemius.php:2124
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
 
109
- #: includes/class-freemius.php:2128
110
  msgid "It's not what I was looking for"
111
  msgstr "חיפשתי משהו אחר"
112
 
113
- #: includes/class-freemius.php:2130
114
  msgid "What you've been looking for?"
115
  msgstr "מה חיפשת?"
116
 
117
- #: includes/class-freemius.php:2134
118
  msgid "The %s didn't work as expected"
119
  msgstr "ה%s לא עבד כמצופה"
120
 
121
- #: includes/class-freemius.php:2136
122
  msgid "What did you expect?"
123
  msgstr "למה ציפית?"
124
 
125
- #: includes/class-freemius.php2942, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "ניפוי תקלות פרימיוס"
128
 
129
- #: includes/class-freemius.php:3670
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
 
133
- #: includes/class-freemius.php:3672
134
  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."
135
  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."
136
 
137
- #: includes/class-freemius.php:3679
138
  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."
139
  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."
140
 
141
- #: includes/class-freemius.php:3784
142
  msgid "Yes - do your thing"
143
  msgstr "כן - בצעו את מה שצריך"
144
 
145
- #: includes/class-freemius.php:3789
146
  msgid "No - just deactivate"
147
  msgstr "לא - פשוט כבה"
148
 
149
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
150
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
151
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
152
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
153
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
154
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
155
- #: includes/class-freemius.php19001, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "אופס"
159
 
160
- #: includes/class-freemius.php:3903
161
  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."
162
  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."
163
 
164
- #: includes/class-freemius.php:4340
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s לא יכול לעבוד ללא %s."
168
 
169
- #: includes/class-freemius.php:4341
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
 
174
- #: includes/class-freemius.php4487, includes/class-freemius.php4512,
175
- #: includes/class-freemius.php:17953
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
- #: includes/class-freemius.php:5130
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s version was successfully activated."
182
 
183
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "יש"
187
 
188
- #: includes/class-freemius.php:5157
189
  msgid "You have a %s license."
190
  msgstr "יש לך רישיון %s."
191
 
192
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
193
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
194
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
195
- #: includes/class-freemius.php:17707
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "יששש"
199
 
200
- #: includes/class-freemius.php:5425
201
  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."
202
  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."
203
 
204
- #: includes/class-freemius.php:5429
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
- #: includes/class-freemius.php5438, templates/add-ons.php103,
209
- #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "מידע נוסף אודות %s"
212
 
213
- #: includes/class-freemius.php:5439
214
  msgid "Purchase License"
215
  msgstr "קניית רישיון"
216
 
217
- #: includes/class-freemius.php6372, templates/connect.php:163
218
  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."
219
  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."
220
 
221
- #: includes/class-freemius.php:6376
222
  msgid "start the trial"
223
  msgstr "התחל תקופת ניסיון"
224
 
225
- #: includes/class-freemius.php6377, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "השלם התקנה"
228
 
229
- #: includes/class-freemius.php:6490
230
  msgid "You are just one step away - %s"
231
  msgstr "You are just one step away - %s"
232
 
233
- #: includes/class-freemius.php:6493
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "השלם הפעלת \"%s\" עכשיו"
237
 
238
- #: includes/class-freemius.php:6571
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We made a few tweaks to the %s, %s"
241
 
242
- #: includes/class-freemius.php:6575
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt in to make \"%s\" better!"
245
 
246
- #: includes/class-freemius.php:7003
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "The upgrade of %s was successfully completed."
249
 
250
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
251
- #: includes/class-fs-plugin-updater.php1081,
252
- #: includes/class-fs-plugin-updater.php1088,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Add-On"
256
 
257
- #: includes/class-freemius.php8927, templates/debug.php359,
258
- #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "תוסף"
261
 
262
- #: includes/class-freemius.php8928, templates/debug.php359,
263
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
264
  msgid "Theme"
265
  msgstr "תבנית"
266
 
267
- #: includes/class-freemius.php:11412
 
 
 
 
268
  msgid "Invalid site details collection."
269
  msgstr "Invalid site details collection."
270
 
271
- #: includes/class-freemius.php:11532
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
274
 
275
- #: includes/class-freemius.php:11534
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
278
 
279
- #: includes/class-freemius.php:11808
280
  msgid "Account is pending activation."
281
  msgstr "Account is pending activation."
282
 
283
- #: includes/class-freemius.php11920,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Buy a license now"
287
 
288
- #: includes/class-freemius.php11932,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Renew your license now"
292
 
293
- #: includes/class-freemius.php:11936
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%s to access version %s security & feature updates, and support."
296
 
297
- #: includes/class-freemius.php:14319
298
  msgid "%s activation was successfully completed."
299
  msgstr "הפעלת %s הושלמה בהצלחה."
300
 
301
- #: includes/class-freemius.php:14333
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
304
 
305
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
306
  msgid "Your trial has been successfully started."
307
  msgstr "הניסיון שלך הופעל בהצלחה."
308
 
309
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
310
- #: includes/class-freemius.php:15028
311
  msgid "Couldn't activate %s."
312
  msgstr "לא ניתן להפעיל את %s."
313
 
314
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
315
- #: includes/class-freemius.php:15029
316
  msgid "Please contact us with the following message:"
317
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
318
 
319
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
320
  msgid "Upgrade"
321
  msgstr "שדרג"
322
 
323
- #: includes/class-freemius.php:15384
324
  msgid "Start Trial"
325
  msgstr "התחל תקופת ניסיון"
326
 
327
- #: includes/class-freemius.php:15386
328
  msgid "Pricing"
329
  msgstr "מחירון"
330
 
331
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
332
  msgid "Affiliation"
333
  msgstr "אפיליאציה"
334
 
335
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
336
- #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "חשבון"
339
 
340
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "יצירת קשר"
344
 
345
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
346
- #: includes/class-freemius.php19849, templates/account.php100,
347
- #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Add-Ons"
350
 
351
- #: includes/class-freemius.php:15541
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
- #: includes/class-freemius.php:15541
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
- #: includes/class-freemius.php15543, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "מחירון"
365
 
366
- #: includes/class-freemius.php15756,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "פורום תמיכה"
370
 
371
- #: includes/class-freemius.php:16542
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Your email has been successfully verified - you are AWESOME!"
374
 
375
- #: includes/class-freemius.php:16543
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "מעולה"
379
 
380
- #: includes/class-freemius.php:17168
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
383
 
384
- #: includes/class-freemius.php:17170
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "ההרחבה %s נרכשה בהצלחה."
387
 
388
- #: includes/class-freemius.php:17173
389
  msgid "Download the latest version"
390
  msgstr "הורד את הגרסה האחרונה"
391
 
392
- #: includes/class-freemius.php:17259
393
- msgctxt "%1s - plugin title, %2s - API domain"
394
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
 
397
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
398
- #: includes/class-freemius.php:17755
399
  msgid "Error received from the server:"
400
  msgstr "הוחזרה שגיאה מהשרת:"
401
 
402
- #: includes/class-freemius.php:17272
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
 
406
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
407
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "אממ"
411
 
412
- #: includes/class-freemius.php:17467
413
  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."
414
  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."
415
 
416
- #: includes/class-freemius.php17468, templates/account.php102,
417
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "ניסיון"
421
 
422
- #: includes/class-freemius.php:17473
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
425
 
426
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
427
  msgid "Please contact us here"
428
  msgstr "אנא צור איתנו קשר כאן"
429
 
430
- #: includes/class-freemius.php:17487
 
 
 
 
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "החבילה שודרגה בהצלחה."
433
 
434
- #: includes/class-freemius.php:17505
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "החבילה עודכנה בהצלחה אל %s."
437
 
438
- #: includes/class-freemius.php:17521
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Your license has expired. You can still continue using the free %s forever."
441
 
442
- #: includes/class-freemius.php:17523
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
445
 
446
- #: includes/class-freemius.php:17531
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
449
 
450
- #: includes/class-freemius.php:17544
451
  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."
452
  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."
453
 
454
- #: includes/class-freemius.php:17567
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
457
 
458
- #: includes/class-freemius.php:17569
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
 
462
- #: includes/class-freemius.php:17674
463
  msgid "It looks like the license could not be activated."
464
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
465
 
466
- #: includes/class-freemius.php:17704
467
  msgid "Your license was successfully activated."
468
  msgstr "הרישיון הופעל בהצלחה."
469
 
470
- #: includes/class-freemius.php:17730
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
473
 
474
- #: includes/class-freemius.php:17754
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "נראה שניתוק הרישיון נכשל."
477
 
478
- #: includes/class-freemius.php:17782
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
481
 
482
- #: includes/class-freemius.php:17783
483
  msgid "O.K"
484
  msgstr "אוקיי"
485
 
486
- #: includes/class-freemius.php:17836
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
 
490
- #: includes/class-freemius.php:17845
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
 
494
- #: includes/class-freemius.php:17887
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "You are already running the %s in a trial mode."
497
 
498
- #: includes/class-freemius.php:17898
499
  msgid "You already utilized a trial before."
500
  msgstr "הניסיון כבר נוצל בעבר."
501
 
502
- #: includes/class-freemius.php:17912
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
505
 
506
- #: includes/class-freemius.php:17923
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
509
 
510
- #: includes/class-freemius.php:17934
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "None of the %s's plans supports a trial period."
513
 
514
- #: includes/class-freemius.php:17984
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
517
 
518
- #: includes/class-freemius.php:18020
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
521
 
522
- #: includes/class-freemius.php:18039
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
525
 
526
- #: includes/class-freemius.php:18346
527
  msgid "Version %s was released."
528
  msgstr "גרסה %s הושקה."
529
 
530
- #: includes/class-freemius.php:18346
531
  msgid "Please download %s."
532
  msgstr "נא להוריד את %s."
533
 
534
- #: includes/class-freemius.php:18353
535
  msgid "the latest %s version here"
536
  msgstr "גרסת ה-%s האחרונה כאן"
537
 
538
- #: includes/class-freemius.php:18358
539
  msgid "New"
540
  msgstr "חדש"
541
 
542
- #: includes/class-freemius.php:18363
543
  msgid "Seems like you got the latest release."
544
  msgstr "נראה שיש לך את הגרסה האחרונה."
545
 
546
- #: includes/class-freemius.php:18364
547
  msgid "You are all good!"
548
  msgstr "את\\ה מסודר!"
549
 
550
- #: includes/class-freemius.php:18632
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
 
554
- #: includes/class-freemius.php:18769
555
  msgid "Site successfully opted in."
556
  msgstr "Site successfully opted in."
557
 
558
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
559
  msgid "Awesome"
560
  msgstr "אדיר"
561
 
562
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
565
 
566
- #: includes/class-freemius.php:18787
567
  msgid "Thank you!"
568
  msgstr "תודה רבה!"
569
 
570
- #: includes/class-freemius.php:18794
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
573
 
574
- #: includes/class-freemius.php:18923
575
  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."
576
  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."
577
 
578
- #: includes/class-freemius.php:18929
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
581
 
582
- #: includes/class-freemius.php:18934
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s הינו הבעלים החד של חשבון זה."
585
 
586
- #: includes/class-freemius.php:18936
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "מזל טוב"
590
 
591
- #: includes/class-freemius.php:18956
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
 
595
- #: includes/class-freemius.php:18957
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
 
599
- #: includes/class-freemius.php:18964
600
  msgid "Change Ownership"
601
  msgstr "עדכון בעלות"
602
 
603
- #: includes/class-freemius.php:18972
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
606
 
607
- #: includes/class-freemius.php:18984
608
  msgid "Please provide your full name."
609
  msgstr "נא למלא את שמך המלא."
610
 
611
- #: includes/class-freemius.php:18989
612
  msgid "Your name was successfully updated."
613
  msgstr "שמך עודכן בהצלחה."
614
 
615
- #: includes/class-freemius.php:19050
616
  msgid "You have successfully updated your %s."
617
  msgstr "עידכנת בהצלחה את ה%s."
618
 
619
- #: includes/class-freemius.php:19190
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
 
623
- #: includes/class-freemius.php:19191
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "לתשמות לבך"
627
 
628
- #: includes/class-freemius.php:19621
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "היי"
632
 
633
- #: includes/class-freemius.php:19621
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
636
 
637
- #: includes/class-freemius.php:19629
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
640
 
641
- #: includes/class-freemius.php:19630
642
  msgid "No credit card required"
643
  msgstr "לא נדרש כרטיס אשראי"
644
 
645
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "התחלת ניסיון חינם"
649
 
650
- #: includes/class-freemius.php:19714
651
  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!"
652
  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!"
653
 
654
- #: includes/class-freemius.php:19723
655
  msgid "Learn more"
656
  msgstr "Learn more"
657
 
658
- #: includes/class-freemius.php19873, templates/account.php406,
659
- #: templates/account.php509, templates/connect.php171,
660
- #: templates/connect.php421, templates/forms/license-activation.php24,
661
- #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "הפעלת רישיון"
664
 
665
- #: includes/class-freemius.php19874, templates/account.php469,
666
- #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "שינוי רישיון"
669
 
670
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Opt Out"
673
 
674
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Opt In"
679
 
680
- #: includes/class-freemius.php:20187
681
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
 
684
- #: includes/class-freemius.php:20195
685
  msgid "Activate %s features"
686
  msgstr "Activate %s features"
687
 
688
- #: includes/class-freemius.php:20208
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
691
 
692
- #: includes/class-freemius.php:20212
693
  msgid "Download the latest %s version"
694
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
695
 
696
- #: includes/class-freemius.php:20216
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
699
 
700
- #: includes/class-freemius.php:20218
701
  msgid "How to upload and activate?"
702
  msgstr "איך להעלות ולהפעיל?"
703
 
704
- #: includes/class-freemius.php:20352
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
 
708
- #: includes/class-freemius.php:20513
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Auto installation only works for opted-in users."
711
 
712
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
713
- #: includes/class-fs-plugin-updater.php1060,
714
- #: includes/class-fs-plugin-updater.php:1074
715
  msgid "Invalid module ID."
716
  msgstr "מזהה המודול לא תקני."
717
 
718
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
719
  msgid "Premium version already active."
720
  msgstr "הגרסה בתשלום כבר פעילה."
721
 
722
- #: includes/class-freemius.php:20539
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
725
 
726
- #: includes/class-freemius.php:20546
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
 
730
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium add-on version already installed."
733
 
734
- #: includes/class-freemius.php:20909
735
  msgid "View paid features"
736
  msgstr "צפה בפיטצ'רים שבתשלום"
737
 
738
- #: includes/class-freemius.php:21229
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Thank you so much for using %s and its add-ons!"
741
 
742
- #: includes/class-freemius.php:21230
743
  msgid "Thank you so much for using %s!"
744
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
745
 
746
- #: includes/class-freemius.php:21236
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
749
 
750
- #: includes/class-freemius.php:21240
751
  msgid "Thank you so much for using our products!"
752
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
753
 
754
- #: includes/class-freemius.php:21241
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
757
 
758
- #: includes/class-freemius.php:21260
759
  msgid "%s and its add-ons"
760
  msgstr "%s and its add-ons"
761
 
762
- #: includes/class-freemius.php:21269
763
  msgid "Products"
764
  msgstr "מוצרים"
765
 
766
- #: includes/class-freemius.php21276, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "כן"
769
 
770
- #: includes/class-freemius.php21277, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
773
 
774
- #: includes/class-freemius.php21278, templates/connect.php:278
775
  msgid "No"
776
  msgstr "לא"
777
 
778
- #: includes/class-freemius.php21280, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
781
 
782
- #: includes/class-freemius.php:21290
783
- 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 🙂"
784
- 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 🙂"
785
 
786
- #: includes/class-freemius.php21292, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
789
 
790
- #: includes/class-freemius.php:21574
791
  msgid "License key is empty."
792
  msgstr "מפתח הרישיון ריק."
793
 
@@ -801,628 +821,680 @@ msgstr "חידוש רישיון"
801
  msgid "Buy license"
802
  msgstr "Buy license"
803
 
804
- #: includes/class-fs-plugin-updater.php:278
 
805
  msgid "There is a %s of %s available."
806
  msgstr "There is a %s of %s available."
807
 
808
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
809
  msgid "new version"
810
  msgstr "new version"
811
 
812
- #: includes/class-fs-plugin-updater.php:305
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Important Upgrade Notice:"
815
 
816
- #: includes/class-fs-plugin-updater.php:1125
817
  msgid "Installing plugin: %s"
818
  msgstr "Installing plugin: %s"
819
 
820
- #: includes/class-fs-plugin-updater.php:1166
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
 
824
- #: includes/class-fs-plugin-updater.php:1348
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
 
828
- #: includes/fs-plugin-info-dialog.php369,
829
- #: templates/account/partials/addon.php:292
 
 
 
 
830
  msgctxt "verb"
831
  msgid "Purchase"
832
  msgstr "רכישה"
833
 
834
- #: includes/fs-plugin-info-dialog.php:372
835
  msgid "Start my free %s"
836
  msgstr "התחל את %s הניסיון שלי"
837
 
838
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
839
  msgid "Install Free Version Now"
840
  msgstr "התקן גרסה חינאמית עכשיו"
841
 
842
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
843
- #: templates/account/partials/addon.php272,
844
- #: templates/account/partials/addon.php:322
 
845
  msgid "Install Now"
846
  msgstr "התקן עכשיו"
847
 
848
- #: includes/fs-plugin-info-dialog.php:425
849
  msgctxt "as download latest version"
850
  msgid "Download Latest Free Version"
851
  msgstr "Download Latest Free Version"
852
 
853
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
854
- #: templates/account/partials/addon.php:21
855
  msgctxt "as download latest version"
856
  msgid "Download Latest"
857
  msgstr "הורד גרסה אחרונה"
858
 
859
- #: includes/fs-plugin-info-dialog.php:436
860
- msgid "Install Free Version Update Now"
861
- msgstr "התקן עדכון גרסה חינאמית עכשיו"
862
-
863
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
864
- msgid "Install Update Now"
865
- msgstr "התקן עדכון במיידי"
866
-
867
- #: includes/fs-plugin-info-dialog.php:448
868
- msgid "Newer Free Version (%s) Installed"
869
- msgstr "Newer Free Version (%s) Installed"
870
-
871
- #: includes/fs-plugin-info-dialog.php:449
872
- msgid "Newer Version (%s) Installed"
873
- msgstr "גרסה חדשה (%s) הותקנה"
874
 
875
- #: includes/fs-plugin-info-dialog.php:457
876
- msgid "Latest Free Version Installed"
877
- msgstr "גרסה חינאמית עדכנית הותקנה"
878
 
879
- #: includes/fs-plugin-info-dialog.php:458
880
- msgid "Latest Version Installed"
881
- msgstr "הגרסה האחרונה הותקנה"
 
882
 
883
- #: includes/fs-plugin-info-dialog.php:613
884
  msgctxt "Plugin installer section title"
885
  msgid "Description"
886
  msgstr "תיאור"
887
 
888
- #: includes/fs-plugin-info-dialog.php:614
889
  msgctxt "Plugin installer section title"
890
  msgid "Installation"
891
  msgstr "התקנה"
892
 
893
- #: includes/fs-plugin-info-dialog.php:615
894
  msgctxt "Plugin installer section title"
895
  msgid "FAQ"
896
  msgstr "שאלות נפוצות"
897
 
898
- #: includes/fs-plugin-info-dialog.php616,
899
  #: templates/plugin-info/description.php:55
900
  msgid "Screenshots"
901
  msgstr "צילומי מסך"
902
 
903
- #: includes/fs-plugin-info-dialog.php:617
904
  msgctxt "Plugin installer section title"
905
  msgid "Changelog"
906
  msgstr "לוג שינויים"
907
 
908
- #: includes/fs-plugin-info-dialog.php:618
909
  msgctxt "Plugin installer section title"
910
  msgid "Reviews"
911
  msgstr "ביקורות"
912
 
913
- #: includes/fs-plugin-info-dialog.php:619
914
  msgctxt "Plugin installer section title"
915
  msgid "Other Notes"
916
  msgstr "היערות נוספות"
917
 
918
- #: includes/fs-plugin-info-dialog.php:634
919
  msgctxt "Plugin installer section title"
920
  msgid "Features & Pricing"
921
  msgstr "פיטצ'רים ומחירים"
922
 
923
- #: includes/fs-plugin-info-dialog.php:644
924
  msgid "Plugin Install"
925
  msgstr "התקנת תוסף"
926
 
927
- #: includes/fs-plugin-info-dialog.php:716
928
  msgctxt "e.g. Professional Plan"
929
  msgid "%s Plan"
930
  msgstr "חבילה %s"
931
 
932
- #: includes/fs-plugin-info-dialog.php:742
933
  msgctxt "e.g. the best product"
934
  msgid "Best"
935
  msgstr "הכי טוב"
936
 
937
- #: includes/fs-plugin-info-dialog.php748,
938
- #: includes/fs-plugin-info-dialog.php:768
939
  msgctxt "as every month"
940
  msgid "Monthly"
941
  msgstr "חודשי"
942
 
943
- #: includes/fs-plugin-info-dialog.php:751
944
  msgctxt "as once a year"
945
  msgid "Annual"
946
  msgstr "שנתי"
947
 
948
- #: includes/fs-plugin-info-dialog.php:754
949
  msgid "Lifetime"
950
  msgstr "לכל החיים"
951
 
952
- #: includes/fs-plugin-info-dialog.php768,
953
- #: includes/fs-plugin-info-dialog.php770,
954
- #: includes/fs-plugin-info-dialog.php:772
955
  msgctxt "e.g. billed monthly"
956
  msgid "Billed %s"
957
  msgstr "מחוייב על בסיס %s"
958
 
959
- #: includes/fs-plugin-info-dialog.php:770
960
  msgctxt "as once a year"
961
  msgid "Annually"
962
  msgstr "שנתי"
963
 
964
- #: includes/fs-plugin-info-dialog.php:772
965
  msgctxt "as once a year"
966
  msgid "Once"
967
  msgstr "פעם אחת"
968
 
969
- #: includes/fs-plugin-info-dialog.php:778
970
  msgid "Single Site License"
971
  msgstr "רשיון לאתר אחד"
972
 
973
- #: includes/fs-plugin-info-dialog.php:780
974
  msgid "Unlimited Licenses"
975
  msgstr "רשיונות ללא הגבלה"
976
 
977
- #: includes/fs-plugin-info-dialog.php:782
978
  msgid "Up to %s Sites"
979
  msgstr "עד %s אתרים"
980
 
981
- #: includes/fs-plugin-info-dialog.php792,
982
  #: templates/plugin-info/features.php:82
983
  msgctxt "as monthly period"
984
  msgid "mo"
985
  msgstr "חודשים"
986
 
987
- #: includes/fs-plugin-info-dialog.php799,
988
  #: templates/plugin-info/features.php:80
989
  msgctxt "as annual period"
990
  msgid "year"
991
  msgstr "שנה"
992
 
993
- #: includes/fs-plugin-info-dialog.php:853
994
  msgctxt "noun"
995
  msgid "Price"
996
  msgstr "מחיר"
997
 
998
- #: includes/fs-plugin-info-dialog.php:901
999
  msgid "Save %s"
1000
  msgstr "שמירת %s"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php:911
1003
  msgid "No commitment for %s - cancel anytime"
1004
  msgstr "No commitment for %s - cancel anytime"
1005
 
1006
- #: includes/fs-plugin-info-dialog.php:914
1007
  msgid "After your free %s, pay as little as %s"
1008
  msgstr "After your free %s, pay as little as %s"
1009
 
1010
- #: includes/fs-plugin-info-dialog.php:925
1011
  msgid "Details"
1012
  msgstr "פרטים"
1013
 
1014
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1015
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1016
- #: templates/account/partials/addon.php:32
1017
  msgctxt "product version"
1018
  msgid "Version"
1019
  msgstr "גרסה"
1020
 
1021
- #: includes/fs-plugin-info-dialog.php:936
1022
  msgctxt "as the plugin author"
1023
  msgid "Author"
1024
  msgstr "Author"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:943
1027
  msgid "Last Updated"
1028
  msgstr "עודכן לאחרונה"
1029
 
1030
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1031
  msgctxt "x-ago"
1032
  msgid "%s ago"
1033
  msgstr "לפני %s"
1034
 
1035
- #: includes/fs-plugin-info-dialog.php:957
1036
  msgid "Requires WordPress Version"
1037
  msgstr "Requires WordPress Version"
1038
 
1039
- #: includes/fs-plugin-info-dialog.php:958
1040
  msgid "%s or higher"
1041
  msgstr "%s ומעלה"
1042
 
1043
- #: includes/fs-plugin-info-dialog.php:965
1044
  msgid "Compatible up to"
1045
  msgstr "Compatible up to"
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:973
1048
  msgid "Downloaded"
1049
  msgstr "Downloaded"
1050
 
1051
- #: includes/fs-plugin-info-dialog.php:977
1052
  msgid "%s time"
1053
  msgstr "פעם %s"
1054
 
1055
- #: includes/fs-plugin-info-dialog.php:979
1056
  msgid "%s times"
1057
  msgstr "%s פעמים"
1058
 
1059
- #: includes/fs-plugin-info-dialog.php:989
1060
  msgid "WordPress.org Plugin Page"
1061
  msgstr "WordPress.org Plugin Page"
1062
 
1063
- #: includes/fs-plugin-info-dialog.php:997
1064
  msgid "Plugin Homepage"
1065
  msgstr "עמוד התוסף"
1066
 
1067
- #: includes/fs-plugin-info-dialog.php1005,
1068
- #: includes/fs-plugin-info-dialog.php:1087
1069
  msgid "Donate to this plugin"
1070
  msgstr "תרום לתוסף"
1071
 
1072
- #: includes/fs-plugin-info-dialog.php:1012
1073
  msgid "Average Rating"
1074
  msgstr "דירוג ממוצע"
1075
 
1076
- #: includes/fs-plugin-info-dialog.php:1019
1077
  msgid "based on %s"
1078
  msgstr "מבוסס על %s"
1079
 
1080
- #: includes/fs-plugin-info-dialog.php:1023
1081
  msgid "%s rating"
1082
  msgstr "דרוג %s"
1083
 
1084
- #: includes/fs-plugin-info-dialog.php:1025
1085
  msgid "%s ratings"
1086
  msgstr "%s דרוגים"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php:1040
1089
  msgid "%s star"
1090
  msgstr "כוכב %s"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php:1042
1093
  msgid "%s stars"
1094
  msgstr "%s כוכבים"
1095
 
1096
- #: includes/fs-plugin-info-dialog.php:1053
1097
  msgid "Click to see reviews that provided a rating of %s"
1098
  msgstr "Click to see reviews that provided a rating of %s"
1099
 
1100
- #: includes/fs-plugin-info-dialog.php:1066
1101
  msgid "Contributors"
1102
  msgstr "תורמים"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php1095,
1105
- #: includes/fs-plugin-info-dialog.php:1097
1106
  msgid "Warning"
1107
  msgstr "Warning"
1108
 
1109
- #: includes/fs-plugin-info-dialog.php:1095
1110
  msgid "This plugin has not been tested with your current version of WordPress."
1111
  msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
1112
 
1113
- #: includes/fs-plugin-info-dialog.php:1097
1114
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1115
  msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
1116
 
1117
- #: includes/fs-plugin-info-dialog.php:1116
1118
  msgid "Paid add-on must be deployed to Freemius."
1119
  msgstr "Paid add-on must be deployed to Freemius."
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1117
1122
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1123
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1124
 
1125
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1126
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  #: templates/account/partials/site.php:295
1128
  msgid "Downgrading your plan"
1129
  msgstr "Downgrading your plan"
1130
 
1131
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1132
- #: templates/account/partials/addon.php23,
1133
  #: templates/account/partials/site.php:296
1134
  msgid "Cancelling the subscription"
1135
  msgstr "Cancelling the subscription"
1136
 
1137
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1138
  #. subscription'
1139
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1140
- #: templates/account/partials/addon.php25,
1141
- #: templates/account/partials/site.php:298
1142
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1144
 
1145
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1146
- #: templates/account/partials/addon.php26,
1147
  #: templates/account/partials/site.php:299
1148
  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."
1149
  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."
1150
 
1151
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1152
- #: templates/account/partials/addon.php:27
1153
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
  msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
1155
 
1156
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1157
- #: templates/account/partials/addon.php28,
1158
  #: templates/account/partials/site.php:300
1159
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1161
 
1162
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1163
- #: templates/account/partials/addon.php29,
1164
  #: templates/account/partials/site.php:301
1165
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1167
 
1168
  #. translators: %s: Plan title (e.g. "Professional")
1169
- #: templates/account.php90,
1170
  #: templates/account/partials/activate-license-button.php31,
1171
- #: templates/account/partials/addon.php:31
1172
  msgid "Activate %s Plan"
1173
  msgstr "הפעל חבילה %s"
1174
 
1175
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1176
- #: templates/account.php93, templates/account/partials/addon.php34,
1177
  #: templates/account/partials/site.php:275
1178
  msgid "Auto renews in %s"
1179
  msgstr "עדכן אוטומטית בעוד %s"
1180
 
1181
  #. translators: %s: Time period (e.g. Expires in "2 months")
1182
- #: templates/account.php95, templates/account/partials/addon.php36,
1183
  #: templates/account/partials/site.php:277
1184
  msgid "Expires in %s"
1185
  msgstr "פג תוקף בעוד %s"
1186
 
1187
- #: templates/account.php96, templates/account/partials/addon.php:37
1188
  msgctxt "as synchronize license"
1189
  msgid "Sync License"
1190
  msgstr "סינכרן רישיון"
1191
 
1192
- #: templates/account.php97, templates/account/partials/addon.php:38
1193
  msgid "Cancel Trial"
1194
  msgstr "ביט"
1195
 
1196
- #: templates/account.php98, templates/account/partials/addon.php:39
1197
  msgid "Change Plan"
1198
  msgstr "שינוי חבילה"
1199
 
1200
- #: templates/account.php99, templates/account/partials/addon.php:40
1201
  msgctxt "verb"
1202
  msgid "Upgrade"
1203
  msgstr "שדרג"
1204
 
1205
- #: templates/account.php101, templates/account/partials/addon.php42,
1206
  #: templates/account/partials/site.php:302
1207
  msgctxt "verb"
1208
  msgid "Downgrade"
1209
  msgstr "שנמך"
1210
 
1211
- #: templates/account.php103, templates/add-ons.php130,
1212
  #: templates/plugin-info/features.php72,
1213
- #: templates/account/partials/addon.php44,
1214
  #: templates/account/partials/site.php:31
1215
  msgid "Free"
1216
  msgstr "חינם"
1217
 
1218
- #: templates/account.php104, templates/account/partials/addon.php:45
1219
- msgid "Activate"
1220
- msgstr "הפעלה"
1221
-
1222
- #: templates/account.php105, templates/debug.php371,
1223
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1224
- #: templates/account/partials/addon.php:46
1225
  msgctxt "as product pricing plan"
1226
  msgid "Plan"
1227
  msgstr "חבילה"
1228
 
1229
- #: templates/account.php:158
 
 
 
 
1230
  msgid "Free Trial"
1231
  msgstr "ניסיון חינם"
1232
 
1233
- #: templates/account.php:169
1234
  msgid "Account Details"
1235
  msgstr "פרטי חשבון"
1236
 
1237
- #: templates/account.php:179
 
 
 
 
1238
  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?"
1239
  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?"
1240
 
1241
- #: templates/account.php:181
1242
  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?"
1243
  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?"
1244
 
1245
- #: templates/account.php:184
1246
  msgid "Delete Account"
1247
  msgstr "מחיקת חשבון"
1248
 
1249
- #: templates/account.php196, templates/account/partials/addon.php159,
1250
  #: templates/account/partials/deactivate-license-button.php:35
1251
  msgid "Deactivate License"
1252
  msgstr "שיחרור רישיון"
1253
 
1254
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1255
  msgid "Are you sure you want to proceed?"
1256
  msgstr "האם את/ה בטוח רוצה להמשיך?"
1257
 
1258
- #: templates/account.php219, templates/account/partials/addon.php:182
1259
  msgid "Cancel Subscription"
1260
  msgstr "בטל מנוי"
1261
 
1262
- #: templates/account.php:247
1263
  msgctxt "as synchronize"
1264
  msgid "Sync"
1265
  msgstr "סינכרון"
1266
 
1267
- #: templates/account.php261, templates/debug.php:487
1268
  msgid "Name"
1269
  msgstr "שם"
1270
 
1271
- #: templates/account.php267, templates/debug.php:488
1272
  msgid "Email"
1273
  msgstr "דוא\"ל"
1274
 
1275
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1276
  msgid "User ID"
1277
  msgstr "מזהה משתמש"
1278
 
1279
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1280
  msgid "Site ID"
1281
  msgstr "מזהה אתר"
1282
 
1283
- #: templates/account.php:285
1284
  msgid "No ID"
1285
  msgstr "אין מזהה"
1286
 
1287
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1288
- #: templates/debug.php453, templates/debug.php490,
1289
  #: templates/account/partials/site.php:219
1290
  msgid "Public Key"
1291
  msgstr "מפתח פומבי"
1292
 
1293
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1294
- #: templates/debug.php491, templates/account/partials/site.php:231
1295
  msgid "Secret Key"
1296
  msgstr "מפתח סודי"
1297
 
1298
- #: templates/account.php:299
1299
  msgctxt "as secret encryption key missing"
1300
  msgid "No Secret"
1301
  msgstr "אין מפתח סודי"
1302
 
1303
- #: templates/account.php318, templates/account/partials/site.php112,
1304
  #: templates/account/partials/site.php:114
1305
  msgid "Trial"
1306
  msgstr "ניסיון"
1307
 
1308
- #: templates/account.php337, templates/debug.php531,
1309
  #: templates/account/partials/site.php:248
1310
  msgid "License Key"
1311
  msgstr "License Key"
1312
 
1313
- #: templates/account.php:367
 
 
 
 
1314
  msgid "not verified"
1315
  msgstr "לא מאומת"
1316
 
1317
- #: templates/account.php376, templates/account/partials/addon.php:120
1318
  msgid "Expired"
1319
  msgstr "פג תוקף"
1320
 
1321
- #: templates/account.php:428
1322
  msgid "Premium version"
1323
  msgstr "גירסת פרימיום"
1324
 
1325
- #: templates/account.php:430
1326
  msgid "Free version"
1327
  msgstr "גירסה חינאמית"
1328
 
1329
- #: templates/account.php:442
1330
  msgid "Verify Email"
1331
  msgstr "אמת כתובת דוא\"ל"
1332
 
1333
- #: templates/account.php:453
1334
  msgid "Download %s Version"
1335
  msgstr "הורד גרסת %s"
1336
 
1337
- #: templates/account.php467, templates/account.php649,
1338
  #: templates/account/partials/site.php237,
1339
  #: templates/account/partials/site.php:255
1340
  msgctxt "verb"
1341
  msgid "Show"
1342
  msgstr "הצג"
1343
 
1344
- #: templates/account.php:481
1345
  msgid "What is your %s?"
1346
  msgstr "מה ה%s שלך?"
1347
 
1348
- #: templates/account.php489, templates/account/billing.php:27
1349
  msgctxt "verb"
1350
  msgid "Edit"
1351
  msgstr "ערוך"
1352
 
1353
- #: templates/account.php:502
1354
  msgid "Sites"
1355
  msgstr "אתרים"
1356
 
1357
- #: templates/account.php:513
1358
  msgid "Search by address"
1359
  msgstr "חפש לפי כתובת"
1360
 
1361
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1362
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1363
- #: templates/debug.php524, templates/debug.php597,
1364
- #: templates/account/payments.php35, templates/debug/logger.php:21
1365
- msgid "ID"
1366
- msgstr "מזהה"
1367
-
1368
- #: templates/account.php523, templates/debug.php:367
1369
  msgid "Address"
1370
  msgstr "כתובת"
1371
 
1372
- #: templates/account.php:524
1373
  msgid "License"
1374
  msgstr "רישיון"
1375
 
1376
- #: templates/account.php:525
1377
  msgid "Plan"
1378
  msgstr "חבילה"
1379
 
1380
- #: templates/account.php:573
1381
  msgctxt "as software license"
1382
  msgid "License"
1383
  msgstr "רישיון"
1384
 
1385
- #: templates/account.php:643
1386
  msgctxt "verb"
1387
  msgid "Hide"
1388
  msgstr "הסתר"
1389
 
1390
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1391
  msgid "Cancelling %s"
1392
  msgstr "Cancelling %s"
1393
 
1394
- #: templates/account.php686, templates/account.php703,
1395
  #: templates/forms/subscription-cancellation.php27,
1396
- #: templates/forms/deactivation/form.php:117
1397
  msgid "trial"
1398
  msgstr "trial"
1399
 
1400
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1401
  msgid "Cancelling %s..."
1402
  msgstr "Cancelling %s..."
1403
 
1404
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1405
- #: templates/forms/deactivation/form.php:118
1406
  msgid "subscription"
1407
  msgstr "subscription"
1408
 
1409
- #: templates/account.php:718
1410
  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?"
1411
  msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1412
 
1413
- #: templates/add-ons.php:36
 
 
 
 
1414
  msgid "Add Ons for %s"
1415
  msgstr "הרחבות עבור %s"
1416
 
1417
- #: templates/add-ons.php:44
1418
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
  msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1420
 
1421
- #: templates/add-ons.php:139
1422
- msgid "View details"
1423
- msgstr "פרטים נוספים"
 
 
 
 
 
 
1424
 
1425
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1426
  #: templates/forms/resend-key.php:77
1427
  msgctxt "as close a window"
1428
  msgid "Dismiss"
@@ -1448,11 +1520,11 @@ msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות
1448
  msgid "Cancel Installation"
1449
  msgstr "בטל התקנה"
1450
 
1451
- #: templates/checkout.php:172
1452
  msgid "Checkout"
1453
  msgstr "Checkout"
1454
 
1455
- #: templates/checkout.php:172
1456
  msgid "PCI compliant"
1457
  msgstr "עומד בתקן PCI"
1458
 
@@ -1474,7 +1546,7 @@ msgstr "שליחה חוזרת של מייל האקטיבציה"
1474
  msgid "Thanks %s!"
1475
  msgstr "תודה %s!"
1476
 
1477
- #: templates/connect.php172, templates/forms/license-activation.php:43
1478
  msgid "Agree & Activate License"
1479
  msgstr "הסכמה והפעלת רישיון"
1480
 
@@ -1522,15 +1594,15 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i
1522
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1524
 
1525
- #: templates/connect.php253, templates/forms/license-activation.php:46
1526
  msgid "License key"
1527
  msgstr "מפתח רישיון"
1528
 
1529
- #: templates/connect.php256, templates/forms/license-activation.php:19
1530
  msgid "Can't find your license key?"
1531
  msgstr "האם אינך מוצא את מפתח הרישיון?"
1532
 
1533
- #: templates/connect.php315, templates/connect.php630,
1534
  #: templates/forms/deactivation/retry-skip.php:20
1535
  msgctxt "verb"
1536
  msgid "Skip"
@@ -1580,7 +1652,7 @@ msgstr "הפעלה, כיבוי והסרה"
1580
  msgid "Newsletter"
1581
  msgstr "ניוסלטר"
1582
 
1583
- #: templates/connect.php391, templates/forms/license-activation.php:38
1584
  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."
1585
  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."
1586
 
@@ -1592,10 +1664,6 @@ msgstr "מהן ההרשאות המוענקות?"
1592
  msgid "Don't have a license key?"
1593
  msgstr "האם אין ברשותך מפתח רישיון?"
1594
 
1595
- #: templates/connect.php:418
1596
- msgid "Activate Free Version"
1597
- msgstr "הפעלת גירסה חינאמית"
1598
-
1599
  #: templates/connect.php:420
1600
  msgid "Have a license key?"
1601
  msgstr "האם ברשותך רישיון?"
@@ -1612,12 +1680,12 @@ msgstr "License Agreement"
1612
  msgid "Terms of Service"
1613
  msgstr "תנאי השירות"
1614
 
1615
- #: templates/connect.php:766
1616
  msgctxt "as in the process of sending an email"
1617
  msgid "Sending email"
1618
  msgstr "שולח דוא\"ל"
1619
 
1620
- #: templates/connect.php:767
1621
  msgctxt "as activating plugin"
1622
  msgid "Activating"
1623
  msgstr "מפעיל"
@@ -1645,8 +1713,8 @@ msgctxt "as code debugging"
1645
  msgid "Debugging"
1646
  msgstr "דיבוג"
1647
 
1648
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1649
- #: templates/debug.php:492
1650
  msgid "Actions"
1651
  msgstr "פעולות"
1652
 
@@ -1682,191 +1750,191 @@ msgstr "Load DB Option"
1682
  msgid "Set DB Option"
1683
  msgstr "Set DB Option"
1684
 
1685
- #: templates/debug.php:180
1686
  msgid "Key"
1687
  msgstr "Key"
1688
 
1689
- #: templates/debug.php:181
1690
  msgid "Value"
1691
  msgstr "Value"
1692
 
1693
- #: templates/debug.php:197
1694
  msgctxt "as software development kit versions"
1695
  msgid "SDK Versions"
1696
  msgstr "גרסאות SDK"
1697
 
1698
- #: templates/debug.php:202
1699
  msgid "SDK Path"
1700
  msgstr "מיקום SDK"
1701
 
1702
- #: templates/debug.php203, templates/debug.php:242
1703
  msgid "Module Path"
1704
  msgstr "Module Path"
1705
 
1706
- #: templates/debug.php:204
1707
  msgid "Is Active"
1708
  msgstr "האם פעיל"
1709
 
1710
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1711
  msgid "Plugins"
1712
  msgstr "תוספים"
1713
 
1714
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1715
  msgid "Themes"
1716
  msgstr "תבניות"
1717
 
1718
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1719
  #: templates/debug/scheduled-crons.php:80
1720
  msgid "Slug"
1721
  msgstr "מזהה כתובת"
1722
 
1723
- #: templates/debug.php239, templates/debug.php:450
1724
  msgid "Title"
1725
  msgstr "כותרת"
1726
 
1727
- #: templates/debug.php:240
1728
  msgctxt "as application program interface"
1729
  msgid "API"
1730
  msgstr "API"
1731
 
1732
- #: templates/debug.php:241
1733
  msgid "Freemius State"
1734
  msgstr "מצב פרימיוס"
1735
 
1736
- #: templates/debug.php:245
1737
  msgid "Network Blog"
1738
  msgstr "Network Blog"
1739
 
1740
- #: templates/debug.php:246
1741
  msgid "Network User"
1742
  msgstr "משתמש רשת"
1743
 
1744
- #: templates/debug.php:283
1745
  msgctxt "as connection was successful"
1746
  msgid "Connected"
1747
  msgstr "מחובר"
1748
 
1749
- #: templates/debug.php:284
1750
  msgctxt "as connection blocked"
1751
  msgid "Blocked"
1752
  msgstr "חסום"
1753
 
1754
- #: templates/debug.php:320
1755
  msgid "Simulate Trial Promotion"
1756
  msgstr "Simulate Trial Promotion"
1757
 
1758
- #: templates/debug.php:332
1759
  msgid "Simulate Network Upgrade"
1760
  msgstr "סמלוץ עדכון לרשת"
1761
 
1762
- #: templates/debug.php:358
1763
  msgid "%s Installs"
1764
  msgstr "%s התקנות"
1765
 
1766
- #: templates/debug.php:360
1767
  msgctxt "like websites"
1768
  msgid "Sites"
1769
  msgstr "אתרים"
1770
 
1771
- #: templates/debug.php366, templates/account/partials/site.php:148
1772
  msgid "Blog ID"
1773
  msgstr "מזהה בלוג"
1774
 
1775
- #: templates/debug.php431, templates/debug.php509,
1776
- #: templates/account/partials/addon.php:339
1777
  msgctxt "verb"
1778
  msgid "Delete"
1779
  msgstr "מחק"
1780
 
1781
- #: templates/debug.php:445
1782
  msgid "Add Ons of module %s"
1783
  msgstr "Add Ons of module %s"
1784
 
1785
- #: templates/debug.php:482
1786
  msgid "Users"
1787
  msgstr "משתמשים"
1788
 
1789
- #: templates/debug.php:489
1790
  msgid "Verified"
1791
  msgstr "מאומת"
1792
 
1793
- #: templates/debug.php:520
1794
  msgid "%s Licenses"
1795
  msgstr "%s Licenses"
1796
 
1797
- #: templates/debug.php:525
1798
  msgid "Plugin ID"
1799
  msgstr "Plugin ID"
1800
 
1801
- #: templates/debug.php:527
1802
  msgid "Plan ID"
1803
  msgstr "Plan ID"
1804
 
1805
- #: templates/debug.php:528
1806
  msgid "Quota"
1807
  msgstr "Quota"
1808
 
1809
- #: templates/debug.php:529
1810
  msgid "Activated"
1811
  msgstr "Activated"
1812
 
1813
- #: templates/debug.php:530
1814
  msgid "Blocking"
1815
  msgstr "Blocking"
1816
 
1817
- #: templates/debug.php:532
1818
  msgctxt "as expiration date"
1819
  msgid "Expiration"
1820
  msgstr "תפוגה"
1821
 
1822
- #: templates/debug.php:555
1823
  msgid "Debug Log"
1824
  msgstr "Debug Log"
1825
 
1826
- #: templates/debug.php:559
1827
  msgid "All Types"
1828
  msgstr "כל הסוגים"
1829
 
1830
- #: templates/debug.php:566
1831
  msgid "All Requests"
1832
  msgstr "כל הבקשות"
1833
 
1834
- #: templates/debug.php571, templates/debug.php600,
1835
  #: templates/debug/logger.php:25
1836
  msgid "File"
1837
  msgstr "קובץ"
1838
 
1839
- #: templates/debug.php572, templates/debug.php598,
1840
  #: templates/debug/logger.php:23
1841
  msgid "Function"
1842
  msgstr "פונקציה"
1843
 
1844
- #: templates/debug.php:573
1845
  msgid "Process ID"
1846
  msgstr "Process ID"
1847
 
1848
- #: templates/debug.php:574
1849
  msgid "Logger"
1850
  msgstr "Logger"
1851
 
1852
- #: templates/debug.php575, templates/debug.php599,
1853
  #: templates/debug/logger.php:24
1854
  msgid "Message"
1855
  msgstr "הודעה"
1856
 
1857
- #: templates/debug.php:577
1858
  msgid "Filter"
1859
  msgstr "פילטר"
1860
 
1861
- #: templates/debug.php:585
1862
  msgid "Download"
1863
  msgstr "הורדה"
1864
 
1865
- #: templates/debug.php596, templates/debug/logger.php:22
1866
  msgid "Type"
1867
  msgstr "סוג"
1868
 
1869
- #: templates/debug.php601, templates/debug/logger.php:26
1870
  msgid "Timestamp"
1871
  msgstr "Timestamp"
1872
 
@@ -1893,53 +1961,53 @@ msgstr "Freemius API"
1893
  msgid "Requests"
1894
  msgstr "Requests"
1895
 
1896
- #: templates/account/billing.php:28
1897
  msgctxt "verb"
1898
  msgid "Update"
1899
  msgstr "עדכן"
1900
 
1901
- #: templates/account/billing.php:39
1902
  msgid "Billing"
1903
  msgstr "בילינג"
1904
 
1905
- #: templates/account/billing.php44, templates/account/billing.php:44
1906
  msgid "Business name"
1907
  msgstr "שם עסק"
1908
 
1909
- #: templates/account/billing.php45, templates/account/billing.php:45
1910
  msgid "Tax / VAT ID"
1911
  msgstr "ח.פ."
1912
 
1913
- #: templates/account/billing.php48, templates/account/billing.php48,
1914
- #: templates/account/billing.php49, templates/account/billing.php:49
1915
  msgid "Address Line %d"
1916
  msgstr "כתובת %s"
1917
 
1918
- #: templates/account/billing.php52, templates/account/billing.php:52
1919
  msgid "City"
1920
  msgstr "עיר"
1921
 
1922
- #: templates/account/billing.php52, templates/account/billing.php:52
1923
  msgid "Town"
1924
  msgstr "כפר"
1925
 
1926
- #: templates/account/billing.php53, templates/account/billing.php:53
1927
  msgid "ZIP / Postal Code"
1928
  msgstr "מיקוד / תא דואר"
1929
 
1930
- #: templates/account/billing.php:308
1931
  msgid "Country"
1932
  msgstr "מדינה"
1933
 
1934
- #: templates/account/billing.php:310
1935
  msgid "Select Country"
1936
  msgstr "בחר מדינה"
1937
 
1938
- #: templates/account/billing.php317, templates/account/billing.php:318
1939
  msgid "State"
1940
  msgstr "מחוז/מדינה"
1941
 
1942
- #: templates/account/billing.php317, templates/account/billing.php:318
1943
  msgid "Province"
1944
  msgstr "פרובינציה"
1945
 
@@ -2191,11 +2259,11 @@ msgstr "בטל"
2191
  msgid "Become an affiliate"
2192
  msgstr "Become an affiliate"
2193
 
2194
- #: templates/forms/license-activation.php:20
2195
  msgid "Please enter the license key that you received in the email right after the purchase:"
2196
  msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל שלך לאחר השלמת הרכישה."
2197
 
2198
- #: templates/forms/license-activation.php:25
2199
  msgid "Update License"
2200
  msgstr "עדכון רישיון"
2201
 
@@ -2262,6 +2330,14 @@ msgstr "Cancel %s - I no longer need any security & feature updates, nor support
2262
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2264
 
 
 
 
 
 
 
 
 
2265
  #: templates/forms/subscription-cancellation.php:103
2266
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
@@ -2275,7 +2351,7 @@ msgid "Proceed"
2275
  msgstr "Proceed"
2276
 
2277
  #: templates/forms/subscription-cancellation.php191,
2278
- #: templates/forms/deactivation/form.php:150
2279
  msgid "Cancel %s & Proceed"
2280
  msgstr "Cancel %s & Proceed"
2281
 
@@ -2287,38 +2363,42 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s
2287
  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."
2288
  msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2289
 
2290
- #: templates/js/style-premium-theme.php:37
2291
  msgid "Premium"
2292
  msgstr "Premium"
2293
 
2294
- #: templates/partials/network-activation.php:23
 
 
 
 
2295
  msgid "Activate license on all sites in the network."
2296
  msgstr "הפעלת רישיון על כל האתרים ברשת."
2297
 
2298
- #: templates/partials/network-activation.php:24
2299
  msgid "Apply on all sites in the network."
2300
  msgstr "יישום על כל האתרים ברשת."
2301
 
2302
- #: templates/partials/network-activation.php:27
2303
  msgid "Activate license on all pending sites."
2304
  msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים."
2305
 
2306
- #: templates/partials/network-activation.php:28
2307
  msgid "Apply on all pending sites."
2308
  msgstr "יישום על כל האתרים התלויים והעומדים."
2309
 
2310
- #: templates/partials/network-activation.php36,
2311
- #: templates/partials/network-activation.php:68
2312
  msgid "allow"
2313
  msgstr "אפשר"
2314
 
2315
- #: templates/partials/network-activation.php38,
2316
- #: templates/partials/network-activation.php:70
2317
  msgid "delegate"
2318
  msgstr "האצל"
2319
 
2320
- #: templates/partials/network-activation.php41,
2321
- #: templates/partials/network-activation.php:73
2322
  msgid "skip"
2323
  msgstr "דלג"
2324
 
@@ -2344,19 +2424,14 @@ msgstr "נשארו %s"
2344
  msgid "Last license"
2345
  msgstr "רישיון אחרון"
2346
 
2347
- #: templates/account/partials/addon.php:115
2348
  msgid "Cancelled"
2349
  msgstr "בוטל"
2350
 
2351
- #: templates/account/partials/addon.php:125
2352
  msgid "No expiration"
2353
  msgstr "ללא תפוגה"
2354
 
2355
- #: templates/account/partials/addon.php264,
2356
- #: templates/account/partials/addon.php:317
2357
- msgid "Activate this add-on"
2358
- msgstr "הפעל את ההרחבה"
2359
-
2360
  #: templates/account/partials/site.php:181
2361
  msgid "Owner Name"
2362
  msgstr "שם הבעלים"
@@ -2381,47 +2456,47 @@ msgstr "מצטערים על חוסר הנעימות, אנחנו כאן כדי ל
2381
  msgid "Contact Support"
2382
  msgstr "צור קשר"
2383
 
2384
- #: templates/forms/deactivation/form.php:59
2385
  msgid "Anonymous feedback"
2386
  msgstr "פידבק אנונימי"
2387
 
2388
- #: templates/forms/deactivation/form.php:66
2389
  msgid "Deactivate"
2390
  msgstr "כיבוי"
2391
 
2392
- #: templates/forms/deactivation/form.php:68
2393
  msgid "Activate %s"
2394
  msgstr "Activate %s"
2395
 
2396
- #: templates/forms/deactivation/form.php:80
2397
  msgid "Quick Feedback"
2398
  msgstr "Quick Feedback"
2399
 
2400
- #: templates/forms/deactivation/form.php:84
2401
  msgid "If you have a moment, please let us know why you are %s"
2402
  msgstr "If you have a moment, please let us know why you are %s"
2403
 
2404
- #: templates/forms/deactivation/form.php:84
2405
  msgid "deactivating"
2406
  msgstr "deactivating"
2407
 
2408
- #: templates/forms/deactivation/form.php:84
2409
  msgid "switching"
2410
  msgstr "switching"
2411
 
2412
- #: templates/forms/deactivation/form.php:332
2413
  msgid "Submit & %s"
2414
  msgstr "Submit & %s"
2415
 
2416
- #: templates/forms/deactivation/form.php:353
2417
  msgid "Kindly tell us the reason so we can improve."
2418
  msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
2419
 
2420
- #: templates/forms/deactivation/form.php:478
2421
  msgid "Yes - %s"
2422
  msgstr "Yes - %s"
2423
 
2424
- #: templates/forms/deactivation/form.php:485
2425
  msgid "Skip & %s"
2426
  msgstr "דלג ו%s"
2427
 
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: 2019-06-05 13:40+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.php1838, templates/account.php:769
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:1845
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:2053
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:2055
38
  msgid "Error"
39
  msgstr "שגיאה"
40
 
41
+ #: includes/class-freemius.php:2445
42
  msgid "I found a better %s"
43
  msgstr "מצאתי %s יותר טוב"
44
 
45
+ #: includes/class-freemius.php:2447
46
  msgid "What's the %s's name?"
47
  msgstr "What's the %s's name?"
48
 
49
+ #: includes/class-freemius.php:2453
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:2455
54
  msgid "Deactivation"
55
  msgstr "דיאקטיבציה"
56
 
57
+ #: includes/class-freemius.php:2456
58
  msgid "Theme Switch"
59
  msgstr "החלפת תֵמָה"
60
 
61
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
62
  msgid "Other"
63
  msgstr "אחר"
64
 
65
+ #: includes/class-freemius.php:2473
66
  msgid "I no longer need the %s"
67
  msgstr "I no longer need the %s"
68
 
69
+ #: includes/class-freemius.php:2480
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:2486
74
  msgid "The %s broke my site"
75
  msgstr "ה%s הרס לי את האתר"
76
 
77
+ #: includes/class-freemius.php:2493
78
  msgid "The %s suddenly stopped working"
79
  msgstr "ה%s הפסיק פתאום לעבוד"
80
 
81
+ #: includes/class-freemius.php:2503
82
  msgid "I can't pay for it anymore"
83
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
84
 
85
+ #: includes/class-freemius.php:2505
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
88
 
89
+ #: includes/class-freemius.php:2511
90
  msgid "I don't like to share my information with you"
91
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
92
 
93
+ #: includes/class-freemius.php:2532
94
  msgid "The %s didn't work"
95
  msgstr "ה%s לא עבד"
96
 
97
+ #: includes/class-freemius.php:2542
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
100
 
101
+ #: includes/class-freemius.php:2550
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:2552
106
  msgid "What feature?"
107
  msgstr "איזה פיטצ'ר?"
108
 
109
+ #: includes/class-freemius.php:2556
110
  msgid "The %s is not working"
111
  msgstr "ה%s לא עובד"
112
 
113
+ #: includes/class-freemius.php:2558
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
116
 
117
+ #: includes/class-freemius.php:2562
118
  msgid "It's not what I was looking for"
119
  msgstr "חיפשתי משהו אחר"
120
 
121
+ #: includes/class-freemius.php:2564
122
  msgid "What you've been looking for?"
123
  msgstr "מה חיפשת?"
124
 
125
+ #: includes/class-freemius.php:2568
126
  msgid "The %s didn't work as expected"
127
  msgstr "ה%s לא עבד כמצופה"
128
 
129
+ #: includes/class-freemius.php:2570
130
  msgid "What did you expect?"
131
  msgstr "למה ציפית?"
132
 
133
+ #: includes/class-freemius.php3425, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "ניפוי תקלות פרימיוס"
136
 
137
+ #: includes/class-freemius.php:4177
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:4179
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:4186
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:4291
150
  msgid "Yes - do your thing"
151
  msgstr "כן - בצעו את מה שצריך"
152
 
153
+ #: includes/class-freemius.php:4296
154
  msgid "No - just deactivate"
155
  msgstr "לא - פשוט כבה"
156
 
157
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
158
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
159
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
160
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
161
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
162
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
163
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
164
  msgctxt "exclamation"
165
  msgid "Oops"
166
  msgstr "אופס"
167
 
168
+ #: includes/class-freemius.php:4410
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:4847
173
  msgctxt "addonX cannot run without pluginY"
174
  msgid "%s cannot run without %s."
175
  msgstr "%s לא יכול לעבוד ללא %s."
176
 
177
+ #: includes/class-freemius.php:4848
178
  msgctxt "addonX cannot run..."
179
  msgid "%s cannot run without the plugin."
180
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
181
 
182
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
183
+ #: includes/class-freemius.php:19475
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:5687
188
  msgid "Premium %s version was successfully activated."
189
  msgstr "Premium %s version was successfully activated."
190
 
191
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
192
  msgctxt ""
193
  msgid "W00t"
194
  msgstr "יש"
195
 
196
+ #: includes/class-freemius.php:5714
197
  msgid "You have a %s license."
198
  msgstr "יש לך רישיון %s."
199
 
200
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
201
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
202
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
203
+ #: includes/class-freemius.php:19229
204
  msgctxt "interjection expressing joy or exuberance"
205
  msgid "Yee-haw"
206
  msgstr "יששש"
207
 
208
+ #: includes/class-freemius.php:5982
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 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
 
212
+ #: includes/class-freemius.php:5986
213
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
214
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
 
216
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
217
+ #: templates/account/partials/addon.php:343
218
  msgid "More information about %s"
219
  msgstr "מידע נוסף אודות %s"
220
 
221
+ #: includes/class-freemius.php:5996
222
  msgid "Purchase License"
223
  msgstr "קניית רישיון"
224
 
225
+ #: includes/class-freemius.php6931, 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 "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
 
229
+ #: includes/class-freemius.php:6935
230
  msgid "start the trial"
231
  msgstr "התחל תקופת ניסיון"
232
 
233
+ #: includes/class-freemius.php6936, templates/connect.php:167
234
  msgid "complete the install"
235
  msgstr "השלם התקנה"
236
 
237
+ #: includes/class-freemius.php:7049
238
  msgid "You are just one step away - %s"
239
  msgstr "You are just one step away - %s"
240
 
241
+ #: includes/class-freemius.php:7052
242
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
243
  msgid "Complete \"%s\" Activation Now"
244
  msgstr "השלם הפעלת \"%s\" עכשיו"
245
 
246
+ #: includes/class-freemius.php:7130
247
  msgid "We made a few tweaks to the %s, %s"
248
  msgstr "We made a few tweaks to the %s, %s"
249
 
250
+ #: includes/class-freemius.php:7134
251
  msgid "Opt in to make \"%s\" better!"
252
  msgstr "Opt in to make \"%s\" better!"
253
 
254
+ #: includes/class-freemius.php:7566
255
  msgid "The upgrade of %s was successfully completed."
256
  msgstr "The upgrade of %s was successfully completed."
257
 
258
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
259
+ #: includes/class-fs-plugin-updater.php1170,
260
+ #: includes/class-fs-plugin-updater.php1177,
261
  #: templates/auto-installation.php:32
262
  msgid "Add-On"
263
  msgstr "Add-On"
264
 
265
+ #: includes/class-freemius.php9730, templates/account.php313,
266
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
267
  msgid "Plugin"
268
  msgstr "תוסף"
269
 
270
+ #: includes/class-freemius.php9731, templates/account.php314,
271
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
272
+ #: templates/forms/deactivation/form.php:71
273
  msgid "Theme"
274
  msgstr "תבנית"
275
 
276
+ #: includes/class-freemius.php:12148
277
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
278
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
279
+
280
+ #: includes/class-freemius.php:12549
281
  msgid "Invalid site details collection."
282
  msgstr "Invalid site details collection."
283
 
284
+ #: includes/class-freemius.php:12669
285
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
286
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
287
 
288
+ #: includes/class-freemius.php:12671
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:12945
293
  msgid "Account is pending activation."
294
  msgstr "Account is pending activation."
295
 
296
+ #: includes/class-freemius.php13057,
297
  #: templates/forms/premium-versions-upgrade-handler.php:47
298
  msgid "Buy a license now"
299
  msgstr "Buy a license now"
300
 
301
+ #: includes/class-freemius.php13069,
302
  #: templates/forms/premium-versions-upgrade-handler.php:46
303
  msgid "Renew your license now"
304
  msgstr "Renew your license now"
305
 
306
+ #: includes/class-freemius.php:13073
307
  msgid "%s to access version %s security & feature updates, and support."
308
  msgstr "%s to access version %s security & feature updates, and support."
309
 
310
+ #: includes/class-freemius.php:15448
311
  msgid "%s activation was successfully completed."
312
  msgstr "הפעלת %s הושלמה בהצלחה."
313
 
314
+ #: includes/class-freemius.php:15462
315
  msgid "Your account was successfully activated with the %s plan."
316
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
317
 
318
+ #: includes/class-freemius.php15473, includes/class-freemius.php:19061
319
  msgid "Your trial has been successfully started."
320
  msgstr "הניסיון שלך הופעל בהצלחה."
321
 
322
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
323
+ #: includes/class-freemius.php:16297
324
  msgid "Couldn't activate %s."
325
  msgstr "לא ניתן להפעיל את %s."
326
 
327
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
328
+ #: includes/class-freemius.php:16298
329
  msgid "Please contact us with the following message:"
330
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
331
 
332
+ #: includes/class-freemius.php:16128
333
+ msgid "An unknown error has occurred."
334
+ msgstr "An unknown error has occurred."
335
+
336
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
337
  msgid "Upgrade"
338
  msgstr "שדרג"
339
 
340
+ #: includes/class-freemius.php:16661
341
  msgid "Start Trial"
342
  msgstr "התחל תקופת ניסיון"
343
 
344
+ #: includes/class-freemius.php:16663
345
  msgid "Pricing"
346
  msgstr "מחירון"
347
 
348
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
349
  msgid "Affiliation"
350
  msgstr "אפיליאציה"
351
 
352
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
353
+ #: templates/account.php177, templates/debug.php:326
354
  msgid "Account"
355
  msgstr "חשבון"
356
 
357
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
358
  #: includes/customizer/class-fs-customizer-support-section.php:60
359
  msgid "Contact Us"
360
  msgstr "יצירת קשר"
361
 
362
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
363
+ #: includes/class-freemius.php21423, templates/account.php105,
364
+ #: templates/account/partials/addon.php:45
365
  msgid "Add-Ons"
366
  msgstr "Add-Ons"
367
 
368
+ #: includes/class-freemius.php:16835
369
  msgctxt "ASCII arrow left icon"
370
  msgid "&#x2190;"
371
  msgstr "&#x2190;"
372
 
373
+ #: includes/class-freemius.php:16835
374
  msgctxt "ASCII arrow right icon"
375
  msgid "&#x27a4;"
376
  msgstr "&#x27a4;"
377
 
378
+ #: includes/class-freemius.php16837, templates/pricing.php:102
379
  msgctxt "noun"
380
  msgid "Pricing"
381
  msgstr "מחירון"
382
 
383
+ #: includes/class-freemius.php17050,
384
  #: includes/customizer/class-fs-customizer-support-section.php:67
385
  msgid "Support Forum"
386
  msgstr "פורום תמיכה"
387
 
388
+ #: includes/class-freemius.php:17995
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:17996
393
  msgctxt "a positive response"
394
  msgid "Right on"
395
  msgstr "מעולה"
396
 
397
+ #: includes/class-freemius.php:18660
398
  msgid "Your %s Add-on plan was successfully upgraded."
399
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
400
 
401
+ #: includes/class-freemius.php:18662
402
  msgid "%s Add-on was successfully purchased."
403
  msgstr "ההרחבה %s נרכשה בהצלחה."
404
 
405
+ #: includes/class-freemius.php:18665
406
  msgid "Download the latest version"
407
  msgstr "הורד את הגרסה האחרונה"
408
 
409
+ #: includes/class-freemius.php:18751
410
+ 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"
411
+ 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"
 
412
 
413
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
414
+ #: includes/class-freemius.php:19277
415
  msgid "Error received from the server:"
416
  msgstr "הוחזרה שגיאה מהשרת:"
417
 
418
+ #: includes/class-freemius.php:18767
419
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
420
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
421
 
422
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
423
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
424
  msgctxt ""
425
  msgid "Hmm"
426
  msgstr "אממ"
427
 
428
+ #: includes/class-freemius.php:18974
429
  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."
430
  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."
431
 
432
+ #: includes/class-freemius.php18975, templates/account.php107,
433
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
434
  msgctxt "trial period"
435
  msgid "Trial"
436
  msgstr "ניסיון"
437
 
438
+ #: includes/class-freemius.php:18980
439
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
440
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
441
 
442
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
443
  msgid "Please contact us here"
444
  msgstr "אנא צור איתנו קשר כאן"
445
 
446
+ #: includes/class-freemius.php:18995
447
+ msgid "Your plan was successfully activated."
448
+ msgstr "Your plan was successfully activated."
449
+
450
+ #: includes/class-freemius.php:18996
451
  msgid "Your plan was successfully upgraded."
452
  msgstr "החבילה שודרגה בהצלחה."
453
 
454
+ #: includes/class-freemius.php:19013
455
  msgid "Your plan was successfully changed to %s."
456
  msgstr "החבילה עודכנה בהצלחה אל %s."
457
 
458
+ #: includes/class-freemius.php:19029
459
  msgid "Your license has expired. You can still continue using the free %s forever."
460
  msgstr "Your license has expired. You can still continue using the free %s forever."
461
 
462
+ #: includes/class-freemius.php:19031
463
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
464
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
465
 
466
+ #: includes/class-freemius.php:19039
467
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
468
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
469
 
470
+ #: includes/class-freemius.php:19052
471
  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."
472
  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."
473
 
474
+ #: includes/class-freemius.php:19075
475
  msgid "Your free trial has expired. You can still continue using all our free features."
476
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
477
 
478
+ #: includes/class-freemius.php:19077
479
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
480
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
481
 
482
+ #: includes/class-freemius.php:19184
483
  msgid "It looks like the license could not be activated."
484
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
485
 
486
+ #: includes/class-freemius.php:19226
487
  msgid "Your license was successfully activated."
488
  msgstr "הרישיון הופעל בהצלחה."
489
 
490
+ #: includes/class-freemius.php:19252
491
  msgid "It looks like your site currently doesn't have an active license."
492
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
493
 
494
+ #: includes/class-freemius.php:19276
495
  msgid "It looks like the license deactivation failed."
496
  msgstr "נראה שניתוק הרישיון נכשל."
497
 
498
+ #: includes/class-freemius.php:19304
499
  msgid "Your license was successfully deactivated, you are back to the %s plan."
500
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
501
 
502
+ #: includes/class-freemius.php:19305
503
  msgid "O.K"
504
  msgstr "אוקיי"
505
 
506
+ #: includes/class-freemius.php:19358
507
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
508
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
509
 
510
+ #: includes/class-freemius.php:19367
511
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
512
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
513
 
514
+ #: includes/class-freemius.php:19409
515
  msgid "You are already running the %s in a trial mode."
516
  msgstr "You are already running the %s in a trial mode."
517
 
518
+ #: includes/class-freemius.php:19420
519
  msgid "You already utilized a trial before."
520
  msgstr "הניסיון כבר נוצל בעבר."
521
 
522
+ #: includes/class-freemius.php:19434
523
  msgid "Plan %s do not exist, therefore, can't start a trial."
524
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
525
 
526
+ #: includes/class-freemius.php:19445
527
  msgid "Plan %s does not support a trial period."
528
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
529
 
530
+ #: includes/class-freemius.php:19456
531
  msgid "None of the %s's plans supports a trial period."
532
  msgstr "None of the %s's plans supports a trial period."
533
 
534
+ #: includes/class-freemius.php:19506
535
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
536
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
537
 
538
+ #: includes/class-freemius.php:19542
539
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
540
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
541
 
542
+ #: includes/class-freemius.php:19561
543
  msgid "Your %s free trial was successfully cancelled."
544
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
545
 
546
+ #: includes/class-freemius.php:19877
547
  msgid "Version %s was released."
548
  msgstr "גרסה %s הושקה."
549
 
550
+ #: includes/class-freemius.php:19877
551
  msgid "Please download %s."
552
  msgstr "נא להוריד את %s."
553
 
554
+ #: includes/class-freemius.php:19884
555
  msgid "the latest %s version here"
556
  msgstr "גרסת ה-%s האחרונה כאן"
557
 
558
+ #: includes/class-freemius.php:19889
559
  msgid "New"
560
  msgstr "חדש"
561
 
562
+ #: includes/class-freemius.php:19894
563
  msgid "Seems like you got the latest release."
564
  msgstr "נראה שיש לך את הגרסה האחרונה."
565
 
566
+ #: includes/class-freemius.php:19895
567
  msgid "You are all good!"
568
  msgstr "את\\ה מסודר!"
569
 
570
+ #: includes/class-freemius.php:20165
571
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
572
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
573
 
574
+ #: includes/class-freemius.php:20304
575
  msgid "Site successfully opted in."
576
  msgstr "Site successfully opted in."
577
 
578
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
579
  msgid "Awesome"
580
  msgstr "אדיר"
581
 
582
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
583
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
584
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
585
 
586
+ #: includes/class-freemius.php:20322
587
  msgid "Thank you!"
588
  msgstr "תודה רבה!"
589
 
590
+ #: includes/class-freemius.php:20329
591
  msgid "We will no longer be sending any usage data of %s on %s to %s."
592
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
593
 
594
+ #: includes/class-freemius.php:20458
595
  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."
596
  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."
597
 
598
+ #: includes/class-freemius.php:20464
599
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
600
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
601
 
602
+ #: includes/class-freemius.php:20469
603
  msgid "%s is the new owner of the account."
604
  msgstr "%s הינו הבעלים החד של חשבון זה."
605
 
606
+ #: includes/class-freemius.php:20471
607
  msgctxt "as congratulations"
608
  msgid "Congrats"
609
  msgstr "מזל טוב"
610
 
611
+ #: includes/class-freemius.php:20491
612
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
613
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
614
 
615
+ #: includes/class-freemius.php:20492
616
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
617
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
618
 
619
+ #: includes/class-freemius.php:20499
620
  msgid "Change Ownership"
621
  msgstr "עדכון בעלות"
622
 
623
+ #: includes/class-freemius.php:20507
624
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
625
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
626
 
627
+ #: includes/class-freemius.php:20519
628
  msgid "Please provide your full name."
629
  msgstr "נא למלא את שמך המלא."
630
 
631
+ #: includes/class-freemius.php:20524
632
  msgid "Your name was successfully updated."
633
  msgstr "שמך עודכן בהצלחה."
634
 
635
+ #: includes/class-freemius.php:20585
636
  msgid "You have successfully updated your %s."
637
  msgstr "עידכנת בהצלחה את ה%s."
638
 
639
+ #: includes/class-freemius.php:20725
640
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
641
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
642
 
643
+ #: includes/class-freemius.php:20726
644
  msgctxt "advance notice of something that will need attention."
645
  msgid "Heads up"
646
  msgstr "לתשמות לבך"
647
 
648
+ #: includes/class-freemius.php:21165
649
  msgctxt "exclamation"
650
  msgid "Hey"
651
  msgstr "היי"
652
 
653
+ #: includes/class-freemius.php:21165
654
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
655
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
656
 
657
+ #: includes/class-freemius.php:21173
658
  msgid "No commitment for %s days - cancel anytime!"
659
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
660
 
661
+ #: includes/class-freemius.php:21174
662
  msgid "No credit card required"
663
  msgstr "לא נדרש כרטיס אשראי"
664
 
665
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
666
  msgctxt "call to action"
667
  msgid "Start free trial"
668
  msgstr "התחלת ניסיון חינם"
669
 
670
+ #: includes/class-freemius.php:21258
671
  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!"
672
  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!"
673
 
674
+ #: includes/class-freemius.php:21267
675
  msgid "Learn more"
676
  msgstr "Learn more"
677
 
678
+ #: includes/class-freemius.php21447, templates/account.php474,
679
+ #: templates/account.php595, templates/connect.php171,
680
+ #: templates/connect.php421, templates/forms/license-activation.php25,
681
+ #: templates/account/partials/addon.php:287
682
  msgid "Activate License"
683
  msgstr "הפעלת רישיון"
684
 
685
+ #: includes/class-freemius.php21448, templates/account.php543,
686
+ #: templates/account.php594, templates/account/partials/site.php:256
687
  msgid "Change License"
688
  msgstr "שינוי רישיון"
689
 
690
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
691
  msgid "Opt Out"
692
  msgstr "Opt Out"
693
 
694
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
695
  #: templates/account/partials/site.php43,
696
  #: templates/account/partials/site.php:161
697
  msgid "Opt In"
698
  msgstr "Opt In"
699
 
700
+ #: includes/class-freemius.php:21775
701
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
702
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
703
 
704
+ #: includes/class-freemius.php:21783
705
  msgid "Activate %s features"
706
  msgstr "Activate %s features"
707
 
708
+ #: includes/class-freemius.php:21796
709
  msgid "Please follow these steps to complete the upgrade"
710
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
711
 
712
+ #: includes/class-freemius.php:21800
713
  msgid "Download the latest %s version"
714
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
715
 
716
+ #: includes/class-freemius.php:21804
717
  msgid "Upload and activate the downloaded version"
718
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
719
 
720
+ #: includes/class-freemius.php:21806
721
  msgid "How to upload and activate?"
722
  msgstr "איך להעלות ולהפעיל?"
723
 
724
+ #: includes/class-freemius.php:21940
725
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
726
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
727
 
728
+ #: includes/class-freemius.php:22101
729
  msgid "Auto installation only works for opted-in users."
730
  msgstr "Auto installation only works for opted-in users."
731
 
732
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
733
+ #: includes/class-fs-plugin-updater.php1149,
734
+ #: includes/class-fs-plugin-updater.php:1163
735
  msgid "Invalid module ID."
736
  msgstr "מזהה המודול לא תקני."
737
 
738
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
739
  msgid "Premium version already active."
740
  msgstr "הגרסה בתשלום כבר פעילה."
741
 
742
+ #: includes/class-freemius.php:22127
743
  msgid "You do not have a valid license to access the premium version."
744
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
745
 
746
+ #: includes/class-freemius.php:22134
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.php22152, includes/class-fs-plugin-updater.php:1184
751
  msgid "Premium add-on version already installed."
752
  msgstr "Premium add-on version already installed."
753
 
754
+ #: includes/class-freemius.php:22497
755
  msgid "View paid features"
756
  msgstr "צפה בפיטצ'רים שבתשלום"
757
 
758
+ #: includes/class-freemius.php:22819
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:22820
763
  msgid "Thank you so much for using %s!"
764
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
765
 
766
+ #: includes/class-freemius.php:22826
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:22830
771
  msgid "Thank you so much for using our products!"
772
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
773
 
774
+ #: includes/class-freemius.php:22831
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:22850
779
  msgid "%s and its add-ons"
780
  msgstr "%s and its add-ons"
781
 
782
+ #: includes/class-freemius.php:22859
783
  msgid "Products"
784
  msgstr "מוצרים"
785
 
786
+ #: includes/class-freemius.php22866, templates/connect.php:272
787
  msgid "Yes"
788
  msgstr "כן"
789
 
790
+ #: includes/class-freemius.php22867, templates/connect.php:273
791
  msgid "send me security & feature updates, educational content and offers."
792
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
793
 
794
+ #: includes/class-freemius.php22868, templates/connect.php:278
795
  msgid "No"
796
  msgstr "לא"
797
 
798
+ #: includes/class-freemius.php22870, templates/connect.php:280
799
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
800
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
801
 
802
+ #: includes/class-freemius.php:22880
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.php22882, templates/connect.php:287
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:23164
811
  msgid "License key is empty."
812
  msgstr "מפתח הרישיון ריק."
813
 
821
  msgid "Buy license"
822
  msgstr "Buy license"
823
 
824
+ #: includes/class-fs-plugin-updater.php280,
825
+ #: includes/class-fs-plugin-updater.php:313
826
  msgid "There is a %s of %s available."
827
  msgstr "There is a %s of %s available."
828
 
829
+ #: includes/class-fs-plugin-updater.php282,
830
+ #: includes/class-fs-plugin-updater.php:318
831
+ msgid "new Beta version"
832
+ msgstr "new Beta version"
833
+
834
+ #: includes/class-fs-plugin-updater.php283,
835
+ #: includes/class-fs-plugin-updater.php:319
836
  msgid "new version"
837
  msgstr "new version"
838
 
839
+ #: includes/class-fs-plugin-updater.php:342
840
  msgid "Important Upgrade Notice:"
841
  msgstr "Important Upgrade Notice:"
842
 
843
+ #: includes/class-fs-plugin-updater.php:1214
844
  msgid "Installing plugin: %s"
845
  msgstr "Installing plugin: %s"
846
 
847
+ #: includes/class-fs-plugin-updater.php:1255
848
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
849
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
850
 
851
+ #: includes/class-fs-plugin-updater.php:1437
852
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
853
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
854
 
855
+ #: includes/fs-plugin-info-dialog.php:509
856
+ msgid "Purchase More"
857
+ msgstr "Purchase More"
858
+
859
+ #: includes/fs-plugin-info-dialog.php510,
860
+ #: templates/account/partials/addon.php:347
861
  msgctxt "verb"
862
  msgid "Purchase"
863
  msgstr "רכישה"
864
 
865
+ #: includes/fs-plugin-info-dialog.php:514
866
  msgid "Start my free %s"
867
  msgstr "התחל את %s הניסיון שלי"
868
 
869
+ #: includes/fs-plugin-info-dialog.php:712
870
+ msgid "Install Free Version Update Now"
871
+ msgstr "התקן עדכון גרסה חינאמית עכשיו"
872
+
873
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
874
+ msgid "Install Update Now"
875
+ msgstr "התקן עדכון במיידי"
876
+
877
+ #: includes/fs-plugin-info-dialog.php:722
878
  msgid "Install Free Version Now"
879
  msgstr "התקן גרסה חינאמית עכשיו"
880
 
881
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
882
+ #: templates/auto-installation.php111,
883
+ #: templates/account/partials/addon.php327,
884
+ #: templates/account/partials/addon.php:379
885
  msgid "Install Now"
886
  msgstr "התקן עכשיו"
887
 
888
+ #: includes/fs-plugin-info-dialog.php:739
889
  msgctxt "as download latest version"
890
  msgid "Download Latest Free Version"
891
  msgstr "Download Latest Free Version"
892
 
893
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
894
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
895
  msgctxt "as download latest version"
896
  msgid "Download Latest"
897
  msgstr "הורד גרסה אחרונה"
898
 
899
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
900
+ #: templates/account/partials/addon.php318,
901
+ #: templates/account/partials/addon.php:373
902
+ msgid "Activate this add-on"
903
+ msgstr "הפעל את ההרחבה"
 
 
 
 
 
 
 
 
 
 
904
 
905
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
906
+ msgid "Activate Free Version"
907
+ msgstr "הפעלת גירסה חינאמית"
908
 
909
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
910
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
911
+ msgid "Activate"
912
+ msgstr "הפעלה"
913
 
914
+ #: includes/fs-plugin-info-dialog.php:968
915
  msgctxt "Plugin installer section title"
916
  msgid "Description"
917
  msgstr "תיאור"
918
 
919
+ #: includes/fs-plugin-info-dialog.php:969
920
  msgctxt "Plugin installer section title"
921
  msgid "Installation"
922
  msgstr "התקנה"
923
 
924
+ #: includes/fs-plugin-info-dialog.php:970
925
  msgctxt "Plugin installer section title"
926
  msgid "FAQ"
927
  msgstr "שאלות נפוצות"
928
 
929
+ #: includes/fs-plugin-info-dialog.php971,
930
  #: templates/plugin-info/description.php:55
931
  msgid "Screenshots"
932
  msgstr "צילומי מסך"
933
 
934
+ #: includes/fs-plugin-info-dialog.php:972
935
  msgctxt "Plugin installer section title"
936
  msgid "Changelog"
937
  msgstr "לוג שינויים"
938
 
939
+ #: includes/fs-plugin-info-dialog.php:973
940
  msgctxt "Plugin installer section title"
941
  msgid "Reviews"
942
  msgstr "ביקורות"
943
 
944
+ #: includes/fs-plugin-info-dialog.php:974
945
  msgctxt "Plugin installer section title"
946
  msgid "Other Notes"
947
  msgstr "היערות נוספות"
948
 
949
+ #: includes/fs-plugin-info-dialog.php:989
950
  msgctxt "Plugin installer section title"
951
  msgid "Features & Pricing"
952
  msgstr "פיטצ'רים ומחירים"
953
 
954
+ #: includes/fs-plugin-info-dialog.php:999
955
  msgid "Plugin Install"
956
  msgstr "התקנת תוסף"
957
 
958
+ #: includes/fs-plugin-info-dialog.php:1071
959
  msgctxt "e.g. Professional Plan"
960
  msgid "%s Plan"
961
  msgstr "חבילה %s"
962
 
963
+ #: includes/fs-plugin-info-dialog.php:1097
964
  msgctxt "e.g. the best product"
965
  msgid "Best"
966
  msgstr "הכי טוב"
967
 
968
+ #: includes/fs-plugin-info-dialog.php1103,
969
+ #: includes/fs-plugin-info-dialog.php:1123
970
  msgctxt "as every month"
971
  msgid "Monthly"
972
  msgstr "חודשי"
973
 
974
+ #: includes/fs-plugin-info-dialog.php:1106
975
  msgctxt "as once a year"
976
  msgid "Annual"
977
  msgstr "שנתי"
978
 
979
+ #: includes/fs-plugin-info-dialog.php:1109
980
  msgid "Lifetime"
981
  msgstr "לכל החיים"
982
 
983
+ #: includes/fs-plugin-info-dialog.php1123,
984
+ #: includes/fs-plugin-info-dialog.php1125,
985
+ #: includes/fs-plugin-info-dialog.php:1127
986
  msgctxt "e.g. billed monthly"
987
  msgid "Billed %s"
988
  msgstr "מחוייב על בסיס %s"
989
 
990
+ #: includes/fs-plugin-info-dialog.php:1125
991
  msgctxt "as once a year"
992
  msgid "Annually"
993
  msgstr "שנתי"
994
 
995
+ #: includes/fs-plugin-info-dialog.php:1127
996
  msgctxt "as once a year"
997
  msgid "Once"
998
  msgstr "פעם אחת"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1133
1001
  msgid "Single Site License"
1002
  msgstr "רשיון לאתר אחד"
1003
 
1004
+ #: includes/fs-plugin-info-dialog.php:1135
1005
  msgid "Unlimited Licenses"
1006
  msgstr "רשיונות ללא הגבלה"
1007
 
1008
+ #: includes/fs-plugin-info-dialog.php:1137
1009
  msgid "Up to %s Sites"
1010
  msgstr "עד %s אתרים"
1011
 
1012
+ #: includes/fs-plugin-info-dialog.php1147,
1013
  #: templates/plugin-info/features.php:82
1014
  msgctxt "as monthly period"
1015
  msgid "mo"
1016
  msgstr "חודשים"
1017
 
1018
+ #: includes/fs-plugin-info-dialog.php1154,
1019
  #: templates/plugin-info/features.php:80
1020
  msgctxt "as annual period"
1021
  msgid "year"
1022
  msgstr "שנה"
1023
 
1024
+ #: includes/fs-plugin-info-dialog.php:1208
1025
  msgctxt "noun"
1026
  msgid "Price"
1027
  msgstr "מחיר"
1028
 
1029
+ #: includes/fs-plugin-info-dialog.php:1256
1030
  msgid "Save %s"
1031
  msgstr "שמירת %s"
1032
 
1033
+ #: includes/fs-plugin-info-dialog.php:1266
1034
  msgid "No commitment for %s - cancel anytime"
1035
  msgstr "No commitment for %s - cancel anytime"
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1269
1038
  msgid "After your free %s, pay as little as %s"
1039
  msgstr "After your free %s, pay as little as %s"
1040
 
1041
+ #: includes/fs-plugin-info-dialog.php:1280
1042
  msgid "Details"
1043
  msgstr "פרטים"
1044
 
1045
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1046
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1047
+ #: templates/account/partials/addon.php:36
1048
  msgctxt "product version"
1049
  msgid "Version"
1050
  msgstr "גרסה"
1051
 
1052
+ #: includes/fs-plugin-info-dialog.php:1291
1053
  msgctxt "as the plugin author"
1054
  msgid "Author"
1055
  msgstr "Author"
1056
 
1057
+ #: includes/fs-plugin-info-dialog.php:1298
1058
  msgid "Last Updated"
1059
  msgstr "עודכן לאחרונה"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1062
  msgctxt "x-ago"
1063
  msgid "%s ago"
1064
  msgstr "לפני %s"
1065
 
1066
+ #: includes/fs-plugin-info-dialog.php:1312
1067
  msgid "Requires WordPress Version"
1068
  msgstr "Requires WordPress Version"
1069
 
1070
+ #: includes/fs-plugin-info-dialog.php:1313
1071
  msgid "%s or higher"
1072
  msgstr "%s ומעלה"
1073
 
1074
+ #: includes/fs-plugin-info-dialog.php:1320
1075
  msgid "Compatible up to"
1076
  msgstr "Compatible up to"
1077
 
1078
+ #: includes/fs-plugin-info-dialog.php:1328
1079
  msgid "Downloaded"
1080
  msgstr "Downloaded"
1081
 
1082
+ #: includes/fs-plugin-info-dialog.php:1332
1083
  msgid "%s time"
1084
  msgstr "פעם %s"
1085
 
1086
+ #: includes/fs-plugin-info-dialog.php:1334
1087
  msgid "%s times"
1088
  msgstr "%s פעמים"
1089
 
1090
+ #: includes/fs-plugin-info-dialog.php:1344
1091
  msgid "WordPress.org Plugin Page"
1092
  msgstr "WordPress.org Plugin Page"
1093
 
1094
+ #: includes/fs-plugin-info-dialog.php:1352
1095
  msgid "Plugin Homepage"
1096
  msgstr "עמוד התוסף"
1097
 
1098
+ #: includes/fs-plugin-info-dialog.php1360,
1099
+ #: includes/fs-plugin-info-dialog.php:1442
1100
  msgid "Donate to this plugin"
1101
  msgstr "תרום לתוסף"
1102
 
1103
+ #: includes/fs-plugin-info-dialog.php:1367
1104
  msgid "Average Rating"
1105
  msgstr "דירוג ממוצע"
1106
 
1107
+ #: includes/fs-plugin-info-dialog.php:1374
1108
  msgid "based on %s"
1109
  msgstr "מבוסס על %s"
1110
 
1111
+ #: includes/fs-plugin-info-dialog.php:1378
1112
  msgid "%s rating"
1113
  msgstr "דרוג %s"
1114
 
1115
+ #: includes/fs-plugin-info-dialog.php:1380
1116
  msgid "%s ratings"
1117
  msgstr "%s דרוגים"
1118
 
1119
+ #: includes/fs-plugin-info-dialog.php:1395
1120
  msgid "%s star"
1121
  msgstr "כוכב %s"
1122
 
1123
+ #: includes/fs-plugin-info-dialog.php:1397
1124
  msgid "%s stars"
1125
  msgstr "%s כוכבים"
1126
 
1127
+ #: includes/fs-plugin-info-dialog.php:1408
1128
  msgid "Click to see reviews that provided a rating of %s"
1129
  msgstr "Click to see reviews that provided a rating of %s"
1130
 
1131
+ #: includes/fs-plugin-info-dialog.php:1421
1132
  msgid "Contributors"
1133
  msgstr "תורמים"
1134
 
1135
+ #: includes/fs-plugin-info-dialog.php1450,
1136
+ #: includes/fs-plugin-info-dialog.php:1452
1137
  msgid "Warning"
1138
  msgstr "Warning"
1139
 
1140
+ #: includes/fs-plugin-info-dialog.php:1450
1141
  msgid "This plugin has not been tested with your current version of WordPress."
1142
  msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
1143
 
1144
+ #: includes/fs-plugin-info-dialog.php:1452
1145
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1146
  msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
1147
 
1148
+ #: includes/fs-plugin-info-dialog.php:1471
1149
  msgid "Paid add-on must be deployed to Freemius."
1150
  msgstr "Paid add-on must be deployed to Freemius."
1151
 
1152
+ #: includes/fs-plugin-info-dialog.php:1472
1153
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1154
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1155
 
1156
+ #: includes/fs-plugin-info-dialog.php:1493
1157
+ msgid "Newer Version (%s) Installed"
1158
+ msgstr "גרסה חדשה (%s) הותקנה"
1159
+
1160
+ #: includes/fs-plugin-info-dialog.php:1494
1161
+ msgid "Newer Free Version (%s) Installed"
1162
+ msgstr "Newer Free Version (%s) Installed"
1163
+
1164
+ #: includes/fs-plugin-info-dialog.php:1501
1165
+ msgid "Latest Version Installed"
1166
+ msgstr "הגרסה האחרונה הותקנה"
1167
+
1168
+ #: includes/fs-plugin-info-dialog.php:1502
1169
+ msgid "Latest Free Version Installed"
1170
+ msgstr "גרסה חינאמית עדכנית הותקנה"
1171
+
1172
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1173
+ #: templates/account/partials/addon.php26,
1174
  #: templates/account/partials/site.php:295
1175
  msgid "Downgrading your plan"
1176
  msgstr "Downgrading your plan"
1177
 
1178
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1179
+ #: templates/account/partials/addon.php27,
1180
  #: templates/account/partials/site.php:296
1181
  msgid "Cancelling the subscription"
1182
  msgstr "Cancelling the subscription"
1183
 
1184
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1185
  #. subscription'
1186
+ #: templates/account.php:89
1187
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1188
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
 
 
1189
 
1190
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1191
+ #: templates/account/partials/addon.php30,
1192
  #: templates/account/partials/site.php:299
1193
  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."
1194
  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."
1195
 
1196
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1197
+ #: templates/account/partials/addon.php:31
1198
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1199
  msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
1200
 
1201
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1202
+ #: templates/account/partials/addon.php32,
1203
  #: templates/account/partials/site.php:300
1204
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1205
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1206
 
1207
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1208
+ #: templates/account/partials/addon.php33,
1209
  #: templates/account/partials/site.php:301
1210
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1211
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1212
 
1213
  #. translators: %s: Plan title (e.g. "Professional")
1214
+ #: templates/account.php95,
1215
  #: templates/account/partials/activate-license-button.php31,
1216
+ #: templates/account/partials/addon.php:35
1217
  msgid "Activate %s Plan"
1218
  msgstr "הפעל חבילה %s"
1219
 
1220
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1221
+ #: templates/account.php98, templates/account/partials/addon.php38,
1222
  #: templates/account/partials/site.php:275
1223
  msgid "Auto renews in %s"
1224
  msgstr "עדכן אוטומטית בעוד %s"
1225
 
1226
  #. translators: %s: Time period (e.g. Expires in "2 months")
1227
+ #: templates/account.php100, templates/account/partials/addon.php40,
1228
  #: templates/account/partials/site.php:277
1229
  msgid "Expires in %s"
1230
  msgstr "פג תוקף בעוד %s"
1231
 
1232
+ #: templates/account.php101, templates/account/partials/addon.php:41
1233
  msgctxt "as synchronize license"
1234
  msgid "Sync License"
1235
  msgstr "סינכרן רישיון"
1236
 
1237
+ #: templates/account.php102, templates/account/partials/addon.php:42
1238
  msgid "Cancel Trial"
1239
  msgstr "ביט"
1240
 
1241
+ #: templates/account.php103, templates/account/partials/addon.php:43
1242
  msgid "Change Plan"
1243
  msgstr "שינוי חבילה"
1244
 
1245
+ #: templates/account.php104, templates/account/partials/addon.php:44
1246
  msgctxt "verb"
1247
  msgid "Upgrade"
1248
  msgstr "שדרג"
1249
 
1250
+ #: templates/account.php106, templates/account/partials/addon.php46,
1251
  #: templates/account/partials/site.php:302
1252
  msgctxt "verb"
1253
  msgid "Downgrade"
1254
  msgstr "שנמך"
1255
 
1256
+ #: templates/account.php108, templates/add-ons.php187,
1257
  #: templates/plugin-info/features.php72,
1258
+ #: templates/account/partials/addon.php48,
1259
  #: templates/account/partials/site.php:31
1260
  msgid "Free"
1261
  msgstr "חינם"
1262
 
1263
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1264
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1265
+ #: templates/account/partials/addon.php:50
1266
  msgctxt "as product pricing plan"
1267
  msgid "Plan"
1268
  msgstr "חבילה"
1269
 
1270
+ #: templates/account.php:111
1271
+ msgid "Bundle Plan"
1272
+ msgstr "Bundle Plan"
1273
+
1274
+ #: templates/account.php:185
1275
  msgid "Free Trial"
1276
  msgstr "ניסיון חינם"
1277
 
1278
+ #: templates/account.php:196
1279
  msgid "Account Details"
1280
  msgstr "פרטי חשבון"
1281
 
1282
+ #: templates/account.php:200
1283
+ msgid "Billing & Invoices"
1284
+ msgstr "Billing & Invoices"
1285
+
1286
+ #: templates/account.php:210
1287
  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?"
1288
  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?"
1289
 
1290
+ #: templates/account.php:212
1291
  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?"
1292
  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?"
1293
 
1294
+ #: templates/account.php:215
1295
  msgid "Delete Account"
1296
  msgstr "מחיקת חשבון"
1297
 
1298
+ #: templates/account.php227, templates/account/partials/addon.php211,
1299
  #: templates/account/partials/deactivate-license-button.php:35
1300
  msgid "Deactivate License"
1301
  msgstr "שיחרור רישיון"
1302
 
1303
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1304
  msgid "Are you sure you want to proceed?"
1305
  msgstr "האם את/ה בטוח רוצה להמשיך?"
1306
 
1307
+ #: templates/account.php250, templates/account/partials/addon.php:234
1308
  msgid "Cancel Subscription"
1309
  msgstr "בטל מנוי"
1310
 
1311
+ #: templates/account.php:278
1312
  msgctxt "as synchronize"
1313
  msgid "Sync"
1314
  msgstr "סינכרון"
1315
 
1316
+ #: templates/account.php292, templates/debug.php:489
1317
  msgid "Name"
1318
  msgstr "שם"
1319
 
1320
+ #: templates/account.php298, templates/debug.php:490
1321
  msgid "Email"
1322
  msgstr "דוא\"ל"
1323
 
1324
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1325
  msgid "User ID"
1326
  msgstr "מזהה משתמש"
1327
 
1328
+ #: templates/account.php322, templates/account.php608,
1329
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1330
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1331
+ #: templates/debug.php599, templates/account/payments.php35,
1332
+ #: templates/debug/logger.php:21
1333
+ msgid "ID"
1334
+ msgstr "מזהה"
1335
+
1336
+ #: templates/account.php:329
1337
  msgid "Site ID"
1338
  msgstr "מזהה אתר"
1339
 
1340
+ #: templates/account.php:332
1341
  msgid "No ID"
1342
  msgstr "אין מזהה"
1343
 
1344
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1345
+ #: templates/debug.php455, templates/debug.php492,
1346
  #: templates/account/partials/site.php:219
1347
  msgid "Public Key"
1348
  msgstr "מפתח פומבי"
1349
 
1350
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1351
+ #: templates/debug.php493, templates/account/partials/site.php:231
1352
  msgid "Secret Key"
1353
  msgstr "מפתח סודי"
1354
 
1355
+ #: templates/account.php:346
1356
  msgctxt "as secret encryption key missing"
1357
  msgid "No Secret"
1358
  msgstr "אין מפתח סודי"
1359
 
1360
+ #: templates/account.php373, templates/account/partials/site.php112,
1361
  #: templates/account/partials/site.php:114
1362
  msgid "Trial"
1363
  msgstr "ניסיון"
1364
 
1365
+ #: templates/account.php400, templates/debug.php533,
1366
  #: templates/account/partials/site.php:248
1367
  msgid "License Key"
1368
  msgstr "License Key"
1369
 
1370
+ #: templates/account.php:429
1371
+ msgid "Join the Beta program"
1372
+ msgstr "Join the Beta program"
1373
+
1374
+ #: templates/account.php:435
1375
  msgid "not verified"
1376
  msgstr "לא מאומת"
1377
 
1378
+ #: templates/account.php444, templates/account/partials/addon.php:172
1379
  msgid "Expired"
1380
  msgstr "פג תוקף"
1381
 
1382
+ #: templates/account.php:502
1383
  msgid "Premium version"
1384
  msgstr "גירסת פרימיום"
1385
 
1386
+ #: templates/account.php:504
1387
  msgid "Free version"
1388
  msgstr "גירסה חינאמית"
1389
 
1390
+ #: templates/account.php:516
1391
  msgid "Verify Email"
1392
  msgstr "אמת כתובת דוא\"ל"
1393
 
1394
+ #: templates/account.php:527
1395
  msgid "Download %s Version"
1396
  msgstr "הורד גרסת %s"
1397
 
1398
+ #: templates/account.php541, templates/account.php749,
1399
  #: templates/account/partials/site.php237,
1400
  #: templates/account/partials/site.php:255
1401
  msgctxt "verb"
1402
  msgid "Show"
1403
  msgstr "הצג"
1404
 
1405
+ #: templates/account.php:555
1406
  msgid "What is your %s?"
1407
  msgstr "מה ה%s שלך?"
1408
 
1409
+ #: templates/account.php563, templates/account/billing.php:21
1410
  msgctxt "verb"
1411
  msgid "Edit"
1412
  msgstr "ערוך"
1413
 
1414
+ #: templates/account.php:588
1415
  msgid "Sites"
1416
  msgstr "אתרים"
1417
 
1418
+ #: templates/account.php:599
1419
  msgid "Search by address"
1420
  msgstr "חפש לפי כתובת"
1421
 
1422
+ #: templates/account.php609, templates/debug.php:369
 
 
 
 
 
 
 
1423
  msgid "Address"
1424
  msgstr "כתובת"
1425
 
1426
+ #: templates/account.php:610
1427
  msgid "License"
1428
  msgstr "רישיון"
1429
 
1430
+ #: templates/account.php:611
1431
  msgid "Plan"
1432
  msgstr "חבילה"
1433
 
1434
+ #: templates/account.php:656
1435
  msgctxt "as software license"
1436
  msgid "License"
1437
  msgstr "רישיון"
1438
 
1439
+ #: templates/account.php:743
1440
  msgctxt "verb"
1441
  msgid "Hide"
1442
  msgstr "הסתר"
1443
 
1444
+ #: templates/account.php:765
1445
+ msgid "Processing"
1446
+ msgstr "Processing"
1447
+
1448
+ #: templates/account.php:768
1449
+ msgid "Get updates for bleeding edge Beta versions of %s."
1450
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1451
+
1452
+ #: templates/account.php:826
1453
  msgid "Cancelling %s"
1454
  msgstr "Cancelling %s"
1455
 
1456
+ #: templates/account.php826, templates/account.php843,
1457
  #: templates/forms/subscription-cancellation.php27,
1458
+ #: templates/forms/deactivation/form.php:133
1459
  msgid "trial"
1460
  msgstr "trial"
1461
 
1462
+ #: templates/account.php841, templates/forms/deactivation/form.php:150
1463
  msgid "Cancelling %s..."
1464
  msgstr "Cancelling %s..."
1465
 
1466
+ #: templates/account.php844, templates/forms/subscription-cancellation.php28,
1467
+ #: templates/forms/deactivation/form.php:134
1468
  msgid "subscription"
1469
  msgstr "subscription"
1470
 
1471
+ #: templates/account.php:858
1472
  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?"
1473
  msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1474
 
1475
+ #: templates/add-ons.php:35
1476
+ msgid "View details"
1477
+ msgstr "פרטים נוספים"
1478
+
1479
+ #: templates/add-ons.php:45
1480
  msgid "Add Ons for %s"
1481
  msgstr "הרחבות עבור %s"
1482
 
1483
+ #: templates/add-ons.php:55
1484
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1485
  msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1486
 
1487
+ #: templates/add-ons.php:173
1488
+ msgctxt "active add-on"
1489
+ msgid "Active"
1490
+ msgstr "Active"
1491
+
1492
+ #: templates/add-ons.php:174
1493
+ msgctxt "installed add-on"
1494
+ msgid "Installed"
1495
+ msgstr "Installed"
1496
 
1497
+ #: templates/admin-notice.php13, templates/forms/license-activation.php209,
1498
  #: templates/forms/resend-key.php:77
1499
  msgctxt "as close a window"
1500
  msgid "Dismiss"
1520
  msgid "Cancel Installation"
1521
  msgstr "בטל התקנה"
1522
 
1523
+ #: templates/checkout.php:180
1524
  msgid "Checkout"
1525
  msgstr "Checkout"
1526
 
1527
+ #: templates/checkout.php:180
1528
  msgid "PCI compliant"
1529
  msgstr "עומד בתקן PCI"
1530
 
1546
  msgid "Thanks %s!"
1547
  msgstr "תודה %s!"
1548
 
1549
+ #: templates/connect.php172, templates/forms/license-activation.php:44
1550
  msgid "Agree & Activate License"
1551
  msgstr "הסכמה והפעלת רישיון"
1552
 
1594
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1595
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1596
 
1597
+ #: templates/connect.php253, templates/forms/license-activation.php:47
1598
  msgid "License key"
1599
  msgstr "מפתח רישיון"
1600
 
1601
+ #: templates/connect.php256, templates/forms/license-activation.php:20
1602
  msgid "Can't find your license key?"
1603
  msgstr "האם אינך מוצא את מפתח הרישיון?"
1604
 
1605
+ #: templates/connect.php315, templates/connect.php652,
1606
  #: templates/forms/deactivation/retry-skip.php:20
1607
  msgctxt "verb"
1608
  msgid "Skip"
1652
  msgid "Newsletter"
1653
  msgstr "ניוסלטר"
1654
 
1655
+ #: templates/connect.php391, templates/forms/license-activation.php:39
1656
  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."
1657
  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."
1658
 
1664
  msgid "Don't have a license key?"
1665
  msgstr "האם אין ברשותך מפתח רישיון?"
1666
 
 
 
 
 
1667
  #: templates/connect.php:420
1668
  msgid "Have a license key?"
1669
  msgstr "האם ברשותך רישיון?"
1680
  msgid "Terms of Service"
1681
  msgstr "תנאי השירות"
1682
 
1683
+ #: templates/connect.php:805
1684
  msgctxt "as in the process of sending an email"
1685
  msgid "Sending email"
1686
  msgstr "שולח דוא\"ל"
1687
 
1688
+ #: templates/connect.php:806
1689
  msgctxt "as activating plugin"
1690
  msgid "Activating"
1691
  msgstr "מפעיל"
1713
  msgid "Debugging"
1714
  msgstr "דיבוג"
1715
 
1716
+ #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1717
+ #: templates/debug.php:494
1718
  msgid "Actions"
1719
  msgstr "פעולות"
1720
 
1750
  msgid "Set DB Option"
1751
  msgstr "Set DB Option"
1752
 
1753
+ #: templates/debug.php:182
1754
  msgid "Key"
1755
  msgstr "Key"
1756
 
1757
+ #: templates/debug.php:183
1758
  msgid "Value"
1759
  msgstr "Value"
1760
 
1761
+ #: templates/debug.php:199
1762
  msgctxt "as software development kit versions"
1763
  msgid "SDK Versions"
1764
  msgstr "גרסאות SDK"
1765
 
1766
+ #: templates/debug.php:204
1767
  msgid "SDK Path"
1768
  msgstr "מיקום SDK"
1769
 
1770
+ #: templates/debug.php205, templates/debug.php:244
1771
  msgid "Module Path"
1772
  msgstr "Module Path"
1773
 
1774
+ #: templates/debug.php:206
1775
  msgid "Is Active"
1776
  msgstr "האם פעיל"
1777
 
1778
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1779
  msgid "Plugins"
1780
  msgstr "תוספים"
1781
 
1782
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1783
  msgid "Themes"
1784
  msgstr "תבניות"
1785
 
1786
+ #: templates/debug.php239, templates/debug.php371, templates/debug.php453,
1787
  #: templates/debug/scheduled-crons.php:80
1788
  msgid "Slug"
1789
  msgstr "מזהה כתובת"
1790
 
1791
+ #: templates/debug.php241, templates/debug.php:452
1792
  msgid "Title"
1793
  msgstr "כותרת"
1794
 
1795
+ #: templates/debug.php:242
1796
  msgctxt "as application program interface"
1797
  msgid "API"
1798
  msgstr "API"
1799
 
1800
+ #: templates/debug.php:243
1801
  msgid "Freemius State"
1802
  msgstr "מצב פרימיוס"
1803
 
1804
+ #: templates/debug.php:247
1805
  msgid "Network Blog"
1806
  msgstr "Network Blog"
1807
 
1808
+ #: templates/debug.php:248
1809
  msgid "Network User"
1810
  msgstr "משתמש רשת"
1811
 
1812
+ #: templates/debug.php:285
1813
  msgctxt "as connection was successful"
1814
  msgid "Connected"
1815
  msgstr "מחובר"
1816
 
1817
+ #: templates/debug.php:286
1818
  msgctxt "as connection blocked"
1819
  msgid "Blocked"
1820
  msgstr "חסום"
1821
 
1822
+ #: templates/debug.php:322
1823
  msgid "Simulate Trial Promotion"
1824
  msgstr "Simulate Trial Promotion"
1825
 
1826
+ #: templates/debug.php:334
1827
  msgid "Simulate Network Upgrade"
1828
  msgstr "סמלוץ עדכון לרשת"
1829
 
1830
+ #: templates/debug.php:360
1831
  msgid "%s Installs"
1832
  msgstr "%s התקנות"
1833
 
1834
+ #: templates/debug.php:362
1835
  msgctxt "like websites"
1836
  msgid "Sites"
1837
  msgstr "אתרים"
1838
 
1839
+ #: templates/debug.php368, templates/account/partials/site.php:148
1840
  msgid "Blog ID"
1841
  msgstr "מזהה בלוג"
1842
 
1843
+ #: templates/debug.php433, templates/debug.php511,
1844
+ #: templates/account/partials/addon.php:396
1845
  msgctxt "verb"
1846
  msgid "Delete"
1847
  msgstr "מחק"
1848
 
1849
+ #: templates/debug.php:447
1850
  msgid "Add Ons of module %s"
1851
  msgstr "Add Ons of module %s"
1852
 
1853
+ #: templates/debug.php:484
1854
  msgid "Users"
1855
  msgstr "משתמשים"
1856
 
1857
+ #: templates/debug.php:491
1858
  msgid "Verified"
1859
  msgstr "מאומת"
1860
 
1861
+ #: templates/debug.php:522
1862
  msgid "%s Licenses"
1863
  msgstr "%s Licenses"
1864
 
1865
+ #: templates/debug.php:527
1866
  msgid "Plugin ID"
1867
  msgstr "Plugin ID"
1868
 
1869
+ #: templates/debug.php:529
1870
  msgid "Plan ID"
1871
  msgstr "Plan ID"
1872
 
1873
+ #: templates/debug.php:530
1874
  msgid "Quota"
1875
  msgstr "Quota"
1876
 
1877
+ #: templates/debug.php:531
1878
  msgid "Activated"
1879
  msgstr "Activated"
1880
 
1881
+ #: templates/debug.php:532
1882
  msgid "Blocking"
1883
  msgstr "Blocking"
1884
 
1885
+ #: templates/debug.php:534
1886
  msgctxt "as expiration date"
1887
  msgid "Expiration"
1888
  msgstr "תפוגה"
1889
 
1890
+ #: templates/debug.php:557
1891
  msgid "Debug Log"
1892
  msgstr "Debug Log"
1893
 
1894
+ #: templates/debug.php:561
1895
  msgid "All Types"
1896
  msgstr "כל הסוגים"
1897
 
1898
+ #: templates/debug.php:568
1899
  msgid "All Requests"
1900
  msgstr "כל הבקשות"
1901
 
1902
+ #: templates/debug.php573, templates/debug.php602,
1903
  #: templates/debug/logger.php:25
1904
  msgid "File"
1905
  msgstr "קובץ"
1906
 
1907
+ #: templates/debug.php574, templates/debug.php600,
1908
  #: templates/debug/logger.php:23
1909
  msgid "Function"
1910
  msgstr "פונקציה"
1911
 
1912
+ #: templates/debug.php:575
1913
  msgid "Process ID"
1914
  msgstr "Process ID"
1915
 
1916
+ #: templates/debug.php:576
1917
  msgid "Logger"
1918
  msgstr "Logger"
1919
 
1920
+ #: templates/debug.php577, templates/debug.php601,
1921
  #: templates/debug/logger.php:24
1922
  msgid "Message"
1923
  msgstr "הודעה"
1924
 
1925
+ #: templates/debug.php:579
1926
  msgid "Filter"
1927
  msgstr "פילטר"
1928
 
1929
+ #: templates/debug.php:587
1930
  msgid "Download"
1931
  msgstr "הורדה"
1932
 
1933
+ #: templates/debug.php598, templates/debug/logger.php:22
1934
  msgid "Type"
1935
  msgstr "סוג"
1936
 
1937
+ #: templates/debug.php603, templates/debug/logger.php:26
1938
  msgid "Timestamp"
1939
  msgstr "Timestamp"
1940
 
1961
  msgid "Requests"
1962
  msgstr "Requests"
1963
 
1964
+ #: templates/account/billing.php:22
1965
  msgctxt "verb"
1966
  msgid "Update"
1967
  msgstr "עדכן"
1968
 
1969
+ #: templates/account/billing.php:33
1970
  msgid "Billing"
1971
  msgstr "בילינג"
1972
 
1973
+ #: templates/account/billing.php38, templates/account/billing.php:38
1974
  msgid "Business name"
1975
  msgstr "שם עסק"
1976
 
1977
+ #: templates/account/billing.php39, templates/account/billing.php:39
1978
  msgid "Tax / VAT ID"
1979
  msgstr "ח.פ."
1980
 
1981
+ #: templates/account/billing.php42, templates/account/billing.php42,
1982
+ #: templates/account/billing.php43, templates/account/billing.php:43
1983
  msgid "Address Line %d"
1984
  msgstr "כתובת %s"
1985
 
1986
+ #: templates/account/billing.php46, templates/account/billing.php:46
1987
  msgid "City"
1988
  msgstr "עיר"
1989
 
1990
+ #: templates/account/billing.php46, templates/account/billing.php:46
1991
  msgid "Town"
1992
  msgstr "כפר"
1993
 
1994
+ #: templates/account/billing.php47, templates/account/billing.php:47
1995
  msgid "ZIP / Postal Code"
1996
  msgstr "מיקוד / תא דואר"
1997
 
1998
+ #: templates/account/billing.php:302
1999
  msgid "Country"
2000
  msgstr "מדינה"
2001
 
2002
+ #: templates/account/billing.php:304
2003
  msgid "Select Country"
2004
  msgstr "בחר מדינה"
2005
 
2006
+ #: templates/account/billing.php311, templates/account/billing.php:312
2007
  msgid "State"
2008
  msgstr "מחוז/מדינה"
2009
 
2010
+ #: templates/account/billing.php311, templates/account/billing.php:312
2011
  msgid "Province"
2012
  msgstr "פרובינציה"
2013
 
2259
  msgid "Become an affiliate"
2260
  msgstr "Become an affiliate"
2261
 
2262
+ #: templates/forms/license-activation.php:21
2263
  msgid "Please enter the license key that you received in the email right after the purchase:"
2264
  msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל שלך לאחר השלמת הרכישה."
2265
 
2266
+ #: templates/forms/license-activation.php:26
2267
  msgid "Update License"
2268
  msgstr "עדכון רישיון"
2269
 
2330
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2331
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2332
 
2333
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2334
+ #. subscription'
2335
+ #: templates/forms/subscription-cancellation.php99,
2336
+ #: templates/account/partials/addon.php29,
2337
+ #: templates/account/partials/site.php:298
2338
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2339
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2340
+
2341
  #: templates/forms/subscription-cancellation.php:103
2342
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2343
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2351
  msgstr "Proceed"
2352
 
2353
  #: templates/forms/subscription-cancellation.php191,
2354
+ #: templates/forms/deactivation/form.php:171
2355
  msgid "Cancel %s & Proceed"
2356
  msgstr "Cancel %s & Proceed"
2357
 
2363
  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."
2364
  msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2365
 
2366
+ #: templates/js/style-premium-theme.php:39
2367
  msgid "Premium"
2368
  msgstr "Premium"
2369
 
2370
+ #: templates/js/style-premium-theme.php:42
2371
+ msgid "Beta"
2372
+ msgstr "Beta"
2373
+
2374
+ #: templates/partials/network-activation.php:27
2375
  msgid "Activate license on all sites in the network."
2376
  msgstr "הפעלת רישיון על כל האתרים ברשת."
2377
 
2378
+ #: templates/partials/network-activation.php:28
2379
  msgid "Apply on all sites in the network."
2380
  msgstr "יישום על כל האתרים ברשת."
2381
 
2382
+ #: templates/partials/network-activation.php:31
2383
  msgid "Activate license on all pending sites."
2384
  msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים."
2385
 
2386
+ #: templates/partials/network-activation.php:32
2387
  msgid "Apply on all pending sites."
2388
  msgstr "יישום על כל האתרים התלויים והעומדים."
2389
 
2390
+ #: templates/partials/network-activation.php40,
2391
+ #: templates/partials/network-activation.php:74
2392
  msgid "allow"
2393
  msgstr "אפשר"
2394
 
2395
+ #: templates/partials/network-activation.php43,
2396
+ #: templates/partials/network-activation.php:77
2397
  msgid "delegate"
2398
  msgstr "האצל"
2399
 
2400
+ #: templates/partials/network-activation.php47,
2401
+ #: templates/partials/network-activation.php:81
2402
  msgid "skip"
2403
  msgstr "דלג"
2404
 
2424
  msgid "Last license"
2425
  msgstr "רישיון אחרון"
2426
 
2427
+ #: templates/account/partials/addon.php:167
2428
  msgid "Cancelled"
2429
  msgstr "בוטל"
2430
 
2431
+ #: templates/account/partials/addon.php:177
2432
  msgid "No expiration"
2433
  msgstr "ללא תפוגה"
2434
 
 
 
 
 
 
2435
  #: templates/account/partials/site.php:181
2436
  msgid "Owner Name"
2437
  msgstr "שם הבעלים"
2456
  msgid "Contact Support"
2457
  msgstr "צור קשר"
2458
 
2459
+ #: templates/forms/deactivation/form.php:64
2460
  msgid "Anonymous feedback"
2461
  msgstr "פידבק אנונימי"
2462
 
2463
+ #: templates/forms/deactivation/form.php:70
2464
  msgid "Deactivate"
2465
  msgstr "כיבוי"
2466
 
2467
+ #: templates/forms/deactivation/form.php:72
2468
  msgid "Activate %s"
2469
  msgstr "Activate %s"
2470
 
2471
+ #: templates/forms/deactivation/form.php:87
2472
  msgid "Quick Feedback"
2473
  msgstr "Quick Feedback"
2474
 
2475
+ #: templates/forms/deactivation/form.php:91
2476
  msgid "If you have a moment, please let us know why you are %s"
2477
  msgstr "If you have a moment, please let us know why you are %s"
2478
 
2479
+ #: templates/forms/deactivation/form.php:91
2480
  msgid "deactivating"
2481
  msgstr "deactivating"
2482
 
2483
+ #: templates/forms/deactivation/form.php:91
2484
  msgid "switching"
2485
  msgstr "switching"
2486
 
2487
+ #: templates/forms/deactivation/form.php:365
2488
  msgid "Submit & %s"
2489
  msgstr "Submit & %s"
2490
 
2491
+ #: templates/forms/deactivation/form.php:386
2492
  msgid "Kindly tell us the reason so we can improve."
2493
  msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
2494
 
2495
+ #: templates/forms/deactivation/form.php:511
2496
  msgid "Yes - %s"
2497
  msgstr "Yes - %s"
2498
 
2499
+ #: templates/forms/deactivation/form.php:518
2500
  msgid "Skip & %s"
2501
  msgstr "דלג ו%s"
2502
 
vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.po CHANGED
@@ -7,8 +7,8 @@ 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-01-10 20:38+0000\n"
11
- "Last-Translator: Peter Ambrus\n"
12
  "Language: hu_HU\n"
13
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,772 +21,792 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
 
28
- #: includes/class-freemius.php:1690
29
  msgid "Error"
30
  msgstr "Hiba"
31
 
32
- #: includes/class-freemius.php:2011
33
  msgid "I found a better %s"
34
  msgstr "Jobb %st találtam"
35
 
36
- #: includes/class-freemius.php:2013
37
  msgid "What's the %s's name?"
38
  msgstr "Mi a %s neve?"
39
 
40
- #: includes/class-freemius.php:2019
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom."
43
 
44
- #: includes/class-freemius.php:2021
45
  msgid "Deactivation"
46
  msgstr "Deaktiválás"
47
 
48
- #: includes/class-freemius.php:2022
49
  msgid "Theme Switch"
50
  msgstr "Sablon váltás"
51
 
52
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Egyéb"
55
 
56
- #: includes/class-freemius.php:2039
57
  msgid "I no longer need the %s"
58
  msgstr "I no longer need the %s"
59
 
60
- #: includes/class-freemius.php:2046
61
  msgid "I only needed the %s for a short period"
62
  msgstr "I only needed the %s for a short period"
63
 
64
- #: includes/class-freemius.php:2052
65
  msgid "The %s broke my site"
66
  msgstr "The %s broke my site"
67
 
68
- #: includes/class-freemius.php:2059
69
  msgid "The %s suddenly stopped working"
70
  msgstr "The %s suddenly stopped working"
71
 
72
- #: includes/class-freemius.php:2069
73
  msgid "I can't pay for it anymore"
74
  msgstr "Nem tudom tovább fizetni"
75
 
76
- #: includes/class-freemius.php:2071
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
79
 
80
- #: includes/class-freemius.php:2077
81
  msgid "I don't like to share my information with you"
82
  msgstr "Nem szeretném megosztani veletek az információt"
83
 
84
- #: includes/class-freemius.php:2098
85
  msgid "The %s didn't work"
86
  msgstr "A %s nem működött"
87
 
88
- #: includes/class-freemius.php:2108
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "Nem értettem, hogy kell használni"
91
 
92
- #: includes/class-freemius.php:2116
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "The %s is great, but I need specific feature that you don't support"
95
 
96
- #: includes/class-freemius.php:2118
97
  msgid "What feature?"
98
  msgstr "Melyik funkcióra van szükséged?"
99
 
100
- #: includes/class-freemius.php:2122
101
  msgid "The %s is not working"
102
  msgstr "A(z) %s nem működik"
103
 
104
- #: includes/class-freemius.php:2124
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
107
 
108
- #: includes/class-freemius.php:2128
109
  msgid "It's not what I was looking for"
110
  msgstr "Nem ezt kerestem"
111
 
112
- #: includes/class-freemius.php:2130
113
  msgid "What you've been looking for?"
114
  msgstr "Pontosan mit kerestél?"
115
 
116
- #: includes/class-freemius.php:2134
117
  msgid "The %s didn't work as expected"
118
  msgstr "A %s nem az elvárásoknak megfelelően működött"
119
 
120
- #: includes/class-freemius.php:2136
121
  msgid "What did you expect?"
122
  msgstr "Mire számítottál?"
123
 
124
- #: includes/class-freemius.php2942, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Freemius Debug"
127
 
128
- #: includes/class-freemius.php:3670
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "I don't know what is cURL or how to install it, help me!"
131
 
132
- #: includes/class-freemius.php:3672
133
  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."
134
  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."
135
 
136
- #: includes/class-freemius.php:3679
137
  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."
138
  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."
139
 
140
- #: includes/class-freemius.php:3784
141
  msgid "Yes - do your thing"
142
  msgstr "Igen - tedd a dolgod"
143
 
144
- #: includes/class-freemius.php:3789
145
  msgid "No - just deactivate"
146
  msgstr "Nem - csak deaktiválom"
147
 
148
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
- #: includes/class-freemius.php19001, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Hoppá"
158
 
159
- #: includes/class-freemius.php:3903
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:4340
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:4341
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.php4487, includes/class-freemius.php4512,
174
- #: includes/class-freemius.php:17953
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
177
 
178
- #: includes/class-freemius.php:5130
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "Premium %s version was successfully activated."
181
 
182
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "Fantasztikus"
186
 
187
- #: includes/class-freemius.php:5157
188
  msgid "You have a %s license."
189
  msgstr "You have a %s license."
190
 
191
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
- #: includes/class-freemius.php:17707
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Juhuuu"
198
 
199
- #: includes/class-freemius.php:5425
200
  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."
201
  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."
202
 
203
- #: includes/class-freemius.php:5429
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
 
207
- #: includes/class-freemius.php5438, templates/add-ons.php103,
208
- #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "More information about %s"
211
 
212
- #: includes/class-freemius.php:5439
213
  msgid "Purchase License"
214
  msgstr "Licensz vásárlása"
215
 
216
- #: includes/class-freemius.php6372, templates/connect.php:163
217
  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."
218
  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."
219
 
220
- #: includes/class-freemius.php:6376
221
  msgid "start the trial"
222
  msgstr "próbaidő indítása"
223
 
224
- #: includes/class-freemius.php6377, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "befejezd a telepítést"
227
 
228
- #: includes/class-freemius.php:6490
229
  msgid "You are just one step away - %s"
230
  msgstr "Már csak egy lépés van hátra - %s"
231
 
232
- #: includes/class-freemius.php:6493
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "\"%s\" aktiválásának a befejezése most"
236
 
237
- #: includes/class-freemius.php:6571
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "We made a few tweaks to the %s, %s"
240
 
241
- #: includes/class-freemius.php:6575
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "Opt in to make \"%s\" better!"
244
 
245
- #: includes/class-freemius.php:7003
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "The upgrade of %s was successfully completed."
248
 
249
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
- #: includes/class-fs-plugin-updater.php1081,
251
- #: includes/class-fs-plugin-updater.php1088,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Kiegészítő"
255
 
256
- #: includes/class-freemius.php8927, templates/debug.php359,
257
- #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Bővítmény"
260
 
261
- #: includes/class-freemius.php8928, templates/debug.php359,
262
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
263
  msgid "Theme"
264
  msgstr "Sablon"
265
 
266
- #: includes/class-freemius.php:11412
 
 
 
 
267
  msgid "Invalid site details collection."
268
  msgstr "Invalid site details collection."
269
 
270
- #: includes/class-freemius.php:11532
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
273
 
274
- #: includes/class-freemius.php:11534
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
 
278
- #: includes/class-freemius.php:11808
279
  msgid "Account is pending activation."
280
  msgstr "A fiók aktiválása függőben."
281
 
282
- #: includes/class-freemius.php11920,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Vásárolj licenszet most"
286
 
287
- #: includes/class-freemius.php11932,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Licensz kulcs megújítása"
291
 
292
- #: includes/class-freemius.php:11936
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s to access version %s security & feature updates, and support."
295
 
296
- #: includes/class-freemius.php:14319
297
  msgid "%s activation was successfully completed."
298
  msgstr "%s activation was successfully completed."
299
 
300
- #: includes/class-freemius.php:14333
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
303
 
304
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
  msgid "Your trial has been successfully started."
306
  msgstr "A próbaidőszakodat sikeresen aktiváltuk."
307
 
308
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
- #: includes/class-freemius.php:15028
310
  msgid "Couldn't activate %s."
311
  msgstr "Couldn't activate %s."
312
 
313
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
- #: includes/class-freemius.php:15029
315
  msgid "Please contact us with the following message:"
316
  msgstr "Please contact us with the following message:"
317
 
318
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
319
  msgid "Upgrade"
320
  msgstr "Előfizetés frissítése"
321
 
322
- #: includes/class-freemius.php:15384
323
  msgid "Start Trial"
324
  msgstr "Próbaidő indítása"
325
 
326
- #: includes/class-freemius.php:15386
327
  msgid "Pricing"
328
  msgstr "Árak"
329
 
330
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
  msgid "Affiliation"
332
  msgstr "Affiliation"
333
 
334
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
- #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Fiók"
338
 
339
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Kapcsolat"
343
 
344
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
- #: includes/class-freemius.php19849, templates/account.php100,
346
- #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Kiegészítők"
349
 
350
- #: includes/class-freemius.php:15541
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
- #: includes/class-freemius.php:15541
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
- #: includes/class-freemius.php15543, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Árak"
364
 
365
- #: includes/class-freemius.php15756,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Támogató fórum"
369
 
370
- #: includes/class-freemius.php:16542
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
373
 
374
- #: includes/class-freemius.php:16543
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Right on"
378
 
379
- #: includes/class-freemius.php:17168
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Your %s Add-on plan was successfully upgraded."
382
 
383
- #: includes/class-freemius.php:17170
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "%s Add-on was successfully purchased."
386
 
387
- #: includes/class-freemius.php:17173
388
  msgid "Download the latest version"
389
  msgstr "Töltsd le a legfrissebb verziót"
390
 
391
- #: includes/class-freemius.php:17259
392
- msgctxt "%1s - plugin title, %2s - API domain"
393
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
 
396
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
- #: includes/class-freemius.php:17755
398
  msgid "Error received from the server:"
399
  msgstr "Error received from the server:"
400
 
401
- #: includes/class-freemius.php:17272
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
 
405
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
- #: includes/class-freemius.php:17467
412
  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."
413
  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."
414
 
415
- #: includes/class-freemius.php17468, templates/account.php102,
416
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Próbaidő"
420
 
421
- #: includes/class-freemius.php:17473
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
 
425
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
  msgid "Please contact us here"
427
  msgstr "Please contact us here"
428
 
429
- #: includes/class-freemius.php:17487
 
 
 
 
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Your plan was successfully upgraded."
432
 
433
- #: includes/class-freemius.php:17505
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Your plan was successfully changed to %s."
436
 
437
- #: includes/class-freemius.php:17521
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Your license has expired. You can still continue using the free %s forever."
440
 
441
- #: includes/class-freemius.php:17523
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
 
445
- #: includes/class-freemius.php:17531
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
448
 
449
- #: includes/class-freemius.php:17544
450
  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."
451
  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."
452
 
453
- #: includes/class-freemius.php:17567
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Your free trial has expired. You can still continue using all our free features."
456
 
457
- #: includes/class-freemius.php:17569
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
 
461
- #: includes/class-freemius.php:17674
462
  msgid "It looks like the license could not be activated."
463
  msgstr "It looks like the license could not be activated."
464
 
465
- #: includes/class-freemius.php:17704
466
  msgid "Your license was successfully activated."
467
  msgstr "Your license was successfully activated."
468
 
469
- #: includes/class-freemius.php:17730
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "It looks like your site currently doesn't have an active license."
472
 
473
- #: includes/class-freemius.php:17754
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
476
 
477
- #: includes/class-freemius.php:17782
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
480
 
481
- #: includes/class-freemius.php:17783
482
  msgid "O.K"
483
  msgstr "Rendben"
484
 
485
- #: includes/class-freemius.php:17836
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
 
489
- #: includes/class-freemius.php:17845
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
 
493
- #: includes/class-freemius.php:17887
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "You are already running the %s in a trial mode."
496
 
497
- #: includes/class-freemius.php:17898
498
  msgid "You already utilized a trial before."
499
  msgstr "You already utilized a trial before."
500
 
501
- #: includes/class-freemius.php:17912
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "Plan %s do not exist, therefore, can't start a trial."
504
 
505
- #: includes/class-freemius.php:17923
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "Plan %s does not support a trial period."
508
 
509
- #: includes/class-freemius.php:17934
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "None of the %s's plans supports a trial period."
512
 
513
- #: includes/class-freemius.php:17984
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
 
517
- #: includes/class-freemius.php:18020
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
 
521
- #: includes/class-freemius.php:18039
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Your %s free trial was successfully cancelled."
524
 
525
- #: includes/class-freemius.php:18346
526
  msgid "Version %s was released."
527
  msgstr "Version %s was released."
528
 
529
- #: includes/class-freemius.php:18346
530
  msgid "Please download %s."
531
  msgstr "Please download %s."
532
 
533
- #: includes/class-freemius.php:18353
534
  msgid "the latest %s version here"
535
  msgstr "the latest %s version here"
536
 
537
- #: includes/class-freemius.php:18358
538
  msgid "New"
539
  msgstr "Új"
540
 
541
- #: includes/class-freemius.php:18363
542
  msgid "Seems like you got the latest release."
543
  msgstr "Seems like you got the latest release."
544
 
545
- #: includes/class-freemius.php:18364
546
  msgid "You are all good!"
547
  msgstr "Minden rendben!"
548
 
549
- #: includes/class-freemius.php:18632
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
 
553
- #: includes/class-freemius.php:18769
554
  msgid "Site successfully opted in."
555
  msgstr "Site successfully opted in."
556
 
557
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
  msgid "Awesome"
559
  msgstr "Nagyszerű"
560
 
561
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
564
 
565
- #: includes/class-freemius.php:18787
566
  msgid "Thank you!"
567
  msgstr "Köszönjük!"
568
 
569
- #: includes/class-freemius.php:18794
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
572
 
573
- #: includes/class-freemius.php:18923
574
  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."
575
  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."
576
 
577
- #: includes/class-freemius.php:18929
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
 
581
- #: includes/class-freemius.php:18934
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s is the new owner of the account."
584
 
585
- #: includes/class-freemius.php:18936
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Gratulálunk"
589
 
590
- #: includes/class-freemius.php:18956
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
 
594
- #: includes/class-freemius.php:18957
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
 
598
- #: includes/class-freemius.php:18964
599
  msgid "Change Ownership"
600
  msgstr "Tulajdonos módosítása"
601
 
602
- #: includes/class-freemius.php:18972
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
 
606
- #: includes/class-freemius.php:18984
607
  msgid "Please provide your full name."
608
  msgstr "Kérlek add meg a teljes neved!"
609
 
610
- #: includes/class-freemius.php:18989
611
  msgid "Your name was successfully updated."
612
  msgstr "A neved sikeresen frissítettük."
613
 
614
- #: includes/class-freemius.php:19050
615
  msgid "You have successfully updated your %s."
616
  msgstr "You have successfully updated your %s."
617
 
618
- #: includes/class-freemius.php:19190
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
 
622
- #: includes/class-freemius.php:19191
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Figyelem"
626
 
627
- #: includes/class-freemius.php:19621
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Üdv"
631
 
632
- #: includes/class-freemius.php:19621
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
 
636
- #: includes/class-freemius.php:19629
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "No commitment for %s days - cancel anytime!"
639
 
640
- #: includes/class-freemius.php:19630
641
  msgid "No credit card required"
642
  msgstr "Bankkártya megadása nem kötelező"
643
 
644
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Start free trial"
648
 
649
- #: includes/class-freemius.php:19714
650
  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!"
651
  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!"
652
 
653
- #: includes/class-freemius.php:19723
654
  msgid "Learn more"
655
  msgstr "Bővebben"
656
 
657
- #: includes/class-freemius.php19873, templates/account.php406,
658
- #: templates/account.php509, templates/connect.php171,
659
- #: templates/connect.php421, templates/forms/license-activation.php24,
660
- #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Licensz aktiválása"
663
 
664
- #: includes/class-freemius.php19874, templates/account.php469,
665
- #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Licensz módosítása"
668
 
669
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Leiratkozás"
672
 
673
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Feliratkozás"
678
 
679
- #: includes/class-freemius.php:20187
680
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
 
683
- #: includes/class-freemius.php:20195
684
  msgid "Activate %s features"
685
  msgstr "Activate %s features"
686
 
687
- #: includes/class-freemius.php:20208
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Please follow these steps to complete the upgrade"
690
 
691
- #: includes/class-freemius.php:20212
692
  msgid "Download the latest %s version"
693
  msgstr "Download the latest %s version"
694
 
695
- #: includes/class-freemius.php:20216
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Upload and activate the downloaded version"
698
 
699
- #: includes/class-freemius.php:20218
700
  msgid "How to upload and activate?"
701
  msgstr "How to upload and activate?"
702
 
703
- #: includes/class-freemius.php:20352
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
706
 
707
- #: includes/class-freemius.php:20513
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "Auto installation only works for opted-in users."
710
 
711
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
- #: includes/class-fs-plugin-updater.php1060,
713
- #: includes/class-fs-plugin-updater.php:1074
714
  msgid "Invalid module ID."
715
  msgstr "Invalid module ID."
716
 
717
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
  msgid "Premium version already active."
719
  msgstr "Premium version already active."
720
 
721
- #: includes/class-freemius.php:20539
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "You do not have a valid license to access the premium version."
724
 
725
- #: includes/class-freemius.php:20546
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
 
729
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
  msgid "Premium add-on version already installed."
731
  msgstr "Premium add-on version already installed."
732
 
733
- #: includes/class-freemius.php:20909
734
  msgid "View paid features"
735
  msgstr "Fizetős funkciók megtekintése"
736
 
737
- #: includes/class-freemius.php:21229
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "Thank you so much for using %s and its add-ons!"
740
 
741
- #: includes/class-freemius.php:21230
742
  msgid "Thank you so much for using %s!"
743
  msgstr "Thank you so much for using %s!"
744
 
745
- #: includes/class-freemius.php:21236
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
 
749
- #: includes/class-freemius.php:21240
750
  msgid "Thank you so much for using our products!"
751
  msgstr "Thank you so much for using our products!"
752
 
753
- #: includes/class-freemius.php:21241
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
 
757
- #: includes/class-freemius.php:21260
758
  msgid "%s and its add-ons"
759
  msgstr "%s and its add-ons"
760
 
761
- #: includes/class-freemius.php:21269
762
  msgid "Products"
763
  msgstr "Termékek"
764
 
765
- #: includes/class-freemius.php21276, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Igen"
768
 
769
- #: includes/class-freemius.php21277, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
772
 
773
- #: includes/class-freemius.php21278, templates/connect.php:278
774
  msgid "No"
775
  msgstr "Nem"
776
 
777
- #: includes/class-freemius.php21280, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
780
 
781
- #: includes/class-freemius.php:21290
782
- 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 🙂"
783
- 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 🙂"
784
 
785
- #: includes/class-freemius.php21292, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
 
789
- #: includes/class-freemius.php:21574
790
  msgid "License key is empty."
791
  msgstr "A licensz kulcs üres."
792
 
@@ -800,628 +820,680 @@ msgstr "Licensz megújítása"
800
  msgid "Buy license"
801
  msgstr "Licensz vásárlása"
802
 
803
- #: includes/class-fs-plugin-updater.php:278
 
804
  msgid "There is a %s of %s available."
805
  msgstr "There is a %s of %s available."
806
 
807
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
808
  msgid "new version"
809
  msgstr "új verzió"
810
 
811
- #: includes/class-fs-plugin-updater.php:305
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Important Upgrade Notice:"
814
 
815
- #: includes/class-fs-plugin-updater.php:1125
816
  msgid "Installing plugin: %s"
817
  msgstr "Bővítmény telepítése: %s"
818
 
819
- #: includes/class-fs-plugin-updater.php:1166
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
822
 
823
- #: includes/class-fs-plugin-updater.php:1348
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
 
827
- #: includes/fs-plugin-info-dialog.php369,
828
- #: templates/account/partials/addon.php:292
 
 
 
 
829
  msgctxt "verb"
830
  msgid "Purchase"
831
  msgstr "Vásárlás"
832
 
833
- #: includes/fs-plugin-info-dialog.php:372
834
  msgid "Start my free %s"
835
  msgstr "Start my free %s"
836
 
837
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
838
  msgid "Install Free Version Now"
839
  msgstr "Install Free Version Now"
840
 
841
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
- #: templates/account/partials/addon.php272,
843
- #: templates/account/partials/addon.php:322
 
844
  msgid "Install Now"
845
  msgstr "Telepítés most"
846
 
847
- #: includes/fs-plugin-info-dialog.php:425
848
  msgctxt "as download latest version"
849
  msgid "Download Latest Free Version"
850
  msgstr "Download Latest Free Version"
851
 
852
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
- #: templates/account/partials/addon.php:21
854
  msgctxt "as download latest version"
855
  msgid "Download Latest"
856
  msgstr "Download Latest"
857
 
858
- #: includes/fs-plugin-info-dialog.php:436
859
- msgid "Install Free Version Update Now"
860
- msgstr "Install Free Version Update Now"
861
-
862
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
- msgid "Install Update Now"
864
- msgstr "Frissítés telepítése most"
865
-
866
- #: includes/fs-plugin-info-dialog.php:448
867
- msgid "Newer Free Version (%s) Installed"
868
- msgstr "Newer Free Version (%s) Installed"
869
-
870
- #: includes/fs-plugin-info-dialog.php:449
871
- msgid "Newer Version (%s) Installed"
872
- msgstr "Newer Version (%s) Installed"
873
 
874
- #: includes/fs-plugin-info-dialog.php:457
875
- msgid "Latest Free Version Installed"
876
- msgstr "Legfrissebb ingyenes verzió telepítve"
877
 
878
- #: includes/fs-plugin-info-dialog.php:458
879
- msgid "Latest Version Installed"
880
- msgstr "Legfrissebb verzió telepítve"
 
881
 
882
- #: includes/fs-plugin-info-dialog.php:613
883
  msgctxt "Plugin installer section title"
884
  msgid "Description"
885
  msgstr "Leírás"
886
 
887
- #: includes/fs-plugin-info-dialog.php:614
888
  msgctxt "Plugin installer section title"
889
  msgid "Installation"
890
  msgstr "Telepítés"
891
 
892
- #: includes/fs-plugin-info-dialog.php:615
893
  msgctxt "Plugin installer section title"
894
  msgid "FAQ"
895
  msgstr "GYIK"
896
 
897
- #: includes/fs-plugin-info-dialog.php616,
898
  #: templates/plugin-info/description.php:55
899
  msgid "Screenshots"
900
  msgstr "Képernyőfotók"
901
 
902
- #: includes/fs-plugin-info-dialog.php:617
903
  msgctxt "Plugin installer section title"
904
  msgid "Changelog"
905
  msgstr "Változtatások"
906
 
907
- #: includes/fs-plugin-info-dialog.php:618
908
  msgctxt "Plugin installer section title"
909
  msgid "Reviews"
910
  msgstr "Vélemények"
911
 
912
- #: includes/fs-plugin-info-dialog.php:619
913
  msgctxt "Plugin installer section title"
914
  msgid "Other Notes"
915
  msgstr "Egyéb megjegyzések"
916
 
917
- #: includes/fs-plugin-info-dialog.php:634
918
  msgctxt "Plugin installer section title"
919
  msgid "Features & Pricing"
920
  msgstr "Funkciók & Árak"
921
 
922
- #: includes/fs-plugin-info-dialog.php:644
923
  msgid "Plugin Install"
924
  msgstr "Bővítmény telepítése"
925
 
926
- #: includes/fs-plugin-info-dialog.php:716
927
  msgctxt "e.g. Professional Plan"
928
  msgid "%s Plan"
929
  msgstr "%s csomag"
930
 
931
- #: includes/fs-plugin-info-dialog.php:742
932
  msgctxt "e.g. the best product"
933
  msgid "Best"
934
  msgstr "Legjobb"
935
 
936
- #: includes/fs-plugin-info-dialog.php748,
937
- #: includes/fs-plugin-info-dialog.php:768
938
  msgctxt "as every month"
939
  msgid "Monthly"
940
  msgstr "Havi"
941
 
942
- #: includes/fs-plugin-info-dialog.php:751
943
  msgctxt "as once a year"
944
  msgid "Annual"
945
  msgstr "Éves"
946
 
947
- #: includes/fs-plugin-info-dialog.php:754
948
  msgid "Lifetime"
949
  msgstr "Örök"
950
 
951
- #: includes/fs-plugin-info-dialog.php768,
952
- #: includes/fs-plugin-info-dialog.php770,
953
- #: includes/fs-plugin-info-dialog.php:772
954
  msgctxt "e.g. billed monthly"
955
  msgid "Billed %s"
956
  msgstr "%s számlázás"
957
 
958
- #: includes/fs-plugin-info-dialog.php:770
959
  msgctxt "as once a year"
960
  msgid "Annually"
961
  msgstr "Éves"
962
 
963
- #: includes/fs-plugin-info-dialog.php:772
964
  msgctxt "as once a year"
965
  msgid "Once"
966
  msgstr "Egyszeri"
967
 
968
- #: includes/fs-plugin-info-dialog.php:778
969
  msgid "Single Site License"
970
  msgstr "Egy weboldalas licensz"
971
 
972
- #: includes/fs-plugin-info-dialog.php:780
973
  msgid "Unlimited Licenses"
974
  msgstr "Korlátlan licensz"
975
 
976
- #: includes/fs-plugin-info-dialog.php:782
977
  msgid "Up to %s Sites"
978
  msgstr "Up to %s Sites"
979
 
980
- #: includes/fs-plugin-info-dialog.php792,
981
  #: templates/plugin-info/features.php:82
982
  msgctxt "as monthly period"
983
  msgid "mo"
984
  msgstr "hó"
985
 
986
- #: includes/fs-plugin-info-dialog.php799,
987
  #: templates/plugin-info/features.php:80
988
  msgctxt "as annual period"
989
  msgid "year"
990
  msgstr "év"
991
 
992
- #: includes/fs-plugin-info-dialog.php:853
993
  msgctxt "noun"
994
  msgid "Price"
995
  msgstr "Ár"
996
 
997
- #: includes/fs-plugin-info-dialog.php:901
998
  msgid "Save %s"
999
  msgstr "%s mentése"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php:911
1002
  msgid "No commitment for %s - cancel anytime"
1003
  msgstr "No commitment for %s - cancel anytime"
1004
 
1005
- #: includes/fs-plugin-info-dialog.php:914
1006
  msgid "After your free %s, pay as little as %s"
1007
  msgstr "After your free %s, pay as little as %s"
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:925
1010
  msgid "Details"
1011
  msgstr "Részletek"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
- #: templates/account/partials/addon.php:32
1016
  msgctxt "product version"
1017
  msgid "Version"
1018
  msgstr "Verzió"
1019
 
1020
- #: includes/fs-plugin-info-dialog.php:936
1021
  msgctxt "as the plugin author"
1022
  msgid "Author"
1023
  msgstr "Szerző"
1024
 
1025
- #: includes/fs-plugin-info-dialog.php:943
1026
  msgid "Last Updated"
1027
  msgstr "Utolsó frissítés"
1028
 
1029
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
  msgctxt "x-ago"
1031
  msgid "%s ago"
1032
  msgstr "%s ago"
1033
 
1034
- #: includes/fs-plugin-info-dialog.php:957
1035
  msgid "Requires WordPress Version"
1036
  msgstr "A következő WordPress verzió szükséges:"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php:958
1039
  msgid "%s or higher"
1040
  msgstr "%s or higher"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:965
1043
  msgid "Compatible up to"
1044
  msgstr "Compatible up to"
1045
 
1046
- #: includes/fs-plugin-info-dialog.php:973
1047
  msgid "Downloaded"
1048
  msgstr "Letöltések száma:"
1049
 
1050
- #: includes/fs-plugin-info-dialog.php:977
1051
  msgid "%s time"
1052
  msgstr "%s"
1053
 
1054
- #: includes/fs-plugin-info-dialog.php:979
1055
  msgid "%s times"
1056
  msgstr "%s"
1057
 
1058
- #: includes/fs-plugin-info-dialog.php:989
1059
  msgid "WordPress.org Plugin Page"
1060
  msgstr "WordPress.org bővítmény oldal"
1061
 
1062
- #: includes/fs-plugin-info-dialog.php:997
1063
  msgid "Plugin Homepage"
1064
  msgstr "Bővítmény oldala"
1065
 
1066
- #: includes/fs-plugin-info-dialog.php1005,
1067
- #: includes/fs-plugin-info-dialog.php:1087
1068
  msgid "Donate to this plugin"
1069
  msgstr "Bővítmény támogatása"
1070
 
1071
- #: includes/fs-plugin-info-dialog.php:1012
1072
  msgid "Average Rating"
1073
  msgstr "Átlagos értékelés"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1019
1076
  msgid "based on %s"
1077
  msgstr "based on %s"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php:1023
1080
  msgid "%s rating"
1081
  msgstr "%s rating"
1082
 
1083
- #: includes/fs-plugin-info-dialog.php:1025
1084
  msgid "%s ratings"
1085
  msgstr "%s ratings"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php:1040
1088
  msgid "%s star"
1089
  msgstr "%s star"
1090
 
1091
- #: includes/fs-plugin-info-dialog.php:1042
1092
  msgid "%s stars"
1093
  msgstr "%s stars"
1094
 
1095
- #: includes/fs-plugin-info-dialog.php:1053
1096
  msgid "Click to see reviews that provided a rating of %s"
1097
  msgstr "Click to see reviews that provided a rating of %s"
1098
 
1099
- #: includes/fs-plugin-info-dialog.php:1066
1100
  msgid "Contributors"
1101
  msgstr "Közreműködők"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1095,
1104
- #: includes/fs-plugin-info-dialog.php:1097
1105
  msgid "Warning"
1106
  msgstr "Figyelmeztetés"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1095
1109
  msgid "This plugin has not been tested with your current version of WordPress."
1110
  msgstr "This plugin has not been tested with your current version of WordPress."
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1097
1113
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1115
 
1116
- #: includes/fs-plugin-info-dialog.php:1116
1117
  msgid "Paid add-on must be deployed to Freemius."
1118
  msgstr "Paid add-on must be deployed to Freemius."
1119
 
1120
- #: includes/fs-plugin-info-dialog.php:1117
1121
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1123
 
1124
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
  #: templates/account/partials/site.php:295
1127
  msgid "Downgrading your plan"
1128
  msgstr "Downgrading your plan"
1129
 
1130
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
- #: templates/account/partials/addon.php23,
1132
  #: templates/account/partials/site.php:296
1133
  msgid "Cancelling the subscription"
1134
  msgstr "Cancelling the subscription"
1135
 
1136
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
  #. subscription'
1138
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
- #: templates/account/partials/addon.php25,
1140
- #: templates/account/partials/site.php:298
1141
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
 
1144
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
- #: templates/account/partials/addon.php26,
1146
  #: templates/account/partials/site.php:299
1147
  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."
1148
  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."
1149
 
1150
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
- #: templates/account/partials/addon.php:27
1152
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
 
1155
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
- #: templates/account/partials/addon.php28,
1157
  #: templates/account/partials/site.php:300
1158
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
 
1161
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
- #: templates/account/partials/addon.php29,
1163
  #: templates/account/partials/site.php:301
1164
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
 
1167
  #. translators: %s: Plan title (e.g. "Professional")
1168
- #: templates/account.php90,
1169
  #: templates/account/partials/activate-license-button.php31,
1170
- #: templates/account/partials/addon.php:31
1171
  msgid "Activate %s Plan"
1172
  msgstr "%s csomag aktiválása"
1173
 
1174
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
- #: templates/account.php93, templates/account/partials/addon.php34,
1176
  #: templates/account/partials/site.php:275
1177
  msgid "Auto renews in %s"
1178
  msgstr "Auto renews in %s"
1179
 
1180
  #. translators: %s: Time period (e.g. Expires in "2 months")
1181
- #: templates/account.php95, templates/account/partials/addon.php36,
1182
  #: templates/account/partials/site.php:277
1183
  msgid "Expires in %s"
1184
  msgstr "Hátralévő idő: %s"
1185
 
1186
- #: templates/account.php96, templates/account/partials/addon.php:37
1187
  msgctxt "as synchronize license"
1188
  msgid "Sync License"
1189
  msgstr "Licensz szinkronizálása"
1190
 
1191
- #: templates/account.php97, templates/account/partials/addon.php:38
1192
  msgid "Cancel Trial"
1193
  msgstr "Próbaidő törlése"
1194
 
1195
- #: templates/account.php98, templates/account/partials/addon.php:39
1196
  msgid "Change Plan"
1197
  msgstr "Csomag módosítása"
1198
 
1199
- #: templates/account.php99, templates/account/partials/addon.php:40
1200
  msgctxt "verb"
1201
  msgid "Upgrade"
1202
  msgstr "Váltás nagyobb csomagra"
1203
 
1204
- #: templates/account.php101, templates/account/partials/addon.php42,
1205
  #: templates/account/partials/site.php:302
1206
  msgctxt "verb"
1207
  msgid "Downgrade"
1208
  msgstr "Váltás kisebb csomagra"
1209
 
1210
- #: templates/account.php103, templates/add-ons.php130,
1211
  #: templates/plugin-info/features.php72,
1212
- #: templates/account/partials/addon.php44,
1213
  #: templates/account/partials/site.php:31
1214
  msgid "Free"
1215
  msgstr "Ingyenes"
1216
 
1217
- #: templates/account.php104, templates/account/partials/addon.php:45
1218
- msgid "Activate"
1219
- msgstr "Aktiválás"
1220
-
1221
- #: templates/account.php105, templates/debug.php371,
1222
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
- #: templates/account/partials/addon.php:46
1224
  msgctxt "as product pricing plan"
1225
  msgid "Plan"
1226
  msgstr "Csomag"
1227
 
1228
- #: templates/account.php:158
 
 
 
 
1229
  msgid "Free Trial"
1230
  msgstr "Ingyenes próbaidő"
1231
 
1232
- #: templates/account.php:169
1233
  msgid "Account Details"
1234
  msgstr "Fiók információk"
1235
 
1236
- #: templates/account.php:179
 
 
 
 
1237
  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?"
1238
  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?"
1239
 
1240
- #: templates/account.php:181
1241
  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?"
1242
  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?"
1243
 
1244
- #: templates/account.php:184
1245
  msgid "Delete Account"
1246
  msgstr "Fiók törlése"
1247
 
1248
- #: templates/account.php196, templates/account/partials/addon.php159,
1249
  #: templates/account/partials/deactivate-license-button.php:35
1250
  msgid "Deactivate License"
1251
  msgstr "Licensz deaktiválása"
1252
 
1253
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
  msgid "Are you sure you want to proceed?"
1255
  msgstr "Are you sure you want to proceed?"
1256
 
1257
- #: templates/account.php219, templates/account/partials/addon.php:182
1258
  msgid "Cancel Subscription"
1259
  msgstr "Előfizetés törlése"
1260
 
1261
- #: templates/account.php:247
1262
  msgctxt "as synchronize"
1263
  msgid "Sync"
1264
  msgstr "Szinkronizálás"
1265
 
1266
- #: templates/account.php261, templates/debug.php:487
1267
  msgid "Name"
1268
  msgstr "Név"
1269
 
1270
- #: templates/account.php267, templates/debug.php:488
1271
  msgid "Email"
1272
  msgstr "Email"
1273
 
1274
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
  msgid "User ID"
1276
  msgstr "Felhasználó ID"
1277
 
1278
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1279
  msgid "Site ID"
1280
  msgstr "Weboldal ID"
1281
 
1282
- #: templates/account.php:285
1283
  msgid "No ID"
1284
  msgstr "Nincs ID"
1285
 
1286
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
- #: templates/debug.php453, templates/debug.php490,
1288
  #: templates/account/partials/site.php:219
1289
  msgid "Public Key"
1290
  msgstr "Publikus kulcs"
1291
 
1292
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
- #: templates/debug.php491, templates/account/partials/site.php:231
1294
  msgid "Secret Key"
1295
  msgstr "Titkos kulcs"
1296
 
1297
- #: templates/account.php:299
1298
  msgctxt "as secret encryption key missing"
1299
  msgid "No Secret"
1300
  msgstr "Nincs titkos kulcs"
1301
 
1302
- #: templates/account.php318, templates/account/partials/site.php112,
1303
  #: templates/account/partials/site.php:114
1304
  msgid "Trial"
1305
  msgstr "Próbaidő"
1306
 
1307
- #: templates/account.php337, templates/debug.php531,
1308
  #: templates/account/partials/site.php:248
1309
  msgid "License Key"
1310
  msgstr "Licensz kulcs"
1311
 
1312
- #: templates/account.php:367
 
 
 
 
1313
  msgid "not verified"
1314
  msgstr "nem ellenőrzött"
1315
 
1316
- #: templates/account.php376, templates/account/partials/addon.php:120
1317
  msgid "Expired"
1318
  msgstr "Lejárt"
1319
 
1320
- #: templates/account.php:428
1321
  msgid "Premium version"
1322
  msgstr "Prémium verzió"
1323
 
1324
- #: templates/account.php:430
1325
  msgid "Free version"
1326
  msgstr "Ingyenes verzió"
1327
 
1328
- #: templates/account.php:442
1329
  msgid "Verify Email"
1330
  msgstr "Email ellenőrzése"
1331
 
1332
- #: templates/account.php:453
1333
  msgid "Download %s Version"
1334
  msgstr "%s verzió letöltése"
1335
 
1336
- #: templates/account.php467, templates/account.php649,
1337
  #: templates/account/partials/site.php237,
1338
  #: templates/account/partials/site.php:255
1339
  msgctxt "verb"
1340
  msgid "Show"
1341
  msgstr "Mutasd"
1342
 
1343
- #: templates/account.php:481
1344
  msgid "What is your %s?"
1345
  msgstr "Mi a te %s?"
1346
 
1347
- #: templates/account.php489, templates/account/billing.php:27
1348
  msgctxt "verb"
1349
  msgid "Edit"
1350
  msgstr "Szerkesztés"
1351
 
1352
- #: templates/account.php:502
1353
  msgid "Sites"
1354
  msgstr "Weboldalak"
1355
 
1356
- #: templates/account.php:513
1357
  msgid "Search by address"
1358
  msgstr "Keresés cím alapján"
1359
 
1360
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
- #: templates/debug.php524, templates/debug.php597,
1363
- #: templates/account/payments.php35, templates/debug/logger.php:21
1364
- msgid "ID"
1365
- msgstr "ID"
1366
-
1367
- #: templates/account.php523, templates/debug.php:367
1368
  msgid "Address"
1369
  msgstr "Cím"
1370
 
1371
- #: templates/account.php:524
1372
  msgid "License"
1373
  msgstr "Licensz"
1374
 
1375
- #: templates/account.php:525
1376
  msgid "Plan"
1377
  msgstr "Csomag"
1378
 
1379
- #: templates/account.php:573
1380
  msgctxt "as software license"
1381
  msgid "License"
1382
  msgstr "Licensz"
1383
 
1384
- #: templates/account.php:643
1385
  msgctxt "verb"
1386
  msgid "Hide"
1387
  msgstr "Elrejt"
1388
 
1389
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1390
  msgid "Cancelling %s"
1391
  msgstr "Cancelling %s"
1392
 
1393
- #: templates/account.php686, templates/account.php703,
1394
  #: templates/forms/subscription-cancellation.php27,
1395
- #: templates/forms/deactivation/form.php:117
1396
  msgid "trial"
1397
  msgstr "próbaidő"
1398
 
1399
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
  msgid "Cancelling %s..."
1401
  msgstr "Cancelling %s..."
1402
 
1403
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
- #: templates/forms/deactivation/form.php:118
1405
  msgid "subscription"
1406
  msgstr "előfizetés"
1407
 
1408
- #: templates/account.php:718
1409
  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?"
1410
  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?"
1411
 
1412
- #: templates/add-ons.php:36
 
 
 
 
1413
  msgid "Add Ons for %s"
1414
  msgstr "Add Ons for %s"
1415
 
1416
- #: templates/add-ons.php:44
1417
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
  msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
 
1420
- #: templates/add-ons.php:139
1421
- msgid "View details"
1422
- msgstr "Részletek megtekintése"
 
 
 
 
 
 
1423
 
1424
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
  #: templates/forms/resend-key.php:77
1426
  msgctxt "as close a window"
1427
  msgid "Dismiss"
@@ -1447,11 +1519,11 @@ msgstr "The installation process has started and may take a few minutes to compl
1447
  msgid "Cancel Installation"
1448
  msgstr "Telepítés törlése"
1449
 
1450
- #: templates/checkout.php:172
1451
  msgid "Checkout"
1452
  msgstr "Pénztár"
1453
 
1454
- #: templates/checkout.php:172
1455
  msgid "PCI compliant"
1456
  msgstr "PCI compliant"
1457
 
@@ -1473,7 +1545,7 @@ msgstr "Aktivációs email újraküldése"
1473
  msgid "Thanks %s!"
1474
  msgstr "Köszönjük %s!"
1475
 
1476
- #: templates/connect.php172, templates/forms/license-activation.php:43
1477
  msgid "Agree & Activate License"
1478
  msgstr "Licensz elfogadása és aktiválása"
1479
 
@@ -1521,15 +1593,15 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i
1521
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
 
1524
- #: templates/connect.php253, templates/forms/license-activation.php:46
1525
  msgid "License key"
1526
  msgstr "Licensz kulcs"
1527
 
1528
- #: templates/connect.php256, templates/forms/license-activation.php:19
1529
  msgid "Can't find your license key?"
1530
  msgstr "Nem találod a licensz kulcsod?"
1531
 
1532
- #: templates/connect.php315, templates/connect.php630,
1533
  #: templates/forms/deactivation/retry-skip.php:20
1534
  msgctxt "verb"
1535
  msgid "Skip"
@@ -1579,7 +1651,7 @@ msgstr "Aktiválás, deaktiválás és kikapcsolás"
1579
  msgid "Newsletter"
1580
  msgstr "Hírlevél"
1581
 
1582
- #: templates/connect.php391, templates/forms/license-activation.php:38
1583
  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."
1584
  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."
1585
 
@@ -1591,10 +1663,6 @@ msgstr "Milyen jogosultágok lesznek engedélyezve?"
1591
  msgid "Don't have a license key?"
1592
  msgstr "Nincs még licensz kulcsod?"
1593
 
1594
- #: templates/connect.php:418
1595
- msgid "Activate Free Version"
1596
- msgstr "Ingyenes verzió aktiválása"
1597
-
1598
  #: templates/connect.php:420
1599
  msgid "Have a license key?"
1600
  msgstr "Van licensz kulcsod?"
@@ -1611,12 +1679,12 @@ msgstr "Licensz szerződés"
1611
  msgid "Terms of Service"
1612
  msgstr "Szolgáltatási feltételek"
1613
 
1614
- #: templates/connect.php:766
1615
  msgctxt "as in the process of sending an email"
1616
  msgid "Sending email"
1617
  msgstr "Email küldése"
1618
 
1619
- #: templates/connect.php:767
1620
  msgctxt "as activating plugin"
1621
  msgid "Activating"
1622
  msgstr "Aktiválás"
@@ -1644,8 +1712,8 @@ msgctxt "as code debugging"
1644
  msgid "Debugging"
1645
  msgstr "Debugging"
1646
 
1647
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
- #: templates/debug.php:492
1649
  msgid "Actions"
1650
  msgstr "Események"
1651
 
@@ -1681,191 +1749,191 @@ msgstr "Load DB Option"
1681
  msgid "Set DB Option"
1682
  msgstr "Set DB Option"
1683
 
1684
- #: templates/debug.php:180
1685
  msgid "Key"
1686
  msgstr "Kulcs"
1687
 
1688
- #: templates/debug.php:181
1689
  msgid "Value"
1690
  msgstr "Érték"
1691
 
1692
- #: templates/debug.php:197
1693
  msgctxt "as software development kit versions"
1694
  msgid "SDK Versions"
1695
  msgstr "SDK verziók"
1696
 
1697
- #: templates/debug.php:202
1698
  msgid "SDK Path"
1699
  msgstr "SDK útvonal"
1700
 
1701
- #: templates/debug.php203, templates/debug.php:242
1702
  msgid "Module Path"
1703
  msgstr "Module Path"
1704
 
1705
- #: templates/debug.php:204
1706
  msgid "Is Active"
1707
  msgstr "Aktív"
1708
 
1709
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
  msgid "Plugins"
1711
  msgstr "Bővítmények"
1712
 
1713
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
  msgid "Themes"
1715
  msgstr "Sablonok"
1716
 
1717
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
  #: templates/debug/scheduled-crons.php:80
1719
  msgid "Slug"
1720
  msgstr "Slug"
1721
 
1722
- #: templates/debug.php239, templates/debug.php:450
1723
  msgid "Title"
1724
  msgstr "Cím"
1725
 
1726
- #: templates/debug.php:240
1727
  msgctxt "as application program interface"
1728
  msgid "API"
1729
  msgstr "API"
1730
 
1731
- #: templates/debug.php:241
1732
  msgid "Freemius State"
1733
  msgstr "Freemius State"
1734
 
1735
- #: templates/debug.php:245
1736
  msgid "Network Blog"
1737
  msgstr "Network Blog"
1738
 
1739
- #: templates/debug.php:246
1740
  msgid "Network User"
1741
  msgstr "Network User"
1742
 
1743
- #: templates/debug.php:283
1744
  msgctxt "as connection was successful"
1745
  msgid "Connected"
1746
  msgstr "Connected"
1747
 
1748
- #: templates/debug.php:284
1749
  msgctxt "as connection blocked"
1750
  msgid "Blocked"
1751
  msgstr "Blocked"
1752
 
1753
- #: templates/debug.php:320
1754
  msgid "Simulate Trial Promotion"
1755
  msgstr "Simulate Trial Promotion"
1756
 
1757
- #: templates/debug.php:332
1758
  msgid "Simulate Network Upgrade"
1759
  msgstr "Simulate Network Upgrade"
1760
 
1761
- #: templates/debug.php:358
1762
  msgid "%s Installs"
1763
  msgstr "%s Installs"
1764
 
1765
- #: templates/debug.php:360
1766
  msgctxt "like websites"
1767
  msgid "Sites"
1768
  msgstr "Weboldalak"
1769
 
1770
- #: templates/debug.php366, templates/account/partials/site.php:148
1771
  msgid "Blog ID"
1772
  msgstr "Blog ID"
1773
 
1774
- #: templates/debug.php431, templates/debug.php509,
1775
- #: templates/account/partials/addon.php:339
1776
  msgctxt "verb"
1777
  msgid "Delete"
1778
  msgstr "Törlés"
1779
 
1780
- #: templates/debug.php:445
1781
  msgid "Add Ons of module %s"
1782
  msgstr "Add Ons of module %s"
1783
 
1784
- #: templates/debug.php:482
1785
  msgid "Users"
1786
  msgstr "Felhasználók"
1787
 
1788
- #: templates/debug.php:489
1789
  msgid "Verified"
1790
  msgstr "Ellenőrzött"
1791
 
1792
- #: templates/debug.php:520
1793
  msgid "%s Licenses"
1794
  msgstr "%s Licenses"
1795
 
1796
- #: templates/debug.php:525
1797
  msgid "Plugin ID"
1798
  msgstr "Bővítmény ID"
1799
 
1800
- #: templates/debug.php:527
1801
  msgid "Plan ID"
1802
  msgstr "Csomag ID"
1803
 
1804
- #: templates/debug.php:528
1805
  msgid "Quota"
1806
  msgstr "Quota"
1807
 
1808
- #: templates/debug.php:529
1809
  msgid "Activated"
1810
  msgstr "Sikeres aktiválás"
1811
 
1812
- #: templates/debug.php:530
1813
  msgid "Blocking"
1814
  msgstr "Blocking"
1815
 
1816
- #: templates/debug.php:532
1817
  msgctxt "as expiration date"
1818
  msgid "Expiration"
1819
  msgstr "Expiration"
1820
 
1821
- #: templates/debug.php:555
1822
  msgid "Debug Log"
1823
  msgstr "Debug Log"
1824
 
1825
- #: templates/debug.php:559
1826
  msgid "All Types"
1827
  msgstr "All Types"
1828
 
1829
- #: templates/debug.php:566
1830
  msgid "All Requests"
1831
  msgstr "All Requests"
1832
 
1833
- #: templates/debug.php571, templates/debug.php600,
1834
  #: templates/debug/logger.php:25
1835
  msgid "File"
1836
  msgstr "File"
1837
 
1838
- #: templates/debug.php572, templates/debug.php598,
1839
  #: templates/debug/logger.php:23
1840
  msgid "Function"
1841
  msgstr "Function"
1842
 
1843
- #: templates/debug.php:573
1844
  msgid "Process ID"
1845
  msgstr "Művelet ID"
1846
 
1847
- #: templates/debug.php:574
1848
  msgid "Logger"
1849
  msgstr "Logger"
1850
 
1851
- #: templates/debug.php575, templates/debug.php599,
1852
  #: templates/debug/logger.php:24
1853
  msgid "Message"
1854
  msgstr "Message"
1855
 
1856
- #: templates/debug.php:577
1857
  msgid "Filter"
1858
  msgstr "Filter"
1859
 
1860
- #: templates/debug.php:585
1861
  msgid "Download"
1862
  msgstr "Download"
1863
 
1864
- #: templates/debug.php596, templates/debug/logger.php:22
1865
  msgid "Type"
1866
  msgstr "Type"
1867
 
1868
- #: templates/debug.php601, templates/debug/logger.php:26
1869
  msgid "Timestamp"
1870
  msgstr "Timestamp"
1871
 
@@ -1892,53 +1960,53 @@ msgstr "Freemius API"
1892
  msgid "Requests"
1893
  msgstr "Requests"
1894
 
1895
- #: templates/account/billing.php:28
1896
  msgctxt "verb"
1897
  msgid "Update"
1898
  msgstr "Frissítés"
1899
 
1900
- #: templates/account/billing.php:39
1901
  msgid "Billing"
1902
  msgstr "Számlázás"
1903
 
1904
- #: templates/account/billing.php44, templates/account/billing.php:44
1905
  msgid "Business name"
1906
  msgstr "Cégnév"
1907
 
1908
- #: templates/account/billing.php45, templates/account/billing.php:45
1909
  msgid "Tax / VAT ID"
1910
  msgstr "Közösségi adószám"
1911
 
1912
- #: templates/account/billing.php48, templates/account/billing.php48,
1913
- #: templates/account/billing.php49, templates/account/billing.php:49
1914
  msgid "Address Line %d"
1915
  msgstr "Cím %d"
1916
 
1917
- #: templates/account/billing.php52, templates/account/billing.php:52
1918
  msgid "City"
1919
  msgstr "Város"
1920
 
1921
- #: templates/account/billing.php52, templates/account/billing.php:52
1922
  msgid "Town"
1923
  msgstr "Town"
1924
 
1925
- #: templates/account/billing.php53, templates/account/billing.php:53
1926
  msgid "ZIP / Postal Code"
1927
  msgstr "Irányítószám"
1928
 
1929
- #: templates/account/billing.php:308
1930
  msgid "Country"
1931
  msgstr "Ország"
1932
 
1933
- #: templates/account/billing.php:310
1934
  msgid "Select Country"
1935
  msgstr "Válaszz országot"
1936
 
1937
- #: templates/account/billing.php317, templates/account/billing.php:318
1938
  msgid "State"
1939
  msgstr "Megye"
1940
 
1941
- #: templates/account/billing.php317, templates/account/billing.php:318
1942
  msgid "Province"
1943
  msgstr "Province"
1944
 
@@ -2190,11 +2258,11 @@ msgstr "Mégsem"
2190
  msgid "Become an affiliate"
2191
  msgstr "Become an affiliate"
2192
 
2193
- #: templates/forms/license-activation.php:20
2194
  msgid "Please enter the license key that you received in the email right after the purchase:"
2195
  msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:"
2196
 
2197
- #: templates/forms/license-activation.php:25
2198
  msgid "Update License"
2199
  msgstr "Licensz frissítése"
2200
 
@@ -2261,6 +2329,14 @@ msgstr "Cancel %s - I no longer need any security & feature updates, nor support
2261
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
 
 
 
 
 
 
 
 
 
2264
  #: templates/forms/subscription-cancellation.php:103
2265
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
@@ -2274,7 +2350,7 @@ msgid "Proceed"
2274
  msgstr "Proceed"
2275
 
2276
  #: templates/forms/subscription-cancellation.php191,
2277
- #: templates/forms/deactivation/form.php:150
2278
  msgid "Cancel %s & Proceed"
2279
  msgstr "Cancel %s & Proceed"
2280
 
@@ -2286,38 +2362,42 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s
2286
  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."
2287
  msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2288
 
2289
- #: templates/js/style-premium-theme.php:37
2290
  msgid "Premium"
2291
  msgstr "Prémium"
2292
 
2293
- #: templates/partials/network-activation.php:23
 
 
 
 
2294
  msgid "Activate license on all sites in the network."
2295
  msgstr "Activate license on all sites in the network."
2296
 
2297
- #: templates/partials/network-activation.php:24
2298
  msgid "Apply on all sites in the network."
2299
  msgstr "Apply on all sites in the network."
2300
 
2301
- #: templates/partials/network-activation.php:27
2302
  msgid "Activate license on all pending sites."
2303
  msgstr "Activate license on all pending sites."
2304
 
2305
- #: templates/partials/network-activation.php:28
2306
  msgid "Apply on all pending sites."
2307
  msgstr "Apply on all pending sites."
2308
 
2309
- #: templates/partials/network-activation.php36,
2310
- #: templates/partials/network-activation.php:68
2311
  msgid "allow"
2312
  msgstr "allow"
2313
 
2314
- #: templates/partials/network-activation.php38,
2315
- #: templates/partials/network-activation.php:70
2316
  msgid "delegate"
2317
  msgstr "delegate"
2318
 
2319
- #: templates/partials/network-activation.php41,
2320
- #: templates/partials/network-activation.php:73
2321
  msgid "skip"
2322
  msgstr "ugrás"
2323
 
@@ -2343,19 +2423,14 @@ msgstr "%s left"
2343
  msgid "Last license"
2344
  msgstr "Last license"
2345
 
2346
- #: templates/account/partials/addon.php:115
2347
  msgid "Cancelled"
2348
  msgstr "Törölve"
2349
 
2350
- #: templates/account/partials/addon.php:125
2351
  msgid "No expiration"
2352
  msgstr "No expiration"
2353
 
2354
- #: templates/account/partials/addon.php264,
2355
- #: templates/account/partials/addon.php:317
2356
- msgid "Activate this add-on"
2357
- msgstr "Activate this add-on"
2358
-
2359
  #: templates/account/partials/site.php:181
2360
  msgid "Owner Name"
2361
  msgstr "Tulajdonos neve"
@@ -2380,47 +2455,47 @@ msgstr "Sorry for the inconvenience and we are here to help if you give us a cha
2380
  msgid "Contact Support"
2381
  msgstr "Írás az ügyfélszolgálatra"
2382
 
2383
- #: templates/forms/deactivation/form.php:59
2384
  msgid "Anonymous feedback"
2385
  msgstr "Névtelen visszajelzés"
2386
 
2387
- #: templates/forms/deactivation/form.php:66
2388
  msgid "Deactivate"
2389
  msgstr "Deaktiválás"
2390
 
2391
- #: templates/forms/deactivation/form.php:68
2392
  msgid "Activate %s"
2393
  msgstr "%s aktiválása"
2394
 
2395
- #: templates/forms/deactivation/form.php:80
2396
  msgid "Quick Feedback"
2397
  msgstr "Gyors visszajelzés"
2398
 
2399
- #: templates/forms/deactivation/form.php:84
2400
  msgid "If you have a moment, please let us know why you are %s"
2401
  msgstr "Kérlek mondd el, miért %s"
2402
 
2403
- #: templates/forms/deactivation/form.php:84
2404
  msgid "deactivating"
2405
  msgstr "deaktiválod"
2406
 
2407
- #: templates/forms/deactivation/form.php:84
2408
  msgid "switching"
2409
  msgstr "váltasz"
2410
 
2411
- #: templates/forms/deactivation/form.php:332
2412
  msgid "Submit & %s"
2413
  msgstr "Küldés & %s"
2414
 
2415
- #: templates/forms/deactivation/form.php:353
2416
  msgid "Kindly tell us the reason so we can improve."
2417
  msgstr "Ha elmondod az okát, tudunk fejlődni."
2418
 
2419
- #: templates/forms/deactivation/form.php:478
2420
  msgid "Yes - %s"
2421
  msgstr "Yes - %s"
2422
 
2423
- #: templates/forms/deactivation/form.php:485
2424
  msgid "Skip & %s"
2425
  msgstr "Kihagyás & %s"
2426
 
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-06-05 13:40+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"
14
  "Content-Type: text/plain; charset=UTF-8\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1838, templates/account.php:769
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:1845
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:2053
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:2055
37
  msgid "Error"
38
  msgstr "Hiba"
39
 
40
+ #: includes/class-freemius.php:2445
41
  msgid "I found a better %s"
42
  msgstr "Jobb %st találtam"
43
 
44
+ #: includes/class-freemius.php:2447
45
  msgid "What's the %s's name?"
46
  msgstr "Mi a %s neve?"
47
 
48
+ #: includes/class-freemius.php:2453
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:2455
53
  msgid "Deactivation"
54
  msgstr "Deaktiválás"
55
 
56
+ #: includes/class-freemius.php:2456
57
  msgid "Theme Switch"
58
  msgstr "Sablon váltás"
59
 
60
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
61
  msgid "Other"
62
  msgstr "Egyéb"
63
 
64
+ #: includes/class-freemius.php:2473
65
  msgid "I no longer need the %s"
66
  msgstr "I no longer need the %s"
67
 
68
+ #: includes/class-freemius.php:2480
69
  msgid "I only needed the %s for a short period"
70
  msgstr "I only needed the %s for a short period"
71
 
72
+ #: includes/class-freemius.php:2486
73
  msgid "The %s broke my site"
74
  msgstr "The %s broke my site"
75
 
76
+ #: includes/class-freemius.php:2493
77
  msgid "The %s suddenly stopped working"
78
  msgstr "The %s suddenly stopped working"
79
 
80
+ #: includes/class-freemius.php:2503
81
  msgid "I can't pay for it anymore"
82
  msgstr "Nem tudom tovább fizetni"
83
 
84
+ #: includes/class-freemius.php:2505
85
  msgid "What price would you feel comfortable paying?"
86
  msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
87
 
88
+ #: includes/class-freemius.php:2511
89
  msgid "I don't like to share my information with you"
90
  msgstr "Nem szeretném megosztani veletek az információt"
91
 
92
+ #: includes/class-freemius.php:2532
93
  msgid "The %s didn't work"
94
  msgstr "A %s nem működött"
95
 
96
+ #: includes/class-freemius.php:2542
97
  msgid "I couldn't understand how to make it work"
98
  msgstr "Nem értettem, hogy kell használni"
99
 
100
+ #: includes/class-freemius.php:2550
101
  msgid "The %s is great, but I need specific feature that you don't support"
102
  msgstr "The %s is great, but I need specific feature that you don't support"
103
 
104
+ #: includes/class-freemius.php:2552
105
  msgid "What feature?"
106
  msgstr "Melyik funkcióra van szükséged?"
107
 
108
+ #: includes/class-freemius.php:2556
109
  msgid "The %s is not working"
110
  msgstr "A(z) %s nem működik"
111
 
112
+ #: includes/class-freemius.php:2558
113
  msgid "Kindly share what didn't work so we can fix it for future users..."
114
  msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
115
 
116
+ #: includes/class-freemius.php:2562
117
  msgid "It's not what I was looking for"
118
  msgstr "Nem ezt kerestem"
119
 
120
+ #: includes/class-freemius.php:2564
121
  msgid "What you've been looking for?"
122
  msgstr "Pontosan mit kerestél?"
123
 
124
+ #: includes/class-freemius.php:2568
125
  msgid "The %s didn't work as expected"
126
  msgstr "A %s nem az elvárásoknak megfelelően működött"
127
 
128
+ #: includes/class-freemius.php:2570
129
  msgid "What did you expect?"
130
  msgstr "Mire számítottál?"
131
 
132
+ #: includes/class-freemius.php3425, templates/debug.php:20
133
  msgid "Freemius Debug"
134
  msgstr "Freemius Debug"
135
 
136
+ #: includes/class-freemius.php:4177
137
  msgid "I don't know what is cURL or how to install it, help me!"
138
  msgstr "I don't know what is cURL or how to install it, help me!"
139
 
140
+ #: includes/class-freemius.php:4179
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 "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
 
144
+ #: includes/class-freemius.php:4186
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 "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
 
148
+ #: includes/class-freemius.php:4291
149
  msgid "Yes - do your thing"
150
  msgstr "Igen - tedd a dolgod"
151
 
152
+ #: includes/class-freemius.php:4296
153
  msgid "No - just deactivate"
154
  msgstr "Nem - csak deaktiválom"
155
 
156
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
157
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
158
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
159
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
160
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
161
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
162
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
163
  msgctxt "exclamation"
164
  msgid "Oops"
165
  msgstr "Hoppá"
166
 
167
+ #: includes/class-freemius.php:4410
168
  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."
169
  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."
170
 
171
+ #: includes/class-freemius.php:4847
172
  msgctxt "addonX cannot run without pluginY"
173
  msgid "%s cannot run without %s."
174
  msgstr "%s cannot run without %s."
175
 
176
+ #: includes/class-freemius.php:4848
177
  msgctxt "addonX cannot run..."
178
  msgid "%s cannot run without the plugin."
179
  msgstr "%s cannot run without the plugin."
180
 
181
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
182
+ #: includes/class-freemius.php:19475
183
  msgid "Unexpected API error. Please contact the %s's author with the following error."
184
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
185
 
186
+ #: includes/class-freemius.php:5687
187
  msgid "Premium %s version was successfully activated."
188
  msgstr "Premium %s version was successfully activated."
189
 
190
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
191
  msgctxt ""
192
  msgid "W00t"
193
  msgstr "Fantasztikus"
194
 
195
+ #: includes/class-freemius.php:5714
196
  msgid "You have a %s license."
197
  msgstr "You have a %s license."
198
 
199
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
200
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
201
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
202
+ #: includes/class-freemius.php:19229
203
  msgctxt "interjection expressing joy or exuberance"
204
  msgid "Yee-haw"
205
  msgstr "Juhuuu"
206
 
207
+ #: includes/class-freemius.php:5982
208
  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."
209
  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."
210
 
211
+ #: includes/class-freemius.php:5986
212
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
213
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
214
 
215
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
216
+ #: templates/account/partials/addon.php:343
217
  msgid "More information about %s"
218
  msgstr "More information about %s"
219
 
220
+ #: includes/class-freemius.php:5996
221
  msgid "Purchase License"
222
  msgstr "Licensz vásárlása"
223
 
224
+ #: includes/class-freemius.php6931, templates/connect.php:163
225
  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."
226
  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."
227
 
228
+ #: includes/class-freemius.php:6935
229
  msgid "start the trial"
230
  msgstr "próbaidő indítása"
231
 
232
+ #: includes/class-freemius.php6936, templates/connect.php:167
233
  msgid "complete the install"
234
  msgstr "befejezd a telepítést"
235
 
236
+ #: includes/class-freemius.php:7049
237
  msgid "You are just one step away - %s"
238
  msgstr "Már csak egy lépés van hátra - %s"
239
 
240
+ #: includes/class-freemius.php:7052
241
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
242
  msgid "Complete \"%s\" Activation Now"
243
  msgstr "\"%s\" aktiválásának a befejezése most"
244
 
245
+ #: includes/class-freemius.php:7130
246
  msgid "We made a few tweaks to the %s, %s"
247
  msgstr "We made a few tweaks to the %s, %s"
248
 
249
+ #: includes/class-freemius.php:7134
250
  msgid "Opt in to make \"%s\" better!"
251
  msgstr "Opt in to make \"%s\" better!"
252
 
253
+ #: includes/class-freemius.php:7566
254
  msgid "The upgrade of %s was successfully completed."
255
  msgstr "The upgrade of %s was successfully completed."
256
 
257
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
258
+ #: includes/class-fs-plugin-updater.php1170,
259
+ #: includes/class-fs-plugin-updater.php1177,
260
  #: templates/auto-installation.php:32
261
  msgid "Add-On"
262
  msgstr "Kiegészítő"
263
 
264
+ #: includes/class-freemius.php9730, templates/account.php313,
265
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
266
  msgid "Plugin"
267
  msgstr "Bővítmény"
268
 
269
+ #: includes/class-freemius.php9731, templates/account.php314,
270
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
271
+ #: templates/forms/deactivation/form.php:71
272
  msgid "Theme"
273
  msgstr "Sablon"
274
 
275
+ #: includes/class-freemius.php:12148
276
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
277
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
278
+
279
+ #: includes/class-freemius.php:12549
280
  msgid "Invalid site details collection."
281
  msgstr "Invalid site details collection."
282
 
283
+ #: includes/class-freemius.php:12669
284
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
285
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
286
 
287
+ #: includes/class-freemius.php:12671
288
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
289
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
290
 
291
+ #: includes/class-freemius.php:12945
292
  msgid "Account is pending activation."
293
  msgstr "A fiók aktiválása függőben."
294
 
295
+ #: includes/class-freemius.php13057,
296
  #: templates/forms/premium-versions-upgrade-handler.php:47
297
  msgid "Buy a license now"
298
  msgstr "Vásárolj licenszet most"
299
 
300
+ #: includes/class-freemius.php13069,
301
  #: templates/forms/premium-versions-upgrade-handler.php:46
302
  msgid "Renew your license now"
303
  msgstr "Licensz kulcs megújítása"
304
 
305
+ #: includes/class-freemius.php:13073
306
  msgid "%s to access version %s security & feature updates, and support."
307
  msgstr "%s to access version %s security & feature updates, and support."
308
 
309
+ #: includes/class-freemius.php:15448
310
  msgid "%s activation was successfully completed."
311
  msgstr "%s activation was successfully completed."
312
 
313
+ #: includes/class-freemius.php:15462
314
  msgid "Your account was successfully activated with the %s plan."
315
  msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
316
 
317
+ #: includes/class-freemius.php15473, includes/class-freemius.php:19061
318
  msgid "Your trial has been successfully started."
319
  msgstr "A próbaidőszakodat sikeresen aktiváltuk."
320
 
321
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
322
+ #: includes/class-freemius.php:16297
323
  msgid "Couldn't activate %s."
324
  msgstr "Couldn't activate %s."
325
 
326
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
327
+ #: includes/class-freemius.php:16298
328
  msgid "Please contact us with the following message:"
329
  msgstr "Please contact us with the following message:"
330
 
331
+ #: includes/class-freemius.php:16128
332
+ msgid "An unknown error has occurred."
333
+ msgstr "An unknown error has occurred."
334
+
335
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
336
  msgid "Upgrade"
337
  msgstr "Előfizetés frissítése"
338
 
339
+ #: includes/class-freemius.php:16661
340
  msgid "Start Trial"
341
  msgstr "Próbaidő indítása"
342
 
343
+ #: includes/class-freemius.php:16663
344
  msgid "Pricing"
345
  msgstr "Árak"
346
 
347
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
348
  msgid "Affiliation"
349
  msgstr "Affiliation"
350
 
351
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
352
+ #: templates/account.php177, templates/debug.php:326
353
  msgid "Account"
354
  msgstr "Fiók"
355
 
356
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
357
  #: includes/customizer/class-fs-customizer-support-section.php:60
358
  msgid "Contact Us"
359
  msgstr "Kapcsolat"
360
 
361
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
362
+ #: includes/class-freemius.php21423, templates/account.php105,
363
+ #: templates/account/partials/addon.php:45
364
  msgid "Add-Ons"
365
  msgstr "Kiegészítők"
366
 
367
+ #: includes/class-freemius.php:16835
368
  msgctxt "ASCII arrow left icon"
369
  msgid "&#x2190;"
370
  msgstr "&#x2190;"
371
 
372
+ #: includes/class-freemius.php:16835
373
  msgctxt "ASCII arrow right icon"
374
  msgid "&#x27a4;"
375
  msgstr "&#x27a4;"
376
 
377
+ #: includes/class-freemius.php16837, templates/pricing.php:102
378
  msgctxt "noun"
379
  msgid "Pricing"
380
  msgstr "Árak"
381
 
382
+ #: includes/class-freemius.php17050,
383
  #: includes/customizer/class-fs-customizer-support-section.php:67
384
  msgid "Support Forum"
385
  msgstr "Támogató fórum"
386
 
387
+ #: includes/class-freemius.php:17995
388
  msgid "Your email has been successfully verified - you are AWESOME!"
389
  msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
390
 
391
+ #: includes/class-freemius.php:17996
392
  msgctxt "a positive response"
393
  msgid "Right on"
394
  msgstr "Right on"
395
 
396
+ #: includes/class-freemius.php:18660
397
  msgid "Your %s Add-on plan was successfully upgraded."
398
  msgstr "Your %s Add-on plan was successfully upgraded."
399
 
400
+ #: includes/class-freemius.php:18662
401
  msgid "%s Add-on was successfully purchased."
402
  msgstr "%s Add-on was successfully purchased."
403
 
404
+ #: includes/class-freemius.php:18665
405
  msgid "Download the latest version"
406
  msgstr "Töltsd le a legfrissebb verziót"
407
 
408
+ #: includes/class-freemius.php:18751
409
+ 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"
410
+ 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"
 
411
 
412
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
413
+ #: includes/class-freemius.php:19277
414
  msgid "Error received from the server:"
415
  msgstr "Error received from the server:"
416
 
417
+ #: includes/class-freemius.php:18767
418
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
419
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
420
 
421
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
422
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
423
  msgctxt ""
424
  msgid "Hmm"
425
  msgstr "Hmm"
426
 
427
+ #: includes/class-freemius.php:18974
428
  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."
429
  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."
430
 
431
+ #: includes/class-freemius.php18975, templates/account.php107,
432
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
433
  msgctxt "trial period"
434
  msgid "Trial"
435
  msgstr "Próbaidő"
436
 
437
+ #: includes/class-freemius.php:18980
438
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
439
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
440
 
441
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
442
  msgid "Please contact us here"
443
  msgstr "Please contact us here"
444
 
445
+ #: includes/class-freemius.php:18995
446
+ msgid "Your plan was successfully activated."
447
+ msgstr "Your plan was successfully activated."
448
+
449
+ #: includes/class-freemius.php:18996
450
  msgid "Your plan was successfully upgraded."
451
  msgstr "Your plan was successfully upgraded."
452
 
453
+ #: includes/class-freemius.php:19013
454
  msgid "Your plan was successfully changed to %s."
455
  msgstr "Your plan was successfully changed to %s."
456
 
457
+ #: includes/class-freemius.php:19029
458
  msgid "Your license has expired. You can still continue using the free %s forever."
459
  msgstr "Your license has expired. You can still continue using the free %s forever."
460
 
461
+ #: includes/class-freemius.php:19031
462
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
463
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
464
 
465
+ #: includes/class-freemius.php:19039
466
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
467
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
468
 
469
+ #: includes/class-freemius.php:19052
470
  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."
471
  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."
472
 
473
+ #: includes/class-freemius.php:19075
474
  msgid "Your free trial has expired. You can still continue using all our free features."
475
  msgstr "Your free trial has expired. You can still continue using all our free features."
476
 
477
+ #: includes/class-freemius.php:19077
478
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
479
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
480
 
481
+ #: includes/class-freemius.php:19184
482
  msgid "It looks like the license could not be activated."
483
  msgstr "It looks like the license could not be activated."
484
 
485
+ #: includes/class-freemius.php:19226
486
  msgid "Your license was successfully activated."
487
  msgstr "Your license was successfully activated."
488
 
489
+ #: includes/class-freemius.php:19252
490
  msgid "It looks like your site currently doesn't have an active license."
491
  msgstr "It looks like your site currently doesn't have an active license."
492
 
493
+ #: includes/class-freemius.php:19276
494
  msgid "It looks like the license deactivation failed."
495
  msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
496
 
497
+ #: includes/class-freemius.php:19304
498
  msgid "Your license was successfully deactivated, you are back to the %s plan."
499
  msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
500
 
501
+ #: includes/class-freemius.php:19305
502
  msgid "O.K"
503
  msgstr "Rendben"
504
 
505
+ #: includes/class-freemius.php:19358
506
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
507
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
508
 
509
+ #: includes/class-freemius.php:19367
510
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
511
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
512
 
513
+ #: includes/class-freemius.php:19409
514
  msgid "You are already running the %s in a trial mode."
515
  msgstr "You are already running the %s in a trial mode."
516
 
517
+ #: includes/class-freemius.php:19420
518
  msgid "You already utilized a trial before."
519
  msgstr "You already utilized a trial before."
520
 
521
+ #: includes/class-freemius.php:19434
522
  msgid "Plan %s do not exist, therefore, can't start a trial."
523
  msgstr "Plan %s do not exist, therefore, can't start a trial."
524
 
525
+ #: includes/class-freemius.php:19445
526
  msgid "Plan %s does not support a trial period."
527
  msgstr "Plan %s does not support a trial period."
528
 
529
+ #: includes/class-freemius.php:19456
530
  msgid "None of the %s's plans supports a trial period."
531
  msgstr "None of the %s's plans supports a trial period."
532
 
533
+ #: includes/class-freemius.php:19506
534
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
535
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
536
 
537
+ #: includes/class-freemius.php:19542
538
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
539
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
540
 
541
+ #: includes/class-freemius.php:19561
542
  msgid "Your %s free trial was successfully cancelled."
543
  msgstr "Your %s free trial was successfully cancelled."
544
 
545
+ #: includes/class-freemius.php:19877
546
  msgid "Version %s was released."
547
  msgstr "Version %s was released."
548
 
549
+ #: includes/class-freemius.php:19877
550
  msgid "Please download %s."
551
  msgstr "Please download %s."
552
 
553
+ #: includes/class-freemius.php:19884
554
  msgid "the latest %s version here"
555
  msgstr "the latest %s version here"
556
 
557
+ #: includes/class-freemius.php:19889
558
  msgid "New"
559
  msgstr "Új"
560
 
561
+ #: includes/class-freemius.php:19894
562
  msgid "Seems like you got the latest release."
563
  msgstr "Seems like you got the latest release."
564
 
565
+ #: includes/class-freemius.php:19895
566
  msgid "You are all good!"
567
  msgstr "Minden rendben!"
568
 
569
+ #: includes/class-freemius.php:20165
570
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
571
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
572
 
573
+ #: includes/class-freemius.php:20304
574
  msgid "Site successfully opted in."
575
  msgstr "Site successfully opted in."
576
 
577
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
578
  msgid "Awesome"
579
  msgstr "Nagyszerű"
580
 
581
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
582
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
583
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
584
 
585
+ #: includes/class-freemius.php:20322
586
  msgid "Thank you!"
587
  msgstr "Köszönjük!"
588
 
589
+ #: includes/class-freemius.php:20329
590
  msgid "We will no longer be sending any usage data of %s on %s to %s."
591
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
592
 
593
+ #: includes/class-freemius.php:20458
594
  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."
595
  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."
596
 
597
+ #: includes/class-freemius.php:20464
598
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
599
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
600
 
601
+ #: includes/class-freemius.php:20469
602
  msgid "%s is the new owner of the account."
603
  msgstr "%s is the new owner of the account."
604
 
605
+ #: includes/class-freemius.php:20471
606
  msgctxt "as congratulations"
607
  msgid "Congrats"
608
  msgstr "Gratulálunk"
609
 
610
+ #: includes/class-freemius.php:20491
611
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
612
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
613
 
614
+ #: includes/class-freemius.php:20492
615
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
616
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
617
 
618
+ #: includes/class-freemius.php:20499
619
  msgid "Change Ownership"
620
  msgstr "Tulajdonos módosítása"
621
 
622
+ #: includes/class-freemius.php:20507
623
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
624
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
625
 
626
+ #: includes/class-freemius.php:20519
627
  msgid "Please provide your full name."
628
  msgstr "Kérlek add meg a teljes neved!"
629
 
630
+ #: includes/class-freemius.php:20524
631
  msgid "Your name was successfully updated."
632
  msgstr "A neved sikeresen frissítettük."
633
 
634
+ #: includes/class-freemius.php:20585
635
  msgid "You have successfully updated your %s."
636
  msgstr "You have successfully updated your %s."
637
 
638
+ #: includes/class-freemius.php:20725
639
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
640
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
641
 
642
+ #: includes/class-freemius.php:20726
643
  msgctxt "advance notice of something that will need attention."
644
  msgid "Heads up"
645
  msgstr "Figyelem"
646
 
647
+ #: includes/class-freemius.php:21165
648
  msgctxt "exclamation"
649
  msgid "Hey"
650
  msgstr "Üdv"
651
 
652
+ #: includes/class-freemius.php:21165
653
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
654
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
655
 
656
+ #: includes/class-freemius.php:21173
657
  msgid "No commitment for %s days - cancel anytime!"
658
  msgstr "No commitment for %s days - cancel anytime!"
659
 
660
+ #: includes/class-freemius.php:21174
661
  msgid "No credit card required"
662
  msgstr "Bankkártya megadása nem kötelező"
663
 
664
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
665
  msgctxt "call to action"
666
  msgid "Start free trial"
667
  msgstr "Start free trial"
668
 
669
+ #: includes/class-freemius.php:21258
670
  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!"
671
  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!"
672
 
673
+ #: includes/class-freemius.php:21267
674
  msgid "Learn more"
675
  msgstr "Bővebben"
676
 
677
+ #: includes/class-freemius.php21447, templates/account.php474,
678
+ #: templates/account.php595, templates/connect.php171,
679
+ #: templates/connect.php421, templates/forms/license-activation.php25,
680
+ #: templates/account/partials/addon.php:287
681
  msgid "Activate License"
682
  msgstr "Licensz aktiválása"
683
 
684
+ #: includes/class-freemius.php21448, templates/account.php543,
685
+ #: templates/account.php594, templates/account/partials/site.php:256
686
  msgid "Change License"
687
  msgstr "Licensz módosítása"
688
 
689
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
690
  msgid "Opt Out"
691
  msgstr "Leiratkozás"
692
 
693
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
694
  #: templates/account/partials/site.php43,
695
  #: templates/account/partials/site.php:161
696
  msgid "Opt In"
697
  msgstr "Feliratkozás"
698
 
699
+ #: includes/class-freemius.php:21775
700
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
701
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
702
 
703
+ #: includes/class-freemius.php:21783
704
  msgid "Activate %s features"
705
  msgstr "Activate %s features"
706
 
707
+ #: includes/class-freemius.php:21796
708
  msgid "Please follow these steps to complete the upgrade"
709
  msgstr "Please follow these steps to complete the upgrade"
710
 
711
+ #: includes/class-freemius.php:21800
712
  msgid "Download the latest %s version"
713
  msgstr "Download the latest %s version"
714
 
715
+ #: includes/class-freemius.php:21804
716
  msgid "Upload and activate the downloaded version"
717
  msgstr "Upload and activate the downloaded version"
718
 
719
+ #: includes/class-freemius.php:21806
720
  msgid "How to upload and activate?"
721
  msgstr "How to upload and activate?"
722
 
723
+ #: includes/class-freemius.php:21940
724
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
725
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
726
 
727
+ #: includes/class-freemius.php:22101
728
  msgid "Auto installation only works for opted-in users."
729
  msgstr "Auto installation only works for opted-in users."
730
 
731
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
732
+ #: includes/class-fs-plugin-updater.php1149,
733
+ #: includes/class-fs-plugin-updater.php:1163
734
  msgid "Invalid module ID."
735
  msgstr "Invalid module ID."
736
 
737
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
738
  msgid "Premium version already active."
739
  msgstr "Premium version already active."
740
 
741
+ #: includes/class-freemius.php:22127
742
  msgid "You do not have a valid license to access the premium version."
743
  msgstr "You do not have a valid license to access the premium version."
744
 
745
+ #: includes/class-freemius.php:22134
746
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
747
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
748
 
749
+ #: includes/class-freemius.php22152, includes/class-fs-plugin-updater.php:1184
750
  msgid "Premium add-on version already installed."
751
  msgstr "Premium add-on version already installed."
752
 
753
+ #: includes/class-freemius.php:22497
754
  msgid "View paid features"
755
  msgstr "Fizetős funkciók megtekintése"
756
 
757
+ #: includes/class-freemius.php:22819
758
  msgid "Thank you so much for using %s and its add-ons!"
759
  msgstr "Thank you so much for using %s and its add-ons!"
760
 
761
+ #: includes/class-freemius.php:22820
762
  msgid "Thank you so much for using %s!"
763
  msgstr "Thank you so much for using %s!"
764
 
765
+ #: includes/class-freemius.php:22826
766
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
767
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
768
 
769
+ #: includes/class-freemius.php:22830
770
  msgid "Thank you so much for using our products!"
771
  msgstr "Thank you so much for using our products!"
772
 
773
+ #: includes/class-freemius.php:22831
774
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
775
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
776
 
777
+ #: includes/class-freemius.php:22850
778
  msgid "%s and its add-ons"
779
  msgstr "%s and its add-ons"
780
 
781
+ #: includes/class-freemius.php:22859
782
  msgid "Products"
783
  msgstr "Termékek"
784
 
785
+ #: includes/class-freemius.php22866, templates/connect.php:272
786
  msgid "Yes"
787
  msgstr "Igen"
788
 
789
+ #: includes/class-freemius.php22867, templates/connect.php:273
790
  msgid "send me security & feature updates, educational content and offers."
791
  msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
792
 
793
+ #: includes/class-freemius.php22868, templates/connect.php:278
794
  msgid "No"
795
  msgstr "Nem"
796
 
797
+ #: includes/class-freemius.php22870, templates/connect.php:280
798
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
799
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
800
 
801
+ #: includes/class-freemius.php:22880
802
+ 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 :-)"
803
+ 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 :-)"
804
 
805
+ #: includes/class-freemius.php22882, templates/connect.php:287
806
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
807
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
808
 
809
+ #: includes/class-freemius.php:23164
810
  msgid "License key is empty."
811
  msgstr "A licensz kulcs üres."
812
 
820
  msgid "Buy license"
821
  msgstr "Licensz vásárlása"
822
 
823
+ #: includes/class-fs-plugin-updater.php280,
824
+ #: includes/class-fs-plugin-updater.php:313
825
  msgid "There is a %s of %s available."
826
  msgstr "There is a %s of %s available."
827
 
828
+ #: includes/class-fs-plugin-updater.php282,
829
+ #: includes/class-fs-plugin-updater.php:318
830
+ msgid "new Beta version"
831
+ msgstr "new Beta version"
832
+
833
+ #: includes/class-fs-plugin-updater.php283,
834
+ #: includes/class-fs-plugin-updater.php:319
835
  msgid "new version"
836
  msgstr "új verzió"
837
 
838
+ #: includes/class-fs-plugin-updater.php:342
839
  msgid "Important Upgrade Notice:"
840
  msgstr "Important Upgrade Notice:"
841
 
842
+ #: includes/class-fs-plugin-updater.php:1214
843
  msgid "Installing plugin: %s"
844
  msgstr "Bővítmény telepítése: %s"
845
 
846
+ #: includes/class-fs-plugin-updater.php:1255
847
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
848
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
849
 
850
+ #: includes/class-fs-plugin-updater.php:1437
851
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
852
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
853
 
854
+ #: includes/fs-plugin-info-dialog.php:509
855
+ msgid "Purchase More"
856
+ msgstr "Purchase More"
857
+
858
+ #: includes/fs-plugin-info-dialog.php510,
859
+ #: templates/account/partials/addon.php:347
860
  msgctxt "verb"
861
  msgid "Purchase"
862
  msgstr "Vásárlás"
863
 
864
+ #: includes/fs-plugin-info-dialog.php:514
865
  msgid "Start my free %s"
866
  msgstr "Start my free %s"
867
 
868
+ #: includes/fs-plugin-info-dialog.php:712
869
+ msgid "Install Free Version Update Now"
870
+ msgstr "Install Free Version Update Now"
871
+
872
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
873
+ msgid "Install Update Now"
874
+ msgstr "Frissítés telepítése most"
875
+
876
+ #: includes/fs-plugin-info-dialog.php:722
877
  msgid "Install Free Version Now"
878
  msgstr "Install Free Version Now"
879
 
880
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
881
+ #: templates/auto-installation.php111,
882
+ #: templates/account/partials/addon.php327,
883
+ #: templates/account/partials/addon.php:379
884
  msgid "Install Now"
885
  msgstr "Telepítés most"
886
 
887
+ #: includes/fs-plugin-info-dialog.php:739
888
  msgctxt "as download latest version"
889
  msgid "Download Latest Free Version"
890
  msgstr "Download Latest Free Version"
891
 
892
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
893
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
894
  msgctxt "as download latest version"
895
  msgid "Download Latest"
896
  msgstr "Download Latest"
897
 
898
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
899
+ #: templates/account/partials/addon.php318,
900
+ #: templates/account/partials/addon.php:373
901
+ msgid "Activate this add-on"
902
+ msgstr "Activate this add-on"
 
 
 
 
 
 
 
 
 
 
903
 
904
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
905
+ msgid "Activate Free Version"
906
+ msgstr "Ingyenes verzió aktiválása"
907
 
908
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
909
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
910
+ msgid "Activate"
911
+ msgstr "Aktiválás"
912
 
913
+ #: includes/fs-plugin-info-dialog.php:968
914
  msgctxt "Plugin installer section title"
915
  msgid "Description"
916
  msgstr "Leírás"
917
 
918
+ #: includes/fs-plugin-info-dialog.php:969
919
  msgctxt "Plugin installer section title"
920
  msgid "Installation"
921
  msgstr "Telepítés"
922
 
923
+ #: includes/fs-plugin-info-dialog.php:970
924
  msgctxt "Plugin installer section title"
925
  msgid "FAQ"
926
  msgstr "GYIK"
927
 
928
+ #: includes/fs-plugin-info-dialog.php971,
929
  #: templates/plugin-info/description.php:55
930
  msgid "Screenshots"
931
  msgstr "Képernyőfotók"
932
 
933
+ #: includes/fs-plugin-info-dialog.php:972
934
  msgctxt "Plugin installer section title"
935
  msgid "Changelog"
936
  msgstr "Változtatások"
937
 
938
+ #: includes/fs-plugin-info-dialog.php:973
939
  msgctxt "Plugin installer section title"
940
  msgid "Reviews"
941
  msgstr "Vélemények"
942
 
943
+ #: includes/fs-plugin-info-dialog.php:974
944
  msgctxt "Plugin installer section title"
945
  msgid "Other Notes"
946
  msgstr "Egyéb megjegyzések"
947
 
948
+ #: includes/fs-plugin-info-dialog.php:989
949
  msgctxt "Plugin installer section title"
950
  msgid "Features & Pricing"
951
  msgstr "Funkciók & Árak"
952
 
953
+ #: includes/fs-plugin-info-dialog.php:999
954
  msgid "Plugin Install"
955
  msgstr "Bővítmény telepítése"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:1071
958
  msgctxt "e.g. Professional Plan"
959
  msgid "%s Plan"
960
  msgstr "%s csomag"
961
 
962
+ #: includes/fs-plugin-info-dialog.php:1097
963
  msgctxt "e.g. the best product"
964
  msgid "Best"
965
  msgstr "Legjobb"
966
 
967
+ #: includes/fs-plugin-info-dialog.php1103,
968
+ #: includes/fs-plugin-info-dialog.php:1123
969
  msgctxt "as every month"
970
  msgid "Monthly"
971
  msgstr "Havi"
972
 
973
+ #: includes/fs-plugin-info-dialog.php:1106
974
  msgctxt "as once a year"
975
  msgid "Annual"
976
  msgstr "Éves"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1109
979
  msgid "Lifetime"
980
  msgstr "Örök"
981
 
982
+ #: includes/fs-plugin-info-dialog.php1123,
983
+ #: includes/fs-plugin-info-dialog.php1125,
984
+ #: includes/fs-plugin-info-dialog.php:1127
985
  msgctxt "e.g. billed monthly"
986
  msgid "Billed %s"
987
  msgstr "%s számlázás"
988
 
989
+ #: includes/fs-plugin-info-dialog.php:1125
990
  msgctxt "as once a year"
991
  msgid "Annually"
992
  msgstr "Éves"
993
 
994
+ #: includes/fs-plugin-info-dialog.php:1127
995
  msgctxt "as once a year"
996
  msgid "Once"
997
  msgstr "Egyszeri"
998
 
999
+ #: includes/fs-plugin-info-dialog.php:1133
1000
  msgid "Single Site License"
1001
  msgstr "Egy weboldalas licensz"
1002
 
1003
+ #: includes/fs-plugin-info-dialog.php:1135
1004
  msgid "Unlimited Licenses"
1005
  msgstr "Korlátlan licensz"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1137
1008
  msgid "Up to %s Sites"
1009
  msgstr "Up to %s Sites"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php1147,
1012
  #: templates/plugin-info/features.php:82
1013
  msgctxt "as monthly period"
1014
  msgid "mo"
1015
  msgstr "hó"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php1154,
1018
  #: templates/plugin-info/features.php:80
1019
  msgctxt "as annual period"
1020
  msgid "year"
1021
  msgstr "év"
1022
 
1023
+ #: includes/fs-plugin-info-dialog.php:1208
1024
  msgctxt "noun"
1025
  msgid "Price"
1026
  msgstr "Ár"
1027
 
1028
+ #: includes/fs-plugin-info-dialog.php:1256
1029
  msgid "Save %s"
1030
  msgstr "%s mentése"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1266
1033
  msgid "No commitment for %s - cancel anytime"
1034
  msgstr "No commitment for %s - cancel anytime"
1035
 
1036
+ #: includes/fs-plugin-info-dialog.php:1269
1037
  msgid "After your free %s, pay as little as %s"
1038
  msgstr "After your free %s, pay as little as %s"
1039
 
1040
+ #: includes/fs-plugin-info-dialog.php:1280
1041
  msgid "Details"
1042
  msgstr "Részletek"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1045
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1046
+ #: templates/account/partials/addon.php:36
1047
  msgctxt "product version"
1048
  msgid "Version"
1049
  msgstr "Verzió"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1291
1052
  msgctxt "as the plugin author"
1053
  msgid "Author"
1054
  msgstr "Szerző"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php:1298
1057
  msgid "Last Updated"
1058
  msgstr "Utolsó frissítés"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1061
  msgctxt "x-ago"
1062
  msgid "%s ago"
1063
  msgstr "%s ago"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php:1312
1066
  msgid "Requires WordPress Version"
1067
  msgstr "A következő WordPress verzió szükséges:"
1068
 
1069
+ #: includes/fs-plugin-info-dialog.php:1313
1070
  msgid "%s or higher"
1071
  msgstr "%s or higher"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1320
1074
  msgid "Compatible up to"
1075
  msgstr "Compatible up to"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1328
1078
  msgid "Downloaded"
1079
  msgstr "Letöltések száma:"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1332
1082
  msgid "%s time"
1083
  msgstr "%s"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1334
1086
  msgid "%s times"
1087
  msgstr "%s"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php:1344
1090
  msgid "WordPress.org Plugin Page"
1091
  msgstr "WordPress.org bővítmény oldal"
1092
 
1093
+ #: includes/fs-plugin-info-dialog.php:1352
1094
  msgid "Plugin Homepage"
1095
  msgstr "Bővítmény oldala"
1096
 
1097
+ #: includes/fs-plugin-info-dialog.php1360,
1098
+ #: includes/fs-plugin-info-dialog.php:1442
1099
  msgid "Donate to this plugin"
1100
  msgstr "Bővítmény támogatása"
1101
 
1102
+ #: includes/fs-plugin-info-dialog.php:1367
1103
  msgid "Average Rating"
1104
  msgstr "Átlagos értékelés"
1105
 
1106
+ #: includes/fs-plugin-info-dialog.php:1374
1107
  msgid "based on %s"
1108
  msgstr "based on %s"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1378
1111
  msgid "%s rating"
1112
  msgstr "%s rating"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1380
1115
  msgid "%s ratings"
1116
  msgstr "%s ratings"
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1395
1119
  msgid "%s star"
1120
  msgstr "%s star"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1397
1123
  msgid "%s stars"
1124
  msgstr "%s stars"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1408
1127
  msgid "Click to see reviews that provided a rating of %s"
1128
  msgstr "Click to see reviews that provided a rating of %s"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1421
1131
  msgid "Contributors"
1132
  msgstr "Közreműködők"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php1450,
1135
+ #: includes/fs-plugin-info-dialog.php:1452
1136
  msgid "Warning"
1137
  msgstr "Figyelmeztetés"
1138
 
1139
+ #: includes/fs-plugin-info-dialog.php:1450
1140
  msgid "This plugin has not been tested with your current version of WordPress."
1141
  msgstr "This plugin has not been tested with your current version of WordPress."
1142
 
1143
+ #: includes/fs-plugin-info-dialog.php:1452
1144
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1145
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1471
1148
  msgid "Paid add-on must be deployed to Freemius."
1149
  msgstr "Paid add-on must be deployed to Freemius."
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1472
1152
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1153
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1493
1156
+ msgid "Newer Version (%s) Installed"
1157
+ msgstr "Newer Version (%s) Installed"
1158
+
1159
+ #: includes/fs-plugin-info-dialog.php:1494
1160
+ msgid "Newer Free Version (%s) Installed"
1161
+ msgstr "Newer Free Version (%s) Installed"
1162
+
1163
+ #: includes/fs-plugin-info-dialog.php:1501
1164
+ msgid "Latest Version Installed"
1165
+ msgstr "Legfrissebb verzió telepítve"
1166
+
1167
+ #: includes/fs-plugin-info-dialog.php:1502
1168
+ msgid "Latest Free Version Installed"
1169
+ msgstr "Legfrissebb ingyenes verzió telepítve"
1170
+
1171
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1172
+ #: templates/account/partials/addon.php26,
1173
  #: templates/account/partials/site.php:295
1174
  msgid "Downgrading your plan"
1175
  msgstr "Downgrading your plan"
1176
 
1177
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1178
+ #: templates/account/partials/addon.php27,
1179
  #: templates/account/partials/site.php:296
1180
  msgid "Cancelling the subscription"
1181
  msgstr "Cancelling the subscription"
1182
 
1183
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1184
  #. subscription'
1185
+ #: templates/account.php:89
1186
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1187
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
 
 
1188
 
1189
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1190
+ #: templates/account/partials/addon.php30,
1191
  #: templates/account/partials/site.php:299
1192
  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."
1193
  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."
1194
 
1195
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1196
+ #: templates/account/partials/addon.php:31
1197
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1198
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1199
 
1200
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1201
+ #: templates/account/partials/addon.php32,
1202
  #: templates/account/partials/site.php:300
1203
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1204
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1205
 
1206
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1207
+ #: templates/account/partials/addon.php33,
1208
  #: templates/account/partials/site.php:301
1209
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1210
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1211
 
1212
  #. translators: %s: Plan title (e.g. "Professional")
1213
+ #: templates/account.php95,
1214
  #: templates/account/partials/activate-license-button.php31,
1215
+ #: templates/account/partials/addon.php:35
1216
  msgid "Activate %s Plan"
1217
  msgstr "%s csomag aktiválása"
1218
 
1219
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1220
+ #: templates/account.php98, templates/account/partials/addon.php38,
1221
  #: templates/account/partials/site.php:275
1222
  msgid "Auto renews in %s"
1223
  msgstr "Auto renews in %s"
1224
 
1225
  #. translators: %s: Time period (e.g. Expires in "2 months")
1226
+ #: templates/account.php100, templates/account/partials/addon.php40,
1227
  #: templates/account/partials/site.php:277
1228
  msgid "Expires in %s"
1229
  msgstr "Hátralévő idő: %s"
1230
 
1231
+ #: templates/account.php101, templates/account/partials/addon.php:41
1232
  msgctxt "as synchronize license"
1233
  msgid "Sync License"
1234
  msgstr "Licensz szinkronizálása"
1235
 
1236
+ #: templates/account.php102, templates/account/partials/addon.php:42
1237
  msgid "Cancel Trial"
1238
  msgstr "Próbaidő törlése"
1239
 
1240
+ #: templates/account.php103, templates/account/partials/addon.php:43
1241
  msgid "Change Plan"
1242
  msgstr "Csomag módosítása"
1243
 
1244
+ #: templates/account.php104, templates/account/partials/addon.php:44
1245
  msgctxt "verb"
1246
  msgid "Upgrade"
1247
  msgstr "Váltás nagyobb csomagra"
1248
 
1249
+ #: templates/account.php106, templates/account/partials/addon.php46,
1250
  #: templates/account/partials/site.php:302
1251
  msgctxt "verb"
1252
  msgid "Downgrade"
1253
  msgstr "Váltás kisebb csomagra"
1254
 
1255
+ #: templates/account.php108, templates/add-ons.php187,
1256
  #: templates/plugin-info/features.php72,
1257
+ #: templates/account/partials/addon.php48,
1258
  #: templates/account/partials/site.php:31
1259
  msgid "Free"
1260
  msgstr "Ingyenes"
1261
 
1262
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1263
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1264
+ #: templates/account/partials/addon.php:50
1265
  msgctxt "as product pricing plan"
1266
  msgid "Plan"
1267
  msgstr "Csomag"
1268
 
1269
+ #: templates/account.php:111
1270
+ msgid "Bundle Plan"
1271
+ msgstr "Bundle Plan"
1272
+
1273
+ #: templates/account.php:185
1274
  msgid "Free Trial"
1275
  msgstr "Ingyenes próbaidő"
1276
 
1277
+ #: templates/account.php:196
1278
  msgid "Account Details"
1279
  msgstr "Fiók információk"
1280
 
1281
+ #: templates/account.php:200
1282
+ msgid "Billing & Invoices"
1283
+ msgstr "Billing & Invoices"
1284
+
1285
+ #: templates/account.php:210
1286
  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?"
1287
  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?"
1288
 
1289
+ #: templates/account.php:212
1290
  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?"
1291
  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?"
1292
 
1293
+ #: templates/account.php:215
1294
  msgid "Delete Account"
1295
  msgstr "Fiók törlése"
1296
 
1297
+ #: templates/account.php227, templates/account/partials/addon.php211,
1298
  #: templates/account/partials/deactivate-license-button.php:35
1299
  msgid "Deactivate License"
1300
  msgstr "Licensz deaktiválása"
1301
 
1302
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1303
  msgid "Are you sure you want to proceed?"
1304
  msgstr "Are you sure you want to proceed?"
1305
 
1306
+ #: templates/account.php250, templates/account/partials/addon.php:234
1307
  msgid "Cancel Subscription"
1308
  msgstr "Előfizetés törlése"
1309
 
1310
+ #: templates/account.php:278
1311
  msgctxt "as synchronize"
1312
  msgid "Sync"
1313
  msgstr "Szinkronizálás"
1314
 
1315
+ #: templates/account.php292, templates/debug.php:489
1316
  msgid "Name"
1317
  msgstr "Név"
1318
 
1319
+ #: templates/account.php298, templates/debug.php:490
1320
  msgid "Email"
1321
  msgstr "Email"
1322
 
1323
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1324
  msgid "User ID"
1325
  msgstr "Felhasználó ID"
1326
 
1327
+ #: templates/account.php322, templates/account.php608,
1328
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1329
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1330
+ #: templates/debug.php599, templates/account/payments.php35,
1331
+ #: templates/debug/logger.php:21
1332
+ msgid "ID"
1333
+ msgstr "ID"
1334
+
1335
+ #: templates/account.php:329
1336
  msgid "Site ID"
1337
  msgstr "Weboldal ID"
1338
 
1339
+ #: templates/account.php:332
1340
  msgid "No ID"
1341
  msgstr "Nincs ID"
1342
 
1343
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1344
+ #: templates/debug.php455, templates/debug.php492,
1345
  #: templates/account/partials/site.php:219
1346
  msgid "Public Key"
1347
  msgstr "Publikus kulcs"
1348
 
1349
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1350
+ #: templates/debug.php493, templates/account/partials/site.php:231
1351
  msgid "Secret Key"
1352
  msgstr "Titkos kulcs"
1353
 
1354
+ #: templates/account.php:346
1355
  msgctxt "as secret encryption key missing"
1356
  msgid "No Secret"
1357
  msgstr "Nincs titkos kulcs"
1358
 
1359
+ #: templates/account.php373, templates/account/partials/site.php112,
1360
  #: templates/account/partials/site.php:114
1361
  msgid "Trial"
1362
  msgstr "Próbaidő"
1363
 
1364
+ #: templates/account.php400, templates/debug.php533,
1365
  #: templates/account/partials/site.php:248
1366
  msgid "License Key"
1367
  msgstr "Licensz kulcs"
1368
 
1369
+ #: templates/account.php:429
1370
+ msgid "Join the Beta program"
1371
+ msgstr "Join the Beta program"
1372
+
1373
+ #: templates/account.php:435
1374
  msgid "not verified"
1375
  msgstr "nem ellenőrzött"
1376
 
1377
+ #: templates/account.php444, templates/account/partials/addon.php:172
1378
  msgid "Expired"
1379
  msgstr "Lejárt"
1380
 
1381
+ #: templates/account.php:502
1382
  msgid "Premium version"
1383
  msgstr "Prémium verzió"
1384
 
1385
+ #: templates/account.php:504
1386
  msgid "Free version"
1387
  msgstr "Ingyenes verzió"
1388
 
1389
+ #: templates/account.php:516
1390
  msgid "Verify Email"
1391
  msgstr "Email ellenőrzése"
1392
 
1393
+ #: templates/account.php:527
1394
  msgid "Download %s Version"
1395
  msgstr "%s verzió letöltése"
1396
 
1397
+ #: templates/account.php541, templates/account.php749,
1398
  #: templates/account/partials/site.php237,
1399
  #: templates/account/partials/site.php:255
1400
  msgctxt "verb"
1401
  msgid "Show"
1402
  msgstr "Mutasd"
1403
 
1404
+ #: templates/account.php:555
1405
  msgid "What is your %s?"
1406
  msgstr "Mi a te %s?"
1407
 
1408
+ #: templates/account.php563, templates/account/billing.php:21
1409
  msgctxt "verb"
1410
  msgid "Edit"
1411
  msgstr "Szerkesztés"
1412
 
1413
+ #: templates/account.php:588
1414
  msgid "Sites"
1415
  msgstr "Weboldalak"
1416
 
1417
+ #: templates/account.php:599
1418
  msgid "Search by address"
1419
  msgstr "Keresés cím alapján"
1420
 
1421
+ #: templates/account.php609, templates/debug.php:369
 
 
 
 
 
 
 
1422
  msgid "Address"
1423
  msgstr "Cím"
1424
 
1425
+ #: templates/account.php:610
1426
  msgid "License"
1427
  msgstr "Licensz"
1428
 
1429
+ #: templates/account.php:611
1430
  msgid "Plan"
1431
  msgstr "Csomag"
1432
 
1433
+ #: templates/account.php:656
1434
  msgctxt "as software license"
1435
  msgid "License"
1436
  msgstr "Licensz"
1437
 
1438
+ #: templates/account.php:743
1439
  msgctxt "verb"
1440
  msgid "Hide"
1441
  msgstr "Elrejt"
1442
 
1443
+ #: templates/account.php:765
1444
+ msgid "Processing"
1445
+ msgstr "Processing"
1446
+
1447
+ #: templates/account.php:768
1448
+ msgid "Get updates for bleeding edge Beta versions of %s."
1449
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1450
+
1451
+ #: templates/account.php:826
1452
  msgid "Cancelling %s"
1453
  msgstr "Cancelling %s"
1454
 
1455
+ #: templates/account.php826, templates/account.php843,
1456
  #: templates/forms/subscription-cancellation.php27,
1457
+ #: templates/forms/deactivation/form.php:133
1458
  msgid "trial"
1459
  msgstr "próbaidő"
1460
 
1461
+ #: templates/account.php841, templates/forms/deactivation/form.php:150
1462
  msgid "Cancelling %s..."
1463
  msgstr "Cancelling %s..."
1464
 
1465
+ #: templates/account.php844, templates/forms/subscription-cancellation.php28,
1466
+ #: templates/forms/deactivation/form.php:134
1467
  msgid "subscription"
1468
  msgstr "előfizetés"
1469
 
1470
+ #: templates/account.php:858
1471
  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?"
1472
  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?"
1473
 
1474
+ #: templates/add-ons.php:35
1475
+ msgid "View details"
1476
+ msgstr "Részletek megtekintése"
1477
+
1478
+ #: templates/add-ons.php:45
1479
  msgid "Add Ons for %s"
1480
  msgstr "Add Ons for %s"
1481
 
1482
+ #: templates/add-ons.php:55
1483
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1484
  msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1485
 
1486
+ #: templates/add-ons.php:173
1487
+ msgctxt "active add-on"
1488
+ msgid "Active"
1489
+ msgstr "Active"
1490
+
1491
+ #: templates/add-ons.php:174
1492
+ msgctxt "installed add-on"
1493
+ msgid "Installed"
1494
+ msgstr "Installed"
1495
 
1496
+ #: templates/admin-notice.php13, templates/forms/license-activation.php209,
1497
  #: templates/forms/resend-key.php:77
1498
  msgctxt "as close a window"
1499
  msgid "Dismiss"
1519
  msgid "Cancel Installation"
1520
  msgstr "Telepítés törlése"
1521
 
1522
+ #: templates/checkout.php:180
1523
  msgid "Checkout"
1524
  msgstr "Pénztár"
1525
 
1526
+ #: templates/checkout.php:180
1527
  msgid "PCI compliant"
1528
  msgstr "PCI compliant"
1529
 
1545
  msgid "Thanks %s!"
1546
  msgstr "Köszönjük %s!"
1547
 
1548
+ #: templates/connect.php172, templates/forms/license-activation.php:44
1549
  msgid "Agree & Activate License"
1550
  msgstr "Licensz elfogadása és aktiválása"
1551
 
1593
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1594
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1595
 
1596
+ #: templates/connect.php253, templates/forms/license-activation.php:47
1597
  msgid "License key"
1598
  msgstr "Licensz kulcs"
1599
 
1600
+ #: templates/connect.php256, templates/forms/license-activation.php:20
1601
  msgid "Can't find your license key?"
1602
  msgstr "Nem találod a licensz kulcsod?"
1603
 
1604
+ #: templates/connect.php315, templates/connect.php652,
1605
  #: templates/forms/deactivation/retry-skip.php:20
1606
  msgctxt "verb"
1607
  msgid "Skip"
1651
  msgid "Newsletter"
1652
  msgstr "Hírlevél"
1653
 
1654
+ #: templates/connect.php391, templates/forms/license-activation.php:39
1655
  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."
1656
  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."
1657
 
1663
  msgid "Don't have a license key?"
1664
  msgstr "Nincs még licensz kulcsod?"
1665
 
 
 
 
 
1666
  #: templates/connect.php:420
1667
  msgid "Have a license key?"
1668
  msgstr "Van licensz kulcsod?"
1679
  msgid "Terms of Service"
1680
  msgstr "Szolgáltatási feltételek"
1681
 
1682
+ #: templates/connect.php:805
1683
  msgctxt "as in the process of sending an email"
1684
  msgid "Sending email"
1685
  msgstr "Email küldése"
1686
 
1687
+ #: templates/connect.php:806
1688
  msgctxt "as activating plugin"
1689
  msgid "Activating"
1690
  msgstr "Aktiválás"
1712
  msgid "Debugging"
1713
  msgstr "Debugging"
1714
 
1715
+ #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1716
+ #: templates/debug.php:494
1717
  msgid "Actions"
1718
  msgstr "Események"
1719
 
1749
  msgid "Set DB Option"
1750
  msgstr "Set DB Option"
1751
 
1752
+ #: templates/debug.php:182
1753
  msgid "Key"
1754
  msgstr "Kulcs"
1755
 
1756
+ #: templates/debug.php:183
1757
  msgid "Value"
1758
  msgstr "Érték"
1759
 
1760
+ #: templates/debug.php:199
1761
  msgctxt "as software development kit versions"
1762
  msgid "SDK Versions"
1763
  msgstr "SDK verziók"
1764
 
1765
+ #: templates/debug.php:204
1766
  msgid "SDK Path"
1767
  msgstr "SDK útvonal"
1768
 
1769
+ #: templates/debug.php205, templates/debug.php:244
1770
  msgid "Module Path"
1771
  msgstr "Module Path"
1772
 
1773
+ #: templates/debug.php:206
1774
  msgid "Is Active"
1775
  msgstr "Aktív"
1776
 
1777
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1778
  msgid "Plugins"
1779
  msgstr "Bővítmények"
1780
 
1781
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1782
  msgid "Themes"
1783
  msgstr "Sablonok"
1784
 
1785
+ #: templates/debug.php239, templates/debug.php371, templates/debug.php453,
1786
  #: templates/debug/scheduled-crons.php:80
1787
  msgid "Slug"
1788
  msgstr "Slug"
1789
 
1790
+ #: templates/debug.php241, templates/debug.php:452
1791
  msgid "Title"
1792
  msgstr "Cím"
1793
 
1794
+ #: templates/debug.php:242
1795
  msgctxt "as application program interface"
1796
  msgid "API"
1797
  msgstr "API"
1798
 
1799
+ #: templates/debug.php:243
1800
  msgid "Freemius State"
1801
  msgstr "Freemius State"
1802
 
1803
+ #: templates/debug.php:247
1804
  msgid "Network Blog"
1805
  msgstr "Network Blog"
1806
 
1807
+ #: templates/debug.php:248
1808
  msgid "Network User"
1809
  msgstr "Network User"
1810
 
1811
+ #: templates/debug.php:285
1812
  msgctxt "as connection was successful"
1813
  msgid "Connected"
1814
  msgstr "Connected"
1815
 
1816
+ #: templates/debug.php:286
1817
  msgctxt "as connection blocked"
1818
  msgid "Blocked"
1819
  msgstr "Blocked"
1820
 
1821
+ #: templates/debug.php:322
1822
  msgid "Simulate Trial Promotion"
1823
  msgstr "Simulate Trial Promotion"
1824
 
1825
+ #: templates/debug.php:334
1826
  msgid "Simulate Network Upgrade"
1827
  msgstr "Simulate Network Upgrade"
1828
 
1829
+ #: templates/debug.php:360
1830
  msgid "%s Installs"
1831
  msgstr "%s Installs"
1832
 
1833
+ #: templates/debug.php:362
1834
  msgctxt "like websites"
1835
  msgid "Sites"
1836
  msgstr "Weboldalak"
1837
 
1838
+ #: templates/debug.php368, templates/account/partials/site.php:148
1839
  msgid "Blog ID"
1840
  msgstr "Blog ID"
1841
 
1842
+ #: templates/debug.php433, templates/debug.php511,
1843
+ #: templates/account/partials/addon.php:396
1844
  msgctxt "verb"
1845
  msgid "Delete"
1846
  msgstr "Törlés"
1847
 
1848
+ #: templates/debug.php:447
1849
  msgid "Add Ons of module %s"
1850
  msgstr "Add Ons of module %s"
1851
 
1852
+ #: templates/debug.php:484
1853
  msgid "Users"
1854
  msgstr "Felhasználók"
1855
 
1856
+ #: templates/debug.php:491
1857
  msgid "Verified"
1858
  msgstr "Ellenőrzött"
1859
 
1860
+ #: templates/debug.php:522
1861
  msgid "%s Licenses"
1862
  msgstr "%s Licenses"
1863
 
1864
+ #: templates/debug.php:527
1865
  msgid "Plugin ID"
1866
  msgstr "Bővítmény ID"
1867
 
1868
+ #: templates/debug.php:529
1869
  msgid "Plan ID"
1870
  msgstr "Csomag ID"
1871
 
1872
+ #: templates/debug.php:530
1873
  msgid "Quota"
1874
  msgstr "Quota"
1875
 
1876
+ #: templates/debug.php:531
1877
  msgid "Activated"
1878
  msgstr "Sikeres aktiválás"
1879
 
1880
+ #: templates/debug.php:532
1881
  msgid "Blocking"
1882
  msgstr "Blocking"
1883
 
1884
+ #: templates/debug.php:534
1885
  msgctxt "as expiration date"
1886
  msgid "Expiration"
1887
  msgstr "Expiration"
1888
 
1889
+ #: templates/debug.php:557
1890
  msgid "Debug Log"
1891
  msgstr "Debug Log"
1892
 
1893
+ #: templates/debug.php:561
1894
  msgid "All Types"
1895
  msgstr "All Types"
1896
 
1897
+ #: templates/debug.php:568
1898
  msgid "All Requests"
1899
  msgstr "All Requests"
1900
 
1901
+ #: templates/debug.php573, templates/debug.php602,
1902
  #: templates/debug/logger.php:25
1903
  msgid "File"
1904
  msgstr "File"
1905
 
1906
+ #: templates/debug.php574, templates/debug.php600,
1907
  #: templates/debug/logger.php:23
1908
  msgid "Function"
1909
  msgstr "Function"
1910
 
1911
+ #: templates/debug.php:575
1912
  msgid "Process ID"
1913
  msgstr "Művelet ID"
1914
 
1915
+ #: templates/debug.php:576
1916
  msgid "Logger"
1917
  msgstr "Logger"
1918
 
1919
+ #: templates/debug.php577, templates/debug.php601,
1920
  #: templates/debug/logger.php:24
1921
  msgid "Message"
1922
  msgstr "Message"
1923
 
1924
+ #: templates/debug.php:579
1925
  msgid "Filter"
1926
  msgstr "Filter"
1927
 
1928
+ #: templates/debug.php:587
1929
  msgid "Download"
1930
  msgstr "Download"
1931
 
1932
+ #: templates/debug.php598, templates/debug/logger.php:22
1933
  msgid "Type"
1934
  msgstr "Type"
1935
 
1936
+ #: templates/debug.php603, templates/debug/logger.php:26
1937
  msgid "Timestamp"
1938
  msgstr "Timestamp"
1939
 
1960
  msgid "Requests"
1961
  msgstr "Requests"
1962
 
1963
+ #: templates/account/billing.php:22
1964
  msgctxt "verb"
1965
  msgid "Update"
1966
  msgstr "Frissítés"
1967
 
1968
+ #: templates/account/billing.php:33
1969
  msgid "Billing"
1970
  msgstr "Számlázás"
1971
 
1972
+ #: templates/account/billing.php38, templates/account/billing.php:38
1973
  msgid "Business name"
1974
  msgstr "Cégnév"
1975
 
1976
+ #: templates/account/billing.php39, templates/account/billing.php:39
1977
  msgid "Tax / VAT ID"
1978
  msgstr "Közösségi adószám"
1979
 
1980
+ #: templates/account/billing.php42, templates/account/billing.php42,
1981
+ #: templates/account/billing.php43, templates/account/billing.php:43
1982
  msgid "Address Line %d"
1983
  msgstr "Cím %d"
1984
 
1985
+ #: templates/account/billing.php46, templates/account/billing.php:46
1986
  msgid "City"
1987
  msgstr "Város"
1988
 
1989
+ #: templates/account/billing.php46, templates/account/billing.php:46
1990
  msgid "Town"
1991
  msgstr "Town"
1992
 
1993
+ #: templates/account/billing.php47, templates/account/billing.php:47
1994
  msgid "ZIP / Postal Code"
1995
  msgstr "Irányítószám"
1996
 
1997
+ #: templates/account/billing.php:302
1998
  msgid "Country"
1999
  msgstr "Ország"
2000
 
2001
+ #: templates/account/billing.php:304
2002
  msgid "Select Country"
2003
  msgstr "Válaszz országot"
2004
 
2005
+ #: templates/account/billing.php311, templates/account/billing.php:312
2006
  msgid "State"
2007
  msgstr "Megye"
2008
 
2009
+ #: templates/account/billing.php311, templates/account/billing.php:312
2010
  msgid "Province"
2011
  msgstr "Province"
2012
 
2258
  msgid "Become an affiliate"
2259
  msgstr "Become an affiliate"
2260
 
2261
+ #: templates/forms/license-activation.php:21
2262
  msgid "Please enter the license key that you received in the email right after the purchase:"
2263
  msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:"
2264
 
2265
+ #: templates/forms/license-activation.php:26
2266
  msgid "Update License"
2267
  msgstr "Licensz frissítése"
2268
 
2329
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2330
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2331
 
2332
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2333
+ #. subscription'
2334
+ #: templates/forms/subscription-cancellation.php99,
2335
+ #: templates/account/partials/addon.php29,
2336
+ #: templates/account/partials/site.php:298
2337
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2338
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2339
+
2340
  #: templates/forms/subscription-cancellation.php:103
2341
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2342
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2350
  msgstr "Proceed"
2351
 
2352
  #: templates/forms/subscription-cancellation.php191,
2353
+ #: templates/forms/deactivation/form.php:171
2354
  msgid "Cancel %s & Proceed"
2355
  msgstr "Cancel %s & Proceed"
2356
 
2362
  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."
2363
  msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2364
 
2365
+ #: templates/js/style-premium-theme.php:39
2366
  msgid "Premium"
2367
  msgstr "Prémium"
2368
 
2369
+ #: templates/js/style-premium-theme.php:42
2370
+ msgid "Beta"
2371
+ msgstr "Beta"
2372
+
2373
+ #: templates/partials/network-activation.php:27
2374
  msgid "Activate license on all sites in the network."
2375
  msgstr "Activate license on all sites in the network."
2376
 
2377
+ #: templates/partials/network-activation.php:28
2378
  msgid "Apply on all sites in the network."
2379
  msgstr "Apply on all sites in the network."
2380
 
2381
+ #: templates/partials/network-activation.php:31
2382
  msgid "Activate license on all pending sites."
2383
  msgstr "Activate license on all pending sites."
2384
 
2385
+ #: templates/partials/network-activation.php:32
2386
  msgid "Apply on all pending sites."
2387
  msgstr "Apply on all pending sites."
2388
 
2389
+ #: templates/partials/network-activation.php40,
2390
+ #: templates/partials/network-activation.php:74
2391
  msgid "allow"
2392
  msgstr "allow"
2393
 
2394
+ #: templates/partials/network-activation.php43,
2395
+ #: templates/partials/network-activation.php:77
2396
  msgid "delegate"
2397
  msgstr "delegate"
2398
 
2399
+ #: templates/partials/network-activation.php47,
2400
+ #: templates/partials/network-activation.php:81
2401
  msgid "skip"
2402
  msgstr "ugrás"
2403
 
2423
  msgid "Last license"
2424
  msgstr "Last license"
2425
 
2426
+ #: templates/account/partials/addon.php:167
2427
  msgid "Cancelled"
2428
  msgstr "Törölve"
2429
 
2430
+ #: templates/account/partials/addon.php:177
2431
  msgid "No expiration"
2432
  msgstr "No expiration"
2433
 
 
 
 
 
 
2434
  #: templates/account/partials/site.php:181
2435
  msgid "Owner Name"
2436
  msgstr "Tulajdonos neve"
2455
  msgid "Contact Support"
2456
  msgstr "Írás az ügyfélszolgálatra"
2457
 
2458
+ #: templates/forms/deactivation/form.php:64
2459
  msgid "Anonymous feedback"
2460
  msgstr "Névtelen visszajelzés"
2461
 
2462
+ #: templates/forms/deactivation/form.php:70
2463
  msgid "Deactivate"
2464
  msgstr "Deaktiválás"
2465
 
2466
+ #: templates/forms/deactivation/form.php:72
2467
  msgid "Activate %s"
2468
  msgstr "%s aktiválása"
2469
 
2470
+ #: templates/forms/deactivation/form.php:87
2471
  msgid "Quick Feedback"
2472
  msgstr "Gyors visszajelzés"
2473
 
2474
+ #: templates/forms/deactivation/form.php:91
2475
  msgid "If you have a moment, please let us know why you are %s"
2476
  msgstr "Kérlek mondd el, miért %s"
2477
 
2478
+ #: templates/forms/deactivation/form.php:91
2479
  msgid "deactivating"
2480
  msgstr "deaktiválod"
2481
 
2482
+ #: templates/forms/deactivation/form.php:91
2483
  msgid "switching"
2484
  msgstr "váltasz"
2485
 
2486
+ #: templates/forms/deactivation/form.php:365
2487
  msgid "Submit & %s"
2488
  msgstr "Küldés & %s"
2489
 
2490
+ #: templates/forms/deactivation/form.php:386
2491
  msgid "Kindly tell us the reason so we can improve."
2492
  msgstr "Ha elmondod az okát, tudunk fejlődni."
2493
 
2494
+ #: templates/forms/deactivation/form.php:511
2495
  msgid "Yes - %s"
2496
  msgstr "Yes - %s"
2497
 
2498
+ #: templates/forms/deactivation/form.php:518
2499
  msgid "Skip & %s"
2500
  msgstr "Kihagyás & %s"
2501
 
vendor/freemius/wordpress-sdk/languages/freemius-it_IT.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-it_IT.po CHANGED
@@ -11,8 +11,8 @@ msgstr ""
11
  "Project-Id-Version: WordPress SDK\n"
12
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
13
  "POT-Creation-Date: \n"
14
- "PO-Revision-Date: 2018-12-23 14:23+0000\n"
15
- "Last-Translator: Dario Curvino <d.curvino@gmail.com>\n"
16
  "Language: it_IT\n"
17
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
18
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,772 +25,792 @@ msgstr ""
25
  "X-Poedit-SearchPathExcluded-0: *.js\n"
26
  "X-Poedit-SourceCharset: UTF-8\n"
27
 
28
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
29
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
30
  msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
31
 
32
- #: includes/class-freemius.php:1690
33
  msgid "Error"
34
  msgstr "Errore"
35
 
36
- #: includes/class-freemius.php:2011
37
  msgid "I found a better %s"
38
  msgstr "Ho trovato un migliore %s"
39
 
40
- #: includes/class-freemius.php:2013
41
  msgid "What's the %s's name?"
42
  msgstr "Qual è il nome di %s?"
43
 
44
- #: includes/class-freemius.php:2019
45
  msgid "It's a temporary %s. I'm just debugging an issue."
46
  msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
47
 
48
- #: includes/class-freemius.php:2021
49
  msgid "Deactivation"
50
  msgstr "Disattivazione"
51
 
52
- #: includes/class-freemius.php:2022
53
  msgid "Theme Switch"
54
  msgstr "Cambio tema"
55
 
56
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
57
  msgid "Other"
58
  msgstr "Altro"
59
 
60
- #: includes/class-freemius.php:2039
61
  msgid "I no longer need the %s"
62
  msgstr "Non ho più bisogno di %s"
63
 
64
- #: includes/class-freemius.php:2046
65
  msgid "I only needed the %s for a short period"
66
  msgstr "Ho avuto bisogno di %s per un breve periodo"
67
 
68
- #: includes/class-freemius.php:2052
69
  msgid "The %s broke my site"
70
  msgstr "%s ha rotto il mio sito"
71
 
72
- #: includes/class-freemius.php:2059
73
  msgid "The %s suddenly stopped working"
74
  msgstr "%s ha improvvisamente smesso di funzionare"
75
 
76
- #: includes/class-freemius.php:2069
77
  msgid "I can't pay for it anymore"
78
  msgstr "Non posso piú pagarlo"
79
 
80
- #: includes/class-freemius.php:2071
81
  msgid "What price would you feel comfortable paying?"
82
  msgstr "Che prezzo ritieni opportuno pagare?"
83
 
84
- #: includes/class-freemius.php:2077
85
  msgid "I don't like to share my information with you"
86
  msgstr "Non voglio condividere i miei dati con te"
87
 
88
- #: includes/class-freemius.php:2098
89
  msgid "The %s didn't work"
90
  msgstr "%s non funziona"
91
 
92
- #: includes/class-freemius.php:2108
93
  msgid "I couldn't understand how to make it work"
94
  msgstr "Non capisco come farlo funzionare"
95
 
96
- #: includes/class-freemius.php:2116
97
  msgid "The %s is great, but I need specific feature that you don't support"
98
  msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
99
 
100
- #: includes/class-freemius.php:2118
101
  msgid "What feature?"
102
  msgstr "Quale funzionalitá?"
103
 
104
- #: includes/class-freemius.php:2122
105
  msgid "The %s is not working"
106
  msgstr "%s non funziona"
107
 
108
- #: includes/class-freemius.php:2124
109
  msgid "Kindly share what didn't work so we can fix it for future users..."
110
  msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
111
 
112
- #: includes/class-freemius.php:2128
113
  msgid "It's not what I was looking for"
114
  msgstr "Non é quello che stavo cercando"
115
 
116
- #: includes/class-freemius.php:2130
117
  msgid "What you've been looking for?"
118
  msgstr "Che cosa stai cercando?"
119
 
120
- #: includes/class-freemius.php:2134
121
  msgid "The %s didn't work as expected"
122
  msgstr "%s non ha funzionato come mi aspettavo"
123
 
124
- #: includes/class-freemius.php:2136
125
  msgid "What did you expect?"
126
  msgstr "Che cosa ti aspettavi?"
127
 
128
- #: includes/class-freemius.php2942, templates/debug.php:20
129
  msgid "Freemius Debug"
130
  msgstr "Debug Freemius"
131
 
132
- #: includes/class-freemius.php:3670
133
  msgid "I don't know what is cURL or how to install it, help me!"
134
  msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
135
 
136
- #: includes/class-freemius.php:3672
137
  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."
138
  msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
139
 
140
- #: includes/class-freemius.php:3679
141
  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."
142
  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."
143
 
144
- #: includes/class-freemius.php:3784
145
  msgid "Yes - do your thing"
146
  msgstr "Sì - fai pure"
147
 
148
- #: includes/class-freemius.php:3789
149
  msgid "No - just deactivate"
150
  msgstr "No - disattiva e basta"
151
 
152
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
153
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
154
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
155
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
156
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
157
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
158
- #: includes/class-freemius.php19001, templates/add-ons.php:43
159
  msgctxt "exclamation"
160
  msgid "Oops"
161
  msgstr "Ops"
162
 
163
- #: includes/class-freemius.php:3903
164
  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."
165
  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."
166
 
167
- #: includes/class-freemius.php:4340
168
  msgctxt "addonX cannot run without pluginY"
169
  msgid "%s cannot run without %s."
170
  msgstr "%s non può funzionare senza %s."
171
 
172
- #: includes/class-freemius.php:4341
173
  msgctxt "addonX cannot run..."
174
  msgid "%s cannot run without the plugin."
175
  msgstr "%s non può funzionare senza il plugin."
176
 
177
- #: includes/class-freemius.php4487, includes/class-freemius.php4512,
178
- #: includes/class-freemius.php:17953
179
  msgid "Unexpected API error. Please contact the %s's author with the following error."
180
  msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
181
 
182
- #: includes/class-freemius.php:5130
183
  msgid "Premium %s version was successfully activated."
184
  msgstr "La versione 1%s Permium è stata attivata con successo."
185
 
186
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
187
  msgctxt ""
188
  msgid "W00t"
189
  msgstr "Forte"
190
 
191
- #: includes/class-freemius.php:5157
192
  msgid "You have a %s license."
193
  msgstr "Hai la licenza %s."
194
 
195
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
196
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
197
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
198
- #: includes/class-freemius.php:17707
199
  msgctxt "interjection expressing joy or exuberance"
200
  msgid "Yee-haw"
201
  msgstr "Evvai"
202
 
203
- #: includes/class-freemius.php:5425
204
  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."
205
  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."
206
 
207
- #: includes/class-freemius.php:5429
208
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
209
  msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
210
 
211
- #: includes/class-freemius.php5438, templates/add-ons.php103,
212
- #: templates/account/partials/addon.php:288
213
  msgid "More information about %s"
214
  msgstr "Ulteriori informazioni su %s"
215
 
216
- #: includes/class-freemius.php:5439
217
  msgid "Purchase License"
218
  msgstr "Acquista licenza"
219
 
220
- #: includes/class-freemius.php6372, templates/connect.php:163
221
  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."
222
  msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
223
 
224
- #: includes/class-freemius.php:6376
225
  msgid "start the trial"
226
  msgstr "Inizia il periodo di prova gratuito"
227
 
228
- #: includes/class-freemius.php6377, templates/connect.php:167
229
  msgid "complete the install"
230
  msgstr "completa l'installazione"
231
 
232
- #: includes/class-freemius.php:6490
233
  msgid "You are just one step away - %s"
234
  msgstr "Sei a un passo dalla fine - %s"
235
 
236
- #: includes/class-freemius.php:6493
237
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
238
  msgid "Complete \"%s\" Activation Now"
239
  msgstr "Completa l'attivazione di \"%s\" ora"
240
 
241
- #: includes/class-freemius.php:6571
242
  msgid "We made a few tweaks to the %s, %s"
243
  msgstr "Abbiamo fatto alcune migliore a %s,%s"
244
 
245
- #: includes/class-freemius.php:6575
246
  msgid "Opt in to make \"%s\" better!"
247
  msgstr "Opt in to make \"%s\" better!"
248
 
249
- #: includes/class-freemius.php:7003
250
  msgid "The upgrade of %s was successfully completed."
251
  msgstr "L'aggiornamento di %s è stato completato con successo."
252
 
253
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
254
- #: includes/class-fs-plugin-updater.php1081,
255
- #: includes/class-fs-plugin-updater.php1088,
256
  #: templates/auto-installation.php:32
257
  msgid "Add-On"
258
  msgstr "Add-on"
259
 
260
- #: includes/class-freemius.php8927, templates/debug.php359,
261
- #: templates/debug.php:520
262
  msgid "Plugin"
263
  msgstr "Plugin"
264
 
265
- #: includes/class-freemius.php8928, templates/debug.php359,
266
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
267
  msgid "Theme"
268
  msgstr "Tema"
269
 
270
- #: includes/class-freemius.php:11412
 
 
 
 
271
  msgid "Invalid site details collection."
272
  msgstr "Invalid site details collection."
273
 
274
- #: includes/class-freemius.php:11532
275
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
276
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
277
 
278
- #: includes/class-freemius.php:11534
279
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
280
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
281
 
282
- #: includes/class-freemius.php:11808
283
  msgid "Account is pending activation."
284
  msgstr "Account in attesa di attivazione."
285
 
286
- #: includes/class-freemius.php11920,
287
  #: templates/forms/premium-versions-upgrade-handler.php:47
288
  msgid "Buy a license now"
289
  msgstr "Compra una licenza ora"
290
 
291
- #: includes/class-freemius.php11932,
292
  #: templates/forms/premium-versions-upgrade-handler.php:46
293
  msgid "Renew your license now"
294
  msgstr "Rinnova la tua licenza ora"
295
 
296
- #: includes/class-freemius.php:11936
297
  msgid "%s to access version %s security & feature updates, and support."
298
  msgstr "%s to access version %s security & feature updates, and support."
299
 
300
- #: includes/class-freemius.php:14319
301
  msgid "%s activation was successfully completed."
302
  msgstr "%s è stato attivato con successo."
303
 
304
- #: includes/class-freemius.php:14333
305
  msgid "Your account was successfully activated with the %s plan."
306
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
307
 
308
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
309
  msgid "Your trial has been successfully started."
310
  msgstr "La versione di prova è stata avviata correttamente."
311
 
312
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
313
- #: includes/class-freemius.php:15028
314
  msgid "Couldn't activate %s."
315
  msgstr "Non é stato possibile attivare %s."
316
 
317
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
318
- #: includes/class-freemius.php:15029
319
  msgid "Please contact us with the following message:"
320
  msgstr "Contattaci con il seguente messaggio:"
321
 
322
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
323
  msgid "Upgrade"
324
  msgstr "Aggiornamento"
325
 
326
- #: includes/class-freemius.php:15384
327
  msgid "Start Trial"
328
  msgstr "Inizia il periodo di prova gratuito"
329
 
330
- #: includes/class-freemius.php:15386
331
  msgid "Pricing"
332
  msgstr "Prezzi"
333
 
334
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
335
  msgid "Affiliation"
336
  msgstr "Affiliazione"
337
 
338
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
339
- #: templates/account.php150, templates/debug.php:324
340
  msgid "Account"
341
  msgstr "Account"
342
 
343
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
344
  #: includes/customizer/class-fs-customizer-support-section.php:60
345
  msgid "Contact Us"
346
  msgstr "Contattaci"
347
 
348
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
349
- #: includes/class-freemius.php19849, templates/account.php100,
350
- #: templates/account/partials/addon.php:41
351
  msgid "Add-Ons"
352
  msgstr "Addon"
353
 
354
- #: includes/class-freemius.php:15541
355
  msgctxt "ASCII arrow left icon"
356
  msgid "&#x2190;"
357
  msgstr "&#x2190;"
358
 
359
- #: includes/class-freemius.php:15541
360
  msgctxt "ASCII arrow right icon"
361
  msgid "&#x27a4;"
362
  msgstr "&#x27a4;"
363
 
364
- #: includes/class-freemius.php15543, templates/pricing.php:97
365
  msgctxt "noun"
366
  msgid "Pricing"
367
  msgstr "Prezzi"
368
 
369
- #: includes/class-freemius.php15756,
370
  #: includes/customizer/class-fs-customizer-support-section.php:67
371
  msgid "Support Forum"
372
  msgstr "Forum di supporto"
373
 
374
- #: includes/class-freemius.php:16542
375
  msgid "Your email has been successfully verified - you are AWESOME!"
376
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
377
 
378
- #: includes/class-freemius.php:16543
379
  msgctxt "a positive response"
380
  msgid "Right on"
381
  msgstr "Sì"
382
 
383
- #: includes/class-freemius.php:17168
384
  msgid "Your %s Add-on plan was successfully upgraded."
385
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
386
 
387
- #: includes/class-freemius.php:17170
388
  msgid "%s Add-on was successfully purchased."
389
  msgstr "L' add-on %s è stato acquistato con successo."
390
 
391
- #: includes/class-freemius.php:17173
392
  msgid "Download the latest version"
393
  msgstr "Scarica l'ultima versione"
394
 
395
- #: includes/class-freemius.php:17259
396
- msgctxt "%1s - plugin title, %2s - API domain"
397
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
398
- msgstr "Il tuo server sta bloccando l'accesso all'API di Freemius. L'accesso è cruciale per quanto riguarda la la sincronizzazione di %1s. Per favore contatta il tuo host per aggiungere %2s alla whitelist."
399
 
400
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
401
- #: includes/class-freemius.php:17755
402
  msgid "Error received from the server:"
403
  msgstr "Errore ricevuto dal server:"
404
 
405
- #: includes/class-freemius.php:17272
406
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
407
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
408
 
409
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
410
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
411
  msgctxt ""
412
  msgid "Hmm"
413
  msgstr "Uhm"
414
 
415
- #: includes/class-freemius.php:17467
416
  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."
417
  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."
418
 
419
- #: includes/class-freemius.php17468, templates/account.php102,
420
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
421
  msgctxt "trial period"
422
  msgid "Trial"
423
  msgstr "Prova gratuita"
424
 
425
- #: includes/class-freemius.php:17473
426
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
427
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
428
 
429
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
430
  msgid "Please contact us here"
431
  msgstr "Contattaci qui"
432
 
433
- #: includes/class-freemius.php:17487
 
 
 
 
434
  msgid "Your plan was successfully upgraded."
435
  msgstr "Il piano è stato aggiornato con successo."
436
 
437
- #: includes/class-freemius.php:17505
438
  msgid "Your plan was successfully changed to %s."
439
  msgstr "Il piano è stato cambiato con successo a %s."
440
 
441
- #: includes/class-freemius.php:17521
442
  msgid "Your license has expired. You can still continue using the free %s forever."
443
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
444
 
445
- #: includes/class-freemius.php:17523
446
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
447
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
448
 
449
- #: includes/class-freemius.php:17531
450
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
451
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
452
 
453
- #: includes/class-freemius.php:17544
454
  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."
455
  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."
456
 
457
- #: includes/class-freemius.php:17567
458
  msgid "Your free trial has expired. You can still continue using all our free features."
459
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
460
 
461
- #: includes/class-freemius.php:17569
462
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
463
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
464
 
465
- #: includes/class-freemius.php:17674
466
  msgid "It looks like the license could not be activated."
467
  msgstr "Sembra che la licenza non possa essere attivata."
468
 
469
- #: includes/class-freemius.php:17704
470
  msgid "Your license was successfully activated."
471
  msgstr "La tua licenza è stata attivata correttamente."
472
 
473
- #: includes/class-freemius.php:17730
474
  msgid "It looks like your site currently doesn't have an active license."
475
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
476
 
477
- #: includes/class-freemius.php:17754
478
  msgid "It looks like the license deactivation failed."
479
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
480
 
481
- #: includes/class-freemius.php:17782
482
  msgid "Your license was successfully deactivated, you are back to the %s plan."
483
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
484
 
485
- #: includes/class-freemius.php:17783
486
  msgid "O.K"
487
  msgstr "OK"
488
 
489
- #: includes/class-freemius.php:17836
490
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
491
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
492
 
493
- #: includes/class-freemius.php:17845
494
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
495
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
496
 
497
- #: includes/class-freemius.php:17887
498
  msgid "You are already running the %s in a trial mode."
499
  msgstr "Stai già usando %s in modalità prova."
500
 
501
- #: includes/class-freemius.php:17898
502
  msgid "You already utilized a trial before."
503
  msgstr "Hai già utilizzato una prova gratuita in passato."
504
 
505
- #: includes/class-freemius.php:17912
506
  msgid "Plan %s do not exist, therefore, can't start a trial."
507
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
508
 
509
- #: includes/class-freemius.php:17923
510
  msgid "Plan %s does not support a trial period."
511
  msgstr "Il piano %s non supporta il periodo di prova."
512
 
513
- #: includes/class-freemius.php:17934
514
  msgid "None of the %s's plans supports a trial period."
515
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
516
 
517
- #: includes/class-freemius.php:17984
518
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
519
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
520
 
521
- #: includes/class-freemius.php:18020
522
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
523
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
524
 
525
- #: includes/class-freemius.php:18039
526
  msgid "Your %s free trial was successfully cancelled."
527
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
528
 
529
- #: includes/class-freemius.php:18346
530
  msgid "Version %s was released."
531
  msgstr "La versione %s é stata rilasciata."
532
 
533
- #: includes/class-freemius.php:18346
534
  msgid "Please download %s."
535
  msgstr "Scarica %s."
536
 
537
- #: includes/class-freemius.php:18353
538
  msgid "the latest %s version here"
539
  msgstr "l'ultima versione %s é quì"
540
 
541
- #: includes/class-freemius.php:18358
542
  msgid "New"
543
  msgstr "Nuovo"
544
 
545
- #: includes/class-freemius.php:18363
546
  msgid "Seems like you got the latest release."
547
  msgstr "Sembra che tu abbia la versione più recente."
548
 
549
- #: includes/class-freemius.php:18364
550
  msgid "You are all good!"
551
  msgstr "Sei fantastico!"
552
 
553
- #: includes/class-freemius.php:18632
554
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
555
  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."
556
 
557
- #: includes/class-freemius.php:18769
558
  msgid "Site successfully opted in."
559
  msgstr "Sito accettato con successo."
560
 
561
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
562
  msgid "Awesome"
563
  msgstr "Fantastico"
564
 
565
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
566
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
567
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
568
 
569
- #: includes/class-freemius.php:18787
570
  msgid "Thank you!"
571
  msgstr "Grazie!"
572
 
573
- #: includes/class-freemius.php:18794
574
  msgid "We will no longer be sending any usage data of %s on %s to %s."
575
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
576
 
577
- #: includes/class-freemius.php:18923
578
  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."
579
  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."
580
 
581
- #: includes/class-freemius.php:18929
582
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
583
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
584
 
585
- #: includes/class-freemius.php:18934
586
  msgid "%s is the new owner of the account."
587
  msgstr "%s è il nuovo proprietario dell'account."
588
 
589
- #: includes/class-freemius.php:18936
590
  msgctxt "as congratulations"
591
  msgid "Congrats"
592
  msgstr "Congratulazioni"
593
 
594
- #: includes/class-freemius.php:18956
595
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
596
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
597
 
598
- #: includes/class-freemius.php:18957
599
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
600
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
601
 
602
- #: includes/class-freemius.php:18964
603
  msgid "Change Ownership"
604
  msgstr "Cambia Proprietario"
605
 
606
- #: includes/class-freemius.php:18972
607
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
608
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
609
 
610
- #: includes/class-freemius.php:18984
611
  msgid "Please provide your full name."
612
  msgstr "Per favore inserisci il tuo nome completo."
613
 
614
- #: includes/class-freemius.php:18989
615
  msgid "Your name was successfully updated."
616
  msgstr "Il tuo nome è stato aggiornato correttamente."
617
 
618
- #: includes/class-freemius.php:19050
619
  msgid "You have successfully updated your %s."
620
  msgstr "Hai aggiornato con successo il tuo %s."
621
 
622
- #: includes/class-freemius.php:19190
623
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
624
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
625
 
626
- #: includes/class-freemius.php:19191
627
  msgctxt "advance notice of something that will need attention."
628
  msgid "Heads up"
629
  msgstr "Attenzione"
630
 
631
- #: includes/class-freemius.php:19621
632
  msgctxt "exclamation"
633
  msgid "Hey"
634
  msgstr "Hey"
635
 
636
- #: includes/class-freemius.php:19621
637
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
638
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
639
 
640
- #: includes/class-freemius.php:19629
641
  msgid "No commitment for %s days - cancel anytime!"
642
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
643
 
644
- #: includes/class-freemius.php:19630
645
  msgid "No credit card required"
646
  msgstr "Nessuna carta di credito richiesta"
647
 
648
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
649
  msgctxt "call to action"
650
  msgid "Start free trial"
651
  msgstr "Inizia il periodo di prova gratuito"
652
 
653
- #: includes/class-freemius.php:19714
654
  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!"
655
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
656
 
657
- #: includes/class-freemius.php:19723
658
  msgid "Learn more"
659
  msgstr "Scopri altro"
660
 
661
- #: includes/class-freemius.php19873, templates/account.php406,
662
- #: templates/account.php509, templates/connect.php171,
663
- #: templates/connect.php421, templates/forms/license-activation.php24,
664
- #: templates/account/partials/addon.php:235
665
  msgid "Activate License"
666
  msgstr "Attiva licenza"
667
 
668
- #: includes/class-freemius.php19874, templates/account.php469,
669
- #: templates/account.php508, templates/account/partials/site.php:256
670
  msgid "Change License"
671
  msgstr "Cambia licenza"
672
 
673
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
674
  msgid "Opt Out"
675
  msgstr "Cancella iscrizione"
676
 
677
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
678
  #: templates/account/partials/site.php43,
679
  #: templates/account/partials/site.php:161
680
  msgid "Opt In"
681
  msgstr "Iscriviti"
682
 
683
- #: includes/class-freemius.php:20187
684
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
685
- msgstr " La versione a pagamento di%1s è già installata. Attivala per iniziare a usare le funzionalità di %2s features. %3s"
686
 
687
- #: includes/class-freemius.php:20195
688
  msgid "Activate %s features"
689
  msgstr "Activate %s features"
690
 
691
- #: includes/class-freemius.php:20208
692
  msgid "Please follow these steps to complete the upgrade"
693
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
694
 
695
- #: includes/class-freemius.php:20212
696
  msgid "Download the latest %s version"
697
  msgstr "Scarica l'ultima versione di %s"
698
 
699
- #: includes/class-freemius.php:20216
700
  msgid "Upload and activate the downloaded version"
701
  msgstr "Carica e attiva la versione scaricata"
702
 
703
- #: includes/class-freemius.php:20218
704
  msgid "How to upload and activate?"
705
  msgstr "Come faccio a caricare ed attivare?"
706
 
707
- #: includes/class-freemius.php:20352
708
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
709
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
710
 
711
- #: includes/class-freemius.php:20513
712
  msgid "Auto installation only works for opted-in users."
713
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
714
 
715
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
716
- #: includes/class-fs-plugin-updater.php1060,
717
- #: includes/class-fs-plugin-updater.php:1074
718
  msgid "Invalid module ID."
719
  msgstr "ID modulo non valida."
720
 
721
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
722
  msgid "Premium version already active."
723
  msgstr "Versione Premium già attiva."
724
 
725
- #: includes/class-freemius.php:20539
726
  msgid "You do not have a valid license to access the premium version."
727
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
728
 
729
- #: includes/class-freemius.php:20546
730
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
731
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
732
 
733
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
734
  msgid "Premium add-on version already installed."
735
  msgstr "Versione Premium dell'add-on già installata."
736
 
737
- #: includes/class-freemius.php:20909
738
  msgid "View paid features"
739
  msgstr "Vedi funzionalità a pagamento"
740
 
741
- #: includes/class-freemius.php:21229
742
  msgid "Thank you so much for using %s and its add-ons!"
743
  msgstr "Grazie per utilizzare %se i suoi addon!"
744
 
745
- #: includes/class-freemius.php:21230
746
  msgid "Thank you so much for using %s!"
747
  msgstr "Grazie per utilizzare %s!"
748
 
749
- #: includes/class-freemius.php:21236
750
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
751
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
752
 
753
- #: includes/class-freemius.php:21240
754
  msgid "Thank you so much for using our products!"
755
  msgstr "Grazie per utilizzare i nostri prodotti!"
756
 
757
- #: includes/class-freemius.php:21241
758
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
759
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
760
 
761
- #: includes/class-freemius.php:21260
762
  msgid "%s and its add-ons"
763
  msgstr "%se i suoi addon"
764
 
765
- #: includes/class-freemius.php:21269
766
  msgid "Products"
767
  msgstr "Prodotti"
768
 
769
- #: includes/class-freemius.php21276, templates/connect.php:272
770
  msgid "Yes"
771
  msgstr "Si"
772
 
773
- #: includes/class-freemius.php21277, templates/connect.php:273
774
  msgid "send me security & feature updates, educational content and offers."
775
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
776
 
777
- #: includes/class-freemius.php21278, templates/connect.php:278
778
  msgid "No"
779
  msgstr "No"
780
 
781
- #: includes/class-freemius.php21280, templates/connect.php:280
782
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
783
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
784
 
785
- #: includes/class-freemius.php:21290
786
- 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 🙂"
787
- msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti"
788
 
789
- #: includes/class-freemius.php21292, templates/connect.php:287
790
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
791
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
792
 
793
- #: includes/class-freemius.php:21574
794
  msgid "License key is empty."
795
  msgstr "La chiave licenza è vuota."
796
 
@@ -804,628 +824,680 @@ msgstr "Rinnova licenza"
804
  msgid "Buy license"
805
  msgstr "Buy license"
806
 
807
- #: includes/class-fs-plugin-updater.php:278
 
808
  msgid "There is a %s of %s available."
809
  msgstr "There is a %s of %s available."
810
 
811
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
812
  msgid "new version"
813
  msgstr "new version"
814
 
815
- #: includes/class-fs-plugin-updater.php:305
816
  msgid "Important Upgrade Notice:"
817
  msgstr "Important Upgrade Notice:"
818
 
819
- #: includes/class-fs-plugin-updater.php:1125
820
  msgid "Installing plugin: %s"
821
  msgstr "Installazione plugin: %s"
822
 
823
- #: includes/class-fs-plugin-updater.php:1166
824
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
825
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
826
 
827
- #: includes/class-fs-plugin-updater.php:1348
828
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
829
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
830
 
831
- #: includes/fs-plugin-info-dialog.php369,
832
- #: templates/account/partials/addon.php:292
 
 
 
 
833
  msgctxt "verb"
834
  msgid "Purchase"
835
  msgstr "Acquisto"
836
 
837
- #: includes/fs-plugin-info-dialog.php:372
838
  msgid "Start my free %s"
839
  msgstr "Inizia la mia %s"
840
 
841
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
842
  msgid "Install Free Version Now"
843
  msgstr "Installa la versione gratuita ora"
844
 
845
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
846
- #: templates/account/partials/addon.php272,
847
- #: templates/account/partials/addon.php:322
 
848
  msgid "Install Now"
849
  msgstr "Installa ora"
850
 
851
- #: includes/fs-plugin-info-dialog.php:425
852
  msgctxt "as download latest version"
853
  msgid "Download Latest Free Version"
854
  msgstr "Scarica l'ultima versione gratuita"
855
 
856
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
857
- #: templates/account/partials/addon.php:21
858
  msgctxt "as download latest version"
859
  msgid "Download Latest"
860
  msgstr "Scarica l'ultima versione"
861
 
862
- #: includes/fs-plugin-info-dialog.php:436
863
- msgid "Install Free Version Update Now"
864
- msgstr "Installa l'ultima versione gratuita"
865
-
866
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
867
- msgid "Install Update Now"
868
- msgstr "Installa l'aggiornamento ora"
869
-
870
- #: includes/fs-plugin-info-dialog.php:448
871
- msgid "Newer Free Version (%s) Installed"
872
- msgstr "Nuova versione gratuita (%s) installata"
873
-
874
- #: includes/fs-plugin-info-dialog.php:449
875
- msgid "Newer Version (%s) Installed"
876
- msgstr "Versione più recente (%s) installata"
877
 
878
- #: includes/fs-plugin-info-dialog.php:457
879
- msgid "Latest Free Version Installed"
880
- msgstr "Ultima versione gratuita installata"
881
 
882
- #: includes/fs-plugin-info-dialog.php:458
883
- msgid "Latest Version Installed"
884
- msgstr "Versione più recente installata"
 
885
 
886
- #: includes/fs-plugin-info-dialog.php:613
887
  msgctxt "Plugin installer section title"
888
  msgid "Description"
889
  msgstr "Descrizione"
890
 
891
- #: includes/fs-plugin-info-dialog.php:614
892
  msgctxt "Plugin installer section title"
893
  msgid "Installation"
894
  msgstr "Installazione"
895
 
896
- #: includes/fs-plugin-info-dialog.php:615
897
  msgctxt "Plugin installer section title"
898
  msgid "FAQ"
899
  msgstr "FAQ"
900
 
901
- #: includes/fs-plugin-info-dialog.php616,
902
  #: templates/plugin-info/description.php:55
903
  msgid "Screenshots"
904
  msgstr "Screenshot"
905
 
906
- #: includes/fs-plugin-info-dialog.php:617
907
  msgctxt "Plugin installer section title"
908
  msgid "Changelog"
909
  msgstr "Changelog"
910
 
911
- #: includes/fs-plugin-info-dialog.php:618
912
  msgctxt "Plugin installer section title"
913
  msgid "Reviews"
914
  msgstr "Recensioni"
915
 
916
- #: includes/fs-plugin-info-dialog.php:619
917
  msgctxt "Plugin installer section title"
918
  msgid "Other Notes"
919
  msgstr "Altre note"
920
 
921
- #: includes/fs-plugin-info-dialog.php:634
922
  msgctxt "Plugin installer section title"
923
  msgid "Features & Pricing"
924
  msgstr "Caratteristiche & prezzi"
925
 
926
- #: includes/fs-plugin-info-dialog.php:644
927
  msgid "Plugin Install"
928
  msgstr "Installazione del plugin"
929
 
930
- #: includes/fs-plugin-info-dialog.php:716
931
  msgctxt "e.g. Professional Plan"
932
  msgid "%s Plan"
933
  msgstr "Piano %s"
934
 
935
- #: includes/fs-plugin-info-dialog.php:742
936
  msgctxt "e.g. the best product"
937
  msgid "Best"
938
  msgstr "Migliore"
939
 
940
- #: includes/fs-plugin-info-dialog.php748,
941
- #: includes/fs-plugin-info-dialog.php:768
942
  msgctxt "as every month"
943
  msgid "Monthly"
944
  msgstr "Mensilmente"
945
 
946
- #: includes/fs-plugin-info-dialog.php:751
947
  msgctxt "as once a year"
948
  msgid "Annual"
949
  msgstr "Annuale"
950
 
951
- #: includes/fs-plugin-info-dialog.php:754
952
  msgid "Lifetime"
953
  msgstr "Tutta la vita"
954
 
955
- #: includes/fs-plugin-info-dialog.php768,
956
- #: includes/fs-plugin-info-dialog.php770,
957
- #: includes/fs-plugin-info-dialog.php:772
958
  msgctxt "e.g. billed monthly"
959
  msgid "Billed %s"
960
  msgstr "Fatturato %s"
961
 
962
- #: includes/fs-plugin-info-dialog.php:770
963
  msgctxt "as once a year"
964
  msgid "Annually"
965
  msgstr "Annualmente"
966
 
967
- #: includes/fs-plugin-info-dialog.php:772
968
  msgctxt "as once a year"
969
  msgid "Once"
970
  msgstr "Una volta"
971
 
972
- #: includes/fs-plugin-info-dialog.php:778
973
  msgid "Single Site License"
974
  msgstr "Licenza per sito singolo"
975
 
976
- #: includes/fs-plugin-info-dialog.php:780
977
  msgid "Unlimited Licenses"
978
  msgstr "Licenze illimitate"
979
 
980
- #: includes/fs-plugin-info-dialog.php:782
981
  msgid "Up to %s Sites"
982
  msgstr "Fino a %s siti"
983
 
984
- #: includes/fs-plugin-info-dialog.php792,
985
  #: templates/plugin-info/features.php:82
986
  msgctxt "as monthly period"
987
  msgid "mo"
988
  msgstr "mese"
989
 
990
- #: includes/fs-plugin-info-dialog.php799,
991
  #: templates/plugin-info/features.php:80
992
  msgctxt "as annual period"
993
  msgid "year"
994
  msgstr "anno"
995
 
996
- #: includes/fs-plugin-info-dialog.php:853
997
  msgctxt "noun"
998
  msgid "Price"
999
  msgstr "Prezzo"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php:901
1002
  msgid "Save %s"
1003
  msgstr "Risparmia %s"
1004
 
1005
- #: includes/fs-plugin-info-dialog.php:911
1006
  msgid "No commitment for %s - cancel anytime"
1007
  msgstr "Nessun impegno con %s - cancella quando vuoi"
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:914
1010
  msgid "After your free %s, pay as little as %s"
1011
  msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:925
1014
  msgid "Details"
1015
  msgstr "Dettagli"
1016
 
1017
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1018
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1019
- #: templates/account/partials/addon.php:32
1020
  msgctxt "product version"
1021
  msgid "Version"
1022
  msgstr "Versione"
1023
 
1024
- #: includes/fs-plugin-info-dialog.php:936
1025
  msgctxt "as the plugin author"
1026
  msgid "Author"
1027
  msgstr "Autore"
1028
 
1029
- #: includes/fs-plugin-info-dialog.php:943
1030
  msgid "Last Updated"
1031
  msgstr "Ultimo aggiornamento"
1032
 
1033
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1034
  msgctxt "x-ago"
1035
  msgid "%s ago"
1036
  msgstr "%s fa"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php:957
1039
  msgid "Requires WordPress Version"
1040
  msgstr "Richiede la versione di WordPress"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:958
1043
  msgid "%s or higher"
1044
  msgstr "%s o superiore"
1045
 
1046
- #: includes/fs-plugin-info-dialog.php:965
1047
  msgid "Compatible up to"
1048
  msgstr "Compatibile fino a"
1049
 
1050
- #: includes/fs-plugin-info-dialog.php:973
1051
  msgid "Downloaded"
1052
  msgstr "Scaricato"
1053
 
1054
- #: includes/fs-plugin-info-dialog.php:977
1055
  msgid "%s time"
1056
  msgstr "% volta"
1057
 
1058
- #: includes/fs-plugin-info-dialog.php:979
1059
  msgid "%s times"
1060
  msgstr "%s volte"
1061
 
1062
- #: includes/fs-plugin-info-dialog.php:989
1063
  msgid "WordPress.org Plugin Page"
1064
  msgstr "Pagina dei plugin di WordPress.org"
1065
 
1066
- #: includes/fs-plugin-info-dialog.php:997
1067
  msgid "Plugin Homepage"
1068
  msgstr "Homepage del plugin"
1069
 
1070
- #: includes/fs-plugin-info-dialog.php1005,
1071
- #: includes/fs-plugin-info-dialog.php:1087
1072
  msgid "Donate to this plugin"
1073
  msgstr "Fai una donazione a questo plugin"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1012
1076
  msgid "Average Rating"
1077
  msgstr "Valutazione media"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php:1019
1080
  msgid "based on %s"
1081
  msgstr "basato su %s"
1082
 
1083
- #: includes/fs-plugin-info-dialog.php:1023
1084
  msgid "%s rating"
1085
  msgstr "%s valutazione"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php:1025
1088
  msgid "%s ratings"
1089
  msgstr "%s valutazioni"
1090
 
1091
- #: includes/fs-plugin-info-dialog.php:1040
1092
  msgid "%s star"
1093
  msgstr "%s stella"
1094
 
1095
- #: includes/fs-plugin-info-dialog.php:1042
1096
  msgid "%s stars"
1097
  msgstr "%s stelle"
1098
 
1099
- #: includes/fs-plugin-info-dialog.php:1053
1100
  msgid "Click to see reviews that provided a rating of %s"
1101
  msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php:1066
1104
  msgid "Contributors"
1105
  msgstr "Contributori"
1106
 
1107
- #: includes/fs-plugin-info-dialog.php1095,
1108
- #: includes/fs-plugin-info-dialog.php:1097
1109
  msgid "Warning"
1110
  msgstr "Avviso"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1095
1113
  msgid "This plugin has not been tested with your current version of WordPress."
1114
  msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
1115
 
1116
- #: includes/fs-plugin-info-dialog.php:1097
1117
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1118
  msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
1119
 
1120
- #: includes/fs-plugin-info-dialog.php:1116
1121
  msgid "Paid add-on must be deployed to Freemius."
1122
  msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
1123
 
1124
- #: includes/fs-plugin-info-dialog.php:1117
1125
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1126
  msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
1127
 
1128
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1129
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  #: templates/account/partials/site.php:295
1131
  msgid "Downgrading your plan"
1132
  msgstr "Downgrading your plan"
1133
 
1134
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1135
- #: templates/account/partials/addon.php23,
1136
  #: templates/account/partials/site.php:296
1137
  msgid "Cancelling the subscription"
1138
  msgstr "Cancelling the subscription"
1139
 
1140
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1141
  #. subscription'
1142
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1143
- #: templates/account/partials/addon.php25,
1144
- #: templates/account/partials/site.php:298
1145
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1146
- msgstr "%1s fermerà immediatamente ogni futuro pagamento ricorrente e la tua %s licenza scadrà il %s."
1147
 
1148
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1149
- #: templates/account/partials/addon.php26,
1150
  #: templates/account/partials/site.php:299
1151
  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."
1152
  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."
1153
 
1154
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1155
- #: templates/account/partials/addon.php:27
1156
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1157
  msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
1158
 
1159
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1160
- #: templates/account/partials/addon.php28,
1161
  #: templates/account/partials/site.php:300
1162
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1163
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1164
 
1165
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1166
- #: templates/account/partials/addon.php29,
1167
  #: templates/account/partials/site.php:301
1168
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1169
  msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
1170
 
1171
  #. translators: %s: Plan title (e.g. "Professional")
1172
- #: templates/account.php90,
1173
  #: templates/account/partials/activate-license-button.php31,
1174
- #: templates/account/partials/addon.php:31
1175
  msgid "Activate %s Plan"
1176
  msgstr "Attivare il piano %s"
1177
 
1178
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1179
- #: templates/account.php93, templates/account/partials/addon.php34,
1180
  #: templates/account/partials/site.php:275
1181
  msgid "Auto renews in %s"
1182
  msgstr "Rinnovo automatico in %s"
1183
 
1184
  #. translators: %s: Time period (e.g. Expires in "2 months")
1185
- #: templates/account.php95, templates/account/partials/addon.php36,
1186
  #: templates/account/partials/site.php:277
1187
  msgid "Expires in %s"
1188
  msgstr "Scade in %s"
1189
 
1190
- #: templates/account.php96, templates/account/partials/addon.php:37
1191
  msgctxt "as synchronize license"
1192
  msgid "Sync License"
1193
  msgstr "Sincronizza la licenza"
1194
 
1195
- #: templates/account.php97, templates/account/partials/addon.php:38
1196
  msgid "Cancel Trial"
1197
  msgstr "Annulla prova gratuita"
1198
 
1199
- #: templates/account.php98, templates/account/partials/addon.php:39
1200
  msgid "Change Plan"
1201
  msgstr "Cambia piano"
1202
 
1203
- #: templates/account.php99, templates/account/partials/addon.php:40
1204
  msgctxt "verb"
1205
  msgid "Upgrade"
1206
  msgstr "Aggiornamento"
1207
 
1208
- #: templates/account.php101, templates/account/partials/addon.php42,
1209
  #: templates/account/partials/site.php:302
1210
  msgctxt "verb"
1211
  msgid "Downgrade"
1212
  msgstr "Downgrade"
1213
 
1214
- #: templates/account.php103, templates/add-ons.php130,
1215
  #: templates/plugin-info/features.php72,
1216
- #: templates/account/partials/addon.php44,
1217
  #: templates/account/partials/site.php:31
1218
  msgid "Free"
1219
  msgstr "Gratuito"
1220
 
1221
- #: templates/account.php104, templates/account/partials/addon.php:45
1222
- msgid "Activate"
1223
- msgstr "Attiva"
1224
-
1225
- #: templates/account.php105, templates/debug.php371,
1226
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1227
- #: templates/account/partials/addon.php:46
1228
  msgctxt "as product pricing plan"
1229
  msgid "Plan"
1230
  msgstr "Piano"
1231
 
1232
- #: templates/account.php:158
 
 
 
 
1233
  msgid "Free Trial"
1234
  msgstr "Prova gratuita"
1235
 
1236
- #: templates/account.php:169
1237
  msgid "Account Details"
1238
  msgstr "Dettagli dell'account"
1239
 
1240
- #: templates/account.php:179
 
 
 
 
1241
  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?"
1242
  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?"
1243
 
1244
- #: templates/account.php:181
1245
  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?"
1246
  msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
1247
 
1248
- #: templates/account.php:184
1249
  msgid "Delete Account"
1250
  msgstr "Elimina Account"
1251
 
1252
- #: templates/account.php196, templates/account/partials/addon.php159,
1253
  #: templates/account/partials/deactivate-license-button.php:35
1254
  msgid "Deactivate License"
1255
  msgstr "Disattiva licenza"
1256
 
1257
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1258
  msgid "Are you sure you want to proceed?"
1259
  msgstr "Sei sicuro di voler procedere?"
1260
 
1261
- #: templates/account.php219, templates/account/partials/addon.php:182
1262
  msgid "Cancel Subscription"
1263
  msgstr "Annulla sottoscrizione"
1264
 
1265
- #: templates/account.php:247
1266
  msgctxt "as synchronize"
1267
  msgid "Sync"
1268
  msgstr "Sincronizza"
1269
 
1270
- #: templates/account.php261, templates/debug.php:487
1271
  msgid "Name"
1272
  msgstr "Nome"
1273
 
1274
- #: templates/account.php267, templates/debug.php:488
1275
  msgid "Email"
1276
  msgstr "Email"
1277
 
1278
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1279
  msgid "User ID"
1280
  msgstr "ID utente"
1281
 
1282
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1283
  msgid "Site ID"
1284
  msgstr "ID del sito"
1285
 
1286
- #: templates/account.php:285
1287
  msgid "No ID"
1288
  msgstr "Nessun ID"
1289
 
1290
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1291
- #: templates/debug.php453, templates/debug.php490,
1292
  #: templates/account/partials/site.php:219
1293
  msgid "Public Key"
1294
  msgstr "Chiave pubblica"
1295
 
1296
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1297
- #: templates/debug.php491, templates/account/partials/site.php:231
1298
  msgid "Secret Key"
1299
  msgstr "Chiave segreta"
1300
 
1301
- #: templates/account.php:299
1302
  msgctxt "as secret encryption key missing"
1303
  msgid "No Secret"
1304
  msgstr "Nessuna chiave"
1305
 
1306
- #: templates/account.php318, templates/account/partials/site.php112,
1307
  #: templates/account/partials/site.php:114
1308
  msgid "Trial"
1309
  msgstr "Prova gratuita"
1310
 
1311
- #: templates/account.php337, templates/debug.php531,
1312
  #: templates/account/partials/site.php:248
1313
  msgid "License Key"
1314
  msgstr "Chiave della licenza"
1315
 
1316
- #: templates/account.php:367
 
 
 
 
1317
  msgid "not verified"
1318
  msgstr "non verificato"
1319
 
1320
- #: templates/account.php376, templates/account/partials/addon.php:120
1321
  msgid "Expired"
1322
  msgstr "Scaduto"
1323
 
1324
- #: templates/account.php:428
1325
  msgid "Premium version"
1326
  msgstr "Versione premium"
1327
 
1328
- #: templates/account.php:430
1329
  msgid "Free version"
1330
  msgstr "Versione gratuita"
1331
 
1332
- #: templates/account.php:442
1333
  msgid "Verify Email"
1334
  msgstr "Verifica email"
1335
 
1336
- #: templates/account.php:453
1337
  msgid "Download %s Version"
1338
  msgstr "Scarica la versione %s"
1339
 
1340
- #: templates/account.php467, templates/account.php649,
1341
  #: templates/account/partials/site.php237,
1342
  #: templates/account/partials/site.php:255
1343
  msgctxt "verb"
1344
  msgid "Show"
1345
  msgstr "Mostra"
1346
 
1347
- #: templates/account.php:481
1348
  msgid "What is your %s?"
1349
  msgstr "Qual è il tuo %s?"
1350
 
1351
- #: templates/account.php489, templates/account/billing.php:27
1352
  msgctxt "verb"
1353
  msgid "Edit"
1354
  msgstr "Modifica"
1355
 
1356
- #: templates/account.php:502
1357
  msgid "Sites"
1358
  msgstr "Siti"
1359
 
1360
- #: templates/account.php:513
1361
  msgid "Search by address"
1362
  msgstr "Cerca per indirizzo"
1363
 
1364
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1365
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1366
- #: templates/debug.php524, templates/debug.php597,
1367
- #: templates/account/payments.php35, templates/debug/logger.php:21
1368
- msgid "ID"
1369
- msgstr "ID"
1370
-
1371
- #: templates/account.php523, templates/debug.php:367
1372
  msgid "Address"
1373
  msgstr "Indirizzo"
1374
 
1375
- #: templates/account.php:524
1376
  msgid "License"
1377
  msgstr "Licenza"
1378
 
1379
- #: templates/account.php:525
1380
  msgid "Plan"
1381
  msgstr "Piano"
1382
 
1383
- #: templates/account.php:573
1384
  msgctxt "as software license"
1385
  msgid "License"
1386
  msgstr "Licenza"
1387
 
1388
- #: templates/account.php:643
1389
  msgctxt "verb"
1390
  msgid "Hide"
1391
  msgstr "Nascondi"
1392
 
1393
- #: templates/account.php:686
 
 
 
 
 
 
 
 
1394
  msgid "Cancelling %s"
1395
  msgstr "Cancelling %s"
1396
 
1397
- #: templates/account.php686, templates/account.php703,
1398
  #: templates/forms/subscription-cancellation.php27,
1399
- #: templates/forms/deactivation/form.php:117
1400
  msgid "trial"
1401
  msgstr "trial"
1402
 
1403
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1404
  msgid "Cancelling %s..."
1405
  msgstr "Cancelling %s..."
1406
 
1407
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1408
- #: templates/forms/deactivation/form.php:118
1409
  msgid "subscription"
1410
  msgstr "subscription"
1411
 
1412
- #: templates/account.php:718
1413
  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?"
1414
  msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
1415
 
1416
- #: templates/add-ons.php:36
 
 
 
 
1417
  msgid "Add Ons for %s"
1418
  msgstr "Add-on per %s"
1419
 
1420
- #: templates/add-ons.php:44
1421
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1422
  msgstr "Non siamo riusciti a caricare la lista degli add-on. Si tratta probabilmente di un problema nel nostro sistema, per favore riprova tra qualche minuto."
1423
 
1424
- #: templates/add-ons.php:139
1425
- msgid "View details"
1426
- msgstr "Visualizza dettagli"
 
 
 
 
 
 
1427
 
1428
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1429
  #: templates/forms/resend-key.php:77
1430
  msgctxt "as close a window"
1431
  msgid "Dismiss"
@@ -1451,11 +1523,11 @@ msgstr "Il processo d'installazione è iniziato e potrebbe impiegare alcuni minu
1451
  msgid "Cancel Installation"
1452
  msgstr "Annulla installazione"
1453
 
1454
- #: templates/checkout.php:172
1455
  msgid "Checkout"
1456
  msgstr "Cassa"
1457
 
1458
- #: templates/checkout.php:172
1459
  msgid "PCI compliant"
1460
  msgstr "PCI compliant"
1461
 
@@ -1477,7 +1549,7 @@ msgstr "Invia nuovamente l'email di attivazione"
1477
  msgid "Thanks %s!"
1478
  msgstr "Grazie %s!"
1479
 
1480
- #: templates/connect.php172, templates/forms/license-activation.php:43
1481
  msgid "Agree & Activate License"
1482
  msgstr "Accetta e attiva la licenza"
1483
 
@@ -1525,15 +1597,15 @@ msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente ne
1525
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1526
  msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo."
1527
 
1528
- #: templates/connect.php253, templates/forms/license-activation.php:46
1529
  msgid "License key"
1530
  msgstr "Chiave di licenza"
1531
 
1532
- #: templates/connect.php256, templates/forms/license-activation.php:19
1533
  msgid "Can't find your license key?"
1534
  msgstr "Non trovi la tua chiave di licenza?"
1535
 
1536
- #: templates/connect.php315, templates/connect.php630,
1537
  #: templates/forms/deactivation/retry-skip.php:20
1538
  msgctxt "verb"
1539
  msgid "Skip"
@@ -1583,7 +1655,7 @@ msgstr "Attiva, disattivazione e disinstallazione"
1583
  msgid "Newsletter"
1584
  msgstr "Newsletter"
1585
 
1586
- #: templates/connect.php391, templates/forms/license-activation.php:38
1587
  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."
1588
  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."
1589
 
@@ -1595,10 +1667,6 @@ msgstr "Quali autorizzazioni vengono concesse?"
1595
  msgid "Don't have a license key?"
1596
  msgstr "Non hai una chiave di licenza?"
1597
 
1598
- #: templates/connect.php:418
1599
- msgid "Activate Free Version"
1600
- msgstr "Attiva versione gratuita"
1601
-
1602
  #: templates/connect.php:420
1603
  msgid "Have a license key?"
1604
  msgstr "Hai una chiave di licenza?"
@@ -1615,12 +1683,12 @@ msgstr "License Agreement"
1615
  msgid "Terms of Service"
1616
  msgstr "Termini del Servizio"
1617
 
1618
- #: templates/connect.php:766
1619
  msgctxt "as in the process of sending an email"
1620
  msgid "Sending email"
1621
  msgstr "Invio email"
1622
 
1623
- #: templates/connect.php:767
1624
  msgctxt "as activating plugin"
1625
  msgid "Activating"
1626
  msgstr "Attivazione"
@@ -1648,8 +1716,8 @@ msgctxt "as code debugging"
1648
  msgid "Debugging"
1649
  msgstr "Debugging"
1650
 
1651
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1652
- #: templates/debug.php:492
1653
  msgid "Actions"
1654
  msgstr "Azioni"
1655
 
@@ -1685,191 +1753,191 @@ msgstr "Carica opzioni del DB"
1685
  msgid "Set DB Option"
1686
  msgstr "Imposta opzione del DB"
1687
 
1688
- #: templates/debug.php:180
1689
  msgid "Key"
1690
  msgstr "Chiave"
1691
 
1692
- #: templates/debug.php:181
1693
  msgid "Value"
1694
  msgstr "Valore"
1695
 
1696
- #: templates/debug.php:197
1697
  msgctxt "as software development kit versions"
1698
  msgid "SDK Versions"
1699
  msgstr "Versioni SDK"
1700
 
1701
- #: templates/debug.php:202
1702
  msgid "SDK Path"
1703
  msgstr "Percorso SDK"
1704
 
1705
- #: templates/debug.php203, templates/debug.php:242
1706
  msgid "Module Path"
1707
  msgstr "Percorso modulo"
1708
 
1709
- #: templates/debug.php:204
1710
  msgid "Is Active"
1711
  msgstr "è attiva"
1712
 
1713
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1714
  msgid "Plugins"
1715
  msgstr "Plugin"
1716
 
1717
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1718
  msgid "Themes"
1719
  msgstr "Temi"
1720
 
1721
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1722
  #: templates/debug/scheduled-crons.php:80
1723
  msgid "Slug"
1724
  msgstr "Slug"
1725
 
1726
- #: templates/debug.php239, templates/debug.php:450
1727
  msgid "Title"
1728
  msgstr "Titolo"
1729
 
1730
- #: templates/debug.php:240
1731
  msgctxt "as application program interface"
1732
  msgid "API"
1733
  msgstr "API"
1734
 
1735
- #: templates/debug.php:241
1736
  msgid "Freemius State"
1737
  msgstr "Stato di Freemius"
1738
 
1739
- #: templates/debug.php:245
1740
  msgid "Network Blog"
1741
  msgstr "Network Blog"
1742
 
1743
- #: templates/debug.php:246
1744
  msgid "Network User"
1745
  msgstr "Utente Network"
1746
 
1747
- #: templates/debug.php:283
1748
  msgctxt "as connection was successful"
1749
  msgid "Connected"
1750
  msgstr "Connesso"
1751
 
1752
- #: templates/debug.php:284
1753
  msgctxt "as connection blocked"
1754
  msgid "Blocked"
1755
  msgstr "Bloccato"
1756
 
1757
- #: templates/debug.php:320
1758
  msgid "Simulate Trial Promotion"
1759
  msgstr "Simulate Trial Promotion"
1760
 
1761
- #: templates/debug.php:332
1762
  msgid "Simulate Network Upgrade"
1763
  msgstr "Simula aggiornamento network"
1764
 
1765
- #: templates/debug.php:358
1766
  msgid "%s Installs"
1767
  msgstr "%s Installazioni"
1768
 
1769
- #: templates/debug.php:360
1770
  msgctxt "like websites"
1771
  msgid "Sites"
1772
  msgstr "Siti"
1773
 
1774
- #: templates/debug.php366, templates/account/partials/site.php:148
1775
  msgid "Blog ID"
1776
  msgstr "Blog ID"
1777
 
1778
- #: templates/debug.php431, templates/debug.php509,
1779
- #: templates/account/partials/addon.php:339
1780
  msgctxt "verb"
1781
  msgid "Delete"
1782
  msgstr "Elimina"
1783
 
1784
- #: templates/debug.php:445
1785
  msgid "Add Ons of module %s"
1786
  msgstr "Addon del modulo %s"
1787
 
1788
- #: templates/debug.php:482
1789
  msgid "Users"
1790
  msgstr "Utenti"
1791
 
1792
- #: templates/debug.php:489
1793
  msgid "Verified"
1794
  msgstr "Verificato"
1795
 
1796
- #: templates/debug.php:520
1797
  msgid "%s Licenses"
1798
  msgstr "%s Licenze"
1799
 
1800
- #: templates/debug.php:525
1801
  msgid "Plugin ID"
1802
  msgstr "Plugin ID"
1803
 
1804
- #: templates/debug.php:527
1805
  msgid "Plan ID"
1806
  msgstr "ID Piano"
1807
 
1808
- #: templates/debug.php:528
1809
  msgid "Quota"
1810
  msgstr "Quota"
1811
 
1812
- #: templates/debug.php:529
1813
  msgid "Activated"
1814
  msgstr "Attivato"
1815
 
1816
- #: templates/debug.php:530
1817
  msgid "Blocking"
1818
  msgstr "Bloccato"
1819
 
1820
- #: templates/debug.php:532
1821
  msgctxt "as expiration date"
1822
  msgid "Expiration"
1823
  msgstr "Scadenza"
1824
 
1825
- #: templates/debug.php:555
1826
  msgid "Debug Log"
1827
  msgstr "Debug Log"
1828
 
1829
- #: templates/debug.php:559
1830
  msgid "All Types"
1831
  msgstr "Tutti i tipi"
1832
 
1833
- #: templates/debug.php:566
1834
  msgid "All Requests"
1835
  msgstr "Tutte le richieste"
1836
 
1837
- #: templates/debug.php571, templates/debug.php600,
1838
  #: templates/debug/logger.php:25
1839
  msgid "File"
1840
  msgstr "File"
1841
 
1842
- #: templates/debug.php572, templates/debug.php598,
1843
  #: templates/debug/logger.php:23
1844
  msgid "Function"
1845
  msgstr "Funzione"
1846
 
1847
- #: templates/debug.php:573
1848
  msgid "Process ID"
1849
  msgstr "ID processo"
1850
 
1851
- #: templates/debug.php:574
1852
  msgid "Logger"
1853
  msgstr "Logger"
1854
 
1855
- #: templates/debug.php575, templates/debug.php599,
1856
  #: templates/debug/logger.php:24
1857
  msgid "Message"
1858
  msgstr "Messaggio"
1859
 
1860
- #: templates/debug.php:577
1861
  msgid "Filter"
1862
  msgstr "Filtro"
1863
 
1864
- #: templates/debug.php:585
1865
  msgid "Download"
1866
  msgstr "Download"
1867
 
1868
- #: templates/debug.php596, templates/debug/logger.php:22
1869
  msgid "Type"
1870
  msgstr "Tipo"
1871
 
1872
- #: templates/debug.php601, templates/debug/logger.php:26
1873
  msgid "Timestamp"
1874
  msgstr "Timestamp"
1875
 
@@ -1896,53 +1964,53 @@ msgstr "Freemius API"
1896
  msgid "Requests"
1897
  msgstr "Richieste"
1898
 
1899
- #: templates/account/billing.php:28
1900
  msgctxt "verb"
1901
  msgid "Update"
1902
  msgstr "Aggiorna"
1903
 
1904
- #: templates/account/billing.php:39
1905
  msgid "Billing"
1906
  msgstr "Fatturazione"
1907
 
1908
- #: templates/account/billing.php44, templates/account/billing.php:44
1909
  msgid "Business name"
1910
  msgstr "Nome della compagnia"
1911
 
1912
- #: templates/account/billing.php45, templates/account/billing.php:45
1913
  msgid "Tax / VAT ID"
1914
  msgstr "Numero Partita Iva o VAT"
1915
 
1916
- #: templates/account/billing.php48, templates/account/billing.php48,
1917
- #: templates/account/billing.php49, templates/account/billing.php:49
1918
  msgid "Address Line %d"
1919
  msgstr "Riga indirizzo %d"
1920
 
1921
- #: templates/account/billing.php52, templates/account/billing.php:52
1922
  msgid "City"
1923
  msgstr "Città"
1924
 
1925
- #: templates/account/billing.php52, templates/account/billing.php:52
1926
  msgid "Town"
1927
  msgstr "Cittadina"
1928
 
1929
- #: templates/account/billing.php53, templates/account/billing.php:53
1930
  msgid "ZIP / Postal Code"
1931
  msgstr "CAP"
1932
 
1933
- #: templates/account/billing.php:308
1934
  msgid "Country"
1935
  msgstr "Nazione"
1936
 
1937
- #: templates/account/billing.php:310
1938
  msgid "Select Country"
1939
  msgstr "Seleziona Nazione"
1940
 
1941
- #: templates/account/billing.php317, templates/account/billing.php:318
1942
  msgid "State"
1943
  msgstr "Stato"
1944
 
1945
- #: templates/account/billing.php317, templates/account/billing.php:318
1946
  msgid "Province"
1947
  msgstr "Provincia"
1948
 
@@ -2194,11 +2262,11 @@ msgstr "Annulla"
2194
  msgid "Become an affiliate"
2195
  msgstr "Diventa un affiliato"
2196
 
2197
- #: templates/forms/license-activation.php:20
2198
  msgid "Please enter the license key that you received in the email right after the purchase:"
2199
  msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:"
2200
 
2201
- #: templates/forms/license-activation.php:25
2202
  msgid "Update License"
2203
  msgstr "Aggiorna licenza"
2204
 
@@ -2265,6 +2333,14 @@ msgstr "Cancel %s - I no longer need any security & feature updates, nor support
2265
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2266
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2267
 
 
 
 
 
 
 
 
 
2268
  #: templates/forms/subscription-cancellation.php:103
2269
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2270
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
@@ -2278,7 +2354,7 @@ msgid "Proceed"
2278
  msgstr "Proceed"
2279
 
2280
  #: templates/forms/subscription-cancellation.php191,
2281
- #: templates/forms/deactivation/form.php:150
2282
  msgid "Cancel %s & Proceed"
2283
  msgstr "Cancel %s & Proceed"
2284
 
@@ -2290,38 +2366,42 @@ msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito
2290
  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."
2291
  msgstr "Per essere accettato del regolamento WordPress.org, prima di attivare il periodo di prova devi accettare di condividere informazioni come il tuo utente e dati non sensibili. Permettendo a %s di inviare dati periodicamente a %s per verificare gli aggiornamenti e approvare il periodo di prova."
2292
 
2293
- #: templates/js/style-premium-theme.php:37
2294
  msgid "Premium"
2295
  msgstr "Premium"
2296
 
2297
- #: templates/partials/network-activation.php:23
 
 
 
 
2298
  msgid "Activate license on all sites in the network."
2299
  msgstr "Attiva la licenza su tutti i siti del network."
2300
 
2301
- #: templates/partials/network-activation.php:24
2302
  msgid "Apply on all sites in the network."
2303
  msgstr "Applica su tutti i siti della rete."
2304
 
2305
- #: templates/partials/network-activation.php:27
2306
  msgid "Activate license on all pending sites."
2307
  msgstr "Attiva le licenze su tutti i siti in attesa."
2308
 
2309
- #: templates/partials/network-activation.php:28
2310
  msgid "Apply on all pending sites."
2311
  msgstr "Applica su tutti i siti in attesa."
2312
 
2313
- #: templates/partials/network-activation.php36,
2314
- #: templates/partials/network-activation.php:68
2315
  msgid "allow"
2316
  msgstr "permetti"
2317
 
2318
- #: templates/partials/network-activation.php38,
2319
- #: templates/partials/network-activation.php:70
2320
  msgid "delegate"
2321
  msgstr "delega"
2322
 
2323
- #: templates/partials/network-activation.php41,
2324
- #: templates/partials/network-activation.php:73
2325
  msgid "skip"
2326
  msgstr "salta"
2327
 
@@ -2347,19 +2427,14 @@ msgstr "%s rimanenti"
2347
  msgid "Last license"
2348
  msgstr "Ultima licenza"
2349
 
2350
- #: templates/account/partials/addon.php:115
2351
  msgid "Cancelled"
2352
  msgstr "Annullato"
2353
 
2354
- #: templates/account/partials/addon.php:125
2355
  msgid "No expiration"
2356
  msgstr "Nessuna scadenza"
2357
 
2358
- #: templates/account/partials/addon.php264,
2359
- #: templates/account/partials/addon.php:317
2360
- msgid "Activate this add-on"
2361
- msgstr "Attivare questo addon"
2362
-
2363
  #: templates/account/partials/site.php:181
2364
  msgid "Owner Name"
2365
  msgstr "Nome proprietario"
@@ -2384,47 +2459,47 @@ msgstr "Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo
2384
  msgid "Contact Support"
2385
  msgstr "Contatta il supporto"
2386
 
2387
- #: templates/forms/deactivation/form.php:59
2388
  msgid "Anonymous feedback"
2389
  msgstr "Feedback anonimo"
2390
 
2391
- #: templates/forms/deactivation/form.php:66
2392
  msgid "Deactivate"
2393
  msgstr "Disattiva"
2394
 
2395
- #: templates/forms/deactivation/form.php:68
2396
  msgid "Activate %s"
2397
  msgstr "Attiva %s"
2398
 
2399
- #: templates/forms/deactivation/form.php:80
2400
  msgid "Quick Feedback"
2401
  msgstr "Quick Feedback"
2402
 
2403
- #: templates/forms/deactivation/form.php:84
2404
  msgid "If you have a moment, please let us know why you are %s"
2405
  msgstr "Se hai un attimo, facci sapere perché %s"
2406
 
2407
- #: templates/forms/deactivation/form.php:84
2408
  msgid "deactivating"
2409
  msgstr "disattivazione in corso"
2410
 
2411
- #: templates/forms/deactivation/form.php:84
2412
  msgid "switching"
2413
  msgstr "passa a"
2414
 
2415
- #: templates/forms/deactivation/form.php:332
2416
  msgid "Submit & %s"
2417
  msgstr "Invia e %s"
2418
 
2419
- #: templates/forms/deactivation/form.php:353
2420
  msgid "Kindly tell us the reason so we can improve."
2421
  msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
2422
 
2423
- #: templates/forms/deactivation/form.php:478
2424
  msgid "Yes - %s"
2425
  msgstr "SI - %s"
2426
 
2427
- #: templates/forms/deactivation/form.php:485
2428
  msgid "Skip & %s"
2429
  msgstr "Salta & %s"
2430
 
11
  "Project-Id-Version: WordPress SDK\n"
12
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
13
  "POT-Creation-Date: \n"
14
+ "PO-Revision-Date: 2019-06-05 13:40+0000\n"
15
+ "Last-Translator: Daniele Scasciafratte Mte90 <mte90net@gmail.com>\n"
16
  "Language: it_IT\n"
17
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
18
  "Content-Type: text/plain; charset=UTF-8\n"
25
  "X-Poedit-SearchPathExcluded-0: *.js\n"
26
  "X-Poedit-SourceCharset: UTF-8\n"
27
 
28
+ #: includes/class-freemius.php1838, templates/account.php:769
29
+ 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."
30
+ 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."
31
+
32
+ #: includes/class-freemius.php:1845
33
+ msgid "Would you like to proceed with the update?"
34
+ msgstr "Would you like to proceed with the update?"
35
+
36
+ #: includes/class-freemius.php:2053
37
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
38
  msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
39
 
40
+ #: includes/class-freemius.php:2055
41
  msgid "Error"
42
  msgstr "Errore"
43
 
44
+ #: includes/class-freemius.php:2445
45
  msgid "I found a better %s"
46
  msgstr "Ho trovato un migliore %s"
47
 
48
+ #: includes/class-freemius.php:2447
49
  msgid "What's the %s's name?"
50
  msgstr "Qual è il nome di %s?"
51
 
52
+ #: includes/class-freemius.php:2453
53
  msgid "It's a temporary %s. I'm just debugging an issue."
54
  msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
55
 
56
+ #: includes/class-freemius.php:2455
57
  msgid "Deactivation"
58
  msgstr "Disattivazione"
59
 
60
+ #: includes/class-freemius.php:2456
61
  msgid "Theme Switch"
62
  msgstr "Cambio tema"
63
 
64
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
65
  msgid "Other"
66
  msgstr "Altro"
67
 
68
+ #: includes/class-freemius.php:2473
69
  msgid "I no longer need the %s"
70
  msgstr "Non ho più bisogno di %s"
71
 
72
+ #: includes/class-freemius.php:2480
73
  msgid "I only needed the %s for a short period"
74
  msgstr "Ho avuto bisogno di %s per un breve periodo"
75
 
76
+ #: includes/class-freemius.php:2486
77
  msgid "The %s broke my site"
78
  msgstr "%s ha rotto il mio sito"
79
 
80
+ #: includes/class-freemius.php:2493
81
  msgid "The %s suddenly stopped working"
82
  msgstr "%s ha improvvisamente smesso di funzionare"
83
 
84
+ #: includes/class-freemius.php:2503
85
  msgid "I can't pay for it anymore"
86
  msgstr "Non posso piú pagarlo"
87
 
88
+ #: includes/class-freemius.php:2505
89
  msgid "What price would you feel comfortable paying?"
90
  msgstr "Che prezzo ritieni opportuno pagare?"
91
 
92
+ #: includes/class-freemius.php:2511
93
  msgid "I don't like to share my information with you"
94
  msgstr "Non voglio condividere i miei dati con te"
95
 
96
+ #: includes/class-freemius.php:2532
97
  msgid "The %s didn't work"
98
  msgstr "%s non funziona"
99
 
100
+ #: includes/class-freemius.php:2542
101
  msgid "I couldn't understand how to make it work"
102
  msgstr "Non capisco come farlo funzionare"
103
 
104
+ #: includes/class-freemius.php:2550
105
  msgid "The %s is great, but I need specific feature that you don't support"
106
  msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
107
 
108
+ #: includes/class-freemius.php:2552
109
  msgid "What feature?"
110
  msgstr "Quale funzionalitá?"
111
 
112
+ #: includes/class-freemius.php:2556
113
  msgid "The %s is not working"
114
  msgstr "%s non funziona"
115
 
116
+ #: includes/class-freemius.php:2558
117
  msgid "Kindly share what didn't work so we can fix it for future users..."
118
  msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
119
 
120
+ #: includes/class-freemius.php:2562
121
  msgid "It's not what I was looking for"
122
  msgstr "Non é quello che stavo cercando"
123
 
124
+ #: includes/class-freemius.php:2564
125
  msgid "What you've been looking for?"
126
  msgstr "Che cosa stai cercando?"
127
 
128
+ #: includes/class-freemius.php:2568
129
  msgid "The %s didn't work as expected"
130
  msgstr "%s non ha funzionato come mi aspettavo"
131
 
132
+ #: includes/class-freemius.php:2570
133
  msgid "What did you expect?"
134
  msgstr "Che cosa ti aspettavi?"
135
 
136
+ #: includes/class-freemius.php3425, templates/debug.php:20
137
  msgid "Freemius Debug"
138
  msgstr "Debug Freemius"
139
 
140
+ #: includes/class-freemius.php:4177
141
  msgid "I don't know what is cURL or how to install it, help me!"
142
  msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
143
 
144
+ #: includes/class-freemius.php:4179
145
  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."
146
  msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
147
 
148
+ #: includes/class-freemius.php:4186
149
  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."
150
  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."
151
 
152
+ #: includes/class-freemius.php:4291
153
  msgid "Yes - do your thing"
154
  msgstr "Sì - fai pure"
155
 
156
+ #: includes/class-freemius.php:4296
157
  msgid "No - just deactivate"
158
  msgstr "No - disattiva e basta"
159
 
160
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
161
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
162
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
163
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
164
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
165
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
166
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "Ops"
170
 
171
+ #: includes/class-freemius.php:4410
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 "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."
174
 
175
+ #: includes/class-freemius.php:4847
176
  msgctxt "addonX cannot run without pluginY"
177
  msgid "%s cannot run without %s."
178
  msgstr "%s non può funzionare senza %s."
179
 
180
+ #: includes/class-freemius.php:4848
181
  msgctxt "addonX cannot run..."
182
  msgid "%s cannot run without the plugin."
183
  msgstr "%s non può funzionare senza il plugin."
184
 
185
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
186
+ #: includes/class-freemius.php:19475
187
  msgid "Unexpected API error. Please contact the %s's author with the following error."
188
  msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
189
 
190
+ #: includes/class-freemius.php:5687
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "La versione 1%s Permium è stata attivata con successo."
193
 
194
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "Forte"
198
 
199
+ #: includes/class-freemius.php:5714
200
  msgid "You have a %s license."
201
  msgstr "Hai la licenza %s."
202
 
203
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
204
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
205
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
206
+ #: includes/class-freemius.php:19229
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "Evvai"
210
 
211
+ #: includes/class-freemius.php:5982
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 "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."
214
 
215
+ #: includes/class-freemius.php:5986
216
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
  msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
218
 
219
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
220
+ #: templates/account/partials/addon.php:343
221
  msgid "More information about %s"
222
  msgstr "Ulteriori informazioni su %s"
223
 
224
+ #: includes/class-freemius.php:5996
225
  msgid "Purchase License"
226
  msgstr "Acquista licenza"
227
 
228
+ #: includes/class-freemius.php6931, templates/connect.php:163
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 "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
231
 
232
+ #: includes/class-freemius.php:6935
233
  msgid "start the trial"
234
  msgstr "Inizia il periodo di prova gratuito"
235
 
236
+ #: includes/class-freemius.php6936, templates/connect.php:167
237
  msgid "complete the install"
238
  msgstr "completa l'installazione"
239
 
240
+ #: includes/class-freemius.php:7049
241
  msgid "You are just one step away - %s"
242
  msgstr "Sei a un passo dalla fine - %s"
243
 
244
+ #: includes/class-freemius.php:7052
245
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
  msgid "Complete \"%s\" Activation Now"
247
  msgstr "Completa l'attivazione di \"%s\" ora"
248
 
249
+ #: includes/class-freemius.php:7130
250
  msgid "We made a few tweaks to the %s, %s"
251
  msgstr "Abbiamo fatto alcune migliore a %s,%s"
252
 
253
+ #: includes/class-freemius.php:7134
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Opt in to make \"%s\" better!"
256
 
257
+ #: includes/class-freemius.php:7566
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "L'aggiornamento di %s è stato completato con successo."
260
 
261
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
262
+ #: includes/class-fs-plugin-updater.php1170,
263
+ #: includes/class-fs-plugin-updater.php1177,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "Add-on"
267
 
268
+ #: includes/class-freemius.php9730, templates/account.php313,
269
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
270
  msgid "Plugin"
271
  msgstr "Plugin"
272
 
273
+ #: includes/class-freemius.php9731, templates/account.php314,
274
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
275
+ #: templates/forms/deactivation/form.php:71
276
  msgid "Theme"
277
  msgstr "Tema"
278
 
279
+ #: includes/class-freemius.php:12148
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:12549
284
  msgid "Invalid site details collection."
285
  msgstr "Invalid site details collection."
286
 
287
+ #: includes/class-freemius.php:12669
288
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
289
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
290
 
291
+ #: includes/class-freemius.php:12671
292
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
293
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
294
 
295
+ #: includes/class-freemius.php:12945
296
  msgid "Account is pending activation."
297
  msgstr "Account in attesa di attivazione."
298
 
299
+ #: includes/class-freemius.php13057,
300
  #: templates/forms/premium-versions-upgrade-handler.php:47
301
  msgid "Buy a license now"
302
  msgstr "Compra una licenza ora"
303
 
304
+ #: includes/class-freemius.php13069,
305
  #: templates/forms/premium-versions-upgrade-handler.php:46
306
  msgid "Renew your license now"
307
  msgstr "Rinnova la tua licenza ora"
308
 
309
+ #: includes/class-freemius.php:13073
310
  msgid "%s to access version %s security & feature updates, and support."
311
  msgstr "%s to access version %s security & feature updates, and support."
312
 
313
+ #: includes/class-freemius.php:15448
314
  msgid "%s activation was successfully completed."
315
  msgstr "%s è stato attivato con successo."
316
 
317
+ #: includes/class-freemius.php:15462
318
  msgid "Your account was successfully activated with the %s plan."
319
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
320
 
321
+ #: includes/class-freemius.php15473, includes/class-freemius.php:19061
322
  msgid "Your trial has been successfully started."
323
  msgstr "La versione di prova è stata avviata correttamente."
324
 
325
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
326
+ #: includes/class-freemius.php:16297
327
  msgid "Couldn't activate %s."
328
  msgstr "Non é stato possibile attivare %s."
329
 
330
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
331
+ #: includes/class-freemius.php:16298
332
  msgid "Please contact us with the following message:"
333
  msgstr "Contattaci con il seguente messaggio:"
334
 
335
+ #: includes/class-freemius.php:16128
336
+ msgid "An unknown error has occurred."
337
+ msgstr "An unknown error has occurred."
338
+
339
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
340
  msgid "Upgrade"
341
  msgstr "Aggiornamento"
342
 
343
+ #: includes/class-freemius.php:16661
344
  msgid "Start Trial"
345
  msgstr "Inizia il periodo di prova gratuito"
346
 
347
+ #: includes/class-freemius.php:16663
348
  msgid "Pricing"
349
  msgstr "Prezzi"
350
 
351
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
352
  msgid "Affiliation"
353
  msgstr "Affiliazione"
354
 
355
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
356
+ #: templates/account.php177, templates/debug.php:326
357
  msgid "Account"
358
  msgstr "Account"
359
 
360
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
361
  #: includes/customizer/class-fs-customizer-support-section.php:60
362
  msgid "Contact Us"
363
  msgstr "Contattaci"
364
 
365
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
366
+ #: includes/class-freemius.php21423, templates/account.php105,
367
+ #: templates/account/partials/addon.php:45
368
  msgid "Add-Ons"
369
  msgstr "Addon"
370
 
371
+ #: includes/class-freemius.php:16835
372
  msgctxt "ASCII arrow left icon"
373
  msgid "&#x2190;"
374
  msgstr "&#x2190;"
375
 
376
+ #: includes/class-freemius.php:16835
377
  msgctxt "ASCII arrow right icon"
378
  msgid "&#x27a4;"
379
  msgstr "&#x27a4;"
380
 
381
+ #: includes/class-freemius.php16837, templates/pricing.php:102
382
  msgctxt "noun"
383
  msgid "Pricing"
384
  msgstr "Prezzi"
385
 
386
+ #: includes/class-freemius.php17050,
387
  #: includes/customizer/class-fs-customizer-support-section.php:67
388
  msgid "Support Forum"
389
  msgstr "Forum di supporto"
390
 
391
+ #: includes/class-freemius.php:17995
392
  msgid "Your email has been successfully verified - you are AWESOME!"
393
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
394
 
395
+ #: includes/class-freemius.php:17996
396
  msgctxt "a positive response"
397
  msgid "Right on"
398
  msgstr "Sì"
399
 
400
+ #: includes/class-freemius.php:18660
401
  msgid "Your %s Add-on plan was successfully upgraded."
402
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
403
 
404
+ #: includes/class-freemius.php:18662
405
  msgid "%s Add-on was successfully purchased."
406
  msgstr "L' add-on %s è stato acquistato con successo."
407
 
408
+ #: includes/class-freemius.php:18665
409
  msgid "Download the latest version"
410
  msgstr "Scarica l'ultima versione"
411
 
412
+ #: includes/class-freemius.php:18751
413
+ 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"
414
+ 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"
 
415
 
416
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
417
+ #: includes/class-freemius.php:19277
418
  msgid "Error received from the server:"
419
  msgstr "Errore ricevuto dal server:"
420
 
421
+ #: includes/class-freemius.php:18767
422
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
423
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
424
 
425
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
426
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
427
  msgctxt ""
428
  msgid "Hmm"
429
  msgstr "Uhm"
430
 
431
+ #: includes/class-freemius.php:18974
432
  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."
433
  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."
434
 
435
+ #: includes/class-freemius.php18975, templates/account.php107,
436
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
437
  msgctxt "trial period"
438
  msgid "Trial"
439
  msgstr "Prova gratuita"
440
 
441
+ #: includes/class-freemius.php:18980
442
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
443
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
444
 
445
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
446
  msgid "Please contact us here"
447
  msgstr "Contattaci qui"
448
 
449
+ #: includes/class-freemius.php:18995
450
+ msgid "Your plan was successfully activated."
451
+ msgstr "Your plan was successfully activated."
452
+
453
+ #: includes/class-freemius.php:18996
454
  msgid "Your plan was successfully upgraded."
455
  msgstr "Il piano è stato aggiornato con successo."
456
 
457
+ #: includes/class-freemius.php:19013
458
  msgid "Your plan was successfully changed to %s."
459
  msgstr "Il piano è stato cambiato con successo a %s."
460
 
461
+ #: includes/class-freemius.php:19029
462
  msgid "Your license has expired. You can still continue using the free %s forever."
463
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
464
 
465
+ #: includes/class-freemius.php:19031
466
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
467
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
468
 
469
+ #: includes/class-freemius.php:19039
470
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
471
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
472
 
473
+ #: includes/class-freemius.php:19052
474
  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."
475
  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."
476
 
477
+ #: includes/class-freemius.php:19075
478
  msgid "Your free trial has expired. You can still continue using all our free features."
479
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
480
 
481
+ #: includes/class-freemius.php:19077
482
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
483
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
484
 
485
+ #: includes/class-freemius.php:19184
486
  msgid "It looks like the license could not be activated."
487
  msgstr "Sembra che la licenza non possa essere attivata."
488
 
489
+ #: includes/class-freemius.php:19226
490
  msgid "Your license was successfully activated."
491
  msgstr "La tua licenza è stata attivata correttamente."
492
 
493
+ #: includes/class-freemius.php:19252
494
  msgid "It looks like your site currently doesn't have an active license."
495
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
496
 
497
+ #: includes/class-freemius.php:19276
498
  msgid "It looks like the license deactivation failed."
499
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
500
 
501
+ #: includes/class-freemius.php:19304
502
  msgid "Your license was successfully deactivated, you are back to the %s plan."
503
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
504
 
505
+ #: includes/class-freemius.php:19305
506
  msgid "O.K"
507
  msgstr "OK"
508
 
509
+ #: includes/class-freemius.php:19358
510
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
511
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
512
 
513
+ #: includes/class-freemius.php:19367
514
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
515
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
516
 
517
+ #: includes/class-freemius.php:19409
518
  msgid "You are already running the %s in a trial mode."
519
  msgstr "Stai già usando %s in modalità prova."
520
 
521
+ #: includes/class-freemius.php:19420
522
  msgid "You already utilized a trial before."
523
  msgstr "Hai già utilizzato una prova gratuita in passato."
524
 
525
+ #: includes/class-freemius.php:19434
526
  msgid "Plan %s do not exist, therefore, can't start a trial."
527
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
528
 
529
+ #: includes/class-freemius.php:19445
530
  msgid "Plan %s does not support a trial period."
531
  msgstr "Il piano %s non supporta il periodo di prova."
532
 
533
+ #: includes/class-freemius.php:19456
534
  msgid "None of the %s's plans supports a trial period."
535
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
536
 
537
+ #: includes/class-freemius.php:19506
538
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
539
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
540
 
541
+ #: includes/class-freemius.php:19542
542
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
543
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
544
 
545
+ #: includes/class-freemius.php:19561
546
  msgid "Your %s free trial was successfully cancelled."
547
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
548
 
549
+ #: includes/class-freemius.php:19877
550
  msgid "Version %s was released."
551
  msgstr "La versione %s é stata rilasciata."
552
 
553
+ #: includes/class-freemius.php:19877
554
  msgid "Please download %s."
555
  msgstr "Scarica %s."
556
 
557
+ #: includes/class-freemius.php:19884
558
  msgid "the latest %s version here"
559
  msgstr "l'ultima versione %s é quì"
560
 
561
+ #: includes/class-freemius.php:19889
562
  msgid "New"
563
  msgstr "Nuovo"
564
 
565
+ #: includes/class-freemius.php:19894
566
  msgid "Seems like you got the latest release."
567
  msgstr "Sembra che tu abbia la versione più recente."
568
 
569
+ #: includes/class-freemius.php:19895
570
  msgid "You are all good!"
571
  msgstr "Sei fantastico!"
572
 
573
+ #: includes/class-freemius.php:20165
574
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
575
  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."
576
 
577
+ #: includes/class-freemius.php:20304
578
  msgid "Site successfully opted in."
579
  msgstr "Sito accettato con successo."
580
 
581
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
582
  msgid "Awesome"
583
  msgstr "Fantastico"
584
 
585
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
586
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
587
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
588
 
589
+ #: includes/class-freemius.php:20322
590
  msgid "Thank you!"
591
  msgstr "Grazie!"
592
 
593
+ #: includes/class-freemius.php:20329
594
  msgid "We will no longer be sending any usage data of %s on %s to %s."
595
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
596
 
597
+ #: includes/class-freemius.php:20458
598
  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."
599
  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."
600
 
601
+ #: includes/class-freemius.php:20464
602
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
603
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
604
 
605
+ #: includes/class-freemius.php:20469
606
  msgid "%s is the new owner of the account."
607
  msgstr "%s è il nuovo proprietario dell'account."
608
 
609
+ #: includes/class-freemius.php:20471
610
  msgctxt "as congratulations"
611
  msgid "Congrats"
612
  msgstr "Congratulazioni"
613
 
614
+ #: includes/class-freemius.php:20491
615
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
616
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
617
 
618
+ #: includes/class-freemius.php:20492
619
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
620
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
621
 
622
+ #: includes/class-freemius.php:20499
623
  msgid "Change Ownership"
624
  msgstr "Cambia Proprietario"
625
 
626
+ #: includes/class-freemius.php:20507
627
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
628
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
629
 
630
+ #: includes/class-freemius.php:20519
631
  msgid "Please provide your full name."
632
  msgstr "Per favore inserisci il tuo nome completo."
633
 
634
+ #: includes/class-freemius.php:20524
635
  msgid "Your name was successfully updated."
636
  msgstr "Il tuo nome è stato aggiornato correttamente."
637
 
638
+ #: includes/class-freemius.php:20585
639
  msgid "You have successfully updated your %s."
640
  msgstr "Hai aggiornato con successo il tuo %s."
641
 
642
+ #: includes/class-freemius.php:20725
643
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
644
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
645
 
646
+ #: includes/class-freemius.php:20726
647
  msgctxt "advance notice of something that will need attention."
648
  msgid "Heads up"
649
  msgstr "Attenzione"
650
 
651
+ #: includes/class-freemius.php:21165
652
  msgctxt "exclamation"
653
  msgid "Hey"
654
  msgstr "Hey"
655
 
656
+ #: includes/class-freemius.php:21165
657
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
658
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
659
 
660
+ #: includes/class-freemius.php:21173
661
  msgid "No commitment for %s days - cancel anytime!"
662
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
663
 
664
+ #: includes/class-freemius.php:21174
665
  msgid "No credit card required"
666
  msgstr "Nessuna carta di credito richiesta"
667
 
668
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
669
  msgctxt "call to action"
670
  msgid "Start free trial"
671
  msgstr "Inizia il periodo di prova gratuito"
672
 
673
+ #: includes/class-freemius.php:21258
674
  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!"
675
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
676
 
677
+ #: includes/class-freemius.php:21267
678
  msgid "Learn more"
679
  msgstr "Scopri altro"
680
 
681
+ #: includes/class-freemius.php21447, templates/account.php474,
682
+ #: templates/account.php595, templates/connect.php171,
683
+ #: templates/connect.php421, templates/forms/license-activation.php25,
684
+ #: templates/account/partials/addon.php:287
685
  msgid "Activate License"
686
  msgstr "Attiva licenza"
687
 
688
+ #: includes/class-freemius.php21448, templates/account.php543,
689
+ #: templates/account.php594, templates/account/partials/site.php:256
690
  msgid "Change License"
691
  msgstr "Cambia licenza"
692
 
693
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
694
  msgid "Opt Out"
695
  msgstr "Cancella iscrizione"
696
 
697
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
698
  #: templates/account/partials/site.php43,
699
  #: templates/account/partials/site.php:161
700
  msgid "Opt In"
701
  msgstr "Iscriviti"
702
 
703
+ #: includes/class-freemius.php:21775
704
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
705
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
706
 
707
+ #: includes/class-freemius.php:21783
708
  msgid "Activate %s features"
709
  msgstr "Activate %s features"
710
 
711
+ #: includes/class-freemius.php:21796
712
  msgid "Please follow these steps to complete the upgrade"
713
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
714
 
715
+ #: includes/class-freemius.php:21800
716
  msgid "Download the latest %s version"
717
  msgstr "Scarica l'ultima versione di %s"
718
 
719
+ #: includes/class-freemius.php:21804
720
  msgid "Upload and activate the downloaded version"
721
  msgstr "Carica e attiva la versione scaricata"
722
 
723
+ #: includes/class-freemius.php:21806
724
  msgid "How to upload and activate?"
725
  msgstr "Come faccio a caricare ed attivare?"
726
 
727
+ #: includes/class-freemius.php:21940
728
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
729
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
730
 
731
+ #: includes/class-freemius.php:22101
732
  msgid "Auto installation only works for opted-in users."
733
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
734
 
735
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
736
+ #: includes/class-fs-plugin-updater.php1149,
737
+ #: includes/class-fs-plugin-updater.php:1163
738
  msgid "Invalid module ID."
739
  msgstr "ID modulo non valida."
740
 
741
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
742
  msgid "Premium version already active."
743
  msgstr "Versione Premium già attiva."
744
 
745
+ #: includes/class-freemius.php:22127
746
  msgid "You do not have a valid license to access the premium version."
747
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
748
 
749
+ #: includes/class-freemius.php:22134
750
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
751
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
752
 
753
+ #: includes/class-freemius.php22152, includes/class-fs-plugin-updater.php:1184
754
  msgid "Premium add-on version already installed."
755
  msgstr "Versione Premium dell'add-on già installata."
756
 
757
+ #: includes/class-freemius.php:22497
758
  msgid "View paid features"
759
  msgstr "Vedi funzionalità a pagamento"
760
 
761
+ #: includes/class-freemius.php:22819
762
  msgid "Thank you so much for using %s and its add-ons!"
763
  msgstr "Grazie per utilizzare %se i suoi addon!"
764
 
765
+ #: includes/class-freemius.php:22820
766
  msgid "Thank you so much for using %s!"
767
  msgstr "Grazie per utilizzare %s!"
768
 
769
+ #: includes/class-freemius.php:22826
770
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
771
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
772
 
773
+ #: includes/class-freemius.php:22830
774
  msgid "Thank you so much for using our products!"
775
  msgstr "Grazie per utilizzare i nostri prodotti!"
776
 
777
+ #: includes/class-freemius.php:22831
778
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
779
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
780
 
781
+ #: includes/class-freemius.php:22850
782
  msgid "%s and its add-ons"
783
  msgstr "%se i suoi addon"
784
 
785
+ #: includes/class-freemius.php:22859
786
  msgid "Products"
787
  msgstr "Prodotti"
788
 
789
+ #: includes/class-freemius.php22866, templates/connect.php:272
790
  msgid "Yes"
791
  msgstr "Si"
792
 
793
+ #: includes/class-freemius.php22867, templates/connect.php:273
794
  msgid "send me security & feature updates, educational content and offers."
795
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
796
 
797
+ #: includes/class-freemius.php22868, templates/connect.php:278
798
  msgid "No"
799
  msgstr "No"
800
 
801
+ #: includes/class-freemius.php22870, templates/connect.php:280
802
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
803
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
804
 
805
+ #: includes/class-freemius.php:22880
806
+ 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 :-)"
807
+ 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 :-)"
808
 
809
+ #: includes/class-freemius.php22882, templates/connect.php:287
810
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
811
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
812
 
813
+ #: includes/class-freemius.php:23164
814
  msgid "License key is empty."
815
  msgstr "La chiave licenza è vuota."
816
 
824
  msgid "Buy license"
825
  msgstr "Buy license"
826
 
827
+ #: includes/class-fs-plugin-updater.php280,
828
+ #: includes/class-fs-plugin-updater.php:313
829
  msgid "There is a %s of %s available."
830
  msgstr "There is a %s of %s available."
831
 
832
+ #: includes/class-fs-plugin-updater.php282,
833
+ #: includes/class-fs-plugin-updater.php:318
834
+ msgid "new Beta version"
835
+ msgstr "new Beta version"
836
+
837
+ #: includes/class-fs-plugin-updater.php283,
838
+ #: includes/class-fs-plugin-updater.php:319
839
  msgid "new version"
840
  msgstr "new version"
841
 
842
+ #: includes/class-fs-plugin-updater.php:342
843
  msgid "Important Upgrade Notice:"
844
  msgstr "Important Upgrade Notice:"
845
 
846
+ #: includes/class-fs-plugin-updater.php:1214
847
  msgid "Installing plugin: %s"
848
  msgstr "Installazione plugin: %s"
849
 
850
+ #: includes/class-fs-plugin-updater.php:1255
851
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
852
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
853
 
854
+ #: includes/class-fs-plugin-updater.php:1437
855
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
856
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
857
 
858
+ #: includes/fs-plugin-info-dialog.php:509
859
+ msgid "Purchase More"
860
+ msgstr "Purchase More"
861
+
862
+ #: includes/fs-plugin-info-dialog.php510,
863
+ #: templates/account/partials/addon.php:347
864
  msgctxt "verb"
865
  msgid "Purchase"
866
  msgstr "Acquisto"
867
 
868
+ #: includes/fs-plugin-info-dialog.php:514
869
  msgid "Start my free %s"
870
  msgstr "Inizia la mia %s"
871
 
872
+ #: includes/fs-plugin-info-dialog.php:712
873
+ msgid "Install Free Version Update Now"
874
+ msgstr "Installa l'ultima versione gratuita"
875
+
876
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
877
+ msgid "Install Update Now"
878
+ msgstr "Installa l'aggiornamento ora"
879
+
880
+ #: includes/fs-plugin-info-dialog.php:722
881
  msgid "Install Free Version Now"
882
  msgstr "Installa la versione gratuita ora"
883
 
884
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
885
+ #: templates/auto-installation.php111,
886
+ #: templates/account/partials/addon.php327,
887
+ #: templates/account/partials/addon.php:379
888
  msgid "Install Now"
889
  msgstr "Installa ora"
890
 
891
+ #: includes/fs-plugin-info-dialog.php:739
892
  msgctxt "as download latest version"
893
  msgid "Download Latest Free Version"
894
  msgstr "Scarica l'ultima versione gratuita"
895
 
896
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
897
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
898
  msgctxt "as download latest version"
899
  msgid "Download Latest"
900
  msgstr "Scarica l'ultima versione"
901
 
902
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
903
+ #: templates/account/partials/addon.php318,
904
+ #: templates/account/partials/addon.php:373
905
+ msgid "Activate this add-on"
906
+ msgstr "Attivare questo addon"
 
 
 
 
 
 
 
 
 
 
907
 
908
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
909
+ msgid "Activate Free Version"
910
+ msgstr "Attiva versione gratuita"
911
 
912
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
913
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
914
+ msgid "Activate"
915
+ msgstr "Attiva"
916
 
917
+ #: includes/fs-plugin-info-dialog.php:968
918
  msgctxt "Plugin installer section title"
919
  msgid "Description"
920
  msgstr "Descrizione"
921
 
922
+ #: includes/fs-plugin-info-dialog.php:969
923
  msgctxt "Plugin installer section title"
924
  msgid "Installation"
925
  msgstr "Installazione"
926
 
927
+ #: includes/fs-plugin-info-dialog.php:970
928
  msgctxt "Plugin installer section title"
929
  msgid "FAQ"
930
  msgstr "FAQ"
931
 
932
+ #: includes/fs-plugin-info-dialog.php971,
933
  #: templates/plugin-info/description.php:55
934
  msgid "Screenshots"
935
  msgstr "Screenshot"
936
 
937
+ #: includes/fs-plugin-info-dialog.php:972
938
  msgctxt "Plugin installer section title"
939
  msgid "Changelog"
940
  msgstr "Changelog"
941
 
942
+ #: includes/fs-plugin-info-dialog.php:973
943
  msgctxt "Plugin installer section title"
944
  msgid "Reviews"
945
  msgstr "Recensioni"
946
 
947
+ #: includes/fs-plugin-info-dialog.php:974
948
  msgctxt "Plugin installer section title"
949
  msgid "Other Notes"
950
  msgstr "Altre note"
951
 
952
+ #: includes/fs-plugin-info-dialog.php:989
953
  msgctxt "Plugin installer section title"
954
  msgid "Features & Pricing"
955
  msgstr "Caratteristiche & prezzi"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:999
958
  msgid "Plugin Install"
959
  msgstr "Installazione del plugin"
960
 
961
+ #: includes/fs-plugin-info-dialog.php:1071
962
  msgctxt "e.g. Professional Plan"
963
  msgid "%s Plan"
964
  msgstr "Piano %s"
965
 
966
+ #: includes/fs-plugin-info-dialog.php:1097
967
  msgctxt "e.g. the best product"
968
  msgid "Best"
969
  msgstr "Migliore"
970
 
971
+ #: includes/fs-plugin-info-dialog.php1103,
972
+ #: includes/fs-plugin-info-dialog.php:1123
973
  msgctxt "as every month"
974
  msgid "Monthly"
975
  msgstr "Mensilmente"
976
 
977
+ #: includes/fs-plugin-info-dialog.php:1106
978
  msgctxt "as once a year"
979
  msgid "Annual"
980
  msgstr "Annuale"
981
 
982
+ #: includes/fs-plugin-info-dialog.php:1109
983
  msgid "Lifetime"
984
  msgstr "Tutta la vita"
985
 
986
+ #: includes/fs-plugin-info-dialog.php1123,
987
+ #: includes/fs-plugin-info-dialog.php1125,
988
+ #: includes/fs-plugin-info-dialog.php:1127
989
  msgctxt "e.g. billed monthly"
990
  msgid "Billed %s"
991
  msgstr "Fatturato %s"
992
 
993
+ #: includes/fs-plugin-info-dialog.php:1125
994
  msgctxt "as once a year"
995
  msgid "Annually"
996
  msgstr "Annualmente"
997
 
998
+ #: includes/fs-plugin-info-dialog.php:1127
999
  msgctxt "as once a year"
1000
  msgid "Once"
1001
  msgstr "Una volta"
1002
 
1003
+ #: includes/fs-plugin-info-dialog.php:1133
1004
  msgid "Single Site License"
1005
  msgstr "Licenza per sito singolo"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1135
1008
  msgid "Unlimited Licenses"
1009
  msgstr "Licenze illimitate"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php:1137
1012
  msgid "Up to %s Sites"
1013
  msgstr "Fino a %s siti"
1014
 
1015
+ #: includes/fs-plugin-info-dialog.php1147,
1016
  #: templates/plugin-info/features.php:82
1017
  msgctxt "as monthly period"
1018
  msgid "mo"
1019
  msgstr "mese"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php1154,
1022
  #: templates/plugin-info/features.php:80
1023
  msgctxt "as annual period"
1024
  msgid "year"
1025
  msgstr "anno"
1026
 
1027
+ #: includes/fs-plugin-info-dialog.php:1208
1028
  msgctxt "noun"
1029
  msgid "Price"
1030
  msgstr "Prezzo"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1256
1033
  msgid "Save %s"
1034
  msgstr "Risparmia %s"
1035
 
1036
+ #: includes/fs-plugin-info-dialog.php:1266
1037
  msgid "No commitment for %s - cancel anytime"
1038
  msgstr "Nessun impegno con %s - cancella quando vuoi"
1039
 
1040
+ #: includes/fs-plugin-info-dialog.php:1269
1041
  msgid "After your free %s, pay as little as %s"
1042
  msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php:1280
1045
  msgid "Details"
1046
  msgstr "Dettagli"
1047
 
1048
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1049
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1050
+ #: templates/account/partials/addon.php:36
1051
  msgctxt "product version"
1052
  msgid "Version"
1053
  msgstr "Versione"
1054
 
1055
+ #: includes/fs-plugin-info-dialog.php:1291
1056
  msgctxt "as the plugin author"
1057
  msgid "Author"
1058
  msgstr "Autore"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php:1298
1061
  msgid "Last Updated"
1062
  msgstr "Ultimo aggiornamento"
1063
 
1064
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1065
  msgctxt "x-ago"
1066
  msgid "%s ago"
1067
  msgstr "%s fa"
1068
 
1069
+ #: includes/fs-plugin-info-dialog.php:1312
1070
  msgid "Requires WordPress Version"
1071
  msgstr "Richiede la versione di WordPress"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1313
1074
  msgid "%s or higher"
1075
  msgstr "%s o superiore"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1320
1078
  msgid "Compatible up to"
1079
  msgstr "Compatibile fino a"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1328
1082
  msgid "Downloaded"
1083
  msgstr "Scaricato"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1332
1086
  msgid "%s time"
1087
  msgstr "% volta"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php:1334
1090
  msgid "%s times"
1091
  msgstr "%s volte"
1092
 
1093
+ #: includes/fs-plugin-info-dialog.php:1344
1094
  msgid "WordPress.org Plugin Page"
1095
  msgstr "Pagina dei plugin di WordPress.org"
1096
 
1097
+ #: includes/fs-plugin-info-dialog.php:1352
1098
  msgid "Plugin Homepage"
1099
  msgstr "Homepage del plugin"
1100
 
1101
+ #: includes/fs-plugin-info-dialog.php1360,
1102
+ #: includes/fs-plugin-info-dialog.php:1442
1103
  msgid "Donate to this plugin"
1104
  msgstr "Fai una donazione a questo plugin"
1105
 
1106
+ #: includes/fs-plugin-info-dialog.php:1367
1107
  msgid "Average Rating"
1108
  msgstr "Valutazione media"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1374
1111
  msgid "based on %s"
1112
  msgstr "basato su %s"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1378
1115
  msgid "%s rating"
1116
  msgstr "%s valutazione"
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1380
1119
  msgid "%s ratings"
1120
  msgstr "%s valutazioni"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1395
1123
  msgid "%s star"
1124
  msgstr "%s stella"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1397
1127
  msgid "%s stars"
1128
  msgstr "%s stelle"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1408
1131
  msgid "Click to see reviews that provided a rating of %s"
1132
  msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php:1421
1135
  msgid "Contributors"
1136
  msgstr "Contributori"
1137
 
1138
+ #: includes/fs-plugin-info-dialog.php1450,
1139
+ #: includes/fs-plugin-info-dialog.php:1452
1140
  msgid "Warning"
1141
  msgstr "Avviso"
1142
 
1143
+ #: includes/fs-plugin-info-dialog.php:1450
1144
  msgid "This plugin has not been tested with your current version of WordPress."
1145
  msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1452
1148
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1149
  msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1471
1152
  msgid "Paid add-on must be deployed to Freemius."
1153
  msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1472
1156
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1157
  msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
1158
 
1159
+ #: includes/fs-plugin-info-dialog.php:1493
1160
+ msgid "Newer Version (%s) Installed"
1161
+ msgstr "Versione più recente (%s) installata"
1162
+
1163
+ #: includes/fs-plugin-info-dialog.php:1494
1164
+ msgid "Newer Free Version (%s) Installed"
1165
+ msgstr "Nuova versione gratuita (%s) installata"
1166
+
1167
+ #: includes/fs-plugin-info-dialog.php:1501
1168
+ msgid "Latest Version Installed"
1169
+ msgstr "Versione più recente installata"
1170
+
1171
+ #: includes/fs-plugin-info-dialog.php:1502
1172
+ msgid "Latest Free Version Installed"
1173
+ msgstr "Ultima versione gratuita installata"
1174
+
1175
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1176
+ #: templates/account/partials/addon.php26,
1177
  #: templates/account/partials/site.php:295
1178
  msgid "Downgrading your plan"
1179
  msgstr "Downgrading your plan"
1180
 
1181
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1182
+ #: templates/account/partials/addon.php27,
1183
  #: templates/account/partials/site.php:296
1184
  msgid "Cancelling the subscription"
1185
  msgstr "Cancelling the subscription"
1186
 
1187
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1188
  #. subscription'
1189
+ #: templates/account.php:89
1190
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1191
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
 
 
1192
 
1193
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1194
+ #: templates/account/partials/addon.php30,
1195
  #: templates/account/partials/site.php:299
1196
  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."
1197
  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."
1198
 
1199
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1200
+ #: templates/account/partials/addon.php:31
1201
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1202
  msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
1203
 
1204
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1205
+ #: templates/account/partials/addon.php32,
1206
  #: templates/account/partials/site.php:300
1207
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1208
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1209
 
1210
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1211
+ #: templates/account/partials/addon.php33,
1212
  #: templates/account/partials/site.php:301
1213
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1214
  msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
1215
 
1216
  #. translators: %s: Plan title (e.g. "Professional")
1217
+ #: templates/account.php95,
1218
  #: templates/account/partials/activate-license-button.php31,
1219
+ #: templates/account/partials/addon.php:35
1220
  msgid "Activate %s Plan"
1221
  msgstr "Attivare il piano %s"
1222
 
1223
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1224
+ #: templates/account.php98, templates/account/partials/addon.php38,
1225
  #: templates/account/partials/site.php:275
1226
  msgid "Auto renews in %s"
1227
  msgstr "Rinnovo automatico in %s"
1228
 
1229
  #. translators: %s: Time period (e.g. Expires in "2 months")
1230
+ #: templates/account.php100, templates/account/partials/addon.php40,
1231
  #: templates/account/partials/site.php:277
1232
  msgid "Expires in %s"
1233
  msgstr "Scade in %s"
1234
 
1235
+ #: templates/account.php101, templates/account/partials/addon.php:41
1236
  msgctxt "as synchronize license"
1237
  msgid "Sync License"
1238
  msgstr "Sincronizza la licenza"
1239
 
1240
+ #: templates/account.php102, templates/account/partials/addon.php:42
1241
  msgid "Cancel Trial"
1242
  msgstr "Annulla prova gratuita"
1243
 
1244
+ #: templates/account.php103, templates/account/partials/addon.php:43
1245
  msgid "Change Plan"
1246
  msgstr "Cambia piano"
1247
 
1248
+ #: templates/account.php104, templates/account/partials/addon.php:44
1249
  msgctxt "verb"
1250
  msgid "Upgrade"
1251
  msgstr "Aggiornamento"
1252
 
1253
+ #: templates/account.php106, templates/account/partials/addon.php46,
1254
  #: templates/account/partials/site.php:302
1255
  msgctxt "verb"
1256
  msgid "Downgrade"
1257
  msgstr "Downgrade"
1258
 
1259
+ #: templates/account.php108, templates/add-ons.php187,
1260
  #: templates/plugin-info/features.php72,
1261
+ #: templates/account/partials/addon.php48,
1262
  #: templates/account/partials/site.php:31
1263
  msgid "Free"
1264
  msgstr "Gratuito"
1265
 
1266
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1267
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1268
+ #: templates/account/partials/addon.php:50
1269
  msgctxt "as product pricing plan"
1270
  msgid "Plan"
1271
  msgstr "Piano"
1272
 
1273
+ #: templates/account.php:111
1274
+ msgid "Bundle Plan"
1275
+ msgstr "Bundle Plan"
1276
+
1277
+ #: templates/account.php:185
1278
  msgid "Free Trial"
1279
  msgstr "Prova gratuita"
1280
 
1281
+ #: templates/account.php:196
1282
  msgid "Account Details"
1283
  msgstr "Dettagli dell'account"
1284
 
1285
+ #: templates/account.php:200
1286
+ msgid "Billing & Invoices"
1287
+ msgstr "Billing & Invoices"
1288
+
1289
+ #: templates/account.php:210
1290
  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?"
1291
  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?"
1292
 
1293
+ #: templates/account.php:212
1294
  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?"
1295
  msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
1296
 
1297
+ #: templates/account.php:215
1298
  msgid "Delete Account"
1299
  msgstr "Elimina Account"
1300
 
1301
+ #: templates/account.php227, templates/account/partials/addon.php211,
1302
  #: templates/account/partials/deactivate-license-button.php:35
1303
  msgid "Deactivate License"
1304
  msgstr "Disattiva licenza"
1305
 
1306
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1307
  msgid "Are you sure you want to proceed?"
1308
  msgstr "Sei sicuro di voler procedere?"
1309
 
1310
+ #: templates/account.php250, templates/account/partials/addon.php:234
1311
  msgid "Cancel Subscription"
1312
  msgstr "Annulla sottoscrizione"
1313
 
1314
+ #: templates/account.php:278
1315
  msgctxt "as synchronize"
1316
  msgid "Sync"
1317
  msgstr "Sincronizza"
1318
 
1319
+ #: templates/account.php292, templates/debug.php:489
1320
  msgid "Name"
1321
  msgstr "Nome"
1322
 
1323
+ #: templates/account.php298, templates/debug.php:490
1324
  msgid "Email"
1325
  msgstr "Email"
1326
 
1327
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1328
  msgid "User ID"
1329
  msgstr "ID utente"
1330
 
1331
+ #: templates/account.php322, templates/account.php608,
1332
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1333
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1334
+ #: templates/debug.php599, templates/account/payments.php35,
1335
+ #: templates/debug/logger.php:21
1336
+ msgid "ID"
1337
+ msgstr "ID"
1338
+
1339
+ #: templates/account.php:329
1340
  msgid "Site ID"
1341
  msgstr "ID del sito"
1342
 
1343
+ #: templates/account.php:332
1344
  msgid "No ID"
1345
  msgstr "Nessun ID"
1346
 
1347
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1348
+ #: templates/debug.php455, templates/debug.php492,
1349
  #: templates/account/partials/site.php:219
1350
  msgid "Public Key"
1351
  msgstr "Chiave pubblica"
1352
 
1353
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1354
+ #: templates/debug.php493, templates/account/partials/site.php:231
1355
  msgid "Secret Key"
1356
  msgstr "Chiave segreta"
1357
 
1358
+ #: templates/account.php:346
1359
  msgctxt "as secret encryption key missing"
1360
  msgid "No Secret"
1361
  msgstr "Nessuna chiave"
1362
 
1363
+ #: templates/account.php373, templates/account/partials/site.php112,
1364
  #: templates/account/partials/site.php:114
1365
  msgid "Trial"
1366
  msgstr "Prova gratuita"
1367
 
1368
+ #: templates/account.php400, templates/debug.php533,
1369
  #: templates/account/partials/site.php:248
1370
  msgid "License Key"
1371
  msgstr "Chiave della licenza"
1372
 
1373
+ #: templates/account.php:429
1374
+ msgid "Join the Beta program"
1375
+ msgstr "Join the Beta program"
1376
+
1377
+ #: templates/account.php:435
1378
  msgid "not verified"
1379
  msgstr "non verificato"
1380
 
1381
+ #: templates/account.php444, templates/account/partials/addon.php:172
1382
  msgid "Expired"
1383
  msgstr "Scaduto"
1384
 
1385
+ #: templates/account.php:502
1386
  msgid "Premium version"
1387
  msgstr "Versione premium"
1388
 
1389
+ #: templates/account.php:504
1390
  msgid "Free version"
1391
  msgstr "Versione gratuita"
1392
 
1393
+ #: templates/account.php:516
1394
  msgid "Verify Email"
1395
  msgstr "Verifica email"
1396
 
1397
+ #: templates/account.php:527
1398
  msgid "Download %s Version"
1399
  msgstr "Scarica la versione %s"
1400
 
1401
+ #: templates/account.php541, templates/account.php749,
1402
  #: templates/account/partials/site.php237,
1403
  #: templates/account/partials/site.php:255
1404
  msgctxt "verb"
1405
  msgid "Show"
1406
  msgstr "Mostra"
1407
 
1408
+ #: templates/account.php:555
1409
  msgid "What is your %s?"
1410
  msgstr "Qual è il tuo %s?"
1411
 
1412
+ #: templates/account.php563, templates/account/billing.php:21
1413
  msgctxt "verb"
1414
  msgid "Edit"
1415
  msgstr "Modifica"
1416
 
1417
+ #: templates/account.php:588
1418
  msgid "Sites"
1419
  msgstr "Siti"
1420
 
1421
+ #: templates/account.php:599
1422
  msgid "Search by address"
1423
  msgstr "Cerca per indirizzo"
1424
 
1425
+ #: templates/account.php609, templates/debug.php:369
 
 
 
 
 
 
 
1426
  msgid "Address"
1427
  msgstr "Indirizzo"
1428
 
1429
+ #: templates/account.php:610
1430
  msgid "License"
1431
  msgstr "Licenza"
1432
 
1433
+ #: templates/account.php:611
1434
  msgid "Plan"
1435
  msgstr "Piano"
1436
 
1437
+ #: templates/account.php:656
1438
  msgctxt "as software license"
1439
  msgid "License"
1440
  msgstr "Licenza"
1441
 
1442
+ #: templates/account.php:743
1443
  msgctxt "verb"
1444
  msgid "Hide"
1445
  msgstr "Nascondi"
1446
 
1447
+ #: templates/account.php:765
1448
+ msgid "Processing"
1449
+ msgstr "Processing"
1450
+
1451
+ #: templates/account.php:768
1452
+ msgid "Get updates for bleeding edge Beta versions of %s."
1453
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1454
+
1455
+ #: templates/account.php:826
1456
  msgid "Cancelling %s"
1457
  msgstr "Cancelling %s"
1458
 
1459
+ #: templates/account.php826, templates/account.php843,
1460
  #: templates/forms/subscription-cancellation.php27,
1461
+ #: templates/forms/deactivation/form.php:133
1462
  msgid "trial"
1463
  msgstr "trial"
1464
 
1465
+ #: templates/account.php841, templates/forms/deactivation/form.php:150
1466
  msgid "Cancelling %s..."
1467
  msgstr "Cancelling %s..."
1468
 
1469
+ #: templates/account.php844, templates/forms/subscription-cancellation.php28,
1470
+ #: templates/forms/deactivation/form.php:134
1471
  msgid "subscription"
1472
  msgstr "subscription"
1473
 
1474
+ #: templates/account.php:858
1475
  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?"
1476
  msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
1477
 
1478
+ #: templates/add-ons.php:35
1479
+ msgid "View details"
1480
+ msgstr "Visualizza dettagli"
1481
+
1482
+ #: templates/add-ons.php:45
1483
  msgid "Add Ons for %s"
1484
  msgstr "Add-on per %s"
1485
 
1486
+ #: templates/add-ons.php:55
1487
  msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1488
  msgstr "Non siamo riusciti a caricare la lista degli add-on. Si tratta probabilmente di un problema nel nostro sistema, per favore riprova tra qualche minuto."
1489
 
1490
+ #: templates/add-ons.php:173
1491
+ msgctxt "active add-on"
1492
+ msgid "Active"
1493
+ msgstr "Attiva"
1494
+
1495
+ #: templates/add-ons.php:174
1496
+ msgctxt "installed add-on"
1497
+ msgid "Installed"
1498
+ msgstr "Installed"
1499
 
1500
+ #: templates/admin-notice.php13, templates/forms/license-activation.php209,
1501
  #: templates/forms/resend-key.php:77
1502
  msgctxt "as close a window"
1503
  msgid "Dismiss"
1523
  msgid "Cancel Installation"
1524
  msgstr "Annulla installazione"
1525
 
1526
+ #: templates/checkout.php:180
1527
  msgid "Checkout"
1528
  msgstr "Cassa"
1529
 
1530
+ #: templates/checkout.php:180
1531
  msgid "PCI compliant"
1532
  msgstr "PCI compliant"
1533
 
1549
  msgid "Thanks %s!"
1550
  msgstr "Grazie %s!"
1551
 
1552
+ #: templates/connect.php172, templates/forms/license-activation.php:44
1553
  msgid "Agree & Activate License"
1554
  msgstr "Accetta e attiva la licenza"
1555
 
1597
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1598
  msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo."
1599
 
1600
+ #: templates/connect.php253, templates/forms/license-activation.php:47
1601
  msgid "License key"
1602
  msgstr "Chiave di licenza"
1603
 
1604
+ #: templates/connect.php256, templates/forms/license-activation.php:20
1605
  msgid "Can't find your license key?"
1606
  msgstr "Non trovi la tua chiave di licenza?"
1607
 
1608
+ #: templates/connect.php315, templates/connect.php652,
1609
  #: templates/forms/deactivation/retry-skip.php:20
1610
  msgctxt "verb"
1611
  msgid "Skip"
1655
  msgid "Newsletter"
1656
  msgstr "Newsletter"
1657
 
1658
+ #: templates/connect.php391, templates/forms/license-activation.php:39
1659
  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."
1660
  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."
1661
 
1667
  msgid "Don't have a license key?"
1668
  msgstr "Non hai una chiave di licenza?"
1669
 
 
 
 
 
1670
  #: templates/connect.php:420
1671
  msgid "Have a license key?"
1672
  msgstr "Hai una chiave di licenza?"
1683
  msgid "Terms of Service"
1684
  msgstr "Termini del Servizio"
1685
 
1686
+ #: templates/connect.php:805
1687
  msgctxt "as in the process of sending an email"
1688
  msgid "Sending email"
1689
  msgstr "Invio email"
1690
 
1691
+ #: templates/connect.php:806
1692
  msgctxt "as activating plugin"
1693
  msgid "Activating"
1694
  msgstr "Attivazione"
1716
  msgid "Debugging"
1717
  msgstr "Debugging"
1718
 
1719
+ #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1720
+ #: templates/debug.php:494
1721
  msgid "Actions"
1722
  msgstr "Azioni"
1723
 
1753
  msgid "Set DB Option"
1754
  msgstr "Imposta opzione del DB"
1755
 
1756
+ #: templates/debug.php:182
1757
  msgid "Key"
1758
  msgstr "Chiave"
1759
 
1760
+ #: templates/debug.php:183
1761
  msgid "Value"
1762
  msgstr "Valore"
1763
 
1764
+ #: templates/debug.php:199
1765
  msgctxt "as software development kit versions"
1766
  msgid "SDK Versions"
1767
  msgstr "Versioni SDK"
1768
 
1769
+ #: templates/debug.php:204
1770
  msgid "SDK Path"
1771
  msgstr "Percorso SDK"
1772
 
1773
+ #: templates/debug.php205, templates/debug.php:244
1774
  msgid "Module Path"
1775
  msgstr "Percorso modulo"
1776
 
1777
+ #: templates/debug.php:206
1778
  msgid "Is Active"
1779
  msgstr "è attiva"
1780
 
1781
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1782
  msgid "Plugins"
1783
  msgstr "Plugin"
1784
 
1785
+ #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1786
  msgid "Themes"
1787
  msgstr "Temi"
1788
 
1789
+ #: templates/debug.php239, templates/debug.php371, templates/debug.php453,
1790
  #: templates/debug/scheduled-crons.php:80
1791
  msgid "Slug"
1792
  msgstr "Slug"
1793
 
1794
+ #: templates/debug.php241, templates/debug.php:452
1795
  msgid "Title"
1796
  msgstr "Titolo"
1797
 
1798
+ #: templates/debug.php:242
1799
  msgctxt "as application program interface"
1800
  msgid "API"
1801
  msgstr "API"
1802
 
1803
+ #: templates/debug.php:243
1804
  msgid "Freemius State"
1805
  msgstr "Stato di Freemius"
1806
 
1807
+ #: templates/debug.php:247
1808
  msgid "Network Blog"
1809
  msgstr "Network Blog"
1810
 
1811
+ #: templates/debug.php:248
1812
  msgid "Network User"
1813
  msgstr "Utente Network"
1814
 
1815
+ #: templates/debug.php:285
1816
  msgctxt "as connection was successful"
1817
  msgid "Connected"
1818
  msgstr "Connesso"
1819
 
1820
+ #: templates/debug.php:286
1821
  msgctxt "as connection blocked"
1822
  msgid "Blocked"
1823
  msgstr "Bloccato"
1824
 
1825
+ #: templates/debug.php:322
1826
  msgid "Simulate Trial Promotion"
1827
  msgstr "Simulate Trial Promotion"
1828
 
1829
+ #: templates/debug.php:334
1830
  msgid "Simulate Network Upgrade"
1831
  msgstr "Simula aggiornamento network"
1832
 
1833
+ #: templates/debug.php:360
1834
  msgid "%s Installs"
1835
  msgstr "%s Installazioni"
1836
 
1837
+ #: templates/debug.php:362
1838
  msgctxt "like websites"
1839
  msgid "Sites"
1840
  msgstr "Siti"
1841
 
1842
+ #: templates/debug.php368, templates/account/partials/site.php:148
1843
  msgid "Blog ID"
1844
  msgstr "Blog ID"
1845
 
1846
+ #: templates/debug.php433, templates/debug.php511,
1847
+ #: templates/account/partials/addon.php:396
1848
  msgctxt "verb"
1849
  msgid "Delete"
1850
  msgstr "Elimina"
1851
 
1852
+ #: templates/debug.php:447
1853
  msgid "Add Ons of module %s"
1854
  msgstr "Addon del modulo %s"
1855
 
1856
+ #: templates/debug.php:484
1857
  msgid "Users"
1858
  msgstr "Utenti"
1859
 
1860
+ #: templates/debug.php:491
1861
  msgid "Verified"
1862
  msgstr "Verificato"
1863
 
1864
+ #: templates/debug.php:522
1865
  msgid "%s Licenses"
1866
  msgstr "%s Licenze"
1867
 
1868
+ #: templates/debug.php:527
1869
  msgid "Plugin ID"
1870
  msgstr "Plugin ID"
1871
 
1872
+ #: templates/debug.php:529
1873
  msgid "Plan ID"
1874
  msgstr "ID Piano"
1875
 
1876
+ #: templates/debug.php:530
1877
  msgid "Quota"
1878
  msgstr "Quota"
1879
 
1880
+ #: templates/debug.php:531
1881
  msgid "Activated"
1882
  msgstr "Attivato"
1883
 
1884
+ #: templates/debug.php:532
1885
  msgid "Blocking"
1886
  msgstr "Bloccato"
1887
 
1888
+ #: templates/debug.php:534
1889
  msgctxt "as expiration date"
1890
  msgid "Expiration"
1891
  msgstr "Scadenza"
1892
 
1893
+ #: templates/debug.php:557
1894
  msgid "Debug Log"
1895
  msgstr "Debug Log"
1896
 
1897
+ #: templates/debug.php:561
1898
  msgid "All Types"
1899
  msgstr "Tutti i tipi"
1900
 
1901
+ #: templates/debug.php:568
1902
  msgid "All Requests"
1903
  msgstr "Tutte le richieste"
1904
 
1905
+ #: templates/debug.php573, templates/debug.php602,
1906
  #: templates/debug/logger.php:25
1907
  msgid "File"
1908
  msgstr "File"
1909
 
1910
+ #: templates/debug.php574, templates/debug.php600,
1911
  #: templates/debug/logger.php:23
1912
  msgid "Function"
1913
  msgstr "Funzione"
1914
 
1915
+ #: templates/debug.php:575
1916
  msgid "Process ID"
1917
  msgstr "ID processo"
1918
 
1919
+ #: templates/debug.php:576
1920
  msgid "Logger"
1921
  msgstr "Logger"
1922
 
1923
+ #: templates/debug.php577, templates/debug.php601,
1924
  #: templates/debug/logger.php:24
1925
  msgid "Message"
1926
  msgstr "Messaggio"
1927
 
1928
+ #: templates/debug.php:579
1929
  msgid "Filter"
1930
  msgstr "Filtro"
1931
 
1932
+ #: templates/debug.php:587
1933
  msgid "Download"
1934
  msgstr "Download"
1935
 
1936
+ #: templates/debug.php598, templates/debug/logger.php:22
1937
  msgid "Type"
1938
  msgstr "Tipo"
1939
 
1940
+ #: templates/debug.php603, templates/debug/logger.php:26
1941
  msgid "Timestamp"
1942
  msgstr "Timestamp"
1943
 
1964
  msgid "Requests"
1965
  msgstr "Richieste"
1966
 
1967
+ #: templates/account/billing.php:22
1968
  msgctxt "verb"
1969
  msgid "Update"
1970
  msgstr "Aggiorna"
1971
 
1972
+ #: templates/account/billing.php:33
1973
  msgid "Billing"
1974
  msgstr "Fatturazione"
1975
 
1976
+ #: templates/account/billing.php38, templates/account/billing.php:38
1977
  msgid "Business name"
1978
  msgstr "Nome della compagnia"
1979
 
1980
+ #: templates/account/billing.php39, templates/account/billing.php:39
1981
  msgid "Tax / VAT ID"
1982
  msgstr "Numero Partita Iva o VAT"
1983
 
1984
+ #: templates/account/billing.php42, templates/account/billing.php42,
1985
+ #: templates/account/billing.php43, templates/account/billing.php:43
1986
  msgid "Address Line %d"
1987
  msgstr "Riga indirizzo %d"
1988
 
1989
+ #: templates/account/billing.php46, templates/account/billing.php:46
1990
  msgid "City"
1991
  msgstr "Città"
1992
 
1993
+ #: templates/account/billing.php46, templates/account/billing.php:46
1994
  msgid "Town"
1995
  msgstr "Cittadina"
1996
 
1997
+ #: templates/account/billing.php47, templates/account/billing.php:47
1998
  msgid "ZIP / Postal Code"
1999
  msgstr "CAP"
2000
 
2001
+ #: templates/account/billing.php:302
2002
  msgid "Country"
2003
  msgstr "Nazione"
2004
 
2005
+ #: templates/account/billing.php:304
2006
  msgid "Select Country"
2007
  msgstr "Seleziona Nazione"
2008
 
2009
+ #: templates/account/billing.php311, templates/account/billing.php:312
2010
  msgid "State"
2011
  msgstr "Stato"
2012
 
2013
+ #: templates/account/billing.php311, templates/account/billing.php:312
2014
  msgid "Province"
2015
  msgstr "Provincia"
2016
 
2262
  msgid "Become an affiliate"
2263
  msgstr "Diventa un affiliato"
2264
 
2265
+ #: templates/forms/license-activation.php:21
2266
  msgid "Please enter the license key that you received in the email right after the purchase:"
2267
  msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:"
2268
 
2269
+ #: templates/forms/license-activation.php:26
2270
  msgid "Update License"
2271
  msgstr "Aggiorna licenza"
2272
 
2333
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2334
  msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2335
 
2336
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2337
+ #. subscription'
2338
+ #: templates/forms/subscription-cancellation.php99,
2339
+ #: templates/account/partials/addon.php29,
2340
+ #: templates/account/partials/site.php:298
2341
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2342
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2343
+
2344
  #: templates/forms/subscription-cancellation.php:103
2345
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2346
  msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2354
  msgstr "Proceed"
2355
 
2356
  #: templates/forms/subscription-cancellation.php191,
2357
+ #: templates/forms/deactivation/form.php:171
2358
  msgid "Cancel %s & Proceed"
2359
  msgstr "Cancel %s & Proceed"
2360
 
2366
  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."
2367
  msgstr "Per essere accettato del regolamento WordPress.org, prima di attivare il periodo di prova devi accettare di condividere informazioni come il tuo utente e dati non sensibili. Permettendo a %s di inviare dati periodicamente a %s per verificare gli aggiornamenti e approvare il periodo di prova."
2368
 
2369
+ #: templates/js/style-premium-theme.php:39
2370
  msgid "Premium"
2371
  msgstr "Premium"
2372
 
2373
+ #: templates/js/style-premium-theme.php:42
2374
+ msgid "Beta"
2375
+ msgstr "Beta"
2376
+
2377
+ #: templates/partials/network-activation.php:27
2378
  msgid "Activate license on all sites in the network."
2379
  msgstr "Attiva la licenza su tutti i siti del network."
2380
 
2381
+ #: templates/partials/network-activation.php:28
2382
  msgid "Apply on all sites in the network."
2383
  msgstr "Applica su tutti i siti della rete."
2384
 
2385
+ #: templates/partials/network-activation.php:31
2386
  msgid "Activate license on all pending sites."
2387
  msgstr "Attiva le licenze su tutti i siti in attesa."
2388
 
2389
+ #: templates/partials/network-activation.php:32
2390
  msgid "Apply on all pending sites."
2391
  msgstr "Applica su tutti i siti in attesa."
2392
 
2393
+ #: templates/partials/network-activation.php40,
2394
+ #: templates/partials/network-activation.php:74
2395
  msgid "allow"
2396
  msgstr "permetti"
2397
 
2398
+ #: templates/partials/network-activation.php43,
2399
+ #: templates/partials/network-activation.php:77
2400
  msgid "delegate"
2401
  msgstr "delega"
2402
 
2403
+ #: templates/partials/network-activation.php47,
2404
+ #: templates/partials/network-activation.php:81
2405
  msgid "skip"
2406
  msgstr "salta"
2407
 
2427
  msgid "Last license"
2428
  msgstr "Ultima licenza"
2429
 
2430
+ #: templates/account/partials/addon.php:167
2431
  msgid "Cancelled"
2432
  msgstr "Annullato"
2433
 
2434
+ #: templates/account/partials/addon.php:177
2435
  msgid "No expiration"
2436
  msgstr "Nessuna scadenza"
2437
 
 
 
 
 
 
2438
  #: templates/account/partials/site.php:181
2439
  msgid "Owner Name"
2440
  msgstr "Nome proprietario"
2459
  msgid "Contact Support"
2460
  msgstr "Contatta il supporto"
2461
 
2462
+ #: templates/forms/deactivation/form.php:64
2463
  msgid "Anonymous feedback"
2464
  msgstr "Feedback anonimo"
2465
 
2466
+ #: templates/forms/deactivation/form.php:70
2467
  msgid "Deactivate"
2468
  msgstr "Disattiva"
2469
 
2470
+ #: templates/forms/deactivation/form.php:72
2471
  msgid "Activate %s"
2472
  msgstr "Attiva %s"
2473
 
2474
+ #: templates/forms/deactivation/form.php:87
2475
  msgid "Quick Feedback"
2476
  msgstr "Quick Feedback"
2477
 
2478
+ #: templates/forms/deactivation/form.php:91
2479
  msgid "If you have a moment, please let us know why you are %s"
2480
  msgstr "Se hai un attimo, facci sapere perché %s"
2481
 
2482
+ #: templates/forms/deactivation/form.php:91
2483
  msgid "deactivating"
2484
  msgstr "disattivazione in corso"
2485
 
2486
+ #: templates/forms/deactivation/form.php:91
2487
  msgid "switching"
2488
  msgstr "passa a"
2489
 
2490
+ #: templates/forms/deactivation/form.php:365
2491
  msgid "Submit & %s"
2492
  msgstr "Invia e %s"
2493
 
2494
+ #: templates/forms/deactivation/form.php:386
2495
  msgid "Kindly tell us the reason so we can improve."
2496
  msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
2497
 
2498
+ #: templates/forms/deactivation/form.php:511
2499
  msgid "Yes - %s"
2500
  msgstr "SI - %s"
2501
 
2502
+ #: templates/forms/deactivation/form.php:518
2503
  msgid "Skip & %s"
2504
  msgstr "Salta & %s"
2505
 
vendor/freemius/wordpress-sdk/languages/freemius-ja_JP.mo CHANGED
Binary file
vendor/freemius/wordpress-sdk/languages/freemius-ja_JP.po CHANGED
@@ -10,8 +10,8 @@ msgstr ""
10
  "Project-Id-Version: WordPress SDK\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "POT-Creation-Date: \n"
13
- "PO-Revision-Date: 2018-11-25 07:22+0000\n"
14
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
15
  "Language: ja_JP\n"
16
  "Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,772 +24,792 @@ msgstr ""
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
- #: includes/class-freemius.php:1688
 
 
 
 
 
 
 
 
28
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
29
  msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
30
 
31
- #: includes/class-freemius.php:1690
32
  msgid "Error"
33
  msgstr "エラー"
34
 
35
- #: includes/class-freemius.php:2011
36
  msgid "I found a better %s"
37
  msgstr "より良い %sを見つけました"
38
 
39
- #: includes/class-freemius.php:2013
40
  msgid "What's the %s's name?"
41
  msgstr "%sの名前は何ですか?"
42
 
43
- #: includes/class-freemius.php:2019
44
  msgid "It's a temporary %s. I'm just debugging an issue."
45
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
46
 
47
- #: includes/class-freemius.php:2021
48
  msgid "Deactivation"
49
  msgstr "無効化"
50
 
51
- #: includes/class-freemius.php:2022
52
  msgid "Theme Switch"
53
  msgstr "テーマ変更"
54
 
55
- #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
56
  msgid "Other"
57
  msgstr "その他"
58
 
59
- #: includes/class-freemius.php:2039
60
  msgid "I no longer need the %s"
61
  msgstr "%sはもう不要です"
62
 
63
- #: includes/class-freemius.php:2046
64
  msgid "I only needed the %s for a short period"
65
  msgstr "短期間だけ %sが 必要です。"
66
 
67
- #: includes/class-freemius.php:2052
68
  msgid "The %s broke my site"
69
  msgstr "%s の影響でサイトを崩れました"
70
 
71
- #: includes/class-freemius.php:2059
72
  msgid "The %s suddenly stopped working"
73
  msgstr "%s の動作が突然停止しました"
74
 
75
- #: includes/class-freemius.php:2069
76
  msgid "I can't pay for it anymore"
77
  msgstr "もう払うことができません"
78
 
79
- #: includes/class-freemius.php:2071
80
  msgid "What price would you feel comfortable paying?"
81
  msgstr " 支払ってもよいと思う価格はいくらですか?"
82
 
83
- #: includes/class-freemius.php:2077
84
  msgid "I don't like to share my information with you"
85
  msgstr "自分の情報を共有したくありません"
86
 
87
- #: includes/class-freemius.php:2098
88
  msgid "The %s didn't work"
89
  msgstr "%s が動作しませんでした"
90
 
91
- #: includes/class-freemius.php:2108
92
  msgid "I couldn't understand how to make it work"
93
  msgstr "どうしたら動作するか分かりませんでした。"
94
 
95
- #: includes/class-freemius.php:2116
96
  msgid "The %s is great, but I need specific feature that you don't support"
97
  msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
98
 
99
- #: includes/class-freemius.php:2118
100
  msgid "What feature?"
101
  msgstr "何の機能ですか?"
102
 
103
- #: includes/class-freemius.php:2122
104
  msgid "The %s is not working"
105
  msgstr "%s が動作していません"
106
 
107
- #: includes/class-freemius.php:2124
108
  msgid "Kindly share what didn't work so we can fix it for future users..."
109
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
110
 
111
- #: includes/class-freemius.php:2128
112
  msgid "It's not what I was looking for"
113
  msgstr "探していたものではありません"
114
 
115
- #: includes/class-freemius.php:2130
116
  msgid "What you've been looking for?"
117
  msgstr "探していたのは何ですか?"
118
 
119
- #: includes/class-freemius.php:2134
120
  msgid "The %s didn't work as expected"
121
  msgstr "%sが期待通りに動きませんでした "
122
 
123
- #: includes/class-freemius.php:2136
124
  msgid "What did you expect?"
125
  msgstr "何を期待していましたか?"
126
 
127
- #: includes/class-freemius.php2942, templates/debug.php:20
128
  msgid "Freemius Debug"
129
  msgstr "Freemius デバッグ"
130
 
131
- #: includes/class-freemius.php:3670
132
  msgid "I don't know what is cURL or how to install it, help me!"
133
  msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
134
 
135
- #: includes/class-freemius.php:3672
136
  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."
137
  msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
138
 
139
- #: includes/class-freemius.php:3679
140
  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."
141
  msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
142
 
143
- #: includes/class-freemius.php:3784
144
  msgid "Yes - do your thing"
145
  msgstr "はい - お構いなく"
146
 
147
- #: includes/class-freemius.php:3789
148
  msgid "No - just deactivate"
149
  msgstr "いいえ - すぐに無効化"
150
 
151
- #: includes/class-freemius.php3834, includes/class-freemius.php4343,
152
- #: includes/class-freemius.php5442, includes/class-freemius.php11545,
153
- #: includes/class-freemius.php14916, includes/class-freemius.php14968,
154
- #: includes/class-freemius.php15030, includes/class-freemius.php17263,
155
- #: includes/class-freemius.php17273, includes/class-freemius.php17882,
156
- #: includes/class-freemius.php18742, includes/class-freemius.php18857,
157
- #: includes/class-freemius.php19001, templates/add-ons.php:43
158
  msgctxt "exclamation"
159
  msgid "Oops"
160
  msgstr "おっと"
161
 
162
- #: includes/class-freemius.php:3903
163
  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."
164
  msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
165
 
166
- #: includes/class-freemius.php:4340
167
  msgctxt "addonX cannot run without pluginY"
168
  msgid "%s cannot run without %s."
169
  msgstr "%s は、%s が無いと実行することができません。"
170
 
171
- #: includes/class-freemius.php:4341
172
  msgctxt "addonX cannot run..."
173
  msgid "%s cannot run without the plugin."
174
  msgstr "%s は、プラグインが無いと実行することができません。"
175
 
176
- #: includes/class-freemius.php4487, includes/class-freemius.php4512,
177
- #: includes/class-freemius.php:17953
178
  msgid "Unexpected API error. Please contact the %s's author with the following error."
179
  msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
180
 
181
- #: includes/class-freemius.php:5130
182
  msgid "Premium %s version was successfully activated."
183
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
184
 
185
- #: includes/class-freemius.php5142, includes/class-freemius.php:7004
186
  msgctxt ""
187
  msgid "W00t"
188
  msgstr "やったー"
189
 
190
- #: includes/class-freemius.php:5157
191
  msgid "You have a %s license."
192
  msgstr "%s ライセンスを持っています。"
193
 
194
- #: includes/class-freemius.php5161, includes/class-freemius.php14337,
195
- #: includes/class-freemius.php14348, includes/class-freemius.php17177,
196
- #: includes/class-freemius.php17491, includes/class-freemius.php17557,
197
- #: includes/class-freemius.php:17707
198
  msgctxt "interjection expressing joy or exuberance"
199
  msgid "Yee-haw"
200
  msgstr "ヤッホー"
201
 
202
- #: includes/class-freemius.php:5425
203
  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."
204
  msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
205
 
206
- #: includes/class-freemius.php:5429
207
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
208
  msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
209
 
210
- #: includes/class-freemius.php5438, templates/add-ons.php103,
211
- #: templates/account/partials/addon.php:288
212
  msgid "More information about %s"
213
  msgstr "%s に関する詳細情報"
214
 
215
- #: includes/class-freemius.php:5439
216
  msgid "Purchase License"
217
  msgstr "ライセンスを購入"
218
 
219
- #: includes/class-freemius.php6372, templates/connect.php:163
220
  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."
221
  msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
222
 
223
- #: includes/class-freemius.php:6376
224
  msgid "start the trial"
225
  msgstr "トライアルを開始"
226
 
227
- #: includes/class-freemius.php6377, templates/connect.php:167
228
  msgid "complete the install"
229
  msgstr "インストールを完了"
230
 
231
- #: includes/class-freemius.php:6490
232
  msgid "You are just one step away - %s"
233
  msgstr "もうあとわずかです - %s"
234
 
235
- #: includes/class-freemius.php:6493
236
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
237
  msgid "Complete \"%s\" Activation Now"
238
  msgstr "すぐに \"%s\" 有効化を完了してください"
239
 
240
- #: includes/class-freemius.php:6571
241
  msgid "We made a few tweaks to the %s, %s"
242
  msgstr "プラグインを微調整します、 %s, %s"
243
 
244
- #: includes/class-freemius.php:6575
245
  msgid "Opt in to make \"%s\" better!"
246
  msgstr "Opt in to make \"%s\" better!"
247
 
248
- #: includes/class-freemius.php:7003
249
  msgid "The upgrade of %s was successfully completed."
250
  msgstr "%s のアップグレードが完了しました。"
251
 
252
- #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
253
- #: includes/class-fs-plugin-updater.php1081,
254
- #: includes/class-fs-plugin-updater.php1088,
255
  #: templates/auto-installation.php:32
256
  msgid "Add-On"
257
  msgstr "アドオン"
258
 
259
- #: includes/class-freemius.php8927, templates/debug.php359,
260
- #: templates/debug.php:520
261
  msgid "Plugin"
262
  msgstr "プラグイン"
263
 
264
- #: includes/class-freemius.php8928, templates/debug.php359,
265
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
 
266
  msgid "Theme"
267
  msgstr "テーマ"
268
 
269
- #: includes/class-freemius.php:11412
 
 
 
 
270
  msgid "Invalid site details collection."
271
  msgstr "Invalid site details collection."
272
 
273
- #: includes/class-freemius.php:11532
274
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
275
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
276
 
277
- #: includes/class-freemius.php:11534
278
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
279
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
280
 
281
- #: includes/class-freemius.php:11808
282
  msgid "Account is pending activation."
283
  msgstr "アカウントは有効化待ちです。"
284
 
285
- #: includes/class-freemius.php11920,
286
  #: templates/forms/premium-versions-upgrade-handler.php:47
287
  msgid "Buy a license now"
288
  msgstr "Buy a license now"
289
 
290
- #: includes/class-freemius.php11932,
291
  #: templates/forms/premium-versions-upgrade-handler.php:46
292
  msgid "Renew your license now"
293
  msgstr "Renew your license now"
294
 
295
- #: includes/class-freemius.php:11936
296
  msgid "%s to access version %s security & feature updates, and support."
297
  msgstr "%s to access version %s security & feature updates, and support."
298
 
299
- #: includes/class-freemius.php:14319
300
  msgid "%s activation was successfully completed."
301
  msgstr "%s の有効化が成功しました。"
302
 
303
- #: includes/class-freemius.php:14333
304
  msgid "Your account was successfully activated with the %s plan."
305
  msgstr "アカウントが %s プランで有効化できました。"
306
 
307
- #: includes/class-freemius.php14344, includes/class-freemius.php:17553
308
  msgid "Your trial has been successfully started."
309
  msgstr "トライアル版の利用を開始しました。"
310
 
311
- #: includes/class-freemius.php14914, includes/class-freemius.php14966,
312
- #: includes/class-freemius.php:15028
313
  msgid "Couldn't activate %s."
314
  msgstr "%s を有効化できません。"
315
 
316
- #: includes/class-freemius.php14915, includes/class-freemius.php14967,
317
- #: includes/class-freemius.php:15029
318
  msgid "Please contact us with the following message:"
319
  msgstr "以下のメッセージとともに私たちに連絡をください。"
320
 
321
- #: includes/class-freemius.php15378, includes/class-freemius.php:19839
 
 
 
 
322
  msgid "Upgrade"
323
  msgstr "アップグレード"
324
 
325
- #: includes/class-freemius.php:15384
326
  msgid "Start Trial"
327
  msgstr "トライアルを開始"
328
 
329
- #: includes/class-freemius.php:15386
330
  msgid "Pricing"
331
  msgstr "料金表"
332
 
333
- #: includes/class-freemius.php15448, includes/class-freemius.php:15450
334
  msgid "Affiliation"
335
  msgstr "アフィリエイト"
336
 
337
- #: includes/class-freemius.php15478, includes/class-freemius.php15480,
338
- #: templates/account.php150, templates/debug.php:324
339
  msgid "Account"
340
  msgstr "アカウント"
341
 
342
- #: includes/class-freemius.php15493, includes/class-freemius.php15495,
343
  #: includes/customizer/class-fs-customizer-support-section.php:60
344
  msgid "Contact Us"
345
  msgstr "連絡"
346
 
347
- #: includes/class-freemius.php15505, includes/class-freemius.php15507,
348
- #: includes/class-freemius.php19849, templates/account.php100,
349
- #: templates/account/partials/addon.php:41
350
  msgid "Add-Ons"
351
  msgstr "アドオン"
352
 
353
- #: includes/class-freemius.php:15541
354
  msgctxt "ASCII arrow left icon"
355
  msgid "&#x2190;"
356
  msgstr "&#x2190;"
357
 
358
- #: includes/class-freemius.php:15541
359
  msgctxt "ASCII arrow right icon"
360
  msgid "&#x27a4;"
361
  msgstr "&#x27a4;"
362
 
363
- #: includes/class-freemius.php15543, templates/pricing.php:97
364
  msgctxt "noun"
365
  msgid "Pricing"
366
  msgstr "料金表"
367
 
368
- #: includes/class-freemius.php15756,
369
  #: includes/customizer/class-fs-customizer-support-section.php:67
370
  msgid "Support Forum"
371
  msgstr "サポートフォーラム"
372
 
373
- #: includes/class-freemius.php:16542
374
  msgid "Your email has been successfully verified - you are AWESOME!"
375
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
376
 
377
- #: includes/class-freemius.php:16543
378
  msgctxt "a positive response"
379
  msgid "Right on"
380
  msgstr "そうだ"
381
 
382
- #: includes/class-freemius.php:17168
383
  msgid "Your %s Add-on plan was successfully upgraded."
384
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
385
 
386
- #: includes/class-freemius.php:17170
387
  msgid "%s Add-on was successfully purchased."
388
  msgstr "%s のアドオンの支払いが完了しました。"
389
 
390
- #: includes/class-freemius.php:17173
391
  msgid "Download the latest version"
392
  msgstr "最新版をダウンロード"
393
 
394
- #: includes/class-freemius.php:17259
395
- msgctxt "%1s - plugin title, %2s - API domain"
396
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
397
- msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
398
 
399
- #: includes/class-freemius.php17262, includes/class-freemius.php17678,
400
- #: includes/class-freemius.php:17755
401
  msgid "Error received from the server:"
402
  msgstr "サーバーからエラーを受信しました。"
403
 
404
- #: includes/class-freemius.php:17272
405
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
406
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
407
 
408
- #: includes/class-freemius.php17454, includes/class-freemius.php17683,
409
- #: includes/class-freemius.php17726, includes/class-freemius.php:17829
410
  msgctxt ""
411
  msgid "Hmm"
412
  msgstr "ふむ"
413
 
414
- #: includes/class-freemius.php:17467
415
  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."
416
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
417
 
418
- #: includes/class-freemius.php17468, templates/account.php102,
419
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
420
  msgctxt "trial period"
421
  msgid "Trial"
422
  msgstr "トライアル"
423
 
424
- #: includes/class-freemius.php:17473
425
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
426
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
427
 
428
- #: includes/class-freemius.php17477, includes/class-freemius.php:17535
429
  msgid "Please contact us here"
430
  msgstr "こちらで私たちに連絡をとってください。"
431
 
432
- #: includes/class-freemius.php:17487
 
 
 
 
433
  msgid "Your plan was successfully upgraded."
434
  msgstr "プランのアップグレードが成功しました。"
435
 
436
- #: includes/class-freemius.php:17505
437
  msgid "Your plan was successfully changed to %s."
438
  msgstr "プランの %s への変更が成功しました。"
439
 
440
- #: includes/class-freemius.php:17521
441
  msgid "Your license has expired. You can still continue using the free %s forever."
442
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
443
 
444
- #: includes/class-freemius.php:17523
445
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
446
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
447
 
448
- #: includes/class-freemius.php:17531
449
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
450
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
451
 
452
- #: includes/class-freemius.php:17544
453
  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."
454
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
455
 
456
- #: includes/class-freemius.php:17567
457
  msgid "Your free trial has expired. You can still continue using all our free features."
458
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
459
 
460
- #: includes/class-freemius.php:17569
461
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
462
  msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
463
 
464
- #: includes/class-freemius.php:17674
465
  msgid "It looks like the license could not be activated."
466
  msgstr "ライセンスの有効化ができませんでした。"
467
 
468
- #: includes/class-freemius.php:17704
469
  msgid "Your license was successfully activated."
470
  msgstr "ライセンスの有効化が成功しました。"
471
 
472
- #: includes/class-freemius.php:17730
473
  msgid "It looks like your site currently doesn't have an active license."
474
  msgstr "サイトは有効なライセンスを持っていないようです。"
475
 
476
- #: includes/class-freemius.php:17754
477
  msgid "It looks like the license deactivation failed."
478
  msgstr "ライセンスの無効化ができませんでした。"
479
 
480
- #: includes/class-freemius.php:17782
481
  msgid "Your license was successfully deactivated, you are back to the %s plan."
482
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
483
 
484
- #: includes/class-freemius.php:17783
485
  msgid "O.K"
486
  msgstr "O.K"
487
 
488
- #: includes/class-freemius.php:17836
489
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
490
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
491
 
492
- #: includes/class-freemius.php:17845
493
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
494
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
495
 
496
- #: includes/class-freemius.php:17887
497
  msgid "You are already running the %s in a trial mode."
498
  msgstr "すでに%sをトライアルモードで利用中です。"
499
 
500
- #: includes/class-freemius.php:17898
501
  msgid "You already utilized a trial before."
502
  msgstr "以前すでに試用版を利用しました。"
503
 
504
- #: includes/class-freemius.php:17912
505
  msgid "Plan %s do not exist, therefore, can't start a trial."
506
  msgstr "%s プランは存在しないため、試用を開始できません。"
507
 
508
- #: includes/class-freemius.php:17923
509
  msgid "Plan %s does not support a trial period."
510
  msgstr "%s プランにはトライアル期間はありません。"
511
 
512
- #: includes/class-freemius.php:17934
513
  msgid "None of the %s's plans supports a trial period."
514
  msgstr "%sのプランにはトライアル期間はありません。"
515
 
516
- #: includes/class-freemius.php:17984
517
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
518
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
519
 
520
- #: includes/class-freemius.php:18020
521
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
522
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
523
 
524
- #: includes/class-freemius.php:18039
525
  msgid "Your %s free trial was successfully cancelled."
526
  msgstr "%s のフリートライアルはキャンセルされました。"
527
 
528
- #: includes/class-freemius.php:18346
529
  msgid "Version %s was released."
530
  msgstr "バージョン %s をリリースしました。"
531
 
532
- #: includes/class-freemius.php:18346
533
  msgid "Please download %s."
534
  msgstr "%s をダウンロードしてください。"
535
 
536
- #: includes/class-freemius.php:18353
537
  msgid "the latest %s version here"
538
  msgstr "最新の %s バージョンはこちらです。"
539
 
540
- #: includes/class-freemius.php:18358
541
  msgid "New"
542
  msgstr "新規"
543
 
544
- #: includes/class-freemius.php:18363
545
  msgid "Seems like you got the latest release."
546
  msgstr "最新版を取得できました。"
547
 
548
- #: includes/class-freemius.php:18364
549
  msgid "You are all good!"
550
  msgstr "すべて完璧です!"
551
 
552
- #: includes/class-freemius.php:18632
553
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
554
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
555
 
556
- #: includes/class-freemius.php:18769
557
  msgid "Site successfully opted in."
558
  msgstr "サイトのオプトインに成功しました。"
559
 
560
- #: includes/class-freemius.php18770, includes/class-freemius.php:19581
561
  msgid "Awesome"
562
  msgstr "すごい!"
563
 
564
- #: includes/class-freemius.php18786, templates/forms/optout.php:32
565
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
566
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
567
 
568
- #: includes/class-freemius.php:18787
569
  msgid "Thank you!"
570
  msgstr "ありがとうございます!"
571
 
572
- #: includes/class-freemius.php:18794
573
  msgid "We will no longer be sending any usage data of %s on %s to %s."
574
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
575
 
576
- #: includes/class-freemius.php:18923
577
  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."
578
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
579
 
580
- #: includes/class-freemius.php:18929
581
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
582
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
583
 
584
- #: includes/class-freemius.php:18934
585
  msgid "%s is the new owner of the account."
586
  msgstr "%s は新しいオーナーです。"
587
 
588
- #: includes/class-freemius.php:18936
589
  msgctxt "as congratulations"
590
  msgid "Congrats"
591
  msgstr "おめでとう"
592
 
593
- #: includes/class-freemius.php:18956
594
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
595
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
596
 
597
- #: includes/class-freemius.php:18957
598
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
599
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
600
 
601
- #: includes/class-freemius.php:18964
602
  msgid "Change Ownership"
603
  msgstr "オーナーを変更"
604
 
605
- #: includes/class-freemius.php:18972
606
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
607
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
608
 
609
- #: includes/class-freemius.php:18984
610
  msgid "Please provide your full name."
611
  msgstr "フルネームを入力してください。"
612
 
613
- #: includes/class-freemius.php:18989
614
  msgid "Your name was successfully updated."
615
  msgstr "名前のアップデートが成功しました。"
616
 
617
- #: includes/class-freemius.php:19050
618
  msgid "You have successfully updated your %s."
619
  msgstr "%s のアップデートが成功しました。"
620
 
621
- #: includes/class-freemius.php:19190
622
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
623
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
624
 
625
- #: includes/class-freemius.php:19191
626
  msgctxt "advance notice of something that will need attention."
627
  msgid "Heads up"
628
  msgstr "警告"
629
 
630
- #: includes/class-freemius.php:19621
631
  msgctxt "exclamation"
632
  msgid "Hey"
633
  msgstr "ヘイ"
634
 
635
- #: includes/class-freemius.php:19621
636
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
637
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
638
 
639
- #: includes/class-freemius.php:19629
640
  msgid "No commitment for %s days - cancel anytime!"
641
  msgstr "%s 日以内であればいつでもキャンセルできます。"
642
 
643
- #: includes/class-freemius.php:19630
644
  msgid "No credit card required"
645
  msgstr "クレジットカードは必要ありません。"
646
 
647
- #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
648
  msgctxt "call to action"
649
  msgid "Start free trial"
650
  msgstr "フリートライアルを開始"
651
 
652
- #: includes/class-freemius.php:19714
653
  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!"
654
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
655
 
656
- #: includes/class-freemius.php:19723
657
  msgid "Learn more"
658
  msgstr "詳細はこちら"
659
 
660
- #: includes/class-freemius.php19873, templates/account.php406,
661
- #: templates/account.php509, templates/connect.php171,
662
- #: templates/connect.php421, templates/forms/license-activation.php24,
663
- #: templates/account/partials/addon.php:235
664
  msgid "Activate License"
665
  msgstr "ライセンスを有効化"
666
 
667
- #: includes/class-freemius.php19874, templates/account.php469,
668
- #: templates/account.php508, templates/account/partials/site.php:256
669
  msgid "Change License"
670
  msgstr "ライセンスを変更"
671
 
672
- #: includes/class-freemius.php19956, templates/account/partials/site.php:161
673
  msgid "Opt Out"
674
  msgstr "オプトアウト"
675
 
676
- #: includes/class-freemius.php19958, includes/class-freemius.php19963,
677
  #: templates/account/partials/site.php43,
678
  #: templates/account/partials/site.php:161
679
  msgid "Opt In"
680
  msgstr "オプトイン"
681
 
682
- #: includes/class-freemius.php:20187
683
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
684
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
685
 
686
- #: includes/class-freemius.php:20195
687
  msgid "Activate %s features"
688
  msgstr "Activate %s features"
689
 
690
- #: includes/class-freemius.php:20208
691
  msgid "Please follow these steps to complete the upgrade"
692
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
693
 
694
- #: includes/class-freemius.php:20212
695
  msgid "Download the latest %s version"
696
  msgstr "最新の %s をダウンロード"
697
 
698
- #: includes/class-freemius.php:20216
699
  msgid "Upload and activate the downloaded version"
700
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
701
 
702
- #: includes/class-freemius.php:20218
703
  msgid "How to upload and activate?"
704
  msgstr "アップロードと有効化の方法"
705
 
706
- #: includes/class-freemius.php:20352
707
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
708
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
709
 
710
- #: includes/class-freemius.php:20513
711
  msgid "Auto installation only works for opted-in users."
712
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
713
 
714
- #: includes/class-freemius.php20523, includes/class-freemius.php20556,
715
- #: includes/class-fs-plugin-updater.php1060,
716
- #: includes/class-fs-plugin-updater.php:1074
717
  msgid "Invalid module ID."
718
  msgstr "モジュール ID が不正です"
719
 
720
- #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
721
  msgid "Premium version already active."
722
  msgstr "プレミアムバージョンはすでに有効になっています。"
723
 
724
- #: includes/class-freemius.php:20539
725
  msgid "You do not have a valid license to access the premium version."
726
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
727
 
728
- #: includes/class-freemius.php:20546
729
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
730
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
731
 
732
- #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
733
  msgid "Premium add-on version already installed."
734
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
735
 
736
- #: includes/class-freemius.php:20909
737
  msgid "View paid features"
738
  msgstr "有料の機能を表示する"
739
 
740
- #: includes/class-freemius.php:21229
741
  msgid "Thank you so much for using %s and its add-ons!"
742
  msgstr "%sとアドオンのご利用ありがとうございます!"
743
 
744
- #: includes/class-freemius.php:21230
745
  msgid "Thank you so much for using %s!"
746
  msgstr "%sのご利用ありがとうございます!"
747
 
748
- #: includes/class-freemius.php:21236
749
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
750
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
751
 
752
- #: includes/class-freemius.php:21240
753
  msgid "Thank you so much for using our products!"
754
  msgstr "プロダクトのご利用ありがとうございます!"
755
 
756
- #: includes/class-freemius.php:21241
757
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
758
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
759
 
760
- #: includes/class-freemius.php:21260
761
  msgid "%s and its add-ons"
762
  msgstr "%sとそのアドオン"
763
 
764
- #: includes/class-freemius.php:21269
765
  msgid "Products"
766
  msgstr "プロダクト"
767
 
768
- #: includes/class-freemius.php21276, templates/connect.php:272
769
  msgid "Yes"
770
  msgstr "はい"
771
 
772
- #: includes/class-freemius.php21277, templates/connect.php:273
773
  msgid "send me security & feature updates, educational content and offers."
774
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
775
 
776
- #: includes/class-freemius.php21278, templates/connect.php:278
777
  msgid "No"
778
  msgstr "いいえ"
779
 
780
- #: includes/class-freemius.php21280, templates/connect.php:280
781
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
782
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
783
 
784
- #: includes/class-freemius.php:21290
785
- 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 🙂"
786
- msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂"
787
 
788
- #: includes/class-freemius.php21292, templates/connect.php:287
789
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
790
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
791
 
792
- #: includes/class-freemius.php:21574
793
  msgid "License key is empty."
794
  msgstr "ライセンスキーが空です。"
795
 
@@ -803,628 +823,680 @@ msgstr "ライセンスを更新"
803
  msgid "Buy license"
804
  msgstr "Buy license"
805
 
806
- #: includes/class-fs-plugin-updater.php:278
 
807
  msgid "There is a %s of %s available."
808
  msgstr "There is a %s of %s available."
809
 
810
- #: includes/class-fs-plugin-updater.php:282
 
 
 
 
 
 
811
  msgid "new version"
812
  msgstr "new version"
813
 
814
- #: includes/class-fs-plugin-updater.php:305
815
  msgid "Important Upgrade Notice:"
816
  msgstr "Important Upgrade Notice:"
817
 
818
- #: includes/class-fs-plugin-updater.php:1125
819
  msgid "Installing plugin: %s"
820
  msgstr "インストール中プラグイン: %s"
821
 
822
- #: includes/class-fs-plugin-updater.php:1166
823
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
824
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
825
 
826
- #: includes/class-fs-plugin-updater.php:1348
827
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
828
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
829
 
830
- #: includes/fs-plugin-info-dialog.php369,
831
- #: templates/account/partials/addon.php:292
 
 
 
 
832
  msgctxt "verb"
833
  msgid "Purchase"
834
  msgstr "購入"
835
 
836
- #: includes/fs-plugin-info-dialog.php:372
837
  msgid "Start my free %s"
838
  msgstr "無料の %s を開始"
839
 
840
- #: includes/fs-plugin-info-dialog.php:413
 
 
 
 
 
 
 
 
841
  msgid "Install Free Version Now"
842
  msgstr "フリーバージョンを今すぐインストール"
843
 
844
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
845
- #: templates/account/partials/addon.php272,
846
- #: templates/account/partials/addon.php:322
 
847
  msgid "Install Now"
848
  msgstr "今すぐインストール"
849
 
850
- #: includes/fs-plugin-info-dialog.php:425
851
  msgctxt "as download latest version"
852
  msgid "Download Latest Free Version"
853
  msgstr "最新のフリーバージョンをダウンロード"
854
 
855
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
856
- #: templates/account/partials/addon.php:21
857
  msgctxt "as download latest version"
858
  msgid "Download Latest"
859
  msgstr "最新版をダウンロード"
860
 
861
- #: includes/fs-plugin-info-dialog.php:436
862
- msgid "Install Free Version Update Now"
863
- msgstr "フリーバージョンの更新を今すぐインストール"
864
-
865
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
866
- msgid "Install Update Now"
867
- msgstr "今すぐ更新をインストール"
868
-
869
- #: includes/fs-plugin-info-dialog.php:448
870
- msgid "Newer Free Version (%s) Installed"
871
- msgstr "新しいフリーバージョン (%s) がインストールされました"
872
-
873
- #: includes/fs-plugin-info-dialog.php:449
874
- msgid "Newer Version (%s) Installed"
875
- msgstr "新しいバージョン (%s) がインストールされました"
876
 
877
- #: includes/fs-plugin-info-dialog.php:457
878
- msgid "Latest Free Version Installed"
879
- msgstr "最新のフリーバージョンがインストールされました"
880
 
881
- #: includes/fs-plugin-info-dialog.php:458
882
- msgid "Latest Version Installed"
883
- msgstr "最新版がイストールされました"
 
884
 
885
- #: includes/fs-plugin-info-dialog.php:613
886
  msgctxt "Plugin installer section title"
887
  msgid "Description"
888
  msgstr "説明"
889
 
890
- #: includes/fs-plugin-info-dialog.php:614
891
  msgctxt "Plugin installer section title"
892
  msgid "Installation"
893
  msgstr "インストール"
894
 
895
- #: includes/fs-plugin-info-dialog.php:615
896
  msgctxt "Plugin installer section title"
897
  msgid "FAQ"
898
  msgstr "FAQ"
899
 
900
- #: includes/fs-plugin-info-dialog.php616,
901
  #: templates/plugin-info/description.php:55
902
  msgid "Screenshots"
903
  msgstr "スクリーンショット"
904
 
905
- #: includes/fs-plugin-info-dialog.php:617
906
  msgctxt "Plugin installer section title"
907
  msgid "Changelog"
908
  msgstr "変更履歴"
909
 
910
- #: includes/fs-plugin-info-dialog.php:618
911
  msgctxt "Plugin installer section title"
912
  msgid "Reviews"
913
  msgstr "レビュー"
914
 
915
- #: includes/fs-plugin-info-dialog.php:619
916
  msgctxt "Plugin installer section title"
917
  msgid "Other Notes"
918
  msgstr "その他の記述"
919
 
920
- #: includes/fs-plugin-info-dialog.php:634
921
  msgctxt "Plugin installer section title"
922
  msgid "Features & Pricing"
923
  msgstr "機能 & 料金"
924
 
925
- #: includes/fs-plugin-info-dialog.php:644
926
  msgid "Plugin Install"
927
  msgstr "プラグインのインストール"
928
 
929
- #: includes/fs-plugin-info-dialog.php:716
930
  msgctxt "e.g. Professional Plan"
931
  msgid "%s Plan"
932
  msgstr "%s プラン"
933
 
934
- #: includes/fs-plugin-info-dialog.php:742
935
  msgctxt "e.g. the best product"
936
  msgid "Best"
937
  msgstr "ベスト"
938
 
939
- #: includes/fs-plugin-info-dialog.php748,
940
- #: includes/fs-plugin-info-dialog.php:768
941
  msgctxt "as every month"
942
  msgid "Monthly"
943
  msgstr "月"
944
 
945
- #: includes/fs-plugin-info-dialog.php:751
946
  msgctxt "as once a year"
947
  msgid "Annual"
948
  msgstr "年次"
949
 
950
- #: includes/fs-plugin-info-dialog.php:754
951
  msgid "Lifetime"
952
  msgstr "ライフタイム"
953
 
954
- #: includes/fs-plugin-info-dialog.php768,
955
- #: includes/fs-plugin-info-dialog.php770,
956
- #: includes/fs-plugin-info-dialog.php:772
957
  msgctxt "e.g. billed monthly"
958
  msgid "Billed %s"
959
  msgstr "%s への請求"
960
 
961
- #: includes/fs-plugin-info-dialog.php:770
962
  msgctxt "as once a year"
963
  msgid "Annually"
964
  msgstr "毎年"
965
 
966
- #: includes/fs-plugin-info-dialog.php:772
967
  msgctxt "as once a year"
968
  msgid "Once"
969
  msgstr "一度"
970
 
971
- #: includes/fs-plugin-info-dialog.php:778
972
  msgid "Single Site License"
973
  msgstr "シングルサイトライセンス"
974
 
975
- #: includes/fs-plugin-info-dialog.php:780
976
  msgid "Unlimited Licenses"
977
  msgstr "無制限ライセンス"
978
 
979
- #: includes/fs-plugin-info-dialog.php:782
980
  msgid "Up to %s Sites"
981
  msgstr "%sサイトまで"
982
 
983
- #: includes/fs-plugin-info-dialog.php792,
984
  #: templates/plugin-info/features.php:82
985
  msgctxt "as monthly period"
986
  msgid "mo"
987
  msgstr "月"
988
 
989
- #: includes/fs-plugin-info-dialog.php799,
990
  #: templates/plugin-info/features.php:80
991
  msgctxt "as annual period"
992
  msgid "year"
993
  msgstr "年"
994
 
995
- #: includes/fs-plugin-info-dialog.php:853
996
  msgctxt "noun"
997
  msgid "Price"
998
  msgstr "料金"
999
 
1000
- #: includes/fs-plugin-info-dialog.php:901
1001
  msgid "Save %s"
1002
  msgstr "%s を保存"
1003
 
1004
- #: includes/fs-plugin-info-dialog.php:911
1005
  msgid "No commitment for %s - cancel anytime"
1006
  msgstr "%s の拘束はありません。いつでもキャンセルできます。"
1007
 
1008
- #: includes/fs-plugin-info-dialog.php:914
1009
  msgid "After your free %s, pay as little as %s"
1010
  msgstr "無料の %s の後は、わずか %s だけお支払ください。"
1011
 
1012
- #: includes/fs-plugin-info-dialog.php:925
1013
  msgid "Details"
1014
  msgstr "詳細"
1015
 
1016
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1017
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1018
- #: templates/account/partials/addon.php:32
1019
  msgctxt "product version"
1020
  msgid "Version"
1021
  msgstr "バージョン"
1022
 
1023
- #: includes/fs-plugin-info-dialog.php:936
1024
  msgctxt "as the plugin author"
1025
  msgid "Author"
1026
  msgstr "作者"
1027
 
1028
- #: includes/fs-plugin-info-dialog.php:943
1029
  msgid "Last Updated"
1030
  msgstr "最終更新"
1031
 
1032
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1033
  msgctxt "x-ago"
1034
  msgid "%s ago"
1035
  msgstr "%s 前"
1036
 
1037
- #: includes/fs-plugin-info-dialog.php:957
1038
  msgid "Requires WordPress Version"
1039
  msgstr "必要な WordPress のバージョン"
1040
 
1041
- #: includes/fs-plugin-info-dialog.php:958
1042
  msgid "%s or higher"
1043
  msgstr "%sまたはそれ以上"
1044
 
1045
- #: includes/fs-plugin-info-dialog.php:965
1046
  msgid "Compatible up to"
1047
  msgstr "互換性のある最新バージョン"
1048
 
1049
- #: includes/fs-plugin-info-dialog.php:973
1050
  msgid "Downloaded"
1051
  msgstr "ダウンロード済み"
1052
 
1053
- #: includes/fs-plugin-info-dialog.php:977
1054
  msgid "%s time"
1055
  msgstr "%s回"
1056
 
1057
- #: includes/fs-plugin-info-dialog.php:979
1058
  msgid "%s times"
1059
  msgstr "%s回"
1060
 
1061
- #: includes/fs-plugin-info-dialog.php:989
1062
  msgid "WordPress.org Plugin Page"
1063
  msgstr "WordPress.org のプラグインページ"
1064
 
1065
- #: includes/fs-plugin-info-dialog.php:997
1066
  msgid "Plugin Homepage"
1067
  msgstr "プラグインのホームページ"
1068
 
1069
- #: includes/fs-plugin-info-dialog.php1005,
1070
- #: includes/fs-plugin-info-dialog.php:1087
1071
  msgid "Donate to this plugin"
1072
  msgstr "このプラグインに寄付する"
1073
 
1074
- #: includes/fs-plugin-info-dialog.php:1012
1075
  msgid "Average Rating"
1076
  msgstr "レーティングの平均"
1077
 
1078
- #: includes/fs-plugin-info-dialog.php:1019
1079
  msgid "based on %s"
1080
  msgstr "%sを基に"
1081
 
1082
- #: includes/fs-plugin-info-dialog.php:1023
1083
  msgid "%s rating"
1084
  msgstr "%s評価"
1085
 
1086
- #: includes/fs-plugin-info-dialog.php:1025
1087
  msgid "%s ratings"
1088
  msgstr "%s評価"
1089
 
1090
- #: includes/fs-plugin-info-dialog.php:1040
1091
  msgid "%s star"
1092
  msgstr "%sスター"
1093
 
1094
- #: includes/fs-plugin-info-dialog.php:1042
1095
  msgid "%s stars"
1096
  msgstr "%sスター"
1097
 
1098
- #: includes/fs-plugin-info-dialog.php:1053
1099
  msgid "Click to see reviews that provided a rating of %s"
1100
  msgstr "クリックして%sの評価をしているレビューを観る"
1101
 
1102
- #: includes/fs-plugin-info-dialog.php:1066
1103
  msgid "Contributors"
1104
  msgstr "コントリビューター"
1105
 
1106
- #: includes/fs-plugin-info-dialog.php1095,
1107
- #: includes/fs-plugin-info-dialog.php:1097
1108
  msgid "Warning"
1109
  msgstr "警告"
1110
 
1111
- #: includes/fs-plugin-info-dialog.php:1095
1112
  msgid "This plugin has not been tested with your current version of WordPress."
1113
  msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。"
1114
 
1115
- #: includes/fs-plugin-info-dialog.php:1097
1116
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1117
  msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。"
1118
 
1119
- #: includes/fs-plugin-info-dialog.php:1116
1120
  msgid "Paid add-on must be deployed to Freemius."
1121
  msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
1122
 
1123
- #: includes/fs-plugin-info-dialog.php:1117
1124
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1125
  msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
1126
 
1127
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1128
- #: templates/account/partials/addon.php22,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1129
  #: templates/account/partials/site.php:295
1130
  msgid "Downgrading your plan"
1131
  msgstr "Downgrading your plan"
1132
 
1133
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1134
- #: templates/account/partials/addon.php23,
1135
  #: templates/account/partials/site.php:296
1136
  msgid "Cancelling the subscription"
1137
  msgstr "Cancelling the subscription"
1138
 
1139
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1140
  #. subscription'
1141
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1142
- #: templates/account/partials/addon.php25,
1143
- #: templates/account/partials/site.php:298
1144
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1145
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1146
 
1147
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1148
- #: templates/account/partials/addon.php26,
1149
  #: templates/account/partials/site.php:299
1150
  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."
1151
  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."
1152
 
1153
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1154
- #: templates/account/partials/addon.php:27
1155
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1156
  msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
1157
 
1158
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1159
- #: templates/account/partials/addon.php28,
1160
  #: templates/account/partials/site.php:300
1161
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1162
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1163
 
1164
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1165
- #: templates/account/partials/addon.php29,
1166
  #: templates/account/partials/site.php:301
1167
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1168
  msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。"
1169
 
1170
  #. translators: %s: Plan title (e.g. "Professional")
1171
- #: templates/account.php90,
1172
  #: templates/account/partials/activate-license-button.php31,
1173
- #: templates/account/partials/addon.php:31
1174
  msgid "Activate %s Plan"
1175
  msgstr "%s プランを有効化"
1176
 
1177
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1178
- #: templates/account.php93, templates/account/partials/addon.php34,
1179
  #: templates/account/partials/site.php:275
1180
  msgid "Auto renews in %s"
1181
  msgstr "%s に自動更新"
1182
 
1183
  #. translators: %s: Time period (e.g. Expires in "2 months")
1184
- #: templates/account.php95, templates/account/partials/addon.php36,
1185
  #: templates/account/partials/site.php:277
1186
  msgid "Expires in %s"
1187
  msgstr "%s で期間終了"
1188
 
1189
- #: templates/account.php96, templates/account/partials/addon.php:37
1190
  msgctxt "as synchronize license"
1191
  msgid "Sync License"
1192
  msgstr "ライセンスを同期"
1193
 
1194
- #: templates/account.php97, templates/account/partials/addon.php:38
1195
  msgid "Cancel Trial"
1196
  msgstr "トライアルをキャンセル"
1197
 
1198
- #: templates/account.php98, templates/account/partials/addon.php:39
1199
  msgid "Change Plan"
1200
  msgstr "プラン変更"
1201
 
1202
- #: templates/account.php99, templates/account/partials/addon.php:40
1203
  msgctxt "verb"
1204
  msgid "Upgrade"
1205
  msgstr "アップグレード"
1206
 
1207
- #: templates/account.php101, templates/account/partials/addon.php42,
1208
  #: templates/account/partials/site.php:302
1209
  msgctxt "verb"
1210
  msgid "Downgrade"
1211
  msgstr "ダウングレード"
1212
 
1213
- #: templates/account.php103, templates/add-ons.php130,
1214
  #: templates/plugin-info/features.php72,
1215
- #: templates/account/partials/addon.php44,
1216
  #: templates/account/partials/site.php:31
1217
  msgid "Free"
1218
  msgstr "無料"
1219
 
1220
- #: templates/account.php104, templates/account/partials/addon.php:45
1221
- msgid "Activate"
1222
- msgstr "有効化"
1223
-
1224
- #: templates/account.php105, templates/debug.php371,
1225
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1226
- #: templates/account/partials/addon.php:46
1227
  msgctxt "as product pricing plan"
1228
  msgid "Plan"
1229
  msgstr "プラン"
1230
 
1231
- #: templates/account.php:158
 
 
 
 
1232
  msgid "Free Trial"
1233
  msgstr "フリートライアル"
1234
 
1235
- #: templates/account.php:169
1236
  msgid "Account Details"
1237
  msgstr "アカウント詳細"
1238
 
1239
- #: templates/account.php:179
 
 
 
 
1240
  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?"
1241
  msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1242
 
1243
- #: templates/account.php:181
1244
  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?"
1245
  msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
1246
 
1247
- #: templates/account.php:184
1248
  msgid "Delete Account"
1249
  msgstr "アカウントを削除"
1250
 
1251
- #: templates/account.php196, templates/account/partials/addon.php159,
1252
  #: templates/account/partials/deactivate-license-button.php:35
1253
  msgid "Deactivate License"
1254
  msgstr "ライセンスを無効化"
1255
 
1256
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1257
  msgid "Are you sure you want to proceed?"
1258
  msgstr "本当に続行していいですか?"
1259
 
1260
- #: templates/account.php219, templates/account/partials/addon.php:182
1261
  msgid "Cancel Subscription"
1262
  msgstr "サブスクリプションをキャンセルする"
1263
 
1264
- #: templates/account.php:247
1265
  msgctxt "as synchronize"
1266
  msgid "Sync"
1267
  msgstr "同期"
1268
 
1269
- #: templates/account.php261, templates/debug.php:487
1270
  msgid "Name"
1271
  msgstr "名前"
1272
 
1273
- #: templates/account.php267, templates/debug.php:488
1274
  msgid "Email"
1275
  msgstr "Email"
1276
 
1277
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1278
  msgid "User ID"
1279
  msgstr "ユーザー ID"
1280
 
1281
- #: templates/account.php:282
 
 
 
 
 
 
 
 
1282
  msgid "Site ID"
1283
  msgstr "サイト ID"
1284
 
1285
- #: templates/account.php:285
1286
  msgid "No ID"
1287
  msgstr "ID がありません"
1288
 
1289
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1290
- #: templates/debug.php453, templates/debug.php490,
1291
  #: templates/account/partials/site.php:219
1292
  msgid "Public Key"
1293
  msgstr "公開鍵"
1294
 
1295
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1296
- #: templates/debug.php491, templates/account/partials/site.php:231
1297
  msgid "Secret Key"
1298
  msgstr "秘密鍵"
1299
 
1300
- #: templates/account.php:299
1301
  msgctxt "as secret encryption key missing"
1302
  msgid "No Secret"
1303
  msgstr "秘密鍵がありません"
1304
 
1305
- #: templates/account.php318, templates/account/partials/site.php112,
1306
  #: templates/account/partials/site.php:114
1307
  msgid "Trial"
1308
  msgstr "トライアル"
1309
 
1310
- #: templates/account.php337, templates/debug.php531,
1311
  #: templates/account/partials/site.php:248
1312
  msgid "License Key"
1313
  msgstr "ライセンスキー"
1314
 
1315
- #: templates/account.php:367
 
 
 
 
1316
  msgid "not verified"
1317
  msgstr "未認証"
1318
 
1319
- #: templates/account.php376, templates/account/partials/addon.php:120
1320
  msgid "Expired"
1321
  msgstr "期限切れ"
1322
 
1323
- #: templates/account.php:428
1324
  msgid "Premium version"
1325
  msgstr "プレミアムバージョン"
1326
 
1327
- #: templates/account.php:430
1328
  msgid "Free version"
1329
  msgstr "フリーバージョン"
1330
 
1331
- #: templates/account.php:442
1332
  msgid "Verify Email"
1333
  msgstr "認証メール"
1334
 
1335
- #: templates/account.php:453
1336
  msgid "Download %s Version"
1337
  msgstr "%s バージョンをダウンロード"
1338
 
1339
- #: templates/account.php467, templates/account.php649,
1340
  #: templates/account/partials/site.php237,
1341
  #: templates/account/partials/site.php:255
1342
  msgctxt "verb"
1343
  msgid "Show"
1344
  msgstr "表示"
1345
 
1346
- #: templates/account.php:481
1347
  msgid "What is your %s?"
1348
  msgstr "自分の %s はなんですか?"
1349
 
1350
- #: templates/account.php489, templates/account/billing.php:27
1351
  msgctxt "verb"
1352
  msgid "Edit"
1353
  msgstr "編集"
1354
 
1355
- #: templates/account.php:502
1356
  msgid "Sites"
1357
  msgstr "サイト数"
1358
 
1359
- #: templates/account.php:513
1360
  msgid "Search by address"
1361
  msgstr "住所で検索する"
1362
 
1363
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1364
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1365
- #: templates/debug.php524, templates/debug.php597,
1366
- #: templates/account/payments.php35, templates/debug/logger.php:21
1367
- msgid "ID"
1368
- msgstr "ID"
1369
-
1370
- #: templates/account.php523, templates/debug.php:367
10
  "Project-Id-Version: WordPress SDK\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "POT-Creation-Date: \n"
13
+ "PO-Revision-Date: 2019-06-05 13:40+0000\n"
14
+ "Last-Translator: Odyssey <8bitodyssey+github@gmail.com>\n"
15
  "Language: ja_JP\n"
16
  "Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
+ #: includes/class-freemius.php1838, templates/account.php:769
28
+ 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."
29
+ 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."
30
+
31
+ #: includes/class-freemius.php:1845
32
+ msgid "Would you like to proceed with the update?"
33
+ msgstr "Would you like to proceed with the update?"
34
+
35
+ #: includes/class-freemius.php:2053
36
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
37
  msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
38
 
39
+ #: includes/class-freemius.php:2055
40
  msgid "Error"
41
  msgstr "エラー"
42
 
43
+ #: includes/class-freemius.php:2445
44
  msgid "I found a better %s"
45
  msgstr "より良い %sを見つけました"
46
 
47
+ #: includes/class-freemius.php:2447
48
  msgid "What's the %s's name?"
49
  msgstr "%sの名前は何ですか?"
50
 
51
+ #: includes/class-freemius.php:2453
52
  msgid "It's a temporary %s. I'm just debugging an issue."
53
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
54
 
55
+ #: includes/class-freemius.php:2455
56
  msgid "Deactivation"
57
  msgstr "無効化"
58
 
59
+ #: includes/class-freemius.php:2456
60
  msgid "Theme Switch"
61
  msgstr "テーマ変更"
62
 
63
+ #: includes/class-freemius.php2465, templates/forms/resend-key.php:24
64
  msgid "Other"
65
  msgstr "その他"
66
 
67
+ #: includes/class-freemius.php:2473
68
  msgid "I no longer need the %s"
69
  msgstr "%sはもう不要です"
70
 
71
+ #: includes/class-freemius.php:2480
72
  msgid "I only needed the %s for a short period"
73
  msgstr "短期間だけ %sが 必要です。"
74
 
75
+ #: includes/class-freemius.php:2486
76
  msgid "The %s broke my site"
77
  msgstr "%s の影響でサイトを崩れました"
78
 
79
+ #: includes/class-freemius.php:2493
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s の動作が突然停止しました"
82
 
83
+ #: includes/class-freemius.php:2503
84
  msgid "I can't pay for it anymore"
85
  msgstr "もう払うことができません"
86
 
87
+ #: includes/class-freemius.php:2505
88
  msgid "What price would you feel comfortable paying?"
89
  msgstr " 支払ってもよいと思う価格はいくらですか?"
90
 
91
+ #: includes/class-freemius.php:2511
92
  msgid "I don't like to share my information with you"
93
  msgstr "自分の情報を共有したくありません"
94
 
95
+ #: includes/class-freemius.php:2532
96
  msgid "The %s didn't work"
97
  msgstr "%s が動作しませんでした"
98
 
99
+ #: includes/class-freemius.php:2542
100
  msgid "I couldn't understand how to make it work"
101
  msgstr "どうしたら動作するか分かりませんでした。"
102
 
103
+ #: includes/class-freemius.php:2550
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:2552
108
  msgid "What feature?"
109
  msgstr "何の機能ですか?"
110
 
111
+ #: includes/class-freemius.php:2556
112
  msgid "The %s is not working"
113
  msgstr "%s が動作していません"
114
 
115
+ #: includes/class-freemius.php:2558
116
  msgid "Kindly share what didn't work so we can fix it for future users..."
117
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
118
 
119
+ #: includes/class-freemius.php:2562
120
  msgid "It's not what I was looking for"
121
  msgstr "探していたものではありません"
122
 
123
+ #: includes/class-freemius.php:2564
124
  msgid "What you've been looking for?"
125
  msgstr "探していたのは何ですか?"
126
 
127
+ #: includes/class-freemius.php:2568
128
  msgid "The %s didn't work as expected"
129
  msgstr "%sが期待通りに動きませんでした "
130
 
131
+ #: includes/class-freemius.php:2570
132
  msgid "What did you expect?"
133
  msgstr "何を期待していましたか?"
134
 
135
+ #: includes/class-freemius.php3425, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius デバッグ"
138
 
139
+ #: includes/class-freemius.php:4177
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:4179
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:4186
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:4291
152
  msgid "Yes - do your thing"
153
  msgstr "はい - お構いなく"
154
 
155
+ #: includes/class-freemius.php:4296
156
  msgid "No - just deactivate"
157
  msgstr "いいえ - すぐに無効化"
158
 
159
+ #: includes/class-freemius.php4341, includes/class-freemius.php4850,
160
+ #: includes/class-freemius.php5999, includes/class-freemius.php12682,
161
+ #: includes/class-freemius.php16045, includes/class-freemius.php16133,
162
+ #: includes/class-freemius.php16299, includes/class-freemius.php18758,
163
+ #: includes/class-freemius.php18768, includes/class-freemius.php19404,
164
+ #: includes/class-freemius.php20277, includes/class-freemius.php20392,
165
+ #: includes/class-freemius.php20536, templates/add-ons.php:54
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "おっと"
169
 
170
+ #: includes/class-freemius.php:4410
171
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
172
  msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
173
 
174
+ #: includes/class-freemius.php:4847
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s は、%s が無いと実行することができません。"
178
 
179
+ #: includes/class-freemius.php:4848
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "%s は、プラグインが無いと実行することができません。"
183
 
184
+ #: includes/class-freemius.php5020, includes/class-freemius.php5045,
185
+ #: includes/class-freemius.php:19475
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
188
 
189
+ #: includes/class-freemius.php:5687
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
192
 
193
+ #: includes/class-freemius.php5699, includes/class-freemius.php:7567
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "やったー"
197
 
198
+ #: includes/class-freemius.php:5714
199
  msgid "You have a %s license."
200
  msgstr "%s ライセンスを持っています。"
201
 
202
+ #: includes/class-freemius.php5718, includes/class-freemius.php15466,
203
+ #: includes/class-freemius.php15477, includes/class-freemius.php18669,
204
+ #: includes/class-freemius.php18999, includes/class-freemius.php19065,
205
+ #: includes/class-freemius.php:19229
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "ヤッホー"
209
 
210
+ #: includes/class-freemius.php:5982
211
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
212
  msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
213
 
214
+ #: includes/class-freemius.php:5986
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
217
 
218
+ #: includes/class-freemius.php5995, templates/add-ons.php130,
219
+ #: templates/account/partials/addon.php:343
220
  msgid "More information about %s"
221
  msgstr "%s に関する詳細情報"
222
 
223
+ #: includes/class-freemius.php:5996
224
  msgid "Purchase License"
225
  msgstr "ライセンスを購入"
226
 
227
+ #: includes/class-freemius.php6931, templates/connect.php:163
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
230
 
231
+ #: includes/class-freemius.php:6935
232
  msgid "start the trial"
233
  msgstr "トライアルを開始"
234
 
235
+ #: includes/class-freemius.php6936, templates/connect.php:167
236
  msgid "complete the install"
237
  msgstr "インストールを完了"
238
 
239
+ #: includes/class-freemius.php:7049
240
  msgid "You are just one step away - %s"
241
  msgstr "もうあとわずかです - %s"
242
 
243
+ #: includes/class-freemius.php:7052
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:7130
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "プラグインを微調整します、 %s, %s"
251
 
252
+ #: includes/class-freemius.php:7134
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt in to make \"%s\" better!"
255
 
256
+ #: includes/class-freemius.php:7566
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "%s のアップグレードが完了しました。"
259
 
260
+ #: includes/class-freemius.php9728, includes/class-fs-plugin-updater.php975,
261
+ #: includes/class-fs-plugin-updater.php1170,
262
+ #: includes/class-fs-plugin-updater.php1177,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "アドオン"
266
 
267
+ #: includes/class-freemius.php9730, templates/account.php313,
268
+ #: templates/account.php321, templates/debug.php361, templates/debug.php:522
269
  msgid "Plugin"
270
  msgstr "プラグイン"
271
 
272
+ #: includes/class-freemius.php9731, templates/account.php314,
273
+ #: templates/account.php322, templates/debug.php361, templates/debug.php522,
274
+ #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "テーマ"
277
 
278
+ #: includes/class-freemius.php:12148
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:12549
283
  msgid "Invalid site details collection."
284
  msgstr "Invalid site details collection."
285
 
286
+ #: includes/class-freemius.php:12669
287
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
288
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
289
 
290
+ #: includes/class-freemius.php:12671
291
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
292
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
293
 
294
+ #: includes/class-freemius.php:12945
295
  msgid "Account is pending activation."
296
  msgstr "アカウントは有効化待ちです。"
297
 
298
+ #: includes/class-freemius.php13057,
299
  #: templates/forms/premium-versions-upgrade-handler.php:47
300
  msgid "Buy a license now"
301
  msgstr "Buy a license now"
302
 
303
+ #: includes/class-freemius.php13069,
304
  #: templates/forms/premium-versions-upgrade-handler.php:46
305
  msgid "Renew your license now"
306
  msgstr "Renew your license now"
307
 
308
+ #: includes/class-freemius.php:13073
309
  msgid "%s to access version %s security & feature updates, and support."
310
  msgstr "%s to access version %s security & feature updates, and support."
311
 
312
+ #: includes/class-freemius.php:15448
313
  msgid "%s activation was successfully completed."
314
  msgstr "%s の有効化が成功しました。"
315
 
316
+ #: includes/class-freemius.php:15462
317
  msgid "Your account was successfully activated with the %s plan."
318
  msgstr "アカウントが %s プランで有効化できました。"
319
 
320
+ #: includes/class-freemius.php15473, includes/class-freemius.php:19061
321
  msgid "Your trial has been successfully started."
322
  msgstr "トライアル版の利用を開始しました。"
323
 
324
+ #: includes/class-freemius.php16043, includes/class-freemius.php16131,
325
+ #: includes/class-freemius.php:16297
326
  msgid "Couldn't activate %s."
327
  msgstr "%s を有効化できません。"
328
 
329
+ #: includes/class-freemius.php16044, includes/class-freemius.php16132,
330
+ #: includes/class-freemius.php:16298
331
  msgid "Please contact us with the following message:"
332
  msgstr "以下のメッセージとともに私たちに連絡をください。"
333
 
334
+ #: includes/class-freemius.php:16128
335
+ msgid "An unknown error has occurred."
336
+ msgstr "An unknown error has occurred."
337
+
338
+ #: includes/class-freemius.php16655, includes/class-freemius.php:21409
339
  msgid "Upgrade"
340
  msgstr "アップグレード"
341
 
342
+ #: includes/class-freemius.php:16661
343
  msgid "Start Trial"
344
  msgstr "トライアルを開始"
345
 
346
+ #: includes/class-freemius.php:16663
347
  msgid "Pricing"
348
  msgstr "料金表"
349
 
350
+ #: includes/class-freemius.php16742, includes/class-freemius.php:16744
351
  msgid "Affiliation"
352
  msgstr "アフィリエイト"
353
 
354
+ #: includes/class-freemius.php16772, includes/class-freemius.php16774,
355
+ #: templates/account.php177, templates/debug.php:326
356
  msgid "Account"
357
  msgstr "アカウント"
358
 
359
+ #: includes/class-freemius.php16787, includes/class-freemius.php16789,
360
  #: includes/customizer/class-fs-customizer-support-section.php:60
361
  msgid "Contact Us"
362
  msgstr "連絡"
363
 
364
+ #: includes/class-freemius.php16799, includes/class-freemius.php16801,
365
+ #: includes/class-freemius.php21423, templates/account.php105,
366
+ #: templates/account/partials/addon.php:45
367
  msgid "Add-Ons"
368
  msgstr "アドオン"
369
 
370
+ #: includes/class-freemius.php:16835
371
  msgctxt "ASCII arrow left icon"
372
  msgid "&#x2190;"
373
  msgstr "&#x2190;"
374
 
375
+ #: includes/class-freemius.php:16835
376
  msgctxt "ASCII arrow right icon"
377
  msgid "&#x27a4;"
378
  msgstr "&#x27a4;"
379
 
380
+ #: includes/class-freemius.php16837, templates/pricing.php:102
381
  msgctxt "noun"
382
  msgid "Pricing"
383
  msgstr "料金表"
384
 
385
+ #: includes/class-freemius.php17050,
386
  #: includes/customizer/class-fs-customizer-support-section.php:67
387
  msgid "Support Forum"
388
  msgstr "サポートフォーラム"
389
 
390
+ #: includes/class-freemius.php:17995
391
  msgid "Your email has been successfully verified - you are AWESOME!"
392
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
393
 
394
+ #: includes/class-freemius.php:17996
395
  msgctxt "a positive response"
396
  msgid "Right on"
397
  msgstr "そうだ"
398
 
399
+ #: includes/class-freemius.php:18660
400
  msgid "Your %s Add-on plan was successfully upgraded."
401
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
402
 
403
+ #: includes/class-freemius.php:18662
404
  msgid "%s Add-on was successfully purchased."
405
  msgstr "%s のアドオンの支払いが完了しました。"
406
 
407
+ #: includes/class-freemius.php:18665
408
  msgid "Download the latest version"
409
  msgstr "最新版をダウンロード"
410
 
411
+ #: includes/class-freemius.php:18751
412
+ 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"
413
+ 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"
 
414
 
415
+ #: includes/class-freemius.php18757, includes/class-freemius.php19188,
416
+ #: includes/class-freemius.php:19277
417
  msgid "Error received from the server:"
418
  msgstr "サーバーからエラーを受信しました。"
419
 
420
+ #: includes/class-freemius.php:18767
421
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
422
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
423
 
424
+ #: includes/class-freemius.php18961, includes/class-freemius.php19193,
425
+ #: includes/class-freemius.php19248, includes/class-freemius.php:19351
426
  msgctxt ""
427
  msgid "Hmm"
428
  msgstr "ふむ"
429
 
430
+ #: includes/class-freemius.php:18974
431
  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."
432
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
433
 
434
+ #: includes/class-freemius.php18975, templates/account.php107,
435
+ #: templates/add-ons.php191, templates/account/partials/addon.php:47
436
  msgctxt "trial period"
437
  msgid "Trial"
438
  msgstr "トライアル"
439
 
440
+ #: includes/class-freemius.php:18980
441
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
442
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
443
 
444
+ #: includes/class-freemius.php18984, includes/class-freemius.php:19043
445
  msgid "Please contact us here"
446
  msgstr "こちらで私たちに連絡をとってください。"
447
 
448
+ #: includes/class-freemius.php:18995
449
+ msgid "Your plan was successfully activated."
450
+ msgstr "Your plan was successfully activated."
451
+
452
+ #: includes/class-freemius.php:18996
453
  msgid "Your plan was successfully upgraded."
454
  msgstr "プランのアップグレードが成功しました。"
455
 
456
+ #: includes/class-freemius.php:19013
457
  msgid "Your plan was successfully changed to %s."
458
  msgstr "プランの %s への変更が成功しました。"
459
 
460
+ #: includes/class-freemius.php:19029
461
  msgid "Your license has expired. You can still continue using the free %s forever."
462
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
463
 
464
+ #: includes/class-freemius.php:19031
465
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
466
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
467
 
468
+ #: includes/class-freemius.php:19039
469
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
470
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
471
 
472
+ #: includes/class-freemius.php:19052
473
  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."
474
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
475
 
476
+ #: includes/class-freemius.php:19075
477
  msgid "Your free trial has expired. You can still continue using all our free features."
478
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
479
 
480
+ #: includes/class-freemius.php:19077
481
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
482
  msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
483
 
484
+ #: includes/class-freemius.php:19184
485
  msgid "It looks like the license could not be activated."
486
  msgstr "ライセンスの有効化ができませんでした。"
487
 
488
+ #: includes/class-freemius.php:19226
489
  msgid "Your license was successfully activated."
490
  msgstr "ライセンスの有効化が成功しました。"
491
 
492
+ #: includes/class-freemius.php:19252
493
  msgid "It looks like your site currently doesn't have an active license."
494
  msgstr "サイトは有効なライセンスを持っていないようです。"
495
 
496
+ #: includes/class-freemius.php:19276
497
  msgid "It looks like the license deactivation failed."
498
  msgstr "ライセンスの無効化ができませんでした。"
499
 
500
+ #: includes/class-freemius.php:19304
501
  msgid "Your license was successfully deactivated, you are back to the %s plan."
502
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
503
 
504
+ #: includes/class-freemius.php:19305
505
  msgid "O.K"
506
  msgstr "O.K"
507
 
508
+ #: includes/class-freemius.php:19358
509
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
510
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
511
 
512
+ #: includes/class-freemius.php:19367
513
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
514
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
515
 
516
+ #: includes/class-freemius.php:19409
517
  msgid "You are already running the %s in a trial mode."
518
  msgstr "すでに%sをトライアルモードで利用中です。"
519
 
520
+ #: includes/class-freemius.php:19420
521
  msgid "You already utilized a trial before."
522
  msgstr "以前すでに試用版を利用しました。"
523
 
524
+ #: includes/class-freemius.php:19434
525
  msgid "Plan %s do not exist, therefore, can't start a trial."
526
  msgstr "%s プランは存在しないため、試用を開始できません。"
527
 
528
+ #: includes/class-freemius.php:19445
529
  msgid "Plan %s does not support a trial period."
530
  msgstr "%s プランにはトライアル期間はありません。"
531
 
532
+ #: includes/class-freemius.php:19456
533
  msgid "None of the %s's plans supports a trial period."
534
  msgstr "%sのプランにはトライアル期間はありません。"
535
 
536
+ #: includes/class-freemius.php:19506
537
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
538
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
539
 
540
+ #: includes/class-freemius.php:19542
541
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
542
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
543
 
544
+ #: includes/class-freemius.php:19561
545
  msgid "Your %s free trial was successfully cancelled."
546
  msgstr "%s のフリートライアルはキャンセルされました。"
547
 
548
+ #: includes/class-freemius.php:19877
549
  msgid "Version %s was released."
550
  msgstr "バージョン %s をリリースしました。"
551
 
552
+ #: includes/class-freemius.php:19877
553
  msgid "Please download %s."
554
  msgstr "%s をダウンロードしてください。"
555
 
556
+ #: includes/class-freemius.php:19884
557
  msgid "the latest %s version here"
558
  msgstr "最新の %s バージョンはこちらです。"
559
 
560
+ #: includes/class-freemius.php:19889
561
  msgid "New"
562
  msgstr "新規"
563
 
564
+ #: includes/class-freemius.php:19894
565
  msgid "Seems like you got the latest release."
566
  msgstr "最新版を取得できました。"
567
 
568
+ #: includes/class-freemius.php:19895
569
  msgid "You are all good!"
570
  msgstr "すべて完璧です!"
571
 
572
+ #: includes/class-freemius.php:20165
573
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
574
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
575
 
576
+ #: includes/class-freemius.php:20304
577
  msgid "Site successfully opted in."
578
  msgstr "サイトのオプトインに成功しました。"
579
 
580
+ #: includes/class-freemius.php20305, includes/class-freemius.php:21125
581
  msgid "Awesome"
582
  msgstr "すごい!"
583
 
584
+ #: includes/class-freemius.php20321, templates/forms/optout.php:32
585
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
586
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
587
 
588
+ #: includes/class-freemius.php:20322
589
  msgid "Thank you!"
590
  msgstr "ありがとうございます!"
591
 
592
+ #: includes/class-freemius.php:20329
593
  msgid "We will no longer be sending any usage data of %s on %s to %s."
594
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
595
 
596
+ #: includes/class-freemius.php:20458
597
  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."
598
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
599
 
600
+ #: includes/class-freemius.php:20464
601
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
602
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
603
 
604
+ #: includes/class-freemius.php:20469
605
  msgid "%s is the new owner of the account."
606
  msgstr "%s は新しいオーナーです。"
607
 
608
+ #: includes/class-freemius.php:20471
609
  msgctxt "as congratulations"
610
  msgid "Congrats"
611
  msgstr "おめでとう"
612
 
613
+ #: includes/class-freemius.php:20491
614
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
615
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
616
 
617
+ #: includes/class-freemius.php:20492
618
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
619
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
620
 
621
+ #: includes/class-freemius.php:20499
622
  msgid "Change Ownership"
623
  msgstr "オーナーを変更"
624
 
625
+ #: includes/class-freemius.php:20507
626
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
627
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
628
 
629
+ #: includes/class-freemius.php:20519
630
  msgid "Please provide your full name."
631
  msgstr "フルネームを入力してください。"
632
 
633
+ #: includes/class-freemius.php:20524
634
  msgid "Your name was successfully updated."
635
  msgstr "名前のアップデートが成功しました。"
636
 
637
+ #: includes/class-freemius.php:20585
638
  msgid "You have successfully updated your %s."
639
  msgstr "%s のアップデートが成功しました。"
640
 
641
+ #: includes/class-freemius.php:20725
642
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
643
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
644
 
645
+ #: includes/class-freemius.php:20726
646
  msgctxt "advance notice of something that will need attention."
647
  msgid "Heads up"
648
  msgstr "警告"
649
 
650
+ #: includes/class-freemius.php:21165
651
  msgctxt "exclamation"
652
  msgid "Hey"
653
  msgstr "ヘイ"
654
 
655
+ #: includes/class-freemius.php:21165
656
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
657
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
658
 
659
+ #: includes/class-freemius.php:21173
660
  msgid "No commitment for %s days - cancel anytime!"
661
  msgstr "%s 日以内であればいつでもキャンセルできます。"
662
 
663
+ #: includes/class-freemius.php:21174
664
  msgid "No credit card required"
665
  msgstr "クレジットカードは必要ありません。"
666
 
667
+ #: includes/class-freemius.php21181, templates/forms/trial-start.php:53
668
  msgctxt "call to action"
669
  msgid "Start free trial"
670
  msgstr "フリートライアルを開始"
671
 
672
+ #: includes/class-freemius.php:21258
673
  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!"
674
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
675
 
676
+ #: includes/class-freemius.php:21267
677
  msgid "Learn more"
678
  msgstr "詳細はこちら"
679
 
680
+ #: includes/class-freemius.php21447, templates/account.php474,
681
+ #: templates/account.php595, templates/connect.php171,
682
+ #: templates/connect.php421, templates/forms/license-activation.php25,
683
+ #: templates/account/partials/addon.php:287
684
  msgid "Activate License"
685
  msgstr "ライセンスを有効化"
686
 
687
+ #: includes/class-freemius.php21448, templates/account.php543,
688
+ #: templates/account.php594, templates/account/partials/site.php:256
689
  msgid "Change License"
690
  msgstr "ライセンスを変更"
691
 
692
+ #: includes/class-freemius.php21539, templates/account/partials/site.php:161
693
  msgid "Opt Out"
694
  msgstr "オプトアウト"
695
 
696
+ #: includes/class-freemius.php21541, includes/class-freemius.php21547,
697
  #: templates/account/partials/site.php43,
698
  #: templates/account/partials/site.php:161
699
  msgid "Opt In"
700
  msgstr "オプトイン"
701
 
702
+ #: includes/class-freemius.php:21775
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:21783
707
  msgid "Activate %s features"
708
  msgstr "Activate %s features"
709
 
710
+ #: includes/class-freemius.php:21796
711
  msgid "Please follow these steps to complete the upgrade"
712
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
713
 
714
+ #: includes/class-freemius.php:21800
715
  msgid "Download the latest %s version"
716
  msgstr "最新の %s をダウンロード"
717
 
718
+ #: includes/class-freemius.php:21804
719
  msgid "Upload and activate the downloaded version"
720
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
721
 
722
+ #: includes/class-freemius.php:21806
723
  msgid "How to upload and activate?"
724
  msgstr "アップロードと有効化の方法"
725
 
726
+ #: includes/class-freemius.php:21940
727
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
728
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
729
 
730
+ #: includes/class-freemius.php:22101
731
  msgid "Auto installation only works for opted-in users."
732
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
733
 
734
+ #: includes/class-freemius.php22111, includes/class-freemius.php22144,
735
+ #: includes/class-fs-plugin-updater.php1149,
736
+ #: includes/class-fs-plugin-updater.php:1163
737
  msgid "Invalid module ID."
738
  msgstr "モジュール ID が不正です"
739
 
740
+ #: includes/class-freemius.php22120, includes/class-fs-plugin-updater.php:1185
741
  msgid "Premium version already active."
742
  msgstr "プレミアムバージョンはすでに有効になっています。"
743
 
744
+ #: includes/class-freemius.php:22127
745
  msgid "You do not have a valid license to access the premium version."
746
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
747
 
748
+ #: includes/class-freemius.php:22134
749
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
750
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
751
 
752
+ #: includes/class-freemius.php22152, includes/class-fs-plugin-updater.php:1184
753
  msgid "Premium add-on version already installed."
754
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
755
 
756
+ #: includes/class-freemius.php:22497
757
  msgid "View paid features"
758
  msgstr "有料の機能を表示する"
759
 
760
+ #: includes/class-freemius.php:22819
761
  msgid "Thank you so much for using %s and its add-ons!"
762
  msgstr "%sとアドオンのご利用ありがとうございます!"
763
 
764
+ #: includes/class-freemius.php:22820
765
  msgid "Thank you so much for using %s!"
766
  msgstr "%sのご利用ありがとうございます!"
767
 
768
+ #: includes/class-freemius.php:22826
769
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
770
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
771
 
772
+ #: includes/class-freemius.php:22830
773
  msgid "Thank you so much for using our products!"
774
  msgstr "プロダクトのご利用ありがとうございます!"
775
 
776
+ #: includes/class-freemius.php:22831
777
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
778
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
779
 
780
+ #: includes/class-freemius.php:22850
781
  msgid "%s and its add-ons"
782
  msgstr "%sとそのアドオン"
783
 
784
+ #: includes/class-freemius.php:22859
785
  msgid "Products"
786
  msgstr "プロダクト"
787
 
788
+ #: includes/class-freemius.php22866, templates/connect.php:272
789
  msgid "Yes"
790
  msgstr "はい"
791
 
792
+ #: includes/class-freemius.php22867, templates/connect.php:273
793
  msgid "send me security & feature updates, educational content and offers."
794
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
795
 
796
+ #: includes/class-freemius.php22868, templates/connect.php:278
797
  msgid "No"
798
  msgstr "いいえ"
799
 
800
+ #: includes/class-freemius.php22870, templates/connect.php:280
801
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
802
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
803
 
804
+ #: includes/class-freemius.php:22880
805
+ 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 :-)"
806
+ 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 :-)"
807
 
808
+ #: includes/class-freemius.php22882, templates/connect.php:287
809
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
810
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
811
 
812
+ #: includes/class-freemius.php:23164
813
  msgid "License key is empty."
814
  msgstr "ライセンスキーが空です。"
815
 
823
  msgid "Buy license"
824
  msgstr "Buy license"
825
 
826
+ #: includes/class-fs-plugin-updater.php280,
827
+ #: includes/class-fs-plugin-updater.php:313
828
  msgid "There is a %s of %s available."
829
  msgstr "There is a %s of %s available."
830
 
831
+ #: includes/class-fs-plugin-updater.php282,
832
+ #: includes/class-fs-plugin-updater.php:318
833
+ msgid "new Beta version"
834
+ msgstr "new Beta version"
835
+
836
+ #: includes/class-fs-plugin-updater.php283,
837
+ #: includes/class-fs-plugin-updater.php:319
838
  msgid "new version"
839
  msgstr "new version"
840
 
841
+ #: includes/class-fs-plugin-updater.php:342
842
  msgid "Important Upgrade Notice:"
843
  msgstr "Important Upgrade Notice:"
844
 
845
+ #: includes/class-fs-plugin-updater.php:1214
846
  msgid "Installing plugin: %s"
847
  msgstr "インストール中プラグイン: %s"
848
 
849
+ #: includes/class-fs-plugin-updater.php:1255
850
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
851
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
852
 
853
+ #: includes/class-fs-plugin-updater.php:1437
854
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
855
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
856
 
857
+ #: includes/fs-plugin-info-dialog.php:509
858
+ msgid "Purchase More"
859
+ msgstr "Purchase More"
860
+
861
+ #: includes/fs-plugin-info-dialog.php510,
862
+ #: templates/account/partials/addon.php:347
863
  msgctxt "verb"
864
  msgid "Purchase"
865
  msgstr "購入"
866
 
867
+ #: includes/fs-plugin-info-dialog.php:514
868
  msgid "Start my free %s"
869
  msgstr "無料の %s を開始"
870
 
871
+ #: includes/fs-plugin-info-dialog.php:712
872
+ msgid "Install Free Version Update Now"
873
+ msgstr "フリーバージョンの更新を今すぐインストール"
874
+
875
+ #: includes/fs-plugin-info-dialog.php713, templates/account.php:534
876
+ msgid "Install Update Now"
877
+ msgstr "今すぐ更新をインストール"
878
+
879
+ #: includes/fs-plugin-info-dialog.php:722
880
  msgid "Install Free Version Now"
881
  msgstr "フリーバージョンを今すぐインストール"
882
 
883
+ #: includes/fs-plugin-info-dialog.php723, templates/add-ons.php262,
884
+ #: templates/auto-installation.php111,
885
+ #: templates/account/partials/addon.php327,
886
+ #: templates/account/partials/addon.php:379
887
  msgid "Install Now"
888
  msgstr "今すぐインストール"
889
 
890
+ #: includes/fs-plugin-info-dialog.php:739
891
  msgctxt "as download latest version"
892
  msgid "Download Latest Free Version"
893
  msgstr "最新のフリーバージョンをダウンロード"
894
 
895
+ #: includes/fs-plugin-info-dialog.php740, templates/account.php85,
896
+ #: templates/add-ons.php34, templates/account/partials/addon.php:25
897
  msgctxt "as download latest version"
898
  msgid "Download Latest"
899
  msgstr "最新版をダウンロード"
900
 
901
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php268,
902
+ #: templates/account/partials/addon.php318,
903
+ #: templates/account/partials/addon.php:373
904
+ msgid "Activate this add-on"
905
+ msgstr "このアドオンを有効化"
 
 
 
 
 
 
 
 
 
 
906
 
907
+ #: includes/fs-plugin-info-dialog.php757, templates/connect.php:418
908
+ msgid "Activate Free Version"
909
+ msgstr "フリーバージョンを有効化"
910
 
911
+ #: includes/fs-plugin-info-dialog.php758, templates/account.php109,
912
+ #: templates/add-ons.php269, templates/account/partials/addon.php:49
913
+ msgid "Activate"
914
+ msgstr "有効化"
915
 
916
+ #: includes/fs-plugin-info-dialog.php:968
917
  msgctxt "Plugin installer section title"
918
  msgid "Description"
919
  msgstr "説明"
920
 
921
+ #: includes/fs-plugin-info-dialog.php:969
922
  msgctxt "Plugin installer section title"
923
  msgid "Installation"
924
  msgstr "インストール"
925
 
926
+ #: includes/fs-plugin-info-dialog.php:970
927
  msgctxt "Plugin installer section title"
928
  msgid "FAQ"
929
  msgstr "FAQ"
930
 
931
+ #: includes/fs-plugin-info-dialog.php971,
932
  #: templates/plugin-info/description.php:55
933
  msgid "Screenshots"
934
  msgstr "スクリーンショット"
935
 
936
+ #: includes/fs-plugin-info-dialog.php:972
937
  msgctxt "Plugin installer section title"
938
  msgid "Changelog"
939
  msgstr "変更履歴"
940
 
941
+ #: includes/fs-plugin-info-dialog.php:973
942
  msgctxt "Plugin installer section title"
943
  msgid "Reviews"
944
  msgstr "レビュー"
945
 
946
+ #: includes/fs-plugin-info-dialog.php:974
947
  msgctxt "Plugin installer section title"
948
  msgid "Other Notes"
949
  msgstr "その他の記述"
950
 
951
+ #: includes/fs-plugin-info-dialog.php:989
952
  msgctxt "Plugin installer section title"
953
  msgid "Features & Pricing"
954
  msgstr "機能 & 料金"
955
 
956
+ #: includes/fs-plugin-info-dialog.php:999
957
  msgid "Plugin Install"
958
  msgstr "プラグインのインストール"
959
 
960
+ #: includes/fs-plugin-info-dialog.php:1071
961
  msgctxt "e.g. Professional Plan"
962
  msgid "%s Plan"
963
  msgstr "%s プラン"
964
 
965
+ #: includes/fs-plugin-info-dialog.php:1097
966
  msgctxt "e.g. the best product"
967
  msgid "Best"
968
  msgstr "ベスト"
969
 
970
+ #: includes/fs-plugin-info-dialog.php1103,
971
+ #: includes/fs-plugin-info-dialog.php:1123
972
  msgctxt "as every month"
973
  msgid "Monthly"
974
  msgstr "月"
975
 
976
+ #: includes/fs-plugin-info-dialog.php:1106
977
  msgctxt "as once a year"
978
  msgid "Annual"
979
  msgstr "年次"
980
 
981
+ #: includes/fs-plugin-info-dialog.php:1109
982
  msgid "Lifetime"
983
  msgstr "ライフタイム"
984
 
985
+ #: includes/fs-plugin-info-dialog.php1123,
986
+ #: includes/fs-plugin-info-dialog.php1125,
987
+ #: includes/fs-plugin-info-dialog.php:1127
988
  msgctxt "e.g. billed monthly"
989
  msgid "Billed %s"
990
  msgstr "%s への請求"
991
 
992
+ #: includes/fs-plugin-info-dialog.php:1125
993
  msgctxt "as once a year"
994
  msgid "Annually"
995
  msgstr "毎年"
996
 
997
+ #: includes/fs-plugin-info-dialog.php:1127
998
  msgctxt "as once a year"
999
  msgid "Once"
1000
  msgstr "一度"
1001
 
1002
+ #: includes/fs-plugin-info-dialog.php:1133
1003
  msgid "Single Site License"
1004
  msgstr "シングルサイトライセンス"
1005
 
1006
+ #: includes/fs-plugin-info-dialog.php:1135
1007
  msgid "Unlimited Licenses"
1008
  msgstr "無制限ライセンス"
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php:1137
1011
  msgid "Up to %s Sites"
1012
  msgstr "%sサイトまで"
1013
 
1014
+ #: includes/fs-plugin-info-dialog.php1147,
1015
  #: templates/plugin-info/features.php:82
1016
  msgctxt "as monthly period"
1017
  msgid "mo"
1018
  msgstr "月"
1019
 
1020
+ #: includes/fs-plugin-info-dialog.php1154,
1021
  #: templates/plugin-info/features.php:80
1022
  msgctxt "as annual period"
1023
  msgid "year"
1024
  msgstr "年"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php:1208
1027
  msgctxt "noun"
1028
  msgid "Price"
1029
  msgstr "料金"
1030
 
1031
+ #: includes/fs-plugin-info-dialog.php:1256
1032
  msgid "Save %s"
1033
  msgstr "%s を保存"
1034
 
1035
+ #: includes/fs-plugin-info-dialog.php:1266
1036
  msgid "No commitment for %s - cancel anytime"
1037
  msgstr "%s の拘束はありません。いつでもキャンセルできます。"
1038
 
1039
+ #: includes/fs-plugin-info-dialog.php:1269
1040
  msgid "After your free %s, pay as little as %s"
1041
  msgstr "無料の %s の後は、わずか %s だけお支払ください。"
1042
 
1043
+ #: includes/fs-plugin-info-dialog.php:1280
1044
  msgid "Details"
1045
  msgstr "詳細"
1046
 
1047
+ #: includes/fs-plugin-info-dialog.php1284, templates/account.php96,
1048
+ #: templates/debug.php203, templates/debug.php240, templates/debug.php454,
1049
+ #: templates/account/partials/addon.php:36
1050
  msgctxt "product version"
1051
  msgid "Version"
1052
  msgstr "バージョン"
1053
 
1054
+ #: includes/fs-plugin-info-dialog.php:1291
1055
  msgctxt "as the plugin author"
1056
  msgid "Author"
1057
  msgstr "作者"
1058
 
1059
+ #: includes/fs-plugin-info-dialog.php:1298
1060
  msgid "Last Updated"
1061
  msgstr "最終更新"
1062
 
1063
+ #: includes/fs-plugin-info-dialog.php1303, templates/account.php:444
1064
  msgctxt "x-ago"
1065
  msgid "%s ago"
1066
  msgstr "%s 前"
1067
 
1068
+ #: includes/fs-plugin-info-dialog.php:1312
1069
  msgid "Requires WordPress Version"
1070
  msgstr "必要な WordPress のバージョン"
1071
 
1072
+ #: includes/fs-plugin-info-dialog.php:1313
1073
  msgid "%s or higher"
1074
  msgstr "%sまたはそれ以上"
1075
 
1076
+ #: includes/fs-plugin-info-dialog.php:1320
1077
  msgid "Compatible up to"
1078
  msgstr "互換性のある最新バージョン"
1079
 
1080
+ #: includes/fs-plugin-info-dialog.php:1328
1081
  msgid "Downloaded"
1082
  msgstr "ダウンロード済み"
1083
 
1084
+ #: includes/fs-plugin-info-dialog.php:1332
1085
  msgid "%s time"
1086
  msgstr "%s回"
1087
 
1088
+ #: includes/fs-plugin-info-dialog.php:1334
1089
  msgid "%s times"
1090
  msgstr "%s回"
1091
 
1092
+ #: includes/fs-plugin-info-dialog.php:1344
1093
  msgid "WordPress.org Plugin Page"
1094
  msgstr "WordPress.org のプラグインページ"
1095
 
1096
+ #: includes/fs-plugin-info-dialog.php:1352
1097
  msgid "Plugin Homepage"
1098
  msgstr "プラグインのホームページ"
1099
 
1100
+ #: includes/fs-plugin-info-dialog.php1360,
1101
+ #: includes/fs-plugin-info-dialog.php:1442
1102
  msgid "Donate to this plugin"
1103
  msgstr "このプラグインに寄付する"
1104
 
1105
+ #: includes/fs-plugin-info-dialog.php:1367
1106
  msgid "Average Rating"
1107
  msgstr "レーティングの平均"
1108
 
1109
+ #: includes/fs-plugin-info-dialog.php:1374
1110
  msgid "based on %s"
1111
  msgstr "%sを基に"
1112
 
1113
+ #: includes/fs-plugin-info-dialog.php:1378
1114
  msgid "%s rating"
1115
  msgstr "%s評価"
1116
 
1117
+ #: includes/fs-plugin-info-dialog.php:1380
1118
  msgid "%s ratings"
1119
  msgstr "%s評価"
1120
 
1121
+ #: includes/fs-plugin-info-dialog.php:1395
1122
  msgid "%s star"
1123
  msgstr "%sスター"
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php:1397
1126
  msgid "%s stars"
1127
  msgstr "%sスター"
1128
 
1129
+ #: includes/fs-plugin-info-dialog.php:1408
1130
  msgid "Click to see reviews that provided a rating of %s"
1131
  msgstr "クリックして%sの評価をしているレビューを観る"
1132
 
1133
+ #: includes/fs-plugin-info-dialog.php:1421
1134
  msgid "Contributors"
1135
  msgstr "コントリビューター"
1136
 
1137
+ #: includes/fs-plugin-info-dialog.php1450,
1138
+ #: includes/fs-plugin-info-dialog.php:1452
1139
  msgid "Warning"
1140
  msgstr "警告"
1141
 
1142
+ #: includes/fs-plugin-info-dialog.php:1450
1143
  msgid "This plugin has not been tested with your current version of WordPress."
1144
  msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。"
1145
 
1146
+ #: includes/fs-plugin-info-dialog.php:1452
1147
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1148
  msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。"
1149
 
1150
+ #: includes/fs-plugin-info-dialog.php:1471
1151
  msgid "Paid add-on must be deployed to Freemius."
1152
  msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
1153
 
1154
+ #: includes/fs-plugin-info-dialog.php:1472
1155
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1156
  msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
1157
 
1158
+ #: includes/fs-plugin-info-dialog.php:1493
1159
+ msgid "Newer Version (%s) Installed"
1160
+ msgstr "新しいバージョン (%s) がインストールされました"
1161
+
1162
+ #: includes/fs-plugin-info-dialog.php:1494
1163
+ msgid "Newer Free Version (%s) Installed"
1164
+ msgstr "新しいフリーバージョン (%s) がインストールされました"
1165
+
1166
+ #: includes/fs-plugin-info-dialog.php:1501
1167
+ msgid "Latest Version Installed"
1168
+ msgstr "最新版がイストールされました"
1169
+
1170
+ #: includes/fs-plugin-info-dialog.php:1502
1171
+ msgid "Latest Free Version Installed"
1172
+ msgstr "最新のフリーバージョンがインストールされました"
1173
+
1174
+ #: templates/account.php86, templates/forms/subscription-cancellation.php96,
1175
+ #: templates/account/partials/addon.php26,
1176
  #: templates/account/partials/site.php:295
1177
  msgid "Downgrading your plan"
1178
  msgstr "Downgrading your plan"
1179
 
1180
+ #: templates/account.php87, templates/forms/subscription-cancellation.php97,
1181
+ #: templates/account/partials/addon.php27,
1182
  #: templates/account/partials/site.php:296
1183
  msgid "Cancelling the subscription"
1184
  msgstr "Cancelling the subscription"
1185
 
1186
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1187
  #. subscription'
1188
+ #: templates/account.php:89
1189
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1190
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
 
 
1191
 
1192
+ #: templates/account.php90, templates/forms/subscription-cancellation.php100,
1193
+ #: templates/account/partials/addon.php30,
1194
  #: templates/account/partials/site.php:299
1195
  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."
1196
  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."
1197
 
1198
+ #: templates/account.php91, templates/forms/subscription-cancellation.php106,
1199
+ #: templates/account/partials/addon.php:31
1200
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1201
  msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
1202
 
1203
+ #: templates/account.php92, templates/forms/subscription-cancellation.php101,
1204
+ #: templates/account/partials/addon.php32,
1205
  #: templates/account/partials/site.php:300
1206
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1207
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1208
 
1209
+ #: templates/account.php93, templates/forms/subscription-cancellation.php102,
1210
+ #: templates/account/partials/addon.php33,
1211
  #: templates/account/partials/site.php:301
1212
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1213
  msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。"
1214
 
1215
  #. translators: %s: Plan title (e.g. "Professional")
1216
+ #: templates/account.php95,
1217
  #: templates/account/partials/activate-license-button.php31,
1218
+ #: templates/account/partials/addon.php:35
1219
  msgid "Activate %s Plan"
1220
  msgstr "%s プランを有効化"
1221
 
1222
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1223
+ #: templates/account.php98, templates/account/partials/addon.php38,
1224
  #: templates/account/partials/site.php:275
1225
  msgid "Auto renews in %s"
1226
  msgstr "%s に自動更新"
1227
 
1228
  #. translators: %s: Time period (e.g. Expires in "2 months")
1229
+ #: templates/account.php100, templates/account/partials/addon.php40,
1230
  #: templates/account/partials/site.php:277
1231
  msgid "Expires in %s"
1232
  msgstr "%s で期間終了"
1233
 
1234
+ #: templates/account.php101, templates/account/partials/addon.php:41
1235
  msgctxt "as synchronize license"
1236
  msgid "Sync License"
1237
  msgstr "ライセンスを同期"
1238
 
1239
+ #: templates/account.php102, templates/account/partials/addon.php:42
1240
  msgid "Cancel Trial"
1241
  msgstr "トライアルをキャンセル"
1242
 
1243
+ #: templates/account.php103, templates/account/partials/addon.php:43
1244
  msgid "Change Plan"
1245
  msgstr "プラン変更"
1246
 
1247
+ #: templates/account.php104, templates/account/partials/addon.php:44
1248
  msgctxt "verb"
1249
  msgid "Upgrade"
1250
  msgstr "アップグレード"
1251
 
1252
+ #: templates/account.php106, templates/account/partials/addon.php46,
1253
  #: templates/account/partials/site.php:302
1254
  msgctxt "verb"
1255
  msgid "Downgrade"
1256
  msgstr "ダウングレード"
1257
 
1258
+ #: templates/account.php108, templates/add-ons.php187,
1259
  #: templates/plugin-info/features.php72,
1260
+ #: templates/account/partials/addon.php48,
1261
  #: templates/account/partials/site.php:31
1262
  msgid "Free"
1263
  msgstr "無料"
1264
 
1265
+ #: templates/account.php110, templates/debug.php373,
 
 
 
 
1266
  #: includes/customizer/class-fs-customizer-upsell-control.php106,
1267
+ #: templates/account/partials/addon.php:50
1268
  msgctxt "as product pricing plan"
1269
  msgid "Plan"
1270
  msgstr "プラン"
1271
 
1272
+ #: templates/account.php:111
1273
+ msgid "Bundle Plan"
1274
+ msgstr "Bundle Plan"
1275
+
1276
+ #: templates/account.php:185
1277
  msgid "Free Trial"
1278
  msgstr "フリートライアル"
1279
 
1280
+ #: templates/account.php:196
1281
  msgid "Account Details"
1282
  msgstr "アカウント詳細"
1283
 
1284
+ #: templates/account.php:200
1285
+ msgid "Billing & Invoices"
1286
+ msgstr "Billing & Invoices"
1287
+
1288
+ #: templates/account.php:210
1289
  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?"
1290
  msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1291
 
1292
+ #: templates/account.php:212
1293
  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?"
1294
  msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
1295
 
1296
+ #: templates/account.php:215
1297
  msgid "Delete Account"
1298
  msgstr "アカウントを削除"
1299
 
1300
+ #: templates/account.php227, templates/account/partials/addon.php211,
1301
  #: templates/account/partials/deactivate-license-button.php:35
1302
  msgid "Deactivate License"
1303
  msgstr "ライセンスを無効化"
1304
 
1305
+ #: templates/account.php250, templates/forms/subscription-cancellation.php:125
1306
  msgid "Are you sure you want to proceed?"
1307
  msgstr "本当に続行していいですか?"
1308
 
1309
+ #: templates/account.php250, templates/account/partials/addon.php:234
1310
  msgid "Cancel Subscription"
1311
  msgstr "サブスクリプションをキャンセルする"
1312
 
1313
+ #: templates/account.php:278
1314
  msgctxt "as synchronize"
1315
  msgid "Sync"
1316
  msgstr "同期"
1317
 
1318
+ #: templates/account.php292, templates/debug.php:489
1319
  msgid "Name"
1320
  msgstr "名前"
1321
 
1322
+ #: templates/account.php298, templates/debug.php:490
1323
  msgid "Email"
1324
  msgstr "Email"
1325
 
1326
+ #: templates/account.php305, templates/debug.php372, templates/debug.php:528
1327
  msgid "User ID"
1328
  msgstr "ユーザー ID"
1329
 
1330
+ #: templates/account.php322, templates/account.php608,
1331
+ #: templates/account.php653, templates/debug.php238, templates/debug.php366,
1332
+ #: templates/debug.php451, templates/debug.php488, templates/debug.php526,
1333
+ #: templates/debug.php599, templates/account/payments.php35,
1334
+ #: templates/debug/logger.php:21
1335
+ msgid "ID"
1336
+ msgstr "ID"
1337
+
1338
+ #: templates/account.php:329
1339
  msgid "Site ID"
1340
  msgstr "サイト ID"
1341
 
1342
+ #: templates/account.php:332
1343
  msgid "No ID"
1344
  msgstr "ID がありません"
1345
 
1346
+ #: templates/account.php337, templates/debug.php245, templates/debug.php374,
1347
+ #: templates/debug.php455, templates/debug.php492,
1348
  #: templates/account/partials/site.php:219
1349
  msgid "Public Key"
1350
  msgstr "公開鍵"
1351
 
1352
+ #: templates/account.php343, templates/debug.php375, templates/debug.php456,
1353
+ #: templates/debug.php493, templates/account/partials/site.php:231
1354
  msgid "Secret Key"
1355
  msgstr "秘密鍵"
1356
 
1357
+ #: templates/account.php:346
1358
  msgctxt "as secret encryption key missing"
1359
  msgid "No Secret"
1360
  msgstr "秘密鍵がありません"
1361
 
1362
+ #: templates/account.php373, templates/account/partials/site.php112,
1363
  #: templates/account/partials/site.php:114
1364
  msgid "Trial"
1365
  msgstr "トライアル"
1366
 
1367
+ #: templates/account.php400, templates/debug.php533,
1368
  #: templates/account/partials/site.php:248
1369
  msgid "License Key"
1370
  msgstr "ライセンスキー"
1371
 
1372
+ #: templates/account.php:429
1373
+ msgid "Join the Beta program"
1374
+ msgstr "Join the Beta program"
1375
+
1376
+ #: templates/account.php:435
1377
  msgid "not verified"
1378
  msgstr "未認証"
1379
 
1380
+ #: templates/account.php444, templates/account/partials/addon.php:172
1381
  msgid "Expired"
1382
  msgstr "期限切れ"
1383
 
1384
+ #: templates/account.php:502
1385
  msgid "Premium version"
1386
  msgstr "プレミアムバージョン"
1387
 
1388
+ #: templates/account.php:504
1389
  msgid "Free version"
1390
  msgstr "フリーバージョン"
1391
 
1392
+ #: templates/account.php:516
1393
  msgid "Verify Email"
1394
  msgstr "認証メール"
1395
 
1396
+ #: templates/account.php:527
1397
  msgid "Download %s Version"
1398
  msgstr "%s バージョンをダウンロード"
1399
 
1400
+ #: templates/account.php541, templates/account.php749,
1401
  #: templates/account/partials/site.php237,
1402
  #: templates/account/partials/site.php:255
1403
  msgctxt "verb"
1404
  msgid "Show"
1405
  msgstr "表示"
1406
 
1407
+ #: templates/account.php:555
1408
  msgid "What is your %s?"
1409
  msgstr "自分の %s はなんですか?"
1410
 
1411
+ #: templates/account.php563, templates/account/billing.php:21
1412
  msgctxt "verb"
1413
  msgid "Edit"
1414
  msgstr "編集"
1415
 
1416
+ #: templates/account.php:588
1417
  msgid "Sites"
1418
  msgstr "サイト数"
1419
 
1420
+ #: templates/account.php:599
1421
  msgid "Search by address"
1422
  msgstr "住所で検索する"
1423