Gutenberg Blocks – ACF Blocks Suite - Version 2.6.8

Version Description

  • Fixed: Updated Freemius SDK
Download this release

Release Info

Developer deliciousbrains
Plugin Icon 128x128 Gutenberg Blocks – ACF Blocks Suite
Version 2.6.8
Comparing to
See all releases

Code changes from version 2.6.7 to 2.6.8

Files changed (38) hide show
  1. acf-blocks.php +3 -3
  2. admin/class-acf-admin-page.php +8 -5
  3. freemius/assets/css/admin/common.css +1 -1
  4. freemius/assets/css/admin/connect.css +1 -1
  5. freemius/includes/class-freemius.php +105 -44
  6. freemius/includes/class-fs-logger.php +2 -2
  7. freemius/includes/entities/class-fs-site.php +17 -0
  8. freemius/includes/entities/class-fs-user.php +0 -17
  9. freemius/includes/managers/class-fs-admin-notice-manager.php +7 -2
  10. freemius/includes/sdk/Exceptions/ArgumentNotExistException.php +5 -1
  11. freemius/includes/sdk/Exceptions/EmptyArgumentException.php +5 -1
  12. freemius/includes/sdk/Exceptions/Exception.php +5 -1
  13. freemius/includes/sdk/Exceptions/InvalidArgumentException.php +5 -1
  14. freemius/includes/sdk/Exceptions/OAuthException.php +5 -1
  15. freemius/includes/sdk/FreemiusBase.php +4 -0
  16. freemius/includes/sdk/FreemiusWordPress.php +4 -1
  17. freemius/languages/freemius-cs_CZ.mo +0 -0
  18. freemius/languages/freemius-cs_CZ.po +0 -2546
  19. freemius/languages/freemius-da_DK.mo +0 -0
  20. freemius/languages/freemius-da_DK.po +0 -2548
  21. freemius/languages/freemius-en.mo +0 -0
  22. freemius/languages/freemius-en.po +0 -2422
  23. freemius/languages/freemius-es_ES.mo +0 -0
  24. freemius/languages/freemius-es_ES.po +0 -2546
  25. freemius/languages/freemius-fr_FR.mo +0 -0
  26. freemius/languages/freemius-fr_FR.po +0 -2546
  27. freemius/languages/freemius-he_IL.mo +0 -0
  28. freemius/languages/freemius-he_IL.po +0 -2547
  29. freemius/languages/freemius-hu_HU.mo +0 -0
  30. freemius/languages/freemius-hu_HU.po +0 -2546
  31. freemius/languages/freemius-it_IT.mo +0 -0
  32. freemius/languages/freemius-it_IT.po +0 -2551
  33. freemius/languages/freemius-ja.mo +0 -0
  34. freemius/languages/freemius-ja.po +0 -2762
  35. freemius/languages/freemius-nl_NL.mo +0 -0
  36. freemius/languages/freemius-nl_NL.po +0 -2547
  37. freemius/languages/freemius-ru_RU.mo +0 -0
  38. freemius/languages/freemius-ru_RU.po +0 -1601
acf-blocks.php CHANGED
@@ -4,9 +4,9 @@
4
  * Plugin Name: ACF Blocks Suite
5
  * Plugin URI: https://acfblocks.com/
6
  * Description: Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Ready-to-use ACF Blocks!
7
- * Version: 2.6.7
8
- * Author: munirkamal
9
- * Author URI: https://munirkamal.wordpress.com
10
  * License: GPL2
11
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: acfb
4
  * Plugin Name: ACF Blocks Suite
5
  * Plugin URI: https://acfblocks.com/
6
  * Description: Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Ready-to-use ACF Blocks!
7
+ * Version: 2.6.8
8
+ * Author: Delicious Brains
9
+ * Author URI: https://deliciousbrains.com
10
  * License: GPL2
11
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: acfb
admin/class-acf-admin-page.php CHANGED
@@ -4,8 +4,8 @@ class acfb_Settings_Page {
4
  add_action( 'admin_menu', array( $this, 'acfb_settings' ), 10 );
5
  }
6
  public function acfb_settings() {
7
- $page_title = 'Acf Blocks Dashboard';
8
- $menu_title = 'Acf Blocks';
9
  $capability = 'manage_options';
10
  $slug = 'acf-blocks';
11
  $callback = array($this, 'acfb_settings_content');
@@ -21,10 +21,13 @@ class acfb_Settings_Page {
21
  <div class="components-panel">
22
  <div class="components-panel__body is-opened">
23
  <div class="components-panel__header">
24
- <h2>Getting Started with <strong>AcfBlocks</strong></h2>
25
- <p>Congratulations! You've just added awesome Gutenberg blocks. Check more information about the plugin below. ACF Blocks is built on top of ACF Pro, please make sure you have ACF Pro plugin installed & activated to use ACF Blocks Free.</p>
 
 
 
26
  <iframe width="650" height="380" src="https://www.youtube.com/embed/zupr0fl_qAw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
27
- <?php if(acfb_fs()->is_free_plan()){ ?>
28
  <a href="<?php menu_page_url('acf-blocks-pricing'); ?>" class="acfb_admin_button">Upgrade To Pro</a>
29
  <?php } ?>
30
 
4
  add_action( 'admin_menu', array( $this, 'acfb_settings' ), 10 );
5
  }
6
  public function acfb_settings() {
7
+ $page_title = 'ACF Blocks Dashboard';
8
+ $menu_title = 'ACF Blocks';
9
  $capability = 'manage_options';
10
  $slug = 'acf-blocks';
11
  $callback = array($this, 'acfb_settings_content');
21
  <div class="components-panel">
22
  <div class="components-panel__body is-opened">
23
  <div class="components-panel__header">
24
+ <?php
25
+ $is_free = acfb_fs()->is_free_plan();
26
+ ?>
27
+ <h2>Getting Started with <strong>ACF Blocks</strong></h2>
28
+ <p>Congratulations! You've just added awesome Gutenberg blocks. Check more information about the plugin below. ACF Blocks is built on top of <a href="https://www.advancedcustomfields.com/pro/?utm_source=ACFBlocks%2B<?php echo $is_free ? 'Free' : 'Pro'; ?>&utm_medium=insideplugin&utm_campaign=ACFBlocks%2Bupgrade">Advanced&nbsp;Custom&nbsp;Fields&nbsp;PRO</a>, please make sure you have ACF PRO plugin installed & activated to use ACF Blocks Free.</p>
29
  <iframe width="650" height="380" src="https://www.youtube.com/embed/zupr0fl_qAw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
30
+ <?php if($is_free){ ?>
31
  <a href="<?php menu_page_url('acf-blocks-pricing'); ?>" class="acfb_admin_button">Upgrade To Pro</a>
32
  <?php } ?>
33
 
freemius/assets/css/admin/common.css CHANGED
@@ -1,2 +1,2 @@
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-switch{position:relative;display:inline-block;color:#ccc;text-shadow:0 1px 1px rgba(255,255,255,0.8);height:18px;padding:6px 6px 5px 6px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);background:#ececec;box-shadow:0 0 4px rgba(0,0,0,0.1),inset 0 1px 3px 0 rgba(0,0,0,0.1);cursor:pointer}.fs-switch span{display:inline-block;width:35px;text-transform:uppercase}.fs-switch .fs-toggle{position:absolute;top:1px;width:37px;height:25px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.3);border-radius:4px;background:#fff;background-color:#fff;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ececec), color-stop(1, #fff));background-image:-webkit-linear-gradient(top, #ececec, #fff);background-image:-moz-linear-gradient(top, #ececec, #fff);background-image:-ms-linear-gradient(top, #ececec, #fff);background-image:-o-linear-gradient(top, #ececec, #fff);background-image:linear-gradient(top, bottom, #ececec, #fff);box-shadow:inset 0 1px 0 0 rgba(255,255,255,0.5);z-index:999;-moz-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);-o-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);-ms-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);-webkit-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1)}.fs-switch.fs-off .fs-toggle{left:2%}.fs-switch.fs-on .fs-toggle{left:54%}.fs-switch.fs-round{top:8px;padding:4px 25px;-moz-border-radius:24px;-webkit-border-radius:24px;border-radius:24px}.fs-switch.fs-round .fs-toggle{top:0;width:24px;height:24px;-moz-border-radius:24px;-webkit-border-radius:24px;border-radius:24px}.fs-switch.fs-round.fs-off .fs-toggle{left:-1px}.fs-switch.fs-round.fs-on{background:#0085ba}.fs-switch.fs-round.fs-on .fs-toggle{left:25px}.fs-switch.fs-small.fs-round{padding:1px 19px}.fs-switch.fs-small.fs-round .fs-toggle{top:0;width:18px;height:18px;-moz-border-radius:18px;-webkit-border-radius:18px;border-radius:18px}.fs-switch.fs-small.fs-round.fs-on .fs-toggle{left:19px}.fs-switch-feedback{margin-left:10px}.fs-switch-feedback.success{color:#71ae00}.rtl .fs-switch-feedback{margin-left:0;margin-right:10px}#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;margin-bottom:-2px}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}
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-switch{position:relative;display:inline-block;color:#ccc;text-shadow:0 1px 1px rgba(255,255,255,0.8);height:18px;padding:6px 6px 5px 6px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);background:#ececec;box-shadow:0 0 4px rgba(0,0,0,0.1),inset 0 1px 3px 0 rgba(0,0,0,0.1);cursor:pointer}.fs-switch span{display:inline-block;width:35px;text-transform:uppercase}.fs-switch .fs-toggle{position:absolute;top:1px;width:37px;height:25px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.3);border-radius:4px;background:#fff;background-color:#fff;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ececec), color-stop(1, #fff));background-image:-webkit-linear-gradient(top, #ececec, #fff);background-image:-moz-linear-gradient(top, #ececec, #fff);background-image:-ms-linear-gradient(top, #ececec, #fff);background-image:-o-linear-gradient(top, #ececec, #fff);background-image:linear-gradient(top, bottom, #ececec, #fff);box-shadow:inset 0 1px 0 0 rgba(255,255,255,0.5);z-index:999;-moz-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);-o-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);-ms-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);-webkit-transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1);transition:0.4s cubic-bezier(0.54, 1.6, 0.5, 1)}.fs-switch.fs-off .fs-toggle{left:2%}.fs-switch.fs-on .fs-toggle{left:54%}.fs-switch.fs-round{top:8px;padding:4px 25px;-moz-border-radius:24px;-webkit-border-radius:24px;border-radius:24px}.fs-switch.fs-round .fs-toggle{top:0;width:24px;height:24px;-moz-border-radius:24px;-webkit-border-radius:24px;border-radius:24px}.fs-switch.fs-round.fs-off .fs-toggle{left:-1px}.fs-switch.fs-round.fs-on{background:#0085ba}.fs-switch.fs-round.fs-on .fs-toggle{left:25px}.fs-switch.fs-small.fs-round{padding:1px 19px}.fs-switch.fs-small.fs-round .fs-toggle{top:0;width:18px;height:18px;-moz-border-radius:18px;-webkit-border-radius:18px;border-radius:18px}.fs-switch.fs-small.fs-round.fs-on .fs-toggle{left:19px}.fs-switch-feedback{margin-left:10px}.fs-switch-feedback.success{color:#71ae00}.rtl .fs-switch-feedback{margin-left:0;margin-right:10px}#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: 1250px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\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;margin-bottom:-2px}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}
freemius/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 .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 .fs-switch{float:right}#fs_connect .fs-permissions ul li .fs-permission-description{margin-left:55px}#fs_connect .fs-permissions ul li .fs-permission-description span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li .fs-permission-description 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 .fs-permission-description{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li .fs-switch{float:left}.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 .fs-switch{float:right}#fs_connect .fs-permissions ul li .fs-permission-description{margin-left:55px}#fs_connect .fs-permissions ul li .fs-permission-description span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li .fs-permission-description p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{overflow:initial;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 !important;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:-17px;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,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;text-transform:none !important}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right;left:auto;right:-17px}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,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 .fs-permission-description{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li .fs-switch{float:left}.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}#license_issues_link{display:block;text-align:center;font-size:0.9em;margin-top:10px}
freemius/includes/class-freemius.php CHANGED
@@ -384,6 +384,13 @@
384
  * @var boolean|null
385
  */
386
  private $_use_external_pricing = null;
 
 
 
 
 
 
 
387
 
388
  #endregion
389
 
@@ -3543,6 +3550,8 @@
3543
  * @since 1.1.7.3
3544
  */
3545
  static function _toggle_debug_mode() {
 
 
3546
  if ( ! is_super_admin() ) {
3547
  return;
3548
  }
@@ -3564,10 +3573,19 @@
3564
  * @since 1.2.1.6
3565
  */
3566
  static function _get_debug_log() {
 
 
 
 
 
 
 
 
 
3567
  $logs = FS_Logger::load_db_logs(
3568
  fs_request_get( 'filters', false, 'post' ),
3569
- ! empty( $_POST['limit'] ) && is_numeric( $_POST['limit'] ) ? $_POST['limit'] : 200,
3570
- ! empty( $_POST['offset'] ) && is_numeric( $_POST['offset'] ) ? $_POST['offset'] : 0
3571
  );
3572
 
3573
  self::shoot_ajax_success( $logs );
@@ -4040,7 +4058,7 @@
4040
  if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
4041
  $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
4042
 
4043
- $secure_auth = SECURE_AUTH_KEY;
4044
  if ( empty( $secure_auth ) ||
4045
  false !== strpos( $secure_auth, ' ' ) ||
4046
  'put your unique phrase here' === $secure_auth
@@ -4440,6 +4458,12 @@
4440
  * @since 1.0.9
4441
  */
4442
  function _email_about_firewall_issue() {
 
 
 
 
 
 
4443
  $this->_admin_notices->remove_sticky( 'failed_connect_api' );
4444
 
4445
  $pong = $this->ping();
@@ -4514,6 +4538,12 @@
4514
  * @since 1.1.7.4
4515
  */
4516
  function _retry_connectivity_test() {
 
 
 
 
 
 
4517
  $this->_admin_notices->remove_sticky( 'failed_connect_api_first' );
4518
 
4519
  $pong = $this->ping();
@@ -5484,7 +5514,7 @@
5484
  function is_extensions_tracking_allowed() {
5485
  return ( true === $this->apply_filters(
5486
  'is_extensions_tracking_allowed',
5487
- $this->_storage->get( 'is_extensions_tracking_allowed', true )
5488
  ) );
5489
  }
5490
 
@@ -5528,10 +5558,12 @@
5528
  * @author Leo Fajardo (@leorw)
5529
  * @since 2.3.2
5530
  *
5531
- * @param bool $is_enabled
5532
  */
5533
- private function update_extensions_tracking_flag( $is_enabled ) {
5534
- $this->_storage->store( 'is_extensions_tracking_allowed', $is_enabled );
 
 
5535
  }
5536
 
5537
  /**
@@ -6860,8 +6892,6 @@
6860
  */
6861
  function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6862
  if ( $this->is_registered() ) {
6863
- $this->sync_user_beta_mode();
6864
-
6865
  if ( $this->has_paid_plan() ) {
6866
  // Initiate background plan sync.
6867
  $this->_sync_license( true, false, $current_blog_id );
@@ -7234,7 +7264,8 @@
7234
  }
7235
 
7236
  if ( $this->is_plugin_new_install() || $this->is_only_premium() ) {
7237
- if ( ! $this->_anonymous_mode ) {
 
7238
  // Show notice for new plugin installations.
7239
  $this->_admin_notices->add(
7240
  sprintf(
@@ -7285,6 +7316,10 @@
7285
  * @return bool
7286
  */
7287
  private function should_add_sticky_optin_notice() {
 
 
 
 
7288
  if ( fs_is_network_admin() ) {
7289
  if ( ! $this->_is_network_active ) {
7290
  return false;
@@ -13238,26 +13273,25 @@
13238
  self::shoot_ajax_failure();
13239
  }
13240
 
13241
- $user = $this->get_api_user_scope()->call(
13242
  '',
13243
  'put',
13244
  array(
13245
- 'plugin_id' => $this->get_id(),
13246
  'is_beta' => ( 'true' == $is_beta ),
13247
  'fields' => 'is_beta'
13248
  )
13249
  );
13250
 
13251
- if ( ! $this->is_api_result_entity( $user ) ) {
13252
  self::shoot_ajax_failure(
13253
- FS_Api::is_api_error_object( $user ) ?
13254
- $user->error->message :
13255
  fs_text_inline( "An unknown error has occurred while trying to set the user's beta mode.", 'unknown-error-occurred', $this->get_slug() )
13256
  );
13257
  }
13258
 
13259
- $this->_user->is_beta = $user->is_beta;
13260
- $this->_store_user();
13261
 
13262
  self::shoot_ajax_response( array( 'success' => true ) );
13263
  }
@@ -13292,7 +13326,7 @@
13292
  fs_request_get( 'blog_id', null ),
13293
  fs_request_get( 'module_id', null, 'post' ),
13294
  fs_request_get( 'user_id', null ),
13295
- fs_request_get_bool( 'is_extensions_tracking_allowed', true )
13296
  );
13297
 
13298
  if (
@@ -13482,7 +13516,31 @@
13482
  * @return string
13483
  */
13484
  function get_pricing_js_path() {
13485
- return $this->apply_filters( 'freemius_pricing_js_path', WP_FS__DIR_INCLUDES . '/freemius-pricing/freemius-pricing.js' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13486
  }
13487
 
13488
  /**
@@ -13527,7 +13585,7 @@
13527
  $blog_id = null,
13528
  $plugin_id = null,
13529
  $license_owner_id = null,
13530
- $is_extensions_tracking_allowed = true
13531
  ) {
13532
  $this->_logger->entrance();
13533
 
@@ -16448,19 +16506,6 @@
16448
  );
16449
  }
16450
 
16451
- /**
16452
- * @author Leo Fajardo (@leorw)
16453
- * @since 2.3.0
16454
- */
16455
- private function sync_user_beta_mode() {
16456
- $user = $this->get_api_user_scope()->get( '/?plugin_id=' . $this->get_id() . '&fields=is_beta' );
16457
-
16458
- if ( $this->is_api_result_entity( $user ) ) {
16459
- $this->_user->is_beta = $user->is_beta;
16460
- $this->_store_user();
16461
- }
16462
- }
16463
-
16464
  /**
16465
  * @author Vova Feldman (@svovaf)
16466
  * @since 1.1.7.4
@@ -17148,9 +17193,7 @@
17148
  $this->disable_opt_in_notice_and_lock_user();
17149
  }
17150
 
17151
- if ( ! is_null( $is_extensions_tracking_allowed ) ) {
17152
- $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
17153
- }
17154
 
17155
  return $this->setup_account(
17156
  $this->_user,
@@ -17195,9 +17238,7 @@
17195
  $this->disable_opt_in_notice_and_lock_user();
17196
  }
17197
 
17198
- if ( ! is_null( $is_extensions_tracking_allowed ) ) {
17199
- $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
17200
- }
17201
 
17202
  $sites = array();
17203
  foreach ( $site_ids as $site_id ) {
@@ -17240,9 +17281,7 @@
17240
  $this->disable_opt_in_notice_and_lock_user();
17241
  }
17242
 
17243
- if ( ! is_null( $is_extensions_tracking_allowed ) ) {
17244
- $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
17245
- }
17246
 
17247
  $install_ids = array();
17248
 
@@ -17353,7 +17392,7 @@
17353
  */
17354
  $license_key = fs_request_get( 'license_secret_key' );
17355
 
17356
- $this->update_extensions_tracking_flag( fs_request_get_bool( 'is_extensions_tracking_allowed', true ) );
17357
 
17358
  $this->install_with_current_user( $license_key );
17359
  }
@@ -20605,6 +20644,20 @@
20605
  }
20606
  }
20607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20608
  if ( $this->is_addon() || $this->has_addons() ) {
20609
  /**
20610
  * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
@@ -21298,7 +21351,7 @@
21298
 
21299
  if ( $this->has_secret_key() ) {
21300
  $endpoint = add_query_arg( 'type', 'all', $endpoint );
21301
- } else if ( $this->is_registered() && $this->_user->is_beta() ) {
21302
  $endpoint = add_query_arg( 'type', 'beta', $endpoint );
21303
  }
21304
 
@@ -23396,6 +23449,14 @@
23396
  return;
23397
  }
23398
 
 
 
 
 
 
 
 
 
23399
  if ( fs_is_network_admin() ) {
23400
  if ( ! $this->_is_network_active ) {
23401
  // Don't add tracking links when browsing the network WP Admin and the plugin is not network active.
384
  * @var boolean|null
385
  */
386
  private $_use_external_pricing = null;
387
+ /**
388
+ * @author Leo Fajardo (@leorw)
389
+ * @since 2.4.2
390
+ *
391
+ * @var string|null
392
+ */
393
+ private $_pricing_js_path = null;
394
 
395
  #endregion
396
 
3550
  * @since 1.1.7.3
3551
  */
3552
  static function _toggle_debug_mode() {
3553
+ check_admin_referer( 'fs_toggle_debug_mode' );
3554
+
3555
  if ( ! is_super_admin() ) {
3556
  return;
3557
  }
3573
  * @since 1.2.1.6
3574
  */
3575
  static function _get_debug_log() {
3576
+ check_admin_referer( 'fs_get_debug_log' );
3577
+
3578
+ if ( ! is_super_admin() ) {
3579
+ return;
3580
+ }
3581
+
3582
+ $limit = min( ! empty( $_POST['limit'] ) ? absint( $_POST['limit'] ) : 200, 200 );
3583
+ $offset = min( ! empty( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 200, 200 );
3584
+
3585
  $logs = FS_Logger::load_db_logs(
3586
  fs_request_get( 'filters', false, 'post' ),
3587
+ $limit,
3588
+ $offset
3589
  );
3590
 
3591
  self::shoot_ajax_success( $logs );
4058
  if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
4059
  $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
4060
 
4061
+ $secure_auth = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : '';
4062
  if ( empty( $secure_auth ) ||
4063
  false !== strpos( $secure_auth, ' ' ) ||
4064
  'put your unique phrase here' === $secure_auth
4458
  * @since 1.0.9
4459
  */
4460
  function _email_about_firewall_issue() {
4461
+ check_admin_referer( 'fs_resolve_firewall_issues' );
4462
+
4463
+ if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) {
4464
+ return;
4465
+ }
4466
+
4467
  $this->_admin_notices->remove_sticky( 'failed_connect_api' );
4468
 
4469
  $pong = $this->ping();
4538
  * @since 1.1.7.4
4539
  */
4540
  function _retry_connectivity_test() {
4541
+ check_admin_referer( 'fs_retry_connectivity_test' );
4542
+
4543
+ if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) {
4544
+ return;
4545
+ }
4546
+
4547
  $this->_admin_notices->remove_sticky( 'failed_connect_api_first' );
4548
 
4549
  $pong = $this->ping();
5514
  function is_extensions_tracking_allowed() {
5515
  return ( true === $this->apply_filters(
5516
  'is_extensions_tracking_allowed',
5517
+ $this->_storage->get( 'is_extensions_tracking_allowed', null )
5518
  ) );
5519
  }
5520
 
5558
  * @author Leo Fajardo (@leorw)
5559
  * @since 2.3.2
5560
  *
5561
+ * @param bool|null $is_enabled
5562
  */
5563
+ function update_extensions_tracking_flag( $is_enabled ) {
5564
+ if ( is_bool( $is_enabled ) ) {
5565
+ $this->_storage->store( 'is_extensions_tracking_allowed', $is_enabled );
5566
+ }
5567
  }
5568
 
5569
  /**
6892
  */
6893
  function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6894
  if ( $this->is_registered() ) {
 
 
6895
  if ( $this->has_paid_plan() ) {
6896
  // Initiate background plan sync.
6897
  $this->_sync_license( true, false, $current_blog_id );
7264
  }
7265
 
7266
  if ( $this->is_plugin_new_install() || $this->is_only_premium() ) {
7267
+ if ( ! $this->_anonymous_mode &&
7268
+ ( ! $this->is_addon() || ! $this->_parent->is_anonymous() ) ) {
7269
  // Show notice for new plugin installations.
7270
  $this->_admin_notices->add(
7271
  sprintf(
7316
  * @return bool
7317
  */
7318
  private function should_add_sticky_optin_notice() {
7319
+ if ( $this->is_addon() && $this->_parent->is_anonymous() ) {
7320
+ return false;
7321
+ }
7322
+
7323
  if ( fs_is_network_admin() ) {
7324
  if ( ! $this->_is_network_active ) {
7325
  return false;
13273
  self::shoot_ajax_failure();
13274
  }
13275
 
13276
+ $site = $this->get_api_site_scope()->call(
13277
  '',
13278
  'put',
13279
  array(
 
13280
  'is_beta' => ( 'true' == $is_beta ),
13281
  'fields' => 'is_beta'
13282
  )
13283
  );
13284
 
13285
+ if ( ! $this->is_api_result_entity( $site ) ) {
13286
  self::shoot_ajax_failure(
13287
+ FS_Api::is_api_error_object( $site ) ?
13288
+ $site->error->message :
13289
  fs_text_inline( "An unknown error has occurred while trying to set the user's beta mode.", 'unknown-error-occurred', $this->get_slug() )
13290
  );
13291
  }
13292
 
13293
+ $this->_site->is_beta = $site->is_beta;
13294
+ $this->_store_site();
13295
 
13296
  self::shoot_ajax_response( array( 'success' => true ) );
13297
  }
13326
  fs_request_get( 'blog_id', null ),
13327
  fs_request_get( 'module_id', null, 'post' ),
13328
  fs_request_get( 'user_id', null ),
13329
+ fs_request_get_bool( 'is_extensions_tracking_allowed', null )
13330
  );
13331
 
13332
  if (
13516
  * @return string
13517
  */
13518
  function get_pricing_js_path() {
13519
+ if ( ! isset( $this->_pricing_js_path ) ) {
13520
+ $pricing_js_path = $this->apply_filters( 'freemius_pricing_js_path', '' );
13521
+
13522
+ if ( empty( $pricing_js_path ) ) {
13523
+ global $fs_active_plugins;
13524
+
13525
+ foreach ( $fs_active_plugins->plugins as $sdk_path => $data ) {
13526
+ if ( $data->plugin_path == $this->get_plugin_basename() ) {
13527
+ $plugin_or_theme_root_dir = ( $this->is_plugin() ? WP_PLUGIN_DIR : get_theme_root( get_stylesheet() ) );
13528
+
13529
+ $pricing_js_path = $plugin_or_theme_root_dir
13530
+ . '/'
13531
+ // The basename will be `plugins`, `themes`, or the basename of a custom plugins or themes directory.
13532
+ . str_replace( '../' . basename( $plugin_or_theme_root_dir ) . '/', '', $sdk_path )
13533
+ . '/includes/freemius-pricing/freemius-pricing.js';
13534
+
13535
+ break;
13536
+ }
13537
+ }
13538
+ }
13539
+
13540
+ $this->_pricing_js_path = $pricing_js_path;
13541
+ }
13542
+
13543
+ return $this->_pricing_js_path;
13544
  }
13545
 
13546
  /**
13585
  $blog_id = null,
13586
  $plugin_id = null,
13587
  $license_owner_id = null,
13588
+ $is_extensions_tracking_allowed = null
13589
  ) {
13590
  $this->_logger->entrance();
13591
 
16506
  );
16507
  }
16508
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16509
  /**
16510
  * @author Vova Feldman (@svovaf)
16511
  * @since 1.1.7.4
17193
  $this->disable_opt_in_notice_and_lock_user();
17194
  }
17195
 
17196
+ $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
 
 
17197
 
17198
  return $this->setup_account(
17199
  $this->_user,
17238
  $this->disable_opt_in_notice_and_lock_user();
17239
  }
17240
 
17241
+ $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
 
 
17242
 
17243
  $sites = array();
17244
  foreach ( $site_ids as $site_id ) {
17281
  $this->disable_opt_in_notice_and_lock_user();
17282
  }
17283
 
17284
+ $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
 
 
17285
 
17286
  $install_ids = array();
17287
 
17392
  */
17393
  $license_key = fs_request_get( 'license_secret_key' );
17394
 
17395
+ $this->update_extensions_tracking_flag( fs_request_get_bool( 'is_extensions_tracking_allowed', null ) );
17396
 
17397
  $this->install_with_current_user( $license_key );
17398
  }
20644
  }
20645
  }
20646
 
20647
+ if ( ! $this->is_addon() &&
20648
+ $this->_site->is_beta() !== $site->is_beta
20649
+ ) {
20650
+ // Beta flag updated.
20651
+ $this->_site = $site;
20652
+
20653
+ $this->_store_site(
20654
+ true,
20655
+ $is_site_level_sync ?
20656
+ null :
20657
+ $this->get_network_install_blog_id()
20658
+ );
20659
+ }
20660
+
20661
  if ( $this->is_addon() || $this->has_addons() ) {
20662
  /**
20663
  * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
21351
 
21352
  if ( $this->has_secret_key() ) {
21353
  $endpoint = add_query_arg( 'type', 'all', $endpoint );
21354
+ } else if ( is_object( $this->_site ) && $this->_site->is_beta() ) {
21355
  $endpoint = add_query_arg( 'type', 'beta', $endpoint );
21356
  }
21357
 
23449
  return;
23450
  }
23451
 
23452
+ if (
23453
+ $this->is_addon() &&
23454
+ ! $this->is_only_premium() &&
23455
+ $this->_parent->is_anonymous()
23456
+ ) {
23457
+ return;
23458
+ }
23459
+
23460
  if ( fs_is_network_admin() ) {
23461
  if ( ! $this->_is_network_active ) {
23462
  // Don't add tracking links when browsing the network WP Admin and the plugin is not network active.
freemius/includes/class-fs-logger.php CHANGED
@@ -142,7 +142,7 @@
142
  return $this->_file_start;
143
  }
144
 
145
- private function _log( &$message, $type = 'log', $wrapper ) {
146
  if ( ! $this->is_on() ) {
147
  return;
148
  }
@@ -688,4 +688,4 @@ KEY `type` (`type` ASC))" );
688
  }
689
 
690
  #endregion
691
- }
142
  return $this->_file_start;
143
  }
144
 
145
+ private function _log( &$message, $type, $wrapper = false ) {
146
  if ( ! $this->is_on() ) {
147
  return;
148
  }
688
  }
689
 
690
  #endregion
691
+ }
freemius/includes/entities/class-fs-site.php CHANGED
@@ -102,6 +102,14 @@
102
  * @var bool
103
  */
104
  public $is_uninstalled = false;
 
 
 
 
 
 
 
 
105
 
106
  /**
107
  * @param stdClass|bool $site
@@ -233,4 +241,13 @@
233
  function is_tracking_prohibited() {
234
  return ! $this->is_tracking_allowed();
235
  }
 
 
 
 
 
 
 
 
 
236
  }
102
  * @var bool
103
  */
104
  public $is_uninstalled = false;
105
+ /**
106
+ * @author Edgar Melkonyan
107
+ *
108
+ * @since 2.4.2
109
+ *
110
+ * @var bool
111
+ */
112
+ public $is_beta;
113
 
114
  /**
115
  * @param stdClass|bool $site
241
  function is_tracking_prohibited() {
242
  return ! $this->is_tracking_allowed();
243
  }
244
+
245
+ /**
246
+ * @author Edgar Melkonyan
247
+ *
248
+ * @return bool
249
+ */
250
+ function is_beta() {
251
+ return ( isset( $this->is_beta ) && true === $this->is_beta );
252
+ }
253
  }
freemius/includes/entities/class-fs-user.php CHANGED
@@ -31,13 +31,6 @@
31
  */
32
  public $is_verified;
33
  /**
34
- * @author Leo Fajardo (@leorw)
35
- * @since 2.3.0
36
- *
37
- * @var bool
38
- */
39
- public $is_beta;
40
- /**
41
  * @var string|null
42
  */
43
  public $customer_id;
@@ -63,16 +56,6 @@
63
  return ( isset( $this->is_verified ) && true === $this->is_verified );
64
  }
65
 
66
- /**
67
- * @author Leo Fajardo (@leorw)
68
- * @since 2.3.0
69
- *
70
- * @return bool
71
- */
72
- function is_beta() {
73
- return ( isset( $this->is_beta ) && true === $this->is_beta );
74
- }
75
-
76
  static function get_type() {
77
  return 'user';
78
  }
31
  */
32
  public $is_verified;
33
  /**
 
 
 
 
 
 
 
34
  * @var string|null
35
  */
36
  public $customer_id;
56
  return ( isset( $this->is_verified ) && true === $this->is_verified );
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
59
  static function get_type() {
60
  return 'user';
61
  }
freemius/includes/managers/class-fs-admin-notice-manager.php CHANGED
@@ -175,7 +175,12 @@
175
  *
176
  */
177
  function dismiss_notice_ajax_callback() {
178
- $this->_sticky_storage->remove( $_POST['message_id'] );
 
 
 
 
 
179
  wp_die();
180
  }
181
 
@@ -469,4 +474,4 @@
469
  }
470
 
471
  #endregion
472
- }
175
  *
176
  */
177
  function dismiss_notice_ajax_callback() {
178
+ check_admin_referer( 'fs_dismiss_notice_action' );
179
+
180
+ if ( ! is_numeric( $_POST['message_id'] ) ) {
181
+ $this->_sticky_storage->remove( $_POST['message_id'] );
182
+ }
183
+
184
  wp_die();
185
  }
186
 
474
  }
475
 
476
  #endregion
477
+ }
freemius/includes/sdk/Exceptions/ArgumentNotExistException.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
3
  exit;
4
  }
@@ -6,4 +10,4 @@
6
  if ( ! class_exists( 'Freemius_ArgumentNotExistException' ) ) {
7
  class Freemius_ArgumentNotExistException extends Freemius_InvalidArgumentException {
8
  }
9
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7
  exit;
8
  }
10
  if ( ! class_exists( 'Freemius_ArgumentNotExistException' ) ) {
11
  class Freemius_ArgumentNotExistException extends Freemius_InvalidArgumentException {
12
  }
13
+ }
freemius/includes/sdk/Exceptions/EmptyArgumentException.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
3
  exit;
4
  }
@@ -6,4 +10,4 @@
6
  if ( ! class_exists( 'Freemius_EmptyArgumentException' ) ) {
7
  class Freemius_EmptyArgumentException extends Freemius_InvalidArgumentException {
8
  }
9
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7
  exit;
8
  }
10
  if ( ! class_exists( 'Freemius_EmptyArgumentException' ) ) {
11
  class Freemius_EmptyArgumentException extends Freemius_InvalidArgumentException {
12
  }
13
+ }
freemius/includes/sdk/Exceptions/Exception.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_Exception' ) ) {
3
  /**
4
  * Thrown when an API call returns an exception.
@@ -71,4 +75,4 @@
71
  return $str . $this->getMessage();
72
  }
73
  }
74
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_Exception' ) ) {
7
  /**
8
  * Thrown when an API call returns an exception.
75
  return $str . $this->getMessage();
76
  }
77
  }
78
+ }
freemius/includes/sdk/Exceptions/InvalidArgumentException.php CHANGED
@@ -1,8 +1,12 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_Exception' ) ) {
3
  exit;
4
  }
5
 
6
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7
  class Freemius_InvalidArgumentException extends Freemius_Exception { }
8
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_Exception' ) ) {
7
  exit;
8
  }
9
 
10
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
11
  class Freemius_InvalidArgumentException extends Freemius_Exception { }
12
+ }
freemius/includes/sdk/Exceptions/OAuthException.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_Exception' ) ) {
3
  exit;
4
  }
@@ -9,4 +13,4 @@
9
  parent::__construct( $pResult );
10
  }
11
  }
12
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_Exception' ) ) {
7
  exit;
8
  }
13
  parent::__construct( $pResult );
14
  }
15
  }
16
+ }
freemius/includes/sdk/FreemiusBase.php CHANGED
@@ -15,6 +15,10 @@
15
  * under the License.
16
  */
17
 
 
 
 
 
18
  if ( ! defined( 'FS_API__VERSION' ) ) {
19
  define( 'FS_API__VERSION', '1' );
20
  }
15
  * under the License.
16
  */
17
 
18
+ if ( ! defined( 'ABSPATH' ) ) {
19
+ exit;
20
+ }
21
+
22
  if ( ! defined( 'FS_API__VERSION' ) ) {
23
  define( 'FS_API__VERSION', '1' );
24
  }
freemius/includes/sdk/FreemiusWordPress.php CHANGED
@@ -14,6 +14,9 @@
14
  * License for the specific language governing permissions and limitations
15
  * under the License.
16
  */
 
 
 
17
 
18
  require_once dirname( __FILE__ ) . '/FreemiusBase.php';
19
 
@@ -709,4 +712,4 @@
709
  }
710
 
711
  #endregion
712
- }
14
  * License for the specific language governing permissions and limitations
15
  * under the License.
16
  */
17
+ if ( ! defined( 'ABSPATH' ) ) {
18
+ exit;
19
+ }
20
 
21
  require_once dirname( __FILE__ ) . '/FreemiusBase.php';
22
 
712
  }
713
 
714
  #endregion
715
+ }
freemius/languages/freemius-cs_CZ.mo CHANGED
Binary file
freemius/languages/freemius-cs_CZ.po DELETED
@@ -1,2546 +0,0 @@
1
- # Copyright (C) 2019 freemius
2
- # This file is distributed under the same license as the freemius package.
3
- # Translators:
4
- # Karolína Vyskočilová <karolina@kybernaut.cz>, 2019
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: WordPress SDK\n"
8
- "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
- "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2019-10-07 15:33+0000\n"
11
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
- "Language: cs_CZ\n"
13
- "Language-Team: Czech (Czech Republic) (http://www.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
17
- "MIME-Version: 1.0\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "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"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
- "X-Poedit-SourceCharset: UTF-8\n"
23
-
24
- #: includes/class-freemius.php1880, templates/account.php:840
25
- msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
26
- msgstr "Aktualizováním na Beta verzi nahradíte nainstalovanou verzi %s nejnovějším vydáním Beta verze - používejte s opatrností a ne na produkčních webech. Varovali jsme vás."
27
-
28
- #: includes/class-freemius.php:1887
29
- msgid "Would you like to proceed with the update?"
30
- msgstr "Chcete pokračovat v aktualizaci?"
31
-
32
- #: includes/class-freemius.php:2095
33
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
- msgstr "Freemius SDK nemohlo najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com."
35
-
36
- #: includes/class-freemius.php:2097
37
- msgid "Error"
38
- msgstr "Chyba"
39
-
40
- #: includes/class-freemius.php:2491
41
- msgid "I found a better %s"
42
- msgstr "Našel jsem lepší %s"
43
-
44
- #: includes/class-freemius.php:2493
45
- msgid "What's the %s's name?"
46
- msgstr "Jak se %s jmenuje?"
47
-
48
- #: includes/class-freemius.php:2499
49
- msgid "It's a temporary %s. I'm just debugging an issue."
50
- msgstr "Jen dočasná %s - ladím nějaký problém."
51
-
52
- #: includes/class-freemius.php:2501
53
- msgid "Deactivation"
54
- msgstr "Deaktivace"
55
-
56
- #: includes/class-freemius.php:2502
57
- msgid "Theme Switch"
58
- msgstr "Změna šablony"
59
-
60
- #: includes/class-freemius.php2511, templates/forms/resend-key.php:24
61
- msgid "Other"
62
- msgstr "Jiné"
63
-
64
- #: includes/class-freemius.php:2519
65
- msgid "I no longer need the %s"
66
- msgstr "Již nepotřebuji %s"
67
-
68
- #: includes/class-freemius.php:2526
69
- msgid "I only needed the %s for a short period"
70
- msgstr "Potřeboval %s jsem jen krátkou dobu"
71
-
72
- #: includes/class-freemius.php:2532
73
- msgid "The %s broke my site"
74
- msgstr "%s rozbil můj web"
75
-
76
- #: includes/class-freemius.php:2539
77
- msgid "The %s suddenly stopped working"
78
- msgstr "%s náhle přestal pracovat"
79
-
80
- #: includes/class-freemius.php:2549
81
- msgid "I can't pay for it anymore"
82
- msgstr "Už si to nemohu dovolit"
83
-
84
- #: includes/class-freemius.php:2551
85
- msgid "What price would you feel comfortable paying?"
86
- msgstr "Jakou cenu byste byli ochotni platit?"
87
-
88
- #: includes/class-freemius.php:2557
89
- msgid "I don't like to share my information with you"
90
- msgstr "Nechci s vámi sdílet své informace"
91
-
92
- #: includes/class-freemius.php:2578
93
- msgid "The %s didn't work"
94
- msgstr "%s nefungoval"
95
-
96
- #: includes/class-freemius.php:2588
97
- msgid "I couldn't understand how to make it work"
98
- msgstr "Nedokázal jsem jej zprovoznit"
99
-
100
- #: includes/class-freemius.php:2596
101
- msgid "The %s is great, but I need specific feature that you don't support"
102
- msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná"
103
-
104
- #: includes/class-freemius.php:2598
105
- msgid "What feature?"
106
- msgstr "Jaká funkce?"
107
-
108
- #: includes/class-freemius.php:2602
109
- msgid "The %s is not working"
110
- msgstr "%s nefunguje"
111
-
112
- #: includes/class-freemius.php:2604
113
- msgid "Kindly share what didn't work so we can fix it for future users..."
114
- msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..."
115
-
116
- #: includes/class-freemius.php:2608
117
- msgid "It's not what I was looking for"
118
- msgstr "Není to to, co jsem hledal"
119
-
120
- #: includes/class-freemius.php:2610
121
- msgid "What you've been looking for?"
122
- msgstr "Co jste hledali?"
123
-
124
- #: includes/class-freemius.php:2614
125
- msgid "The %s didn't work as expected"
126
- msgstr "%s nefungoval podle očekávání"
127
-
128
- #: includes/class-freemius.php:2616
129
- msgid "What did you expect?"
130
- msgstr "Co jste očekávali?"
131
-
132
- #: includes/class-freemius.php3471, templates/debug.php:20
133
- msgid "Freemius Debug"
134
- msgstr "Freemius Debug"
135
-
136
- #: includes/class-freemius.php:4223
137
- msgid "I don't know what is cURL or how to install it, help me!"
138
- msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!"
139
-
140
- #: includes/class-freemius.php:4225
141
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
142
- msgstr "Zkontaktujeme vaší hostingovou společnost a zkusíme vyřešit tento problém. Na %s dostanete upozornění, jakmile budeme vědět něco nového."
143
-
144
- #: includes/class-freemius.php:4232
145
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
146
- msgstr "Výborně, nainstalujte prosím cURL a povolte ji v souboru php.ini. Dále vyhledejte v souboru php.ini direktivu 'disable_functions ' a odeberte všechny zakázané metody začínající na \"curl_\". Chcete-li se ujistit, že byla úspěšně aktivována, použijte 'phpinfo() '. Jakmile je aktivován, deaktivujte %s a znovu jej aktivujte."
147
-
148
- #: includes/class-freemius.php:4337
149
- msgid "Yes - do your thing"
150
- msgstr "Ano - udělejte, co potřebujete"
151
-
152
- #: includes/class-freemius.php:4342
153
- msgid "No - just deactivate"
154
- msgstr "Ne - jen deaktivovat"
155
-
156
- #: includes/class-freemius.php4387, includes/class-freemius.php4881,
157
- #: includes/class-freemius.php6032, includes/class-freemius.php13153,
158
- #: includes/class-freemius.php16558, includes/class-freemius.php16646,
159
- #: includes/class-freemius.php16812, includes/class-freemius.php19040,
160
- #: includes/class-freemius.php19381, includes/class-freemius.php19391,
161
- #: includes/class-freemius.php20051, includes/class-freemius.php20924,
162
- #: includes/class-freemius.php21039, includes/class-freemius.php21183,
163
- #: templates/add-ons.php:57
164
- msgctxt "exclamation"
165
- msgid "Oops"
166
- msgstr "Jejda"
167
-
168
- #: includes/class-freemius.php:4456
169
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
170
- msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
171
-
172
- #: includes/class-freemius.php:4878
173
- msgctxt "addonX cannot run without pluginY"
174
- msgid "%s cannot run without %s."
175
- msgstr "%s nelze spustit bez %s."
176
-
177
- #: includes/class-freemius.php:4879
178
- msgctxt "addonX cannot run..."
179
- msgid "%s cannot run without the plugin."
180
- msgstr "%s nelze spustit bez tohoto pluginu."
181
-
182
- #: includes/class-freemius.php5052, includes/class-freemius.php5077,
183
- #: includes/class-freemius.php:20122
184
- msgid "Unexpected API error. Please contact the %s's author with the following error."
185
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
186
-
187
- #: includes/class-freemius.php:5720
188
- msgid "Premium %s version was successfully activated."
189
- msgstr "Premium %s version was successfully activated."
190
-
191
- #: includes/class-freemius.php5732, includes/class-freemius.php:7599
192
- msgctxt ""
193
- msgid "W00t"
194
- msgstr "W00t"
195
-
196
- #: includes/class-freemius.php:5747
197
- msgid "You have a %s license."
198
- msgstr "Máte licenci „%s“."
199
-
200
- #: includes/class-freemius.php5751, includes/class-freemius.php15975,
201
- #: includes/class-freemius.php15986, includes/class-freemius.php19292,
202
- #: includes/class-freemius.php19642, includes/class-freemius.php19711,
203
- #: includes/class-freemius.php:19876
204
- msgctxt "interjection expressing joy or exuberance"
205
- msgid "Yee-haw"
206
- msgstr "Yee-haw"
207
-
208
- #: includes/class-freemius.php:6015
209
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
210
- msgstr "%s bezplatná zkušební verze byla úspěšně zrušena. Jelikož toto rozšíření nenabízí bezplatnou verzi, bylo automaticky deaktivováno. Chcete-li jej v budoucnu používat, budete si muset zakoupit licenci."
211
-
212
- #: includes/class-freemius.php:6019
213
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
214
- msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci."
215
-
216
- #: includes/class-freemius.php6028, templates/add-ons.php186,
217
- #: templates/account/partials/addon.php:381
218
- msgid "More information about %s"
219
- msgstr "Více informací o %s"
220
-
221
- #: includes/class-freemius.php:6029
222
- msgid "Purchase License"
223
- msgstr "Koupit licenci"
224
-
225
- #: includes/class-freemius.php6964, templates/connect.php:163
226
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
227
- msgstr "Aktivační email od %s by měl dorazit do vašeho mailboxu (%s). Ujistěte se, že v emailu kliknete na tlačítko aktivovat, abyste %s."
228
-
229
- #: includes/class-freemius.php:6968
230
- msgid "start the trial"
231
- msgstr "spustit zkušební verzi"
232
-
233
- #: includes/class-freemius.php6969, templates/connect.php:167
234
- msgid "complete the install"
235
- msgstr "dokončit installaci"
236
-
237
- #: includes/class-freemius.php:7081
238
- msgid "You are just one step away - %s"
239
- msgstr "Jste jen na krok od - %s"
240
-
241
- #: includes/class-freemius.php:7084
242
- msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
243
- msgid "Complete \"%s\" Activation Now"
244
- msgstr "Dokončit aktivaci pluginu „%s“"
245
-
246
- #: includes/class-freemius.php:7162
247
- msgid "We made a few tweaks to the %s, %s"
248
- msgstr "Udělali jsme několik vylepšení %s, %s"
249
-
250
- #: includes/class-freemius.php:7166
251
- msgid "Opt in to make \"%s\" better!"
252
- msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!"
253
-
254
- #: includes/class-freemius.php:7598
255
- msgid "The upgrade of %s was successfully completed."
256
- msgstr "Aktualizace %s byla úspěšně dokončena."
257
-
258
- #: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038,
259
- #: includes/class-fs-plugin-updater.php1233,
260
- #: includes/class-fs-plugin-updater.php1240,
261
- #: templates/auto-installation.php:32
262
- msgid "Add-On"
263
- msgstr "Doplněk"
264
-
265
- #: includes/class-freemius.php9804, templates/account.php335,
266
- #: templates/account.php343, templates/debug.php360, templates/debug.php:551
267
- msgid "Plugin"
268
- msgstr "Plugin"
269
-
270
- #: includes/class-freemius.php9805, templates/account.php336,
271
- #: templates/account.php344, templates/debug.php360, templates/debug.php551,
272
- #: templates/forms/deactivation/form.php:71
273
- msgid "Theme"
274
- msgstr "Šablona"
275
-
276
- #: includes/class-freemius.php:12596
277
- msgid "An unknown error has occurred while trying to set the user's beta mode."
278
- msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě."
279
-
280
- #: includes/class-freemius.php:13020
281
- msgid "Invalid site details collection."
282
- msgstr "Invalid site details collection."
283
-
284
- #: includes/class-freemius.php:13140
285
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
286
- msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?"
287
-
288
- #: includes/class-freemius.php:13142
289
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
290
- msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
291
-
292
- #: includes/class-freemius.php:13416
293
- msgid "Account is pending activation."
294
- msgstr "Účet čeká na aktivaci."
295
-
296
- #: includes/class-freemius.php13528,
297
- #: templates/forms/premium-versions-upgrade-handler.php:47
298
- msgid "Buy a license now"
299
- msgstr "Koupit licenci nyní"
300
-
301
- #: includes/class-freemius.php13540,
302
- #: templates/forms/premium-versions-upgrade-handler.php:46
303
- msgid "Renew your license now"
304
- msgstr "Obnovte svou licenci teď"
305
-
306
- #: includes/class-freemius.php:13544
307
- msgid "%s to access version %s security & feature updates, and support."
308
- msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace."
309
-
310
- #: includes/class-freemius.php:15957
311
- msgid "%s activation was successfully completed."
312
- msgstr "Aktivace %s byla úspěšně dokončena."
313
-
314
- #: includes/class-freemius.php:15971
315
- msgid "Your account was successfully activated with the %s plan."
316
- msgstr "Účet byl úspěšně aktivován s plánem %s."
317
-
318
- #: includes/class-freemius.php15982, includes/class-freemius.php:19707
319
- msgid "Your trial has been successfully started."
320
- msgstr "Vaše zkušebí verze byla úspěšně spuštěna."
321
-
322
- #: includes/class-freemius.php16556, includes/class-freemius.php16644,
323
- #: includes/class-freemius.php:16810
324
- msgid "Couldn't activate %s."
325
- msgstr "Nelze aktivovat %s."
326
-
327
- #: includes/class-freemius.php16557, includes/class-freemius.php16645,
328
- #: includes/class-freemius.php:16811
329
- msgid "Please contact us with the following message:"
330
- msgstr "Kontaktujte nás prosím s následující zprávou:"
331
-
332
- #: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162
333
- msgid "An unknown error has occurred."
334
- msgstr "Došlo k neznámé chybě."
335
-
336
- #: includes/class-freemius.php17168, includes/class-freemius.php:22082
337
- msgid "Upgrade"
338
- msgstr "Upgrade"
339
-
340
- #: includes/class-freemius.php:17174
341
- msgid "Start Trial"
342
- msgstr "Začít Trial"
343
-
344
- #: includes/class-freemius.php:17176
345
- msgid "Pricing"
346
- msgstr "Ceník"
347
-
348
- #: includes/class-freemius.php17256, includes/class-freemius.php:17258
349
- msgid "Affiliation"
350
- msgstr "Affiliation"
351
-
352
- #: includes/class-freemius.php17286, includes/class-freemius.php17288,
353
- #: templates/account.php183, templates/debug.php:326
354
- msgid "Account"
355
- msgstr "Účet"
356
-
357
- #: includes/class-freemius.php17302, includes/class-freemius.php17304,
358
- #: includes/customizer/class-fs-customizer-support-section.php:60
359
- msgid "Contact Us"
360
- msgstr "Support"
361
-
362
- #: includes/class-freemius.php17315, includes/class-freemius.php17317,
363
- #: includes/class-freemius.php22096, templates/account.php111,
364
- #: templates/account/partials/addon.php:44
365
- msgid "Add-Ons"
366
- msgstr "Doplňky"
367
-
368
- #: includes/class-freemius.php:17351
369
- msgctxt "ASCII arrow left icon"
370
- msgid "&#x2190;"
371
- msgstr "&#x2190;"
372
-
373
- #: includes/class-freemius.php:17351
374
- msgctxt "ASCII arrow right icon"
375
- msgid "&#x27a4;"
376
- msgstr "&#x27a4;"
377
-
378
- #: includes/class-freemius.php17353, templates/pricing.php:103
379
- msgctxt "noun"
380
- msgid "Pricing"
381
- msgstr "Ceník"
382
-
383
- #: includes/class-freemius.php17566,
384
- #: includes/customizer/class-fs-customizer-support-section.php:67
385
- msgid "Support Forum"
386
- msgstr "Fórum podpory"
387
-
388
- #: includes/class-freemius.php:18536
389
- msgid "Your email has been successfully verified - you are AWESOME!"
390
- msgstr "Your email has been successfully verified - you are AWESOME!"
391
-
392
- #: includes/class-freemius.php:18537
393
- msgctxt "a positive response"
394
- msgid "Right on"
395
- msgstr "Right on"
396
-
397
- #: includes/class-freemius.php:19041
398
- msgid "seems like the key you entered doesn't match our records."
399
- msgstr "seems like the key you entered doesn't match our records."
400
-
401
- #: includes/class-freemius.php:19065
402
- msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
403
- msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
404
-
405
- #: includes/class-freemius.php:19283
406
- msgid "Your %s Add-on plan was successfully upgraded."
407
- msgstr "Your %s Add-on plan was successfully upgraded."
408
-
409
- #: includes/class-freemius.php:19285
410
- msgid "%s Add-on was successfully purchased."
411
- msgstr "Rozšíření %s bylo úspěšně zakoupeno."
412
-
413
- #: includes/class-freemius.php:19288
414
- msgid "Download the latest version"
415
- msgstr "Stáhnout nejnovější verzi"
416
-
417
- #: includes/class-freemius.php:19374
418
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
419
- msgstr "Váš server blokuje přístup k Freemium API, což je zásadní pro synchronizaci %1s. Obraťte se na svého poskytovatele , aby přidal do svého whitelistu %2s"
420
-
421
- #: includes/class-freemius.php19380, includes/class-freemius.php19390,
422
- #: includes/class-freemius.php19835, includes/class-freemius.php:19924
423
- msgid "Error received from the server:"
424
- msgstr "Chyba přijatá ze serveru:"
425
-
426
- #: includes/class-freemius.php:19390
427
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
428
- msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
429
-
430
- #: includes/class-freemius.php19604, includes/class-freemius.php19840,
431
- #: includes/class-freemius.php19895, includes/class-freemius.php:19998
432
- msgctxt ""
433
- msgid "Hmm"
434
- msgstr "Hmm"
435
-
436
- #: includes/class-freemius.php:19617
437
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
438
- msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
439
-
440
- #: includes/class-freemius.php19618, templates/account.php113,
441
- #: templates/add-ons.php250, templates/account/partials/addon.php:46
442
- msgctxt "trial period"
443
- msgid "Trial"
444
- msgstr "Trial"
445
-
446
- #: includes/class-freemius.php:19623
447
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
448
- msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
449
-
450
- #: includes/class-freemius.php19627, includes/class-freemius.php:19686
451
- msgid "Please contact us here"
452
- msgstr "Kontaktujte nás prosím zde"
453
-
454
- #: includes/class-freemius.php:19638
455
- msgid "Your plan was successfully activated."
456
- msgstr "Vaše licence byla úspěšně aktivována."
457
-
458
- #: includes/class-freemius.php:19639
459
- msgid "Your plan was successfully upgraded."
460
- msgstr "Váš plán byl úspěšně aktualizován."
461
-
462
- #: includes/class-freemius.php:19656
463
- msgid "Your plan was successfully changed to %s."
464
- msgstr "Váše předplatné bylo úspěšně změněn na %s."
465
-
466
- #: includes/class-freemius.php:19672
467
- msgid "Your license has expired. You can still continue using the free %s forever."
468
- msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení."
469
-
470
- #: includes/class-freemius.php:19674
471
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
472
- msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení."
473
-
474
- #: includes/class-freemius.php:19682
475
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
476
- msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu."
477
-
478
- #: includes/class-freemius.php:19695
479
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
480
- msgstr "Vaše licence vypršela. Stále však můžete používat všechny funkce verze %s, ale pro získání technické podpory a nejnovějších aktualizací budete muset obnovit svou licenci."
481
-
482
- #: includes/class-freemius.php:19721
483
- msgid "Your free trial has expired. You can still continue using all our free features."
484
- msgstr "Your free trial has expired. You can still continue using all our free features."
485
-
486
- #: includes/class-freemius.php:19723
487
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
488
- msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
-
490
- #: includes/class-freemius.php:19831
491
- msgid "It looks like the license could not be activated."
492
- msgstr "Licenci se nepodařilo aktivovat."
493
-
494
- #: includes/class-freemius.php:19873
495
- msgid "Your license was successfully activated."
496
- msgstr "Vaše licence byla úspěšně aktivována."
497
-
498
- #: includes/class-freemius.php:19899
499
- msgid "It looks like your site currently doesn't have an active license."
500
- msgstr "It looks like your site currently doesn't have an active license."
501
-
502
- #: includes/class-freemius.php:19923
503
- msgid "It looks like the license deactivation failed."
504
- msgstr "Deaktivace licence pravděpodobně selhala."
505
-
506
- #: includes/class-freemius.php:19951
507
- msgid "Your license was successfully deactivated, you are back to the %s plan."
508
- msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s."
509
-
510
- #: includes/class-freemius.php:19952
511
- msgid "O.K"
512
- msgstr "OK"
513
-
514
- #: includes/class-freemius.php:20005
515
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
516
- msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
517
-
518
- #: includes/class-freemius.php:20014
519
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
520
- msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s."
521
-
522
- #: includes/class-freemius.php:20056
523
- msgid "You are already running the %s in a trial mode."
524
- msgstr "You are already running the %s in a trial mode."
525
-
526
- #: includes/class-freemius.php:20067
527
- msgid "You already utilized a trial before."
528
- msgstr "O zkušební licenci nelze žádat dvakrát."
529
-
530
- #: includes/class-freemius.php:20081
531
- msgid "Plan %s do not exist, therefore, can't start a trial."
532
- msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi."
533
-
534
- #: includes/class-freemius.php:20092
535
- msgid "Plan %s does not support a trial period."
536
- msgstr "Plán %s nepodporuje zkušební období."
537
-
538
- #: includes/class-freemius.php:20103
539
- msgid "None of the %s's plans supports a trial period."
540
- msgstr "None of the %s's plans supports a trial period."
541
-
542
- #: includes/class-freemius.php:20153
543
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
544
- msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)"
545
-
546
- #: includes/class-freemius.php:20189
547
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
548
- msgstr "Omlouváme se, ale měli jsme nějaký dočasný problém se zrušením vaší zkušební licence. Zkuste to znovu za několik minut."
549
-
550
- #: includes/class-freemius.php:20208
551
- msgid "Your %s free trial was successfully cancelled."
552
- msgstr "Your %s free trial was successfully cancelled."
553
-
554
- #: includes/class-freemius.php:20524
555
- msgid "Version %s was released."
556
- msgstr "Byla vydána verze %s."
557
-
558
- #: includes/class-freemius.php:20524
559
- msgid "Please download %s."
560
- msgstr "Stáhněte si prosím %s."
561
-
562
- #: includes/class-freemius.php:20531
563
- msgid "the latest %s version here"
564
- msgstr "nejnovější %s verze zde"
565
-
566
- #: includes/class-freemius.php:20536
567
- msgid "New"
568
- msgstr "Nový"
569
-
570
- #: includes/class-freemius.php:20541
571
- msgid "Seems like you got the latest release."
572
- msgstr "Pravděpodobně máte nejnovější verzi."
573
-
574
- #: includes/class-freemius.php:20542
575
- msgid "You are all good!"
576
- msgstr "You are all good!"
577
-
578
- #: includes/class-freemius.php:20812
579
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
580
- msgstr "Ověřovací zpráva byla právě odeslána na email %s. Pokud ji nenajdete do 5 min, zkontrolujte prosím složku pro spam."
581
-
582
- #: includes/class-freemius.php:20951
583
- msgid "Site successfully opted in."
584
- msgstr "Site successfully opted in."
585
-
586
- #: includes/class-freemius.php20952, includes/class-freemius.php:21792
587
- msgid "Awesome"
588
- msgstr "Úžasný"
589
-
590
- #: includes/class-freemius.php20968, templates/forms/optout.php:32
591
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
592
- msgstr "Vážíme si vaší pomoci při zlepšování %s tím, že nám umožníte sledovat některá data o jeho používání."
593
-
594
- #: includes/class-freemius.php:20969
595
- msgid "Thank you!"
596
- msgstr "Děkujeme!"
597
-
598
- #: includes/class-freemius.php:20976
599
- msgid "We will no longer be sending any usage data of %s on %s to %s."
600
- msgstr "Nebudeme již posílat žádná data o používání %s na %s do %s."
601
-
602
- #: includes/class-freemius.php:21105
603
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
604
- msgstr "Zkontrolujte si prosím emailovou schránku, měli byste obdržet zprávu od %s pro potvrzení změny vlastnictví. Z bezpečnostních důvodů je nutné potvrdit tuto změnu během následujících 15 minut. Pokud email nemůžete najít, zkontrolujte složku se spamem."
605
-
606
- #: includes/class-freemius.php:21111
607
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
608
- msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení."
609
-
610
- #: includes/class-freemius.php:21116
611
- msgid "%s is the new owner of the account."
612
- msgstr "%s je nový vlastník účtu."
613
-
614
- #: includes/class-freemius.php:21118
615
- msgctxt "as congratulations"
616
- msgid "Congrats"
617
- msgstr "Gratulujeme"
618
-
619
- #: includes/class-freemius.php:21138
620
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
621
- msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován."
622
-
623
- #: includes/class-freemius.php:21139
624
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
625
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
626
-
627
- #: includes/class-freemius.php:21146
628
- msgid "Change Ownership"
629
- msgstr "Změnit vlastnictví"
630
-
631
- #: includes/class-freemius.php:21154
632
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
633
- msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
634
-
635
- #: includes/class-freemius.php:21166
636
- msgid "Please provide your full name."
637
- msgstr "Zadejte prosím své celé jméno."
638
-
639
- #: includes/class-freemius.php:21171
640
- msgid "Your name was successfully updated."
641
- msgstr "Vaše jméno bylo úspěšně aktualizováno."
642
-
643
- #: includes/class-freemius.php:21232
644
- msgid "You have successfully updated your %s."
645
- msgstr "Úspěšně jste aktualizovali %s."
646
-
647
- #: includes/class-freemius.php:21372
648
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
649
- msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
650
-
651
- #: includes/class-freemius.php:21373
652
- msgctxt "advance notice of something that will need attention."
653
- msgid "Heads up"
654
- msgstr "Heads up"
655
-
656
- #: includes/class-freemius.php:21832
657
- msgctxt "exclamation"
658
- msgid "Hey"
659
- msgstr "Dobrý den"
660
-
661
- #: includes/class-freemius.php:21832
662
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
663
- msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma."
664
-
665
- #: includes/class-freemius.php:21840
666
- msgid "No commitment for %s days - cancel anytime!"
667
- msgstr "No commitment for %s days - cancel anytime!"
668
-
669
- #: includes/class-freemius.php:21841
670
- msgid "No credit card required"
671
- msgstr "Kreditní karta není vyžadována"
672
-
673
- #: includes/class-freemius.php21848, templates/forms/trial-start.php:53
674
- msgctxt "call to action"
675
- msgid "Start free trial"
676
- msgstr "Start free trial"
677
-
678
- #: includes/class-freemius.php:21925
679
- msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
680
- msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
681
-
682
- #: includes/class-freemius.php:21934
683
- msgid "Learn more"
684
- msgstr "Přečtěte si více"
685
-
686
- #: includes/class-freemius.php22120, templates/account.php499,
687
- #: templates/account.php624, templates/connect.php171,
688
- #: templates/connect.php421, templates/forms/license-activation.php27,
689
- #: templates/account/partials/addon.php:321
690
- msgid "Activate License"
691
- msgstr "Aktivovat licenci"
692
-
693
- #: includes/class-freemius.php22121, templates/account.php571,
694
- #: templates/account.php623, templates/account/partials/addon.php322,
695
- #: templates/account/partials/site.php:271
696
- msgid "Change License"
697
- msgstr "Změnit licenci"
698
-
699
- #: includes/class-freemius.php22217, templates/account/partials/site.php:169
700
- msgid "Opt Out"
701
- msgstr "Odhlásit se"
702
-
703
- #: includes/class-freemius.php22219, includes/class-freemius.php22225,
704
- #: templates/account/partials/site.php49,
705
- #: templates/account/partials/site.php:169
706
- msgid "Opt In"
707
- msgstr "Zúčastnit se"
708
-
709
- #: includes/class-freemius.php:22453
710
- msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
711
- msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s"
712
-
713
- #: includes/class-freemius.php:22461
714
- msgid "Activate %s features"
715
- msgstr "Aktivovat %s funkce"
716
-
717
- #: includes/class-freemius.php:22474
718
- msgid "Please follow these steps to complete the upgrade"
719
- msgstr "Dokončete upgrade provedením následujících kroků"
720
-
721
- #: includes/class-freemius.php:22478
722
- msgid "Download the latest %s version"
723
- msgstr "Stáhnout nejnovější verzi %s"
724
-
725
- #: includes/class-freemius.php:22482
726
- msgid "Upload and activate the downloaded version"
727
- msgstr "Nahrát a aktivovat stáhnutou verzi"
728
-
729
- #: includes/class-freemius.php:22484
730
- msgid "How to upload and activate?"
731
- msgstr "Jak nahrát a aktivovat?"
732
-
733
- #: includes/class-freemius.php:22618
734
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
735
- msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
736
-
737
- #: includes/class-freemius.php:22779
738
- msgid "Auto installation only works for opted-in users."
739
- msgstr "Auto installation only works for opted-in users."
740
-
741
- #: includes/class-freemius.php22789, includes/class-freemius.php22822,
742
- #: includes/class-fs-plugin-updater.php1212,
743
- #: includes/class-fs-plugin-updater.php:1226
744
- msgid "Invalid module ID."
745
- msgstr "Invalid module ID."
746
-
747
- #: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248
748
- msgid "Premium version already active."
749
- msgstr "Prémiová verze je již aktivní."
750
-
751
- #: includes/class-freemius.php:22805
752
- msgid "You do not have a valid license to access the premium version."
753
- msgstr "You do not have a valid license to access the premium version."
754
-
755
- #: includes/class-freemius.php:22812
756
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
757
- msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
758
-
759
- #: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247
760
- msgid "Premium add-on version already installed."
761
- msgstr "Premium add-on version already installed."
762
-
763
- #: includes/class-freemius.php:23180
764
- msgid "View paid features"
765
- msgstr "Zobrazit placené funkce"
766
-
767
- #: includes/class-freemius.php:23502
768
- msgid "Thank you so much for using %s and its add-ons!"
769
- msgstr "Thank you so much for using %s and its add-ons!"
770
-
771
- #: includes/class-freemius.php:23503
772
- msgid "Thank you so much for using %s!"
773
- msgstr "Thank you so much for using %s!"
774
-
775
- #: includes/class-freemius.php:23509
776
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
777
- msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
778
-
779
- #: includes/class-freemius.php:23513
780
- msgid "Thank you so much for using our products!"
781
- msgstr "Thank you so much for using our products!"
782
-
783
- #: includes/class-freemius.php:23514
784
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
785
- msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
786
-
787
- #: includes/class-freemius.php:23533
788
- msgid "%s and its add-ons"
789
- msgstr "%s a jeho doplňky"
790
-
791
- #: includes/class-freemius.php:23542
792
- msgid "Products"
793
- msgstr "Produkty"
794
-
795
- #: includes/class-freemius.php23549, templates/connect.php:272
796
- msgid "Yes"
797
- msgstr "Ano"
798
-
799
- #: includes/class-freemius.php23550, templates/connect.php:273
800
- msgid "send me security & feature updates, educational content and offers."
801
- msgstr "send me security & feature updates, educational content and offers."
802
-
803
- #: includes/class-freemius.php23551, templates/connect.php:278
804
- msgid "No"
805
- msgstr "Ne"
806
-
807
- #: includes/class-freemius.php23553, templates/connect.php:280
808
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
809
- msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
810
-
811
- #: includes/class-freemius.php:23563
812
- msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)"
813
- msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)"
814
-
815
- #: includes/class-freemius.php23565, templates/connect.php:287
816
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
817
- msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
818
-
819
- #: includes/class-freemius.php:23847
820
- msgid "License key is empty."
821
- msgstr "Licenční klíč je prázdný."
822
-
823
- #: includes/class-fs-plugin-updater.php206,
824
- #: templates/forms/premium-versions-upgrade-handler.php:57
825
- msgid "Renew license"
826
- msgstr "Obnovit licenci"
827
-
828
- #: includes/class-fs-plugin-updater.php211,
829
- #: templates/forms/premium-versions-upgrade-handler.php:58
830
- msgid "Buy license"
831
- msgstr "Koupit licenci"
832
-
833
- #: includes/class-fs-plugin-updater.php321,
834
- #: includes/class-fs-plugin-updater.php:354
835
- msgid "There is a %s of %s available."
836
- msgstr "There is a %s of %s available."
837
-
838
- #: includes/class-fs-plugin-updater.php323,
839
- #: includes/class-fs-plugin-updater.php:359
840
- msgid "new Beta version"
841
- msgstr "nová Beta verze"
842
-
843
- #: includes/class-fs-plugin-updater.php324,
844
- #: includes/class-fs-plugin-updater.php:360
845
- msgid "new version"
846
- msgstr "nová verze"
847
-
848
- #: includes/class-fs-plugin-updater.php:383
849
- msgid "Important Upgrade Notice:"
850
- msgstr "Important Upgrade Notice:"
851
-
852
- #: includes/class-fs-plugin-updater.php:1277
853
- msgid "Installing plugin: %s"
854
- msgstr "Instaluji plugin: %s"
855
-
856
- #: includes/class-fs-plugin-updater.php:1318
857
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
858
- msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření."
859
-
860
- #: includes/class-fs-plugin-updater.php:1500
861
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
862
- msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje."
863
-
864
- #: includes/fs-plugin-info-dialog.php:535
865
- msgid "Purchase More"
866
- msgstr "Zakoupit další"
867
-
868
- #: includes/fs-plugin-info-dialog.php536,
869
- #: templates/account/partials/addon.php:385
870
- msgctxt "verb"
871
- msgid "Purchase"
872
- msgstr "Zakoupit"
873
-
874
- #: includes/fs-plugin-info-dialog.php:540
875
- msgid "Start my free %s"
876
- msgstr "Začít můj bezplatný %s"
877
-
878
- #: includes/fs-plugin-info-dialog.php:738
879
- msgid "Install Free Version Update Now"
880
- msgstr "Install Free Version Update Now"
881
-
882
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:560
883
- msgid "Install Update Now"
884
- msgstr "Nainstalovat aktualizaci"
885
-
886
- #: includes/fs-plugin-info-dialog.php:748
887
- msgid "Install Free Version Now"
888
- msgstr "Nainstalovat verzi zdarma"
889
-
890
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
891
- #: templates/auto-installation.php111,
892
- #: templates/account/partials/addon.php365,
893
- #: templates/account/partials/addon.php:418
894
- msgid "Install Now"
895
- msgstr "Instalovat"
896
-
897
- #: includes/fs-plugin-info-dialog.php:765
898
- msgctxt "as download latest version"
899
- msgid "Download Latest Free Version"
900
- msgstr "Stáhněte si nejnovější bezplatnou verzi"
901
-
902
- #: includes/fs-plugin-info-dialog.php766, templates/account.php91,
903
- #: templates/add-ons.php37, templates/account/partials/addon.php:25
904
- msgctxt "as download latest version"
905
- msgid "Download Latest"
906
- msgstr "Stáhněte si nejnovější"
907
-
908
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
909
- #: templates/account/partials/addon.php356,
910
- #: templates/account/partials/addon.php:412
911
- msgid "Activate this add-on"
912
- msgstr "Aktivovat toto rozšíření"
913
-
914
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:418
915
- msgid "Activate Free Version"
916
- msgstr "Aktivovat bezplatnou verzi"
917
-
918
- #: includes/fs-plugin-info-dialog.php784, templates/account.php115,
919
- #: templates/add-ons.php330, templates/account/partials/addon.php:48
920
- msgid "Activate"
921
- msgstr "Aktivovat"
922
-
923
- #: includes/fs-plugin-info-dialog.php:994
924
- msgctxt "Plugin installer section title"
925
- msgid "Description"
926
- msgstr "Popis"
927
-
928
- #: includes/fs-plugin-info-dialog.php:995
929
- msgctxt "Plugin installer section title"
930
- msgid "Installation"
931
- msgstr "Instalace"
932
-
933
- #: includes/fs-plugin-info-dialog.php:996
934
- msgctxt "Plugin installer section title"
935
- msgid "FAQ"
936
- msgstr "FAQ"
937
-
938
- #: includes/fs-plugin-info-dialog.php997,
939
- #: templates/plugin-info/description.php:55
940
- msgid "Screenshots"
941
- msgstr "Snímky obrazovky"
942
-
943
- #: includes/fs-plugin-info-dialog.php:998
944
- msgctxt "Plugin installer section title"
945
- msgid "Changelog"
946
- msgstr "Historie změn"
947
-
948
- #: includes/fs-plugin-info-dialog.php:999
949
- msgctxt "Plugin installer section title"
950
- msgid "Reviews"
951
- msgstr "Vaše hodnocení"
952
-
953
- #: includes/fs-plugin-info-dialog.php:1000
954
- msgctxt "Plugin installer section title"
955
- msgid "Other Notes"
956
- msgstr "Other Notes"
957
-
958
- #: includes/fs-plugin-info-dialog.php:1015
959
- msgctxt "Plugin installer section title"
960
- msgid "Features & Pricing"
961
- msgstr "Vlastnosti a ceník"
962
-
963
- #: includes/fs-plugin-info-dialog.php:1025
964
- msgid "Plugin Install"
965
- msgstr "Instalace pluginu"
966
-
967
- #: includes/fs-plugin-info-dialog.php:1097
968
- msgctxt "e.g. Professional Plan"
969
- msgid "%s Plan"
970
- msgstr "%s plán"
971
-
972
- #: includes/fs-plugin-info-dialog.php:1123
973
- msgctxt "e.g. the best product"
974
- msgid "Best"
975
- msgstr "Nejlepší"
976
-
977
- #: includes/fs-plugin-info-dialog.php1129,
978
- #: includes/fs-plugin-info-dialog.php:1149
979
- msgctxt "as every month"
980
- msgid "Monthly"
981
- msgstr "Měsíčně"
982
-
983
- #: includes/fs-plugin-info-dialog.php:1132
984
- msgctxt "as once a year"
985
- msgid "Annual"
986
- msgstr "Ročně"
987
-
988
- #: includes/fs-plugin-info-dialog.php:1135
989
- msgid "Lifetime"
990
- msgstr "Doživotní"
991
-
992
- #: includes/fs-plugin-info-dialog.php1149,
993
- #: includes/fs-plugin-info-dialog.php1151,
994
- #: includes/fs-plugin-info-dialog.php:1153
995
- msgctxt "e.g. billed monthly"
996
- msgid "Billed %s"
997
- msgstr "Účtováno %s"
998
-
999
- #: includes/fs-plugin-info-dialog.php:1151
1000
- msgctxt "as once a year"
1001
- msgid "Annually"
1002
- msgstr "Ročně"
1003
-
1004
- #: includes/fs-plugin-info-dialog.php:1153
1005
- msgctxt "as once a year"
1006
- msgid "Once"
1007
- msgstr "Jedenkrát"
1008
-
1009
- #: includes/fs-plugin-info-dialog.php:1159
1010
- msgid "Single Site License"
1011
- msgstr "Single Site License"
1012
-
1013
- #: includes/fs-plugin-info-dialog.php:1161
1014
- msgid "Unlimited Licenses"
1015
- msgstr "Unlimited Licenses"
1016
-
1017
- #: includes/fs-plugin-info-dialog.php:1163
1018
- msgid "Up to %s Sites"
1019
- msgstr "Až pro %s webů"
1020
-
1021
- #: includes/fs-plugin-info-dialog.php1173,
1022
- #: templates/plugin-info/features.php:82
1023
- msgctxt "as monthly period"
1024
- msgid "mo"
1025
- msgstr "po"
1026
-
1027
- #: includes/fs-plugin-info-dialog.php1180,
1028
- #: templates/plugin-info/features.php:80
1029
- msgctxt "as annual period"
1030
- msgid "year"
1031
- msgstr "rok"
1032
-
1033
- #: includes/fs-plugin-info-dialog.php:1234
1034
- msgctxt "noun"
1035
- msgid "Price"
1036
- msgstr "Cena"
1037
-
1038
- #: includes/fs-plugin-info-dialog.php:1282
1039
- msgid "Save %s"
1040
- msgstr "Uložit %s"
1041
-
1042
- #: includes/fs-plugin-info-dialog.php:1292
1043
- msgid "No commitment for %s - cancel anytime"
1044
- msgstr "No commitment for %s - cancel anytime"
1045
-
1046
- #: includes/fs-plugin-info-dialog.php:1295
1047
- msgid "After your free %s, pay as little as %s"
1048
- msgstr "Po bezplatné %s platit jen v %s"
1049
-
1050
- #: includes/fs-plugin-info-dialog.php:1306
1051
- msgid "Details"
1052
- msgstr "Detaily"
1053
-
1054
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php102,
1055
- #: templates/debug.php203, templates/debug.php240, templates/debug.php457,
1056
- #: templates/account/partials/addon.php:36
1057
- msgctxt "product version"
1058
- msgid "Version"
1059
- msgstr "Verze"
1060
-
1061
- #: includes/fs-plugin-info-dialog.php:1317
1062
- msgctxt "as the plugin author"
1063
- msgid "Author"
1064
- msgstr "Autor"
1065
-
1066
- #: includes/fs-plugin-info-dialog.php:1324
1067
- msgid "Last Updated"
1068
- msgstr "Poslední aktualizace"
1069
-
1070
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:468
1071
- msgctxt "x-ago"
1072
- msgid "%s ago"
1073
- msgstr "Před %s"
1074
-
1075
- #: includes/fs-plugin-info-dialog.php:1338
1076
- msgid "Requires WordPress Version"
1077
- msgstr "Vyžaduje verzi WordPress"
1078
-
1079
- #: includes/fs-plugin-info-dialog.php:1339
1080
- msgid "%s or higher"
1081
- msgstr "%s nebo vyšší"
1082
-
1083
- #: includes/fs-plugin-info-dialog.php:1346
1084
- msgid "Compatible up to"
1085
- msgstr "Kompatibilní až po"
1086
-
1087
- #: includes/fs-plugin-info-dialog.php:1354
1088
- msgid "Downloaded"
1089
- msgstr "Staženo"
1090
-
1091
- #: includes/fs-plugin-info-dialog.php:1358
1092
- msgid "%s time"
1093
- msgstr "%s krát"
1094
-
1095
- #: includes/fs-plugin-info-dialog.php:1360
1096
- msgid "%s times"
1097
- msgstr "%s krát"
1098
-
1099
- #: includes/fs-plugin-info-dialog.php:1370
1100
- msgid "WordPress.org Plugin Page"
1101
- msgstr "Název pluginu na WordPress.org"
1102
-
1103
- #: includes/fs-plugin-info-dialog.php:1378
1104
- msgid "Plugin Homepage"
1105
- msgstr "Hlavní stránka pluginu"
1106
-
1107
- #: includes/fs-plugin-info-dialog.php1386,
1108
- #: includes/fs-plugin-info-dialog.php:1468
1109
- msgid "Donate to this plugin"
1110
- msgstr "Přispějte na tento plugin"
1111
-
1112
- #: includes/fs-plugin-info-dialog.php:1393
1113
- msgid "Average Rating"
1114
- msgstr "Průměrné hodnocení"
1115
-
1116
- #: includes/fs-plugin-info-dialog.php:1400
1117
- msgid "based on %s"
1118
- msgstr "založeno na %s"
1119
-
1120
- #: includes/fs-plugin-info-dialog.php:1404
1121
- msgid "%s rating"
1122
- msgstr "%s hodnocení"
1123
-
1124
- #: includes/fs-plugin-info-dialog.php:1406
1125
- msgid "%s ratings"
1126
- msgstr "%s hodnocení"
1127
-
1128
- #: includes/fs-plugin-info-dialog.php:1421
1129
- msgid "%s star"
1130
- msgstr "%s hvězda"
1131
-
1132
- #: includes/fs-plugin-info-dialog.php:1423
1133
- msgid "%s stars"
1134
- msgstr "%s hvězd"
1135
-
1136
- #: includes/fs-plugin-info-dialog.php:1434
1137
- msgid "Click to see reviews that provided a rating of %s"
1138
- msgstr "Click to see reviews that provided a rating of %s"
1139
-
1140
- #: includes/fs-plugin-info-dialog.php:1447
1141
- msgid "Contributors"
1142
- msgstr "Přispěvatelé"
1143
-
1144
- #: includes/fs-plugin-info-dialog.php1476,
1145
- #: includes/fs-plugin-info-dialog.php:1478
1146
- msgid "Warning"
1147
- msgstr "Varování"
1148
-
1149
- #: includes/fs-plugin-info-dialog.php:1476
1150
- msgid "This plugin has not been tested with your current version of WordPress."
1151
- msgstr "This plugin has not been tested with your current version of WordPress."
1152
-
1153
- #: includes/fs-plugin-info-dialog.php:1478
1154
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1155
- msgstr "This plugin has not been marked as compatible with your version of WordPress."
1156
-
1157
- #: includes/fs-plugin-info-dialog.php:1497
1158
- msgid "Paid add-on must be deployed to Freemius."
1159
- msgstr "Placený doplněk musí být nasazen na Freemius."
1160
-
1161
- #: includes/fs-plugin-info-dialog.php:1498
1162
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1163
- msgstr "Rozšíření musí být nasazeno na WordPress.org nebo na Freemius."
1164
-
1165
- #: includes/fs-plugin-info-dialog.php:1519
1166
- msgid "Newer Version (%s) Installed"
1167
- msgstr "Novější verze (%s) nainstalována"
1168
-
1169
- #: includes/fs-plugin-info-dialog.php:1520
1170
- msgid "Newer Free Version (%s) Installed"
1171
- msgstr "Novější verze zdarma (%s) nainstalována"
1172
-
1173
- #: includes/fs-plugin-info-dialog.php:1527
1174
- msgid "Latest Version Installed"
1175
- msgstr "Nainstalována nejnovější verze"
1176
-
1177
- #: includes/fs-plugin-info-dialog.php:1528
1178
- msgid "Latest Free Version Installed"
1179
- msgstr "Nainstalována nejnovější verze zdarma"
1180
-
1181
- #: templates/account.php92, templates/forms/subscription-cancellation.php96,
1182
- #: templates/account/partials/addon.php26,
1183
- #: templates/account/partials/site.php:311
1184
- msgid "Downgrading your plan"
1185
- msgstr "Snižuji vaše předplatné"
1186
-
1187
- #: templates/account.php93, templates/forms/subscription-cancellation.php97,
1188
- #: templates/account/partials/addon.php27,
1189
- #: templates/account/partials/site.php:312
1190
- msgid "Cancelling the subscription"
1191
- msgstr "Ruším předplatné"
1192
-
1193
- #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1194
- #. subscription'
1195
- #: templates/account.php95, templates/forms/subscription-cancellation.php99,
1196
- #: templates/account/partials/site.php:314
1197
- msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1198
- msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s."
1199
-
1200
- #: templates/account.php96, templates/forms/subscription-cancellation.php100,
1201
- #: templates/account/partials/addon.php30,
1202
- #: templates/account/partials/site.php:315
1203
- msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1204
- msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1205
-
1206
- #: templates/account.php97, templates/forms/subscription-cancellation.php106,
1207
- #: templates/account/partials/addon.php:31
1208
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1209
- msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?"
1210
-
1211
- #: templates/account.php98, templates/forms/subscription-cancellation.php101,
1212
- #: templates/account/partials/addon.php32,
1213
- #: templates/account/partials/site.php:316
1214
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1215
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1216
-
1217
- #: templates/account.php99, templates/forms/subscription-cancellation.php102,
1218
- #: templates/account/partials/addon.php33,
1219
- #: templates/account/partials/site.php:317
1220
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1221
- msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1222
-
1223
- #. translators: %s: Plan title (e.g. "Professional")
1224
- #: templates/account.php101,
1225
- #: templates/account/partials/activate-license-button.php31,
1226
- #: templates/account/partials/addon.php:35
1227
- msgid "Activate %s Plan"
1228
- msgstr "Aktivovat %s plán"
1229
-
1230
- #. translators: %s: Time period (e.g. Auto renews in "2 months")
1231
- #: templates/account.php104, templates/account/partials/addon.php38,
1232
- #: templates/account/partials/site.php:291
1233
- msgid "Auto renews in %s"
1234
- msgstr "Automaticky se obnoví za %s"
1235
-
1236
- #. translators: %s: Time period (e.g. Expires in "2 months")
1237
- #: templates/account.php106, templates/account/partials/addon.php40,
1238
- #: templates/account/partials/site.php:293
1239
- msgid "Expires in %s"
1240
- msgstr "Vyprší za %s"
1241
-
1242
- #: templates/account.php:107
1243
- msgctxt "as synchronize license"
1244
- msgid "Sync License"
1245
- msgstr "Synchronizovat licence"
1246
-
1247
- #: templates/account.php108, templates/account/partials/addon.php:41
1248
- msgid "Cancel Trial"
1249
- msgstr "Zrušit zkušební verzi"
1250
-
1251
- #: templates/account.php109, templates/account/partials/addon.php:42
1252
- msgid "Change Plan"
1253
- msgstr "Změnit plán"
1254
-
1255
- #: templates/account.php110, templates/account/partials/addon.php:43
1256
- msgctxt "verb"
1257
- msgid "Upgrade"
1258
- msgstr "Vylepšit"
1259
-
1260
- #: templates/account.php112, templates/account/partials/addon.php45,
1261
- #: templates/account/partials/site.php:318
1262
- msgctxt "verb"
1263
- msgid "Downgrade"
1264
- msgstr "Přejít na nižší verzi"
1265
-
1266
- #: templates/account.php114, templates/add-ons.php246,
1267
- #: templates/plugin-info/features.php72,
1268
- #: templates/account/partials/addon.php47,
1269
- #: templates/account/partials/site.php:33
1270
- msgid "Free"
1271
- msgstr "Zdarma"
1272
-
1273
- #: templates/account.php116, templates/debug.php373,
1274
- #: includes/customizer/class-fs-customizer-upsell-control.php110,
1275
- #: templates/account/partials/addon.php:49
1276
- msgctxt "as product pricing plan"
1277
- msgid "Plan"
1278
- msgstr "Druh členství"
1279
-
1280
- #: templates/account.php:117
1281
- msgid "Bundle Plan"
1282
- msgstr "Bundle Plan"
1283
-
1284
- #: templates/account.php:191
1285
- msgid "Free Trial"
1286
- msgstr "Zkušební verze zdarma"
1287
-
1288
- #: templates/account.php:202
1289
- msgid "Account Details"
1290
- msgstr "Detaily účtu"
1291
-
1292
- #: templates/account.php209, templates/forms/data-debug-mode.php:33
1293
- msgid "Start Debug"
1294
- msgstr "Start Debug"
1295
-
1296
- #: templates/account.php:211
1297
- msgid "Stop Debug"
1298
- msgstr "Stop Debug"
1299
-
1300
- #: templates/account.php:218
1301
- msgid "Billing & Invoices"
1302
- msgstr "Billing & Invoices"
1303
-
1304
- #: templates/account.php:229
1305
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1306
- msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1307
-
1308
- #: templates/account.php:231
1309
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1310
- msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1311
-
1312
- #: templates/account.php:234
1313
- msgid "Delete Account"
1314
- msgstr "Smazat účet"
1315
-
1316
- #: templates/account.php246, templates/account/partials/addon.php231,
1317
- #: templates/account/partials/deactivate-license-button.php:35
1318
- msgid "Deactivate License"
1319
- msgstr "Deaktivovat licenci"
1320
-
1321
- #: templates/account.php269, templates/forms/subscription-cancellation.php:125
1322
- msgid "Are you sure you want to proceed?"
1323
- msgstr "Opravdu chcete pokračovat?"
1324
-
1325
- #: templates/account.php269, templates/account/partials/addon.php:255
1326
- msgid "Cancel Subscription"
1327
- msgstr "Zrušit předplatné"
1328
-
1329
- #: templates/account.php298, templates/account/partials/addon.php:340
1330
- msgctxt "as synchronize"
1331
- msgid "Sync"
1332
- msgstr "Synchronizovat"
1333
-
1334
- #: templates/account.php313, templates/debug.php:507
1335
- msgid "Name"
1336
- msgstr "Jméno"
1337
-
1338
- #: templates/account.php319, templates/debug.php:508
1339
- msgid "Email"
1340
- msgstr "Email"
1341
-
1342
- #: templates/account.php326, templates/debug.php371, templates/debug.php:557
1343
- msgid "User ID"
1344
- msgstr "ID uživatele"
1345
-
1346
- #: templates/account.php344, templates/account.php637,
1347
- #: templates/account.php682, templates/debug.php238, templates/debug.php365,
1348
- #: templates/debug.php454, templates/debug.php506, templates/debug.php555,
1349
- #: templates/debug.php632, templates/account/payments.php35,
1350
- #: templates/debug/logger.php:21
1351
- msgid "ID"
1352
- msgstr "ID"
1353
-
1354
- #: templates/account.php:351
1355
- msgid "Site ID"
1356
- msgstr "ID stránky"
1357
-
1358
- #: templates/account.php:354
1359
- msgid "No ID"
1360
- msgstr "Žádné ID"
1361
-
1362
- #: templates/account.php359, templates/debug.php245, templates/debug.php374,
1363
- #: templates/debug.php458, templates/debug.php510,
1364
- #: templates/account/partials/site.php:227
1365
- msgid "Public Key"
1366
- msgstr "Veřejný klíč"
1367
-
1368
- #: templates/account.php365, templates/debug.php375, templates/debug.php459,
1369
- #: templates/debug.php511, templates/account/partials/site.php:239
1370
- msgid "Secret Key"
1371
- msgstr "Tajný klíč"
1372
-
1373
- #: templates/account.php:368
1374
- msgctxt "as secret encryption key missing"
1375
- msgid "No Secret"
1376
- msgstr "Tajný klíč chybí"
1377
-
1378
- #: templates/account.php395, templates/account/partials/site.php120,
1379
- #: templates/account/partials/site.php:122
1380
- msgid "Trial"
1381
- msgstr "Zkouška"
1382
-
1383
- #: templates/account.php422, templates/debug.php562,
1384
- #: templates/account/partials/site.php:260
1385
- msgid "License Key"
1386
- msgstr "Licenční klíč"
1387
-
1388
- #: templates/account.php:453
1389
- msgid "Join the Beta program"
1390
- msgstr "Join the Beta program"
1391
-
1392
- #: templates/account.php:459
1393
- msgid "not verified"
1394
- msgstr "není ověřeno"
1395
-
1396
- #: templates/account.php468, templates/account/partials/addon.php:190
1397
- msgid "Expired"
1398
- msgstr "Vypršelo"
1399
-
1400
- #: templates/account.php:528
1401
- msgid "Premium version"
1402
- msgstr "Prémiová verze"
1403
-
1404
- #: templates/account.php:530
1405
- msgid "Free version"
1406
- msgstr "Verze zdarma"
1407
-
1408
- #: templates/account.php:542
1409
- msgid "Verify Email"
1410
- msgstr "Ověřit e-mail"
1411
-
1412
- #: templates/account.php:553
1413
- msgid "Download %s Version"
1414
- msgstr "Stáhnout verzi %s"
1415
-
1416
- #: templates/account.php568, templates/account.php820,
1417
- #: templates/account/partials/site.php248,
1418
- #: templates/account/partials/site.php:270
1419
- msgctxt "verb"
1420
- msgid "Show"
1421
- msgstr "Zobrazit"
1422
-
1423
- #: templates/account.php:583
1424
- msgid "What is your %s?"
1425
- msgstr "Jaké je vaše \"%s\"?"
1426
-
1427
- #: templates/account.php591, templates/account/billing.php:21
1428
- msgctxt "verb"
1429
- msgid "Edit"
1430
- msgstr "Upravit"
1431
-
1432
- #: templates/account.php:616
1433
- msgid "Sites"
1434
- msgstr "Weby"
1435
-
1436
- #: templates/account.php:629
1437
- msgid "Search by address"
1438
- msgstr "Hledat podle adresy"
1439
-
1440
- #: templates/account.php638, templates/debug.php:368
1441
- msgid "Address"
1442
- msgstr "Adresa"
1443
-
1444
- #: templates/account.php:639
1445
- msgid "License"
1446
- msgstr "Licence"
1447
-
1448
- #: templates/account.php:640
1449
- msgid "Plan"
1450
- msgstr "Druh členství"
1451
-
1452
- #: templates/account.php:685
1453
- msgctxt "as software license"
1454
- msgid "License"
1455
- msgstr "Licence"
1456
-
1457
- #: templates/account.php:814
1458
- msgctxt "verb"
1459
- msgid "Hide"
1460
- msgstr "Skrýt"
1461
-
1462
- #: templates/account.php836, templates/forms/data-debug-mode.php:31
1463
- msgid "Processing"
1464
- msgstr "Processing"
1465
-
1466
- #: templates/account.php:839
1467
- msgid "Get updates for bleeding edge Beta versions of %s."
1468
- msgstr "Get updates for bleeding edge Beta versions of %s."
1469
-
1470
- #: templates/account.php:897
1471
- msgid "Cancelling %s"
1472
- msgstr "Ruším %s"
1473
-
1474
- #: templates/account.php897, templates/account.php914,
1475
- #: templates/forms/subscription-cancellation.php27,
1476
- #: templates/forms/deactivation/form.php:133
1477
- msgid "trial"
1478
- msgstr "zkušební"
1479
-
1480
- #: templates/account.php912, templates/forms/deactivation/form.php:150
1481
- msgid "Cancelling %s..."
1482
- msgstr "Ruším %s..."
1483
-
1484
- #: templates/account.php915, templates/forms/subscription-cancellation.php28,
1485
- #: templates/forms/deactivation/form.php:134
1486
- msgid "subscription"
1487
- msgstr "předplatné"
1488
-
1489
- #: templates/account.php:929
1490
- msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1491
- msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1492
-
1493
- #: templates/add-ons.php:38
1494
- msgid "View details"
1495
- msgstr "Zobrazit podrobnosti"
1496
-
1497
- #: templates/add-ons.php:48
1498
- msgid "Add Ons for %s"
1499
- msgstr "Rozšíření pro %s"
1500
-
1501
- #: templates/add-ons.php:58
1502
- msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1503
- msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1504
-
1505
- #: templates/add-ons.php:229
1506
- msgctxt "active add-on"
1507
- msgid "Active"
1508
- msgstr "Active"
1509
-
1510
- #: templates/add-ons.php:230
1511
- msgctxt "installed add-on"
1512
- msgid "Installed"
1513
- msgstr "Installed"
1514
-
1515
- #: templates/admin-notice.php13, templates/forms/license-activation.php207,
1516
- #: templates/forms/resend-key.php:77
1517
- msgctxt "as close a window"
1518
- msgid "Dismiss"
1519
- msgstr "Skrýt"
1520
-
1521
- #: templates/auto-installation.php:45
1522
- msgid "%s sec"
1523
- msgstr "%s s"
1524
-
1525
- #: templates/auto-installation.php:83
1526
- msgid "Automatic Installation"
1527
- msgstr "Automatic Installation"
1528
-
1529
- #: templates/auto-installation.php:93
1530
- 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."
1531
- 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."
1532
-
1533
- #: templates/auto-installation.php:104
1534
- 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."
1535
- msgstr "Proces instalace byl zahájen a může trvat několik minut. Počkejte prosím na dokončení - neobnovujte tuto stránku."
1536
-
1537
- #: templates/auto-installation.php:109
1538
- msgid "Cancel Installation"
1539
- msgstr "Cancel Installation"
1540
-
1541
- #: templates/checkout.php:180
1542
- msgid "Checkout"
1543
- msgstr "Pokladna"
1544
-
1545
- #: templates/checkout.php:180
1546
- msgid "PCI compliant"
1547
- msgstr "Kompatibilní s PCI"
1548
-
1549
- #. translators: %s: name (e.g. Hey John,)
1550
- #: templates/connect.php:112
1551
- msgctxt "greeting"
1552
- msgid "Hey %s,"
1553
- msgstr "Dobrý den %s,"
1554
-
1555
- #: templates/connect.php:154
1556
- msgid "Allow & Continue"
1557
- msgstr "Povolit a pokračovat"
1558
-
1559
- #: templates/connect.php:158
1560
- msgid "Re-send activation email"
1561
- msgstr "Znovu poslat aktivační email"
1562
-
1563
- #: templates/connect.php:162
1564
- msgid "Thanks %s!"
1565
- msgstr "Děkujeme %s!"
1566
-
1567
- #: templates/connect.php172, templates/forms/license-activation.php:46
1568
- msgid "Agree & Activate License"
1569
- msgstr "Aktivovat licenci"
1570
-
1571
- #: templates/connect.php:181
1572
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1573
- msgstr "Děkujeme za nákup %s! Pro aktivaci zadejte prosím svůj licenční klíč:"
1574
-
1575
- #: templates/connect.php:188
1576
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1577
- msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace."
1578
-
1579
- #: templates/connect.php:189
1580
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1581
- msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace."
1582
-
1583
- #: templates/connect.php:195
1584
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1585
- msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1586
-
1587
- #: templates/connect.php:196
1588
- msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1589
- msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1590
-
1591
- #: templates/connect.php:230
1592
- msgid "We're excited to introduce the Freemius network-level integration."
1593
- msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů."
1594
-
1595
- #: templates/connect.php:233
1596
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1597
- msgstr "During the update process we detected %d site(s) that are still pending license activation."
1598
-
1599
- #: templates/connect.php:235
1600
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1601
- msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1602
-
1603
- #: templates/connect.php:237
1604
- msgid "%s's paid features"
1605
- msgstr "%s's paid features"
1606
-
1607
- #: templates/connect.php:242
1608
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1609
- msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1610
-
1611
- #: templates/connect.php:244
1612
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1613
- msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1614
-
1615
- #: templates/connect.php253, templates/forms/data-debug-mode.php35,
1616
- #: templates/forms/license-activation.php:49
1617
- msgid "License key"
1618
- msgstr "Licenční klíč"
1619
-
1620
- #: templates/connect.php256, templates/forms/license-activation.php:22
1621
- msgid "Can't find your license key?"
1622
- msgstr "Nemůžete najít svůj licenční klíč?"
1623
-
1624
- #: templates/connect.php315, templates/connect.php652,
1625
- #: templates/forms/deactivation/retry-skip.php:20
1626
- msgctxt "verb"
1627
- msgid "Skip"
1628
- msgstr "Přeskočit"
1629
-
1630
- #: templates/connect.php:318
1631
- msgid "Delegate to Site Admins"
1632
- msgstr "Delegate to Site Admins"
1633
-
1634
- #: templates/connect.php:318
1635
- msgid "If you click it, this decision will be delegated to the sites administrators."
1636
- msgstr "If you click it, this decision will be delegated to the sites administrators."
1637
-
1638
- #: templates/connect.php:346
1639
- msgid "Your Profile Overview"
1640
- msgstr "Informace o vašem profilu"
1641
-
1642
- #: templates/connect.php:347
1643
- msgid "Name and email address"
1644
- msgstr "Jméno a emailová adresa"
1645
-
1646
- #: templates/connect.php:352
1647
- msgid "Your Site Overview"
1648
- msgstr "Informace o vaší stránce"
1649
-
1650
- #: templates/connect.php:353
1651
- msgid "Site URL, WP version, PHP info, plugins & themes"
1652
- msgstr "URL webu, verze WP, PHP info, pluginy a šablony"
1653
-
1654
- #: templates/connect.php:358
1655
- msgid "Admin Notices"
1656
- msgstr "Zobrazení oznámení v adminu"
1657
-
1658
- #: templates/connect.php359, templates/connect.php:375
1659
- msgid "Updates, announcements, marketing, no spam"
1660
- msgstr "Aktualizace, oznámení, marketing, žádný spam"
1661
-
1662
- #: templates/connect.php:364
1663
- msgid "Current %s Events"
1664
- msgstr "Informace o událostech pro %s"
1665
-
1666
- #: templates/connect.php:365
1667
- msgid "Activation, deactivation and uninstall"
1668
- msgstr "Aktivace, deaktivace a odinstalace"
1669
-
1670
- #: templates/connect.php:374
1671
- msgid "Newsletter"
1672
- msgstr "Newsletter"
1673
-
1674
- #: templates/connect.php391, templates/forms/license-activation.php:41
1675
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1676
- msgstr "Pro ověření platnosti vaší licence a automatických aktualizací bude tento %1$s periodicky odesílat data do %2$s."
1677
-
1678
- #: templates/connect.php:396
1679
- msgid "What permissions are being granted?"
1680
- msgstr "Jaká oprávnění budou udělena?"
1681
-
1682
- #: templates/connect.php:417
1683
- msgid "Don't have a license key?"
1684
- msgstr "Nemáte licenční klíč?"
1685
-
1686
- #: templates/connect.php:420
1687
- msgid "Have a license key?"
1688
- msgstr "Máte licenční klíč?"
1689
-
1690
- #: templates/connect.php:428
1691
- msgid "Privacy Policy"
1692
- msgstr "Zásady ochrany osobních údajů"
1693
-
1694
- #: templates/connect.php:430
1695
- msgid "License Agreement"
1696
- msgstr "Licenční smlouva"
1697
-
1698
- #: templates/connect.php:430
1699
- msgid "Terms of Service"
1700
- msgstr "Podmínky služby"
1701
-
1702
- #: templates/connect.php:805
1703
- msgctxt "as in the process of sending an email"
1704
- msgid "Sending email"
1705
- msgstr "Probíhá odesílání emailů"
1706
-
1707
- #: templates/connect.php:806
1708
- msgctxt "as activating plugin"
1709
- msgid "Activating"
1710
- msgstr "Probíhá aktivace"
1711
-
1712
- #: templates/contact.php:78
1713
- msgid "Contact"
1714
- msgstr "Kontakt"
1715
-
1716
- #: templates/debug.php:17
1717
- msgctxt "as turned off"
1718
- msgid "Off"
1719
- msgstr "Vypnuto"
1720
-
1721
- #: templates/debug.php:18
1722
- msgctxt "as turned on"
1723
- msgid "On"
1724
- msgstr "Zapnuto"
1725
-
1726
- #: templates/debug.php:20
1727
- msgid "SDK"
1728
- msgstr "SDK"
1729
-
1730
- #: templates/debug.php:24
1731
- msgctxt "as code debugging"
1732
- msgid "Debugging"
1733
- msgstr "Debugging"
1734
-
1735
- #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1736
- #: templates/debug.php:512
1737
- msgid "Actions"
1738
- msgstr "Akce objednávky"
1739
-
1740
- #: templates/debug.php:64
1741
- msgid "Are you sure you want to delete all Freemius data?"
1742
- msgstr "Opravdu chcete smazat veškerá Freemius data?"
1743
-
1744
- #: templates/debug.php:64
1745
- msgid "Delete All Accounts"
1746
- msgstr "Delete All Accounts"
1747
-
1748
- #: templates/debug.php:71
1749
- msgid "Clear API Cache"
1750
- msgstr "Vymazat paměť API"
1751
-
1752
- #: templates/debug.php:79
1753
- msgid "Clear Updates Transients"
1754
- msgstr "Clear Updates Transients"
1755
-
1756
- #: templates/debug.php:86
1757
- msgid "Sync Data From Server"
1758
- msgstr "Synchronizovat data ze serveru"
1759
-
1760
- #: templates/debug.php:95
1761
- msgid "Migrate Options to Network"
1762
- msgstr "Migrate Options to Network"
1763
-
1764
- #: templates/debug.php:100
1765
- msgid "Load DB Option"
1766
- msgstr "Load DB Option"
1767
-
1768
- #: templates/debug.php:103
1769
- msgid "Set DB Option"
1770
- msgstr "Set DB Option"
1771
-
1772
- #: templates/debug.php:182
1773
- msgid "Key"
1774
- msgstr "Klíč"
1775
-
1776
- #: templates/debug.php:183
1777
- msgid "Value"
1778
- msgstr "Hodnota"
1779
-
1780
- #: templates/debug.php:199
1781
- msgctxt "as software development kit versions"
1782
- msgid "SDK Versions"
1783
- msgstr "SDK Versions"
1784
-
1785
- #: templates/debug.php:204
1786
- msgid "SDK Path"
1787
- msgstr "Cesta l SDK"
1788
-
1789
- #: templates/debug.php205, templates/debug.php:244
1790
- msgid "Module Path"
1791
- msgstr "Cesta k modulu"
1792
-
1793
- #: templates/debug.php:206
1794
- msgid "Is Active"
1795
- msgstr "Je aktivní"
1796
-
1797
- #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1798
- msgid "Plugins"
1799
- msgstr "Pluginy"
1800
-
1801
- #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1802
- msgid "Themes"
1803
- msgstr "Šablony"
1804
-
1805
- #: templates/debug.php239, templates/debug.php370, templates/debug.php456,
1806
- #: templates/debug/scheduled-crons.php:80
1807
- msgid "Slug"
1808
- msgstr "Zkratka"
1809
-
1810
- #: templates/debug.php241, templates/debug.php:455
1811
- msgid "Title"
1812
- msgstr "Nadpis"
1813
-
1814
- #: templates/debug.php:242
1815
- msgctxt "as application program interface"
1816
- msgid "API"
1817
- msgstr "API"
1818
-
1819
- #: templates/debug.php:243
1820
- msgid "Freemius State"
1821
- msgstr "Stav Freemius"
1822
-
1823
- #: templates/debug.php:247
1824
- msgid "Network Blog"
1825
- msgstr "Network Blog"
1826
-
1827
- #: templates/debug.php:248
1828
- msgid "Network User"
1829
- msgstr "Network User"
1830
-
1831
- #: templates/debug.php:285
1832
- msgctxt "as connection was successful"
1833
- msgid "Connected"
1834
- msgstr "Připojeno"
1835
-
1836
- #: templates/debug.php:286
1837
- msgctxt "as connection blocked"
1838
- msgid "Blocked"
1839
- msgstr "Zablokováno"
1840
-
1841
- #: templates/debug.php:322
1842
- msgid "Simulate Trial Promotion"
1843
- msgstr "Simulate Trial Promotion"
1844
-
1845
- #: templates/debug.php:334
1846
- msgid "Simulate Network Upgrade"
1847
- msgstr "Simulate Network Upgrade"
1848
-
1849
- #: templates/debug.php:359
1850
- msgid "%s Installs"
1851
- msgstr "%s instalací"
1852
-
1853
- #: templates/debug.php:361
1854
- msgctxt "like websites"
1855
- msgid "Sites"
1856
- msgstr "Weby"
1857
-
1858
- #: templates/debug.php367, templates/account/partials/site.php:156
1859
- msgid "Blog ID"
1860
- msgstr "Blog ID"
1861
-
1862
- #: templates/debug.php:372
1863
- msgid "License ID"
1864
- msgstr "License ID"
1865
-
1866
- #: templates/debug.php436, templates/debug.php535,
1867
- #: templates/account/partials/addon.php:435
1868
- msgctxt "verb"
1869
- msgid "Delete"
1870
- msgstr "Smazat"
1871
-
1872
- #: templates/debug.php:450
1873
- msgid "Add Ons of module %s"
1874
- msgstr "Add Ons of module %s"
1875
-
1876
- #: templates/debug.php:502
1877
- msgid "Users"
1878
- msgstr "Uživatelé"
1879
-
1880
- #: templates/debug.php:509
1881
- msgid "Verified"
1882
- msgstr "Ověřeno"
1883
-
1884
- #: templates/debug.php:551
1885
- msgid "%s Licenses"
1886
- msgstr "%s licencí"
1887
-
1888
- #: templates/debug.php:556
1889
- msgid "Plugin ID"
1890
- msgstr "ID pluginu"
1891
-
1892
- #: templates/debug.php:558
1893
- msgid "Plan ID"
1894
- msgstr "ID členství"
1895
-
1896
- #: templates/debug.php:559
1897
- msgid "Quota"
1898
- msgstr "Quota"
1899
-
1900
- #: templates/debug.php:560
1901
- msgid "Activated"
1902
- msgstr "Aktivovaný"
1903
-
1904
- #: templates/debug.php:561
1905
- msgid "Blocking"
1906
- msgstr "Blokování"
1907
-
1908
- #: templates/debug.php:563
1909
- msgctxt "as expiration date"
1910
- msgid "Expiration"
1911
- msgstr "Expirace"
1912
-
1913
- #: templates/debug.php:590
1914
- msgid "Debug Log"