Asset CleanUp: Page Speed Booster - Version 1.3.1

Version Description

  • CSS Files within are also combined just like the ones from
  • Offer the option to clear the CSS/JS caching even if CSS/JS Minify/Combine options were deactivated
  • Bug Fix: Old links to the manage homepage page from the admin bar were updated with the new ones
  • Bug Fix: On some WordPress setups, the path to the CSS background image URL after combination was updated incorrectly
Download this release

Release Info

Developer gabelivan
Plugin Icon 128x128 Asset CleanUp: Page Speed Booster
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

Files changed (101) hide show
  1. assets/script.min.js +1 -1
  2. assets/style.min.css +1 -1
  3. classes/AdminBar.php +9 -11
  4. classes/Main.php +27 -33
  5. classes/OptimiseAssets/MinifyCss.php +4 -4
  6. classes/OptimiseAssets/OptimizeCommon.php +60 -42
  7. classes/OptimiseAssets/OptimizeCss.php +213 -115
  8. classes/OwnAssets.php +6 -16
  9. classes/Settings.php +2 -0
  10. freemius/assets/css/admin/add-ons.css +1 -1
  11. freemius/assets/css/admin/common.css +2 -2
  12. freemius/assets/img/wp-asset-clean-up.png +0 -0
  13. freemius/assets/scss/_colors.scss +79 -0
  14. freemius/assets/scss/_functions.scss +0 -0
  15. freemius/assets/scss/_load.scss +4 -0
  16. freemius/assets/scss/_mixins.scss +270 -0
  17. freemius/assets/scss/_start.scss +4 -0
  18. freemius/assets/scss/_vars.scss +6 -0
  19. freemius/assets/scss/admin/_ajax-loader.scss +49 -0
  20. freemius/assets/scss/admin/_auto-install.scss +33 -0
  21. freemius/assets/scss/admin/_badge.scss +14 -0
  22. freemius/assets/scss/admin/_buttons.scss +28 -0
  23. freemius/assets/scss/admin/_deactivation-feedback.scss +55 -0
  24. freemius/assets/scss/admin/_gdpr-consent.scss +81 -0
  25. freemius/assets/scss/admin/_license-activation.scss +47 -0
  26. freemius/assets/scss/admin/_license-key-resend.scss +68 -0
  27. freemius/assets/scss/admin/_modal-common.scss +194 -0
  28. freemius/assets/scss/admin/_multisite-options.scss +40 -0
  29. freemius/assets/scss/admin/_plugin-upgrade-notice.scss +8 -0
  30. freemius/assets/scss/admin/_subscription-cancellation.scss +30 -0
  31. freemius/assets/scss/admin/_themes.scss +12 -0
  32. freemius/assets/scss/admin/_tooltip.scss +66 -0
  33. freemius/assets/scss/admin/account.scss +302 -0
  34. freemius/assets/scss/admin/add-ons.scss +520 -0
  35. freemius/assets/scss/admin/affiliation.scss +97 -0
  36. freemius/assets/scss/admin/checkout.scss +5 -0
  37. freemius/assets/scss/admin/common.scss +220 -0
  38. freemius/assets/scss/admin/connect.scss +548 -0
  39. freemius/assets/scss/admin/debug.scss +135 -0
  40. freemius/assets/scss/admin/dialog-boxes.scss +10 -0
  41. freemius/assets/scss/admin/gdpr-optin-notice.scss +17 -0
  42. freemius/assets/scss/admin/index.php +3 -0
  43. freemius/assets/scss/customizer.scss +125 -0
  44. freemius/assets/scss/index.php +3 -0
  45. freemius/config.php +1 -1
  46. freemius/includes/class-freemius.php +548 -86
  47. freemius/includes/class-fs-api.php +14 -4
  48. freemius/includes/class-fs-plugin-updater.php +31 -10
  49. freemius/includes/class-fs-storage.php +1 -2
  50. freemius/includes/entities/class-fs-plugin.php +5 -0
  51. freemius/includes/fs-core-functions.php +115 -91
  52. freemius/includes/i18n.php +2 -2
  53. freemius/includes/managers/class-fs-admin-menu-manager.php +5 -5
  54. freemius/includes/managers/class-fs-admin-notice-manager.php +32 -1
  55. freemius/languages/freemius-da_DK.po +203 -203
  56. freemius/languages/freemius-en.po +184 -184
  57. freemius/languages/freemius-es_ES.po +203 -203
  58. freemius/languages/freemius-fr_FR.mo +0 -0
  59. freemius/languages/freemius-fr_FR.po +236 -236
  60. freemius/languages/freemius-he_IL.po +203 -203
  61. freemius/languages/freemius-hu_HU.mo +0 -0
  62. freemius/languages/freemius-hu_HU.po +2433 -0
  63. freemius/languages/freemius-it_IT.mo +0 -0
  64. freemius/languages/freemius-it_IT.po +210 -209
  65. freemius/languages/freemius-ja_JP.po +203 -203
  66. freemius/languages/freemius-nl_NL.po +203 -203
  67. freemius/languages/freemius-ru_RU.po +203 -203
  68. freemius/languages/freemius.pot +184 -184
  69. freemius/start.php +15 -8
  70. freemius/templates/account.php +3 -6
  71. freemius/templates/account/partials/addon.php +5 -5
  72. freemius/templates/account/partials/site.php +2 -2
  73. freemius/templates/add-ons.php +192 -16
  74. freemius/templates/admin-notice.php +29 -1
  75. freemius/templates/checkout.php +8 -3
  76. freemius/templates/connect.php +1 -1
  77. freemius/templates/contact.php +3 -3
  78. freemius/templates/debug.php +2 -0
  79. freemius/templates/forms/deactivation/form.php +4 -1
  80. freemius/templates/forms/premium-versions-upgrade-metadata.php +3 -1
  81. freemius/templates/forms/subscription-cancellation.php +2 -2
  82. freemius/templates/js/style-premium-theme.php +1 -1
  83. freemius/templates/partials/network-activation.php +9 -1
  84. freemius/templates/pricing.php +7 -2
  85. freemius/templates/tabs.php +4 -0
  86. readme.txt +12 -6
  87. templates/_admin-page-settings-plugin-areas/_combine-loaded-files.php +170 -0
  88. templates/_admin-page-settings-plugin-areas/_common-files-unload.php +65 -0
  89. templates/_admin-page-settings-plugin-areas/_disable-xml-rpc-protocol.php +30 -0
  90. templates/_admin-page-settings-plugin-areas/_head-cleanup.php +189 -0
  91. templates/_admin-page-settings-plugin-areas/_minify-loaded-files.php +77 -0
  92. templates/_admin-page-settings-plugin-areas/_plugin-usage-settings.php +218 -0
  93. templates/_admin-page-settings-plugin-areas/_test-mode.php +36 -0
  94. templates/_top-area.php +1 -1
  95. templates/admin-page-plugins-manager.php +0 -31
  96. templates/admin-page-settings-plugin.php +100 -651
  97. templates/meta-box-loaded-assets/view-by-location.php +1 -1
  98. templates/meta-box-loaded-assets/view-default.php +3 -3
  99. templates/meta-box-loaded.php +3 -6
  100. wpacu-load.php +2 -1
  101. wpacu.php +2 -2
assets/script.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(a){function b(){var b={};"direct"===wpacu_object.dom_get_type?(b[wpacu_object.plugin_name+"_load"]=1,b[wpacu_object.plugin_name+"_time_r"]=(new Date).getTime(),a.ajax({method:"GET",url:wpacu_object.page_url,data:b,cache:!1,complete:function(b,c){if("error"===b.statusText){var d=wpacu_object.ajax_direct_fetch_error;d=d.replace(/\{wpacu_output\}/,b.responseText),d=d.replace(/\{wpacu_status_code_error\}/,b.status),a("#wpacu_meta_box_content").html(d)}}}).done(function(b){var c=b.substring(b.lastIndexOf(wpacu_object.start_del)+wpacu_object.start_del.length,b.lastIndexOf(wpacu_object.end_del)),d={action:wpacu_object.plugin_name+"_get_loaded_assets",wpacu_list:c,post_id:wpacu_object.post_id,page_url:wpacu_object.page_url,tag_id:wpacu_object.tag_id,time_r:(new Date).getTime()};if("btoa"in window)try{b=b.replace(/[\u0250-\ue007]/g,""),b=b.replace(/[^\x00-\x7F]/g,""),d.contents=window.btoa(b)}catch(a){d.contents=""}a.post(wpacu_object.ajax_url,d,function(b){if(!b)return!1;a("#wpacu_meta_box_content").html(b),a("#wpacu_home_page_form").length>0&&a("#submit").show(),e.load()})})):"wp_remote_post"===wpacu_object.dom_get_type&&(b={action:wpacu_object.plugin_name+"_get_loaded_assets",post_id:wpacu_object.post_id,page_url:wpacu_object.page_url,tag_id:wpacu_object.tag_id,time_r:(new Date).getTime()},a.post(wpacu_object.ajax_url,b,function(b){if(!b)return!1;a("#wpacu_meta_box_content").html(b),a("#wpacu_home_page_form").length>0&&a("#submit").show(),e.load()}))}a("#wpacu-mark-license-valid-button").click(function(){return confirm(wpacu_object.mark_license_valid_confirm)});var c,d;a("#wpacu-reset-drop-down").on("change keyup keydown mouseup mousedown click",function(){""===a(this).val()?(a("#wpacu-warning-read").removeClass("wpacu-visible"),a("#wpacu-reset-submit-btn").attr("disabled","disabled")):("reset_everything"===a(this).val()?a("#wpacu-license-data-remove-area").addClass("wpacu-visible"):a("#wpacu-license-data-remove-area").removeClass("wpacu-visible"),a("#wpacu-warning-read").addClass("wpacu-visible"),a("#wpacu-reset-submit-btn").removeAttr("disabled")),a(".wpacu-tools-area .wpacu-warning").hide(),c=a(this).find("option:selected"),a("#"+c.attr("data-id")).show()}),a("#wpacu-reset-submit-btn").on("click",function(){if("reset_settings"===a("#wpacu-reset-drop-down").val()?d=wpacu_object.reset_settings_confirm_msg:"reset_everything"===a("#wpacu-reset-drop-down").val()&&(d=wpacu_object.reset_everything_confirm_msg),!confirm(d))return!1;a("#wpacu-action-confirmed").val("yes"),setTimeout(function(){"yes"===a("#wpacu-action-confirmed").val()&&a("#wpacu-tools-form").submit()},1e3)});var e={load:function(){e.getExternalFileSize();var b;a(".input-unload-on-this-page").on("click change",function(){a(this).prop("checked")?a(this).closest("tr").addClass("wpacu_not_load"):a(this).closest("tr").removeClass("wpacu_not_load")}),a(".wpacu_global_unload").click(function(){b=a(this).attr("data-handle"),a(this).prop("checked")?a(this).parent("label").addClass("wpacu_global_checked"):a(this).parent("label").removeClass("wpacu_global_checked")}),a(".wpacu_keep_bulk_rule").click(function(){a(this).prop("checked")&&a(this).parents("li").next().removeClass("remove_rule")}),a(".wpacu_remove_bulk_rule").click(function(){a(this).prop("checked")&&a(this).parents("li").addClass("remove_rule")}),a(".wpacu_bulk_unload").click(function(){a(this).prop("checked")?a(this).parent("label").addClass("wpacu_bulk_unload_active"):a(this).parent("label").removeClass("wpacu_bulk_unload_active")}),a(".wpacu_load_it_option").click(function(){var b=a(this).attr("data-handle");if(a(this).prop("checked")){a(this).parent("label").addClass("wpacu_global_unload_exception");var c="";a(this).hasClass("wpacu_style")?c="style":a(this).hasClass("wpacu_script")&&(c="script"),a("#"+c+"_"+b).prop("checked",!1).trigger("change")}else a(this).parent("label").removeClass("wpacu_global_unload_exception")})},getExternalFileSize:function(){a(".wpacu-external-file-size").each(function(){var b=a(this);a.post(wpacu_object.ajax_url,{action:"get_external_file_size",wpacu_remote_file:a(this).attr("data-src")},function(a){b.html(a)})})}};if(a(".wpacu-dom-get-type-selection").change(function(){a(this).is(":checked")&&(a(".wpacu-dom-get-type-info").hide(),a("#"+a(this).attr("data-target")).fadeIn("fast"))}),a("#wpacu_post_type_select").change(function(){a("#wpacu_post_type_form").submit()}),a("#wpacu_taxonomy_select").change(function(){a("#wpacu_taxonomy_form").submit()}),a("#wpacu_dashboard").click(function(){a(this).prop("checked")?a("#wpacu-settings-assets-retrieval-mode").fadeIn("fast"):a("#wpacu-settings-assets-retrieval-mode").fadeOut("fast")}),a("#wpacu_disable_jquery_migrate").on("click",function(){return!a(this).is(":checked")||(!(!a(this).is(":checked")||!confirm(wpacu_object.jquery_migration_disable_confirm_msg))||(a(this).prop("checked",!1),!1))}),a("#wpacu_disable_comment_reply").on("click",function(){return!a(this).is(":checked")||(!(!a(this).is(":checked")||!confirm(wpacu_object.comment_reply_disable_confirm_msg))||(a(this).prop("checked",!1),!1))}),a("#wpacu_minify_css_enable").click(function(){a(this).prop("checked")?a("#wpacu_minify_css_exceptions_area").fadeIn("fast"):a("#wpacu_minify_css_exceptions_area").fadeOut("fast")}),a("#wpacu_minify_js_enable").click(function(){a(this).prop("checked")?a("#wpacu_minify_js_exceptions_area").fadeIn("fast"):a("#wpacu_minify_js_exceptions_area").fadeOut("fast")}),a(".wpacu_remove_rule").click(function(){var b=a(this).parents(".wpacu_global_rule_row");a(this).prop("checked")?b.addClass("selected"):b.removeClass("selected")}),a("#wpacu_wrap_assets").length>0&&e.load(),"undefined"==typeof wpacu_object||a("#wpacu_meta_box_content").length<1)return!1;b(),a(document).on("click","body.branch-5 .edit-post-header__settings button.is-primary",function(){var c=function(){0===a(".edit-post-header__settings .is-saving").length&&(b(),clearInterval(d))},d=setInterval(c,900)})});
1
+ function wpacuTabOpenSettingsArea(a,b){a.preventDefault();var c,d,e;for(d=document.getElementsByClassName("wpacu-settings-tab-content"),c=0;c<d.length;c++)d[c].style.display="none";for(e=document.getElementsByClassName("wpacu-settings-tab-link"),c=0;c<e.length;c++)e[c].className=e[c].className.replace(" active","");document.getElementById(b).style.display="table-cell",jQuery('a[href="#'+b+'"]').addClass("active"),jQuery("#wpacu-selected-tab-area").val(b),history.pushState(null,null,"#"+b)}if(jQuery(document).ready(function(a){function b(){var b={};"direct"===wpacu_object.dom_get_type?(b[wpacu_object.plugin_name+"_load"]=1,b[wpacu_object.plugin_name+"_time_r"]=(new Date).getTime(),a.ajax({method:"GET",url:wpacu_object.page_url,data:b,cache:!1,complete:function(b,c){if("error"===b.statusText){var d=wpacu_object.ajax_direct_fetch_error;d=d.replace(/\{wpacu_output\}/,b.responseText),d=d.replace(/\{wpacu_status_code_error\}/,b.status),a("#wpacu_meta_box_content").html(d)}}}).done(function(b){var c=b.substring(b.lastIndexOf(wpacu_object.start_del)+wpacu_object.start_del.length,b.lastIndexOf(wpacu_object.end_del)),d={action:wpacu_object.plugin_name+"_get_loaded_assets",wpacu_list:c,post_id:wpacu_object.post_id,page_url:wpacu_object.page_url,tag_id:wpacu_object.tag_id,time_r:(new Date).getTime()};a.post(wpacu_object.ajax_url,d,function(b){if(!b)return!1;a("#wpacu_meta_box_content").html(b),a("#wpacu_home_page_form").length>0&&a("#submit").show(),setTimeout(function(){e.load()},200)})})):"wp_remote_post"===wpacu_object.dom_get_type&&(b={action:wpacu_object.plugin_name+"_get_loaded_assets",post_id:wpacu_object.post_id,page_url:wpacu_object.page_url,tag_id:wpacu_object.tag_id,time_r:(new Date).getTime()},a.post(wpacu_object.ajax_url,b,function(b){if(!b)return!1;a("#wpacu_meta_box_content").html(b),a("#wpacu_home_page_form").length>0&&a("#submit").show(),setTimeout(function(){e.load()},200)}))}a("#wpacu-mark-license-valid-button").click(function(){return confirm(wpacu_object.mark_license_valid_confirm)});var c,d;a("#wpacu-reset-drop-down").on("change keyup keydown mouseup mousedown click",function(){""===a(this).val()?(a("#wpacu-warning-read").removeClass("wpacu-visible"),a("#wpacu-reset-submit-btn").attr("disabled","disabled").removeClass("button-primary").addClass("button-secondary")):("reset_everything"===a(this).val()?a("#wpacu-license-data-remove-area").addClass("wpacu-visible"):a("#wpacu-license-data-remove-area").removeClass("wpacu-visible"),a("#wpacu-warning-read").addClass("wpacu-visible"),a("#wpacu-reset-submit-btn").removeAttr("disabled").removeClass("button-secondary").addClass("button-primary")),a(".wpacu-tools-area .wpacu-warning").hide(),c=a(this).find("option:selected"),a("#"+c.attr("data-id")).show()}),a("#wpacu-reset-submit-btn").on("click",function(){if("reset_settings"===a("#wpacu-reset-drop-down").val()?d=wpacu_object.reset_settings_confirm_msg:"reset_everything"===a("#wpacu-reset-drop-down").val()&&(d=wpacu_object.reset_everything_confirm_msg),!confirm(d))return!1;a("#wpacu-action-confirmed").val("yes"),setTimeout(function(){"yes"===a("#wpacu-action-confirmed").val()&&a("#wpacu-tools-form").submit()},1e3)});var e={load:function(){var b;a(".input-unload-on-this-page").on("click change",function(){a(this).prop("checked")?a(this).closest("tr").addClass("wpacu_not_load"):a(this).closest("tr").removeClass("wpacu_not_load")}),a(".wpacu_global_unload").click(function(){b=a(this).attr("data-handle"),a(this).prop("checked")?a(this).parent("label").addClass("wpacu_global_checked"):a(this).parent("label").removeClass("wpacu_global_checked")}),a(".wpacu_keep_bulk_rule").click(function(){a(this).prop("checked")&&a(this).parents("li").next().removeClass("remove_rule")}),a(".wpacu_remove_bulk_rule").click(function(){a(this).prop("checked")&&a(this).parents("li").addClass("remove_rule")}),a(".wpacu_bulk_unload").click(function(){a(this).prop("checked")?a(this).parent("label").addClass("wpacu_bulk_unload_active"):a(this).parent("label").removeClass("wpacu_bulk_unload_active")}),a(".wpacu_load_it_option").click(function(){var b=a(this).attr("data-handle");if(a(this).prop("checked")){a(this).parent("label").addClass("wpacu_global_unload_exception");var c="";a(this).hasClass("wpacu_style")?c="style":a(this).hasClass("wpacu_script")&&(c="script"),a("#"+c+"_"+b).prop("checked",!1).trigger("change")}else a(this).parent("label").removeClass("wpacu_global_unload_exception")}),a(".wpacu-external-file-size").on("click",function(b){b.preventDefault();var c,d=a(this);d.hide(),c=d.next(),c.show(),a.post(wpacu_object.ajax_url,{action:"get_external_file_size",wpacu_remote_file:d.attr("data-src")},function(a){c.html(a)})})}};a(".wpacu-dom-get-type-selection").change(function(){a(this).is(":checked")&&(a(".wpacu-dom-get-type-info").hide(),a("#"+a(this).attr("data-target")).fadeIn("fast"))}),a("#wpacu_post_type_select").change(function(){a("#wpacu_post_type_form").submit()}),a("#wpacu_taxonomy_select").change(function(){a("#wpacu_taxonomy_form").submit()}),a("#wpacu_dashboard").click(function(){a(this).prop("checked")?a("#wpacu-settings-assets-retrieval-mode").fadeIn("fast"):a("#wpacu-settings-assets-retrieval-mode").fadeOut("fast")}),a("#wpacu_disable_jquery_migrate").on("click",function(){return!a(this).is(":checked")||(!(!a(this).is(":checked")||!confirm(wpacu_object.jquery_migration_disable_confirm_msg))||(a(this).prop("checked",!1),!1))}),a("#wpacu_disable_comment_reply").on("click",function(){return!a(this).is(":checked")||(!(!a(this).is(":checked")||!confirm(wpacu_object.comment_reply_disable_confirm_msg))||(a(this).prop("checked",!1),!1))}),a("#wpacu_combine_loaded_css_enable").click(function(){a(this).prop("checked")?a("#combine_loaded_css_info_area").css({opacity:1}):a("#combine_loaded_css_info_area").css({opacity:.4})}),a("#wpacu_combine_loaded_js_enable").click(function(){a(this).prop("checked")?a("#combine_loaded_js_info_area").css({opacity:1}):a("#combine_loaded_js_info_area").css({opacity:.4})}),a("#wpacu_minify_css_enable").click(function(){a(this).prop("checked")?a("#wpacu_minify_css_exceptions_area").css({opacity:1}):a("#wpacu_minify_css_exceptions_area").css({opacity:.4})}),a("#wpacu_minify_js_enable").click(function(){a(this).prop("checked")?a("#wpacu_minify_js_exceptions_area").css({opacity:1}):a("#wpacu_minify_js_exceptions_area").css({opacity:.4})}),a(".wpacu-combine-loaded-js-level").change(function(){a(this).is(":checked")&&(a(".wpacu_combine_loaded_js_level_area").removeClass("wpacu_active"),a("#"+a(this).attr("data-target")).addClass("wpacu_active"))});var f=a('#wpacu-update-button-area input[type="submit"]');if(f.click(function(){a("#wpacu-updating-settings").show()}),a("form#wpacu-settings-form").submit(function(){return f.attr("disabled","disabled"),!0}),a(".wpacu_remove_rule").click(function(){var b=a(this).parents(".wpacu_global_rule_row");a(this).prop("checked")?b.addClass("selected"):b.removeClass("selected")}),a("#wpacu_wrap_assets").length>0&&setTimeout(function(){e.load()},200),"undefined"==typeof wpacu_object||a("#wpacu_meta_box_content").length<1)return!1;b(),a(document).on("click","body.branch-5 .edit-post-header__settings button.is-primary",function(){var c=function(){0===a(".edit-post-header__settings .is-saving").length&&(b(),clearInterval(d))},d=setInterval(c,900)})}),-1!==location.href.indexOf("#")){var hashFromUrl=location.href.substr(location.href.indexOf("#"));jQuery('a[href="'+hashFromUrl+'"]').trigger("click")}
assets/style.min.css CHANGED
@@ -1 +1 @@
1
- .go-pro-button,.wpacu-btns .btn,.wpacu-tabs nav,.wpacu-tabs nav ul li{text-align:center}#wpacu_meta_box_content .dashicons.dashicons-warning,.wpacu-tabs nav ul li span.license-status.inactive{color:#c00}#wpacu-pages-info-area{width:98%}#wpacu-logo-area{margin:15px 0;padding:0 10px}#wpacu-logo-area img{width:352px;height:79px}.wpacu-tabs{position:relative;overflow:hidden;margin:0 auto 20px;width:100%;font-weight:300;font-size:20px}.wpacu-tabs nav ul{position:relative;display:-ms-flexbox;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:flex;margin:0 auto;padding:0;max-width:1200px;list-style:none;-ms-box-orient:horizontal;-ms-box-pack:center;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center}.wpacu-tabs nav ul li{position:relative;z-index:1;display:block;margin:0;-webkit-flex:1;-moz-flex:1;-ms-flex:1;flex:1}.wpacu-tabs nav ul li span.license-status{position:absolute;font-size:12px;left:0;right:50%;bottom:12px;-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.wpacu-tabs nav ul li span.license-status.active{color:green}.wpacu-tabs nav a{position:relative;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:2.5}.wpacu-tabs nav a span{vertical-align:middle;font-size:14px}.wpacu-tabs nav li.wpacu-tab-current a{color:#74777b}.wpacu-tabs nav a:focus{outline:0}.wpacu-tabs .dashicons{font-size:20px}.no-js .wpacu-content-wrap section{display:block;padding-bottom:2em;border-bottom:1px solid rgba(255,255,255,.6)}.no-flexbox nav ul{display:block}.no-flexbox nav ul li{min-width:15%;display:inline-block}@media screen and (max-width:58em){.wpacu-tabs nav a.icon span{display:none}.wpacu-tabs nav a:before{margin-right:0}}.wpacu-tabs-style-underline nav{background:#fff}.wpacu-tabs-style-underline nav a{color:#74777b;font-size:18px;text-transform:uppercase;text-decoration:none;padding:.25em 0 .5em;border-left:1px solid #e7ecea;-webkit-transition:color .2s;transition:color .2s}.wpacu-tabs-style-underline nav li:last-child a{border-right:1px solid #e7ecea}.wpacu-tabs-style-underline nav li a::after{position:absolute;bottom:0;left:0;width:100%;height:6px;background:#2CC185;content:'';-webkit-transition:-webkit-transform .3s;transition:transform .3s;-webkit-transform:translate3d(0,150%,0);transform:translate3d(0,150%,0)}.wpacu-tabs-style-underline nav li.wpacu-tab-current a::after{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.wpacu-tabs-style-underline nav a span{font-weight:700}.wpacu-tabs-style-topline{max-width:1200px;margin:20px auto 30px 0;width:100%;font-weight:300;text-decoration:none}.wpacu-tabs-style-topline nav li{border:1px solid rgba(40,44,42,.1)}.wpacu-tabs-style-topline nav li:not(:last-child){border-right:none}.wpacu-tabs-style-topline nav li.wpacu-tab-current{border-top-color:#008f9c;border-bottom:none}.wpacu-tabs-style-topline nav a{padding:20px 18px;background:rgba(40,44,42,.05);color:#74777b;line-height:1;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}.wpacu-tabs-style-topline nav a:focus,.wpacu-tabs-style-topline nav a:hover{background:0 0;color:#008f9c}.wpacu-tabs-style-topline nav li.wpacu-tab-current a{background:0 0;box-shadow:inset 0 3px 0 #008f9c;color:#008f9c}.wpacu-tabs-style-topline nav li.wpacu-tab-current a span:not(.dashicons){font-weight:600}.wpacu-tabs-style-topline nav a span{text-transform:uppercase;font-weight:400}.wpacu-tab-nav-wrapper{border-bottom:none!important}.wpacu-tab-nav-wrapper .nav-tab.nav-tab-active{background:#fff;position:relative}.wpacu-tab-nav-wrapper .nav-tab.nav-tab-active:after{content:'';width:100%;bottom:-2px;left:0;position:absolute;border-bottom:2px solid #fff}.wpacu-script-attributes-area{margin:20px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings{padding:5px 7px!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings.wpacu-first{margin:0 28px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings label{margin:0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings li{margin:0 16px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings li:first-child{margin:0 10px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings li:last-child{margin:0 2px 0 0!important}.wpacu-script-attributes-area .wpacu-script-attributes-settings{background:#fff!important;border:1px solid #eee!important;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:5px 10px!important;list-style:none;display:inline-block;margin:0}.wpacu-script-attributes-area .wpacu-script-attributes-settings input[type=radio]{padding:0;margin:0 5px 0 0}.wpacu-script-attributes-area .wpacu-script-attributes-settings.wpacu-first{margin:0 34px 0 0!important}.wpacu-script-attributes-area .wpacu-script-attributes-settings li{float:left;margin:0 17px 0 0}.wpacu-script-attributes-area .wpacu-script-attributes-settings li:first-child{margin:0 10px 0 0!important}.wpacu-script-attributes-area .wpacu-script-attributes-settings li:last-child{margin:0}.wpacu-script-attributes-area .wpacu-script-attributes-settings:hover{background:#f2faf2}tr.wpacu_not_load td,tr.wpacu_not_load th{background:#FFE1E1!important}.dashicons-wpacu{width:17px;height:17px;margin:2px 0 0;font-size:16px;text-decoration:none}.wpacu_widefat .check-column.wpacu_check{padding:10px}body[class*=wpassetcleanup] #footer-left{border-left:2px solid green;padding-left:10px}#wpacu_meta_box_content{width:99%}#wpacu_meta_box_content .emoji{font-size:18px}#wpacu_meta_box_content h3{margin-left:0;padding-left:0}#wpacu_meta_box_content div.wpacu_note{padding:10px;background-color:#f5f5f5}#wpacu_meta_box_content .wpacu_verified{padding:10px;background-color:#f5f5f5;border-left:1px solid #ddd}#wpacu_meta_box_content .wpacu_verified span{color:#0073aa;font-weight:700}#wpacu_meta_box_content div.wpacu_warning{border:1px solid #c00}#wpacu_meta_box_content ul.wpacu_asset_options{margin:0;padding:0}#wpacu_meta_box_content ul.wpacu_asset_options li{list-style:none;display:inline-block}#wpacu_wrap_assets img,#wpacu_wrap_assets small,.wpacu_asset_row td label{display:inline-block!important}#wpacu_meta_box_content ul.wpacu_asset_options label{font-weight:400;margin-right:5px;margin-top:5px;margin-bottom:5px}.wpacu-updated-frontend{font-weight:400;background-color:#fff;border-left:4px solid #46b450;border-top:1px solid #46b450;border-right:1px solid #46b450;border-bottom:1px solid #46b450;padding:9px 14px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.wpacu-updated-frontend span.dashicons-yes{color:#46b450;font-size:26px}#wpacu_wrap_assets{color:#000!important;text-align:left!important;clear:both!important;width:90%!important;padding:20px!important;margin:30px 0 0 15px!important;border:1px solid #cdcdcd;z-index:10000!important;position:relative!important;background-color:#fff!important}#wpacu_wrap_assets div.wpacu_warning{border:1px solid #c00;padding:5px 10px}#wpacu_wrap_assets small{margin:0!important;letter-spacing:normal!important}#wpacu_wrap_assets input[type=checkbox]{margin-right:4px!important}#wpacu_wrap_assets p{line-height:22px!important;margin:10px 0!important;text-align:left!important;font-weight:400!important}.wpacu-assets-inline-code-collapsible-content>div>p,.wpacu_update_btn{line-height:normal!important}#wpacu_wrap_assets p:first-child,.wpacu_verified{margin:0 0 10px!important}#wpacu_wrap_assets h1{margin:0 0 20px!important;font-size:160%!important;text-align:left!important}#wpacu_wrap_assets h3{margin:20px 0;font-size:130%}.wpacu_asset_row td{padding:18px!important;position:relative;border-left:1px solid #cdcdcd;border-right:1px solid #cdcdcd;border-bottom:1px solid #cdcdcd}.wpacu_asset_row td.selected,.wpacu_asset_row td:hover{border:1px solid #cdcdcd;-moz-box-shadow:inset 0 0 12px #cdcdcd;-webkit-box-shadow:inset 0 0 12px #cdcdcd;box-shadow:inset 0 0 12px #cdcdcd}.wpacu_asset_row td:first-child{border-top:1px solid #cdcdcd}.wpacu_asset_row td p{padding:0!important;margin-bottom:10px!important;word-wrap:break-word!important;-ms-word-break:break-all;word-break:break-word}.wpacu_asset_row td label{margin:0!important;cursor:pointer!important;font-size:100%!important;font-weight:400!important}.wpacu_asset_row td label span:not(.dashicons){font-size:100%!important}.wpacu_asset_row td.wpacu_check{width:50px!important}.asset-table-extra-info td{padding:5px!important}body.wp-admin .wpacu_asset_row td.wpacu_check{width:25px!important}.wpacu_asset_row .dashicons-warning{color:red!important}label.wpacu_add_global{cursor:pointer!important}label.wpacu_global_checked{font-weight:700;color:#d54e21}label.wpacu_global_unload_exception{font-weight:700!important}label.wpacu_bulk_unload_active{color:#d54e21}tr.wpacu_global_rule_row.selected{background:#e7e7e7}.nav-tab-wrapper{border-bottom:1px solid #ccc;width:95%}ul.wpacu_asset_options{margin:0 10px 0 0;padding:0}ul.wpacu_asset_options li{margin:0 20px 0 0;list-style:none;display:inline-block}ul.wpacu_asset_options li.remove_rule label{font-weight:700}ul.wpacu_asset_options label{margin-right:20px;font-weight:400}ul.wpacu_asset_options label input{margin-right:4px}.wpacu_list_table,.wpacu_list_table div,.wpacu_list_table li,.wpacu_list_table p{font-weight:400}.wpacu_widefat{width:99%}.wpacu_striped>tbody>:nth-child(even),ul.wpacu_striped>:nth-child(even){background-color:#fff!important}.wpacu_striped>tbody>:nth-child(odd),ul.wpacu_striped>:nth-child(odd){background-color:#f9f9f9!important}.wpacu_update_btn{-moz-box-shadow:inset 0 1px 0 0 #54a3f7!important;-webkit-box-shadow:inset 0 1px 0 0 #54a3f7!important;box-shadow:inset 0 1px 0 0 #54a3f7!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(.05,#007dc1),color-stop(1,#0061a7))!important;background:-moz-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:-webkit-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:-o-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:-ms-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:linear-gradient(to bottom,#007dc1 5%,#0061a7 100%)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7', GradientType=0)!important;background-color:#007dc1!important;-moz-border-radius:3px!important;-webkit-border-radius:3px!important;border-radius:3px!important;border:1px solid #124d77!important;display:inline-block!important;cursor:pointer!important;color:#fff!important;font-size:15px!important;padding:10px 24px!important;text-decoration:none!important;text-shadow:0 1px 0 #154682!important;height:auto!important}.wpacu-btns .btn:focus,.wpacu-btns .btn:hover,.wpacu-btns a{text-decoration:none}.wpacu_update_btn:hover{background:-webkit-gradient(linear,left top,left bottom,color-stop(.05,#0061a7),color-stop(1,#007dc1))!important;background:-moz-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:-webkit-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:-o-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:-ms-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:linear-gradient(to bottom,#0061a7 5%,#007dc1 100%)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1', GradientType=0)!important;background-color:#0061a7!important}.wpacu_update_btn:active{position:relative!important;top:1px!important}.wpacu-btns .btn{display:inline-block;font-weight:400;line-height:1.25;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5rem 1rem;font-size:1rem;-webkit-border-radius:.25rem;-moz-border-radius:.25rem;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wpacu-btns .btn.focus,.wpacu-btns .btn:focus{outline:0;-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.25);box-shadow:0 0 0 2px rgba(2,117,216,.25)}.wpacu-btns .btn.disabled,.wpacu-btns .btn:disabled{cursor:not-allowed;opacity:.65}.wpacu-btns .btn.active,.wpacu-btns .btn:active{background-image:none}.wpacu-btns a.btn.disabled,.wpacu-btns fieldset[disabled] a.btn{pointer-events:none}.wpacu-btns .btn-primary{color:#fff;background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-primary:hover{color:#fff;background-color:#025aa5;border-color:#01549b}.wpacu-btns .btn-primary.focus,.wpacu-btns .btn-primary:focus{-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.5);box-shadow:0 0 0 2px rgba(2,117,216,.5)}.wpacu-btns .btn-primary.disabled,.wpacu-btns .btn-primary:disabled{background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-primary.active,.wpacu-btns .btn-primary:active,.wpacu-btns .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#025aa5;background-image:none;border-color:#01549b}.wpacu-btns .btn-secondary{color:#292b2c;background-color:#fff;border-color:#ccc}.wpacu-btns .btn-secondary:hover{color:#292b2c;background-color:#e6e6e6;border-color:#adadad}.wpacu-btns .btn-secondary.focus,.wpacu-btns .btn-secondary:focus{-webkit-box-shadow:0 0 0 2px rgba(204,204,204,.5);box-shadow:0 0 0 2px rgba(204,204,204,.5)}.wpacu-btns .btn-secondary.disabled,.wpacu-btns .btn-secondary:disabled{background-color:#fff;border-color:#ccc}.wpacu-btns .btn-secondary.active,.wpacu-btns .btn-secondary:active,.wpacu-btns .show>.btn-secondary.dropdown-toggle{color:#292b2c;background-color:#e6e6e6;background-image:none;border-color:#adadad}.wpacu-btns .btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.wpacu-btns .btn-info.focus,.wpacu-btns .btn-info:focus{-webkit-box-shadow:0 0 0 2px rgba(91,192,222,.5);box-shadow:0 0 0 2px rgba(91,192,222,.5)}.wpacu-btns .btn-info.disabled,.wpacu-btns .btn-info:disabled{background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-info.active,.wpacu-btns .btn-info:active,.wpacu-btns .show>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;background-image:none;border-color:#2aabd2}.wpacu-btns .btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}.wpacu-btns .btn-success.focus,.wpacu-btns .btn-success:focus{-webkit-box-shadow:0 0 0 2px rgba(92,184,92,.5);box-shadow:0 0 0 2px rgba(92,184,92,.5)}.wpacu-btns .btn-success.disabled,.wpacu-btns .btn-success:disabled{background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-success.active,.wpacu-btns .btn-success:active,.wpacu-btns .show>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;background-image:none;border-color:#419641}.wpacu-btns .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}.wpacu-btns .btn-warning.focus,.wpacu-btns .btn-warning:focus{-webkit-box-shadow:0 0 0 2px rgba(240,173,78,.5);box-shadow:0 0 0 2px rgba(240,173,78,.5)}.wpacu-btns .btn-warning.disabled,.wpacu-btns .btn-warning:disabled{background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-warning.active,.wpacu-btns .btn-warning:active,.wpacu-btns .show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;background-image:none;border-color:#eb9316}.wpacu-btns .btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}.wpacu-btns .btn-danger.focus,.wpacu-btns .btn-danger:focus{-webkit-box-shadow:0 0 0 2px rgba(217,83,79,.5);box-shadow:0 0 0 2px rgba(217,83,79,.5)}.wpacu-btns .btn-danger.disabled,.wpacu-btns .btn-danger:disabled{background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-danger.active,.wpacu-btns .btn-danger:active,.wpacu-btns .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;background-image:none;border-color:#c12e2a}.wpacu-btns .btn-outline-primary{color:#0275d8;background-image:none;background-color:transparent;border-color:#0275d8}.wpacu-btns .btn-outline-primary:hover{color:#fff;background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-outline-primary.focus,.wpacu-btns .btn-outline-primary:focus{-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.5);box-shadow:0 0 0 2px rgba(2,117,216,.5)}.wpacu-btns .btn-outline-primary.disabled,.wpacu-btns .btn-outline-primary:disabled{color:#0275d8;background-color:transparent}.wpacu-btns .btn-outline-primary.active,.wpacu-btns .btn-outline-primary:active,.wpacu-btns .show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-outline-secondary{color:#ccc;background-image:none;background-color:transparent;border-color:#ccc}.wpacu-btns .btn-outline-secondary:hover{color:#fff;background-color:#ccc;border-color:#ccc}.wpacu-btns .btn-outline-secondary.focus,.wpacu-btns .btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 2px rgba(204,204,204,.5);box-shadow:0 0 0 2px rgba(204,204,204,.5)}.wpacu-btns .btn-outline-secondary.disabled,.wpacu-btns .btn-outline-secondary:disabled{color:#ccc;background-color:transparent}.wpacu-btns .btn-outline-secondary.active,.wpacu-btns .btn-outline-secondary:active,.wpacu-btns .show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#ccc;border-color:#ccc}.wpacu-btns .btn-outline-info{color:#5bc0de;background-image:none;background-color:transparent;border-color:#5bc0de}.wpacu-btns .btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-outline-info.focus,.wpacu-btns .btn-outline-info:focus{-webkit-box-shadow:0 0 0 2px rgba(91,192,222,.5);box-shadow:0 0 0 2px rgba(91,192,222,.5)}.wpacu-btns .btn-outline-info.disabled,.wpacu-btns .btn-outline-info:disabled{color:#5bc0de;background-color:transparent}.wpacu-btns .btn-outline-info.active,.wpacu-btns .btn-outline-info:active,.wpacu-btns .show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-outline-success{color:#5cb85c;background-image:none;background-color:transparent;border-color:#5cb85c}.wpacu-btns .btn-outline-success:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-outline-success.focus,.wpacu-btns .btn-outline-success:focus{-webkit-box-shadow:0 0 0 2px rgba(92,184,92,.5);box-shadow:0 0 0 2px rgba(92,184,92,.5)}.wpacu-btns .btn-outline-success.disabled,.wpacu-btns .btn-outline-success:disabled{color:#5cb85c;background-color:transparent}.wpacu-btns .btn-outline-success.active,.wpacu-btns .btn-outline-success:active,.wpacu-btns .show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-outline-warning{color:#f0ad4e;background-image:none;background-color:transparent;border-color:#f0ad4e}.wpacu-btns .btn-outline-warning:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-outline-warning.focus,.wpacu-btns .btn-outline-warning:focus{-webkit-box-shadow:0 0 0 2px rgba(240,173,78,.5);box-shadow:0 0 0 2px rgba(240,173,78,.5)}.wpacu-btns .btn-outline-warning.disabled,.wpacu-btns .btn-outline-warning:disabled{color:#f0ad4e;background-color:transparent}.wpacu-btns .btn-outline-warning.active,.wpacu-btns .btn-outline-warning:active,.wpacu-btns .show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-outline-danger{color:#d9534f;background-image:none;background-color:transparent;border-color:#d9534f}.wpacu-btns .btn-outline-danger:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-outline-danger.focus,.wpacu-btns .btn-outline-danger:focus{-webkit-box-shadow:0 0 0 2px rgba(217,83,79,.5);box-shadow:0 0 0 2px rgba(217,83,79,.5)}.wpacu-btns .btn-outline-danger.disabled,.wpacu-btns .btn-outline-danger:disabled{color:#d9534f;background-color:transparent}.wpacu-btns .btn-outline-danger.active,.wpacu-btns .btn-outline-danger:active,.wpacu-btns .show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-link{font-weight:400;color:#0275d8;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.wpacu-btns .btn-link,.wpacu-btns .btn-link.active,.wpacu-btns .btn-link:active,.wpacu-btns .btn-link:disabled{background-color:transparent}.wpacu-btns .btn-link,.wpacu-btns .btn-link:active,.wpacu-btns .btn-link:focus,.wpacu-btns .btn-link:hover{border-color:transparent}.wpacu-btns .btn-link:focus,.wpacu-btns .btn-link:hover{color:#014c8c;text-decoration:underline;background-color:transparent}.wpacu-btns .btn-link:disabled{color:#636c72}.wpacu-btns .btn-link:disabled:focus,.wpacu-btns .btn-link:disabled:hover{text-decoration:none}.wpacu-btns .btn-group-lg>.btn,.wpacu-btns .btn-lg{padding:.75rem 1.5rem;font-size:1.25rem;-webkit-border-radius:.3rem;-moz-border-radius:.3rem;border-radius:.3rem}.wpacu-btns .btn-group-sm>.btn,.wpacu-btns .btn-sm{padding:.25rem .5rem;font-size:.875rem;-webkit-border-radius:.2rem;-moz-border-radius:.2rem;border-radius:.2rem}.wpacu-btns .btn-block{display:block;width:100%}.go-pro-button,.go-pro-link-no-style,.wordpress-core-file{display:inline-block;text-decoration:none}.wpacu-btns .btn-block+.btn-block{margin-top:.5rem}.wpacu-btns input[type=submit].btn-block,.wpacu-btns input[type=reset].btn-block,.wpacu-btns input[type=button].btn-block{width:100%}.wpacu-btns .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.go-pro-button{background-color:#4CAF50;border:2px solid #4CAF50;color:#fff;padding:12px 18px;font-size:16px;margin:4px 2px;cursor:pointer;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-transition-duration:.4s;transition-duration:.4s}.go-pro-button:hover{background-color:#fff;color:#000;border:2px solid #4CAF50;text-decoration:none}body.wp-admin .wpacu_asset_row .go-pro-link-no-style .wpacu-tooltip{padding:8px 2px}body.wp-admin .go-pro-link-no-style .wpacu-tooltip{text-shadow:none;font-weight:400;font-size:12px;line-height:16px;padding:8px 11px}.go-pro-link-no-style{position:relative;color:inherit}.go-pro-link-no-style:not(.nav-tab){font-style:italic}.go-pro-link-no-style.no-transition .wpacu-tooltip{-webkit-transition:0s all ease;transition:0s all ease;-webkit-transition-delay:0s;transition-delay:0s}.go-pro-link-no-style .wpacu-tooltip,.wordpress-core-file .wpacu-tooltip{font-size:14px;line-height:18px;visibility:hidden;text-align:center;-webkit-transition:.1s all ease;z-index:1}.go-pro-link-no-style .wpacu-tooltip{position:absolute;width:160px;background-color:#00a7a7;color:#fff;padding:8px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;bottom:100%;bottom:calc(100% + 15px);left:50%;margin-left:-65px;transition:.1s all ease;-webkit-transition-delay:0s;transition-delay:0s}.go-pro-link-no-style .wpacu-tooltip:after{content:"";position:absolute;border-width:10px;border-style:solid;top:100%;left:50%;left:calc(50% - 10px);border-color:#00a7a7 transparent transparent}.go-pro-link-no-style .wpacu-tooltip.wpacu-on-pages-btn{cursor:pointer;margin-left:-77px;width:130px}.go-pro-link-no-style .wpacu-tooltip.wpacu-larger{width:240px}.go-pro-link-no-style:hover .wpacu-tooltip{visibility:visible}.wordpress-core-file{position:relative;font-style:normal;color:inherit}.wordpress-core-file .wpacu-tooltip{position:absolute;width:160px;background-color:#c00;color:#fff;padding:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;bottom:100%;bottom:calc(100% + 15px);left:50%;margin-left:-86px;transition:.1s all ease;-webkit-transition-delay:0s;transition-delay:0s}.wordpress-core-file .wpacu-tooltip:after{content:"";position:absolute;border-width:10px;border-style:solid;top:100%;left:50%;left:calc(50% - 10px);border-color:#c00 transparent transparent}.wordpress-core-file:hover .wpacu-tooltip{visibility:visible}.ajax-direct-call-error-area{background:#fff;padding:10px;border:1px solid #c00;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px}.ajax-direct-call-error-area td{padding:6px}.ajax-direct-call-error-area .note{margin-top:0;padding-top:0}.ajax-direct-call-error-area .error-code{color:#c00;font-weight:700}.ajax-wp-remote-post-call-error-area{background:#fff;padding:20px}.ajax-wp-remote-post-call-error-area .table-data{background:0 0;border:1px solid #c66;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.ajax-wp-remote-post-call-error-area .table-data td{padding:10px}.wrap-upgrade-info{background:#fff;padding:0 15px;border:1px solid #cdcdcd;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.wpacu-notice{margin:20px 20px 0 0!important}.wpacu-notice p{font-weight:600!important;font-style:italic}.wpacu-notice .dashicons{font-weight:inherit!important;color:#46b450!important;margin-right:4px;vertical-align:text-bottom;font-size:27px}.wpacu-notice-info{padding:12px 12px 12px 16px;background:#fff;border-left:4px solid #008f9c}.wpacu-notice-info p{margin-top:8px}.wpacu-notice-info p:first-child{margin-top:0}.wpacu-notice-info p:last-child{margin-bottom:0}.wpacu-warning{font-size:15px;padding:10px;background:#fffcec;border:1px solid #fdd5c9;margin:0 0 5px;width:100%}.pro-page-unlock-notice{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;padding:10px;background:#f2faf2;border:1px solid #c0e8c0;width:auto;display:block}.wpacu-license-area .notice,.wpacu-settings-area .notice{margin-left:0;padding:10px!important;width:97%;box-sizing:border-box;font-weight:600;font-style:italic}.wpacu-license-area .notice .dashicons,.wpacu-settings-area .notice .dashicons{color:green}#wpacu-dom-get-type-selections{float:none;clear:both;width:auto;display:inline-block;margin-bottom:0;margin-top:0}#wpacu-dom-get-type-selections li{margin-right:30px;float:left;margin-bottom:0}#wpacu-dom-get-type-selections li:first-child{margin-right:15px}#wpacu-dom-get-type-selections li:last-child{margin-right:0}#wpacu-dom-get-type-infos{margin-bottom:0}#wpacu-dom-get-type-infos li{margin-bottom:0;line-height:20px}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch,.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch{width:auto;height:auto}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch input,.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch input{display:block}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch input[type=checkbox],.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch input[type=checkbox]{margin:0 0 3px}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch .wpacu_slider,.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch .wpacu_slider{display:none}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch{position:relative;display:inline-block;width:52px;height:29px}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input{display:none}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch:not(.wpacu_switch_standard) .wpacu_slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.2s;transition:.2s}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch:not(.wpacu_switch_standard) .wpacu_slider:before{position:absolute;content:'';height:22px;width:22px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.2s;transition:.2s}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input:checked+.wpacu_slider{background-color:#52af00}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input:focus+.wpacu_slider{box-shadow:0 0 1px #52af00}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input:checked+.wpacu_slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translateX(22px)}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch .wpacu_slider.wpacu_round{border-radius:29px}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch .wpacu_slider.wpacu_round:before{border-radius:50%}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch.wpacu_locked_for_pro{opacity:.3}.asset-cleanup-pro_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle,.asset-cleanup_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle{margin-top:2px;line-height:1.2}.asset-cleanup-pro_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle em,.asset-cleanup_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle em{font-weight:200}.asset-cleanup-pro_page_wpassetcleanup_settings .setting_title p.wpacu_read_more,.asset-cleanup_page_wpassetcleanup_settings .setting_title p.wpacu_read_more{margin-top:-10px;font-style:italic;font-size:12px}.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_inline_code_status_choices,.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices,.asset-cleanup-pro_page_wpassetcleanup_settings .input_style_choices,.asset-cleanup_page_wpassetcleanup_settings .assets_list_inline_code_status_choices,.asset-cleanup_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices,.asset-cleanup_page_wpassetcleanup_settings .input_style_choices{list-style:none;margin:0}.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li,.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li,.asset-cleanup-pro_page_wpassetcleanup_settings .input_style_choices li,.asset-cleanup_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li,.asset-cleanup_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li,.asset-cleanup_page_wpassetcleanup_settings .input_style_choices li{float:left;margin-right:30px}.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li:last-child,.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li:last-child,.asset-cleanup-pro_page_wpassetcleanup_settings .input_style_choices li:last-child,.asset-cleanup_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li:last-child,.asset-cleanup_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li:last-child,.asset-cleanup_page_wpassetcleanup_settings .input_style_choices li:last-child{margin-right:0}.notice.notice-success+.wpacu-wrap.wpacu-settings-area{margin-top:20px}.wpacu-form-table th{vertical-align:top;text-align:left;padding:5px 20px 20px 0;width:200px;line-height:1.3;font-weight:600}.wpacu-form-table th label{color:#23282d;font-weight:600;font-size:14px;text-shadow:none;vertical-align:middle;cursor:pointer}.wpacu-form-table td{padding-bottom:25px}.wpacu-form-table td:last-child p:last-child{margin:0}#wpacu-settings-vertical-tab-wrap{display:table;width:100%}#wpacu-settings-vertical-tab-wrap *{box-sizing:border-box}.wpacu-settings-tab{display:table-cell;width:19%;height:100%;vertical-align:top}.wpacu-settings-tab a{text-decoration:none;border-left:3px solid transparent;display:block;background-color:#f1f1f1;color:#004567;padding:17px 16px;width:100%;outline:0;text-align:left;cursor:pointer;font-size:14px;font-weight:600;border-bottom:1px solid #ccc}.wpacu-settings-tab a:first-child{border-top:1px solid transparent!important}.wpacu-settings-tab a:last-child{border-bottom:1px solid transparent!important}.wpacu-settings-tab a:hover{background-color:#fff;border-left:3px solid #004567;position:relative}.wpacu-settings-tab a.active{color:#004567;background-color:#fff;border-left:3px solid #004567;position:relative;border-bottom:1px solid #ccc}.wpacu-settings-tab a.active:after{content:'';position:absolute;height:100%;width:1px;top:0;right:-1px;background-color:#fff}.wpacu-settings-tab-content{background-color:#fff;display:none;padding:12px 18px;width:79%;border-left:none;height:100%;border-top-right-radius:10px;border-bottom-right-radius:10px}.wpacu-settings-tab-content h2{padding:0 0 15px;border-bottom:1px solid #e7e7e7}.wpacu-settings-tab-content.active{display:table-cell}#wpacu_minify_css_exceptions_area,#wpacu_minify_js_exceptions_area{margin:16px 0 0}#wpacu-update-button-area{margin-left:19%}#wpacu-update-button-area.no-left-margin{margin-left:0}#wpacu-update-button-area p{margin-top:10px}#wpacu-update-button-area .button{padding:5px 18px;height:38px;font-size:15px}.wrap_bulk_unload_options{width:auto;display:inline-flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.wrap_bulk_unload_options .wpacu_asset_options_wrap{flex-grow:1;margin:5px 10px 14px 0!important;padding:8px 10px 2px!important}.wrap_bulk_unload_options .wpacu_asset_options_wrap .wpacu_slider_text{position:relative!important;vertical-align:top;left:inherit!important;top:inherit!important}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch{position:relative;display:inline-block;width:52px;height:29px;margin-right:5px!important}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input{display:none}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.2s;transition:.2s}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider:before{position:absolute;content:'';height:22px;width:22px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.2s;transition:.2s}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input:checked+.wpacu_slider{background-color:#C00}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input:focus+.wpacu_slider{box-shadow:0 0 1px #C00}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input:checked+.wpacu_slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translateX(22px)}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider.wpacu_round{border-radius:29px}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider.wpacu_round:before{border-radius:50%}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_slider_text{position:absolute;left:62px;top:3px}.wpacu_asset_row td{width:100%}.wpacu_asset_row td p:last-child{margin-bottom:0!important}.wpacu_asset_row td .wpacu_asset_options_wrap{padding:8px 10px;margin:15px 0;background:#fff;border:1px solid #eee;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.wpacu_asset_row td .wpacu_asset_options_wrap p:first-child{margin-top:0;margin-bottom:8px!important}.wpacu_asset_row p.wpacu_handle{margin-top:0}.wpacu_asset_row li.wpacu_unload_this_page{display:block!important;position:relative}.wpacu-clearfix:after,.wpacu-clearfix:before{content:'';display:table}.wpacu-contract-expand-area{width:100%;margin:20px 0 0}.wpacu-contract-expand-area .col-left{float:left}.wpacu-contract-expand-area .col-left h4{margin-bottom:0}.wpacu-contract-expand-area .col-right{float:right}.wpacu-clearfix:after{clear:both}.wpacu-wp-button{color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}body.wp-admin .wpacu-wp-button{font-size:13px;line-height:26px;height:28px}.wpacu-wp-button.wpacu-wp-button-secondary{display:inline-block;text-decoration:none;height:auto;margin:0 5px 0 0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wpacu-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}.distinguish-asset-list{list-style:none;margin-left:0;margin-bottom:5px;display:inline-block}.distinguish-asset-list li{float:left;margin-right:20px}.distinguish-asset-list li:last-child{margin-right:0}.wpacu-assets-collapsible-wrap{border:1px solid #cdcdcd}.wpacu-assets-collapsible-wrap.wpacu-by-location{margin-bottom:15px}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-plugins .wpacu-assets-collapsible-content>table:last-child,.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content>table:last-child{margin-bottom:20px}.wpacu-assets-collapsible-wrap.wpacu-wrap-all,.wpacu-assets-collapsible-wrap.wpacu-wrap-styles{margin-top:20px}.wpacu-assets-collapsible-wrap.wpacu-wrap-scripts{margin-top:10px}.wpacu-assets-collapsible-wrap.wpacu-by-location>a.wpacu-assets-collapsible{padding:15px 15px 15px 43px}.wpacu-assets-collapsible-wrap.wpacu-by-location .wpacu_list_table{border-spacing:inherit;width:100%;box-shadow:3px 3px 2px #ddd;border-bottom-right-radius:5px;border-top-right-radius:5px}.wpacu-assets-collapsible-wrap.wpacu-by-location span.wpacu-child-location-name{font-weight:600}.wpacu-assets-collapsible-wrap.wpacu-by-location span.wpacu-child-location-version{font-weight:200}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content .wpacu-location-child-area strong{position:relative;padding:9px 10px 10px 15px;z-index:1}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-plugins .wpacu-assets-collapsible-content .wpacu-location-child-area strong:after,.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content .wpacu-location-child-area strong:after{content:'';position:absolute;width:100%;left:0;bottom:0;height:1px;background-color:#fdfdfd}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-plugins .wpacu-assets-collapsible-content .wpacu-location-child-area strong{position:relative;padding:17px 10px 16px 46px;z-index:1}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content .wpacu-location-child-area{margin-bottom:10px}.wpacu-assets-collapsible-wrap.wpacu-by-location .wpacu-assets-collapsible-content .wpacu-location-child-area{margin-top:22px;margin-bottom:14px;font-size:110%;line-height:initial}.wpacu-assets-collapsible-wrap.wpacu-by-location .wpacu-assets-collapsible-content .wpacu-location-child-area strong{border-top-right-radius:8px;border-top-left-radius:8px;background-color:#f9f9f9;border-left:1px solid #cdcdcd;border-top:1px solid #cdcdcd;border-bottom:1px solid transparent;border-right:1px solid #cdcdcd;position:relative;padding:10px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default{position:absolute;padding:0;top:10px;left:10px;width:37px;height:37px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default:not(.has-icon){color:#b4b9be;background-color:#eee;box-shadow:inset 0 0 10px rgba(160,165,170,.15);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default:not(.has-icon) .icon-area:before{content:"\f106";font-family:Dashicons;position:absolute;font-size:28px;line-height:28px;top:5px;left:5px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default .icon-area{position:relative;width:37px;height:37px}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content{padding:0}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table{width:100%;margin:0}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row td,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row td{border-left:hidden;border-right:hidden;border-bottom:1px solid #cdcdcd}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child{margin-bottom:0!important}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child td:last-child,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child td:last-child{border-bottom:hidden}a.wpacu-assets-collapsible{color:#000;font-size:20px;text-decoration:none;display:block;position:relative;background-color:#f1f3f8;cursor:pointer;padding:15px 15px 15px 36px;width:auto;border:none;text-align:left;outline:0}a.wpacu-assets-collapsible>span.dashicons{font-size:25px;line-height:normal;position:absolute;top:15px;top:calc(50% - 21px);left:22px;-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}a.wpacu-assets-collapsible:hover{background-color:#f1f3f8;text-decoration:none}a.wpacu-assets-collapsible:after{position:absolute;font-size:22px;font-family:Dashicons;right:14px;top:16px}a.wpacu-assets-collapsible:not(.wpacu-assets-collapsible-active):after{content:"\f132"}a.wpacu-assets-collapsible.wpacu-assets-collapsible-active{background-color:#f1f3f8}a.wpacu-assets-collapsible.wpacu-assets-collapsible-active:after{content:"\f460"}.wpacu-assets-collapsible-content{padding:0 16px;max-height:0;overflow:hidden;background-color:#fbfbfb8c}.wpacu-assets-collapsible-content .wpacu-assets-note{margin:0;padding:15px 15px 10px}.wpacu-assets-collapsible-content>div{padding:16px 0 0}.wpacu-assets-collapsible-content>div>p:first-child{margin-top:0}.wpacu-assets-collapsible-content.wpacu-open{max-height:100%}a.wpacu-assets-inline-code-collapsible{color:inherit;font-size:14px;text-decoration:none;display:inline-block;position:relative;cursor:pointer;width:auto;outline:0;background:#f1f3f8;border:1px solid #cdcdcd;padding:4px 21px 4px 8px;margin:0 0 0 6px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}a.wpacu-assets-inline-code-collapsible:hover{border:1px solid #5c5c5c}a.wpacu-assets-inline-code-collapsible:after{position:absolute;font-size:15px;font-family:Dashicons;right:-3px;top:-1px;height:14px;width:14px;-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}a.wpacu-assets-inline-code-collapsible:not(.wpacu-assets-inline-code-collapsible-active):after{content:"\f132"}a.wpacu-assets-inline-code-collapsible.wpacu-assets-inline-code-collapsible-active:after{content:"\f460"}.wpacu-assets-inline-code-collapsible-content{font-size:80%;padding:0 8px;max-height:0;overflow:hidden;background-color:#fbfbfb8c}.wpacu-assets-inline-code-collapsible-content>div{padding:7px 8px 0}.wpacu-assets-inline-code-collapsible-content>div>p:first-child{margin-top:0}.wpacu-assets-inline-code-collapsible-content.wpacu-open{max-height:100%}.wpacu_table_wrap{margin:20px 0 0}.wpacu_table_wrap>table{border:1px solid #cdcdcd}.wpacu_table_wrap .table{width:100%;max-width:100%;margin-bottom:1rem;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.wpacu_table_wrap .table td,.wpacu_table_wrap .table th{padding:.75rem;vertical-align:top;border-top:1px solid #eceeef}.wpacu_table_wrap .table thead th{vertical-align:bottom;border-bottom:2px solid #eceeef}.wpacu_table_wrap .table tbody+tbody{border-top:2px solid #eceeef}.wpacu_table_wrap .table .table{background-color:#fff}.wpacu_table_wrap .table-sm td,.wpacu_table_wrap .table-sm th{padding:.3rem}.wpacu_table_wrap .table-bordered,.wpacu_table_wrap .table-bordered td,.wpacu_table_wrap .table-bordered th{border:1px solid #eceeef}.wpacu_table_wrap .table-bordered thead td,.wpacu_table_wrap .table-bordered thead th{border-bottom-width:2px}.wpacu_table_wrap .table-striped tbody tr:nth-of-type(even){background-color:#f9f9f9}.wpacu_table_wrap .table-striped tbody tr:nth-of-type(odd){background-color:#fff}.wpacu_table_wrap .table-active,.wpacu_table_wrap .table-active>td,.wpacu_table_wrap .table-active>th,.wpacu_table_wrap .table-hover .table-active:hover,.wpacu_table_wrap .table-hover .table-active:hover>td,.wpacu_table_wrap .table-hover .table-active:hover>th,.wpacu_table_wrap .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.wpacu_table_wrap .table-success,.wpacu_table_wrap .table-success>td,.wpacu_table_wrap .table-success>th{background-color:#dff0d8}.wpacu_table_wrap .table-hover .table-success:hover,.wpacu_table_wrap .table-hover .table-success:hover>td,.wpacu_table_wrap .table-hover .table-success:hover>th{background-color:#d0e9c6}.wpacu_table_wrap .table-info,.wpacu_table_wrap .table-info>td,.wpacu_table_wrap .table-info>th{background-color:#d9edf7}.wpacu_table_wrap .table-hover .table-info:hover,.wpacu_table_wrap .table-hover .table-info:hover>td,.wpacu_table_wrap .table-hover .table-info:hover>th{background-color:#c4e3f3}.wpacu_table_wrap .table-warning,.wpacu_table_wrap .table-warning>td,.wpacu_table_wrap .table-warning>th{background-color:#fcf8e3}.wpacu_table_wrap .table-hover .table-warning:hover,.wpacu_table_wrap .table-hover .table-warning:hover>td,.wpacu_table_wrap .table-hover .table-warning:hover>th{background-color:#faf2cc}.wpacu_table_wrap .table-danger,.wpacu_table_wrap .table-danger>td,.wpacu_table_wrap .table-danger>th{background-color:#f2dede}.wpacu_table_wrap .table-hover .table-danger:hover,.wpacu_table_wrap .table-hover .table-danger:hover>td,.wpacu_table_wrap .table-hover .table-danger:hover>th{background-color:#ebcccc}.wpacu_table_wrap .thead-inverse th{color:#fff;background-color:#292b2c}.wpacu_table_wrap .thead-default th{color:#464a4c;background-color:#eceeef}.wpacu_table_wrap .table-inverse{color:#fff;background-color:#292b2c}.wpacu_table_wrap .table-inverse td,.wpacu_table_wrap .table-inverse th,.wpacu_table_wrap .table-inverse thead th{border-color:#fff}.wpacu_table_wrap .table-inverse.table-bordered,.wpacu_table_wrap .table-responsive.table-bordered{border:0}.wpacu_table_wrap .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}ul.hire-reasons{margin-bottom:20px}ul.hire-reasons li{font-size:14px;line-height:22px;margin-bottom:12px}ul.hire-reasons li .dashicons{font-size:23px;line-height:23px}ul.hire-reasons li .dashicons.dashicons-yes{color:green}ol.getting-started li{font-size:14px;line-height:22px;margin-bottom:8px}.wpacu-get-help-wrap p{font-size:14px}.wpacu-get-help-wrap .help-content-wrap{margin:20px 0 25px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex;width:100%}@media only screen and (min-width:768px){.wpacu-get-help-wrap .help-content-wrap{-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}}@media only screen and (max-width:767px){.wpacu-get-help-wrap .help-content-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.wpacu-get-help-wrap .help-content-wrap .help-content{padding:15px;background:#fff;border:1px solid #E0E0E0;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;box-shadow:2px 3px 8px 0 #231f2038;flex:1 1 50%;margin-bottom:10px}.wpacu-get-help-wrap .help-content-wrap .help-content .content-title{margin:5px 0 15px}.wpacu-get-help-wrap .help-content-wrap .help-content .cols-wrap{width:100%;margin:0 auto;display:table}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area{margin:5px 0 0;position:relative}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area.col-left{float:left;width:48%}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area.col-right{float:right;width:48%}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area.activate-plugin img{max-width:280px}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area img{width:99%;margin:8px 0;border:1px solid #cdcdcd;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.wpacu-get-help-wrap .help-content-wrap .help-content.upgrade-help{order:2}@media only screen and (min-width:768px){.wpacu-get-help-wrap .help-content-wrap .help-content{margin-right:24px}.wpacu-get-help-wrap .help-content-wrap .help-content.upgrade-help{margin-right:0}}.wpacu-get-help-wrap .help-content-wrap .help-content.tech-help{order:1}@media only screen and (max-width:767px){.wpacu-get-help-wrap .help-content-wrap .help-content.tech-help{margin-bottom:30px}}.wpacu-get-help-wrap .help-content-wrap .help-content ul{list-style:none;padding-left:0}.wpacu-get-help-wrap .help-content-wrap .help-content ul li{font-size:14px;line-height:22px;margin-bottom:15px}.wpacu-get-help-wrap .help-content-wrap .help-content p:last-child,.wpacu-get-help-wrap .help-content-wrap .help-content ul li:last-child{margin-bottom:0}#wpacu-license-data-remove-area{display:none;margin:10px 0 25px}#wpacu-license-data-remove-area.wpacu-visible{display:block}span#wpacu-license-data-removed-msg{display:block;padding-left:26px}#wpacu-warning-read{display:none;margin:10px 0}#wpacu-warning-read span.dashicons-warning{color:#c00}#wpacu-warning-read.wpacu-visible{display:block}#wpacu-reset-submit-area{margin:10px 0;clear:both}#wpacu-reset-submit-btn{margin:10px 0 0}.wpacu-tools-area{margin:10px 20px 0 2px}.wpacu-tools-area .wpacu-tools-container{background:#fff;padding:15px;border:1px solid #cdcdcd;width:96%}.wpacu-tools-area .wpacu-tools-container form>div:first-child{margin:0 0 10px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning{display:none;box-sizing:border-box;margin-top:10px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning p{margin:0 0 10px;line-height:22px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning p:only-child{margin:0}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning ul{font-size:13px;list-style-type:disc;padding-left:30px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning.wpacu-visible{display:block}.wpacu-about-wrap .wpacu-about-text img{width:auto;height:150px;position:absolute;top:20px;right:-20px}@media only screen and (max-width:767px){.wpacu-about-wrap h1{margin:20px}.wpacu-about-wrap .wpacu-about-text img{display:none}.wpacu-about-wrap .wpacu-about-text{margin:20px}}.wpacu-about-wrap .about-wrap-content .area-title{font-size:19px;line-height:19px;margin-bottom:0}.wpacu-about-wrap hr{margin:10px 0}
1
+ #wpacu_meta_box_content .dashicons.dashicons-warning,.wpacu-tabs nav ul li span.license-status.inactive{color:#c00}#wpacu-pages-info-area{width:98%}#wpacu-logo-area{margin:15px 0;padding:0 10px}#wpacu-logo-area img{width:352px;height:79px}.wpacu-tabs{position:relative;overflow:hidden;margin:0 auto 20px;width:100%;font-weight:300;font-size:20px}.wpacu-tabs nav{text-align:center}.wpacu-tabs nav ul{position:relative;display:-ms-flexbox;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:flex;margin:0 auto;padding:0;max-width:1200px;list-style:none;-ms-box-orient:horizontal;-ms-box-pack:center;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center}.wpacu-tabs nav ul li{position:relative;z-index:1;display:block;margin:0;text-align:center;-webkit-flex:1;-moz-flex:1;-ms-flex:1;flex:1}.wpacu-tabs nav ul li span.license-status{position:absolute;font-size:12px;left:0;right:50%;bottom:12px;-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.wpacu-license-area .notice .dashicons,.wpacu-settings-area .notice .dashicons,.wpacu-tabs nav ul li span.license-status.active{color:green}.wpacu-tabs nav a{position:relative;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:2.5}.wpacu-tabs nav a span{vertical-align:middle;font-size:14px}.wpacu-tabs nav li.wpacu-tab-current a{color:#74777b}.wpacu-tabs nav a:focus{outline:0}.wpacu-tabs .dashicons{font-size:20px}.no-js .wpacu-content-wrap section{display:block;padding-bottom:2em;border-bottom:1px solid rgba(255,255,255,.6)}.no-flexbox nav ul{display:block}.no-flexbox nav ul li{min-width:15%;display:inline-block}@media screen and (max-width:58em){.wpacu-tabs nav a.icon span{display:none}.wpacu-tabs nav a:before{margin-right:0}}.wpacu-tabs-style-underline nav{background:#fff}.wpacu-tabs-style-underline nav a{color:#74777b;font-size:18px;text-transform:uppercase;text-decoration:none;padding:.25em 0 .5em;border-left:1px solid #e7ecea;-webkit-transition:color .2s;transition:color .2s}.wpacu-tabs-style-underline nav li:last-child a{border-right:1px solid #e7ecea}.wpacu-tabs-style-underline nav li a::after{position:absolute;bottom:0;left:0;width:100%;height:6px;background:#2CC185;content:'';-webkit-transition:-webkit-transform .3s;transition:transform .3s;-webkit-transform:translate3d(0,150%,0);transform:translate3d(0,150%,0)}.wpacu-tabs-style-underline nav li.wpacu-tab-current a::after{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.wpacu-tabs-style-underline nav a span{font-weight:700}.wpacu-tabs-style-topline{max-width:1200px;margin:20px auto 30px 0;width:100%;font-weight:300;text-decoration:none}.wpacu-tabs-style-topline nav li{border:1px solid rgba(40,44,42,.1)}.wpacu-tabs-style-topline nav li:not(:last-child){border-right:none}.wpacu-tabs-style-topline nav li.wpacu-tab-current{border-top-color:#008f9c;border-bottom:none}.wpacu-tabs-style-topline nav a{padding:20px 18px;background:rgba(40,44,42,.05);color:#74777b;line-height:1;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}.wpacu-tabs-style-topline nav a:focus,.wpacu-tabs-style-topline nav a:hover{background:0 0;color:#008f9c}.wpacu-tabs-style-topline nav li.wpacu-tab-current a{background:0 0;box-shadow:inset 0 3px 0 #008f9c;color:#008f9c}.wpacu-tabs-style-topline nav li.wpacu-tab-current a span:not(.dashicons){font-weight:600}.wpacu-tabs-style-topline nav a span{text-transform:uppercase;font-weight:400}.wpacu-tab-nav-wrapper{border-bottom:none!important}.wpacu-tab-nav-wrapper .nav-tab.nav-tab-active{background:#fff;position:relative}.wpacu-tab-nav-wrapper .nav-tab.nav-tab-active:after{content:'';width:100%;bottom:-2px;left:0;position:absolute;border-bottom:2px solid #fff}.wpacu-script-attributes-area{margin:20px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings{padding:5px 7px!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings.wpacu-first{margin:0 28px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings label{margin:0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings li{margin:0 16px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings li:first-child{margin:0 10px 0 0!important}.wpacu-script-attributes-area.wpacu-lite ul.wpacu-script-attributes-settings li:last-child{margin:0 2px 0 0!important}.wpacu-script-attributes-area .wpacu-script-attributes-settings{background:#fff!important;border:1px solid #eee!important;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:5px 10px!important;list-style:none;display:inline-block;margin:0}.wpacu-script-attributes-area .wpacu-script-attributes-settings input[type=radio]{padding:0;margin:0 5px 0 0}.wpacu-script-attributes-area .wpacu-script-attributes-settings.wpacu-first{margin:0 34px 0 0!important}.wpacu-script-attributes-area .wpacu-script-attributes-settings li{float:left;margin:0 17px 0 0}.wpacu-script-attributes-area .wpacu-script-attributes-settings li:first-child{margin:0 10px 0 0!important}.wpacu-script-attributes-area .wpacu-script-attributes-settings li:last-child{margin:0}.wpacu-script-attributes-area .wpacu-script-attributes-settings:hover{background:#f2faf2}tr.wpacu_not_load td,tr.wpacu_not_load th{background:#FFE1E1!important}.dashicons-wpacu{width:17px;height:17px;margin:2px 0 0;font-size:16px;text-decoration:none}.wpacu_widefat .check-column.wpacu_check{padding:10px}body[class*=wpassetcleanup] #footer-left{border-left:2px solid green;padding-left:10px}#wpacu_meta_box_content{width:99%}#wpacu_meta_box_content .emoji{font-size:18px}#wpacu_meta_box_content h3{margin-left:0;padding-left:0}#wpacu_meta_box_content div.wpacu_note{padding:10px;background-color:#f5f5f5}#wpacu_meta_box_content .wpacu_verified{padding:10px;background-color:#f5f5f5;border-left:1px solid #ddd}#wpacu_meta_box_content .wpacu_verified span{color:#0073aa;font-weight:700}#wpacu_meta_box_content div.wpacu_warning{border:1px solid #c00}#wpacu_meta_box_content ul.wpacu_asset_options{margin:0;padding:0}#wpacu_meta_box_content ul.wpacu_asset_options li{list-style:none;display:inline-block}#wpacu_wrap_assets img,#wpacu_wrap_assets small,.wpacu_asset_row td label{display:inline-block!important}#wpacu_meta_box_content ul.wpacu_asset_options label{font-weight:400;margin-right:5px;margin-top:5px;margin-bottom:5px}.wpacu-updated-frontend{font-weight:400;background-color:#fff;border-left:4px solid #46b450;border-top:1px solid #46b450;border-right:1px solid #46b450;border-bottom:1px solid #46b450;padding:9px 14px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.wpacu-updated-frontend span.dashicons-yes{color:#46b450;font-size:26px}#wpacu_wrap_assets{color:#000!important;text-align:left!important;clear:both!important;width:90%!important;padding:20px!important;margin:30px 0 0 15px!important;border:1px solid #cdcdcd;z-index:10000!important;position:relative!important;background-color:#fff!important}#wpacu_wrap_assets div.wpacu_warning{border:1px solid #c00;padding:5px 10px}#wpacu_wrap_assets small{margin:0!important;letter-spacing:normal!important}#wpacu_wrap_assets input[type=checkbox]{margin-right:4px!important}#wpacu_wrap_assets p{line-height:22px!important;margin:10px 0!important;text-align:left!important;font-weight:400!important}#wpacu_wrap_assets p:first-child,.wpacu_verified{margin:0 0 10px!important}#wpacu_wrap_assets h1{margin:0 0 20px!important;font-size:160%!important;text-align:left!important}#wpacu_wrap_assets h3{margin:20px 0;font-size:130%}.wpacu_asset_row td{padding:18px!important;position:relative;border-left:1px solid #cdcdcd;border-right:1px solid #cdcdcd;border-bottom:1px solid #cdcdcd}.wpacu_asset_row td.selected,.wpacu_asset_row td:hover{border:1px solid #cdcdcd;-moz-box-shadow:inset 0 0 12px #cdcdcd;-webkit-box-shadow:inset 0 0 12px #cdcdcd;box-shadow:inset 0 0 12px #cdcdcd}.wpacu_asset_row td:first-child{border-top:1px solid #cdcdcd}.wpacu_asset_row td p{padding:0!important;margin-bottom:10px!important;word-wrap:break-word!important;-ms-word-break:break-all;word-break:break-word}.wpacu_asset_row td label{margin:0!important;cursor:pointer!important;font-size:100%!important;font-weight:400!important}.wpacu_asset_row td label span:not(.dashicons){font-size:100%!important}.wpacu_asset_row td.wpacu_check{width:50px!important}.asset-table-extra-info td{padding:5px!important}body.wp-admin .wpacu_asset_row td.wpacu_check{width:25px!important}.wpacu_asset_row .dashicons-warning{color:red!important}label.wpacu_add_global{cursor:pointer!important}label.wpacu_global_checked{font-weight:700;color:#d54e21}label.wpacu_global_unload_exception{font-weight:700!important}label.wpacu_bulk_unload_active{color:#d54e21}tr.wpacu_global_rule_row.selected{background:#e7e7e7}.nav-tab-wrapper{border-bottom:1px solid #ccc;width:95%}ul.wpacu_asset_options{margin:0 10px 0 0;padding:0}ul.wpacu_asset_options li{margin:0 20px 0 0;list-style:none;display:inline-block}ul.wpacu_asset_options li.remove_rule label{font-weight:700}ul.wpacu_asset_options label{margin-right:20px;font-weight:400}ul.wpacu_asset_options label input{margin-right:4px}.wpacu_list_table,.wpacu_list_table div,.wpacu_list_table li,.wpacu_list_table p{font-weight:400}.wpacu_widefat{width:99%}.wpacu_striped>tbody>:nth-child(even),ul.wpacu_striped>:nth-child(even){background-color:#fff!important}.wpacu_striped>tbody>:nth-child(odd),ul.wpacu_striped>:nth-child(odd){background-color:#f9f9f9!important}.wpacu_update_btn{-moz-box-shadow:inset 0 1px 0 0 #54a3f7!important;-webkit-box-shadow:inset 0 1px 0 0 #54a3f7!important;box-shadow:inset 0 1px 0 0 #54a3f7!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(.05,#007dc1),color-stop(1,#0061a7))!important;background:-moz-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:-webkit-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:-o-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:-ms-linear-gradient(top,#007dc1 5%,#0061a7 100%)!important;background:linear-gradient(to bottom,#007dc1 5%,#0061a7 100%)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7', GradientType=0)!important;background-color:#007dc1!important;-moz-border-radius:3px!important;-webkit-border-radius:3px!important;border-radius:3px!important;border:1px solid #124d77!important;display:inline-block!important;cursor:pointer!important;color:#fff!important;font-size:15px!important;padding:10px 24px!important;text-decoration:none!important;text-shadow:0 1px 0 #154682!important;height:auto!important;line-height:normal!important}.wpacu-btns .btn:focus,.wpacu-btns .btn:hover,.wpacu-btns a{text-decoration:none}.wpacu_update_btn:hover{background:-webkit-gradient(linear,left top,left bottom,color-stop(.05,#0061a7),color-stop(1,#007dc1))!important;background:-moz-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:-webkit-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:-o-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:-ms-linear-gradient(top,#0061a7 5%,#007dc1 100%)!important;background:linear-gradient(to bottom,#0061a7 5%,#007dc1 100%)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1', GradientType=0)!important;background-color:#0061a7!important}.wpacu_update_btn:active{position:relative!important;top:1px!important}.wpacu-btns .btn{display:inline-block;font-weight:400;line-height:1.25;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5rem 1rem;font-size:1rem;-webkit-border-radius:.25rem;-moz-border-radius:.25rem;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wpacu-btns .btn.focus,.wpacu-btns .btn:focus{outline:0;-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.25);box-shadow:0 0 0 2px rgba(2,117,216,.25)}.wpacu-btns .btn.disabled,.wpacu-btns .btn:disabled{cursor:not-allowed;opacity:.65}.wpacu-btns .btn.active,.wpacu-btns .btn:active{background-image:none}.wpacu-btns a.btn.disabled,.wpacu-btns fieldset[disabled] a.btn{pointer-events:none}.wpacu-btns .btn-primary{color:#fff;background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-primary:hover{color:#fff;background-color:#025aa5;border-color:#01549b}.wpacu-btns .btn-primary.focus,.wpacu-btns .btn-primary:focus{-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.5);box-shadow:0 0 0 2px rgba(2,117,216,.5)}.wpacu-btns .btn-primary.disabled,.wpacu-btns .btn-primary:disabled{background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-primary.active,.wpacu-btns .btn-primary:active,.wpacu-btns .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#025aa5;background-image:none;border-color:#01549b}.wpacu-btns .btn-secondary{color:#292b2c;background-color:#fff;border-color:#ccc}.wpacu-btns .btn-secondary:hover{color:#292b2c;background-color:#e6e6e6;border-color:#adadad}.wpacu-btns .btn-secondary.focus,.wpacu-btns .btn-secondary:focus{-webkit-box-shadow:0 0 0 2px rgba(204,204,204,.5);box-shadow:0 0 0 2px rgba(204,204,204,.5)}.wpacu-btns .btn-secondary.disabled,.wpacu-btns .btn-secondary:disabled{background-color:#fff;border-color:#ccc}.wpacu-btns .btn-secondary.active,.wpacu-btns .btn-secondary:active,.wpacu-btns .show>.btn-secondary.dropdown-toggle{color:#292b2c;background-color:#e6e6e6;background-image:none;border-color:#adadad}.wpacu-btns .btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.wpacu-btns .btn-info.focus,.wpacu-btns .btn-info:focus{-webkit-box-shadow:0 0 0 2px rgba(91,192,222,.5);box-shadow:0 0 0 2px rgba(91,192,222,.5)}.wpacu-btns .btn-info.disabled,.wpacu-btns .btn-info:disabled{background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-info.active,.wpacu-btns .btn-info:active,.wpacu-btns .show>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;background-image:none;border-color:#2aabd2}.wpacu-btns .btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}.wpacu-btns .btn-success.focus,.wpacu-btns .btn-success:focus{-webkit-box-shadow:0 0 0 2px rgba(92,184,92,.5);box-shadow:0 0 0 2px rgba(92,184,92,.5)}.wpacu-btns .btn-success.disabled,.wpacu-btns .btn-success:disabled{background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-success.active,.wpacu-btns .btn-success:active,.wpacu-btns .show>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;background-image:none;border-color:#419641}.wpacu-btns .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}.wpacu-btns .btn-warning.focus,.wpacu-btns .btn-warning:focus{-webkit-box-shadow:0 0 0 2px rgba(240,173,78,.5);box-shadow:0 0 0 2px rgba(240,173,78,.5)}.wpacu-btns .btn-warning.disabled,.wpacu-btns .btn-warning:disabled{background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-warning.active,.wpacu-btns .btn-warning:active,.wpacu-btns .show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;background-image:none;border-color:#eb9316}.wpacu-btns .btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}.wpacu-btns .btn-danger.focus,.wpacu-btns .btn-danger:focus{-webkit-box-shadow:0 0 0 2px rgba(217,83,79,.5);box-shadow:0 0 0 2px rgba(217,83,79,.5)}.wpacu-btns .btn-danger.disabled,.wpacu-btns .btn-danger:disabled{background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-danger.active,.wpacu-btns .btn-danger:active,.wpacu-btns .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;background-image:none;border-color:#c12e2a}.wpacu-btns .btn-outline-primary{color:#0275d8;background-image:none;background-color:transparent;border-color:#0275d8}.wpacu-btns .btn-outline-primary:hover{color:#fff;background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-outline-primary.focus,.wpacu-btns .btn-outline-primary:focus{-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.5);box-shadow:0 0 0 2px rgba(2,117,216,.5)}.wpacu-btns .btn-outline-primary.disabled,.wpacu-btns .btn-outline-primary:disabled{color:#0275d8;background-color:transparent}.wpacu-btns .btn-outline-primary.active,.wpacu-btns .btn-outline-primary:active,.wpacu-btns .show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#0275d8;border-color:#0275d8}.wpacu-btns .btn-outline-secondary{color:#ccc;background-image:none;background-color:transparent;border-color:#ccc}.wpacu-btns .btn-outline-secondary:hover{color:#fff;background-color:#ccc;border-color:#ccc}.wpacu-btns .btn-outline-secondary.focus,.wpacu-btns .btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 2px rgba(204,204,204,.5);box-shadow:0 0 0 2px rgba(204,204,204,.5)}.wpacu-btns .btn-outline-secondary.disabled,.wpacu-btns .btn-outline-secondary:disabled{color:#ccc;background-color:transparent}.wpacu-btns .btn-outline-secondary.active,.wpacu-btns .btn-outline-secondary:active,.wpacu-btns .show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#ccc;border-color:#ccc}.wpacu-btns .btn-outline-info{color:#5bc0de;background-image:none;background-color:transparent;border-color:#5bc0de}.wpacu-btns .btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-outline-info.focus,.wpacu-btns .btn-outline-info:focus{-webkit-box-shadow:0 0 0 2px rgba(91,192,222,.5);box-shadow:0 0 0 2px rgba(91,192,222,.5)}.wpacu-btns .btn-outline-info.disabled,.wpacu-btns .btn-outline-info:disabled{color:#5bc0de;background-color:transparent}.wpacu-btns .btn-outline-info.active,.wpacu-btns .btn-outline-info:active,.wpacu-btns .show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.wpacu-btns .btn-outline-success{color:#5cb85c;background-image:none;background-color:transparent;border-color:#5cb85c}.wpacu-btns .btn-outline-success:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-outline-success.focus,.wpacu-btns .btn-outline-success:focus{-webkit-box-shadow:0 0 0 2px rgba(92,184,92,.5);box-shadow:0 0 0 2px rgba(92,184,92,.5)}.wpacu-btns .btn-outline-success.disabled,.wpacu-btns .btn-outline-success:disabled{color:#5cb85c;background-color:transparent}.wpacu-btns .btn-outline-success.active,.wpacu-btns .btn-outline-success:active,.wpacu-btns .show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.wpacu-btns .btn-outline-warning{color:#f0ad4e;background-image:none;background-color:transparent;border-color:#f0ad4e}.wpacu-btns .btn-outline-warning:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-outline-warning.focus,.wpacu-btns .btn-outline-warning:focus{-webkit-box-shadow:0 0 0 2px rgba(240,173,78,.5);box-shadow:0 0 0 2px rgba(240,173,78,.5)}.wpacu-btns .btn-outline-warning.disabled,.wpacu-btns .btn-outline-warning:disabled{color:#f0ad4e;background-color:transparent}.wpacu-btns .btn-outline-warning.active,.wpacu-btns .btn-outline-warning:active,.wpacu-btns .show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.wpacu-btns .btn-outline-danger{color:#d9534f;background-image:none;background-color:transparent;border-color:#d9534f}.wpacu-btns .btn-outline-danger:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-outline-danger.focus,.wpacu-btns .btn-outline-danger:focus{-webkit-box-shadow:0 0 0 2px rgba(217,83,79,.5);box-shadow:0 0 0 2px rgba(217,83,79,.5)}.wpacu-btns .btn-outline-danger.disabled,.wpacu-btns .btn-outline-danger:disabled{color:#d9534f;background-color:transparent}.wpacu-btns .btn-outline-danger.active,.wpacu-btns .btn-outline-danger:active,.wpacu-btns .show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.wpacu-btns .btn-link{font-weight:400;color:#0275d8;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.wpacu-btns .btn-link,.wpacu-btns .btn-link.active,.wpacu-btns .btn-link:active,.wpacu-btns .btn-link:disabled{background-color:transparent}.wpacu-btns .btn-link,.wpacu-btns .btn-link:active,.wpacu-btns .btn-link:focus,.wpacu-btns .btn-link:hover{border-color:transparent}.wpacu-btns .btn-link:focus,.wpacu-btns .btn-link:hover{color:#014c8c;text-decoration:underline;background-color:transparent}.wpacu-btns .btn-link:disabled{color:#636c72}.wpacu-btns .btn-link:disabled:focus,.wpacu-btns .btn-link:disabled:hover{text-decoration:none}.wpacu-btns .btn-group-lg>.btn,.wpacu-btns .btn-lg{padding:.75rem 1.5rem;font-size:1.25rem;-webkit-border-radius:.3rem;-moz-border-radius:.3rem;border-radius:.3rem}.wpacu-btns .btn-group-sm>.btn,.wpacu-btns .btn-sm{padding:.25rem .5rem;font-size:.875rem;-webkit-border-radius:.2rem;-moz-border-radius:.2rem;border-radius:.2rem}.wpacu-btns .btn-block{display:block;width:100%}.go-pro-button,.go-pro-link-no-style,.wordpress-core-file{display:inline-block;text-decoration:none}.wpacu-btns .btn-block+.btn-block{margin-top:.5rem}.wpacu-btns input[type=submit].btn-block,.wpacu-btns input[type=reset].btn-block,.wpacu-btns input[type=button].btn-block{width:100%}.wpacu-btns .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.go-pro-button{background-color:#4CAF50;border:2px solid #4CAF50;color:#fff;padding:12px 18px;text-align:center;font-size:16px;margin:4px 2px;cursor:pointer;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-transition-duration:.4s;transition-duration:.4s}.go-pro-button:hover{background-color:#fff;color:#000;border:2px solid #4CAF50;text-decoration:none}body.wp-admin .wpacu_asset_row .go-pro-link-no-style .wpacu-tooltip{padding:8px 2px}body.wp-admin .go-pro-link-no-style .wpacu-tooltip{text-shadow:none;font-weight:400;font-size:12px;line-height:16px;padding:8px 11px}.go-pro-link-no-style{position:relative;color:inherit}.go-pro-link-no-style:not(.nav-tab){font-style:italic}.go-pro-link-no-style.no-transition .wpacu-tooltip{-webkit-transition:0s all ease;transition:0s all ease;-webkit-transition-delay:0s;transition-delay:0s}.go-pro-link-no-style .wpacu-tooltip,.wordpress-core-file .wpacu-tooltip{font-size:14px;line-height:18px;z-index:1;visibility:hidden;text-align:center;-webkit-transition:.1s all ease}.go-pro-link-no-style .wpacu-tooltip{position:absolute;width:160px;background-color:#00a7a7;color:#fff;padding:8px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;bottom:100%;bottom:calc(100% + 15px);left:50%;margin-left:-65px;transition:.1s all ease;-webkit-transition-delay:0s;transition-delay:0s}.go-pro-link-no-style .wpacu-tooltip:after{content:"";position:absolute;border-width:10px;border-style:solid;top:100%;left:50%;left:calc(50% - 10px);border-color:#00a7a7 transparent transparent}.go-pro-link-no-style .wpacu-tooltip.wpacu-on-pages-btn{cursor:pointer;margin-left:-77px;width:130px}.go-pro-link-no-style .wpacu-tooltip.wpacu-larger{width:240px}.go-pro-link-no-style:hover .wpacu-tooltip{visibility:visible}.wordpress-core-file{position:relative;font-style:normal;color:inherit}.wordpress-core-file .wpacu-tooltip{position:absolute;width:160px;background-color:#c00;color:#fff;padding:6px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;bottom:100%;bottom:calc(100% + 15px);left:50%;margin-left:-86px;transition:.1s all ease;-webkit-transition-delay:0s;transition-delay:0s}.wordpress-core-file .wpacu-tooltip:after{content:"";position:absolute;border-width:10px;border-style:solid;top:100%;left:50%;left:calc(50% - 10px);border-color:#c00 transparent transparent}.wordpress-core-file:hover .wpacu-tooltip{visibility:visible}.ajax-direct-call-error-area{background:#fff;padding:10px;border:1px solid #c00;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px}.ajax-direct-call-error-area td{padding:6px}.ajax-direct-call-error-area .note{margin-top:0;padding-top:0}.ajax-direct-call-error-area .error-code{color:#c00;font-weight:700}.ajax-wp-remote-post-call-error-area{background:#fff;padding:20px}.ajax-wp-remote-post-call-error-area .table-data{background:0 0;border:1px solid #c66;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.ajax-wp-remote-post-call-error-area .table-data td{padding:10px}.wrap-upgrade-info{background:#fff;padding:0 15px;border:1px solid #cdcdcd;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.wpacu-notice{margin:20px 20px 0 0!important}.wpacu-notice p{font-weight:600!important;font-style:italic}.wpacu-notice .dashicons{font-weight:inherit!important;color:#46b450!important;margin-right:4px;vertical-align:text-bottom;font-size:27px}.wpacu-notice-info{padding:12px 12px 12px 16px;background:#fff;border-left:4px solid #008f9c}.wpacu-notice-info p{margin-top:8px}.wpacu-notice-info p:first-child{margin-top:0}.wpacu-notice-info p:last-child{margin-bottom:0}.wpacu-warning{font-size:15px;padding:10px;background:#fffcec;border:1px solid #fdd5c9;margin:0 0 5px;width:100%}.pro-page-unlock-notice{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;padding:10px;background:#f2faf2;border:1px solid #c0e8c0;width:auto;display:block}.wpacu-license-area .notice,.wpacu-settings-area .notice{margin-left:0;padding:10px!important;width:97%;box-sizing:border-box;font-weight:600;font-style:italic}#wpacu-dom-get-type-selections,.wpacu-radio-selections{float:none;clear:both;width:auto;display:inline-block;margin-bottom:0;margin-top:0}#wpacu-dom-get-type-selections.wpacu-vertical,.wpacu-radio-selections.wpacu-vertical{display:block;margin-top:15px;margin-bottom:18px}#wpacu-dom-get-type-selections.wpacu-vertical li,.wpacu-radio-selections.wpacu-vertical li{float:none;margin-bottom:12px}#wpacu-dom-get-type-selections.wpacu-vertical li:last-child,.wpacu-radio-selections.wpacu-vertical li:last-child{margin-bottom:0}#wpacu-dom-get-type-selections li,.wpacu-radio-selections li{margin-right:30px;float:left;margin-bottom:0}#wpacu-dom-get-type-selections li:first-child,.wpacu-radio-selections li:first-child{margin-right:15px}#wpacu-dom-get-type-selections li:last-child,.wpacu-radio-selections li:last-child{margin-right:0}.wpacu_combine_loaded_js_level_area{display:none;background:0 0;border-left:2px solid #008f9c;padding-top:8px;padding-bottom:8px;padding-right:10px;padding-left:10px;margin:20px 0 15px}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch input,.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch input,.wpacu_combine_loaded_js_level_area.wpacu_active{display:block}#wpacu-dom-get-type-infos{margin-bottom:0}#wpacu-dom-get-type-infos li{margin-bottom:0;line-height:20px}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch,.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch{width:auto;height:auto}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch input[type=checkbox],.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch input[type=checkbox]{margin:0 0 3px}.wpacu-wrap.wpacu-switch-standard .asset-cleanup-pro_page_wpassetcleanup_settings .wpacu_switch .wpacu_slider,.wpacu-wrap.wpacu-switch-standard .asset-cleanup_page_wpassetcleanup_settings .wpacu_switch .wpacu_slider{display:none}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch{position:relative;display:inline-block;width:52px;height:29px}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input{display:none}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch:not(.wpacu_switch_standard) .wpacu_slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.2s;transition:.2s}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch:not(.wpacu_switch_standard) .wpacu_slider:before{position:absolute;content:'';height:22px;width:22px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.2s;transition:.2s}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input:checked+.wpacu_slider{background-color:#52af00}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input:focus+.wpacu_slider{box-shadow:0 0 1px #52af00}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch input:checked+.wpacu_slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translateX(22px)}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch .wpacu_slider.wpacu_round{border-radius:29px}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch .wpacu_slider.wpacu_round:before{border-radius:50%}.wpacu-wrap.wpacu-switch-enhanced .wpacu_switch.wpacu_locked_for_pro{opacity:.3}.asset-cleanup-pro_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle,.asset-cleanup_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle{margin-top:2px;line-height:1.2}.asset-cleanup-pro_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle em,.asset-cleanup_page_wpassetcleanup_settings .setting_title p.wpacu_subtitle em{font-weight:200}.asset-cleanup-pro_page_wpassetcleanup_settings .setting_title p.wpacu_read_more,.asset-cleanup_page_wpassetcleanup_settings .setting_title p.wpacu_read_more{margin-top:-10px;font-style:italic;font-size:12px}.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_inline_code_status_choices,.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices,.asset-cleanup-pro_page_wpassetcleanup_settings .input_style_choices,.asset-cleanup_page_wpassetcleanup_settings .assets_list_inline_code_status_choices,.asset-cleanup_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices,.asset-cleanup_page_wpassetcleanup_settings .input_style_choices{list-style:none;margin:0}.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li,.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li,.asset-cleanup-pro_page_wpassetcleanup_settings .input_style_choices li,.asset-cleanup_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li,.asset-cleanup_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li,.asset-cleanup_page_wpassetcleanup_settings .input_style_choices li{float:left;margin-right:30px}.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li:last-child,.asset-cleanup-pro_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li:last-child,.asset-cleanup-pro_page_wpassetcleanup_settings .input_style_choices li:last-child,.asset-cleanup_page_wpassetcleanup_settings .assets_list_inline_code_status_choices li:last-child,.asset-cleanup_page_wpassetcleanup_settings .assets_list_layout_areas_status_choices li:last-child,.asset-cleanup_page_wpassetcleanup_settings .input_style_choices li:last-child{margin-right:0}.notice.notice-success+.wpacu-wrap.wpacu-settings-area{margin-top:20px}.wpacu-form-table th{vertical-align:top;text-align:left;padding:5px 20px 20px 0;width:200px;line-height:1.3;font-weight:600}.wpacu-form-table th label{color:#23282d;font-weight:600;font-size:14px;text-shadow:none;vertical-align:middle;cursor:pointer}.wpacu-form-table td{padding-bottom:25px}.wpacu-form-table td:last-child p:last-child{margin:0}.wpacu-form-table label input[type=checkbox]{height:19px;width:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.wpacu-form-table label input[type=checkbox]:checked,.wpacu-form-table label input[type=checkbox]:hover{border:1px solid green}.wpacu-form-table label input[type=checkbox]:checked:before{color:#52af00;font:400 24px/1 dashicons}#wpacu-settings-vertical-tab-wrap{display:table;width:100%}#wpacu-settings-vertical-tab-wrap *{box-sizing:border-box}.wpacu-settings-tab{display:table-cell;width:19%;height:100%;vertical-align:top}.wpacu-settings-tab a{text-decoration:none;border-left:3px solid transparent;display:block;background-color:#f1f1f1;color:#004567;padding:17px 16px;width:100%;outline:0;text-align:left;cursor:pointer;font-size:14px;font-weight:600;border-bottom:1px solid #ccc}.wpacu-settings-tab a:first-child{border-top:1px solid transparent!important}.wpacu-settings-tab a:last-child{border-bottom:1px solid transparent!important}.wpacu-settings-tab a:hover{background-color:#fff;border-left:3px solid #004567;position:relative}.wpacu-settings-tab a.active{color:#004567;background-color:#fff;border-left:3px solid #004567;position:relative;border-bottom:1px solid #ccc}.wpacu-settings-tab a.active:after{content:'';position:absolute;height:100%;width:1px;top:0;right:-1px;background-color:#fff}.wpacu-settings-tab-content{background-color:#fff;display:none;padding:12px 18px;width:79%;border-left:none;height:100%;border-top-right-radius:10px;border-bottom-right-radius:10px}.wpacu-settings-tab-content h2{padding:0 0 15px;border-bottom:1px solid #e7e7e7}.wpacu-settings-tab-content.active{display:table-cell}#wpacu_minify_css_exceptions_area,#wpacu_minify_js_exceptions_area{margin:16px 0 0}#wpacu-update-button-area{position:relative;margin-left:19%}#wpacu-update-button-area.no-left-margin{margin-left:0}#wpacu-update-button-area p{margin-top:10px}#wpacu-update-button-area .button{padding:5px 18px;height:38px;font-size:15px}#wpacu-updating-settings{position:absolute;margin-left:183px;top:19px;display:none}#combine_loaded_js_info_area{position:relative}#combine_loaded_js_info_area.locked-for-pro:before{position:absolute;content:'';height:100%;width:100%;background:#fff;opacity:.5;z-index:10000}.wrap_bulk_unload_options{width:auto;display:inline-flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.wrap_bulk_unload_options .wpacu_asset_options_wrap{flex-grow:1;margin:5px 10px 14px 0!important;padding:8px 10px 2px!important}.wrap_bulk_unload_options .wpacu_asset_options_wrap .wpacu_slider_text{position:relative!important;vertical-align:top;left:inherit!important;top:inherit!important}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch{position:relative;display:inline-block;width:52px;height:29px;margin-right:5px!important}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input{display:none}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.2s;transition:.2s}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider:before{position:absolute;content:'';height:22px;width:22px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.2s;transition:.2s}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input:checked+.wpacu_slider{background-color:#C00}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input:focus+.wpacu_slider{box-shadow:0 0 1px #C00}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch input:checked+.wpacu_slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translateX(22px)}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider.wpacu_round{border-radius:29px}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_switch .wpacu_slider.wpacu_round:before{border-radius:50%}.wpacu-switch-enhanced .wpacu_asset_row .wpacu_slider_text{position:absolute;left:62px;top:3px}.wpacu_asset_row td{width:100%}.wpacu_asset_row td p:last-child{margin-bottom:0!important}.wpacu_asset_row td .wpacu_asset_options_wrap{padding:8px 10px;margin:15px 0;background:#fff;border:1px solid #eee;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.wpacu_asset_row td .wpacu_asset_options_wrap p:first-child{margin-top:0;margin-bottom:8px!important}.wpacu_asset_row p.wpacu_handle{margin-top:0}.wpacu_asset_row li.wpacu_unload_this_page{display:block!important;position:relative}.wpacu-clearfix:after,.wpacu-clearfix:before{content:'';display:table}.wpacu-contract-expand-area{width:100%;margin:20px 0 0}.wpacu-contract-expand-area .col-left{float:left}.wpacu-contract-expand-area .col-left h4{margin-bottom:0}.wpacu-contract-expand-area .col-right{float:right}.wpacu-clearfix:after{clear:both}.wpacu-wp-button{color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}body.wp-admin .wpacu-wp-button{font-size:13px;line-height:26px;height:28px}.wpacu-wp-button.wpacu-wp-button-secondary{display:inline-block;text-decoration:none;height:auto;margin:0 5px 0 0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wpacu-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}.distinguish-asset-list{list-style:none;margin-left:0;margin-bottom:5px;display:inline-block}.distinguish-asset-list li{float:left;margin-right:20px}.distinguish-asset-list li:last-child{margin-right:0}.wpacu-assets-collapsible-wrap{border:1px solid #cdcdcd}.wpacu-assets-collapsible-wrap.wpacu-by-location{margin-bottom:15px}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-plugins .wpacu-assets-collapsible-content>table:last-child,.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content>table:last-child{margin-bottom:20px}.wpacu-assets-collapsible-wrap.wpacu-wrap-all,.wpacu-assets-collapsible-wrap.wpacu-wrap-styles{margin-top:20px}.wpacu-assets-collapsible-wrap.wpacu-wrap-scripts{margin-top:10px}.wpacu-assets-collapsible-wrap.wpacu-by-location>a.wpacu-assets-collapsible{padding:15px 15px 15px 43px}.wpacu-assets-collapsible-wrap.wpacu-by-location .wpacu_list_table{border-spacing:inherit;width:100%;box-shadow:3px 3px 2px #ddd;border-bottom-right-radius:5px;border-top-right-radius:5px}.wpacu-assets-collapsible-wrap.wpacu-by-location span.wpacu-child-location-name{font-weight:600}.wpacu-assets-collapsible-wrap.wpacu-by-location span.wpacu-child-location-version{font-weight:200}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content .wpacu-location-child-area strong{position:relative;padding:9px 10px 10px 15px;z-index:1}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-plugins .wpacu-assets-collapsible-content .wpacu-location-child-area strong:after,.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content .wpacu-location-child-area strong:after{content:'';position:absolute;width:100%;bottom:0;height:1px;background-color:#fdfdfd;left:0}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-plugins .wpacu-assets-collapsible-content .wpacu-location-child-area strong{position:relative;padding:17px 10px 16px 46px;z-index:1}.wpacu-assets-collapsible-wrap.wpacu-by-location.wpacu-themes .wpacu-assets-collapsible-content .wpacu-location-child-area{margin-bottom:10px}.wpacu-assets-collapsible-wrap.wpacu-by-location .wpacu-assets-collapsible-content .wpacu-location-child-area{margin-top:22px;margin-bottom:14px;font-size:110%;line-height:initial}.wpacu-assets-collapsible-wrap.wpacu-by-location .wpacu-assets-collapsible-content .wpacu-location-child-area strong{border-top-right-radius:8px;border-top-left-radius:8px;background-color:#f9f9f9;border-left:1px solid #cdcdcd;border-top:1px solid #cdcdcd;border-bottom:1px solid transparent;border-right:1px solid #cdcdcd;position:relative;padding:10px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default{position:absolute;padding:0;top:10px;left:10px;width:37px;height:37px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default:not(.has-icon){color:#b4b9be;background-color:#eee;box-shadow:inset 0 0 10px rgba(160,165,170,.15);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default:not(.has-icon) .icon-area:before{content:"\f106";font-family:Dashicons;position:absolute;font-size:28px;line-height:28px;top:5px;left:5px}.wpacu-assets-collapsible-wrap.wpacu-by-location .icon-plugin-default .icon-area{position:relative;width:37px;height:37px}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content{padding:0}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table{width:100%;margin:0}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row td,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row td{border-left:hidden;border-right:hidden;border-bottom:1px solid #cdcdcd}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child{margin-bottom:0!important}.wpacu-assets-collapsible-wrap.wpacu-external .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child td:last-child,.wpacu-assets-collapsible-wrap.wpacu-wp_core .wpacu-assets-collapsible-content .wpacu_list_table .wpacu_asset_row:last-child td:last-child{border-bottom:hidden}a.wpacu-assets-collapsible{color:#000;font-size:20px;text-decoration:none;display:block;position:relative;background-color:#f1f3f8;cursor:pointer;padding:15px 15px 15px 36px;width:auto;border:none;text-align:left;outline:0}a.wpacu-assets-collapsible>span.dashicons{font-size:25px;line-height:normal;position:absolute;top:15px;top:calc(50% - 21px);left:22px;-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}a.wpacu-assets-collapsible:hover{background-color:#f1f3f8;text-decoration:none}a.wpacu-assets-collapsible:after{position:absolute;font-size:22px;font-family:Dashicons;right:14px;top:16px}a.wpacu-assets-collapsible:not(.wpacu-assets-collapsible-active):after{content:"\f132"}a.wpacu-assets-collapsible.wpacu-assets-collapsible-active{background-color:#f1f3f8}a.wpacu-assets-collapsible.wpacu-assets-collapsible-active:after{content:"\f460"}.wpacu-assets-collapsible-content{padding:0 16px;max-height:0;overflow:hidden;background-color:#fbfbfb8c}.wpacu-assets-collapsible-content .wpacu-assets-note{margin:0;padding:15px 15px 10px}.wpacu-assets-collapsible-content>div{padding:16px 0 0}.wpacu-assets-collapsible-content>div>p:first-child{margin-top:0}.wpacu-assets-collapsible-content.wpacu-open{max-height:100%}a.wpacu-assets-inline-code-collapsible{color:inherit;font-size:14px;text-decoration:none;display:inline-block;position:relative;cursor:pointer;width:auto;outline:0;background:#f1f3f8;border:1px solid #cdcdcd;padding:4px 21px 4px 8px;margin:0 0 0 6px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}a.wpacu-assets-inline-code-collapsible:hover{border:1px solid #5c5c5c}a.wpacu-assets-inline-code-collapsible:after{position:absolute;font-size:15px;font-family:Dashicons;right:-3px;top:-1px;height:14px;width:14px;-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}a.wpacu-assets-inline-code-collapsible:not(.wpacu-assets-inline-code-collapsible-active):after{content:"\f132"}a.wpacu-assets-inline-code-collapsible.wpacu-assets-inline-code-collapsible-active:after{content:"\f460"}.wpacu-assets-inline-code-collapsible-content{font-size:80%;padding:0 8px;max-height:0;overflow:hidden;background-color:#fbfbfb8c}.wpacu-assets-inline-code-collapsible-content>div{padding:7px 8px 0}.wpacu-assets-inline-code-collapsible-content>div>p{line-height:normal!important}.wpacu-assets-inline-code-collapsible-content>div>p:first-child{margin-top:0}.wpacu-assets-inline-code-collapsible-content.wpacu-open{max-height:100%}.wpacu-wrap-choose-position,.wpacu-wrap-choose-position>div{display:inline}.wpacu-wrap-choose-position select{font-size:inherit;display:inline;margin-left:6px;margin-right:4px}.wpacu_table_wrap{margin:20px 0 0}.wpacu_table_wrap>table{border:1px solid #cdcdcd}.wpacu_table_wrap .table{width:100%;max-width:100%;margin-bottom:1rem;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.wpacu_table_wrap .table td,.wpacu_table_wrap .table th{padding:.75rem;vertical-align:top;border-top:1px solid #eceeef}.wpacu_table_wrap .table thead th{vertical-align:bottom;border-bottom:2px solid #eceeef}.wpacu_table_wrap .table tbody+tbody{border-top:2px solid #eceeef}.wpacu_table_wrap .table .table{background-color:#fff}.wpacu_table_wrap .table-sm td,.wpacu_table_wrap .table-sm th{padding:.3rem}.wpacu_table_wrap .table-bordered,.wpacu_table_wrap .table-bordered td,.wpacu_table_wrap .table-bordered th{border:1px solid #eceeef}.wpacu_table_wrap .table-bordered thead td,.wpacu_table_wrap .table-bordered thead th{border-bottom-width:2px}.wpacu_table_wrap .table-striped tbody tr:nth-of-type(even){background-color:#f9f9f9}.wpacu_table_wrap .table-striped tbody tr:nth-of-type(odd){background-color:#fff}.wpacu_table_wrap .table-active,.wpacu_table_wrap .table-active>td,.wpacu_table_wrap .table-active>th,.wpacu_table_wrap .table-hover .table-active:hover,.wpacu_table_wrap .table-hover .table-active:hover>td,.wpacu_table_wrap .table-hover .table-active:hover>th,.wpacu_table_wrap .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.wpacu_table_wrap .table-success,.wpacu_table_wrap .table-success>td,.wpacu_table_wrap .table-success>th{background-color:#dff0d8}.wpacu_table_wrap .table-hover .table-success:hover,.wpacu_table_wrap .table-hover .table-success:hover>td,.wpacu_table_wrap .table-hover .table-success:hover>th{background-color:#d0e9c6}.wpacu_table_wrap .table-info,.wpacu_table_wrap .table-info>td,.wpacu_table_wrap .table-info>th{background-color:#d9edf7}.wpacu_table_wrap .table-hover .table-info:hover,.wpacu_table_wrap .table-hover .table-info:hover>td,.wpacu_table_wrap .table-hover .table-info:hover>th{background-color:#c4e3f3}.wpacu_table_wrap .table-warning,.wpacu_table_wrap .table-warning>td,.wpacu_table_wrap .table-warning>th{background-color:#fcf8e3}.wpacu_table_wrap .table-hover .table-warning:hover,.wpacu_table_wrap .table-hover .table-warning:hover>td,.wpacu_table_wrap .table-hover .table-warning:hover>th{background-color:#faf2cc}.wpacu_table_wrap .table-danger,.wpacu_table_wrap .table-danger>td,.wpacu_table_wrap .table-danger>th{background-color:#f2dede}.wpacu_table_wrap .table-hover .table-danger:hover,.wpacu_table_wrap .table-hover .table-danger:hover>td,.wpacu_table_wrap .table-hover .table-danger:hover>th{background-color:#ebcccc}.wpacu_table_wrap .thead-inverse th{color:#fff;background-color:#292b2c}.wpacu_table_wrap .thead-default th{color:#464a4c;background-color:#eceeef}.wpacu_table_wrap .table-inverse{color:#fff;background-color:#292b2c}.wpacu_table_wrap .table-inverse td,.wpacu_table_wrap .table-inverse th,.wpacu_table_wrap .table-inverse thead th{border-color:#fff}.wpacu_table_wrap .table-inverse.table-bordered,.wpacu_table_wrap .table-responsive.table-bordered{border:0}.wpacu_table_wrap .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}ul.hire-reasons{margin-bottom:20px}ul.hire-reasons li{font-size:14px;line-height:22px;margin-bottom:12px}ul.hire-reasons li .dashicons{font-size:23px;line-height:23px}ul.hire-reasons li .dashicons.dashicons-yes{color:green}ol.getting-started li{font-size:14px;line-height:22px;margin-bottom:8px}.wpacu-get-help-wrap p{font-size:14px}.wpacu-get-help-wrap .help-content-wrap{margin:20px 0 25px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex;width:100%}@media only screen and (min-width:768px){.wpacu-get-help-wrap .help-content-wrap{-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}}@media only screen and (max-width:767px){.wpacu-get-help-wrap .help-content-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.wpacu-get-help-wrap .help-content-wrap .help-content{padding:15px;background:#fff;border:1px solid #E0E0E0;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;box-shadow:2px 3px 8px 0 #231f2038;flex:1 1 50%;margin-bottom:10px}.wpacu-get-help-wrap .help-content-wrap .help-content .content-title{margin:5px 0 15px}.wpacu-get-help-wrap .help-content-wrap .help-content .cols-wrap{width:100%;margin:0 auto;display:table}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area{margin:5px 0 0;position:relative}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area.col-left{float:left;width:48%}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area.col-right{float:right;width:48%}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area.activate-plugin img{max-width:280px}.wpacu-get-help-wrap .help-content-wrap .help-content .wpacu-image-area img{width:99%;margin:8px 0;border:1px solid #cdcdcd;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.wpacu-get-help-wrap .help-content-wrap .help-content.upgrade-help{order:2}@media only screen and (min-width:768px){.wpacu-get-help-wrap .help-content-wrap .help-content{margin-right:24px}.wpacu-get-help-wrap .help-content-wrap .help-content.upgrade-help{margin-right:0}}.wpacu-get-help-wrap .help-content-wrap .help-content.tech-help{order:1}@media only screen and (max-width:767px){.wpacu-get-help-wrap .help-content-wrap .help-content.tech-help{margin-bottom:30px}}.wpacu-get-help-wrap .help-content-wrap .help-content ul{list-style:none;padding-left:0}.wpacu-get-help-wrap .help-content-wrap .help-content ul li{font-size:14px;line-height:22px;margin-bottom:15px}.wpacu-get-help-wrap .help-content-wrap .help-content p:last-child,.wpacu-get-help-wrap .help-content-wrap .help-content ul li:last-child{margin-bottom:0}#wpacu-license-data-remove-area{display:none;margin:10px 0 25px}#wpacu-license-data-remove-area.wpacu-visible{display:block}span#wpacu-license-data-removed-msg{display:block;padding-left:26px}#wpacu-warning-read{display:none;margin:10px 0}#wpacu-warning-read span.dashicons-warning{color:#c00}#wpacu-warning-read.wpacu-visible{display:block}#wpacu-reset-submit-area{margin:10px 0;clear:both}#wpacu-reset-submit-btn{margin:10px 0 0}.wpacu-tools-area{margin:10px 20px 0 2px}.wpacu-tools-area .wpacu-tools-container{background:#fff;padding:15px;border:1px solid #cdcdcd;width:96%}.wpacu-tools-area .wpacu-tools-container form>div:first-child{margin:0 0 10px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning{display:none;box-sizing:border-box;margin-top:10px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning p{margin:0 0 10px;line-height:22px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning p:only-child{margin:0}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning ul{font-size:13px;list-style-type:disc;padding-left:30px}.wpacu-tools-area .wpacu-tools-container form .wpacu-warning.wpacu-visible{display:block}.wpacu-about-wrap .wpacu-about-text img{width:auto;height:150px;position:absolute;top:20px;right:-20px}@media only screen and (max-width:767px){.wpacu-about-wrap h1{margin:20px}.wpacu-about-wrap .wpacu-about-text img{display:none}.wpacu-about-wrap .wpacu-about-text{margin:20px}}.wpacu-about-wrap .about-wrap-content .area-title{font-size:19px;line-height:19px;margin-bottom:0}.wpacu-about-wrap hr{margin:10px 0}body.wp-admin .wpacu-modal{display:none;position:fixed;z-index:1000000;padding-top:15%;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:#000;background-color:rgba(0,0,0,.4)}body.wp-admin .wpacu-modal-content{background-color:#fefefe;margin:auto;padding:20px;border:1px solid #888;width:80%;max-width:600px;border-radius:10px}body.wp-admin .wpacu-close{color:#aaa;float:right;font-size:28px;font-weight:700}body.wp-admin .wpacu-close:focus,body.wp-admin .wpacu-close:hover{color:#000;text-decoration:none;cursor:pointer}
classes/AdminBar.php CHANGED
@@ -51,15 +51,13 @@ class AdminBar
51
  'href' => admin_url( 'admin.php?page=' . WPACU_PLUGIN_ID . '_settings')
52
  ));
53
 
54
- if (Main::instance()->settings['combine_loaded_css'] || Main::instance()->settings['minify_loaded_css']) {
55
- $wp_admin_bar->add_menu( array(
56
- 'parent' => 'assetcleanup-parent',
57
- 'id' => 'assetcleanup-clear-css-js-files-cache',
58
- 'title' => 'Clear CSS/JS Files Cache',
59
- 'href' => wp_nonce_url( admin_url( 'admin-post.php?action=assetcleanup_clear_assets_cache' . $goBackToCurrentUrl ),
60
- 'assetcleanup_clear_assets_cache' )
61
- ) );
62
- }
63
 
64
  // Only trigger in the front-end view
65
  if (! is_admin()) {
@@ -67,7 +65,7 @@ class AdminBar
67
  // Not on the home page
68
  $homepageManageAssetsHref = Main::instance()->settings['frontend_show']
69
  ? get_site_url().'#wpacu_wrap_assets'
70
- : admin_url( 'admin.php?page=' . WPACU_PLUGIN_ID . '_home_page' );
71
 
72
  $wp_admin_bar->add_menu(array(
73
  'parent' => 'assetcleanup-parent',
@@ -83,7 +81,7 @@ class AdminBar
83
  'parent' => 'assetcleanup-parent',
84
  'id' => 'assetcleanup-homepage',
85
  'title' => 'Manage Page Assets',
86
- 'href' => admin_url( 'admin.php?page=' . WPACU_PLUGIN_ID . '_home_page' )
87
  ) );
88
  }
89
  }
51
  'href' => admin_url( 'admin.php?page=' . WPACU_PLUGIN_ID . '_settings')
52
  ));
53
 
54
+ $wp_admin_bar->add_menu( array(
55
+ 'parent' => 'assetcleanup-parent',
56
+ 'id' => 'assetcleanup-clear-css-js-files-cache',
57
+ 'title' => 'Clear CSS/JS Files Cache',
58
+ 'href' => wp_nonce_url( admin_url( 'admin-post.php?action=assetcleanup_clear_assets_cache' . $goBackToCurrentUrl ),
59
+ 'assetcleanup_clear_assets_cache' )
60
+ ) );
 
 
61
 
62
  // Only trigger in the front-end view
63
  if (! is_admin()) {
65
  // Not on the home page
66
  $homepageManageAssetsHref = Main::instance()->settings['frontend_show']
67
  ? get_site_url().'#wpacu_wrap_assets'
68
+ : admin_url( 'admin.php?page=' . WPACU_PLUGIN_ID . '_assets_manager&wpacu_for=homepage' );
69
 
70
  $wp_admin_bar->add_menu(array(
71
  'parent' => 'assetcleanup-parent',
81
  'parent' => 'assetcleanup-parent',
82
  'id' => 'assetcleanup-homepage',
83
  'title' => 'Manage Page Assets',
84
+ 'href' => admin_url( 'admin.php?page=' . WPACU_PLUGIN_ID . '_assets_manager&wpacu_for=homepage' )
85
  ) );
86
  }
87
  }
classes/Main.php CHANGED
@@ -682,8 +682,7 @@ class Main
682
  }
683
 
684
  if ($isFrontEndEditView && array_key_exists('elementor-preview', $_GET) && $_GET['elementor-preview']) {
685
- echo '<div class="wpacu-warning"><p><span class="dashicons dashicons-info"></span>&nbsp;'._e('Asset CleanUp front-end management is not enabled when previewed via Elementor plugin.', WPACU_PLUGIN_TEXT_DOMAIN).'</p></div>';
686
- return;
687
  }
688
 
689
  // Prevent plugins from altering the DOM
@@ -1639,39 +1638,34 @@ class Main
1639
  */
1640
  public function wpacuHtmlNoticeForAdmin()
1641
  {
1642
- add_action('wp_loaded', function() {
1643
- ob_start(function($htmlSource) {
1644
- if ( ! (Menu::userCanManageAssets() && ! is_admin())) {
1645
- return $htmlSource;
1646
- }
1647
-
1648
- $altCleanHtmlSource = trim($htmlSource);
1649
-
1650
- if (strtolower(substr($altCleanHtmlSource, -7)) === '</html>') {
1651
- if (Main::instance()->settings['test_mode']) {
1652
- $consoleMessage = __('Asset CleanUp: "TEST MODE" ENABLED (any settings or unloads will be visible ONLY to you, the logged-in administrator)', WPACU_PLUGIN_TEXT_DOMAIN);
1653
- $testModeNotice = __('"Test Mode" is ENABLED. Any settings or unloads will be visible ONLY to you, the logged-in administrator.', WPACU_PLUGIN_TEXT_DOMAIN);
1654
- } else {
1655
- $consoleMessage = __('Asset CleanUp: "LIVE MODE" (test mode is not enabled, thus, all the plugin changes are visible for everyone: you, the logged-in administrator and the regular visitors)', WPACU_PLUGIN_TEXT_DOMAIN);
1656
- $testModeNotice = __('The website is in LIVE MODE as "Test Mode" is not enabled. All the plugin changes are visible for everyone: logged-in administrators and regular visitors.', WPACU_PLUGIN_TEXT_DOMAIN);
1657
- }
1658
-
1659
- $htmlCommentNote = __('NOTE: These "Asset CleanUp: Page Speed Booster" messages are only shown to you, the HTML comment is not visible for the regular visitor.', WPACU_PLUGIN_TEXT_DOMAIN);
1660
 
1661
- $htmlSource .= <<<HTML
1662
- <!--
1663
- {$htmlCommentNote}
1664
 
1665
- {$testModeNotice}
1666
- -->
1667
- <script type="text/javascript">
1668
- console.log('{$consoleMessage}');
1669
- </script>
1670
- HTML;
1671
- }
1672
 
1673
- return $htmlSource;
1674
- });
1675
- });
 
 
 
 
 
 
 
 
 
1676
  }
1677
  }
682
  }
683
 
684
  if ($isFrontEndEditView && array_key_exists('elementor-preview', $_GET) && $_GET['elementor-preview']) {
685
+ return;
 
686
  }
687
 
688
  // Prevent plugins from altering the DOM
1638
  */
1639
  public function wpacuHtmlNoticeForAdmin()
1640
  {
1641
+ add_action('wp_footer', function() {
1642
+ if (! apply_filters('wpacu_show_admin_console_notice', true)) {
1643
+ return;
1644
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1645
 
1646
+ if ( ! (Menu::userCanManageAssets() && ! is_admin())) {
1647
+ return;
1648
+ }
1649
 
1650
+ if (Main::instance()->settings['test_mode']) {
1651
+ $consoleMessage = __('Asset CleanUp: "TEST MODE" ENABLED (any settings or unloads will be visible ONLY to you, the logged-in administrator)', WPACU_PLUGIN_TEXT_DOMAIN);
1652
+ $testModeNotice = __('"Test Mode" is ENABLED. Any settings or unloads will be visible ONLY to you, the logged-in administrator.', WPACU_PLUGIN_TEXT_DOMAIN);
1653
+ } else {
1654
+ $consoleMessage = __('Asset CleanUp: "LIVE MODE" (test mode is not enabled, thus, all the plugin changes are visible for everyone: you, the logged-in administrator and the regular visitors)', WPACU_PLUGIN_TEXT_DOMAIN);
1655
+ $testModeNotice = __('The website is in LIVE MODE as "Test Mode" is not enabled. All the plugin changes are visible for everyone: logged-in administrators and regular visitors.', WPACU_PLUGIN_TEXT_DOMAIN);
1656
+ }
1657
 
1658
+ $htmlCommentNote = __('NOTE: These "Asset CleanUp: Page Speed Booster" messages are only shown to you, the HTML comment is not visible for the regular visitor.', WPACU_PLUGIN_TEXT_DOMAIN);
1659
+ ?>
1660
+ <!--
1661
+ <?php echo $htmlCommentNote; ?>
1662
+
1663
+ <?php echo $testModeNotice; ?>
1664
+ -->
1665
+ <script type="text/javascript">
1666
+ console.log('<?php echo $consoleMessage; ?>');
1667
+ </script>
1668
+ <?php
1669
+ });
1670
  }
1671
  }
classes/OptimiseAssets/MinifyCss.php CHANGED
@@ -72,7 +72,7 @@ class MinifyCss
72
 
73
  $regExpPattern = '#<link[^>]*(stylesheet|preload)[^>]*(>)#Usmi';
74
 
75
- preg_match_all($regExpPattern, $htmlSource, $matchesSourcesFromTags, PREG_SET_ORDER);
76
 
77
  foreach ($matchesSourcesFromTags as $matches) {
78
  $linkSourceTag = $matches[0];
@@ -275,12 +275,12 @@ class MinifyCss
275
 
276
  if (strpos($loadedCssExceptionsPatterns, "\n")) {
277
  // Multiple values (one per line)
278
- foreach ($loadedCssExceptionsPatterns as $loadedCssExceptionPattern) {
279
- $regExps[] = '#'.$loadedCssExceptionPattern.'#';
280
  }
281
  } else {
282
  // Only one value?
283
- $regExps[] = '#'.$loadedCssExceptionsPatterns.'#';
284
  }
285
  }
286
 
72
 
73
  $regExpPattern = '#<link[^>]*(stylesheet|preload)[^>]*(>)#Usmi';
74
 
75
+ preg_match_all($regExpPattern, OptimizeCommon::cleanerHtmlSource($htmlSource), $matchesSourcesFromTags, PREG_SET_ORDER);
76
 
77
  foreach ($matchesSourcesFromTags as $matches) {
78
  $linkSourceTag = $matches[0];
275
 
276
  if (strpos($loadedCssExceptionsPatterns, "\n")) {
277
  // Multiple values (one per line)
278
+ foreach (explode("\n", $loadedCssExceptionsPatterns) as $loadedCssExceptionPattern) {
279
+ $regExps[] = '#'.trim($loadedCssExceptionPattern).'#';
280
  }
281
  } else {
282
  // Only one value?
283
+ $regExps[] = '#'.trim($loadedCssExceptionsPatterns).'#';
284
  }
285
  }
286
 
classes/OptimiseAssets/OptimizeCommon.php CHANGED
@@ -14,12 +14,12 @@ class OptimizeCommon
14
  /**
15
  * @var string
16
  */
17
- public static $relPathPluginCacheDir = '/cache/asset-cleanup/';
18
 
19
  /**
20
- * OptimizeCommon constructor.
21
  */
22
- public function __construct()
23
  {
24
  add_action('switch_theme', array($this, 'clearAllCache'));
25
  add_action('after_switch_theme', array($this, 'clearAllCache'));
@@ -34,6 +34,18 @@ class OptimizeCommon
34
  });
35
  }
36
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  /**
38
  * Is this a regular WordPress page (not feed, REST API etc.)?
39
  * If not, do not proceed with any CSS/JS combine
@@ -112,7 +124,7 @@ class OptimizeCommon
112
  }
113
  }
114
 
115
- if ($linkTagsStripped < 2) {
116
  return 'do_not_combine';
117
  }
118
 
@@ -137,6 +149,8 @@ class OptimizeCommon
137
  $siteDbUrl = get_option('siteurl');
138
  $siteUrlHost = strtolower(parse_url($siteDbUrl, PHP_URL_HOST));
139
 
 
 
140
  if ($assetHost !== $siteUrlHost) {
141
  return false;
142
  }
@@ -154,8 +168,12 @@ class OptimizeCommon
154
  $localAssetPath = $localAssetPathAlt;
155
  }
156
 
157
- // The file needs to have the .css or .js extension (not .php)
158
- // as it will be later read via file_get_contents()
 
 
 
 
159
  if (strrchr($localAssetPath, '.') === '.'.$assetType && file_exists($localAssetPath)) {
160
  return $localAssetPath;
161
  }
@@ -220,13 +238,16 @@ class OptimizeCommon
220
 
221
  $assetsFile = $dirToFilename . self::filterStorageFileName($jsonStorageFile);
222
 
223
- if ($assetType === 'css') {
224
- $cachedAssetsFileExpiresIn = OptimizeCss::$cachedCssAssetsFileExpiresIn;
225
- }
226
- else {
227
  return array();
228
  }
229
 
 
 
 
 
 
 
230
  // Delete cached file after it expired as it will be regenerated
231
  if (filemtime($assetsFile) < (time() - 1 * $cachedAssetsFileExpiresIn)) {
232
  self::clearAssetCachedData($jsonStorageFile);
@@ -236,23 +257,15 @@ class OptimizeCommon
236
  $optionValue = @file_get_contents($assetsFile);
237
 
238
  if ($optionValue) {
239
- $optionValueArray = json_decode($optionValue, ARRAY_A);
240
-
241
- $uriToFinalCssFile = $optionValueArray['uri_to_final_css_file'];
242
- $linkHrefs = $optionValueArray['link_hrefs'];
243
-
244
- if ($uriToFinalCssFile) {
245
- return array(
246
- 'uri_final_css_file' => $uriToFinalCssFile,
247
- 'local_final_css_file' => WP_CONTENT_DIR . $relPathAssetCacheDir . $uriToFinalCssFile,
248
- 'link_hrefs' => array_map( function ( $linkHref ) {
249
- return str_replace( '{site_url}', site_url(), $linkHref );
250
- }, $linkHrefs )
251
- );
252
- }
253
 
254
- }
 
 
 
255
 
 
 
256
  return array();
257
  }
258
 
@@ -289,21 +302,13 @@ class OptimizeCommon
289
  $assetsFile = $dirToFilename . self::filterStorageFileName($jsonStorageFile);
290
 
291
  // CSS JSON FILE DATA
292
- $assetsValue = json_encode(
293
- array(
294
- 'uri_to_final_css_file' => $list['uri_to_final_css_file'],
295
- 'link_hrefs' => array_map( function ( $linkHref ) {
296
- return str_replace( site_url(), '{site_url}', $linkHref );
297
- }, $list['link_hrefs'] )
298
- )
299
- );
300
 
301
  @file_put_contents($assetsFile, $assetsValue);
302
  }
303
 
304
  /**
305
  * @param $jsonStorageFile
306
- * @param $relPathAssetCacheDir
307
  */
308
  public static function clearAssetCachedData($jsonStorageFile)
309
  {
@@ -320,11 +325,11 @@ class OptimizeCommon
320
  $requestUriPart = '';
321
  }
322
 
323
- $dirToFilename = WP_CONTENT_DIR . self::$relPathPluginCacheDir . '/_storage/'
324
  . parse_url(site_url(), PHP_URL_HOST) .
325
  $requestUriPart . '/';
326
 
327
- $assetsFile = $dirToFilename.self::filterStorageFileName($jsonStorageFile);
328
 
329
  @unlink($assetsFile);
330
  }
@@ -335,7 +340,7 @@ class OptimizeCommon
335
  * @param bool $redirectAfter
336
  * @param bool $keepAssetFiles
337
  *
338
- * $keepCssJsFiles is kept to "true" as default
339
  * there could be cache plugins still having cached pages that load specific merged files,
340
  * to avoid breaking the layout/functionality
341
  */
@@ -346,9 +351,8 @@ class OptimizeCommon
346
  }
347
 
348
  /*
349
- * STEP 1: Clear all .json, .css and .js files that are related to "Combine CSS/JS files" feature
350
  */
351
-
352
  $fileExtToRemove = array('.json');
353
 
354
  // Also delete .css
@@ -357,10 +361,10 @@ class OptimizeCommon
357
  }
358
 
359
  $assetCleanUpCacheDir = WP_CONTENT_DIR . self::$relPathPluginCacheDir;
360
- $storageDir = $assetCleanUpCacheDir.'_storage';
361
 
362
  if (is_dir($assetCleanUpCacheDir)) {
363
- $dirItems = new \RecursiveDirectoryIterator($assetCleanUpCacheDir, \RecursiveDirectoryIterator::SKIP_DOTS);
364
 
365
  $storageEmptyDirs = array();
366
 
@@ -388,7 +392,7 @@ class OptimizeCommon
388
  $toolsClass->clearAllCacheTransients();
389
 
390
  // Make sure all the caching files/folders are there in case the plugin was upgraded
391
- Plugin::createCacheFoldersFiles();
392
 
393
  if ( $redirectAfter && wp_get_referer() ) {
394
  wp_safe_redirect( wp_get_referer() );
@@ -436,4 +440,18 @@ class OptimizeCommon
436
 
437
  return $fileName;
438
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439
  }
14
  /**
15
  * @var string
16
  */
17
+ public static $relPathPluginCacheDir = '/cache/asset-cleanup/'; // keep forward slash at the end
18
 
19
  /**
20
+ *
21
  */
22
+ public function init()
23
  {
24
  add_action('switch_theme', array($this, 'clearAllCache'));
25
  add_action('after_switch_theme', array($this, 'clearAllCache'));
34
  });
35
  }
36
 
37
+ /**
38
+ * @param $htmlSource
39
+ *
40
+ * @return string|string[]|null
41
+ */
42
+ public static function cleanerHtmlSource($htmlSource)
43
+ {
44
+ // Removes HTML comments including MSIE conditional ones as they are left intact
45
+ // and not combined with other JavaScript files in case the method is called from OptimizeJs.php
46
+ return preg_replace('/<!--(.|\s)*?-->/', '', $htmlSource);
47
+ }
48
+
49
  /**
50
  * Is this a regular WordPress page (not feed, REST API etc.)?
51
  * If not, do not proceed with any CSS/JS combine
124
  }
125
  }
126
 
127
+ if ($linkTagsStripped < 1) {
128
  return 'do_not_combine';
129
  }
130
 
149
  $siteDbUrl = get_option('siteurl');
150
  $siteUrlHost = strtolower(parse_url($siteDbUrl, PHP_URL_HOST));
151
 
152
+ // Different host name (most likely 3rd party one such as fonts.googleapis.com or a CDN)
153
+ // Do not add it to the combine list
154
  if ($assetHost !== $siteUrlHost) {
155
  return false;
156
  }
168
  $localAssetPath = $localAssetPathAlt;
169
  }
170
 
171
+ // Not using "?ver="
172
+ if (strpos($localAssetPath, '.'.$assetType.'?') !== false) {
173
+ list($localAssetPathAlt,) = explode('.'.$assetType.'?', $localAssetPath);
174
+ $localAssetPath = $localAssetPathAlt.'.'.$assetType;
175
+ }
176
+
177
  if (strrchr($localAssetPath, '.') === '.'.$assetType && file_exists($localAssetPath)) {
178
  return $localAssetPath;
179
  }
238
 
239
  $assetsFile = $dirToFilename . self::filterStorageFileName($jsonStorageFile);
240
 
241
+ if (! file_exists($assetsFile)) {
 
 
 
242
  return array();
243
  }
244
 
245
+ //if ($assetType === 'css') {
246
+ $cachedAssetsFileExpiresIn = OptimizeCss::$cachedCssAssetsFileExpiresIn;
247
+ //} else {
248
+ // return array();
249
+ //}
250
+
251
  // Delete cached file after it expired as it will be regenerated
252
  if (filemtime($assetsFile) < (time() - 1 * $cachedAssetsFileExpiresIn)) {
253
  self::clearAssetCachedData($jsonStorageFile);
257
  $optionValue = @file_get_contents($assetsFile);
258
 
259
  if ($optionValue) {
260
+ $optionValueArray = @json_decode($optionValue, ARRAY_A);
 
 
 
 
 
 
 
 
 
 
 
 
 
261
 
262
+ if (! empty( $optionValueArray) && (isset($optionValueArray['head']['link_hrefs']) || isset($optionValueArray['body']['link_hrefs']))) {
263
+ return $optionValueArray;
264
+ }
265
+ }
266
 
267
+ // File exists, but it's invalid or outdated; Delete it as it has to be re-generated
268
+ self::clearAssetCachedData($jsonStorageFile);
269
  return array();
270
  }
271
 
302
  $assetsFile = $dirToFilename . self::filterStorageFileName($jsonStorageFile);
303
 
304
  // CSS JSON FILE DATA
305
+ $assetsValue = $list;
 
 
 
 
 
 
 
306
 
307
  @file_put_contents($assetsFile, $assetsValue);
308
  }
309
 
310
  /**
311
  * @param $jsonStorageFile
 
312
  */
313
  public static function clearAssetCachedData($jsonStorageFile)
314
  {
325
  $requestUriPart = '';
326
  }
327
 
328
+ $dirToFilename = WP_CONTENT_DIR . self::$relPathPluginCacheDir . '_storage/'
329
  . parse_url(site_url(), PHP_URL_HOST) .
330
  $requestUriPart . '/';
331
 
332
+ $assetsFile = $dirToFilename . self::filterStorageFileName($jsonStorageFile);
333
 
334
  @unlink($assetsFile);
335
  }
340
  * @param bool $redirectAfter
341
  * @param bool $keepAssetFiles
342
  *
343
+ * $keepAssetFiles is kept to "true" as default
344
  * there could be cache plugins still having cached pages that load specific merged files,
345
  * to avoid breaking the layout/functionality
346
  */
351
  }
352
 
353
  /*
354
+ * STEP 1: Clear all .json, maybe .css & .js files that are related to "Combine CSS/JS files" feature
355
  */
 
356
  $fileExtToRemove = array('.json');
357
 
358
  // Also delete .css
361
  }
362
 
363
  $assetCleanUpCacheDir = WP_CONTENT_DIR . self::$relPathPluginCacheDir;
364
+ $storageDir = $assetCleanUpCacheDir.'_storage';
365
 
366
  if (is_dir($assetCleanUpCacheDir)) {
367
+ $dirItems = new \RecursiveDirectoryIterator( $assetCleanUpCacheDir, \RecursiveDirectoryIterator::SKIP_DOTS );
368
 
369
  $storageEmptyDirs = array();
370
 
392
  $toolsClass->clearAllCacheTransients();
393
 
394
  // Make sure all the caching files/folders are there in case the plugin was upgraded
395
+ Plugin::createCacheFoldersFiles(array('css', 'js'));
396
 
397
  if ( $redirectAfter && wp_get_referer() ) {
398
  wp_safe_redirect( wp_get_referer() );
440
 
441
  return $fileName;
442
  }
443
+
444
+ /**
445
+ * URLs with query strings are not loading Optimised Assets (e.g. combine CSS files into one file)
446
+ * However, there are exceptions such as the ones below (preview, debugging purposes)
447
+ *
448
+ * @return bool
449
+ */
450
+ public static function loadOptimizedAssetsIfQueryStrings()
451
+ {
452
+ $isPreview = (isset($_GET['preview_id'], $_GET['preview_nonce'], $_GET['preview']) || isset($_GET['preview']));
453
+ $isQueryStringDebug = isset($_GET['wpacu_no_css_minify']) || isset($_GET['wpacu_no_js_minify']) || isset($_GET['wpacu_no_css_combine']) || isset($_GET['wpacu_no_js_combine']);
454
+
455
+ return ($isPreview || $isQueryStringDebug);
456
+ }
457
  }
classes/OptimiseAssets/OptimizeCss.php CHANGED
@@ -43,7 +43,13 @@ class OptimizeCss
43
  return $htmlSource;
44
  }
45
 
46
- if (! $this->doCssCombine()) {
 
 
 
 
 
 
47
  return $htmlSource;
48
  }
49
 
@@ -63,160 +69,192 @@ class OptimizeCss
63
  return $htmlSource;
64
  }
65
 
66
- $cachedFileExists = false;
67
-
68
  // Speed up processing by getting the already existing final CSS file URI
69
  // This will avoid parsing the HTML DOM and determine the combined URI paths for all the CSS files
70
- $localFinalCssFileData = OptimizeCommon::getAssetCachedData($this->jsonStorageFile, self::$relPathCssCacheDir, 'css');
71
 
72
  // $uriToFinalCssFile will always be relative ONLY within WP_CONTENT_DIR . self::$relPathCssCacheDir
73
  // which is usually "wp-content/cache/asset-cleanup/css/"
74
 
75
- if (! empty($localFinalCssFileData) && isset($localFinalCssFileData['local_final_css_file']) && file_exists($localFinalCssFileData['local_final_css_file'])) {
76
- /*
77
- * URIs to the LINK tags are already cached; No need to parse the DOM
78
- */
79
- $uriToFinalCssFile = $localFinalCssFileData['uri_final_css_file'];
80
- $linkHrefs = $localFinalCssFileData['link_hrefs'];
81
- $cachedFileExists = true;
82
- } else {
83
  /*
84
- * NO CACHING TRANSIENT; Parse the DOM
85
  */
86
  // Nothing in the database records or the retrieved cached file does not exist?
87
- OptimizeCommon::clearAssetCachedData($this->jsonStorageFile);
88
 
89
  // Fetch the DOM, and then set a new transient
90
  $document = new \DOMDocument();
91
- $document->loadHTML($htmlSource);
92
-
93
- $documentHead = $document->getElementsByTagName('head')->item(0);
94
  libxml_use_internal_errors( true );
95
 
96
- $combinedUriPaths = $hrefUriNotCombinableList = $localAssetsPaths = $linkHrefs = array();
 
 
 
97
 
98
- foreach ($documentHead->getElementsByTagName('link') as $tagObject) {
99
- if (! $tagObject->hasAttributes()) {
 
 
100
  continue;
101
  }
102
 
103
- $getHref = $href = false;
 
 
 
 
 
104
 
105
- $linkAttributes = array();
106
 
107
- foreach ($tagObject->attributes as $attrObj) {
108
- $linkAttributes[$attrObj->nodeName] = $attrObj->nodeValue;
109
 
110
- // Only rel="stylesheet" (with no rel="preload" associated with it) gets prepared for combining as links with rel="preload" (if any) are never combined into a standard render-blocking CSS file
111
- // rel="preload" is there for a reason to make sure the CSS code is made available earlier prior to the one from rel="stylesheet" which is render-blocking
112
- if ($attrObj->nodeName === 'rel' && $attrObj->nodeValue === 'stylesheet') {
113
- $getHref = true;
114
- }
115
 
116
- if ($getHref && $attrObj->nodeName === 'href') {
117
- // Make sure that tag value is checked and it's matched against the value from the HTML source code
118
- //$htmlSource .= $attrObj->nodeValue."\n";
119
- $href = (string)$attrObj->nodeValue;
120
 
121
- $localAssetPath = OptimizeCommon::getLocalAssetPath($href, 'css');
122
 
123
- // It will skip external stylesheets (from a different domain)
124
- if ($localAssetPath) {
125
- $combinedUriPaths[] = OptimizeCommon::getHrefRelPath($href);
126
- $localAssetsPaths[$href] = $localAssetPath;
127
- $linkHrefs[] = $href;
 
128
  }
129
- }
130
- }
131
 
132
- if (! $getHref) {
133
- continue;
134
- }
135
 
136
- $cssNotCombinable = false;
137
 
138
- // 1) Check if there is any rel="preload" connected to the rel="stylesheet"
139
- // making sure the file is not added to the final CSS combined file
140
 
141
- // 2) Only combine media "all", "screen" and the ones with no media
142
- // Do not combine media='only screen and (max-width: 768px)' etc.
143
- if (isset($linkAttributes['rel']) && $linkAttributes['rel'] === 'preload') {
144
- $cssNotCombinable = true;
145
- }
146
-
147
- if (array_key_exists('media', $linkAttributes) && ! in_array($linkAttributes['media'], array('all', 'screen'))) {
148
- $cssNotCombinable = true;
149
- }
150
 
151
- if ($cssNotCombinable) {
152
- $hrefUriNotCombinableList[] = OptimizeCommon::getHrefRelPath( $href );
153
- }
154
- }
 
155
 
156
- // Any rel="preload" or media="print" found? Remove the stylesheet from the combination
157
- if (! empty($hrefUriNotCombinableList)) {
158
- foreach ($hrefUriNotCombinableList as $hrefUriNotCombinable) {
159
- if (in_array($hrefUriNotCombinable, $combinedUriPaths)) {
160
- $linkHrefUriKey = array_search($hrefUriNotCombinable, $combinedUriPaths);
161
- unset($combinedUriPaths[$linkHrefUriKey]);
162
 
163
- foreach (array_keys($localAssetsPaths) as $localAssetPathKey) {
164
- if (substr($localAssetPathKey, -strlen($hrefUriNotCombinable)) === $hrefUriNotCombinable) {
165
- unset($localAssetsPaths[$localAssetPathKey]);
166
- }
167
  }
 
168
 
169
- foreach ($linkHrefs as $linkHrefKey => $linkHref) {
170
- if (substr($linkHref, -strlen($hrefUriNotCombinable)) === $hrefUriNotCombinable) {
171
- unset($linkHrefs[$linkHrefKey]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  }
173
  }
174
  }
175
  }
176
- }
177
 
178
- // No Link Tags? Just return output
179
- if (empty($linkHrefs)) {
180
- return $htmlSource;
181
- }
182
-
183
- $maybeDoCssCombine = $this->maybeDoCssCombine( sha1( implode('', $combinedUriPaths) ), $localAssetsPaths );
184
-
185
- // Local path to combined CSS file
186
- $localFinalCssFile = $maybeDoCssCombine['local_final_css_file'];
187
-
188
- // URI (e.g. /wp-content/cache/asset-cleanup/[file-name-here.css]) to the combined CSS file
189
- $uriToFinalCssFile = $maybeDoCssCombine['uri_final_css_file'];
190
 
191
- if (file_exists($localFinalCssFile)) {
192
- $cachedFileExists = true;
193
- OptimizeCommon::setAssetCachedData(
194
- $this->jsonStorageFile,
195
- self::$relPathCssCacheDir,
196
- array('uri_to_final_css_file' => $uriToFinalCssFile, 'link_hrefs' => $linkHrefs)
197
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  }
 
 
 
 
 
 
199
  }
200
 
201
- if ($cachedFileExists) {
202
- $finalTagUrl = WP_CONTENT_URL . self::$relPathCssCacheDir . $uriToFinalCssFile;
 
 
 
 
 
203
 
204
- $finalCssTag = <<<HTML
205
- <link id='asset-cleanup-combined-css' rel='stylesheet' href='{$finalTagUrl}' type='text/css' media='all' />
206
  HTML;
207
 
208
- // Append the combine CSS Link tag right after <head> section of the website
209
- // Any other <head> strings will be ignored as only the first one from the HTML source code matters
210
- // e.g. some may use <head> inside a JavaScript code or part of a comment
211
- $htmlSourceBeforeAnyLinkTagReplacement = $htmlSource;
212
 
213
- $htmlSource = preg_replace('#<head>#si', '<head>'."\n" . $finalCssTag . "\n", $htmlSource, 1);
 
214
 
215
- $htmlSource = OptimizeCommon::stripJustCombinedFileTags($linkHrefs, $htmlSource, 'css'); // Strip the combined files to avoid duplicate code
 
 
216
 
217
- // There should be at least two replacements made
218
- if ($htmlSource === 'do_not_combine') {
219
- return $htmlSourceBeforeAnyLinkTagReplacement;
 
 
 
 
 
220
  }
221
  }
222
 
@@ -225,6 +263,26 @@ HTML;
225
  }, 1);
226
  }
227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  /**
229
  * @param $shaOneCombinedUriPaths
230
  * @param $localAssetsPaths
@@ -245,7 +303,6 @@ HTML;
245
  // If "?ver" value changes on any of the assets or the asset list changes in any way
246
  // then $shaOneCombinedUriPaths will change too and a new CSS file will be generated and loaded
247
 
248
- // || defined('WPACU_DEV_ALWAYS_GENERATE_COMBINED_CSS'
249
  if (! file_exists($localFinalCssFile)) {
250
  // Change $assetsContents as paths to fonts and images that are relative (e.g. ../, ../../) have to be updated
251
  $finalAssetsContents = '';
@@ -310,14 +367,12 @@ HTML;
310
  );
311
 
312
  // Avoid Background URLs starting with "data" or "http" as they do not need to have a path updated
313
- preg_match_all('/url\((?![\'"]?(?:data|http):)[\'"]?([^\'"\)]*)[\'"]?\)/i', $cssContent, $matches, PREG_PATTERN_ORDER);
314
 
315
  // If it start with forward slash (/), it doesn't need fix, just skip it
316
  // Also skip ../ types as they were already processed
317
  $toSkipList = array("url('/", 'url("/', 'url(/');
318
 
319
- //$cssContent = "\n".print_r($matches, true)."\n"; // For DEV purposes only
320
-
321
  foreach ($matches[0] as $match) {
322
  $fullUrlMatch = trim($match);
323
 
@@ -350,11 +405,53 @@ HTML;
350
  $appendBefore,
351
  $cssContent
352
  );
 
 
 
 
353
  }
354
 
355
  return $cssContent;
356
  }
357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  /**
359
  * @return bool
360
  */
@@ -371,9 +468,7 @@ HTML;
371
  // Only clean request URIs allowed
372
  if (strpos($_SERVER['REQUEST_URI'], '?') !== false) {
373
  // Exceptions
374
- $isPreview = (isset($_GET['preview_id'], $_GET['preview_nonce'], $_GET['preview']) || isset($_GET['preview']));
375
-
376
- if (! $isPreview) {
377
  return false;
378
  }
379
  }
@@ -392,11 +487,14 @@ HTML;
392
  return false; // Do not combine
393
  }
394
 
395
- if ($pluginSettings['combine_loaded_css'] === 'for_admin' && Menu::userCanManageAssets()) {
 
 
396
  return true; // Do combine
397
  }
398
 
399
- if ($pluginSettings['combine_loaded_css'] === 'for_all') {
 
400
  return true; // Do combine
401
  }
402
 
43
  return $htmlSource;
44
  }
45
 
46
+ if (Main::instance()->settings['minify_loaded_css']) {
47
+ // 'wpacu_css_minify_list' caching list is also checked; if it's empty, no minification is made
48
+ $htmlSource = MinifyCss::updateHtmlSourceOriginalToMinCss( $htmlSource );
49
+ }
50
+
51
+ if ( array_key_exists('wpacu_no_css_combine', $_GET) || // not on query string request (debugging purposes)
52
+ ! $this->doCssCombine() ) {
53
  return $htmlSource;
54
  }
55
 
69
  return $htmlSource;
70
  }
71
 
 
 
72
  // Speed up processing by getting the already existing final CSS file URI
73
  // This will avoid parsing the HTML DOM and determine the combined URI paths for all the CSS files
74
+ $storageJsonContents = OptimizeCommon::getAssetCachedData($this->jsonStorageFile, self::$relPathCssCacheDir, 'css');
75
 
76
  // $uriToFinalCssFile will always be relative ONLY within WP_CONTENT_DIR . self::$relPathCssCacheDir
77
  // which is usually "wp-content/cache/asset-cleanup/css/"
78
 
79
+ if (empty($storageJsonContents)) {
80
+ $storageJsonContentsToSave = array();
81
+
 
 
 
 
 
82
  /*
83
+ * NO CACHING? Parse the DOM
84
  */
85
  // Nothing in the database records or the retrieved cached file does not exist?
86
+ OptimizeCommon::clearAssetCachedData( $this->jsonStorageFile );
87
 
88
  // Fetch the DOM, and then set a new transient
89
  $document = new \DOMDocument();
90
+ $document->loadHTML( $htmlSource );
 
 
91
  libxml_use_internal_errors( true );
92
 
93
+ $storageJsonContents = array();
94
+
95
+ foreach ( array( 'head', 'body' ) as $docLocationTag ) {
96
+ $combinedUriPaths = $hrefUriNotCombinableList = $localAssetsPaths = $linkHrefs = array();
97
 
98
+ $docLocationElements = $document->getElementsByTagName( $docLocationTag )->item( 0 );
99
+ $linkTags = $docLocationElements->getElementsByTagName( 'link' );
100
+
101
+ if ( $linkTags === null ) {
102
  continue;
103
  }
104
 
105
+ foreach ( $linkTags as $tagObject ) {
106
+ if ( ! $tagObject->hasAttributes() ) {
107
+ continue;
108
+ }
109
+
110
+ $getHref = $href = false;
111
 
112
+ $linkAttributes = array();
113
 
114
+ foreach ( $tagObject->attributes as $attrObj ) {
115
+ $linkAttributes[ $attrObj->nodeName ] = $attrObj->nodeValue;
116
 
117
+ // Only rel="stylesheet" (with no rel="preload" associated with it) gets prepared for combining as links with rel="preload" (if any) are never combined into a standard render-blocking CSS file
118
+ // rel="preload" is there for a reason to make sure the CSS code is made available earlier prior to the one from rel="stylesheet" which is render-blocking
119
+ if ( $attrObj->nodeName === 'rel' && $attrObj->nodeValue === 'stylesheet' ) {
120
+ $getHref = true;
121
+ }
122
 
123
+ if ( $getHref && $attrObj->nodeName === 'href' ) {
124
+ // Make sure that tag value is checked and it's matched against the value from the HTML source code
125
+ //$htmlSource .= $attrObj->nodeValue."\n";
126
+ $href = (string) $attrObj->nodeValue;
127
 
128
+ $localAssetPath = OptimizeCommon::getLocalAssetPath( $href, 'css' );
129
 
130
+ // It will skip external stylesheets (from a different domain)
131
+ if ( $localAssetPath ) {
132
+ $combinedUriPaths[] = OptimizeCommon::getHrefRelPath( $href );
133
+ $localAssetsPaths[ $href ] = $localAssetPath;
134
+ $linkHrefs[] = $href;
135
+ }
136
  }
 
 
137
 
138
+ if ( ! $getHref ) {
139
+ continue;
140
+ }
141
 
142
+ $cssNotCombinable = false;
143
 
144
+ // 1) Check if there is any rel="preload" connected to the rel="stylesheet"
145
+ // making sure the file is not added to the final CSS combined file
146
 
147
+ // 2) Only combine media "all", "screen" and the ones with no media
148
+ // Do not combine media='only screen and (max-width: 768px)' etc.
149
+ if ( isset( $linkAttributes['rel'] ) && $linkAttributes['rel'] === 'preload' ) {
150
+ $cssNotCombinable = true;
151
+ }
 
 
 
 
152
 
153
+ if ( array_key_exists( 'media',
154
+ $linkAttributes ) && ! in_array( $linkAttributes['media'],
155
+ array( 'all', 'screen' ) ) ) {
156
+ $cssNotCombinable = true;
157
+ }
158
 
159
+ if ( $this->skipCombine( $linkAttributes['href'] ) ) {
160
+ $cssNotCombinable = true;
161
+ }
 
 
 
162
 
163
+ if ( $cssNotCombinable ) {
164
+ $hrefUriNotCombinableList[] = OptimizeCommon::getHrefRelPath( $href );
 
 
165
  }
166
+ }
167
 
168
+ // Any rel="preload" or media="print" found? Remove the stylesheet from the combination
169
+ if ( ! empty( $hrefUriNotCombinableList ) ) {
170
+ foreach ( $hrefUriNotCombinableList as $hrefUriNotCombinable ) {
171
+ if ( in_array( $hrefUriNotCombinable, $combinedUriPaths ) ) {
172
+ $linkHrefUriKey = array_search( $hrefUriNotCombinable, $combinedUriPaths );
173
+ unset( $combinedUriPaths[ $linkHrefUriKey ] );
174
+
175
+ foreach ( array_keys( $localAssetsPaths ) as $localAssetPathKey ) {
176
+ if ( substr( $localAssetPathKey, - strlen( $hrefUriNotCombinable ) ) === $hrefUriNotCombinable ) {
177
+ unset( $localAssetsPaths[ $localAssetPathKey ] );
178
+ }
179
+ }
180
+
181
+ foreach ( $linkHrefs as $linkHrefKey => $linkHref ) {
182
+ if ( substr( $linkHref, - strlen( $hrefUriNotCombinable ) ) === $hrefUriNotCombinable ) {
183
+ unset( $linkHrefs[ $linkHrefKey ] );
184
+ }
185
+ }
186
  }
187
  }
188
  }
189
  }
 
190
 
191
+ // No Link Tags? Continue
192
+ if ( empty( $linkHrefs ) ) {
193
+ continue;
194
+ }
 
 
 
 
 
 
 
 
195
 
196
+ $maybeDoCssCombine = $this->maybeDoCssCombine( sha1( implode( '', $combinedUriPaths ) ),
197
+ $localAssetsPaths );
198
+
199
+ // Local path to combined CSS file
200
+ $localFinalCssFile = $maybeDoCssCombine['local_final_css_file'];
201
+
202
+ // URI (e.g. /wp-content/cache/asset-cleanup/[file-name-here.css]) to the combined CSS file
203
+ $uriToFinalCssFile = $maybeDoCssCombine['uri_final_css_file'];
204
+
205
+ if ( file_exists( $localFinalCssFile ) ) {
206
+ $storageJsonContents[$docLocationTag] = array(
207
+ 'uri_to_final_css_file' => $uriToFinalCssFile,
208
+ 'link_hrefs' => array_map( function ( $href ) {
209
+ return str_replace( '{site_url}', site_url(), $href );
210
+ }, $linkHrefs )
211
+ );
212
+
213
+ $storageJsonContentsToSave[$docLocationTag] = array(
214
+ 'uri_to_final_css_file' => $uriToFinalCssFile,
215
+ 'link_hrefs' => array_map( function ( $href ) {
216
+ return str_replace( site_url(), '{site_url}', $href );
217
+ }, $linkHrefs )
218
+ );
219
+ }
220
  }
221
+
222
+ OptimizeCommon::setAssetCachedData(
223
+ $this->jsonStorageFile,
224
+ self::$relPathCssCacheDir,
225
+ json_encode($storageJsonContentsToSave)
226
+ );
227
  }
228
 
229
+ if ( ! empty($storageJsonContents) ) {
230
+ foreach ($storageJsonContents as $locationTag => $storageJsonContent) {
231
+ $storageJsonContent['link_hrefs'] = array_map( function ( $href ) {
232
+ return str_replace( '{site_url}', site_url(), $href );
233
+ }, $storageJsonContent['link_hrefs'] );
234
+
235
+ $finalTagUrl = WP_CONTENT_URL . self::$relPathCssCacheDir . $storageJsonContent['uri_to_final_css_file'];
236
 
237
+ $finalCssTag = <<<HTML
238
+ <link id='asset-cleanup-combined-css-{$locationTag}' rel='stylesheet' href='{$finalTagUrl}' type='text/css' media='all' />
239
  HTML;
240
 
241
+ $htmlSourceBeforeAnyLinkTagReplacement = $htmlSource;
 
 
 
242
 
243
+ // Detect first LINK tag from the <$locationTag> and replace it with the final combined LINK tag
244
+ $firstLinkTag = $this->getFirstLinkTag($storageJsonContent['link_hrefs'][0], $htmlSource);
245
 
246
+ if ($firstLinkTag) {
247
+ $htmlSource = str_replace( $firstLinkTag, $finalCssTag, $htmlSource );
248
+ }
249
 
250
+ if ($htmlSource !== $htmlSourceBeforeAnyLinkTagReplacement) {
251
+ $htmlSource = OptimizeCommon::stripJustCombinedFileTags( $storageJsonContent['link_hrefs'], $htmlSource, 'css' ); // Strip the combined files to avoid duplicate code
252
+
253
+ // There should be at least two replacements made
254
+ if ( $htmlSource === 'do_not_combine' ) {
255
+ $htmlSource = $htmlSourceBeforeAnyLinkTagReplacement;
256
+ }
257
+ }
258
  }
259
  }
260
 
263
  }, 1);
264
  }
265
 
266
+ /**
267
+ * @param $firstLinkHref
268
+ * @param $htmlSource
269
+ *
270
+ * @return string
271
+ */
272
+ public function getFirstLinkTag($firstLinkHref, $htmlSource)
273
+ {
274
+ $regExpPattern = '#<link[^>]*stylesheet[^>]*(>)#Usmi';
275
+
276
+ preg_match_all($regExpPattern, $htmlSource, $matches);
277
+ foreach ($matches[0] as $matchTag) {
278
+ if (strpos($matchTag, $firstLinkHref) !== false) {
279
+ return trim($matchTag);
280
+ }
281
+ }
282
+
283
+ return '';
284
+ }
285
+
286
  /**
287
  * @param $shaOneCombinedUriPaths
288
  * @param $localAssetsPaths
303
  // If "?ver" value changes on any of the assets or the asset list changes in any way
304
  // then $shaOneCombinedUriPaths will change too and a new CSS file will be generated and loaded
305
 
 
306
  if (! file_exists($localFinalCssFile)) {
307
  // Change $assetsContents as paths to fonts and images that are relative (e.g. ../, ../../) have to be updated
308
  $finalAssetsContents = '';
367
  );
368
 
369
  // Avoid Background URLs starting with "data" or "http" as they do not need to have a path updated
370
+ preg_match_all('/url\((?![\'"]?(?:data|http):)[\'"]?([^\'"\)]*)[\'"]?\)/i', $cssContent, $matches);
371
 
372
  // If it start with forward slash (/), it doesn't need fix, just skip it
373
  // Also skip ../ types as they were already processed
374
  $toSkipList = array("url('/", 'url("/', 'url(/');
375
 
 
 
376
  foreach ($matches[0] as $match) {
377
  $fullUrlMatch = trim($match);
378
 
405
  $appendBefore,
406
  $cssContent
407
  );
408
+
409
+ // Bug Fix 2
410
+ $cssContent = str_replace($appendBefore . 'http', 'http', $cssContent);
411
+ $cssContent = str_replace($appendBefore . '//', '//', $cssContent);
412
  }
413
 
414
  return $cssContent;
415
  }
416
 
417
+ /**
418
+ * @param $href
419
+ *
420
+ * @return bool
421
+ */
422
+ public function skipCombine($href)
423
+ {
424
+ $regExps = array();
425
+
426
+ if (Main::instance()->settings['combine_loaded_css_exceptions'] !== '') {
427
+ $loadedCssExceptionsPatterns = trim(Main::instance()->settings['combine_loaded_css_exceptions']);
428
+
429
+ if (strpos($loadedCssExceptionsPatterns, "\n")) {
430
+ // Multiple values (one per line)
431
+ foreach (explode("\n", $loadedCssExceptionsPatterns) as $loadedCssExceptionPattern) {
432
+ $regExps[] = '#'.trim($loadedCssExceptionPattern).'#';
433
+ }
434
+ } else {
435
+ // Only one value?
436
+ $regExps[] = '#'.trim($loadedCssExceptionsPatterns).'#';
437
+ }
438
+ }
439
+
440
+ // No exceptions set? Do not skip combination
441
+ if (empty($regExps)) {
442
+ return false;
443
+ }
444
+
445
+ foreach ($regExps as $regExp) {
446
+ if ( preg_match( $regExp, $href ) ) {
447
+ // Skip combination
448
+ return true;
449
+ }
450
+ }
451
+
452
+ return false;
453
+ }
454
+
455
  /**
456
  * @return bool
457
  */
468
  // Only clean request URIs allowed
469
  if (strpos($_SERVER['REQUEST_URI'], '?') !== false) {
470
  // Exceptions
471
+ if (! OptimizeCommon::loadOptimizedAssetsIfQueryStrings()) {
 
 
472
  return false;
473
  }
474
  }
487
  return false; // Do not combine
488
  }
489
 
490
+ if ( ($pluginSettings['combine_loaded_css'] === 'for_admin'
491
+ || $pluginSettings['combine_loaded_css_for_admin_only'] == 1)
492
+ && Menu::userCanManageAssets()) {
493
  return true; // Do combine
494
  }
495
 
496
+ if ( $pluginSettings['combine_loaded_css_for_admin_only'] === ''
497
+ && in_array($pluginSettings['combine_loaded_css'], array('for_all', 1)) ) {
498
  return true; // Do combine
499
  }
500
 
classes/OwnAssets.php CHANGED
@@ -148,6 +148,11 @@ class OwnAssets
148
  return;
149
  }
150
 
 
 
 
 
 
151
  $this->enqueuePublicStyles();
152
  $this->enqueuePublicScripts();
153
  }
@@ -182,22 +187,7 @@ class OwnAssets
182
  $postId = 0; // for home page
183
  }
184
 
185
- // Not home page (posts list)? Does it have a post ID?
186
- // See if the individual post is published to continue
187
- if ($postId > 0) {
188
- $postStatus = get_post_status($postId);
189
-
190
- if (! $postStatus) {
191
- return;
192
- }
193
-
194
- // Only for Published Posts
195
- if ($postStatus !== 'publish') {
196
- return;
197
- }
198
- }
199
-
200
- $scriptRelPath = '/assets/script.min.js';
201
 
202
  wp_register_script(
203
  WPACU_PLUGIN_ID . '-script',
148
  return;
149
  }
150
 
151
+ // Do not load any CSS & JS belonging to Asset CleanUp if in "Elementor" preview
152
+ if (array_key_exists('elementor-preview', $_GET) && $_GET['elementor-preview'] && Main::instance()->isFrontendEditView) {
153
+ return;
154
+ }
155
+
156
  $this->enqueuePublicStyles();
157
  $this->enqueuePublicScripts();
158
  }
187
  $postId = 0; // for home page
188
  }
189
 
190
+ $scriptRelPath = '/assets/script.min.js';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
  wp_register_script(
193
  WPACU_PLUGIN_ID . '-script',
classes/Settings.php CHANGED
@@ -29,6 +29,8 @@ class Settings
29
 
30
  // Combine loaded CSS (remaining ones after unloading the useless ones) into one file
31
  'combine_loaded_css',
 
 
32
 
33
  // Minify each loaded CSS (remaining ones after unloading the useless ones)
34
  'minify_loaded_css',
29
 
30
  // Combine loaded CSS (remaining ones after unloading the useless ones) into one file
31
  'combine_loaded_css',
32
+ 'combine_loaded_css_exceptions',
33
+ 'combine_loaded_css_for_admin_only',
34
 
35
  // Minify each loaded CSS (remaining ones after unloading the useless ones)
36
  'minify_loaded_css',
freemius/assets/css/admin/add-ons.css CHANGED
@@ -1,2 +1,2 @@
1
- #fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner ul{-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:0.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:greenyellow;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.3);box-shadow:1px 1px 1px rgba(0,0,0,0.3);text-transform:uppercase;font-size:0.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button{position:absolute;top:112px;right:10px}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}}
2
  #TB_window,#TB_window iframe{width:772px !important}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:greenyellow;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid darkgreen;padding:2px;text-align:center;font-size:0.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#F3F3F3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:greenyellow}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}}
1
+ .fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:white;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3)}#fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner>ul{-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner>ul>li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner .fs-badge.fs-installed-addon-badge{font-size:1.02em;line-height:1.3em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:0.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:greenyellow;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.3);box-shadow:1px 1px 1px rgba(0,0,0,0.3);text-transform:uppercase;font-size:0.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button,#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button-group{position:absolute;top:112px;right:10px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .button-group .button{position:relative;top:0;right:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .button-group .button:focus{z-index:1}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .button-group .fs-dropdown-arrow{border-top:6px solid white;border-right:4px solid transparent;border-left:4px solid transparent;top:12px;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown.active .button:not(.fs-dropdown-arrow-button){border-bottom-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown.active .fs-dropdown-arrow-button{border-bottom-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .fs-dropdown-list{position:absolute;right:-1px;top:100%;margin-left:auto;padding:3px 0;border:1px solid #bfbfbf;-moz-border-radius:3px 0 3px 3px;-webkit-border-radius:3px 0 3px 3px;border-radius:3px 0 3px 3px;background-color:#fff;z-index:1;width:230px;-moz-box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);-webkit-box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .fs-dropdown-list li{margin:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .fs-dropdown-list li a{display:block;padding:5px 10px;text-decoration:none}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .fs-dropdown-list li:hover{background-color:#0074a3;color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta.fs-dropdown .fs-dropdown-list li:hover a{color:#fff}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}}
2
  #TB_window,#TB_window iframe{width:772px !important}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:greenyellow;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid darkgreen;padding:2px;text-align:center;font-size:0.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#F3F3F3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:greenyellow}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}}
freemius/assets/css/admin/common.css CHANGED
@@ -1,2 +1,2 @@
1
- .theme-browser .theme .fs-premium-theme-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);font-size:1.1em}#iframe{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}
2
- .fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}
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-badge.fs-premium-theme-badge{font-size:1.1em}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}
2
+ .fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}
freemius/assets/img/wp-asset-clean-up.png DELETED
Binary file
freemius/assets/scss/_colors.scss ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $menu-hover-color: #333;
2
+ $darkest-color: #000;
3
+ $fms-live-color: #71ae00;
4
+ $fms-test-color: #f7941d;
5
+ $fms-link-color: #29abe1;
6
+ $fms-link-hover-color: darken(#29abe1, 10%);
7
+ $body-bkg: #111;
8
+ $special-color: #d3135a;
9
+ $body-color: #f1f1f1;
10
+ $fms-white: #f1f1f1;
11
+ $container-bkg: #222;
12
+ $container-bkg-odd: #262626;
13
+ $container-border-color: #333;
14
+ $table-head-bkg: #333;
15
+ $table-head-color: #999;
16
+ $info-color: #999;
17
+ $error-color: #ff0000;
18
+
19
+ $fs-logo-blue-color: #29abe1;
20
+ $fs-logo-green-color: #71ae00;
21
+ $fs-logo-magenta-color: #d3135a;
22
+
23
+ // WordPress colors.
24
+ $page-header-bkg: #333;
25
+ $page-header-color: $fms-white;
26
+ $text-dark-color: #333;
27
+ $text-light-color: #666;
28
+ $text-lightest-color: #999;
29
+
30
+ // Notices.
31
+ $wp-notice-success-color: #f7fff7;
32
+ $wp-notice-success-dark-color: #46b450;
33
+ $wp-notice-error-color: #ffeaea;
34
+ $wp-notice-error-dark-color: #dc3232;
35
+ $wp-notice-warn-color: #fff8e5;
36
+ $wp-notice-warn-dark-color: #ffb900;
37
+ $fs-notice-promotion-border-color: #00a0d2;
38
+ $fs-notice-promotion-bkg: #f2fcff;
39
+
40
+ // WP Buttons.
41
+ $button-primary-bkg: #6bc406;
42
+ $button-primary-color: $fms-white;
43
+ $button-secondary-bkg: #333;
44
+ $button-secondary-color: $fms-white;
45
+ $featured-color: #6bc406;
46
+ $wp-selected-color: #0074a3;
47
+ $wp-button-alert-border-color: #d2593c;
48
+ $wp-button-alert-border-top-color: #ec6544;
49
+ $wp-button-alert-shadow-color: #d2593c;
50
+ $wp-button-alert-focused-shadow1-color: #dd6041;
51
+ $wp-button-alert-focused-shadow2-color: #e4a796;
52
+ $wp-button-alert-background-color: #f56a48;
53
+ $wp-button-alert-hovered-background-color: #fd6d4a;
54
+ $wp-button-alert-active-background-color: #dd6041;
55
+ $wp-button-alert-disabled-color: #f5b3a1;
56
+ $wp-button-alert-disabled-background-color: #e76444;
57
+ $wp-button-alert-disabled-border-color: #d85e40;
58
+
59
+ $wordpress_color: #01749A;
60
+ $blogger_color: #ff8100;
61
+ $wix_color: #fac102;
62
+ $shopify_color: #80d100;
63
+ $addthis_color: #fe6d4e;
64
+ $tumblr_color: #34506b;
65
+ $zepo_color: #00baf2;
66
+ $jquery_color: #000919;
67
+ $javascript_color: #00baf2;
68
+ $squarespace_color: #000;
69
+
70
+ $blog_color: #ff6600;
71
+ $facebook_color: #3b5998;
72
+ $twitter_color: #4099ff;
73
+ $linkedin_color: #4875b4;
74
+ $youtube_color: #ff3333;
75
+ $gplus_color: #c63d2d;
76
+
77
+ // Tooltip
78
+ $tooltip-color: #fff;
79
+ $tooltip-bkg-color: rgba(0,0,0,0.8);
freemius/assets/scss/_functions.scss ADDED
File without changes
freemius/assets/scss/_load.scss ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ @import 'mixins';
2
+ @import "vars";
3
+ @import "functions";
4
+ @import "colors";
freemius/assets/scss/_mixins.scss ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // ---- CSS3 SASS MIXINS ----
2
+ // https://github.com/madr/css3-sass-mixins
3
+ //
4
+ // Copyright (C) 2011 by Anders Ytterström
5
+ //
6
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ // of this software and associated documentation files (the "Software"), to deal
8
+ // in the Software without restriction, including without limitation the rights
9
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ // copies of the Software, and to permit persons to whom the Software is
11
+ // furnished to do so, subject to the following conditions:
12
+ //
13
+ // The above copyright notice and this permission notice shall be included in
14
+ // all copies or substantial portions of the Software.
15
+ //
16
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ // THE SOFTWARE.
23
+ //
24
+
25
+ // ---- LEGACY IE SUPPORT USING FILTERS ----
26
+ // Should IE filters be used or not?
27
+ // PROS: gradients, drop shadows etc will be handled by css.
28
+ // CONS: will harm the site performance badly,
29
+ // especially on sites with heavy rendering and scripting.
30
+ $useIEFilters: 0;
31
+ // might be 0 or 1. disabled by default.
32
+ // ---- /LEGACY IE SUPPORT USING FILTERS ----
33
+
34
+
35
+ @mixin background-size ($value) {
36
+ -webkit-background-size: $value;
37
+ background-size: $value;
38
+ }
39
+
40
+ @mixin border-image ($path, $offsets, $repeats) {
41
+ -moz-border-image: $path $offsets $repeats;
42
+ -o-border-image: $path $offsets $repeats;
43
+ -webkit-border-image: $path $offsets $repeats;
44
+ border-image: $path $offsets $repeats;
45
+ }
46
+
47
+ @mixin border-radius ($values...) {
48
+ -moz-border-radius: $values;
49
+ -webkit-border-radius: $values;
50
+ border-radius: $values;
51
+ /*-moz-background-clip: padding;
52
+ -webkit-background-clip: padding-box;
53
+ background-clip: padding-box;*/
54
+ }
55
+
56
+ @mixin box-shadow ($values...) {
57
+ -moz-box-shadow: $values;
58
+ -webkit-box-shadow: $values;
59
+ box-shadow: $values;
60
+ }
61
+
62
+ //@mixin box-shadow ($x, $y, $offset, $hex, $ie: $useIEFilters, $inset: null, $spread:null) {
63
+ // -moz-box-shadow: $x $y $offset $spread $hex $inset;
64
+ // -webkit-box-shadow: $x $y $offset $spread $hex $inset;
65
+ // box-shadow: $x $y $offset $spread $hex $inset;
66
+ //
67
+ // @if $ie == 1 {
68
+ // $iecolor: '#' + red($hex) + green($hex) + blue($hex);
69
+ // filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}');
70
+ // -ms-filter: quote(progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}'));
71
+ // }
72
+ //}
73
+
74
+ @mixin box-sizing($value) {
75
+ -moz-box-sizing: $value;
76
+ -webkit-box-sizing: $value;
77
+ box-sizing: $value;
78
+ }
79
+
80
+ // requires sass 3.2
81
+ @mixin keyframes($name){
82
+ @-moz-keyframes #{$name} { @content; }
83
+ @-ms-keyframes #{$name} { @content; }
84
+ @-o-keyframes #{$name} { @content; }
85
+ @-webkit-keyframes #{$name} { @content; }
86
+ @keyframes #{$name} { @content; }
87
+ }
88
+
89
+ @mixin linear-gradient($from, $to, $ie: $useIEFilters) {
90
+ @if $ie != 1 { background-color: $to; }
91
+
92
+ background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, $from),color-stop(1, $to));
93
+ background-image: -webkit-linear-gradient(top, $from, $to);
94
+ background-image: -moz-linear-gradient(top, $from, $to);
95
+ background-image: -ms-linear-gradient(top, $from, $to);
96
+ background-image: -o-linear-gradient(top, $from, $to);
97
+ background-image: linear-gradient(top, bottom, $from, $to);
98
+
99
+ @if $ie == 1 {
100
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}');
101
+ }
102
+ }
103
+
104
+ @mixin horizontal-gradient($startColor: #555, $endColor: #333, $ie: $useIEFilters) {
105
+ @if $ie != 1 { background-color: $endColor; }
106
+
107
+ background-color: $endColor;
108
+ background-image: -webkit-gradient(linear, 0 0, 100% 0, from($startColor), to($endColor)); // Safari 4+, Chrome 2+
109
+ background-image: -webkit-linear-gradient(left, $startColor, $endColor); // Safari 5.1+, Chrome 10+
110
+ background-image: -moz-linear-gradient(left, $startColor, $endColor); // FF 3.6+
111
+ background-image: -o-linear-gradient(left, $startColor, $endColor); // Opera 11.10
112
+ background-image: linear-gradient(to right, $startColor, $endColor); // Standard, IE10
113
+ background-repeat: repeat-x;
114
+ @if $ie == 1 {
115
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=1);
116
+ }
117
+ }
118
+
119
+ @mixin radial-gradient($from, $to, $ie: $useIEFilters) {
120
+ @if $ie != 1 { background-color: $to; }
121
+
122
+ background: -moz-radial-gradient(center, circle cover, $from 0%, $to 100%);
123
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, $from), color-stop(100%, $to));
124
+ background: -webkit-radial-gradient(center, circle cover, $from 0%, $to 100%);
125
+ background: -o-radial-gradient(center, circle cover, $from 0%, $to 100%);
126
+ background: -ms-radial-gradient(center, circle cover, $from 0%, $to 100%);
127
+ background: radial-gradient(center, circle cover, $from 0%, $to 100%);
128
+ background-color: $from;
129
+
130
+ @if $ie == 1 {
131
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}', GradientType=1); /* IE6-9 fallback on horizontal gradient */
132
+ }
133
+ }
134
+
135
+ @mixin perspective($perspective) {
136
+ -moz-perspective: $perspective;
137
+ -ms-perspective: $perspective;
138
+ -webkit-perspective: $perspective;
139
+ perspective: $perspective;
140
+ -moz-transform-style: preserve-3d;
141
+ -ms-transform-style: preserve-3d;
142
+ -webkit-transform-style: preserve-3d;
143
+ transform-style: preserve-3d;
144
+ }
145
+
146
+ @mixin transform ($transforms) {
147
+ -moz-transform: $transforms;
148
+ -o-transform: $transforms;
149
+ -ms-transform: $transforms;
150
+ -webkit-transform: $transforms;
151
+ transform: $transforms;
152
+ }
153
+
154
+ @mixin matrix ($a, $b, $c, $d, $e, $f) {
155
+ -moz-transform: matrix($a, $b, $c, $d, #{$e}px, #{$f}px);
156
+ -o-transform: matrix($a, $b, $c, $d, $e, $f);
157
+ -ms-transform: matrix($a, $b, $c, $d, $e, $f);
158
+ -webkit-transform: matrix($a, $b, $c, $d, $e, $f);
159
+ transform: matrix($a, $b, $c, $d, $e, $f);
160
+ }
161
+
162
+ @mixin rotate ($deg) {
163
+ @include transform(rotate(#{$deg}deg));
164
+ }
165
+
166
+ @mixin scale ($size) {
167
+ @include transform(scale(#{$size}));
168
+ }
169
+
170
+ @mixin translate ($x, $y) {
171
+ @include transform(translate($x, $y));
172
+ }
173
+
174
+ @mixin transition ($value...) {
175
+ -moz-transition: $value;
176
+ -o-transition: $value;
177
+ -ms-transition: $value;
178
+ -webkit-transition: $value;
179
+ transition: $value;
180
+ }
181
+
182
+ @mixin animation($str) {
183
+ -webkit-animation: #{$str};
184
+ -moz-animation: #{$str};
185
+ -ms-animation: #{$str};
186
+ -o-animation: #{$str};
187
+ animation: #{$str};
188
+ }
189
+
190
+ @mixin animation-name($str) {
191
+ -webkit-animation-name: #{$str};
192
+ -moz-animation-name: #{$str};
193
+ -ms-animation-name: #{$str};
194
+ -o-animation-name: #{$str};
195
+ animation-name: #{$str};
196
+ }
197
+
198
+ @mixin animation-duration($str) {
199
+ -webkit-animation-duration: #{$str};
200
+ -moz-animation-duration: #{$str};
201
+ -ms-animation-duration: #{$str};
202
+ -o-animation-duration: #{$str};
203
+ animation-duration: #{$str};
204
+ }
205
+
206
+ @mixin animation-direction($str) {
207
+ -webkit-animation-direction: #{$str};
208
+ -moz-animation-direction: #{$str};
209
+ -ms-animation-direction: #{$str};
210
+ -o-animation-direction: #{$str};
211
+ animation-direction: #{$str};
212
+ }
213
+
214
+ @mixin animation-delay($str) {
215
+ animation-delay:#{$str};
216
+ -o-animation-delay:#{$str};
217
+ -ms-animation-delay:#{$str};
218
+ -webkit-animation-delay:#{$str};
219
+ -moz-animation-delay:#{$str};
220
+ }
221
+
222
+ @mixin animation-iteration-count($str) {
223
+ animation-iteration-count:#{$str};
224
+ -o-animation-iteration-count:#{$str};
225
+ -ms-animation-iteration-count:#{$str};
226
+ -webkit-animation-iteration-count:#{$str};
227
+ -moz-animation-iteration-count:#{$str};
228
+ }
229
+
230
+ @mixin animation-timing-function($str) {
231
+ -webkit-animation-timing-function: #{$str};
232
+ -moz-animation-timing-function: #{$str};
233
+ -ms-animation-timing-function: #{$str};
234
+ -o-animation-timing-function: #{$str};
235
+ animation-timing-function: #{$str};
236
+ }
237
+
238
+ // ==== /CSS3 SASS MIXINS ====
239
+
240
+ @mixin opacity($opacity) {
241
+ opacity: $opacity;
242
+ $opacity-ie: $opacity * 100;
243
+ filter: alpha(opacity=$opacity-ie); //IE8
244
+ }
245
+
246
+ @mixin size($width, $height: $width)
247
+ {
248
+ width: $width;
249
+ height: $height;
250
+ }
251
+
252
+ @mixin clearfix
253
+ {
254
+ &:after {
255
+ content: "";
256
+ display: table;
257
+ clear: both;
258
+ }
259
+ }
260
+
261
+ // Placeholder text
262
+ @mixin placeholder($color: $input-color-placeholder) {
263
+ // Firefox
264
+ &::-moz-placeholder {
265
+ color: $color;
266
+ opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
267
+ }
268
+ &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+
269
+ &::-webkit-input-placeholder { color: $color; } // Safari and Chrome
270
+ }
freemius/assets/scss/_start.scss ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ @import "vars";
2
+ @import "colors";
3
+ @import "mixins";
4
+ @import "functions";
freemius/assets/scss/_vars.scss ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ $is_production: true;
2
+
3
+ $img_common: if($is_production == true, '//img.freemius.com', 'http://img.freemius:8080');
4
+
5
+ $layout_width: 960px;
6
+ $admin_mobile_max_width: 782px;
freemius/assets/scss/admin/_ajax-loader.scss ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $color: $wp-selected-color;
2
+ $bkg-color: #fff;
3
+ $size: 20;
4
+
5
+ .fs-ajax-loader
6
+ {
7
+ position: relative;
8
+ width: #{8*$size + 10}px;
9
+ height: #{$size}px;
10
+ margin: auto;
11
+
12
+ .fs-ajax-loader-bar
13
+ {
14
+ position: absolute;
15
+ top: 0;
16
+ background-color: $color;
17
+ width: #{$size}px;
18
+ height: #{$size}px;
19
+ @include animation-name(bounce_ajaxLoader);
20
+ @include animation-duration(1.5s);
21
+ @include animation-iteration-count(infinite);
22
+ @include animation-direction(normal);
23
+ @include transform(.3);
24
+ }
25
+
26
+ @for $i from 0 through 7
27
+ {
28
+ .fs-ajax-loader-bar-#{$i + 1}
29
+ {
30
+ left: #{$i*($size - 1)}px;
31
+ @include animation-delay(#{0.6 + $i*0.15}s);
32
+ }
33
+ }
34
+ }
35
+
36
+ @include keyframes(bounce_ajaxLoader)
37
+ {
38
+ 0%
39
+ {
40
+ @include transform(scale(1));
41
+ background-color: $color;
42
+ }
43
+
44
+ 100%
45
+ {
46
+ @include transform(scale(.3));
47
+ background-color: $bkg-color;
48
+ }
49
+ }
freemius/assets/scss/admin/_auto-install.scss ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal-auto-install
2
+ {
3
+ $max-width: 300px;
4
+
5
+ #request-filesystem-credentials-form
6
+ {
7
+ h2,
8
+ .request-filesystem-credentials-action-buttons
9
+ {
10
+ display: none;
11
+ }
12
+
13
+ input[type=password],
14
+ input[type=email],
15
+ input[type=text]
16
+ {
17
+ -webkit-appearance: none;
18
+ padding: 10px 10px 5px 10px;
19
+ width: $max-width;
20
+ max-width: 100%;
21
+ }
22
+
23
+ > div,
24
+ label,
25
+ fieldset
26
+ {
27
+ width: $max-width;
28
+ max-width: 100%;
29
+ margin: 0 auto;
30
+ display: block;
31
+ }
32
+ }
33
+ }
freemius/assets/scss/admin/_badge.scss ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-badge
2
+ {
3
+ position: absolute;
4
+ top: 10px;
5
+ right: 0;
6
+ background: $fs-logo-green-color;
7
+ color: white;
8
+ text-transform: uppercase;
9
+ padding: 5px 10px;
10
+ @include border-radius(3px 0 0 3px);
11
+ font-weight: bold;
12
+ border-right: 0;
13
+ @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3));
14
+ }
freemius/assets/scss/admin/_buttons.scss ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .button-primary.warn {
2
+ box-shadow: 0 1px 0 $wp-button-alert-shadow-color;
3
+ text-shadow: 0 -1px 1px $wp-button-alert-shadow-color, 1px 0 1px $wp-button-alert-shadow-color, 0 1px 1px $wp-button-alert-shadow-color, -1px 0 1px $wp-button-alert-shadow-color;
4
+ background: $wp-button-alert-background-color;
5
+ border-color: $wp-button-alert-border-top-color $wp-button-alert-border-color $wp-button-alert-border-color;
6
+
7
+ &:hover {
8
+ background: $wp-button-alert-hovered-background-color;
9
+ border-color: $wp-button-alert-border-color;
10
+ }
11
+
12
+ &:focus {
13
+ box-shadow: 0 1px 0 $wp-button-alert-focused-shadow1-color, 0 0 2px 1px $wp-button-alert-focused-shadow2-color;
14
+ }
15
+
16
+ &:active {
17
+ background: $wp-button-alert-active-background-color;
18
+ border-color: $wp-button-alert-border-color;
19
+ box-shadow: inset 0 2px 0 $wp-button-alert-shadow-color;
20
+ }
21
+
22
+ &.disabled {
23
+ color: $wp-button-alert-disabled-color !important;
24
+ background: $wp-button-alert-disabled-background-color !important;
25
+ border-color: $wp-button-alert-disabled-border-color !important;
26
+ text-shadow: 0 -1px 0 rgba(0,0,0,.1) !important;
27
+ }
28
+ }
freemius/assets/scss/admin/_deactivation-feedback.scss ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../colors";
2
+
3
+ .fs-modal.fs-modal-deactivation-feedback {
4
+ .reason-input, .internal-message {
5
+ margin: 3px 0 3px 22px;
6
+
7
+ input, textarea {
8
+ width: 100%;
9
+ }
10
+ }
11
+
12
+ li.reason {
13
+ &.has-internal-message .internal-message {
14
+ border: 1px solid lighten($darkest-color, 80%);
15
+ padding: 7px;
16
+ display: none;
17
+ }
18
+
19
+ @media (max-width: 650px) {
20
+ li.reason {
21
+ margin-bottom: 10px;
22
+
23
+ .reason-input, .internal-message {
24
+ margin-left: 29px;
25
+ }
26
+
27
+ label {
28
+ display: table;
29
+
30
+ > span {
31
+ display: table-cell;
32
+ font-size: 1.3em;
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ .anonymous-feedback-label {
40
+ float: left;
41
+ }
42
+
43
+ .fs-modal-panel {
44
+ margin-top: 0 !important;
45
+
46
+ h3 {
47
+ margin-top: 0;
48
+ line-height: 1.5em;
49
+ }
50
+ }
51
+ }
52
+
53
+ #the-list .deactivate > .fs-slug {
54
+ display: none;
55
+ }
freemius/assets/scss/admin/_gdpr-consent.scss ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #fs_marketing_optin
2
+ {
3
+ display: none;
4
+ margin-top: 10px;
5
+ border: 1px solid #ccc;
6
+ padding: 10px;
7
+ line-height: 1.5em;
8
+
9
+ .fs-message
10
+ {
11
+ display: block;
12
+ margin-bottom: 5px;
13
+ font-size: 1.05em;
14
+ font-weight: 600;
15
+ }
16
+
17
+ &.error
18
+ {
19
+ border: 1px solid $fs-logo-magenta-color;
20
+ background: #fee;
21
+
22
+ .fs-message
23
+ {
24
+ color: $fs-logo-magenta-color;
25
+ }
26
+ }
27
+
28
+ .fs-input-container
29
+ {
30
+ margin-top: 5px;
31
+
32
+ label
33
+ {
34
+ margin-top: 5px;
35
+ display: block;
36
+
37
+ input
38
+ {
39
+ float: left;
40
+ margin: 1px 0 0 0;
41
+ }
42
+
43
+ &:first-child
44
+ {
45
+ display: block;
46
+ margin-bottom: 2px;
47
+ }
48
+ }
49
+ }
50
+
51
+ .fs-input-label
52
+ {
53
+ display: block;
54
+ margin-left: 20px;
55
+
56
+ .underlined
57
+ {
58
+ text-decoration: underline;
59
+ }
60
+ }
61
+ }
62
+
63
+ .rtl
64
+ {
65
+ #fs_marketing_optin
66
+ {
67
+ .fs-input-container
68
+ {
69
+ label input
70
+ {
71
+ float: right;
72
+ }
73
+ }
74
+
75
+ .fs-input-label
76
+ {
77
+ margin-left: 0;
78
+ margin-right: 20px;
79
+ }
80
+ }
81
+ }
freemius/assets/scss/admin/_license-activation.scss ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-license-activation {
2
+ .fs-modal-body {
3
+ input.license_key {
4
+ width: 100%;
5
+ }
6
+ }
7
+ }
8
+
9
+ #license_options_container {
10
+ table {
11
+ &, select, #available_license_key {
12
+ width: 100%;
13
+ }
14
+
15
+ td:first-child {
16
+ width: 1%;
17
+ }
18
+
19
+ #other_license_key_container {
20
+ label {
21
+ position: relative;
22
+ top: 6px;
23
+ float: left;
24
+ margin-right: 5px;
25
+ }
26
+
27
+ div {
28
+ overflow: hidden;
29
+ width: auto;
30
+ height: 30px;
31
+ display: block;
32
+ top: 2px;
33
+ position: relative;
34
+
35
+ input {
36
+ margin: 0;
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+ #sites_list_container {
44
+ td {
45
+ cursor: pointer;
46
+ }
47
+ }
freemius/assets/scss/admin/_license-key-resend.scss ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-license-key-resend
2
+ {
3
+ .email-address-container
4
+ {
5
+ overflow: hidden;
6
+ padding-right: 2px;
7
+ }
8
+
9
+ &.fs-freemium
10
+ {
11
+ input.email-address
12
+ {
13
+ width: 300px;
14
+ }
15
+
16
+ label
17
+ {
18
+ display: block;
19
+ margin-bottom: 10px;
20
+ }
21
+ }
22
+
23
+ &.fs-premium
24
+ {
25
+ input.email-address
26
+ {
27
+ width: 100%;
28
+ }
29
+
30
+ .button-container
31
+ {
32
+ float: right;
33
+ margin-left: 7px;
34
+
35
+ @media (max-width: 650px) {
36
+ margin-top: 2px;
37
+ }
38
+ }
39
+ }
40
+ }
41
+
42
+ .rtl
43
+ {
44
+ .fs-modal.fs-modal-license-key-resend
45
+ {
46
+ .fs-modal-body
47
+ {
48
+ .input-container > .email-address-container
49
+ {
50
+ padding-left: 2px;
51
+ padding-right: 0;
52
+ }
53
+
54
+ .button-container
55
+ {
56
+ float: left;
57
+ margin-right: 7px;
58
+ margin-left: 0;
59
+ }
60
+ }
61
+ }
62
+ }
63
+
64
+ a.show-license-resend-modal
65
+ {
66
+ margin-top: 4px;
67
+ display: inline-block;
68
+ }
freemius/assets/scss/admin/_modal-common.scss ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../colors";
2
+ @import "../mixins";
3
+
4
+ .fs-modal {
5
+ position: fixed;
6
+ overflow: auto;
7
+ height: 100%;
8
+ width: 100%;
9
+ top: 0;
10
+ z-index: 100000;
11
+ display: none;
12
+ background: rgba(0, 0, 0, 0.6);
13
+
14
+ .fs-modal-dialog {
15
+ background: transparent;
16
+ position: absolute;
17
+ left: 50%;
18
+ margin-left: -298px;
19
+ padding-bottom: 30px;
20
+ top: -100%;
21
+ z-index: 100001;
22
+ width: 596px;
23
+
24
+ @media (max-width: 650px) {
25
+ margin-left: -50%;
26
+ box-sizing: border-box;
27
+ padding-left: 10px;
28
+ padding-right: 10px;
29
+ width: 100%;
30
+
31
+ .fs-modal-panel > h3 > strong {
32
+ font-size: 1.3em;
33
+ }
34
+ }
35
+ }
36
+
37
+ &.active {
38
+ display: block;
39
+
40
+ &:before {
41
+ display: block;
42
+ }
43
+
44
+ .fs-modal-dialog {
45
+ top: 10%;
46
+ }
47
+ }
48
+
49
+ &.fs-success {
50
+ .fs-modal-header {
51
+ border-bottom-color: $wp-notice-success-dark-color;
52
+ }
53
+
54
+ .fs-modal-body {
55
+ background-color: $wp-notice-success-color;
56
+ }
57
+ }
58
+
59
+ &.fs-warn {
60
+ .fs-modal-header {
61
+ border-bottom-color: $wp-notice-warn-dark-color;
62
+ }
63
+
64
+ .fs-modal-body {
65
+ background-color: $wp-notice-warn-color;
66
+ }
67
+ }
68
+
69
+ &.fs-error {
70
+ .fs-modal-header {
71
+ border-bottom-color: $wp-notice-error-dark-color;
72
+ }
73
+
74
+ .fs-modal-body {
75
+ background-color: $wp-notice-error-color;
76
+ }
77
+ }
78
+
79
+
80
+ .fs-modal-body,
81
+ .fs-modal-footer {
82
+ border: 0;
83
+ background: #fefefe;
84
+ padding: 20px;
85
+ }
86
+
87
+ .fs-modal-header {
88
+ border-bottom: #eeeeee solid 1px;
89
+ background: #fbfbfb;
90
+ padding: 15px 20px;
91
+ position: relative;
92
+ margin-bottom: -10px;
93
+ // z-index: 2;
94
+
95
+ h4 {
96
+ margin: 0;
97
+ padding: 0;
98
+ text-transform: uppercase;
99
+ font-size: 1.2em;
100
+ font-weight: bold;
101
+ color: #cacaca;
102
+ text-shadow: 1px 1px 1px #fff;
103
+ letter-spacing: 0.6px;
104
+ -webkit-font-smoothing: antialiased;
105
+ }
106
+
107
+ .fs-close {
108
+ position: absolute;
109
+ right: 10px;
110
+ top: 12px;
111
+ cursor: pointer;
112
+ color: #bbb;
113
+ @include border-radius(20px);
114
+ padding: 3px;
115
+ @include transition(all 0.2s ease-in-out);
116
+
117
+ &:hover {
118
+ color: #fff;
119
+ background: #aaa;
120
+ }
121
+
122
+ &, &:hover
123
+ {
124
+ .dashicons
125
+ {
126
+ text-decoration: none;
127
+ }
128
+ }
129
+ }
130
+ }
131
+
132
+ .fs-modal-body {
133
+ border-bottom: 0;
134
+
135
+ p {
136
+ font-size: 14px;
137
+ }
138
+
139
+ h2 {
140
+ font-size: 20px;
141
+ line-height: 1.5em;
142
+ }
143
+
144
+ > div {
145
+ margin-top: 10px;
146
+
147
+ h2 {
148
+ font-weight: bold;
149
+ font-size: 20px;
150
+ margin-top: 0;
151
+ }
152
+ }
153
+ }
154
+
155
+ .fs-modal-footer {
156
+ border-top: #eeeeee solid 1px;
157
+ text-align: right;
158
+
159
+ > .button {
160
+ margin: 0 7px;
161
+
162
+ &:first-child {
163
+ margin: 0;
164
+ }
165
+ }
166
+ }
167
+
168
+ .fs-modal-panel {
169
+ > .notice.inline {
170
+ margin: 0;
171
+ display: none;
172
+ }
173
+
174
+ &:not(.active) {
175
+ display: none;
176
+ }
177
+ }
178
+ }
179
+
180
+ .rtl
181
+ {
182
+ .fs-modal {
183
+ .fs-modal-header {
184
+ .fs-close {
185
+ right: auto;
186
+ left: 20px;
187
+ }
188
+ }
189
+ }
190
+ }
191
+
192
+ body.has-fs-modal {
193
+ overflow: hidden;
194
+ }
freemius/assets/scss/admin/_multisite-options.scss ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #multisite_options_container {
2
+ margin-top: 10px;
3
+ border: 1px solid #ccc;
4
+ padding: 5px;
5
+
6
+ a {
7
+ text-decoration: none;
8
+
9
+ &:focus {
10
+ box-shadow: none;
11
+ }
12
+
13
+ &.selected {
14
+ font-weight: bold;
15
+ }
16
+ }
17
+
18
+ &.apply-on-all-sites {
19
+ border: 0 none;
20
+ padding: 0;
21
+
22
+ #all_sites_options {
23
+ border-spacing: 0;
24
+
25
+ td:not(:first-child) {
26
+ display: none;
27
+ }
28
+ }
29
+ }
30
+
31
+ #sites_list_container {
32
+ display: none;
33
+ overflow: auto;
34
+
35
+ table td {
36
+ border-top: 1px solid #ccc;
37
+ padding: 4px 2px;
38
+ }
39
+ }
40
+ }
freemius/assets/scss/admin/_plugin-upgrade-notice.scss ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ .plugins p.fs-upgrade-notice
2
+ {
3
+ border: 0;
4
+ background-color: #d54e21;
5
+ padding: 10px;
6
+ color: #f9f9f9;
7
+ margin-top: 10px;
8
+ }
freemius/assets/scss/admin/_subscription-cancellation.scss ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-subscription-cancellation {
2
+ .fs-price-increase-warning {
3
+ color: red;
4
+ font-weight: bold;
5
+ padding: 0 25px;
6
+ margin-bottom: 0;
7
+ }
8
+
9
+ ul.subscription-actions label {
10
+ input {
11
+ float: left;
12
+ top: 5px;
13
+ position: relative;
14
+
15
+ .rtl & {
16
+ float: right;
17
+ }
18
+ }
19
+
20
+ span {
21
+ display: block;
22
+ margin-left: 24px;
23
+
24
+ .rtl & {
25
+ margin-left: 0;
26
+ margin-right: 24px;
27
+ }
28
+ }
29
+ }
30
+ }
freemius/assets/scss/admin/_themes.scss ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "badge";
2
+
3
+ .theme-browser
4
+ {
5
+ .theme
6
+ {
7
+ .fs-badge.fs-premium-theme-badge
8
+ {
9
+ font-size: 1.1em;
10
+ }
11
+ }
12
+ }
freemius/assets/scss/admin/_tooltip.scss ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-tooltip-trigger
2
+ {
3
+ &:not(a)
4
+ {
5
+ cursor: help;
6
+ }
7
+
8
+ position: relative;
9
+
10
+ .fs-tooltip
11
+ {
12
+ opacity: 0;
13
+ visibility: hidden;
14
+ @include transition(opacity 0.3s ease-in-out);
15
+ position: absolute;
16
+ background: $tooltip-bkg-color;
17
+ color: $tooltip-color;
18
+ font-family: 'arial', serif;
19
+ font-size: 12px;
20
+ padding: 10px;
21
+ z-index: 999999;
22
+ bottom: 100%;
23
+ margin-bottom: 5px;
24
+ left: 0;
25
+ right: 0;
26
+ @include border-radius(5px);
27
+ @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
28
+ line-height: 1.3em;
29
+ font-weight: bold;
30
+ text-align: left;
31
+
32
+ .rtl &
33
+ {
34
+ text-align: right;
35
+ }
36
+
37
+ &::after
38
+ {
39
+ content: ' ';
40
+ display: block;
41
+ width: 0;
42
+ height: 0;
43
+ border-style: solid;
44
+ border-width: 5px 5px 0 5px;
45
+ border-color: $tooltip-bkg-color transparent transparent transparent;
46
+ position: absolute;
47
+ top: 100%;
48
+ left: 21px;
49
+
50
+ .rtl &
51
+ {
52
+ right: 21px;
53
+ left: auto;
54
+ }
55
+ }
56
+ }
57
+
58
+ &:hover
59
+ {
60
+ .fs-tooltip
61
+ {
62
+ visibility: visible;
63
+ opacity: 1;
64
+ }
65
+ }
66
+ }
freemius/assets/scss/admin/account.scss ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ #fs_account
4
+ {
5
+ .postbox,
6
+ .widefat
7
+ {
8
+ max-width: 700px;
9
+ }
10
+
11
+ h3
12
+ {
13
+ font-size: 1.3em;
14
+ padding: 12px 15px;
15
+ margin: 0 0 12px 0;
16
+ line-height: 1.4;
17
+ border-bottom: 1px solid #F1F1F1;
18
+
19
+ .dashicons {
20
+ width: 26px;
21
+ height: 26px;
22
+ font-size: 1.3em;
23
+ }
24
+ }
25
+
26
+ i.dashicons
27
+ {
28
+ font-size: 1.2em;
29
+ height: 1.2em;
30
+ width: 1.2em;
31
+ }
32
+
33
+ .dashicons
34
+ {
35
+ vertical-align: middle;
36
+ }
37
+
38
+ .fs-header-actions
39
+ {
40
+ position: absolute;
41
+ top: 17px;
42
+ right: 15px;
43
+ font-size: 0.9em;
44
+
45
+ ul
46
+ {
47
+ margin: 0;
48
+ }
49
+
50
+ li
51
+ {
52
+ form
53
+ {
54
+ display: inline-block;
55
+ }
56
+
57
+ float: left;
58
+ a
59
+ {
60
+ text-decoration: none;
61
+ }
62
+ }
63
+ }
64
+ }
65
+
66
+ #fs_account_details .button-group {
67
+ float: right;
68
+ }
69
+
70
+ .rtl #fs_account .fs-header-actions
71
+ {
72
+ left: 15px;
73
+ right: auto;
74
+ }
75
+
76
+ .fs-key-value-table
77
+ {
78
+ width: 100%;
79
+
80
+ form
81
+ {
82
+ display: inline-block;
83
+ }
84
+
85
+ tr
86
+ {
87
+ td:first-child
88
+ {
89
+ nobr
90
+ {
91
+ font-weight: bold;
92
+ }
93
+
94
+ text-align: right;
95
+
96
+ form
97
+ {
98
+ display: block;
99
+ }
100
+ }
101
+
102
+ td.fs-right
103
+ {
104
+ text-align: right;
105
+ }
106
+
107
+ &.fs-odd
108
+ {
109
+ background: #ebebeb;
110
+ }
111
+ }
112
+
113
+ td, th
114
+ {
115
+ padding: 10px;
116
+ }
117
+
118
+ code {
119
+ line-height: 28px;
120
+ }
121
+
122
+ var, code, input[type="text"]
123
+ {
124
+ color: #0073AA;
125
+ font-size: 16px;
126
+ background: none;
127
+ }
128
+
129
+ input[type="text"] {
130
+ width: 100%;
131
+ font-weight: bold;
132
+ }
133
+ }
134
+
135
+ label.fs-tag
136
+ {
137
+ background: #ffba00;
138
+ color: #fff;
139
+ display: inline-block;
140
+ border-radius: 3px;
141
+ padding: 5px;
142
+ font-size: 11px;
143
+ line-height: 11px;
144
+ vertical-align: baseline;
145
+
146
+ &.fs-warn
147
+ {
148
+ background: #ffba00;
149
+ }
150
+ &.fs-success
151
+ {
152
+ background: #46b450;
153
+ }
154
+ &.fs-error
155
+ {
156
+ background: #dc3232;
157
+ }
158
+ }
159
+
160
+ #fs_sites
161
+ {
162
+ .fs-scrollable-table
163
+ {
164
+ .fs-table-body {
165
+ max-height: 200px;
166
+ overflow: auto;
167
+ border: 1px solid #e5e5e5;
168
+
169
+ & > table.widefat {
170
+ border: none !important;
171
+ }
172
+ }
173
+
174
+ .fs-main-column {
175
+ width: 100%;
176
+ }
177
+
178
+ .fs-site-details
179
+ {
180
+ td:first-of-type
181
+ {
182
+ text-align: right;
183
+ color: grey;
184
+ width: 1px;
185
+ }
186
+
187
+ td:last-of-type
188
+ {
189
+ text-align: right;
190
+ }
191
+ }
192
+
193
+ .fs-install-details table
194
+ {
195
+ tr td
196
+ {
197
+ width: 1px;
198
+ white-space: nowrap;
199
+
200
+ &:last-of-type
201
+ {
202
+ width: auto;
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+
209
+ #fs_addons
210
+ {
211
+ h3
212
+ {
213
+ border: none;
214
+ margin-bottom: 0;
215
+ padding: 4px 5px;
216
+ }
217
+
218
+ td
219
+ {
220
+ vertical-align: middle;
221
+ }
222
+
223
+ thead {
224
+ white-space: nowrap;
225
+ }
226
+
227
+ td:first-child,
228
+ th:first-child
229
+ {
230
+ text-align: left;
231
+ font-weight: bold;
232
+ }
233
+ td:last-child,
234
+ th:last-child
235
+ {
236
+ text-align: right;
237
+ }
238
+ th
239
+ {
240
+ font-weight: bold;
241
+ }
242
+ }
243
+
244
+ #fs_billing_address {
245
+ width: 100%;
246
+
247
+ tr {
248
+ td {
249
+ width: 50%;
250
+ padding: 5px;
251
+ }
252
+
253
+ &:first-of-type {
254
+ td {
255
+ padding-top: 0;
256
+ }
257
+ }
258
+ }
259
+
260
+ @mixin read-mode {
261
+ border-color: transparent;
262
+ color: #777;
263
+ border-bottom: 1px dashed #ccc;
264
+ padding-left: 0;
265
+ background: none;
266
+ }
267
+
268
+ span {
269
+ font-weight: bold;
270
+ }
271
+
272
+ input, select {
273
+ @include placeholder(transparent);
274
+
275
+ display: block;
276
+ width: 100%;
277
+ margin-top: 5px;
278
+
279
+ &.fs-read-mode {
280
+ @include read-mode();
281
+ }
282
+ }
283
+
284
+
285
+ &.fs-read-mode {
286
+ td span {
287
+ display: none;
288
+ }
289
+
290
+ input, select
291
+ {
292
+ @include read-mode();
293
+ @include placeholder(#ccc);
294
+ }
295
+ }
296
+
297
+
298
+ button {
299
+ display: block;
300
+ width: 100%;
301
+ }
302
+ }
freemius/assets/scss/admin/add-ons.scss ADDED
@@ -0,0 +1,520 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "badge";
3
+
4
+ #fs_addons
5
+ {
6
+ .fs-cards-list
7
+ {
8
+ list-style: none;
9
+
10
+ .fs-card
11
+ {
12
+ float: left;
13
+ // height: 185px; // With reviews/ratings
14
+ height: 152px;
15
+ width: 310px;
16
+ padding: 0;
17
+ margin: 0 0 30px 30px;
18
+ font-size: 14px;
19
+ list-style: none;
20
+ border: 1px solid #ddd;
21
+ cursor: pointer;
22
+ position: relative;
23
+
24
+ .fs-overlay
25
+ {
26
+ position: absolute;
27
+ left: 0;
28
+ right: 0;
29
+ bottom: 0;
30
+ top: 0;
31
+ z-index: 9;
32
+ }
33
+
34
+ .fs-inner
35
+ {
36
+ background-color: #fff;
37
+ overflow: hidden;
38
+ height: 100%;
39
+ position: relative;
40
+
41
+ & > ul
42
+ {
43
+ @include transition(all, 0.15s);
44
+ left: 0;
45
+ right: 0;
46
+ top: 0;
47
+ position: absolute;
48
+
49
+ & > li
50
+ {
51
+ list-style: none;
52
+ line-height: 18px;
53
+ padding: 0 15px;
54
+ width: 100%;
55
+ display: block;
56
+ @include box-sizing(border-box);
57
+ }
58
+ }
59
+
60
+ .fs-card-banner
61
+ {
62
+ padding: 0;
63
+ margin: 0;
64
+ line-height: 0;
65
+ display: block;
66
+ height: 100px;
67
+ background-repeat: repeat-x;
68
+ background-size: 100% 100%;
69
+ @include transition(all, 0.15s);
70
+
71
+ .fs-badge.fs-installed-addon-badge {
72
+ font-size: 1.02em;
73
+ line-height: 1.3em;
74
+ }
75
+ }
76
+
77
+ .fs-title
78
+ {
79
+ margin: 10px 0 0 0;
80
+ height: 18px;
81
+ overflow: hidden;
82
+ color: #000;
83
+ white-space: nowrap;
84
+ text-overflow: ellipsis;
85
+ font-weight: bold;
86
+ }
87
+
88
+ .fs-offer
89
+ {
90
+ font-size: 0.9em;
91
+ }
92
+
93
+ .fs-description
94
+ {
95
+ background-color: #f9f9f9;
96
+ padding: 10px 15px 100px 15px;
97
+ border-top: 1px solid #eee;
98
+ margin: 0 0 10px 0;
99
+ color: #777;
100
+ }
101
+
102
+ .fs-tag
103
+ {
104
+ position: absolute;
105
+ top: 10px;
106
+ right: 0px;
107
+ background: greenyellow;
108
+ display: block;
109
+ padding: 2px 10px;
110
+ @include box-shadow(1px 1px 1px rgba(0,0,0,0.3));
111
+ text-transform: uppercase;
112
+ font-size: 0.9em;
113
+ font-weight: bold;
114
+ }
115
+
116
+ .fs-cta
117
+ {
118
+ .button, .button-group
119
+ {
120
+ position: absolute;
121
+ top: 112px;
122
+ right: 10px;
123
+ }
124
+
125
+ &.fs-dropdown {
126
+ .button-group {
127
+ .button {
128
+ position: relative;
129
+ top: 0;
130
+ right: 0;
131
+
132
+ &:focus {
133
+ z-index: 1;
134
+ }
135
+ }
136
+
137
+ .fs-dropdown-arrow {
138
+ border-top: 6px solid white;
139
+ border-right: 4px solid transparent;
140
+ border-left: 4px solid transparent;
141
+ top: 12px;
142
+ position: relative;
143
+ }
144
+ }
145
+
146
+ &.active {
147
+ .button:not(.fs-dropdown-arrow-button) {
148
+ border-bottom-left-radius: 0;
149
+ }
150
+
151
+ .fs-dropdown-arrow-button {
152
+ border-bottom-right-radius: 0;
153
+ }
154
+ }
155
+
156
+ .fs-dropdown-list {
157
+ position: absolute;
158
+ right: -1px;
159
+ top: 100%;
160
+ margin-left: auto;
161
+ padding: 3px 0;
162
+ border: 1px solid lighten($darkest-color, 75%);
163
+ @include border-radius(3px 0 3px 3px);
164
+ background-color: #fff;
165
+ z-index: 1;
166
+ width: 230px;
167
+ @include box-shadow(0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12));
168
+
169
+ li {
170
+ margin: 0;
171
+
172
+ a {
173
+ display: block;
174
+ padding: 5px 10px;
175
+ text-decoration: none;
176
+ }
177
+
178
+ &:hover {
179
+ background-color: $wp-selected-color;
180
+ color: #fff;
181
+
182
+ a {
183
+ color: #fff;
184
+ }
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+ }
191
+
192
+ @media screen and (min-width: 960px) {
193
+ &:hover
194
+ {
195
+ .fs-overlay
196
+ {
197
+ border: 2px solid $fms-link-color;
198
+ margin-left: -1px;
199
+ margin-top: -1px;
200
+ }
201
+
202
+ .fs-inner
203
+ {
204
+ ul
205
+ {
206
+ top: -100px;
207
+ }
208
+
209
+ .fs-card-banner
210
+ {
211
+ // background-position: 50% -100px;
212
+ }
213
+
214
+ .fs-title,
215
+ .fs-offer
216
+ {
217
+ color: $fms-link-color;
218
+ }
219
+ }
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+
226
+ #TB_window
227
+ {
228
+ &, iframe
229
+ {
230
+ width: 772px !important;
231
+ }
232
+ }
233
+
234
+ #plugin-information
235
+ {
236
+ #section-description
237
+ {
238
+ h2, h3, p, b, i, blockquote, li, ul, ol
239
+ {
240
+ clear: none;
241
+ }
242
+
243
+ .fs-selling-points
244
+ {
245
+ padding-bottom: 10px;
246
+ border-bottom: 1px solid #ddd;
247
+
248
+ ul
249
+ {
250
+ margin: 0;
251
+
252
+ li
253
+ {
254
+ padding: 0;
255
+ list-style: none outside none;
256
+
257
+ i.dashicons
258
+ {
259
+ color: $fs-logo-green-color;
260
+ font-size: 3em;
261
+ vertical-align: middle;
262
+ line-height: 30px;
263
+ float: left;
264
+ margin: 0 0 0 -15px;
265
+ }
266
+
267
+ h3
268
+ {
269
+ margin: 1em 30px !important;
270
+ }
271
+ }
272
+ }
273
+ }
274
+
275
+ .fs-screenshots
276
+ {
277
+ @include clearfix();
278
+ ul
279
+ {
280
+ list-style: none;
281
+ margin: 0;
282
+
283
+ li
284
+ {
285
+ width: 225px;
286
+ height: 225px;
287
+ float: left;
288
+ margin-bottom: 20px;
289
+ @include box-sizing(content-box);
290
+
291
+ a
292
+ {
293
+ display: block;
294
+ width: 100%;
295
+ height: 100%;
296
+ border: 1px solid;
297
+ @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
298
+ background-size: cover;
299
+ }
300
+
301
+ &.odd
302
+ {
303
+ margin-right: 20px;
304
+ }
305
+ }
306
+ }
307
+ }
308
+ }
309
+
310
+ .plugin-information-pricing
311
+ {
312
+ $pricing_color: #FFFEEC;
313
+ $borders_color: #DDD;
314
+ margin: -16px;
315
+ // padding: 20px;
316
+ border-bottom: 1px solid $borders_color;
317
+
318
+ .fs-plan
319
+ {
320
+
321
+ h3
322
+ {
323
+ margin-top: 0;
324
+ padding: 20px;
325
+ font-size: 16px;
326
+ }
327
+
328
+ .nav-tab-wrapper
329
+ {
330
+ border-bottom: 1px solid $borders_color;
331
+
332
+ .nav-tab
333
+ {
334
+ cursor: pointer;
335
+ position: relative;
336
+ padding: 0 10px;
337
+ font-size: 0.9em;
338
+
339
+ label
340
+ {
341
+ text-transform: uppercase;
342
+ color: green;
343
+ background: greenyellow;
344
+ position: absolute;
345
+ left: -1px;
346
+ right: -1px;
347
+ bottom: 100%;
348
+ border: 1px solid darkgreen;
349
+ padding: 2px;
350
+ text-align: center;
351
+ font-size: 0.9em;
352
+ line-height: 1em;
353
+ }
354
+
355
+ &.nav-tab-active
356
+ {
357
+ cursor: default;
358
+ background: $pricing_color;
359
+ border-bottom-color: $pricing_color;
360
+ }
361
+ }
362
+ }
363
+
364
+ &.fs-single-cycle
365
+ {
366
+ h3
367
+ {
368
+ background: $pricing_color;
369
+ margin: 0;
370
+ padding-bottom: 0;
371
+ color: #0073aa;
372
+ }
373
+
374
+ .nav-tab-wrapper,
375
+ .fs-billing-frequency
376
+ {
377
+ display: none;
378
+ }
379
+ }
380
+
381
+ .fs-pricing-body
382
+ {
383
+ background: $pricing_color;
384
+ padding: 20px;
385
+ }
386
+
387
+ .button
388
+ {
389
+ width: 100%;
390
+ text-align: center;
391
+ font-weight: bold;
392
+ text-transform: uppercase;
393
+ font-size: 1.1em;
394
+ }
395
+
396
+ label
397
+ {
398
+ white-space: nowrap;
399
+ }
400
+
401
+ var {
402
+ font-style: normal;
403
+ }
404
+
405
+ .fs-billing-frequency,
406
+ .fs-annual-discount
407
+ {
408
+ text-align: center;
409
+ display: block;
410
+ font-weight: bold;
411
+ margin-bottom: 10px;
412
+ text-transform: uppercase;
413
+ background: #F3F3F3;
414
+ padding: 2px;
415
+ border: 1px solid #ccc;
416
+ }
417
+
418
+ .fs-annual-discount
419
+ {
420
+ text-transform: none;
421
+ color: green;
422
+ background: greenyellow;
423
+ }
424
+
425
+ ul.fs-trial-terms
426
+ {
427
+ font-size: 0.9em;
428
+
429
+ i
430
+ {
431
+ float: left;
432
+ margin: 0 0 0 -15px;
433
+ }
434
+
435
+ li
436
+ {
437
+ margin: 10px 0 0 0;
438
+ }
439
+ }
440
+ }
441
+ }
442
+
443
+ #section-features
444
+ {
445
+ .fs-features
446
+ {
447
+ margin: -20px -26px;
448
+ }
449
+
450
+ table
451
+ {
452
+ width: 100%;
453
+ border-spacing: 0;
454
+ border-collapse: separate;
455
+
456
+ thead
457
+ {
458
+ th
459
+ {
460
+ padding: 10px 0;
461
+ }
462
+
463
+ .fs-price
464
+ {
465
+ color: $fs-logo-green-color;
466
+ font-weight: normal;
467
+ display: block;
468
+ text-align: center;
469
+ }
470
+ }
471
+
472
+ tbody
473
+ {
474
+ td
475
+ {
476
+ border-top: 1px solid #ccc;
477
+ padding: 10px 0;
478
+ text-align: center;
479
+ width: 100px;
480
+ color: $fs-logo-green-color;
481
+
482
+ &:first-child
483
+ {
484
+ text-align: left;
485
+ width: auto;
486
+ color: inherit;
487
+ padding-left: 26px;
488
+ }
489
+ }
490
+ tr.fs-odd
491
+ {
492
+ td
493
+ {
494
+ background: #fefefe;
495
+ }
496
+ }
497
+ }
498
+ }
499
+
500
+ .dashicons-yes
501
+ {
502
+ width: 30px;
503
+ height: 30px;
504
+ font-size: 30px;
505
+ }
506
+ }
507
+ }
508
+
509
+ @media screen and (max-width: 961px) {
510
+ #fs_addons
511
+ {
512
+ .fs-cards-list
513
+ {
514
+ .fs-card
515
+ {
516
+ height: 265px;
517
+ }
518
+ }
519
+ }
520
+ }
freemius/assets/scss/admin/affiliation.scss ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ #fs_affiliation_content_wrapper {
4
+ #messages {
5
+ margin-top: 25px;
6
+ }
7
+
8
+ h3 {
9
+ font-size: 24px;
10
+ padding: 0;
11
+ margin-left: 0;
12
+ }
13
+
14
+ ul {
15
+ li {
16
+ @include box-sizing(border-box);
17
+ list-style-type: none;
18
+
19
+ &:before {
20
+ content: '✓';
21
+ margin-right: 10px;
22
+ font-weight: bold;
23
+ }
24
+ }
25
+ }
26
+
27
+ p:not(.description), li, label {
28
+ font-size: 16px !important;
29
+ line-height: 26px !important;
30
+ }
31
+
32
+ .button {
33
+ margin-top: 20px;
34
+ margin-bottom: 7px;
35
+ line-height: 35px;
36
+ height: 40px;
37
+ font-size: 16px;
38
+
39
+ &#cancel_button {
40
+ margin-right: 5px;
41
+ }
42
+ }
43
+
44
+ form {
45
+ .input-container {
46
+ .input-label {
47
+ font-weight: bold;
48
+ display: block;
49
+ width: 100%;
50
+ }
51
+
52
+ &.input-container-text {
53
+ label, input, textarea {
54
+ display: block;
55
+ }
56
+ }
57
+
58
+ margin-bottom: 15px;
59
+
60
+ #add_domain, .remove-domain {
61
+ text-decoration: none;
62
+ display: inline-block;
63
+ margin-top: 3px;
64
+
65
+ &:focus {
66
+ box-shadow: none;
67
+ }
68
+
69
+ &.disabled {
70
+ color: #aaa;
71
+ cursor: default;
72
+ }
73
+ }
74
+ }
75
+
76
+ #extra_domains_container {
77
+ .description {
78
+ margin-top: 0;
79
+ position: relative;
80
+ top: -4px;
81
+ }
82
+
83
+ .extra-domain-input-container {
84
+ margin-bottom: 15px;
85
+
86
+ .domain {
87
+ display: inline-block;
88
+ margin-right: 5px;
89
+
90
+ &:last-of-type {
91
+ margin-bottom: 0;
92
+ }
93
+ }
94
+ }
95
+ }
96
+ }
97
+ }
freemius/assets/scss/admin/checkout.scss ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ @media screen and (max-width: 782px) {
2
+ #wpbody-content {
3
+ padding-bottom: 0 !important;
4
+ }
5
+ }
freemius/assets/scss/admin/common.scss ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "themes";
3
+
4
+ #fs_frame
5
+ {
6
+ line-height: 0;
7
+ font-size: 0;
8
+ }
9
+
10
+ .fs-full-size-wrapper
11
+ {
12
+ margin: 40px 0 -65px -20px;
13
+
14
+ @media (max-width: 600px) {
15
+ margin: 0 0 -65px -10px;
16
+ }
17
+ }
18
+
19
+ .fs-notice
20
+ {
21
+ position: relative;
22
+
23
+ &.fs-has-title
24
+ {
25
+ margin-bottom: 30px !important;
26
+ }
27
+
28
+ &.success
29
+ {
30
+ color: green;
31
+ // font-weight: normal;
32
+ }
33
+
34
+ &.promotion
35
+ {
36
+ border-color: $fs-notice-promotion-border-color !important;
37
+ background-color: $fs-notice-promotion-bkg !important;
38
+ }
39
+
40
+ .fs-notice-body
41
+ {
42
+ margin: .5em 0;
43
+ padding: 2px;
44
+ }
45
+
46
+ .fs-close
47
+ {
48
+ // position: absolute;
49
+ // top: 2px;
50
+ // bottom: 2px;
51
+ // right: 2px;
52
+ // min-width: 100px;
53
+ // text-align: center;
54
+ // padding-right: 2px;
55
+ cursor: pointer;
56
+ color: #aaa;
57
+ float: right;
58
+
59
+ &:hover
60
+ {
61
+ color: #666;
62
+ // background: #A9A9A9;
63
+ }
64
+
65
+ > *
66
+ {
67
+ margin-top: 7px;
68
+ display: inline-block;
69
+ }
70
+ }
71
+
72
+ label.fs-plugin-title
73
+ {
74
+ background: rgba(0, 0, 0, 0.3);
75
+ color: #fff;
76
+ padding: 2px 10px;
77
+ position: absolute;
78
+ top: 100%;
79
+ bottom: auto;
80
+ right: auto;
81
+ @include border-radius(0 0 3px 3px);
82
+ left: 10px;
83
+ font-size: 12px;
84
+ font-weight: bold;
85
+ cursor: auto;
86
+ }
87
+ }
88
+
89
+ div.fs-notice
90
+ {
91
+ &.updated,
92
+ &.success,
93
+ &.promotion
94
+ {
95
+ display: block !important;
96
+ }
97
+ }
98
+
99
+ .rtl .fs-notice
100
+ {
101
+ .fs-close
102
+ {
103
+ // left: 2px;
104
+ // right: auto;
105
+ // padding-right: 0;
106
+ // padding-left: 2px;
107
+ float: left;
108
+ }
109
+ }
110
+
111
+ .fs-secure-notice
112
+ {
113
+ position: fixed;
114
+ top: 32px;
115
+ left: 160px;
116
+ right: 0;
117
+ background: rgb(235, 253, 235);
118
+ padding: 10px 20px;
119
+ color: green;
120
+ z-index: 9999;
121
+ @include box-shadow(0 2px 2px rgba(6, 113, 6, 0.3));
122
+ @include opacity(0.95);
123
+
124
+ &:hover
125
+ {
126
+ @include opacity(1);
127
+ }
128
+
129
+ a.fs-security-proof
130
+ {
131
+ color: green;
132
+ text-decoration: none;
133
+ }
134
+ }
135
+
136
+ @media screen and (max-width: 960px) {
137
+ .fs-secure-notice
138
+ {
139
+ left: 36px;
140
+ }
141
+ }
142
+
143
+ @media screen and (max-width: 600px) {
144
+ .fs-secure-notice
145
+ {
146
+ display: none;
147
+ }
148
+ }
149
+
150
+ @media screen and (max-width: 500px) {
151
+ #fs_promo_tab
152
+ {
153
+ display: none;
154
+ }
155
+ }
156
+
157
+ @media screen and (max-width: 782px) {
158
+ .fs-secure-notice
159
+ {
160
+ left: 0;
161
+ top: 46px;
162
+ text-align: center;
163
+ }
164
+ }
165
+
166
+ span.fs-submenu-item.fs-sub:before
167
+ {
168
+ // Add small arrow.
169
+ content: '\21B3';
170
+ padding: 0 5px;
171
+ }
172
+
173
+ .rtl
174
+ {
175
+ span.fs-submenu-item.fs-sub:before
176
+ {
177
+ // Add small RTL arrow.
178
+ content: '\21B2';
179
+ }
180
+ }
181
+
182
+ .fs-submenu-item
183
+ {
184
+ &.pricing
185
+ {
186
+ &.upgrade-mode
187
+ {
188
+ color: greenyellow;
189
+ }
190
+
191
+ &.trial-mode
192
+ {
193
+ color: #83e2ff;
194
+ }
195
+ }
196
+ }
197
+
198
+ #adminmenu .update-plugins.fs-trial
199
+ {
200
+ background-color: #00b9eb;
201
+ }
202
+ .fs-ajax-spinner
203
+ {
204
+ border: 0;
205
+ width: 20px;
206
+ height: 20px;
207
+ margin-right: 5px;
208
+ vertical-align: sub;
209
+ display: inline-block;
210
+ background: url('/wp-admin/images/wpspin_light-2x.gif');
211
+ background-size: contain;
212
+ }
213
+
214
+ .wrap.fs-section {
215
+ h2 {
216
+ text-align: left;
217
+ }
218
+ }
219
+
220
+ @import "plugin-upgrade-notice";
freemius/assets/scss/admin/connect.scss ADDED
@@ -0,0 +1,548 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ $form_width: 480px;
4
+
5
+ #fs_connect
6
+ {
7
+ width: $form_width;
8
+ @include box-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
9
+ margin: 20px 0;
10
+
11
+ @media screen and (max-width: ($form_width - 1)) {
12
+ @include box-shadow(none);
13
+ width: auto;
14
+ margin: 0 0 0 -10px;
15
+ }
16
+
17
+ .fs-content
18
+ {
19
+ background: #fff;
20
+ padding: 15px 20px;
21
+
22
+ .fs-error {
23
+ background: snow;
24
+ color: $fs-logo-magenta-color;
25
+ border: 1px solid $fs-logo-magenta-color;
26
+ @include box-shadow(0 1px 1px 0 rgba(0,0,0,.1));
27
+ text-align: center;
28
+ padding: 5px;
29
+ margin-bottom: 10px;
30
+ }
31
+
32
+ p
33
+ {
34
+ margin: 0;
35
+ padding: 0;
36
+ font-size: 1.2em;
37
+ }
38
+ }
39
+
40
+ .fs-license-key-container {
41
+ position: relative;
42
+ width: 280px;
43
+ margin: 10px auto 0 auto;
44
+
45
+ input {
46
+ width: 100%;
47
+ }
48
+
49
+ .dashicons {
50
+ position: absolute;
51
+ top: 5px;
52
+ right: 5px;
53
+ }
54
+ }
55
+
56
+ &.require-license-key {
57
+ #sites_list_container {
58
+ td {
59
+ cursor: pointer;
60
+ }
61
+ }
62
+ }
63
+
64
+ #delegate_to_site_admins {
65
+ margin-right: 15px;
66
+ float: right;
67
+ height: 26px;
68
+ vertical-align: middle;
69
+ line-height: 37px;
70
+ font-weight: bold;
71
+ border-bottom: 1px dashed;
72
+ text-decoration: none;
73
+
74
+ &.rtl {
75
+ margin-left: 15px;
76
+ margin-right: 0;
77
+ }
78
+ }
79
+
80
+ .fs-actions
81
+ {
82
+ padding: 10px 20px;
83
+ background: #C0C7CA;
84
+
85
+ .button
86
+ {
87
+ padding: 0 10px 1px;
88
+ line-height: 35px;
89
+ height: 37px;
90
+ font-size: 16px;
91
+ margin-bottom: 0;
92
+
93
+ .dashicons
94
+ {
95
+ font-size: 37px;
96
+ margin-left: -8px;
97
+ margin-right: 12px;
98
+ }
99
+
100
+ &.button-primary
101
+ {
102
+ padding-right: 15px;
103
+ padding-left: 15px;
104
+
105
+ &:after
106
+ {
107
+ content: ' \279C';
108
+ }
109
+
110
+ &.fs-loading
111
+ {
112
+ &:after
113
+ {
114
+ content: '';
115
+ }
116
+ }
117
+ }
118
+
119
+ &.button-secondary
120
+ {
121
+ float: right;
122
+ }
123
+ }
124
+
125
+ // .fs-skip
126
+ // {
127
+ // line-height: 38px;
128
+ // vertical-align: middle;
129
+ // text-decoration: none;
130
+ // margin-left: 10px;
131
+ // }
132
+ }
133
+
134
+ &.fs-anonymous-disabled
135
+ {
136
+ .fs-actions
137
+ {
138
+ .button.button-primary
139
+ {
140
+ width: 100%;
141
+ }
142
+ }
143
+ }
144
+
145
+ .fs-permissions
146
+ {
147
+ padding: 10px 20px;
148
+ background: #FEFEFE;
149
+ // background: #F1F1F1;
150
+ @include transition(background 0.5s ease);
151
+
152
+ .fs-license-sync-disclaimer {
153
+ text-align: center;
154
+ margin-top: 0;
155
+ }
156
+
157
+ .fs-trigger
158
+ {
159
+ font-size: 0.9em;
160
+ text-decoration: none;
161
+ text-align: center;
162
+ display: block;
163
+ }
164
+
165
+ ul
166
+ {
167
+ height: 0;
168
+ overflow: hidden;
169
+ margin: 0;
170
+
171
+ li
172
+ {
173
+ margin-bottom: 12px;
174
+
175
+ &:last-child
176
+ {
177
+ margin-bottom: 0;
178
+ }
179
+
180
+ i.dashicons
181
+ {
182
+ float: left;
183
+ font-size: 40px;
184
+ width: 40px;
185
+ height: 40px;
186
+ }
187
+
188
+ div
189
+ {
190
+ margin-left: 55px;
191
+
192
+ span
193
+ {
194
+ font-weight: bold;
195
+ text-transform: uppercase;
196
+ color: #23282d;
197
+ }
198
+
199
+ p
200
+ {
201
+ margin: 2px 0 0 0;
202
+ }
203
+ }
204
+ }
205
+ }
206
+
207
+ &.fs-open
208
+ {
209
+ background: #fff;
210
+
211
+ ul
212
+ {
213
+ height: auto;
214
+ margin: 20px 20px 10px 20px;
215
+ }
216
+ }
217
+
218
+ @media screen and (max-width: ($form_width - 1)) {
219
+ background: #fff;
220
+
221
+ .fs-trigger
222
+ {
223
+ display: none;
224
+ }
225
+
226
+ ul
227
+ {
228
+ height: auto;
229
+ margin: 20px;
230
+ }
231
+ }
232
+ }
233
+
234
+ .fs-freemium-licensing {
235
+ padding: 8px;
236
+ // background: #0085BA;
237
+ background: #777;
238
+ color: #fff;
239
+
240
+ p {
241
+ text-align: center;
242
+ display: block;
243
+ margin: 0;
244
+ padding: 0;
245
+ }
246
+
247
+ a {
248
+ color: #C2EEFF;
249
+ text-decoration: underline;
250
+ }
251
+ }
252
+
253
+ $icon_size: 80px;
254
+ $wp_logo_padding: $icon_size / 10;
255
+ $icons_top: 10px;
256
+
257
+ .fs-visual
258
+ {
259
+ padding: 12px;
260
+ line-height: 0;
261
+ background: #fafafa;
262
+ height: $icon_size;
263
+ position: relative;
264
+
265
+ .fs-site-icon
266
+ {
267
+ position: absolute;
268
+ left: 20px;
269
+ top: $icons_top;
270
+ }
271
+
272
+ .fs-connect-logo
273
+ {
274
+ position: absolute;
275
+ right: 20px;
276
+ top: $icons_top;
277
+ }
278
+
279
+ .fs-plugin-icon
280
+ {
281
+ position: absolute;
282
+ top: $icons_top;
283
+ left: 50%;
284
+ margin-left: - ($icon_size / 2);
285
+ }
286
+
287
+ .fs-plugin-icon,
288
+ .fs-site-icon,
289
+ img,
290
+ object
291
+ {
292
+ width: $icon_size;
293
+ height: $icon_size;
294
+ }
295
+
296
+ .dashicons-wordpress
297
+ {
298
+ font-size: $icon_size - ($wp_logo_padding * 2);
299
+ background: $wordpress_color;
300
+ color: #fff;
301
+ width: $icon_size - ($wp_logo_padding * 2);
302
+ height: $icon_size - ($wp_logo_padding * 2);
303
+ padding: $wp_logo_padding;
304
+ }
305
+
306
+ .dashicons-plus
307
+ {
308
+ position: absolute;
309
+ top: 50%;
310
+ font-size: 30px;
311
+ margin-top: -10px;
312
+ color: #bbb;
313
+
314
+ &.fs-first
315
+ {
316
+ left: 28%;
317
+ }
318
+ &.fs-second
319
+ {
320
+ left: 65%;
321
+ }
322
+ }
323
+
324
+ .fs-plugin-icon,
325
+ .fs-connect-logo,
326
+ .fs-site-icon
327
+ {
328
+ border: 1px solid #ccc;
329
+ padding: 1px;
330
+ background: #fff;
331
+ }
332
+ }
333
+
334
+ .fs-terms
335
+ {
336
+ text-align: center;
337
+ font-size: 0.85em;
338
+ padding: 5px;
339
+ background: rgba(0, 0, 0, 0.05);
340
+
341
+ &, a
342
+ {
343
+ color: #999;
344
+ }
345
+
346
+ a
347
+ {
348
+ text-decoration: none;
349
+ }
350
+ }
351
+ }
352
+
353
+ @import "multisite-options";
354
+ @import "tooltip";
355
+ @import "gdpr-consent";
356
+
357
+ .rtl
358
+ {
359
+ #fs_connect
360
+ {
361
+ .fs-actions
362
+ {
363
+ padding: 10px 20px;
364
+ background: #C0C7CA;
365
+
366
+ .button
367
+ {
368
+ .dashicons
369
+ {
370
+ font-size: 37px;
371
+ margin-left: -8px;
372
+ margin-right: 12px;
373
+ }
374
+
375
+ &.button-primary
376
+ {
377
+ &:after
378
+ {
379
+ content: ' \000bb';
380
+ }
381
+
382
+ &.fs-loading
383
+ {
384
+ &:after
385
+ {
386
+ content: '';
387
+ }
388
+ }
389
+ }
390
+
391
+ &.button-secondary
392
+ {
393
+ float: left;
394
+ }
395
+ }
396
+ }
397
+
398
+ .fs-permissions
399
+ {
400
+ ul
401
+ {
402
+ li
403
+ {
404
+ div
405
+ {
406
+ margin-right: 55px;
407
+ margin-left: 0;
408
+ }
409
+
410
+ i.dashicons
411
+ {
412
+ float: right;
413
+ }
414
+
415
+ }
416
+ }
417
+ }
418
+
419
+ .fs-visual
420
+ {
421
+ .fs-site-icon
422
+ {
423
+ right: 20px;
424
+ left: auto;
425
+ }
426
+
427
+ .fs-connect-logo
428
+ {
429
+ right: auto;
430
+ left: 20px;
431
+ }
432
+ }
433
+ }
434
+ }
435
+
436
+ #fs_theme_connect_wrapper {
437
+ position: fixed;
438
+ top: 0;
439
+ height: 100%;
440
+ width: 100%;
441
+ z-index: 99990;
442
+ background: rgba(0, 0, 0, 0.75);
443
+ text-align: center;
444
+ overflow-y: auto;
445
+
446
+ &:before {
447
+ content: "";
448
+ display: inline-block;
449
+ vertical-align: middle;
450
+ height: 100%;
451
+ }
452
+
453
+ > button.close {
454
+ color: white;
455
+ cursor: pointer;
456
+ height: 40px;
457
+ width: 40px;
458
+ position: absolute;
459
+ right: 0;
460
+ border: 0;
461
+ background-color: transparent;
462
+ top: 32px;
463
+ }
464
+
465
+ #fs_connect {
466
+ top: 0;
467
+ text-align: left;
468
+ display: inline-block;
469
+ vertical-align: middle;
470
+ margin-top: 52px;
471
+ margin-bottom: 20px;
472
+
473
+ .fs-terms
474
+ {
475
+ background: rgba(140, 140, 140, 0.64);
476
+
477
+ &, a
478
+ {
479
+ color: #c5c5c5;
480
+ }
481
+ }
482
+ }
483
+ }
484
+
485
+ .wp-pointer-content
486
+ {
487
+ #fs_connect
488
+ {
489
+ margin: 0;
490
+ @include box-shadow(none);
491
+ }
492
+ }
493
+
494
+ .fs-opt-in-pointer
495
+ {
496
+ .wp-pointer-content
497
+ {
498
+ padding: 0;
499
+ }
500
+
501
+ &.wp-pointer-top
502
+ {
503
+ .wp-pointer-arrow
504
+ {
505
+ border-bottom-color: #dfdfdf;
506
+ }
507
+ .wp-pointer-arrow-inner
508
+ {
509
+ border-bottom-color: #fafafa;
510
+ }
511
+ }
512
+
513
+ &.wp-pointer-bottom
514
+ {
515
+ .wp-pointer-arrow
516
+ {
517
+ border-top-color: #dfdfdf;
518
+ }
519
+ .wp-pointer-arrow-inner
520
+ {
521
+ border-top-color: #fafafa;
522
+ }
523
+ }
524
+
525
+ &.wp-pointer-left
526
+ {
527
+ .wp-pointer-arrow
528
+ {
529
+ border-right-color: #dfdfdf;
530
+ }
531
+ .wp-pointer-arrow-inner
532
+ {
533
+ border-right-color: #fafafa;
534
+ }
535
+ }
536
+
537
+ &.wp-pointer-right
538
+ {
539
+ .wp-pointer-arrow
540
+ {
541
+ border-left-color: #dfdfdf;
542
+ }
543
+ .wp-pointer-arrow-inner
544
+ {
545
+ border-left-color: #fafafa;
546
+ }
547
+ }
548
+ }
freemius/assets/scss/admin/debug.scss ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ .switch
4
+ {
5
+ position: relative;
6
+ display: inline-block;
7
+ font-size: 1.6em;
8
+ font-weight: bold;
9
+ color: #ccc;
10
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
11
+ height: 18px;
12
+ padding: 6px 6px 5px 6px;
13
+ border: 1px solid #ccc;
14
+ border: 1px solid rgba(0, 0, 0, 0.2);
15
+ border-radius: 4px;
16
+ background: #ececec;
17
+ box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
18
+ cursor: pointer;
19
+
20
+ span
21
+ {
22
+ display: inline-block; width: 35px;
23
+ text-transform: uppercase;
24
+
25
+ &.on
26
+ {
27
+ color: $button-primary-bkg;
28
+ }
29
+ }
30
+
31
+ .toggle
32
+ {
33
+ position: absolute;
34
+ top: 1px;
35
+ width: 37px;
36
+ height: 25px;
37
+ border: 1px solid #ccc;
38
+ border: 1px solid rgba(0, 0, 0, 0.3);
39
+ border-radius: 4px;
40
+ background: #fff;
41
+ background: -moz-linear-gradient(top, #ececec 0%, #fff 100%);
42
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ececec), color-stop(100%, #fff));
43
+ background: -webkit-linear-gradient(top, #ececec 0%, #fff 100%);
44
+ background: -o-linear-gradient(top, #ececec 0%, #fff 100%);
45
+ background: -ms-linear-gradient(top, #ececec 0%, #fff 100%);
46
+ background: linear-gradient(top, #ececec 0%, #fff 100%);
47
+ box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
48
+ z-index: 999;
49
+ @include transition(all 0.15s ease-in-out);
50
+ }
51
+
52
+ &.on .toggle
53
+ {
54
+ left: 2%;
55
+ }
56
+ &.off .toggle
57
+ {
58
+ left: 54%;
59
+ }
60
+
61
+ /* Round switch */
62
+ &.round
63
+ {
64
+ padding: 0px 20px;
65
+ border-radius: 40px;
66
+
67
+ .toggle
68
+ {
69
+ border-radius: 40px;
70
+ width: 14px;
71
+ height: 14px;
72
+ }
73
+
74
+ &.on .toggle
75
+ {
76
+ left: 3%;
77
+ background: $button-primary-bkg;
78
+ }
79
+ &.off .toggle
80
+ {
81
+ left: 58%;
82
+ }
83
+ }
84
+ }
85
+
86
+ .switch-label
87
+ {
88
+ font-size: 20px;
89
+ line-height: 31px;
90
+ margin: 0 5px;
91
+ }
92
+
93
+ #fs_log_book {
94
+ table {
95
+ font-family: Consolas,Monaco,monospace;
96
+ font-size: 12px;
97
+
98
+ th {
99
+ color: #ccc;
100
+ }
101
+
102
+ tr {
103
+ background: #232525;
104
+
105
+ &.alternate {
106
+ background: #2b2b2b;
107
+ }
108
+
109
+ td {
110
+ &.fs-col--logger {
111
+ color: #5a7435;
112
+ }
113
+ &.fs-col--type {
114
+ color: #ffc861;
115
+ }
116
+ &.fs-col--function {
117
+ color: #a7b7b1;
118
+ font-weight: bold;
119
+ }
120
+ &.fs-col--message {
121
+ &, a
122
+ {
123
+ color: #9a73ac !important;
124
+ }
125
+ }
126
+ &.fs-col--file {
127
+ color: #d07922;
128
+ }
129
+ &.fs-col--timestamp {
130
+ color: #6596be;
131
+ }
132
+ }
133
+ }
134
+ }
135
+ }
freemius/assets/scss/admin/dialog-boxes.scss ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "modal-common";
3
+ @import "deactivation-feedback";
4
+ @import "subscription-cancellation";
5
+ @import "license-activation";
6
+ @import "multisite-options";
7
+ @import "license-key-resend";
8
+ @import "ajax-loader";
9
+ @import "auto-install";
10
+ @import "buttons";
freemius/assets/scss/admin/gdpr-optin-notice.scss ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-notice[data-id^="gdpr_optin_actions"]
2
+ {
3
+ .underlined {
4
+ text-decoration: underline;
5
+ }
6
+
7
+ ul {
8
+ .button, .action-description {
9
+ vertical-align: middle;
10
+ }
11
+
12
+ .action-description {
13
+ display: inline-block;
14
+ margin-left: 3px;
15
+ }
16
+ }
17
+ }
freemius/assets/scss/admin/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ // Hide file structure from users on unprotected servers.
freemius/assets/scss/customizer.scss ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "start";
2
+
3
+ #fs_customizer_upsell {
4
+ .fs-customizer-plan {
5
+ padding: 10px 20px 20px 20px;
6
+ border-radius: 3px;
7
+ background: #fff;
8
+
9
+ h2 {
10
+ position: relative;
11
+ margin: 0;
12
+ line-height: 2em;
13
+ text-transform: uppercase;
14
+
15
+ .button-link {
16
+ top: -2px;
17
+ }
18
+ }
19
+ }
20
+
21
+ .fs-feature {
22
+ position: relative;
23
+ }
24
+
25
+ .dashicons-yes {
26
+ color: #0085ba;
27
+ font-size: 2em;
28
+ vertical-align: bottom;
29
+ margin-left: -7px;
30
+ margin-right: 10px;
31
+
32
+ .rtl & {
33
+ margin-left: 10px;
34
+ margin-right: -7px;
35
+ }
36
+ }
37
+
38
+ .dashicons-editor-help
39
+ {
40
+ color: #bbb;
41
+ cursor: help;
42
+
43
+ $tooltip-color: #000;
44
+
45
+ .fs-feature-desc {
46
+ opacity: 0;
47
+ visibility: hidden;
48
+ @include transition(opacity 0.3s ease-in-out);
49
+
50
+ position: absolute;
51
+ background: $tooltip-color;
52
+ color: #fff;
53
+ font-family: 'arial', serif;
54
+ font-size: 12px;
55
+ padding: 10px;
56
+ z-index: 999999;
57
+ bottom: 100%;
58
+ margin-bottom: 5px;
59
+ left: 0;
60
+ right: 0;
61
+ @include border-radius(5px);
62
+ @include box-shadow(1px 1px 1px rgba(0,0,0,0.2));
63
+ line-height: 1.3em;
64
+ font-weight: bold;
65
+ text-align: left;
66
+
67
+ .rtl &
68
+ {
69
+ text-align: right;
70
+ }
71
+
72
+ &::after {
73
+ content: ' ';
74
+ display: block;
75
+ width: 0;
76
+ height: 0;
77
+ border-style: solid;
78
+ border-width: 5px 5px 0 5px;
79
+ border-color: $tooltip-color transparent transparent transparent;
80
+ position: absolute;
81
+ top: 100%;
82
+ left: 21px;
83
+
84
+ .rtl & {
85
+ right: 21px;
86
+ left: auto;
87
+ }
88
+ }
89
+ }
90
+
91
+ &:hover {
92
+ .fs-feature-desc {
93
+ visibility: visible;
94
+ opacity: 1;
95
+ }
96
+ }
97
+ }
98
+
99
+ .button-primary {
100
+ display: block;
101
+ text-align: center;
102
+ margin-top: 10px;
103
+ }
104
+ }
105
+
106
+ #fs_customizer_support
107
+ {
108
+ display: block !important;
109
+
110
+ .button {
111
+ float: right;
112
+ }
113
+
114
+ .button-group {
115
+ width: 100%;
116
+ display: block;
117
+ margin-top: 10px;
118
+
119
+ .button {
120
+ float: none;
121
+ width: 50%;
122
+ text-align: center;
123
+ }
124
+ }
125
+ }
freemius/assets/scss/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ // Hide file structure from users on unprotected servers.
freemius/config.php CHANGED
@@ -204,7 +204,7 @@
204
  #--------------------------------------------------------------------------------
205
 
206
  if ( ! defined( 'WP_FS__API_ADDRESS_LOCALHOST' ) ) {
207
- define( 'WP_FS__API_ADDRESS_LOCALHOST', 'http://api.freemius:8080' );
208
  }
209
  if ( ! defined( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST' ) ) {
210
  define( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST', 'http://sandbox-api.freemius:8080' );
204
  #--------------------------------------------------------------------------------
205
 
206
  if ( ! defined( 'WP_FS__API_ADDRESS_LOCALHOST' ) ) {
207
+ define( 'WP_FS__API_ADDRESS_LOCALHOST', 'http://api.freemius-local.com:8080' );
208
  }
209
  if ( ! defined( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST' ) ) {
210
  define( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST', 'http://sandbox-api.freemius:8080' );
freemius/includes/class-freemius.php CHANGED
@@ -1265,6 +1265,26 @@
1265
  add_action( 'plugins_loaded', array( &$this, '_hook_action_links_and_register_account_hooks' ) );
1266
 
1267
  if ( $this->is_plugin() ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1268
  $plugin_dir = dirname( $this->_plugin_dir_path ) . '/';
1269
 
1270
  /**
@@ -1432,6 +1452,84 @@
1432
  }
1433
  }
1434
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1435
  /**
1436
  * Keeping the uninstall hook registered for free or premium plugin version may result to a fatal error that
1437
  * could happen when a user tries to uninstall either version while one of them is still active. Uninstalling a
@@ -1539,22 +1637,10 @@
1539
  ( $this->is_theme() && self::is_themes_page() )
1540
  ) {
1541
  add_action( 'admin_footer', array( &$this, '_add_deactivation_feedback_dialog_box' ) );
1542
-
1543
- if ( $this->is_plugin() ) {
1544
- add_action( 'admin_enqueue_scripts', array( &$this, '_enqueue_plugin_upgrade_notice_style' ) );
1545
- }
1546
  }
1547
  }
1548
  }
1549
 
1550
- /**
1551
- * @author Leo Fajardo (@leorw)
1552
- * @since 2.1.4
1553
- */
1554
- function _enqueue_plugin_upgrade_notice_style() {
1555
- fs_enqueue_local_style( 'fs_plugin_upgrade_notice', '/admin/plugin-upgrade-notice.css' );
1556
- }
1557
-
1558
  /**
1559
  * Leverage backtrace to find caller plugin file path.
1560
  *
@@ -1670,7 +1756,7 @@
1670
 
1671
  return fs_normalize_path( trailingslashit( $is_plugin ?
1672
  WP_PLUGIN_DIR :
1673
- get_theme_root() ) );
1674
  }
1675
 
1676
  /**
@@ -1757,7 +1843,7 @@
1757
  $caller_file_candidate = false;
1758
  $caller_map = array();
1759
  $module_type = WP_FS__MODULE_TYPE_PLUGIN;
1760
- $themes_dir = fs_normalize_path( get_theme_root() );
1761
 
1762
  for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) {
1763
  if ( empty( $bt[ $i ]['file'] ) ) {
@@ -2535,6 +2621,10 @@
2535
  $active_basenames = get_option( 'active_plugins' );
2536
  }
2537
 
 
 
 
 
2538
  if ( is_multisite() ) {
2539
  $network_active_basenames = get_site_option( 'active_sitewide_plugins' );
2540
 
@@ -2586,6 +2676,11 @@
2586
  get_option( 'active_plugins' );
2587
 
2588
  $active = array();
 
 
 
 
 
2589
  foreach ( $active_basenames as $basename ) {
2590
  $active[ $basename ] = array(
2591
  'is_active' => true,
@@ -2886,6 +2981,10 @@
2886
  * @since 1.1.7.3
2887
  */
2888
  static function _toggle_debug_mode() {
 
 
 
 
2889
  $is_on = fs_request_get( 'is_on', false, 'post' );
2890
 
2891
  if ( fs_request_is_post() && in_array( $is_on, array( 0, 1 ) ) ) {
@@ -2917,8 +3016,16 @@
2917
  * @since 1.2.1.7
2918
  */
2919
  static function _get_db_option() {
 
 
2920
  $option_name = fs_request_get( 'option_name' );
2921
 
 
 
 
 
 
 
2922
  $value = get_option( $option_name );
2923
 
2924
  $result = array(
@@ -2941,7 +3048,16 @@
2941
  * @since 1.2.1.7
2942
  */
2943
  static function _set_db_option() {
2944
- $option_name = fs_request_get( 'option_name' );
 
 
 
 
 
 
 
 
 
2945
  $option_value = fs_request_get( 'option_value' );
2946
 
2947
  if ( ! empty( $option_value ) ) {
@@ -4180,6 +4296,7 @@
4180
  */
4181
  if ( $this->is_user_in_admin() &&
4182
  'plugin-information' === fs_request_get( 'tab', false ) &&
 
4183
  (
4184
  ( $this->is_addon() && $this->get_slug() == fs_request_get( 'plugin', false ) ) ||
4185
  ( $this->has_addons() && $this->get_id() == fs_request_get( 'parent_plugin_id', false ) )
@@ -4301,7 +4418,21 @@
4301
  * @author Vova Feldman
4302
  * @since 1.2.1.6
4303
  */
4304
- if ( $this->is_premium() && $this->has_release_on_freemius() ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4305
  FS_Plugin_Updater::instance( $this );
4306
  }
4307
 
@@ -4344,6 +4475,30 @@
4344
  }
4345
  }
4346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4347
  /**
4348
  * @author Leo Fajardo (@leorw)
4349
  *
@@ -4796,6 +4951,7 @@
4796
  'premium_suffix' => $premium_suffix,
4797
  'is_live' => $this->get_bool_option( $plugin_info, 'is_live', true ),
4798
  'affiliate_moderation' => $this->get_option( $plugin_info, 'has_affiliation' ),
 
4799
  ) );
4800
 
4801
  if ( $plugin->is_updated() ) {
@@ -5615,6 +5771,20 @@
5615
  $this->_storage->store( "{$name}_timestamp", time() );
5616
  }
5617
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5618
  /**
5619
  * Check if cron was executed in the last $period of seconds.
5620
  *
@@ -5629,7 +5799,7 @@
5629
  private function is_cron_executed( $name, $period = WP_FS__TIME_24_HOURS_IN_SEC ) {
5630
  $this->_logger->entrance( $name );
5631
 
5632
- $last_execution = $this->set_cron_execution_timestamp( $name );
5633
 
5634
  if ( ! is_numeric( $last_execution ) ) {
5635
  return false;
@@ -5897,7 +6067,7 @@
5897
  $this->switch_to_blog( $blog_ids[0] );
5898
  }
5899
 
5900
- call_user_func_array( $callable, array( $blog_ids ) );
5901
 
5902
  foreach ( $blog_ids as $blog_id ) {
5903
  $this->do_action( "after_{$name}_cron", $blog_id );
@@ -5978,13 +6148,16 @@
5978
  * @author Vova Feldman (@svovaf)
5979
  * @since 2.0.0
5980
  *
5981
- * @param int[] $blog_ids
 
 
 
5982
  */
5983
- function _sync_cron_method( array $blog_ids ) {
5984
  if ( $this->is_registered() ) {
5985
  if ( $this->has_paid_plan() ) {
5986
  // Initiate background plan sync.
5987
- $this->_sync_license( true );
5988
 
5989
  if ( $this->is_paying() ) {
5990
  // Check for premium plugin updates.
@@ -6199,9 +6372,10 @@
6199
  * @author Vova Feldman (@svovaf)
6200
  * @since 2.0.0
6201
  *
6202
- * @param int[] $blog_ids
 
6203
  */
6204
- function _sync_install_cron_method( array $blog_ids ) {
6205
  if ( $this->is_registered() ) {
6206
  if ( 1 < count( $blog_ids ) ) {
6207
  $this->sync_installs( array(), true );
@@ -6898,7 +7072,7 @@
6898
  if (
6899
  $is_premium_version_activation &&
6900
  (
6901
- $this->is_anonymous() ||
6902
  (
6903
  $this->is_registered() &&
6904
  ! $this->is_trial() &&
@@ -7831,38 +8005,43 @@
7831
  $include_plugins = true,
7832
  $include_themes = true
7833
  ) {
7834
- /**
7835
- * @since 1.1.8 Also send plugin updates.
7836
- */
7837
- if ( $include_plugins && ! isset( $override['plugins'] ) ) {
7838
- $plugins = $this->get_plugins_data_for_api();
7839
- if ( ! empty( $plugins ) ) {
7840
- $override['plugins'] = $plugins;
 
 
7841
  }
7842
  }
7843
- /**
7844
- * @since 1.1.8 Also send themes updates.
7845
- */
7846
- if ( $include_themes && ! isset( $override['themes'] ) ) {
7847
- $themes = $this->get_themes_data_for_api();
7848
- if ( ! empty( $themes ) ) {
7849
- $override['themes'] = $themes;
 
 
 
7850
  }
7851
  }
7852
 
7853
  $versions = $this->get_versions();
7854
 
7855
  return array_merge( $versions, array(
7856
- 'version' => $this->get_plugin_version(),
7857
- 'is_premium' => $this->is_premium(),
7858
- 'language' => get_bloginfo( 'language' ),
7859
- 'charset' => get_bloginfo( 'charset' ),
7860
- 'title' => get_bloginfo( 'name' ),
7861
- 'url' => get_site_url(),
7862
  // Special params.
7863
- 'is_active' => true,
7864
- 'is_disconnected' => $this->is_tracking_prohibited(),
7865
- 'is_uninstalled' => false,
7866
  ), $override );
7867
  }
7868
 
@@ -8064,28 +8243,56 @@
8064
  $params = $this->get_install_diff_for_api( $check_properties, $this->_site, $override );
8065
  }
8066
 
8067
- if ( 0 < count( $params ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8068
  if ( ! is_multisite() ) {
8069
  // Update last install sync timestamp.
8070
  $this->set_cron_execution_timestamp( 'install_sync' );
8071
  }
8072
 
8073
  $params['uid'] = $this->get_anonymous_id();
 
8074
 
8075
- // Send updated values to FS.
8076
- $site = $this->get_api_site_scope()->call( '/', 'put', $params );
8077
 
8078
- if ( $this->is_api_result_entity( $site ) ) {
8079
- if ( ! is_multisite() ) {
8080
- // I successfully sent install update, clear scheduled sync if exist.
8081
- $this->clear_install_sync_cron();
8082
- }
8083
- }
8084
 
8085
- return $site;
 
 
 
 
 
 
 
 
 
 
8086
  }
8087
 
8088
- return false;
8089
  }
8090
 
8091
  /**
@@ -8104,24 +8311,70 @@
8104
 
8105
  $installs_data = $this->get_installs_data_for_api( $override, ! $flush );
8106
 
 
8107
  if ( empty( $installs_data ) ) {
8108
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8109
  }
8110
 
8111
- // Update last install sync timestamp.
8112
- $this->set_cron_execution_timestamp( 'install_sync' );
 
 
 
 
 
 
 
 
 
 
8113
 
8114
  // Send updated values to FS.
8115
  $result = $this->get_api_user_scope()->call( "/plugins/{$this->_plugin->id}/installs.json", 'put', $installs_data );
8116
 
8117
- if ( $this->is_api_result_object( $result, 'installs' ) ) {
8118
- // I successfully sent installs update, clear scheduled sync if exist.
8119
  $this->clear_install_sync_cron();
8120
  }
8121
 
8122
  return $result;
8123
  }
8124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8125
  /**
8126
  * Update install only if changed.
8127
  *
@@ -8552,6 +8805,18 @@
8552
  return $this->_plugin->id;
8553
  }
8554
 
 
 
 
 
 
 
 
 
 
 
 
 
8555
  /**
8556
  * @author Vova Feldman (@svovaf)
8557
  * @since 1.2.1.5
@@ -9372,11 +9637,16 @@
9372
  * @return bool
9373
  */
9374
  function is_premium() {
9375
- if (! isset($this->_plugin->is_premium)) {
9376
- return false;
9377
- }
9378
-
9379
- return $this->_plugin->is_premium;
 
 
 
 
 
9380
  }
9381
 
9382
  /**
@@ -10652,7 +10922,7 @@
10652
  return true;
10653
  }
10654
 
10655
- return ( 1 === count( $this->_plans ) );
10656
  }
10657
 
10658
  /**
@@ -11104,6 +11374,18 @@
11104
  if ( false !== $error ) {
11105
  $result['error'] = $error;
11106
  } else {
 
 
 
 
 
 
 
 
 
 
 
 
11107
  $result['next_page'] = $next_page;
11108
  }
11109
 
@@ -11351,6 +11633,34 @@
11351
  static function get_current_page() {
11352
  if ( ! isset( self::$_pagenow ) ) {
11353
  global $pagenow;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11354
 
11355
  self::$_pagenow = $pagenow;
11356
 
@@ -11382,6 +11692,16 @@
11382
  return ( 'plugins.php' === self::get_current_page() );
11383
  }
11384
 
 
 
 
 
 
 
 
 
 
 
11385
  /**
11386
  * @author Leo Fajardo (@leorw)
11387
  * @since 2.0.2
@@ -11706,11 +12026,11 @@
11706
  $params['trial'] = 'true';
11707
  }
11708
 
11709
- if ( $this->is_addon() ) {
11710
- return $this->_parent->addon_url( $this->_slug );
11711
- }
11712
 
11713
- return $this->_get_admin_page_url( 'pricing', $params );
11714
  }
11715
 
11716
  /**
@@ -12519,7 +12839,7 @@
12519
 
12520
  self::$_accounts->set_site_blog_context( $blog_id );
12521
  $this->_storage->set_site_blog_context( $blog_id );
12522
- $this->_storage->set_network_active( true, $this->is_delegated_connection( $blog_id ) );
12523
 
12524
  $this->_site = is_object( $install ) ?
12525
  $install :
@@ -16234,6 +16554,95 @@
16234
  self::$_accounts->set_option( 'account_addons', $all_addons, $store );
16235
  }
16236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16237
  /**
16238
  * Store account params in the Database.
16239
  *
@@ -16833,8 +17242,11 @@
16833
  * the admin.
16834
  * @param bool $is_context_single_site @since 2.0.0. This is used when syncing a license for a single install from the
16835
  * network-level "Account" page.
 
 
 
16836
  */
16837
- private function _sync_license( $background = false, $is_context_single_site = false ) {
16838
  $this->_logger->entrance();
16839
 
16840
  $plugin_id = fs_request_get( 'plugin_id', $this->get_id() );
@@ -16844,7 +17256,7 @@
16844
  if ( $is_addon_sync ) {
16845
  $this->_sync_addon_license( $plugin_id, $background );
16846
  } else {
16847
- $this->_sync_plugin_license( $background, true, $is_context_single_site );
16848
  }
16849
 
16850
  $this->do_action( 'after_account_plan_sync', $this->get_plan_name() );
@@ -16934,11 +17346,15 @@
16934
  * @param bool $is_context_single_site Since 2.0.0. This is used when sending an update for a single install and
16935
  * syncing its license from the network-level "Account" page (e.g.: after
16936
  * activating a license only for the single install).
 
 
 
16937
  */
16938
  private function _sync_plugin_license(
16939
  $background = false,
16940
  $send_installs_update = true,
16941
- $is_context_single_site = false
 
16942
  ) {
16943
  $this->_logger->entrance();
16944
 
@@ -16955,6 +17371,16 @@
16955
  * @todo This line will execute install sync on a daily basis, even if running the free version (for opted-in users). The reason we want to keep it that way is for cases when the user was a paying customer, then there was a failure in subscription payment, and then after some time the payment was successful. This could be heavily optimized. For example, we can skip the $flush if the current install was never associated with a paid version.
16956
  */
16957
  if ( $is_site_level_sync ) {
 
 
 
 
 
 
 
 
 
 
16958
  $result = $this->send_install_update( array(), true );
16959
  $is_valid = $this->is_api_result_entity( $result );
16960
  } else {
@@ -16983,7 +17409,7 @@
16983
  if ( ! self::$_global_admin_notices->has_sticky( 'api_blocked' ) ) {
16984
  self::$_global_admin_notices->add(
16985
  sprintf(
16986
- $this->get_text_x_inline( 'Your server is blocking the access to Freemius\' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s', '%1s - plugin title, %2s - API domain', 'server-blocking-access' ),
16987
  $this->get_plugin_name(),
16988
  '<a href="' . $api->get_url() . '" target="_blank">' . $api->get_url() . '</a>'
16989
  ) . '<br> ' . $this->get_text_inline( 'Error received from the server:', 'server-error-message' ) . var_export( $result->error, true ),
@@ -17127,6 +17553,18 @@
17127
  */
17128
  $this->_update_site_license( $new_license );
17129
 
 
 
 
 
 
 
 
 
 
 
 
 
17130
  if ( ! $is_context_single_site &&
17131
  fs_is_network_admin() &&
17132
  $this->_is_network_active &&
@@ -17426,6 +17864,18 @@
17426
 
17427
  $this->_store_account();
17428
 
 
 
 
 
 
 
 
 
 
 
 
 
17429
  if ( ! $background ) {
17430
  $this->_admin_notices->add_sticky(
17431
  $this->get_text_inline( 'Your license was successfully activated.', 'license-activated-message' ) .
@@ -18357,7 +18807,7 @@
18357
  if ( ! isset( $result->error ) ) {
18358
  $this->_admin_notices->add( sprintf(
18359
  $this->get_text_inline( 'Verification mail was just sent to %s. If you can\'t find it after 5 min, please check your spam box.', 'verification-email-sent-message' ),
18360
- sprintf( '<a href="mailto:%1s">%2s</a>', esc_url( $this->_user->email ), $this->_user->email )
18361
  ) );
18362
  } else {
18363
  // handle different error cases.
@@ -18416,7 +18866,9 @@
18416
  */
18417
  function get_after_activation_url( $filter, $params = array(), $network = null ) {
18418
  if ( $this->is_free_wp_org_theme() &&
18419
- fs_request_has( 'pending_activation' )
 
 
18420
  ) {
18421
  $first_time_path = '';
18422
  } else {
@@ -19559,7 +20011,9 @@
19559
  function _add_upgrade_action_link() {
19560
  $this->_logger->entrance();
19561
 
19562
- if ( ! $this->is_paying() && $this->has_paid_plan() ) {
 
 
19563
  $this->add_plugin_action_link(
19564
  $this->get_text_inline( 'Upgrade', 'upgrade' ),
19565
  $this->get_upgrade_url(),
@@ -19569,7 +20023,9 @@
19569
  );
19570
  }
19571
 
19572
- if ( $this->has_addons() ) {
 
 
19573
  $this->add_plugin_action_link(
19574
  $this->get_text_inline( 'Add-Ons', 'add-ons' ),
19575
  $this->_get_admin_page_url( 'addons' ),
@@ -19908,8 +20364,8 @@
19908
  $premium_plugin_basename = $this->premium_plugin_basename();
19909
 
19910
  return sprintf(
19911
- /* translators: %1s: Product title; %2s: Plan title */
19912
- $this->get_text_inline( ' The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s', 'activate-premium-version' ),
19913
  sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
19914
  $plan_title,
19915
  sprintf(
@@ -20725,13 +21181,19 @@
20725
 
20726
  // Locate the main assets folder.
20727
  if ( 1 < count( $fs_active_plugins->plugins ) ) {
20728
- $plugin_or_theme_img_dir = ( $this->is_plugin() ? WP_PLUGIN_DIR : get_theme_root() );
20729
 
20730
  foreach ( $fs_active_plugins->plugins as $sdk_path => &$data ) {
20731
  if ( $data->plugin_path == $this->get_plugin_basename() ) {
20732
  $img_dir = $plugin_or_theme_img_dir
20733
  . '/'
20734
- . str_replace( '../themes/', '', $sdk_path )
 
 
 
 
 
 
20735
  . '/assets/img';
20736
 
20737
  break;
1265
  add_action( 'plugins_loaded', array( &$this, '_hook_action_links_and_register_account_hooks' ) );
1266
 
1267
  if ( $this->is_plugin() ) {
1268
+ if ( self::is_plugin_install_page() && true !== fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) {
1269
+ /**
1270
+ * Unless the `fs_allow_updater_and_dialog` URL param exists and its value is `true`, make
1271
+ * Freemius-related updates unavailable on the "Add Plugins" admin page (/plugin-install.php)
1272
+ * so that they won't interfere with the .org plugins' functionalities on that page (e.g.
1273
+ * updating of a .org plugin).
1274
+ */
1275
+ add_filter( 'site_transient_update_plugins', array( 'Freemius', '_remove_fs_updates_from_plugin_install_page' ), 10, 2 );
1276
+ } else if ( self::is_plugins_page() || self::is_updates_page() ) {
1277
+ /**
1278
+ * On the "Plugins" and "Updates" admin pages, if there are premium or non–org-compliant
1279
+ * plugins, modify their details dialog URLs (add a Freemius-specific param) so that the SDK can
1280
+ * determine if the plugin information dialog should show information from Freemius.
1281
+ *
1282
+ * @author Leo Fajardo (@leorw)
1283
+ * @since 2.2.3
1284
+ */
1285
+ add_action( 'admin_footer', array( 'Freemius', '_prepend_fs_allow_updater_and_dialog_flag_url_param' ) );
1286
+ }
1287
+
1288
  $plugin_dir = dirname( $this->_plugin_dir_path ) . '/';
1289
 
1290
  /**
1452
  }
1453
  }
1454
 
1455
+ /**
1456
+ * Makes Freemius-related updates unavailable on the "Add Plugins" admin page (/plugin-install.php) so that
1457
+ * they won't interfere with the .org plugins' functionalities on that page (e.g. updating of a .org plugin).
1458
+ *
1459
+ * @author Leo Fajardo (@leorw)
1460
+ * @since 2.2.3
1461
+ *
1462
+ * @param object $updates
1463
+ * @param string|null $transient
1464
+ *
1465
+ * @return object
1466
+ */
1467
+ static function _remove_fs_updates_from_plugin_install_page( $updates, $transient = null ) {
1468
+ if ( is_object( $updates ) && isset( $updates->response ) ) {
1469
+ foreach ( $updates->response as $file => $plugin ) {
1470
+ if ( false !== strpos( $plugin->package, 'api.freemius' ) ) {
1471
+ unset( $updates->response[ $file ] );
1472
+ }
1473
+ }
1474
+ }
1475
+
1476
+ return $updates;
1477
+ }
1478
+
1479
+ /**
1480
+ * Prepends the `fs_allow_updater_and_dialog` param to the plugin information URLs to tell the SDK to handle
1481
+ * the information that is shown on the plugin details dialog that is shown when the relevant link is clicked.
1482
+ *
1483
+ * @author Leo Fajardo (@leorw)
1484
+ * @since 2.2.3
1485
+ *
1486
+ * @return string
1487
+ */
1488
+ static function _prepend_fs_allow_updater_and_dialog_flag_url_param() {
1489
+ $slug_basename_map = array();
1490
+ foreach ( self::$_instances as $instance ) {
1491
+ if ( ! $instance->is_plugin() ) {
1492
+ continue;
1493
+ }
1494
+
1495
+ $slug_basename_map[ $instance->get_slug() ] = $instance->premium_plugin_basename();
1496
+ }
1497
+ ?>
1498
+ <script type="text/javascript">
1499
+ (function( $ ) {
1500
+ var slugBasenameMap = <?php echo json_encode( $slug_basename_map ) ?>;
1501
+ for ( var slug in slugBasenameMap ) {
1502
+ var basename = slugBasenameMap[ slug ];
1503
+
1504
+ // Try to get the plugin rows if on the "Plugins" page.
1505
+ var $pluginRows = $( '.wp-list-table.plugins tr[data-plugin="' + basename + '"]');
1506
+
1507
+ if ( 0 === $pluginRows.length ) {
1508
+ // Try to get the plugin rows if on the "Updates" page.
1509
+ var $pluginCheckbox = $( '#update-plugins-table input[type="checkbox"][value="' + basename + '"]' );
1510
+ if ( 0 !== $pluginCheckbox.length ) {
1511
+ $pluginRows = $pluginCheckbox.parents( 'tr:first' );
1512
+ }
1513
+ }
1514
+
1515
+ if ( 0 === $pluginRows.length ) {
1516
+ // No plugin rows found.
1517
+ continue;
1518
+ }
1519
+
1520
+ // Find the "View details" links and add the `fs_allow_updater_and_dialog` param to the URL.
1521
+ $pluginRows.find( 'a[href*="plugin-install.php?tab=plugin-information"]' ).each(function() {
1522
+ var $this = $( this ),
1523
+ href = $this.attr( 'href' ).replace( '?tab=', '?fs_allow_updater_and_dialog=true&tab=');
1524
+
1525
+ $this.attr( 'href', href );
1526
+ });
1527
+ }
1528
+ })( jQuery );
1529
+ </script>
1530
+ <?php
1531
+ }
1532
+
1533
  /**
1534
  * Keeping the uninstall hook registered for free or premium plugin version may result to a fatal error that
1535
  * could happen when a user tries to uninstall either version while one of them is still active. Uninstalling a
1637
  ( $this->is_theme() && self::is_themes_page() )
1638
  ) {
1639
  add_action( 'admin_footer', array( &$this, '_add_deactivation_feedback_dialog_box' ) );
 
 
 
 
1640
  }
1641
  }
1642
  }
1643
 
 
 
 
 
 
 
 
 
1644
  /**
1645
  * Leverage backtrace to find caller plugin file path.
1646
  *
1756
 
1757
  return fs_normalize_path( trailingslashit( $is_plugin ?
1758
  WP_PLUGIN_DIR :
1759
+ get_theme_root( get_stylesheet() ) ) );
1760
  }
1761
 
1762
  /**
1843
  $caller_file_candidate = false;
1844
  $caller_map = array();
1845
  $module_type = WP_FS__MODULE_TYPE_PLUGIN;
1846
+ $themes_dir = fs_normalize_path( get_theme_root( get_stylesheet() ) );
1847
 
1848
  for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) {
1849
  if ( empty( $bt[ $i ]['file'] ) ) {
2621
  $active_basenames = get_option( 'active_plugins' );
2622
  }
2623
 
2624
+ if ( ! is_array( $active_basenames ) ) {
2625
+ $active_basenames = array();
2626
+ }
2627
+
2628
  if ( is_multisite() ) {
2629
  $network_active_basenames = get_site_option( 'active_sitewide_plugins' );
2630
 
2676
  get_option( 'active_plugins' );
2677
 
2678
  $active = array();
2679
+
2680
+ if ( ! is_array( $active_basenames ) ) {
2681
+ return $active;
2682
+ }
2683
+
2684
  foreach ( $active_basenames as $basename ) {
2685
  $active[ $basename ] = array(
2686
  'is_active' => true,
2981
  * @since 1.1.7.3
2982
  */
2983
  static function _toggle_debug_mode() {
2984
+ if ( ! is_super_admin() ) {
2985
+ return;
2986
+ }
2987
+
2988
  $is_on = fs_request_get( 'is_on', false, 'post' );
2989
 
2990
  if ( fs_request_is_post() && in_array( $is_on, array( 0, 1 ) ) ) {
3016
  * @since 1.2.1.7
3017
  */
3018
  static function _get_db_option() {
3019
+ check_admin_referer( 'fs_get_db_option' );
3020
+
3021
  $option_name = fs_request_get( 'option_name' );
3022
 
3023
+ if ( ! is_super_admin() ||
3024
+ ! fs_starts_with( $option_name, 'fs_' )
3025
+ ) {
3026
+ self::shoot_ajax_failure();
3027
+ }
3028
+
3029
  $value = get_option( $option_name );
3030
 
3031
  $result = array(
3048
  * @since 1.2.1.7
3049
  */
3050
  static function _set_db_option() {
3051
+ check_admin_referer( 'fs_set_db_option' );
3052
+
3053
+ $option_name = fs_request_get( 'option_name' );
3054
+
3055
+ if ( ! is_super_admin() ||
3056
+ ! fs_starts_with( $option_name, 'fs_' )
3057
+ ) {
3058
+ self::shoot_ajax_failure();
3059
+ }
3060
+
3061
  $option_value = fs_request_get( 'option_value' );
3062
 
3063
  if ( ! empty( $option_value ) ) {
4296
  */
4297
  if ( $this->is_user_in_admin() &&
4298
  'plugin-information' === fs_request_get( 'tab', false ) &&
4299
+ $this->should_use_freemius_updater_and_dialog() &&
4300
  (
4301
  ( $this->is_addon() && $this->get_slug() == fs_request_get( 'plugin', false ) ) ||
4302
  ( $this->has_addons() && $this->get_id() == fs_request_get( 'parent_plugin_id', false ) )
4418
  * @author Vova Feldman
4419
  * @since 1.2.1.6
4420
  */
4421
+ if (
4422
+ $this->should_use_freemius_updater_and_dialog() &&
4423
+ (
4424
+ $this->is_premium() ||
4425
+ /**
4426
+ * If not premium but the premium version is installed, also instantiate the updater so that the
4427
+ * plugin information dialog of the premium version will have the information from the server.
4428
+ *
4429
+ * @author Leo Fajardo (@leorw)
4430
+ * @since 2.2.3
4431
+ */
4432
+ ( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $this->premium_plugin_basename() ) ) )
4433
+ ) &&
4434
+ $this->has_release_on_freemius()
4435
+ ) {
4436
  FS_Plugin_Updater::instance( $this );
4437
  }
4438
 
4475
  }
4476
  }
4477
 
4478
+ /**
4479
+ * @author Leo Fajardo (@leorw)
4480
+ * @since 2.2.3
4481
+ *
4482
+ * @return bool
4483
+ */
4484
+ private function should_use_freemius_updater_and_dialog() {
4485
+ return (
4486
+ /**
4487
+ * Allow updater and dialog when the `fs_allow_updater_and_dialog` URL query param exists and has `true`
4488
+ * value, or when the current page is not the "Add Plugins" page (/plugin-install.php) and the `action`
4489
+ * URL query param doesn't exist or its value is not `install-plugin` so that there will be no conflicts
4490
+ * with the .org plugins' functionalities (e.g. installation from the "Add Plugins" page and viewing
4491
+ * plugin details from .org).
4492
+ */
4493
+ ( true === fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) ||
4494
+ (
4495
+ ! self::is_plugin_install_page() &&
4496
+ // Disallow updater and dialog when installing a plugin, otherwise .org "add-on" plugins will be affected.
4497
+ ( 'install-plugin' !== fs_request_get( 'action' ) )
4498
+ )
4499
+ );
4500
+ }
4501
+
4502
  /**
4503
  * @author Leo Fajardo (@leorw)
4504
  *
4951
  'premium_suffix' => $premium_suffix,
4952
  'is_live' => $this->get_bool_option( $plugin_info, 'is_live', true ),
4953
  'affiliate_moderation' => $this->get_option( $plugin_info, 'has_affiliation' ),
4954
+ 'bundle_id' => $this->get_option( $plugin_info, 'bundle_id', null ),
4955
  ) );
4956
 
4957
  if ( $plugin->is_updated() ) {
5771
  $this->_storage->store( "{$name}_timestamp", time() );
5772
  }
5773
 
5774
+ /**
5775
+ * Sets the keepalive time to now.
5776
+ *
5777
+ * @author Leo Fajardo (@leorw)
5778
+ * @since 2.2.3
5779
+ *
5780
+ * @param bool|null $use_network_level_storage
5781
+ */
5782
+ private function set_keepalive_timestamp( $use_network_level_storage = null ) {
5783
+ $this->_logger->entrance();
5784
+
5785
+ $this->_storage->store( 'keepalive_timestamp', time(), $use_network_level_storage );
5786
+ }
5787
+
5788
  /**
5789
  * Check if cron was executed in the last $period of seconds.
5790
  *
5799
  private function is_cron_executed( $name, $period = WP_FS__TIME_24_HOURS_IN_SEC ) {
5800
  $this->_logger->entrance( $name );
5801
 
5802
+ $last_execution = $this->cron_last_execution( $name );
5803
 
5804
  if ( ! is_numeric( $last_execution ) ) {
5805
  return false;
6067
  $this->switch_to_blog( $blog_ids[0] );
6068
  }
6069
 
6070
+ call_user_func_array( $callable, array( $blog_ids, ( is_multisite() ? $current_blog_id : null ) ) );
6071
 
6072
  foreach ( $blog_ids as $blog_id ) {
6073
  $this->do_action( "after_{$name}_cron", $blog_id );
6148
  * @author Vova Feldman (@svovaf)
6149
  * @since 2.0.0
6150
  *
6151
+ * @param int[] $blog_ids
6152
+ * @param int|null $current_blog_id @since 2.2.3. This is passed from the `execute_cron` method and used by the
6153
+ * `_sync_plugin_license` method in order to switch to the previous blog when sending
6154
+ * updates for a single site in case `execute_cron` has switched to a different blog.
6155
  */
6156
+ function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6157
  if ( $this->is_registered() ) {
6158
  if ( $this->has_paid_plan() ) {
6159
  // Initiate background plan sync.
6160
+ $this->_sync_license( true, false, $current_blog_id );
6161
 
6162
  if ( $this->is_paying() ) {
6163
  // Check for premium plugin updates.
6372
  * @author Vova Feldman (@svovaf)
6373
  * @since 2.0.0
6374
  *
6375
+ * @param int[] $blog_ids
6376
+ * @param int|null $current_blog_id
6377
  */
6378
+ function _sync_install_cron_method( array $blog_ids, $current_blog_id = null ) {
6379
  if ( $this->is_registered() ) {
6380
  if ( 1 < count( $blog_ids ) ) {
6381
  $this->sync_installs( array(), true );
7072
  if (
7073
  $is_premium_version_activation &&
7074
  (
7075
+ ( ! $this->is_registered() && $this->is_anonymous() ) ||
7076
  (
7077
  $this->is_registered() &&
7078
  ! $this->is_trial() &&
8005
  $include_plugins = true,
8006
  $include_themes = true
8007
  ) {
8008
+ if ( ! defined( 'WP_FS__TRACK_PLUGINS' ) || false !== WP_FS__TRACK_PLUGINS ) {
8009
+ /**
8010
+ * @since 1.1.8 Also send plugin updates.
8011
+ */
8012
+ if ( $include_plugins && ! isset( $override['plugins'] ) ) {
8013
+ $plugins = $this->get_plugins_data_for_api();
8014
+ if ( ! empty( $plugins ) ) {
8015
+ $override['plugins'] = $plugins;
8016
+ }
8017
  }
8018
  }
8019
+
8020
+ if ( ! defined( 'WP_FS__TRACK_THEMES' ) || false !== WP_FS__TRACK_THEMES ) {
8021
+ /**
8022
+ * @since 1.1.8 Also send themes updates.
8023
+ */
8024
+ if ( $include_themes && ! isset( $override['themes'] ) ) {
8025
+ $themes = $this->get_themes_data_for_api();
8026
+ if ( ! empty( $themes ) ) {
8027
+ $override['themes'] = $themes;
8028
+ }
8029
  }
8030
  }
8031
 
8032
  $versions = $this->get_versions();
8033
 
8034
  return array_merge( $versions, array(
8035
+ 'version' => $this->get_plugin_version(),
8036
+ 'is_premium' => $this->is_premium(),
8037
+ 'language' => get_bloginfo( 'language' ),
8038
+ 'charset' => get_bloginfo( 'charset' ),
8039
+ 'title' => get_bloginfo( 'name' ),
8040
+ 'url' => get_site_url(),
8041
  // Special params.
8042
+ 'is_active' => true,
8043
+ 'is_disconnected' => $this->is_tracking_prohibited(),
8044
+ 'is_uninstalled' => false,
8045
  ), $override );
8046
  }
8047
 
8243
  $params = $this->get_install_diff_for_api( $check_properties, $this->_site, $override );
8244
  }
8245
 
8246
+ $keepalive_only_update = false;
8247
+ if ( empty( $params ) ) {
8248
+ $keepalive_only_update = $this->should_send_keepalive_update();
8249
+
8250
+ if ( ! $keepalive_only_update ) {
8251
+ /**
8252
+ * There are no updates to send including keepalive.
8253
+ *
8254
+ * @author Leo Fajardo (@leorw)
8255
+ * @since 2.2.3
8256
+ */
8257
+ return false;
8258
+ }
8259
+ }
8260
+
8261
+ if ( ! $keepalive_only_update ) {
8262
+ /**
8263
+ * Do not update the last install sync timestamp after a keepalive-only call since there were no actual
8264
+ * updates sent.
8265
+ *
8266
+ * @author Leo Fajardo (@leorw)
8267
+ * @since 2.2.3
8268
+ */
8269
  if ( ! is_multisite() ) {
8270
  // Update last install sync timestamp.
8271
  $this->set_cron_execution_timestamp( 'install_sync' );
8272
  }
8273
 
8274
  $params['uid'] = $this->get_anonymous_id();
8275
+ }
8276
 
8277
+ $this->set_keepalive_timestamp();
 
8278
 
8279
+ // Send updated values to FS.
8280
+ $site = $this->get_api_site_scope()->call( '/', 'put', $params );
 
 
 
 
8281
 
8282
+ if ( ! $keepalive_only_update && $this->is_api_result_entity( $site ) ) {
8283
+ /**
8284
+ * Do not clear scheduled sync after a keepalive-only call since there were no actual updates sent.
8285
+ *
8286
+ * @author Leo Fajardo (@leorw)
8287
+ * @since 2.2.3
8288
+ */
8289
+ if ( ! is_multisite() ) {
8290
+ // I successfully sent install update, clear scheduled sync if exist.
8291
+ $this->clear_install_sync_cron();
8292
+ }
8293
  }
8294
 
8295
+ return $site;
8296
  }
8297
 
8298
  /**
8311
 
8312
  $installs_data = $this->get_installs_data_for_api( $override, ! $flush );
8313
 
8314
+ $keepalive_only_update = false;
8315
  if ( empty( $installs_data ) ) {
8316
+ /**
8317
+ * Pass `true` to use the network level storage since the update is for many installs.
8318
+ *
8319
+ * @author Leo Fajardo (@leorw)
8320
+ * @since 2.2.3
8321
+ */
8322
+ $keepalive_only_update = $this->should_send_keepalive_update( true );
8323
+
8324
+ if ( ! $keepalive_only_update ) {
8325
+ /**
8326
+ * There are no updates to send including keepalive.
8327
+ *
8328
+ * @author Leo Fajardo (@leorw)
8329
+ * @since 2.2.3
8330
+ */
8331
+ return false;
8332
+ }
8333
  }
8334
 
8335
+ if ( ! $keepalive_only_update ) {
8336
+ // Update last install sync timestamp if there were actual updates sent (i.e., not a keepalive-only call).
8337
+ $this->set_cron_execution_timestamp( 'install_sync' );
8338
+ }
8339
+
8340
+ /**
8341
+ * Pass `true` to use the network level storage since the update is for many installs.
8342
+ *
8343
+ * @author Leo Fajardo (@leorw)
8344
+ * @since 2.2.3
8345
+ */
8346
+ $this->set_keepalive_timestamp( true );
8347
 
8348
  // Send updated values to FS.
8349
  $result = $this->get_api_user_scope()->call( "/plugins/{$this->_plugin->id}/installs.json", 'put', $installs_data );
8350
 
8351
+ if ( ! $keepalive_only_update && $this->is_api_result_object( $result, 'installs' ) ) {
8352
+ // I successfully sent installs update (there was an actual update sent and it's not just a keepalive-only call), clear scheduled sync if exist.
8353
  $this->clear_install_sync_cron();
8354
  }
8355
 
8356
  return $result;
8357
  }
8358
 
8359
+ /**
8360
+ * @author Leo Fajardo (@leorw)
8361
+ *
8362
+ * @param bool|null $use_network_level_storage
8363
+ *
8364
+ * @return bool
8365
+ */
8366
+ private function should_send_keepalive_update( $use_network_level_storage = null ) {
8367
+ $keepalive_timestamp = $this->_storage->get( 'keepalive_timestamp', 0, $use_network_level_storage );
8368
+
8369
+ if ( $keepalive_timestamp < ( time() - WP_FS__TIME_WEEK_IN_SEC ) ) {
8370
+ // If updated more than 7 days ago, trigger a keepalive and update the time it was triggered.
8371
+ return true;
8372
+ } else {
8373
+ // If updated 7 days ago or less, "flip a coin", if the value is 7 trigger a keepalive and update the last time it was triggered.
8374
+ return ( 7 == rand( 1, 7 ) );
8375
+ }
8376
+ }
8377
+
8378
  /**
8379
  * Update install only if changed.
8380
  *
8805
  return $this->_plugin->id;
8806
  }
8807
 
8808
+ /**
8809
+ * @author Leo Fajardo (@leorw)
8810
+ * @since 2.2.4
8811
+ *
8812
+ * @return number|null Bundle ID.
8813
+ */
8814
+ function get_bundle_id() {
8815
+ return ( isset( $this->_plugin->bundle_id ) && FS_Plugin::is_valid_id( $this->_plugin->bundle_id ) ) ?
8816
+ $this->_plugin->bundle_id :
8817
+ null;
8818
+ }
8819
+
8820
  /**
8821
  * @author Vova Feldman (@svovaf)
8822
  * @since 1.2.1.5
9637
  * @return bool
9638
  */
9639
  function is_premium() {
9640
+ /**
9641
+ * `$this->_plugin` will be `false` when `is_activation_mode` calls this method directly from the
9642
+ * `_register_hooks` method.
9643
+ *
9644
+ * @author Leo Fajardo (@leorw)
9645
+ * @since 2.2.3
9646
+ */
9647
+ return is_object( $this->_plugin ) ?
9648
+ $this->_plugin->is_premium :
9649
+ false;
9650
  }
9651
 
9652
  /**
10922
  return true;
10923
  }
10924
 
10925
+ return ( 1 === ( count( $this->_plans ) - ( $this->has_free_plan() ? 1 : 0 ) ) );
10926
  }
10927
 
10928
  /**
11374
  if ( false !== $error ) {
11375
  $result['error'] = $error;
11376
  } else {
11377
+ if ( $this->is_addon() || $this->has_addons() ) {
11378
+ /**
11379
+ * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
11380
+ * an updated valid user licenses collection will be fetched from the server which is used to also
11381
+ * update the account add-ons (add-ons the user has licenses for).
11382
+ *
11383
+ * @author Leo Fajardo (@leorw)
11384
+ * @since 2.2.4
11385
+ */
11386
+ $this->purge_valid_user_licenses_cache();
11387
+ }
11388
+
11389
  $result['next_page'] = $next_page;
11390
  }
11391
 
11633
  static function get_current_page() {
11634
  if ( ! isset( self::$_pagenow ) ) {
11635
  global $pagenow;
11636
+ if ( empty( $pagenow ) && is_admin() && is_multisite() ) {
11637
+ /**
11638
+ * It appears that `$pagenow` is not yet initialized in some network admin pages when this method
11639
+ * is called, so initialize it here using some pieces of code from `wp-includes/vars.php`.
11640
+ *
11641
+ * @author Leo Fajardo (@leorw)
11642
+ * @since 2.2.3
11643
+ */
11644
+ if ( is_network_admin() ) {
11645
+ preg_match( '#/wp-admin/network/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches );
11646
+ } else if ( is_user_admin() ) {
11647
+ preg_match( '#/wp-admin/user/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches );
11648
+ } else {
11649
+ preg_match( '#/wp-admin/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches );
11650
+ }
11651
+
11652
+ $pagenow = $self_matches[1];
11653
+ $pagenow = trim( $pagenow, '/' );
11654
+ $pagenow = preg_replace( '#\?.*?$#', '', $pagenow );
11655
+ if ( '' === $pagenow || 'index' === $pagenow || 'index.php' === $pagenow ) {
11656
+ $pagenow = 'index.php';
11657
+ } else {
11658
+ preg_match( '#(.*?)(/|$)#', $pagenow, $self_matches );
11659
+ $pagenow = strtolower( $self_matches[1] );
11660
+ if ( '.php' !== substr($pagenow, -4, 4) )
11661
+ $pagenow .= '.php'; // for Options +Multiviews: /wp-admin/themes/index.php (themes.php is queried)
11662
+ }
11663
+ }
11664
 
11665
  self::$_pagenow = $pagenow;
11666
 
11692
  return ( 'plugins.php' === self::get_current_page() );
11693
  }
11694
 
11695
+ /**
11696
+ * @author Leo Fajardo (@leorw)
11697
+ * @since 2.2.3
11698
+ *
11699
+ * @return bool
11700
+ */
11701
+ static function is_plugin_install_page() {
11702
+ return ( 'plugin-install.php' === self::get_current_page() );
11703
+ }
11704
+
11705
  /**
11706
  * @author Leo Fajardo (@leorw)
11707
  * @since 2.0.2
12026
  $params['trial'] = 'true';
12027
  }
12028
 
12029
+ $url = $this->is_addon() ?
12030
+ $this->_parent->addon_url( $this->_slug ) :
12031
+ $this->_get_admin_page_url( 'pricing', $params );
12032
 
12033
+ return $this->apply_filters( 'pricing_url', $url );
12034
  }
12035
 
12036
  /**
12839
 
12840
  self::$_accounts->set_site_blog_context( $blog_id );
12841
  $this->_storage->set_site_blog_context( $blog_id );
12842
+ $this->_storage->set_network_active( $this->_is_network_active, $this->is_delegated_connection( $blog_id ) );
12843
 
12844
  $this->_site = is_object( $install ) ?
12845
  $install :
16554
  self::$_accounts->set_option( 'account_addons', $all_addons, $store );
16555
  }
16556
 
16557
+ /**
16558
+ * Purges the cache for the valid user licenses API call so that when the `Account` or `Add-Ons` page is loaded,
16559
+ * the valid user licenses will be fetched again and the account add-ons may be updated.
16560
+ *
16561
+ * @author Leo Fajardo (@leorw)
16562
+ * @since 2.2.4
16563
+ */
16564
+ private function purge_valid_user_licenses_cache() {
16565
+ $user_licenses_endpoint = '/licenses.json?type=active' .
16566
+ ( FS_Plugin::is_valid_id( $this->get_bundle_id() ) ? '&is_enriched=true' : '' );
16567
+
16568
+ $this->get_api_user_scope()->purge_cache( $user_licenses_endpoint );
16569
+ }
16570
+
16571
+ /**
16572
+ * Fetches active licenses that are enriched with product type if there's a context `bundle_id` and bundle
16573
+ * licenses enriched with product IDs if there are any. From the licenses, the `get_updated_account_addons`
16574
+ * method filters out non–add-on product IDs and stores the add-on IDs.
16575
+ *
16576
+ * @author Leo Fajardo (@leorw)
16577
+ * @since 2.2.4
16578
+ *
16579
+ * @return stdClass[] array
16580
+ */
16581
+ private function fetch_valid_user_licenses() {
16582
+ $this->_logger->entrance();
16583
+
16584
+ $api = $this->get_api_user_scope();
16585
+
16586
+ $user_licenses_endpoint = '/licenses.json?type=active' .
16587
+ ( FS_Plugin::is_valid_id( $this->get_bundle_id() ) ? '&is_enriched=true' : '' );
16588
+
16589
+ $result = $api->get( $user_licenses_endpoint );
16590
+
16591
+ if ( ! $this->is_api_result_object( $result, 'licenses' ) ||
16592
+ ! is_array( $result->licenses )
16593
+ ) {
16594
+ return array();
16595
+ }
16596
+
16597
+ return $result->licenses;
16598
+ }
16599
+
16600
+ /**
16601
+ * @author Leo Fajardo (@leorw)
16602
+ * @since 2.2.4
16603
+ *
16604
+ * @return number[] Account add-on IDs.
16605
+ */
16606
+ function get_updated_account_addons() {
16607
+ $addons = $this->get_addons();
16608
+ if ( empty( $addons ) ) {
16609
+ return array();
16610
+ }
16611
+
16612
+ $account_addons = $this->get_account_addons();
16613
+ if ( ! is_array( $account_addons ) ) {
16614
+ $account_addons = array();
16615
+ }
16616
+
16617
+ $user_licenses = $this->fetch_valid_user_licenses();
16618
+ if ( empty( $user_licenses ) ) {
16619
+ return $account_addons;
16620
+ }
16621
+
16622
+ $addon_ids = array();
16623
+ foreach ( $addons as $addon ) {
16624
+ $addon_ids[] = $addon->id;
16625
+ }
16626
+
16627
+ $license_product_ids = array();
16628
+
16629
+ foreach ( $user_licenses as $license ) {
16630
+ if ( isset( $license->plugin_type ) && 'bundle' === $license->plugin_type ) {
16631
+ $license_product_ids = array_merge( $license_product_ids, $license->products );
16632
+ } else {
16633
+ $license_product_ids[] = $license->plugin_id;
16634
+ }
16635
+ }
16636
+
16637
+ // Filter out non–add-on IDs.
16638
+ $new_account_addons = array_intersect( $addon_ids, $license_product_ids );
16639
+ if ( count( $new_account_addons ) !== count( $account_addons ) ) {
16640
+ $this->_store_account_addons( array_unique( $new_account_addons ) );
16641
+ }
16642
+
16643
+ return $new_account_addons;
16644
+ }
16645
+
16646
  /**
16647
  * Store account params in the Database.
16648
  *
17242
  * the admin.
17243
  * @param bool $is_context_single_site @since 2.0.0. This is used when syncing a license for a single install from the
17244
  * network-level "Account" page.
17245
+ * @param int|null $current_blog_id @since 2.2.3. This is passed from the `execute_cron` method and used by the
17246
+ * `_sync_plugin_license` method in order to switch to the previous blog when sending
17247
+ * updates for a single site in case `execute_cron` has switched to a different blog.
17248
  */
17249
+ private function _sync_license( $background = false, $is_context_single_site = false, $current_blog_id = null ) {
17250
  $this->_logger->entrance();
17251
 
17252
  $plugin_id = fs_request_get( 'plugin_id', $this->get_id() );
17256
  if ( $is_addon_sync ) {
17257
  $this->_sync_addon_license( $plugin_id, $background );
17258
  } else {
17259
+ $this->_sync_plugin_license( $background, true, $is_context_single_site, $current_blog_id );
17260
  }
17261
 
17262
  $this->do_action( 'after_account_plan_sync', $this->get_plan_name() );
17346
  * @param bool $is_context_single_site Since 2.0.0. This is used when sending an update for a single install and
17347
  * syncing its license from the network-level "Account" page (e.g.: after
17348
  * activating a license only for the single install).
17349
+ * @param int|null $current_blog_id Since 2.2.3. This is passed from the `execute_cron` method so that it
17350
+ * can be used here to switch to the previous blog in case `execute_cron`
17351
+ * has switched to a different blog.
17352
  */
17353
  private function _sync_plugin_license(
17354
  $background = false,
17355
  $send_installs_update = true,
17356
+ $is_context_single_site = false,
17357
+ $current_blog_id = null
17358
  ) {
17359
  $this->_logger->entrance();
17360
 
17371
  * @todo This line will execute install sync on a daily basis, even if running the free version (for opted-in users). The reason we want to keep it that way is for cases when the user was a paying customer, then there was a failure in subscription payment, and then after some time the payment was successful. This could be heavily optimized. For example, we can skip the $flush if the current install was never associated with a paid version.
17372
  */
17373
  if ( $is_site_level_sync ) {
17374
+ /**
17375
+ * Switch to the previous blog since `execute_cron` may have switched to a different blog.
17376
+ *
17377
+ * @author Leo Fajardo (@leorw)
17378
+ * @since 2.2.3
17379
+ */
17380
+ if ( is_numeric( $current_blog_id ) ) {
17381
+ $this->switch_to_blog( $current_blog_id );
17382
+ }
17383
+
17384
  $result = $this->send_install_update( array(), true );
17385
  $is_valid = $this->is_api_result_entity( $result );
17386
  } else {
17409
  if ( ! self::$_global_admin_notices->has_sticky( 'api_blocked' ) ) {
17410
  self::$_global_admin_notices->add(
17411
  sprintf(
17412
+ $this->get_text_inline( 'Your server is blocking the access to Freemius\' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s', 'server-blocking-access' ),
17413
  $this->get_plugin_name(),
17414
  '<a href="' . $api->get_url() . '" target="_blank">' . $api->get_url() . '</a>'
17415
  ) . '<br> ' . $this->get_text_inline( 'Error received from the server:', 'server-error-message' ) . var_export( $result->error, true ),
17553
  */
17554
  $this->_update_site_license( $new_license );
17555
 
17556
+ if ( $this->is_addon() || $this->has_addons() ) {
17557
+ /**
17558
+ * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
17559
+ * an updated valid user licenses collection will be fetched from the server which is used to also
17560
+ * update the account add-ons (add-ons the user has licenses for).
17561
+ *
17562
+ * @author Leo Fajardo (@leorw)
17563
+ * @since 2.2.4
17564
+ */
17565
+ $this->purge_valid_user_licenses_cache();
17566
+ }
17567
+
17568
  if ( ! $is_context_single_site &&
17569
  fs_is_network_admin() &&
17570
  $this->_is_network_active &&
17864
 
17865
  $this->_store_account();
17866
 
17867
+ if ( $this->is_addon() || $this->has_addons() ) {
17868
+ /**
17869
+ * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
17870
+ * an updated valid user licenses collection will be fetched from the server which is used to also
17871
+ * update the account add-ons (add-ons the user has licenses for).
17872
+ *
17873
+ * @author Leo Fajardo (@leorw)
17874
+ * @since 2.2.4
17875
+ */
17876
+ $this->purge_valid_user_licenses_cache();
17877
+ }
17878
+
17879
  if ( ! $background ) {
17880
  $this->_admin_notices->add_sticky(
17881
  $this->get_text_inline( 'Your license was successfully activated.', 'license-activated-message' ) .
18807
  if ( ! isset( $result->error ) ) {
18808
  $this->_admin_notices->add( sprintf(
18809
  $this->get_text_inline( 'Verification mail was just sent to %s. If you can\'t find it after 5 min, please check your spam box.', 'verification-email-sent-message' ),
18810
+ sprintf( '<a href="mailto:%1$s">%2$s</a>', esc_url( $this->_user->email ), $this->_user->email )
18811
  ) );
18812
  } else {
18813
  // handle different error cases.
18866
  */
18867
  function get_after_activation_url( $filter, $params = array(), $network = null ) {
18868
  if ( $this->is_free_wp_org_theme() &&
18869
+ ( fs_request_has( 'pending_activation' ) ||
18870
+ // For cases when the first time path is set, even though it's a WP.org theme.
18871
+ fs_request_get_bool( $this->get_unique_affix() . '_show_optin' ) )
18872
  ) {
18873
  $first_time_path = '';
18874
  } else {
20011
  function _add_upgrade_action_link() {
20012
  $this->_logger->entrance();
20013
 
20014
+ if ( $this->is_pricing_page_visible() &&
20015
+ $this->is_submenu_item_visible( 'pricing' )
20016
+ ) {
20017
  $this->add_plugin_action_link(
20018
  $this->get_text_inline( 'Upgrade', 'upgrade' ),
20019
  $this->get_upgrade_url(),
20023
  );
20024
  }
20025
 
20026
+ if ( $this->has_addons() &&
20027
+ $this->is_submenu_item_visible( 'addons' )
20028
+ ) {
20029
  $this->add_plugin_action_link(
20030
  $this->get_text_inline( 'Add-Ons', 'add-ons' ),
20031
  $this->_get_admin_page_url( 'addons' ),
20364
  $premium_plugin_basename = $this->premium_plugin_basename();
20365
 
20366
  return sprintf(
20367
+ /* translators: %1$s: Product title; %2$s: Plan title */
20368
+ $this->get_text_inline( ' The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s', 'activate-premium-version' ),
20369
  sprintf( '<em>%s</em>', esc_html( $this->get_plugin_title() ) ),
20370
  $plan_title,
20371
  sprintf(
21181
 
21182
  // Locate the main assets folder.
21183
  if ( 1 < count( $fs_active_plugins->plugins ) ) {
21184
+ $plugin_or_theme_img_dir = ( $this->is_plugin() ? WP_PLUGIN_DIR : get_theme_root( get_stylesheet() ) );
21185
 
21186
  foreach ( $fs_active_plugins->plugins as $sdk_path => &$data ) {
21187
  if ( $data->plugin_path == $this->get_plugin_basename() ) {
21188
  $img_dir = $plugin_or_theme_img_dir
21189
  . '/'
21190
+ /**
21191
+ * The basename will be `themes` or the basename of a custom themes directory.
21192
+ *
21193
+ * @author Leo Fajardo (@leorw)
21194
+ * @since 2.2.3
21195
+ */
21196
+ . str_replace( '../' . basename( $plugin_or_theme_img_dir ) . '/', '', $sdk_path )
21197
  . '/assets/img';
21198
 
21199
  break;
freemius/includes/class-fs-api.php CHANGED
@@ -238,7 +238,7 @@
238
  if ( ! is_object( $result ) || isset( $result->error ) ) {
239
  // Api returned an error.
240
  if ( is_object( $cached_result ) &&
241
- ! isset( $cached_result )
242
  ) {
243
  // If there was an error during a newer data fetch,
244
  // fallback to older data version.
@@ -248,9 +248,19 @@
248
  $this->_logger->warn( 'Fallback to cached API result: ' . var_export( $cached_result, true ) );
249
  }
250
  } else {
251
- // If no older data version, return result without
252
- // caching the error.
253
- return $result;
 
 
 
 
 
 
 
 
 
 
254
  }
255
  }
256
 
238
  if ( ! is_object( $result ) || isset( $result->error ) ) {
239
  // Api returned an error.
240
  if ( is_object( $cached_result ) &&
241
+ ! isset( $cached_result->error )
242
  ) {
243
  // If there was an error during a newer data fetch,
244
  // fallback to older data version.
248
  $this->_logger->warn( 'Fallback to cached API result: ' . var_export( $cached_result, true ) );
249
  }
250
  } else {
251
+ if ( is_object( $result ) && 404 == $result->error->http ) {
252
+ /**
253
+ * If the response code is 404, cache the result for half of the `$expiration`.
254
+ *
255
+ * @author Leo Fajardo (@leorw)
256
+ * @since 2.2.4
257
+ */
258
+ $expiration /= 2;
259
+ } else {
260
+ // If no older data version and the response code is not 404, return result without
261
+ // caching the error.
262
+ return $result;
263
+ }
264
  }
265
  }
266
 
freemius/includes/class-fs-plugin-updater.php CHANGED
@@ -296,9 +296,13 @@
296
  isset( $r->upgrade_notice ) &&
297
  strlen( trim( $r->upgrade_notice ) ) > 0
298
  ) {
 
 
299
  $upgrade_notice_html = sprintf(
300
- '<p class="notice upgrade-notice"><strong>%s</strong> %s</p>',
301
- fs_text_inline( 'Important Upgrade Notice:', 'upgrade_notice', $this->_fs->get_slug() ),
 
 
302
  esc_html( $r->upgrade_notice )
303
  );
304
 
@@ -830,8 +834,9 @@
830
  return $data;
831
  }
832
 
833
- $addon = false;
834
- $is_addon = false;
 
835
 
836
  if ( $this->_fs->get_slug() !== $args->slug ) {
837
  $addon = $this->_fs->get_addon_by_slug( $args->slug );
@@ -840,6 +845,20 @@
840
  return $data;
841
  }
842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
843
  $is_addon = true;
844
  }
845
 
@@ -870,7 +889,9 @@ if ( !isset($info->error) ) {
870
  }*/
871
  }
872
 
873
- $plugin_version = $this->_fs->get_plugin_version();
 
 
874
 
875
  // Get plugin's newest update.
876
  $new_version = $this->get_latest_download_details( $is_addon ? $addon->id : false, $plugin_version );
@@ -998,8 +1019,8 @@ if ( !isset($info->error) ) {
998
 
999
  $active_plugins_basenames = get_option( 'active_plugins' );
1000
 
1001
- for ( $i = 0, $len = count( $active_plugins_basenames ); $i < $len; $i ++ ) {
1002
- if ( $basename === $active_plugins_basenames[ $i ] ) {
1003
  // Get filename including extension.
1004
  $filename = basename( $basename );
1005
 
@@ -1011,7 +1032,7 @@ if ( !isset($info->error) ) {
1011
  // Verify that the expected correct path exists.
1012
  if ( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $new_basename ) ) ) {
1013
  // Override active plugin name.
1014
- $active_plugins_basenames[ $i ] = $new_basename;
1015
  update_option( 'active_plugins', $active_plugins_basenames );
1016
  }
1017
 
@@ -1242,7 +1263,7 @@ if ( !isset($info->error) ) {
1242
  static function _store_basename_for_source_adjustment( $response, $hook_extra ) {
1243
  if ( isset( $hook_extra['plugin'] ) ) {
1244
  self::$_upgrade_basename = $hook_extra['plugin'];
1245
- } else if ( $hook_extra['theme'] ) {
1246
  self::$_upgrade_basename = $hook_extra['theme'];
1247
  } else {
1248
  self::$_upgrade_basename = null;
@@ -1353,4 +1374,4 @@ if ( !isset($info->error) ) {
1353
  }
1354
 
1355
  #endregion
1356
- }
296
  isset( $r->upgrade_notice ) &&
297
  strlen( trim( $r->upgrade_notice ) ) > 0
298
  ) {
299
+ $slug = $this->_fs->get_slug();
300
+
301
  $upgrade_notice_html = sprintf(
302
+ '<p class="notice fs-upgrade-notice fs-slug-%1$s fs-type-%2$s" data-slug="%1$s" data-type="%2s"><strong>%3$s</strong> %4$s</p>',
303
+ $slug,
304
+ $this->_fs->get_module_type(),
305
+ fs_text_inline( 'Important Upgrade Notice:', 'upgrade_notice', $slug ),
306
  esc_html( $r->upgrade_notice )
307
  );
308
 
834
  return $data;
835
  }
836
 
837
+ $addon = false;
838
+ $is_addon = false;
839
+ $addon_version = false;
840
 
841
  if ( $this->_fs->get_slug() !== $args->slug ) {
842
  $addon = $this->_fs->get_addon_by_slug( $args->slug );
845
  return $data;
846
  }
847
 
848
+ if ( $this->_fs->is_addon_activated( $addon->id ) ) {
849
+ $addon_version = $this->_fs->get_addon_instance( $addon->id )->get_plugin_version();
850
+ } else if ( $this->_fs->is_addon_installed( $addon->id ) ) {
851
+ $addon_plugin_data = get_plugin_data(
852
+ ( WP_PLUGIN_DIR . '/' . $this->_fs->get_addon_basename( $addon->id ) ),
853
+ false,
854
+ false
855
+ );
856
+
857
+ if ( ! empty( $addon_plugin_data ) ) {
858
+ $addon_version = $addon_plugin_data['Version'];
859
+ }
860
+ }
861
+
862
  $is_addon = true;
863
  }
864
 
889
  }*/
890
  }
891
 
892
+ $plugin_version = $is_addon ?
893
+ $addon_version :
894
+ $this->_fs->get_plugin_version();
895
 
896
  // Get plugin's newest update.
897
  $new_version = $this->get_latest_download_details( $is_addon ? $addon->id : false, $plugin_version );
1019
 
1020
  $active_plugins_basenames = get_option( 'active_plugins' );
1021
 
1022
+ foreach ( $active_plugins_basenames as $key => $active_plugin_basename ) {
1023
+ if ( $basename === $active_plugin_basename ) {
1024
  // Get filename including extension.
1025
  $filename = basename( $basename );
1026
 
1032
  // Verify that the expected correct path exists.
1033
  if ( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $new_basename ) ) ) {
1034
  // Override active plugin name.
1035
+ $active_plugins_basenames[ $key ] = $new_basename;
1036
  update_option( 'active_plugins', $active_plugins_basenames );
1037
  }
1038
 
1263
  static function _store_basename_for_source_adjustment( $response, $hook_extra ) {
1264
  if ( isset( $hook_extra['plugin'] ) ) {
1265
  self::$_upgrade_basename = $hook_extra['plugin'];
1266
+ } else if ( isset( $hook_extra['theme'] ) ) {
1267
  self::$_upgrade_basename = $hook_extra['theme'];
1268
  } else {
1269
  self::$_upgrade_basename = null;
1374
  }
1375
 
1376
  #endregion
1377
+ }
freemius/includes/class-fs-storage.php CHANGED
@@ -132,9 +132,8 @@
132
  * @param int $blog_id
133
  */
134
  function set_site_blog_context( $blog_id ) {
 
135
  $this->_blog_id = $blog_id;
136
-
137
- $this->_storage = $this->get_site_storage( $this->_blog_id );
138
  }
139
 
140
  /**
132
  * @param int $blog_id
133
  */
134
  function set_site_blog_context( $blog_id ) {
135
+ $this->_storage = $this->get_site_storage( $blog_id );
136
  $this->_blog_id = $blog_id;
 
 
137
  }
138
 
139
  /**
freemius/includes/entities/class-fs-plugin.php CHANGED
@@ -87,6 +87,11 @@
87
  * @var bool
88
  */
89
  public $is_live;
 
 
 
 
 
90
 
91
  const AFFILIATE_MODERATION_CUSTOMERS = 'customers';
92
 
87
  * @var bool
88
  */
89
  public $is_live;
90
+ /**
91
+ * @since 2.2.3
92
+ * @var null|number
93
+ */
94
+ public $bundle_id;
95
 
96
  const AFFILIATE_MODERATION_CUSTOMERS = 'customers';
97
 
freemius/includes/fs-core-functions.php CHANGED
@@ -86,9 +86,25 @@
86
  function fs_asset_url( $asset_abs_path ) {
87
  $wp_content_dir = fs_normalize_path( WP_CONTENT_DIR );
88
  $asset_abs_path = fs_normalize_path( $asset_abs_path );
89
- $asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path );
90
 
91
- $asset_url = content_url( fs_normalize_path( $asset_rel_path ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
 
93
  return $asset_url;
94
  }
@@ -709,6 +725,97 @@
709
  return $key;
710
  }
711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  /**
713
  * Get a translatable text override if exists, or `false`.
714
  *
@@ -746,7 +853,9 @@
746
 
747
  return false;
748
  }
 
749
 
 
750
  /**
751
  * Get a translatable text and its text domain.
752
  *
@@ -776,9 +885,9 @@
776
 
777
  return array( $text, $text_domain );
778
  }
 
779
 
780
- #region Private
781
-
782
  /**
783
  * Retrieve an inline translated text by key.
784
  *
@@ -801,33 +910,9 @@
801
 
802
  return $fn( $text, $text_domain );
803
  }
 
804
 
805
- /**
806
- * Retrieve an inline translated text by key with a context.
807
- *
808
- * @author Vova Feldman (@svovaf)
809
- * @since 1.2.3
810
- *
811
- * @param string $text Translatable string.
812
- * @param string $context Context information for the translators.
813
- * @param string $key String key for overrides.
814
- * @param string $slug Module slug for overrides.
815
- *
816
- * @return string
817
- *
818
- * @global $fs_text_overrides
819
- */
820
- function _fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
821
- list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
822
-
823
- // Avoid misleading Theme Check warning.
824
- $fn = 'translate_with_gettext_context';
825
-
826
- return $fn( $text, $context, $text_domain );
827
- }
828
-
829
- #endregion
830
-
831
  /**
832
  * Retrieve an inline translated text by key.
833
  *
@@ -845,67 +930,6 @@
845
  function fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
846
  return _fs_text_inline( $text, $key, $slug );
847
  }
848
-
849
- /**
850
- * Retrieve an inline translated text by key with a context.
851
- *
852
- * @author Vova Feldman (@svovaf)
853
- * @since 1.2.3
854
- *
855
- * @param string $text Translatable string.
856
- * @param string $context Context information for the translators.
857
- * @param string $key String key for overrides.
858
- * @param string $slug Module slug for overrides.
859
- *
860
- * @return string
861
- *
862
- * @global $fs_text_overrides
863
- */
864
- function fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
865
- return _fs_text_x_inline( $text, $context, $key, $slug );
866
- }
867
-
868
- /**
869
- * Output a translated text by key.
870
- *
871
- * @author Vova Feldman (@svovaf)
872
- * @since 1.2.1.7
873
- *
874
- * @param string $key
875
- * @param string $slug
876
- */
877
- function fs_echo( $key, $slug = 'freemius' ) {
878
- echo fs_text( $key, $slug );
879
- }
880
-
881
- /**
882
- * Output an inline translated text.
883
- *
884
- * @author Vova Feldman (@svovaf)
885
- * @since 1.2.3
886
- *
887
- * @param string $text Translatable string.
888
- * @param string $key String key for overrides.
889
- * @param string $slug Module slug for overrides.
890
- */
891
- function fs_echo_inline( $text, $key = '', $slug = 'freemius' ) {
892
- echo _fs_text_inline( $text, $key, $slug );
893
- }
894
-
895
- /**
896
- * Output an inline translated text with a context.
897
- *
898
- * @author Vova Feldman (@svovaf)
899
- * @since 1.2.3
900
- *
901
- * @param string $text Translatable string.
902
- * @param string $context Context information for the translators.
903
- * @param string $key String key for overrides.
904
- * @param string $slug Module slug for overrides.
905
- */
906
- function fs_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
907
- echo _fs_text_x_inline( $text, $context, $key, $slug );
908
- }
909
  }
910
 
911
  if ( ! function_exists( 'fs_esc_attr' ) ) {
86
  function fs_asset_url( $asset_abs_path ) {
87
  $wp_content_dir = fs_normalize_path( WP_CONTENT_DIR );
88
  $asset_abs_path = fs_normalize_path( $asset_abs_path );
 
89
 
90
+ if ( 0 === strpos( $asset_abs_path, $wp_content_dir ) ) {
91
+ // Handle both theme and plugin assets located in the standard directories.
92
+ $asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path );
93
+ $asset_url = content_url( fs_normalize_path( $asset_rel_path ) );
94
+ } else {
95
+ $wp_plugins_dir = fs_normalize_path( WP_PLUGIN_DIR );
96
+ if ( 0 === strpos( $asset_abs_path, $wp_plugins_dir ) ) {
97
+ // Try to handle plugin assets that may be located in a non-standard plugins directory.
98
+ $asset_rel_path = str_replace( $wp_plugins_dir, '', $asset_abs_path );
99
+ $asset_url = plugins_url( fs_normalize_path( $asset_rel_path ) );
100
+ } else {
101
+ // Try to handle theme assets that may be located in a non-standard themes directory.
102
+ $active_theme_stylesheet = get_stylesheet();
103
+ $wp_themes_dir = fs_normalize_path( trailingslashit( get_theme_root( $active_theme_stylesheet ) ) );
104
+ $asset_rel_path = str_replace( $wp_themes_dir, '', fs_normalize_path( $asset_abs_path ) );
105
+ $asset_url = trailingslashit( get_theme_root_uri( $active_theme_stylesheet ) ) . fs_normalize_path( $asset_rel_path );
106
+ }
107
+ }
108
 
109
  return $asset_url;
110
  }
725
  return $key;
726
  }
727
 
728
+ #region Private
729
+
730
+ /**
731
+ * Retrieve an inline translated text by key with a context.
732
+ *
733
+ * @author Vova Feldman (@svovaf)
734
+ * @since 1.2.3
735
+ *
736
+ * @param string $text Translatable string.
737
+ * @param string $context Context information for the translators.
738
+ * @param string $key String key for overrides.
739
+ * @param string $slug Module slug for overrides.
740
+ *
741
+ * @return string
742
+ *
743
+ * @global $fs_text_overrides
744
+ */
745
+ function _fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
746
+ list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
747
+
748
+ // Avoid misleading Theme Check warning.
749
+ $fn = 'translate_with_gettext_context';
750
+
751
+ return $fn( $text, $context, $text_domain );
752
+ }
753
+
754
+ #endregion
755
+
756
+ /**
757
+ * Retrieve an inline translated text by key with a context.
758
+ *
759
+ * @author Vova Feldman (@svovaf)
760
+ * @since 1.2.3
761
+ *
762
+ * @param string $text Translatable string.
763
+ * @param string $context Context information for the translators.
764
+ * @param string $key String key for overrides.
765
+ * @param string $slug Module slug for overrides.
766
+ *
767
+ * @return string
768
+ *
769
+ * @global $fs_text_overrides
770
+ */
771
+ function fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
772
+ return _fs_text_x_inline( $text, $context, $key, $slug );
773
+ }
774
+
775
+ /**
776
+ * Output a translated text by key.
777
+ *
778
+ * @author Vova Feldman (@svovaf)
779
+ * @since 1.2.1.7
780
+ *
781
+ * @param string $key
782
+ * @param string $slug
783
+ */
784
+ function fs_echo( $key, $slug = 'freemius' ) {
785
+ echo fs_text( $key, $slug );
786
+ }
787
+
788
+ /**
789
+ * Output an inline translated text.
790
+ *
791
+ * @author Vova Feldman (@svovaf)
792
+ * @since 1.2.3
793
+ *
794
+ * @param string $text Translatable string.
795
+ * @param string $key String key for overrides.
796
+ * @param string $slug Module slug for overrides.
797
+ */
798
+ function fs_echo_inline( $text, $key = '', $slug = 'freemius' ) {
799
+ echo _fs_text_inline( $text, $key, $slug );
800
+ }
801
+
802
+ /**
803
+ * Output an inline translated text with a context.
804
+ *
805
+ * @author Vova Feldman (@svovaf)
806
+ * @since 1.2.3
807
+ *
808
+ * @param string $text Translatable string.
809
+ * @param string $context Context information for the translators.
810
+ * @param string $key String key for overrides.
811
+ * @param string $slug Module slug for overrides.
812
+ */
813
+ function fs_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
814
+ echo _fs_text_x_inline( $text, $context, $key, $slug );
815
+ }
816
+ }
817
+
818
+ if ( ! function_exists( 'fs_text_override' ) ) {
819
  /**
820
  * Get a translatable text override if exists, or `false`.
821
  *
853
 
854
  return false;
855
  }
856
+ }
857
 
858
+ if ( ! function_exists( 'fs_text_and_domain' ) ) {
859
  /**
860
  * Get a translatable text and its text domain.
861
  *
885
 
886
  return array( $text, $text_domain );
887
  }
888
+ }
889
 
890
+ if ( ! function_exists( '_fs_text_inline' ) ) {
 
891
  /**
892
  * Retrieve an inline translated text by key.
893
  *
910
 
911
  return $fn( $text, $text_domain );
912
  }
913
+ }
914
 
915
+ if ( ! function_exists( 'fs_text_inline' ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
916
  /**
917
  * Retrieve an inline translated text by key.
918
  *
930
  function fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
931
  return _fs_text_inline( $text, $key, $slug );
932
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
933
  }
934
 
935
  if ( ! function_exists( 'fs_esc_attr' ) ) {
freemius/includes/i18n.php CHANGED
@@ -465,8 +465,8 @@
465
  'deactivate-plugin-title' => _fs_text( 'That\'s exhausting, please deactivate' ),
466
  'deactivate-plugin-desc' => _fs_text( 'We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future.' ),
467
  'fix-request-sent-message' => _fs_text( 'Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience.' ),
468
- 'server-blocking-access' => _fs_x( 'Your server is blocking the access to Freemius\' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s',
469
- '%1s - plugin title, %2s - API domain' ),
470
  'wrong-authentication-param-message' => _fs_text( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.' ),
471
  #endregion Connectivity Issues
472
  #region Change Owner
465
  'deactivate-plugin-title' => _fs_text( 'That\'s exhausting, please deactivate' ),
466
  'deactivate-plugin-desc' => _fs_text( 'We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future.' ),
467
  'fix-request-sent-message' => _fs_text( 'Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience.' ),
468
+ 'server-blocking-access' => _fs_x( 'Your server is blocking the access to Freemius\' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s',
469
+ '%1$s - plugin title, %2$s - API domain' ),
470
  'wrong-authentication-param-message' => _fs_text( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.' ),
471
  #endregion Connectivity Issues
472
  #region Change Owner
freemius/includes/managers/class-fs-admin-menu-manager.php CHANGED
@@ -181,11 +181,6 @@
181
 
182
  // @deprecated
183
  $this->_type = $this->get_option( $menu, 'type', 'page' );
184
-
185
- $this->_first_time_path = $this->get_option( $menu, 'first-path', false );
186
- if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
187
- $this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
188
- }
189
  }
190
 
191
  $this->_is_override_exact = $this->get_bool_option( $menu, 'override_exact' );
@@ -208,6 +203,11 @@
208
  // 'page'
209
  // ) );
210
  }
 
 
 
 
 
211
  }
212
  }
213
 
181
 
182
  // @deprecated
183
  $this->_type = $this->get_option( $menu, 'type', 'page' );
 
 
 
 
 
184
  }
185
 
186
  $this->_is_override_exact = $this->get_bool_option( $menu, 'override_exact' );
203
  // 'page'
204
  // ) );
205
  }
206
+
207
+ $this->_first_time_path = $this->get_option( $menu, 'first-path', false );
208
+ if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
209
+ $this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
210
+ }
211
  }
212
  }
213
 
freemius/includes/managers/class-fs-admin-notice-manager.php CHANGED
@@ -219,6 +219,9 @@
219
  return;
220
  }
221
 
 
 
 
222
  foreach ( $this->_notices as $id => $msg ) {
223
  if ( isset( $msg['wp_user_id'] ) && is_numeric( $msg['wp_user_id'] ) ) {
224
  if ( get_current_user_id() != $msg['wp_user_id'] ) {
@@ -261,7 +264,7 @@
261
  $show_notice = call_user_func_array( 'fs_apply_filter', array(
262
  $this->_module_unique_affix,
263
  'show_admin_notice',
264
- true,
265
  $msg
266
  ) );
267
 
@@ -287,6 +290,34 @@
287
  fs_enqueue_local_style( 'fs_common', '/admin/common.css' );
288
  }
289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  /**
291
  * Add admin message to admin messages queue, and hook to admin_notices / all_admin_notices if not yet hooked.
292
  *
219
  return;
220
  }
221
 
222
+
223
+ $show_admin_notices = ( ! $this->is_gutenberg_page() );
224
+
225
  foreach ( $this->_notices as $id => $msg ) {
226
  if ( isset( $msg['wp_user_id'] ) && is_numeric( $msg['wp_user_id'] ) ) {
227
  if ( get_current_user_id() != $msg['wp_user_id'] ) {
264
  $show_notice = call_user_func_array( 'fs_apply_filter', array(
265
  $this->_module_unique_affix,
266
  'show_admin_notice',
267
+ $show_admin_notices,
268
  $msg
269
  ) );
270
 
290
  fs_enqueue_local_style( 'fs_common', '/admin/common.css' );
291
  }
292
 
293
+ /**
294
+ * Check if the current page is the Gutenberg block editor.
295
+ *
296
+ * @author Vova Feldman (@svovaf)
297
+ * @since 2.2.3
298
+ *
299
+ * @return bool
300
+ */
301
+ function is_gutenberg_page() {
302
+ if ( function_exists( 'is_gutenberg_page' ) &&
303
+ is_gutenberg_page()
304
+ ) {
305
+ // The Gutenberg plugin is on.
306
+ return true;
307
+ }
308
+
309
+ $current_screen = get_current_screen();
310
+
311
+ if ( method_exists( $current_screen, 'is_block_editor' ) &&
312
+ $current_screen->is_block_editor()
313
+ ) {
314
+ // Gutenberg page on 5+.
315
+ return true;
316
+ }
317
+
318
+ return false;
319
+ }
320
+
321
  /**
322
  * Add admin message to admin messages queue, and hook to admin_notices / all_admin_notices if not yet hooked.
323
  *
freemius/languages/freemius-da_DK.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Joachim Jensen, 2016-2018
@@ -22,772 +22,772 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php:1602
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
- #: includes/class-freemius.php:1604
30
  msgid "Error"
31
  msgstr "Fejl"
32
 
33
- #: includes/class-freemius.php:1925
34
  msgid "I found a better %s"
35
  msgstr "Jeg fandt et bedre %s"
36
 
37
- #: includes/class-freemius.php:1927
38
  msgid "What's the %s's name?"
39
  msgstr "Hvad er navnet på %s?"
40
 
41
- #: includes/class-freemius.php:1933
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
44
 
45
- #: includes/class-freemius.php:1935
46
  msgid "Deactivation"
47
  msgstr "Deaktivering"
48
 
49
- #: includes/class-freemius.php:1936
50
  msgid "Theme Switch"
51
  msgstr "Temaskift"
52
 
53
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "Andet"
56
 
57
- #: includes/class-freemius.php:1953
58
  msgid "I no longer need the %s"
59
  msgstr "Jeg har ikke længere brug for %s"
60
 
61
- #: includes/class-freemius.php:1960
62
  msgid "I only needed the %s for a short period"
63
  msgstr "Jeg behøvede kun %s i en kort periode"
64
 
65
- #: includes/class-freemius.php:1966
66
  msgid "The %s broke my site"
67
  msgstr "%s ødelagde min webside"
68
 
69
- #: includes/class-freemius.php:1973
70
  msgid "The %s suddenly stopped working"
71
  msgstr "%s stoppede pludseligt med at virke"
72
 
73
- #: includes/class-freemius.php:1983
74
  msgid "I can't pay for it anymore"
75
  msgstr "Jeg kan ikke længere betale for det"
76
 
77
- #: includes/class-freemius.php:1985
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "Hvilken pris ville du foretrække at betale?"
80
 
81
- #: includes/class-freemius.php:1991
82
  msgid "I don't like to share my information with you"
83
  msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
84
 
85
- #: includes/class-freemius.php:2012
86
  msgid "The %s didn't work"
87
  msgstr "%s virkede ikke"
88
 
89
- #: includes/class-freemius.php:2022
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
92
 
93
- #: includes/class-freemius.php:2030
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
96
 
97
- #: includes/class-freemius.php:2032
98
  msgid "What feature?"
99
  msgstr "Hvilken feature?"
100
 
101
- #: includes/class-freemius.php:2036
102
  msgid "The %s is not working"
103
  msgstr "%s virker ikke"
104
 
105
- #: includes/class-freemius.php:2038
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "Kindly share what didn't work so we can fix it for future users..."
108
 
109
- #: includes/class-freemius.php:2042
110
  msgid "It's not what I was looking for"
111
  msgstr "Det er ikke, hvad jeg søgte"
112
 
113
- #: includes/class-freemius.php:2044
114
  msgid "What you've been looking for?"
115
  msgstr "Hvad har du ledt efter?"
116
 
117
- #: includes/class-freemius.php:2048
118
  msgid "The %s didn't work as expected"
119
  msgstr "%s virkede ikke som forventet"
120
 
121
- #: includes/class-freemius.php:2050
122
  msgid "What did you expect?"
123
  msgstr "Hvad forventede du?"
124
 
125
- #: includes/class-freemius.php2853, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "Freemius Debug"
128
 
129
- #: includes/class-freemius.php:3581
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
132
 
133
- #: includes/class-freemius.php:3583
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
136
 
137
- #: includes/class-freemius.php:3590
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
- #: includes/class-freemius.php:3695
142
  msgid "Yes - do your thing"
143
  msgstr "Ja - fortsæt bare"
144
 
145
- #: includes/class-freemius.php:3700
146
  msgid "No - just deactivate"
147
  msgstr "Nej - bare deaktiver"
148
 
149
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
- #: includes/class-freemius.php18705, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "Ups"
159
 
160
- #: includes/class-freemius.php:3814
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed."
163
 
164
- #: includes/class-freemius.php:4250
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s virker ikke uden %s."
168
 
169
- #: includes/class-freemius.php:4251
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "%s virker ikke uden pluginnet."
173
 
174
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
- #: includes/class-freemius.php:17659
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
- #: includes/class-freemius.php:5006
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium-versionen af %s blev aktiveret."
182
 
183
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
- #: includes/class-freemius.php:5033
189
  msgid "You have a %s license."
190
  msgstr "Du har en %s licens."
191
 
192
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
- #: includes/class-freemius.php:17413
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "Yee-haw"
199
 
200
- #: includes/class-freemius.php:5301
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
 
204
- #: includes/class-freemius.php:5305
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
- #: includes/class-freemius.php5314, templates/add-ons.php103,
209
  #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "Mere information om %s"
212
 
213
- #: includes/class-freemius.php:5315
214
  msgid "Purchase License"
215
  msgstr "Køb licens"
216
 
217
- #: includes/class-freemius.php6230, templates/connect.php:163
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
 
221
- #: includes/class-freemius.php:6234
222
  msgid "start the trial"
223
  msgstr "start prøveperioden"
224
 
225
- #: includes/class-freemius.php6235, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "færdiggør installeringen"
228
 
229
- #: includes/class-freemius.php:6348
230
  msgid "You are just one step away - %s"
231
  msgstr "Du mangler kun ét skridt - %s"
232
 
233
- #: includes/class-freemius.php:6351
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "Færdiggør aktivering af \"%s\" nu"
237
 
238
- #: includes/class-freemius.php:6429
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "Vi har foretaget nogle rettelser til %s, %s"
241
 
242
- #: includes/class-freemius.php:6433
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt in to make \"%s\" better!"
245
 
246
- #: includes/class-freemius.php:6861
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "Opgraderingen af %s blev fuldendt."
249
 
250
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
- #: includes/class-fs-plugin-updater.php1077,
252
- #: includes/class-fs-plugin-updater.php1084,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Tilføjelse"
256
 
257
- #: includes/class-freemius.php8707, templates/debug.php359,
258
  #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "Plugin"
261
 
262
- #: includes/class-freemius.php8708, templates/debug.php359,
263
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
  msgid "Theme"
265
  msgstr "Tema"
266
 
267
- #: includes/class-freemius.php:11183
268
  msgid "Invalid site details collection."
269
  msgstr "Invalid site details collection."
270
 
271
- #: includes/class-freemius.php:11303
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
274
 
275
- #: includes/class-freemius.php:11305
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
278
 
279
- #: includes/class-freemius.php:11541
280
  msgid "Account is pending activation."
281
  msgstr "Konto afventer aktivering."
282
 
283
- #: includes/class-freemius.php11653,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Buy a license now"
287
 
288
- #: includes/class-freemius.php11665,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Renew your license now"
292
 
293
- #: includes/class-freemius.php:11669
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%s to access version %s security & feature updates, and support."
296
 
297
- #: includes/class-freemius.php:14052
298
  msgid "%s activation was successfully completed."
299
  msgstr "Aktivering af %s blev gennemført."
300
 
301
- #: includes/class-freemius.php:14066
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "Din konto blev aktiveret med planen %s."
304
 
305
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
  msgid "Your trial has been successfully started."
307
  msgstr "Din prøveperiode er begyndt."
308
 
309
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
- #: includes/class-freemius.php:14761
311
  msgid "Couldn't activate %s."
312
  msgstr "Kunne ikke aktivere %s."
313
 
314
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
- #: includes/class-freemius.php:14762
316
  msgid "Please contact us with the following message:"
317
  msgstr "Kontakt os venligst med følgende besked:"
318
 
319
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
  msgid "Upgrade"
321
  msgstr "Opgrader"
322
 
323
- #: includes/class-freemius.php:15117
324
  msgid "Start Trial"
325
  msgstr "Start prøveperiode"
326
 
327
- #: includes/class-freemius.php:15119
328
  msgid "Pricing"
329
  msgstr "Priser"
330
 
331
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
  msgid "Affiliation"
333
  msgstr "Affiliation"
334
 
335
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
  #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "Konto"
339
 
340
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "Kontakt os"
344
 
345
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
- #: includes/class-freemius.php19553, templates/account.php100,
347
  #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Tilføjelser"
350
 
351
- #: includes/class-freemius.php:15274
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
- #: includes/class-freemius.php:15274
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
- #: includes/class-freemius.php15276, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "Priser"
365
 
366
- #: includes/class-freemius.php15479,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "Supportforum"
370
 
371
- #: includes/class-freemius.php:16265
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
374
 
375
- #: includes/class-freemius.php:16266
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "Sådan"
379
 
380
- #: includes/class-freemius.php:16888
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "Your %s Add-on plan was successfully upgraded."
383
 
384
- #: includes/class-freemius.php:16890
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
387
 
388
- #: includes/class-freemius.php:16893
389
  msgid "Download the latest version"
390
  msgstr "Download den seneste version"
391
 
392
- #: includes/class-freemius.php:16965
393
  msgctxt "%1s - plugin title, %2s - API domain"
394
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
 
397
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
- #: includes/class-freemius.php:17461
399
  msgid "Error received from the server:"
400
  msgstr "Fejl modtager fra serveren:"
401
 
402
- #: includes/class-freemius.php:16978
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
 
406
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "Hmm"
411
 
412
- #: includes/class-freemius.php:17173
413
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
 
416
- #: includes/class-freemius.php17174, templates/account.php102,
417
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "Prøveperiode"
421
 
422
- #: includes/class-freemius.php:17179
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
425
 
426
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
  msgid "Please contact us here"
428
  msgstr "Kontakt os her"
429
 
430
- #: includes/class-freemius.php:17193
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "Din plan er blevet opgraderet."
433
 
434
- #: includes/class-freemius.php:17211
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "Din plan er blevet ændret til %s."
437
 
438
- #: includes/class-freemius.php:17227
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
441
 
442
- #: includes/class-freemius.php:17229
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
445
 
446
- #: includes/class-freemius.php:17237
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
449
 
450
- #: includes/class-freemius.php:17250
451
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
  msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
453
 
454
- #: includes/class-freemius.php:17273
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
457
 
458
- #: includes/class-freemius.php:17275
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
 
462
- #: includes/class-freemius.php:17380
463
  msgid "It looks like the license could not be activated."
464
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
465
 
466
- #: includes/class-freemius.php:17410
467
  msgid "Your license was successfully activated."
468
  msgstr "Din licens er blevet aktiveret."
469
 
470
- #: includes/class-freemius.php:17436
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
473
 
474
- #: includes/class-freemius.php:17460
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
477
 
478
- #: includes/class-freemius.php:17488
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
481
 
482
- #: includes/class-freemius.php:17489
483
  msgid "O.K"
484
  msgstr "O.K"
485
 
486
- #: includes/class-freemius.php:17542
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
 
490
- #: includes/class-freemius.php:17551
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
 
494
- #: includes/class-freemius.php:17593
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "Du benytter allerede %s under en prøveperiode."
497
 
498
- #: includes/class-freemius.php:17604
499
  msgid "You already utilized a trial before."
500
  msgstr "Du har allerede brugt din prøveperiode."
501
 
502
- #: includes/class-freemius.php:17618
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
505
 
506
- #: includes/class-freemius.php:17629
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "Plan %s understøtter ikke en prøveperiode."
509
 
510
- #: includes/class-freemius.php:17640
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "None of the %s's plans supports a trial period."
513
 
514
- #: includes/class-freemius.php:17690
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
517
 
518
- #: includes/class-freemius.php:17726
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
521
 
522
- #: includes/class-freemius.php:17745
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
525
 
526
- #: includes/class-freemius.php:18052
527
  msgid "Version %s was released."
528
  msgstr "Version %s er blevet udgivet."
529
 
530
- #: includes/class-freemius.php:18052
531
  msgid "Please download %s."
532
  msgstr "Download venligst %s."
533
 
534
- #: includes/class-freemius.php:18059
535
  msgid "the latest %s version here"
536
  msgstr "den seneste version af %s her"
537
 
538
- #: includes/class-freemius.php:18064
539
  msgid "New"
540
  msgstr "Ny"
541
 
542
- #: includes/class-freemius.php:18069
543
  msgid "Seems like you got the latest release."
544
  msgstr "Det ser ud til, at du har den seneste udgivelse."
545
 
546
- #: includes/class-freemius.php:18070
547
  msgid "You are all good!"
548
  msgstr "Det var det!"
549
 
550
- #: includes/class-freemius.php:18338
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
 
554
- #: includes/class-freemius.php:18473
555
  msgid "Site successfully opted in."
556
  msgstr "Websted er tilmeldt."
557
 
558
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
  msgid "Awesome"
560
  msgstr "Sejt"
561
 
562
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
565
 
566
- #: includes/class-freemius.php:18491
567
  msgid "Thank you!"
568
  msgstr "Mange tak!"
569
 
570
- #: includes/class-freemius.php:18498
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
573
 
574
- #: includes/class-freemius.php:18627
575
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
 
578
- #: includes/class-freemius.php:18633
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
581
 
582
- #: includes/class-freemius.php:18638
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s er den nye ejer af kontoen."
585
 
586
- #: includes/class-freemius.php:18640
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "Tillykke"
590
 
591
- #: includes/class-freemius.php:18660
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
 
595
- #: includes/class-freemius.php:18661
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
 
599
- #: includes/class-freemius.php:18668
600
  msgid "Change Ownership"
601
  msgstr "Skift ejerskab"
602
 
603
- #: includes/class-freemius.php:18676
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
606
 
607
- #: includes/class-freemius.php:18688
608
  msgid "Please provide your full name."
609
  msgstr "Indtast venligst dit fulde navn."
610
 
611
- #: includes/class-freemius.php:18693
612
  msgid "Your name was successfully updated."
613
  msgstr "Dit navn er blevet opdateret."
614
 
615
- #: includes/class-freemius.php:18754
616
  msgid "You have successfully updated your %s."
617
  msgstr "Opdatering af %s blev gennemført."
618
 
619
- #: includes/class-freemius.php:18894
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
 
623
- #: includes/class-freemius.php:18895
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "Se her"
627
 
628
- #: includes/class-freemius.php:19325
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "Hey"
632
 
633
- #: includes/class-freemius.php:19325
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
636
 
637
- #: includes/class-freemius.php:19333
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
640
 
641
- #: includes/class-freemius.php:19334
642
  msgid "No credit card required"
643
  msgstr "Betalingskort ikke påkrævet"
644
 
645
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "Start gratis prøveperiode"
649
 
650
- #: includes/class-freemius.php:19418
651
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
 
654
- #: includes/class-freemius.php:19427
655
  msgid "Learn more"
656
  msgstr "Læs mere"
657
 
658
- #: includes/class-freemius.php19577, templates/account.php406,
659
  #: templates/account.php509, templates/connect.php171,
660
  #: templates/connect.php421, templates/forms/license-activation.php24,
661
  #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "Aktiver licens"
664
 
665
- #: includes/class-freemius.php19578, templates/account.php469,
666
  #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "Skift licens"
669
 
670
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Frameld"
673
 
674
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Tilmeld"
679
 
680
- #: includes/class-freemius.php:19891
681
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
 
684
- #: includes/class-freemius.php:19899
685
  msgid "Activate %s features"
686
  msgstr "Activate %s features"
687
 
688
- #: includes/class-freemius.php:19912
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
691
 
692
- #: includes/class-freemius.php:19916
693
  msgid "Download the latest %s version"
694
  msgstr "Download den seneste version af %s"
695
 
696
- #: includes/class-freemius.php:19920
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "Upload og aktiver den downloadede version"
699
 
700
- #: includes/class-freemius.php:19922
701
  msgid "How to upload and activate?"
702
  msgstr "Upload og aktivering, hvordan?"
703
 
704
- #: includes/class-freemius.php:20056
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
 
708
- #: includes/class-freemius.php:20217
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
711
 
712
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
713
- #: includes/class-fs-plugin-updater.php1056,
714
- #: includes/class-fs-plugin-updater.php:1070
715
  msgid "Invalid module ID."
716
  msgstr "Ugyldigt modul-ID."
717
 
718
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
719
  msgid "Premium version already active."
720
  msgstr "Premium version allerede aktiv."
721
 
722
- #: includes/class-freemius.php:20243
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
725
 
726
- #: includes/class-freemius.php:20250
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
 
730
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium tilføjelse er allerede installeret."
733
 
734
- #: includes/class-freemius.php:20613
735
  msgid "View paid features"
736
  msgstr "Vis betalte features"
737
 
738
- #: includes/class-freemius.php:20927
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Thank you so much for using %s and its add-ons!"
741
 
742
- #: includes/class-freemius.php:20928
743
  msgid "Thank you so much for using %s!"
744
  msgstr "Tak fordi du benytter %s!"
745
 
746
- #: includes/class-freemius.php:20934
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
749
 
750
- #: includes/class-freemius.php:20938
751
  msgid "Thank you so much for using our products!"
752
  msgstr "Mange tak for at benytte vores produkter!"
753
 
754
- #: includes/class-freemius.php:20939
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
757
 
758
- #: includes/class-freemius.php:20958
759
  msgid "%s and its add-ons"
760
  msgstr "%s og tilføjelser"
761
 
762
- #: includes/class-freemius.php:20967
763
  msgid "Products"
764
  msgstr "Produkter"
765
 
766
- #: includes/class-freemius.php20974, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "Ja"
769
 
770
- #: includes/class-freemius.php20975, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
773
 
774
- #: includes/class-freemius.php20976, templates/connect.php:278
775
  msgid "No"
776
  msgstr "Nej"
777
 
778
- #: includes/class-freemius.php20978, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
781
 
782
- #: includes/class-freemius.php:20988
783
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
  msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
785
 
786
- #: includes/class-freemius.php20990, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
789
 
790
- #: includes/class-freemius.php:21272
791
  msgid "License key is empty."
792
  msgstr "Licensnøglen er tom."
793
 
@@ -809,19 +809,19 @@ msgstr "There is a %s of %s available."
809
  msgid "new version"
810
  msgstr "new version"
811
 
812
- #: includes/class-fs-plugin-updater.php:301
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Important Upgrade Notice:"
815
 
816
- #: includes/class-fs-plugin-updater.php:1121
817
  msgid "Installing plugin: %s"
818
  msgstr "Installerer plugin: %s"
819
 
820
- #: includes/class-fs-plugin-updater.php:1162
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
 
824
- #: includes/class-fs-plugin-updater.php:1335
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Joachim Jensen, 2016-2018
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php:1688
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
+ #: includes/class-freemius.php:1690
30
  msgid "Error"
31
  msgstr "Fejl"
32
 
33
+ #: includes/class-freemius.php:2011
34
  msgid "I found a better %s"
35
  msgstr "Jeg fandt et bedre %s"
36
 
37
+ #: includes/class-freemius.php:2013
38
  msgid "What's the %s's name?"
39
  msgstr "Hvad er navnet på %s?"
40
 
41
+ #: includes/class-freemius.php:2019
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
44
 
45
+ #: includes/class-freemius.php:2021
46
  msgid "Deactivation"
47
  msgstr "Deaktivering"
48
 
49
+ #: includes/class-freemius.php:2022
50
  msgid "Theme Switch"
51
  msgstr "Temaskift"
52
 
53
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "Andet"
56
 
57
+ #: includes/class-freemius.php:2039
58
  msgid "I no longer need the %s"
59
  msgstr "Jeg har ikke længere brug for %s"
60
 
61
+ #: includes/class-freemius.php:2046
62
  msgid "I only needed the %s for a short period"
63
  msgstr "Jeg behøvede kun %s i en kort periode"
64
 
65
+ #: includes/class-freemius.php:2052
66
  msgid "The %s broke my site"
67
  msgstr "%s ødelagde min webside"
68
 
69
+ #: includes/class-freemius.php:2059
70
  msgid "The %s suddenly stopped working"
71
  msgstr "%s stoppede pludseligt med at virke"
72
 
73
+ #: includes/class-freemius.php:2069
74
  msgid "I can't pay for it anymore"
75
  msgstr "Jeg kan ikke længere betale for det"
76
 
77
+ #: includes/class-freemius.php:2071
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "Hvilken pris ville du foretrække at betale?"
80
 
81
+ #: includes/class-freemius.php:2077
82
  msgid "I don't like to share my information with you"
83
  msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
84
 
85
+ #: includes/class-freemius.php:2098
86
  msgid "The %s didn't work"
87
  msgstr "%s virkede ikke"
88
 
89
+ #: includes/class-freemius.php:2108
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
92
 
93
+ #: includes/class-freemius.php:2116
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
96
 
97
+ #: includes/class-freemius.php:2118
98
  msgid "What feature?"
99
  msgstr "Hvilken feature?"
100
 
101
+ #: includes/class-freemius.php:2122
102
  msgid "The %s is not working"
103
  msgstr "%s virker ikke"
104
 
105
+ #: includes/class-freemius.php:2124
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "Kindly share what didn't work so we can fix it for future users..."
108
 
109
+ #: includes/class-freemius.php:2128
110
  msgid "It's not what I was looking for"
111
  msgstr "Det er ikke, hvad jeg søgte"
112
 
113
+ #: includes/class-freemius.php:2130
114
  msgid "What you've been looking for?"
115
  msgstr "Hvad har du ledt efter?"
116
 
117
+ #: includes/class-freemius.php:2134
118
  msgid "The %s didn't work as expected"
119
  msgstr "%s virkede ikke som forventet"
120
 
121
+ #: includes/class-freemius.php:2136
122
  msgid "What did you expect?"
123
  msgstr "Hvad forventede du?"
124
 
125
+ #: includes/class-freemius.php2942, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "Freemius Debug"
128
 
129
+ #: includes/class-freemius.php:3670
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
132
 
133
+ #: includes/class-freemius.php:3672
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
136
 
137
+ #: includes/class-freemius.php:3679
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
+ #: includes/class-freemius.php:3784
142
  msgid "Yes - do your thing"
143
  msgstr "Ja - fortsæt bare"
144
 
145
+ #: includes/class-freemius.php:3789
146
  msgid "No - just deactivate"
147
  msgstr "Nej - bare deaktiver"
148
 
149
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
150
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
151
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
152
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
153
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
154
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
155
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "Ups"
159
 
160
+ #: includes/class-freemius.php:3903
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed."
163
 
164
+ #: includes/class-freemius.php:4340
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s virker ikke uden %s."
168
 
169
+ #: includes/class-freemius.php:4341
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "%s virker ikke uden pluginnet."
173
 
174
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
175
+ #: includes/class-freemius.php:17953
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
+ #: includes/class-freemius.php:5130
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium-versionen af %s blev aktiveret."
182
 
183
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
+ #: includes/class-freemius.php:5157
189
  msgid "You have a %s license."
190
  msgstr "Du har en %s licens."
191
 
192
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
193
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
194
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
195
+ #: includes/class-freemius.php:17707
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "Yee-haw"
199
 
200
+ #: includes/class-freemius.php:5425
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
 
204
+ #: includes/class-freemius.php:5429
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
209
  #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "Mere information om %s"
212
 
213
+ #: includes/class-freemius.php:5439
214
  msgid "Purchase License"
215
  msgstr "Køb licens"
216
 
217
+ #: includes/class-freemius.php6372, templates/connect.php:163
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
 
221
+ #: includes/class-freemius.php:6376
222
  msgid "start the trial"
223
  msgstr "start prøveperioden"
224
 
225
+ #: includes/class-freemius.php6377, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "færdiggør installeringen"
228
 
229
+ #: includes/class-freemius.php:6490
230
  msgid "You are just one step away - %s"
231
  msgstr "Du mangler kun ét skridt - %s"
232
 
233
+ #: includes/class-freemius.php:6493
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "Færdiggør aktivering af \"%s\" nu"
237
 
238
+ #: includes/class-freemius.php:6571
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "Vi har foretaget nogle rettelser til %s, %s"
241
 
242
+ #: includes/class-freemius.php:6575
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt in to make \"%s\" better!"
245
 
246
+ #: includes/class-freemius.php:7003
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "Opgraderingen af %s blev fuldendt."
249
 
250
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
251
+ #: includes/class-fs-plugin-updater.php1081,
252
+ #: includes/class-fs-plugin-updater.php1088,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Tilføjelse"
256
 
257
+ #: includes/class-freemius.php8927, templates/debug.php359,
258
  #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "Plugin"
261
 
262
+ #: includes/class-freemius.php8928, templates/debug.php359,
263
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
  msgid "Theme"
265
  msgstr "Tema"
266
 
267
+ #: includes/class-freemius.php:11412
268
  msgid "Invalid site details collection."
269
  msgstr "Invalid site details collection."
270
 
271
+ #: includes/class-freemius.php:11532
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
274
 
275
+ #: includes/class-freemius.php:11534
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
278
 
279
+ #: includes/class-freemius.php:11808
280
  msgid "Account is pending activation."
281
  msgstr "Konto afventer aktivering."
282
 
283
+ #: includes/class-freemius.php11920,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Buy a license now"
287
 
288
+ #: includes/class-freemius.php11932,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Renew your license now"
292
 
293
+ #: includes/class-freemius.php:11936
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%s to access version %s security & feature updates, and support."
296
 
297
+ #: includes/class-freemius.php:14319
298
  msgid "%s activation was successfully completed."
299
  msgstr "Aktivering af %s blev gennemført."
300
 
301
+ #: includes/class-freemius.php:14333
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "Din konto blev aktiveret med planen %s."
304
 
305
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
306
  msgid "Your trial has been successfully started."
307
  msgstr "Din prøveperiode er begyndt."
308
 
309
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
310
+ #: includes/class-freemius.php:15028
311
  msgid "Couldn't activate %s."
312
  msgstr "Kunne ikke aktivere %s."
313
 
314
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
315
+ #: includes/class-freemius.php:15029
316
  msgid "Please contact us with the following message:"
317
  msgstr "Kontakt os venligst med følgende besked:"
318
 
319
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
320
  msgid "Upgrade"
321
  msgstr "Opgrader"
322
 
323
+ #: includes/class-freemius.php:15384
324
  msgid "Start Trial"
325
  msgstr "Start prøveperiode"
326
 
327
+ #: includes/class-freemius.php:15386
328
  msgid "Pricing"
329
  msgstr "Priser"
330
 
331
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
332
  msgid "Affiliation"
333
  msgstr "Affiliation"
334
 
335
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
336
  #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "Konto"
339
 
340
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "Kontakt os"
344
 
345
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
346
+ #: includes/class-freemius.php19849, templates/account.php100,
347
  #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Tilføjelser"
350
 
351
+ #: includes/class-freemius.php:15541
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
+ #: includes/class-freemius.php:15541
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
+ #: includes/class-freemius.php15543, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "Priser"
365
 
366
+ #: includes/class-freemius.php15756,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "Supportforum"
370
 
371
+ #: includes/class-freemius.php:16542
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
374
 
375
+ #: includes/class-freemius.php:16543
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "Sådan"
379
 
380
+ #: includes/class-freemius.php:17168
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "Your %s Add-on plan was successfully upgraded."
383
 
384
+ #: includes/class-freemius.php:17170
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
387
 
388
+ #: includes/class-freemius.php:17173
389
  msgid "Download the latest version"
390
  msgstr "Download den seneste version"
391
 
392
+ #: includes/class-freemius.php:17259
393
  msgctxt "%1s - plugin title, %2s - API domain"
394
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
 
397
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
398
+ #: includes/class-freemius.php:17755
399
  msgid "Error received from the server:"
400
  msgstr "Fejl modtager fra serveren:"
401
 
402
+ #: includes/class-freemius.php:17272
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
 
406
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
407
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "Hmm"
411
 
412
+ #: includes/class-freemius.php:17467
413
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
 
416
+ #: includes/class-freemius.php17468, templates/account.php102,
417
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "Prøveperiode"
421
 
422
+ #: includes/class-freemius.php:17473
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
425
 
426
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
427
  msgid "Please contact us here"
428
  msgstr "Kontakt os her"
429
 
430
+ #: includes/class-freemius.php:17487
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "Din plan er blevet opgraderet."
433
 
434
+ #: includes/class-freemius.php:17505
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "Din plan er blevet ændret til %s."
437
 
438
+ #: includes/class-freemius.php:17521
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
441
 
442
+ #: includes/class-freemius.php:17523
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
445
 
446
+ #: includes/class-freemius.php:17531
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
449
 
450
+ #: includes/class-freemius.php:17544
451
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
  msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
453
 
454
+ #: includes/class-freemius.php:17567
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
457
 
458
+ #: includes/class-freemius.php:17569
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
 
462
+ #: includes/class-freemius.php:17674
463
  msgid "It looks like the license could not be activated."
464
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
465
 
466
+ #: includes/class-freemius.php:17704
467
  msgid "Your license was successfully activated."
468
  msgstr "Din licens er blevet aktiveret."
469
 
470
+ #: includes/class-freemius.php:17730
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
473
 
474
+ #: includes/class-freemius.php:17754
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
477
 
478
+ #: includes/class-freemius.php:17782
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
481
 
482
+ #: includes/class-freemius.php:17783
483
  msgid "O.K"
484
  msgstr "O.K"
485
 
486
+ #: includes/class-freemius.php:17836
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
 
490
+ #: includes/class-freemius.php:17845
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
 
494
+ #: includes/class-freemius.php:17887
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "Du benytter allerede %s under en prøveperiode."
497
 
498
+ #: includes/class-freemius.php:17898
499
  msgid "You already utilized a trial before."
500
  msgstr "Du har allerede brugt din prøveperiode."
501
 
502
+ #: includes/class-freemius.php:17912
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
505
 
506
+ #: includes/class-freemius.php:17923
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "Plan %s understøtter ikke en prøveperiode."
509
 
510
+ #: includes/class-freemius.php:17934
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "None of the %s's plans supports a trial period."
513
 
514
+ #: includes/class-freemius.php:17984
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
517
 
518
+ #: includes/class-freemius.php:18020
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
521
 
522
+ #: includes/class-freemius.php:18039
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
525
 
526
+ #: includes/class-freemius.php:18346
527
  msgid "Version %s was released."
528
  msgstr "Version %s er blevet udgivet."
529
 
530
+ #: includes/class-freemius.php:18346
531
  msgid "Please download %s."
532
  msgstr "Download venligst %s."
533
 
534
+ #: includes/class-freemius.php:18353
535
  msgid "the latest %s version here"
536
  msgstr "den seneste version af %s her"
537
 
538
+ #: includes/class-freemius.php:18358
539
  msgid "New"
540
  msgstr "Ny"
541
 
542
+ #: includes/class-freemius.php:18363
543
  msgid "Seems like you got the latest release."
544
  msgstr "Det ser ud til, at du har den seneste udgivelse."
545
 
546
+ #: includes/class-freemius.php:18364
547
  msgid "You are all good!"
548
  msgstr "Det var det!"
549
 
550
+ #: includes/class-freemius.php:18632
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
 
554
+ #: includes/class-freemius.php:18769
555
  msgid "Site successfully opted in."
556
  msgstr "Websted er tilmeldt."
557
 
558
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
559
  msgid "Awesome"
560
  msgstr "Sejt"
561
 
562
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
565
 
566
+ #: includes/class-freemius.php:18787
567
  msgid "Thank you!"
568
  msgstr "Mange tak!"
569
 
570
+ #: includes/class-freemius.php:18794
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
573
 
574
+ #: includes/class-freemius.php:18923
575
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
 
578
+ #: includes/class-freemius.php:18929
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
581
 
582
+ #: includes/class-freemius.php:18934
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s er den nye ejer af kontoen."
585
 
586
+ #: includes/class-freemius.php:18936
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "Tillykke"
590
 
591
+ #: includes/class-freemius.php:18956
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
 
595
+ #: includes/class-freemius.php:18957
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
 
599
+ #: includes/class-freemius.php:18964
600
  msgid "Change Ownership"
601
  msgstr "Skift ejerskab"
602
 
603
+ #: includes/class-freemius.php:18972
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
606
 
607
+ #: includes/class-freemius.php:18984
608
  msgid "Please provide your full name."
609
  msgstr "Indtast venligst dit fulde navn."
610
 
611
+ #: includes/class-freemius.php:18989
612
  msgid "Your name was successfully updated."
613
  msgstr "Dit navn er blevet opdateret."
614
 
615
+ #: includes/class-freemius.php:19050
616
  msgid "You have successfully updated your %s."
617
  msgstr "Opdatering af %s blev gennemført."
618
 
619
+ #: includes/class-freemius.php:19190
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
 
623
+ #: includes/class-freemius.php:19191
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "Se her"
627
 
628
+ #: includes/class-freemius.php:19621
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "Hey"
632
 
633
+ #: includes/class-freemius.php:19621
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
636
 
637
+ #: includes/class-freemius.php:19629
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
640
 
641
+ #: includes/class-freemius.php:19630
642
  msgid "No credit card required"
643
  msgstr "Betalingskort ikke påkrævet"
644
 
645
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "Start gratis prøveperiode"
649
 
650
+ #: includes/class-freemius.php:19714
651
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
 
654
+ #: includes/class-freemius.php:19723
655
  msgid "Learn more"
656
  msgstr "Læs mere"
657
 
658
+ #: includes/class-freemius.php19873, templates/account.php406,
659
  #: templates/account.php509, templates/connect.php171,
660
  #: templates/connect.php421, templates/forms/license-activation.php24,
661
  #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "Aktiver licens"
664
 
665
+ #: includes/class-freemius.php19874, templates/account.php469,
666
  #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "Skift licens"
669
 
670
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Frameld"
673
 
674
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Tilmeld"
679
 
680
+ #: includes/class-freemius.php:20187
681
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
 
684
+ #: includes/class-freemius.php:20195
685
  msgid "Activate %s features"
686
  msgstr "Activate %s features"
687
 
688
+ #: includes/class-freemius.php:20208
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
691
 
692
+ #: includes/class-freemius.php:20212
693
  msgid "Download the latest %s version"
694
  msgstr "Download den seneste version af %s"
695
 
696
+ #: includes/class-freemius.php:20216
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "Upload og aktiver den downloadede version"
699
 
700
+ #: includes/class-freemius.php:20218
701
  msgid "How to upload and activate?"
702
  msgstr "Upload og aktivering, hvordan?"
703
 
704
+ #: includes/class-freemius.php:20352
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
 
708
+ #: includes/class-freemius.php:20513
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
711
 
712
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
713
+ #: includes/class-fs-plugin-updater.php1060,
714
+ #: includes/class-fs-plugin-updater.php:1074
715
  msgid "Invalid module ID."
716
  msgstr "Ugyldigt modul-ID."
717
 
718
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
719
  msgid "Premium version already active."
720
  msgstr "Premium version allerede aktiv."
721
 
722
+ #: includes/class-freemius.php:20539
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
725
 
726
+ #: includes/class-freemius.php:20546
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
 
730
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium tilføjelse er allerede installeret."
733
 
734
+ #: includes/class-freemius.php:20909
735
  msgid "View paid features"
736
  msgstr "Vis betalte features"
737
 
738
+ #: includes/class-freemius.php:21229
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Thank you so much for using %s and its add-ons!"
741
 
742
+ #: includes/class-freemius.php:21230
743
  msgid "Thank you so much for using %s!"
744
  msgstr "Tak fordi du benytter %s!"
745
 
746
+ #: includes/class-freemius.php:21236
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
749
 
750
+ #: includes/class-freemius.php:21240
751
  msgid "Thank you so much for using our products!"
752
  msgstr "Mange tak for at benytte vores produkter!"
753
 
754
+ #: includes/class-freemius.php:21241
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
757
 
758
+ #: includes/class-freemius.php:21260
759
  msgid "%s and its add-ons"
760
  msgstr "%s og tilføjelser"
761
 
762
+ #: includes/class-freemius.php:21269
763
  msgid "Products"
764
  msgstr "Produkter"
765
 
766
+ #: includes/class-freemius.php21276, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "Ja"
769
 
770
+ #: includes/class-freemius.php21277, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
773
 
774
+ #: includes/class-freemius.php21278, templates/connect.php:278
775
  msgid "No"
776
  msgstr "Nej"
777
 
778
+ #: includes/class-freemius.php21280, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
781
 
782
+ #: includes/class-freemius.php:21290
783
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
  msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
785
 
786
+ #: includes/class-freemius.php21292, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
789
 
790
+ #: includes/class-freemius.php:21574
791
  msgid "License key is empty."
792
  msgstr "Licensnøglen er tom."
793
 
809
  msgid "new version"
810
  msgstr "new version"
811
 
812
+ #: includes/class-fs-plugin-updater.php:305
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Important Upgrade Notice:"
815
 
816
+ #: includes/class-fs-plugin-updater.php:1125
817
  msgid "Installing plugin: %s"
818
  msgstr "Installerer plugin: %s"
819
 
820
+ #: includes/class-fs-plugin-updater.php:1166
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
 
824
+ #: includes/class-fs-plugin-updater.php:1348
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
 
freemius/languages/freemius-en.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
@@ -19,736 +19,736 @@ msgstr ""
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
- #: includes/class-freemius.php:1602
23
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
24
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
25
 
26
- #: includes/class-freemius.php:1604
27
  msgid "Error"
28
  msgstr "Error"
29
 
30
- #: includes/class-freemius.php:1925
31
  msgid "I found a better %s"
32
  msgstr "I found a better %s"
33
 
34
- #: includes/class-freemius.php:1927
35
  msgid "What's the %s's name?"
36
  msgstr "What's the %s's name?"
37
 
38
- #: includes/class-freemius.php:1933
39
  msgid "It's a temporary %s. I'm just debugging an issue."
40
  msgstr "It's a temporary %s. I'm just debugging an issue."
41
 
42
- #: includes/class-freemius.php:1935
43
  msgid "Deactivation"
44
  msgstr "Deactivation"
45
 
46
- #: includes/class-freemius.php:1936
47
  msgid "Theme Switch"
48
  msgstr "Theme Switch"
49
 
50
- #: includes/class-freemius.php:1945, templates/forms/resend-key.php:24
51
  msgid "Other"
52
  msgstr "Other"
53
 
54
- #: includes/class-freemius.php:1953
55
  msgid "I no longer need the %s"
56
  msgstr "I no longer need the %s"
57
 
58
- #: includes/class-freemius.php:1960
59
  msgid "I only needed the %s for a short period"
60
  msgstr "I only needed the %s for a short period"
61
 
62
- #: includes/class-freemius.php:1966
63
  msgid "The %s broke my site"
64
  msgstr "The %s broke my site"
65
 
66
- #: includes/class-freemius.php:1973
67
  msgid "The %s suddenly stopped working"
68
  msgstr "The %s suddenly stopped working"
69
 
70
- #: includes/class-freemius.php:1983
71
  msgid "I can't pay for it anymore"
72
  msgstr "I can't pay for it anymore"
73
 
74
- #: includes/class-freemius.php:1985
75
  msgid "What price would you feel comfortable paying?"
76
  msgstr "What price would you feel comfortable paying?"
77
 
78
- #: includes/class-freemius.php:1991
79
  msgid "I don't like to share my information with you"
80
  msgstr "I don't like to share my information with you"
81
 
82
- #: includes/class-freemius.php:2012
83
  msgid "The %s didn't work"
84
  msgstr "The %s didn't work"
85
 
86
- #: includes/class-freemius.php:2022
87
  msgid "I couldn't understand how to make it work"
88
  msgstr "I couldn't understand how to make it work"
89
 
90
- #: includes/class-freemius.php:2030
91
  msgid "The %s is great, but I need specific feature that you don't support"
92
  msgstr "The %s is great, but I need specific feature that you don't support"
93
 
94
- #: includes/class-freemius.php:2032
95
  msgid "What feature?"
96
  msgstr "What feature?"
97
 
98
- #: includes/class-freemius.php:2036
99
  msgid "The %s is not working"
100
  msgstr "The %s is not working"
101
 
102
- #: includes/class-freemius.php:2038
103
  msgid "Kindly share what didn't work so we can fix it for future users..."
104
  msgstr "Kindly share what didn't work so we can fix it for future users..."
105
 
106
- #: includes/class-freemius.php:2042
107
  msgid "It's not what I was looking for"
108
  msgstr "It's not what I was looking for"
109
 
110
- #: includes/class-freemius.php:2044
111
  msgid "What you've been looking for?"
112
  msgstr "What you've been looking for?"
113
 
114
- #: includes/class-freemius.php:2048
115
  msgid "The %s didn't work as expected"
116
  msgstr "The %s didn't work as expected"
117
 
118
- #: includes/class-freemius.php:2050
119
  msgid "What did you expect?"
120
  msgstr "What did you expect?"
121
 
122
- #: includes/class-freemius.php:2853, templates/debug.php:20
123
  msgid "Freemius Debug"
124
  msgstr "Freemius Debug"
125
 
126
- #: includes/class-freemius.php:3581
127
  msgid "I don't know what is cURL or how to install it, help me!"
128
  msgstr "I don't know what is cURL or how to install it, help me!"
129
 
130
- #: includes/class-freemius.php:3583
131
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
132
  msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
133
 
134
- #: includes/class-freemius.php:3590
135
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
136
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
137
 
138
- #: includes/class-freemius.php:3695
139
  msgid "Yes - do your thing"
140
  msgstr "Yes - do your thing"
141
 
142
- #: includes/class-freemius.php:3700
143
  msgid "No - just deactivate"
144
  msgstr "No - just deactivate"
145
 
146
- #: includes/class-freemius.php:3745, includes/class-freemius.php:4253, includes/class-freemius.php:5318, includes/class-freemius.php:11316, includes/class-freemius.php:14649, includes/class-freemius.php:14701, includes/class-freemius.php:14763, includes/class-freemius.php:16969, includes/class-freemius.php:16979, includes/class-freemius.php:17588, includes/class-freemius.php:18446, includes/class-freemius.php:18561, includes/class-freemius.php:18705, templates/add-ons.php:43
147
  msgctxt "exclamation"
148
  msgid "Oops"
149
  msgstr "Oops"
150
 
151
- #: includes/class-freemius.php:3814
152
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
153
  msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
154
 
155
- #: includes/class-freemius.php:4250
156
  msgctxt "addonX cannot run without pluginY"
157
  msgid "%s cannot run without %s."
158
  msgstr "%s cannot run without %s."
159
 
160
- #: includes/class-freemius.php:4251
161
  msgctxt "addonX cannot run..."
162
  msgid "%s cannot run without the plugin."
163
  msgstr "%s cannot run without the plugin."
164
 
165
- #: includes/class-freemius.php:4363, includes/class-freemius.php:4388, includes/class-freemius.php:17659
166
  msgid "Unexpected API error. Please contact the %s's author with the following error."
167
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
168
 
169
- #: includes/class-freemius.php:5006
170
  msgid "Premium %s version was successfully activated."
171
  msgstr "Premium %s version was successfully activated."
172
 
173
- #: includes/class-freemius.php:5018, includes/class-freemius.php:6862
174
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
175
  msgid "W00t"
176
  msgstr "W00t"
177
 
178
- #: includes/class-freemius.php:5033
179
  msgid "You have a %s license."
180
  msgstr "You have a %s license."
181
 
182
- #: includes/class-freemius.php:5037, includes/class-freemius.php:14070, includes/class-freemius.php:14081, includes/class-freemius.php:16897, includes/class-freemius.php:17197, includes/class-freemius.php:17263, includes/class-freemius.php:17413
183
  msgctxt "interjection expressing joy or exuberance"
184
  msgid "Yee-haw"
185
  msgstr "Yee-haw"
186
 
187
- #: includes/class-freemius.php:5301
188
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
189
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
190
 
191
- #: includes/class-freemius.php:5305
192
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
193
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
194
 
195
- #: includes/class-freemius.php:5314, templates/add-ons.php:103, templates/account/partials/addon.php:288
196
  msgid "More information about %s"
197
  msgstr "More information about %s"
198
 
199
- #: includes/class-freemius.php:5315
200
  msgid "Purchase License"
201
  msgstr "Purchase License"
202
 
203
- #: includes/class-freemius.php:6230, templates/connect.php:163
204
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
205
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
206
 
207
- #: includes/class-freemius.php:6234
208
  msgid "start the trial"
209
  msgstr "start the trial"
210
 
211
- #: includes/class-freemius.php:6235, templates/connect.php:167
212
  msgid "complete the install"
213
  msgstr "complete the install"
214
 
215
- #: includes/class-freemius.php:6348
216
  msgid "You are just one step away - %s"
217
  msgstr "You are just one step away - %s"
218
 
219
- #: includes/class-freemius.php:6351
220
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
221
  msgid "Complete \"%s\" Activation Now"
222
  msgstr "Complete \"%s\" Activation Now"
223
 
224
- #: includes/class-freemius.php:6429
225
  msgid "We made a few tweaks to the %s, %s"
226
  msgstr "We made a few tweaks to the %s, %s"
227
 
228
- #: includes/class-freemius.php:6433
229
  msgid "Opt in to make \"%s\" better!"
230
  msgstr "Opt in to make \"%s\" better!"
231
 
232
- #: includes/class-freemius.php:6861
233
  msgid "The upgrade of %s was successfully completed."
234
  msgstr "The upgrade of %s was successfully completed."
235
 
236
- #: includes/class-freemius.php:8705, includes/class-fs-plugin-updater.php:882, includes/class-fs-plugin-updater.php:1077, includes/class-fs-plugin-updater.php:1084, templates/auto-installation.php:32
237
  msgid "Add-On"
238
  msgstr "Add-On"
239
 
240
- #: includes/class-freemius.php:8707, templates/debug.php:359, templates/debug.php:520
241
  msgid "Plugin"
242
  msgstr "Plugin"
243
 
244
- #: includes/class-freemius.php:8708, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
245
  msgid "Theme"
246
  msgstr "Theme"
247
 
248
- #: includes/class-freemius.php:11183
249
  msgid "Invalid site details collection."
250
  msgstr "Invalid site details collection."
251
 
252
- #: includes/class-freemius.php:11303
253
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
254
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
255
 
256
- #: includes/class-freemius.php:11305
257
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
258
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
259
 
260
- #: includes/class-freemius.php:11541
261
  msgid "Account is pending activation."
262
  msgstr "Account is pending activation."
263
 
264
- #: includes/class-freemius.php:11653, templates/forms/premium-versions-upgrade-handler.php:47
265
  msgid "Buy a license now"
266
  msgstr "Buy a license now"
267
 
268
- #: includes/class-freemius.php:11665, templates/forms/premium-versions-upgrade-handler.php:46
269
  msgid "Renew your license now"
270
  msgstr "Renew your license now"
271
 
272
- #: includes/class-freemius.php:11669
273
  msgid "%s to access version %s security & feature updates, and support."
274
  msgstr "%s to access version %s security & feature updates, and support."
275
 
276
- #: includes/class-freemius.php:14052
277
  msgid "%s activation was successfully completed."
278
  msgstr "%s activation was successfully completed."
279
 
280
- #: includes/class-freemius.php:14066
281
  msgid "Your account was successfully activated with the %s plan."
282
  msgstr "Your account was successfully activated with the %s plan."
283
 
284
- #: includes/class-freemius.php:14077, includes/class-freemius.php:17259
285
  msgid "Your trial has been successfully started."
286
  msgstr "Your trial has been successfully started."
287
 
288
- #: includes/class-freemius.php:14647, includes/class-freemius.php:14699, includes/class-freemius.php:14761
289
  msgid "Couldn't activate %s."
290
  msgstr "Couldn't activate %s."
291
 
292
- #: includes/class-freemius.php:14648, includes/class-freemius.php:14700, includes/class-freemius.php:14762
293
  msgid "Please contact us with the following message:"
294
  msgstr "Please contact us with the following message:"
295
 
296
- #: includes/class-freemius.php:15111, includes/class-freemius.php:19543
297
  msgid "Upgrade"
298
  msgstr "Upgrade"
299
 
300
- #: includes/class-freemius.php:15117
301
  msgid "Start Trial"
302
  msgstr "Start Trial"
303
 
304
- #: includes/class-freemius.php:15119
305
  msgid "Pricing"
306
  msgstr "Pricing"
307
 
308
- #: includes/class-freemius.php:15181, includes/class-freemius.php:15183
309
  msgid "Affiliation"
310
  msgstr "Affiliation"
311
 
312
- #: includes/class-freemius.php:15211, includes/class-freemius.php:15213, templates/account.php:150, templates/debug.php:324
313
  msgid "Account"
314
  msgstr "Account"
315
 
316
- #: includes/class-freemius.php:15226, includes/class-freemius.php:15228, includes/customizer/class-fs-customizer-support-section.php:60
317
  msgid "Contact Us"
318
  msgstr "Contact Us"
319
 
320
- #: includes/class-freemius.php:15238, includes/class-freemius.php:15240, includes/class-freemius.php:19553, templates/account.php:100, templates/account/partials/addon.php:41
321
  msgid "Add-Ons"
322
  msgstr "Add-Ons"
323
 
324
- #: includes/class-freemius.php:15274
325
  msgctxt "ASCII arrow left icon"
326
  msgid "&#x2190;"
327
  msgstr "&#x2190;"
328
 
329
- #: includes/class-freemius.php:15274
330
  msgctxt "ASCII arrow right icon"
331
  msgid "&#x27a4;"
332
  msgstr "&#x27a4;"
333
 
334
- #: includes/class-freemius.php:15276, templates/pricing.php:97
335
  msgctxt "noun"
336
  msgid "Pricing"
337
  msgstr "Pricing"
338
 
339
- #: includes/class-freemius.php:15479, includes/customizer/class-fs-customizer-support-section.php:67
340
  msgid "Support Forum"
341
  msgstr "Support Forum"
342
 
343
- #: includes/class-freemius.php:16265
344
  msgid "Your email has been successfully verified - you are AWESOME!"
345
  msgstr "Your email has been successfully verified - you are AWESOME!"
346
 
347
- #: includes/class-freemius.php:16266
348
  msgctxt "a positive response"
349
  msgid "Right on"
350
  msgstr "Right on"
351
 
352
- #: includes/class-freemius.php:16888
353
  msgid "Your %s Add-on plan was successfully upgraded."
354
  msgstr "Your %s Add-on plan was successfully upgraded."
355
 
356
- #: includes/class-freemius.php:16890
357
  msgid "%s Add-on was successfully purchased."
358
  msgstr "%s Add-on was successfully purchased."
359
 
360
- #: includes/class-freemius.php:16893
361
  msgid "Download the latest version"
362
  msgstr "Download the latest version"
363
 
364
- #: includes/class-freemius.php:16965
365
  msgctxt "%1s - plugin title, %2s - API domain"
366
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
368
 
369
- #: includes/class-freemius.php:16968, includes/class-freemius.php:17384, includes/class-freemius.php:17461
370
  msgid "Error received from the server:"
371
  msgstr "Error received from the server:"
372
 
373
- #: includes/class-freemius.php:16978
374
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
 
377
- #: includes/class-freemius.php:17160, includes/class-freemius.php:17389, includes/class-freemius.php:17432, includes/class-freemius.php:17535
378
  msgctxt "something somebody says when they are thinking about what you have just said."
379
  msgid "Hmm"
380
  msgstr "Hmm"
381
 
382
- #: includes/class-freemius.php:17173
383
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
384
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
 
386
- #: includes/class-freemius.php:17174, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
387
  msgctxt "trial period"
388
  msgid "Trial"
389
  msgstr "Trial"
390
 
391
- #: includes/class-freemius.php:17179
392
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
393
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
 
395
- #: includes/class-freemius.php:17183, includes/class-freemius.php:17241
396
  msgid "Please contact us here"
397
  msgstr "Please contact us here"
398
 
399
- #: includes/class-freemius.php:17193
400
  msgid "Your plan was successfully upgraded."
401
  msgstr "Your plan was successfully upgraded."
402
 
403
- #: includes/class-freemius.php:17211
404
  msgid "Your plan was successfully changed to %s."
405
  msgstr "Your plan was successfully changed to %s."
406
 
407
- #: includes/class-freemius.php:17227
408
  msgid "Your license has expired. You can still continue using the free %s forever."
409
  msgstr "Your license has expired. You can still continue using the free %s forever."
410
 
411
- #: includes/class-freemius.php:17229
412
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
413
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
414
 
415
- #: includes/class-freemius.php:17237
416
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
417
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
418
 
419
- #: includes/class-freemius.php:17250
420
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
421
  msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
422
 
423
- #: includes/class-freemius.php:17273
424
  msgid "Your free trial has expired. You can still continue using all our free features."
425
  msgstr "Your free trial has expired. You can still continue using all our free features."
426
 
427
- #: includes/class-freemius.php:17275
428
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
429
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
430
 
431
- #: includes/class-freemius.php:17380
432
  msgid "It looks like the license could not be activated."
433
  msgstr "It looks like the license could not be activated."
434
 
435
- #: includes/class-freemius.php:17410
436
  msgid "Your license was successfully activated."
437
  msgstr "Your license was successfully activated."
438
 
439
- #: includes/class-freemius.php:17436
440
  msgid "It looks like your site currently doesn't have an active license."
441
  msgstr "It looks like your site currently doesn't have an active license."
442
 
443
- #: includes/class-freemius.php:17460
444
  msgid "It looks like the license deactivation failed."
445
  msgstr "It looks like the license deactivation failed."
446
 
447
- #: includes/class-freemius.php:17488
448
  msgid "Your license was successfully deactivated, you are back to the %s plan."
449
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
450
 
451
- #: includes/class-freemius.php:17489
452
  msgid "O.K"
453
  msgstr "O.K"
454
 
455
- #: includes/class-freemius.php:17542
456
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
457
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
458
 
459
- #: includes/class-freemius.php:17551
460
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
461
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
462
 
463
- #: includes/class-freemius.php:17593
464
  msgid "You are already running the %s in a trial mode."
465
  msgstr "You are already running the %s in a trial mode."
466
 
467
- #: includes/class-freemius.php:17604
468
  msgid "You already utilized a trial before."
469
  msgstr "You already utilized a trial before."
470
 
471
- #: includes/class-freemius.php:17618
472
  msgid "Plan %s do not exist, therefore, can't start a trial."
473
  msgstr "Plan %s do not exist, therefore, can't start a trial."
474
 
475
- #: includes/class-freemius.php:17629
476
  msgid "Plan %s does not support a trial period."
477
  msgstr "Plan %s does not support a trial period."
478
 
479
- #: includes/class-freemius.php:17640
480
  msgid "None of the %s's plans supports a trial period."
481
  msgstr "None of the %s's plans supports a trial period."
482
 
483
- #: includes/class-freemius.php:17690
484
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
485
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
486
 
487
- #: includes/class-freemius.php:17726
488
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
489
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
490
 
491
- #: includes/class-freemius.php:17745
492
  msgid "Your %s free trial was successfully cancelled."
493
  msgstr "Your %s free trial was successfully cancelled."
494
 
495
- #: includes/class-freemius.php:18052
496
  msgid "Version %s was released."
497
  msgstr "Version %s was released."
498
 
499
- #: includes/class-freemius.php:18052
500
  msgid "Please download %s."
501
  msgstr "Please download %s."
502
 
503
- #: includes/class-freemius.php:18059
504
  msgid "the latest %s version here"
505
  msgstr "the latest %s version here"
506
 
507
- #: includes/class-freemius.php:18064
508
  msgid "New"
509
  msgstr "New"
510
 
511
- #: includes/class-freemius.php:18069
512
  msgid "Seems like you got the latest release."
513
  msgstr "Seems like you got the latest release."
514
 
515
- #: includes/class-freemius.php:18070
516
  msgid "You are all good!"
517
  msgstr "You are all good!"
518
 
519
- #: includes/class-freemius.php:18338
520
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
521
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
522
 
523
- #: includes/class-freemius.php:18473
524
  msgid "Site successfully opted in."
525
  msgstr "Site successfully opted in."
526
 
527
- #: includes/class-freemius.php:18474, includes/class-freemius.php:19285
528
  msgid "Awesome"
529
  msgstr "Awesome"
530
 
531
- #: includes/class-freemius.php:18490, templates/forms/optout.php:32
532
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
533
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
534
 
535
- #: includes/class-freemius.php:18491
536
  msgid "Thank you!"
537
  msgstr "Thank you!"
538
 
539
- #: includes/class-freemius.php:18498
540
  msgid "We will no longer be sending any usage data of %s on %s to %s."
541
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
542
 
543
- #: includes/class-freemius.php:18627
544
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
545
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
546
 
547
- #: includes/class-freemius.php:18633
548
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
549
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
550
 
551
- #: includes/class-freemius.php:18638
552
  msgid "%s is the new owner of the account."
553
  msgstr "%s is the new owner of the account."
554
 
555
- #: includes/class-freemius.php:18640
556
  msgctxt "as congratulations"
557
  msgid "Congrats"
558
  msgstr "Congrats"
559
 
560
- #: includes/class-freemius.php:18660
561
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
562
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
563
 
564
- #: includes/class-freemius.php:18661
565
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
566
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
567
 
568
- #: includes/class-freemius.php:18668
569
  msgid "Change Ownership"
570
  msgstr "Change Ownership"
571
 
572
- #: includes/class-freemius.php:18676
573
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
574
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
575
 
576
- #: includes/class-freemius.php:18688
577
  msgid "Please provide your full name."
578
  msgstr "Please provide your full name."
579
 
580
- #: includes/class-freemius.php:18693
581
  msgid "Your name was successfully updated."
582
  msgstr "Your name was successfully updated."
583
 
584
- #: includes/class-freemius.php:18754
585
  msgid "You have successfully updated your %s."
586
  msgstr "You have successfully updated your %s."
587
 
588
- #: includes/class-freemius.php:18894
589
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
590
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
591
 
592
- #: includes/class-freemius.php:18895
593
  msgctxt "advance notice of something that will need attention."
594
  msgid "Heads up"
595
  msgstr "Heads up"
596
 
597
- #: includes/class-freemius.php:19325
598
  msgctxt "exclamation"
599
  msgid "Hey"
600
  msgstr "Hey"
601
 
602
- #: includes/class-freemius.php:19325
603
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
604
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
605
 
606
- #: includes/class-freemius.php:19333
607
  msgid "No commitment for %s days - cancel anytime!"
608
  msgstr "No commitment for %s days - cancel anytime!"
609
 
610
- #: includes/class-freemius.php:19334
611
  msgid "No credit card required"
612
  msgstr "No credit card required"
613
 
614
- #: includes/class-freemius.php:19341, templates/forms/trial-start.php:53
615
  msgctxt "call to action"
616
  msgid "Start free trial"
617
  msgstr "Start free trial"
618
 
619
- #: includes/class-freemius.php:19418
620
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
621
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
622
 
623
- #: includes/class-freemius.php:19427
624
  msgid "Learn more"
625
  msgstr "Learn more"
626
 
627
- #: includes/class-freemius.php:19577, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
628
  msgid "Activate License"
629
  msgstr "Activate License"
630
 
631
- #: includes/class-freemius.php:19578, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
632
  msgid "Change License"
633
  msgstr "Change License"
634
 
635
- #: includes/class-freemius.php:19660, templates/account/partials/site.php:161
636
  msgid "Opt Out"
637
  msgstr "Opt Out"
638
 
639
- #: includes/class-freemius.php:19662, includes/class-freemius.php:19667, templates/account/partials/site.php:43, templates/account/partials/site.php:161
640
  msgid "Opt In"
641
  msgstr "Opt In"
642
 
643
- #: includes/class-freemius.php:19891
644
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
645
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
646
 
647
- #: includes/class-freemius.php:19899
648
  msgid "Activate %s features"
649
  msgstr "Activate %s features"
650
 
651
- #: includes/class-freemius.php:19912
652
  msgid "Please follow these steps to complete the upgrade"
653
  msgstr "Please follow these steps to complete the upgrade"
654
 
655
- #: includes/class-freemius.php:19916
656
  msgid "Download the latest %s version"
657
  msgstr "Download the latest %s version"
658
 
659
- #: includes/class-freemius.php:19920
660
  msgid "Upload and activate the downloaded version"
661
  msgstr "Upload and activate the downloaded version"
662
 
663
- #: includes/class-freemius.php:19922
664
  msgid "How to upload and activate?"
665
  msgstr "How to upload and activate?"
666
 
667
- #: includes/class-freemius.php:20056
668
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
669
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
670
 
671
- #: includes/class-freemius.php:20217
672
  msgid "Auto installation only works for opted-in users."
673
  msgstr "Auto installation only works for opted-in users."
674
 
675
- #: includes/class-freemius.php:20227, includes/class-freemius.php:20260, includes/class-fs-plugin-updater.php:1056, includes/class-fs-plugin-updater.php:1070
676
  msgid "Invalid module ID."
677
  msgstr "Invalid module ID."
678
 
679
- #: includes/class-freemius.php:20236, includes/class-fs-plugin-updater.php:1092
680
  msgid "Premium version already active."
681
  msgstr "Premium version already active."
682
 
683
- #: includes/class-freemius.php:20243
684
  msgid "You do not have a valid license to access the premium version."
685
  msgstr "You do not have a valid license to access the premium version."
686
 
687
- #: includes/class-freemius.php:20250
688
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
689
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
690
 
691
- #: includes/class-freemius.php:20268, includes/class-fs-plugin-updater.php:1091
692
  msgid "Premium add-on version already installed."
693
  msgstr "Premium add-on version already installed."
694
 
695
- #: includes/class-freemius.php:20613
696
  msgid "View paid features"
697
  msgstr "View paid features"
698
 
699
- #: includes/class-freemius.php:20927
700
  msgid "Thank you so much for using %s and its add-ons!"
701
  msgstr "Thank you so much for using %s and its add-ons!"
702
 
703
- #: includes/class-freemius.php:20928
704
  msgid "Thank you so much for using %s!"
705
  msgstr "Thank you so much for using %s!"
706
 
707
- #: includes/class-freemius.php:20934
708
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
709
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
710
 
711
- #: includes/class-freemius.php:20938
712
  msgid "Thank you so much for using our products!"
713
  msgstr "Thank you so much for using our products!"
714
 
715
- #: includes/class-freemius.php:20939
716
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
717
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
718
 
719
- #: includes/class-freemius.php:20958
720
  msgid "%s and its add-ons"
721
  msgstr "%s and its add-ons"
722
 
723
- #: includes/class-freemius.php:20967
724
  msgid "Products"
725
  msgstr "Products"
726
 
727
- #: includes/class-freemius.php:20974, templates/connect.php:272
728
  msgid "Yes"
729
  msgstr "Yes"
730
 
731
- #: includes/class-freemius.php:20975, templates/connect.php:273
732
  msgid "send me security & feature updates, educational content and offers."
733
  msgstr "send me security & feature updates, educational content and offers."
734
 
735
- #: includes/class-freemius.php:20976, templates/connect.php:278
736
  msgid "No"
737
  msgstr "No"
738
 
739
- #: includes/class-freemius.php:20978, templates/connect.php:280
740
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
741
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
742
 
743
- #: includes/class-freemius.php:20988
744
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
745
  msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
746
 
747
- #: includes/class-freemius.php:20990, templates/connect.php:287
748
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
749
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
750
 
751
- #: includes/class-freemius.php:21272
752
  msgid "License key is empty."
753
  msgstr "License key is empty."
754
 
@@ -768,19 +768,19 @@ msgstr "There is a %s of %s available."
768
  msgid "new version"
769
  msgstr "new version"
770
 
771
- #: includes/class-fs-plugin-updater.php:301
772
  msgid "Important Upgrade Notice:"
773
  msgstr "Important Upgrade Notice:"
774
 
775
- #: includes/class-fs-plugin-updater.php:1121
776
  msgid "Installing plugin: %s"
777
  msgstr "Installing plugin: %s"
778
 
779
- #: includes/class-fs-plugin-updater.php:1162
780
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
781
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
782
 
783
- #: includes/class-fs-plugin-updater.php:1335
784
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
785
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
786
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
+ #: includes/class-freemius.php:1688
23
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
24
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
25
 
26
+ #: includes/class-freemius.php:1690
27
  msgid "Error"
28
  msgstr "Error"
29
 
30
+ #: includes/class-freemius.php:2011
31
  msgid "I found a better %s"
32
  msgstr "I found a better %s"
33
 
34
+ #: includes/class-freemius.php:2013
35
  msgid "What's the %s's name?"
36
  msgstr "What's the %s's name?"
37
 
38
+ #: includes/class-freemius.php:2019
39
  msgid "It's a temporary %s. I'm just debugging an issue."
40
  msgstr "It's a temporary %s. I'm just debugging an issue."
41
 
42
+ #: includes/class-freemius.php:2021
43
  msgid "Deactivation"
44
  msgstr "Deactivation"
45
 
46
+ #: includes/class-freemius.php:2022
47
  msgid "Theme Switch"
48
  msgstr "Theme Switch"
49
 
50
+ #: includes/class-freemius.php:2031, templates/forms/resend-key.php:24
51
  msgid "Other"
52
  msgstr "Other"
53
 
54
+ #: includes/class-freemius.php:2039
55
  msgid "I no longer need the %s"
56
  msgstr "I no longer need the %s"
57
 
58
+ #: includes/class-freemius.php:2046
59
  msgid "I only needed the %s for a short period"
60
  msgstr "I only needed the %s for a short period"
61
 
62
+ #: includes/class-freemius.php:2052
63
  msgid "The %s broke my site"
64
  msgstr "The %s broke my site"
65
 
66
+ #: includes/class-freemius.php:2059
67
  msgid "The %s suddenly stopped working"
68
  msgstr "The %s suddenly stopped working"
69
 
70
+ #: includes/class-freemius.php:2069
71
  msgid "I can't pay for it anymore"
72
  msgstr "I can't pay for it anymore"
73
 
74
+ #: includes/class-freemius.php:2071
75
  msgid "What price would you feel comfortable paying?"
76
  msgstr "What price would you feel comfortable paying?"
77
 
78
+ #: includes/class-freemius.php:2077
79
  msgid "I don't like to share my information with you"
80
  msgstr "I don't like to share my information with you"
81
 
82
+ #: includes/class-freemius.php:2098
83
  msgid "The %s didn't work"
84
  msgstr "The %s didn't work"
85
 
86
+ #: includes/class-freemius.php:2108
87
  msgid "I couldn't understand how to make it work"
88
  msgstr "I couldn't understand how to make it work"
89
 
90
+ #: includes/class-freemius.php:2116
91
  msgid "The %s is great, but I need specific feature that you don't support"
92
  msgstr "The %s is great, but I need specific feature that you don't support"
93
 
94
+ #: includes/class-freemius.php:2118
95
  msgid "What feature?"
96
  msgstr "What feature?"
97
 
98
+ #: includes/class-freemius.php:2122
99
  msgid "The %s is not working"
100
  msgstr "The %s is not working"
101
 
102
+ #: includes/class-freemius.php:2124
103
  msgid "Kindly share what didn't work so we can fix it for future users..."
104
  msgstr "Kindly share what didn't work so we can fix it for future users..."
105
 
106
+ #: includes/class-freemius.php:2128
107
  msgid "It's not what I was looking for"
108
  msgstr "It's not what I was looking for"
109
 
110
+ #: includes/class-freemius.php:2130
111
  msgid "What you've been looking for?"
112
  msgstr "What you've been looking for?"
113
 
114
+ #: includes/class-freemius.php:2134
115
  msgid "The %s didn't work as expected"
116
  msgstr "The %s didn't work as expected"
117
 
118
+ #: includes/class-freemius.php:2136
119
  msgid "What did you expect?"
120
  msgstr "What did you expect?"
121
 
122
+ #: includes/class-freemius.php:2942, templates/debug.php:20
123
  msgid "Freemius Debug"
124
  msgstr "Freemius Debug"
125
 
126
+ #: includes/class-freemius.php:3670
127
  msgid "I don't know what is cURL or how to install it, help me!"
128
  msgstr "I don't know what is cURL or how to install it, help me!"
129
 
130
+ #: includes/class-freemius.php:3672
131
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
132
  msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
133
 
134
+ #: includes/class-freemius.php:3679
135
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
136
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
137
 
138
+ #: includes/class-freemius.php:3784
139
  msgid "Yes - do your thing"
140
  msgstr "Yes - do your thing"
141
 
142
+ #: includes/class-freemius.php:3789
143
  msgid "No - just deactivate"
144
  msgstr "No - just deactivate"
145
 
146
+ #: includes/class-freemius.php:3834, includes/class-freemius.php:4343, includes/class-freemius.php:5442, includes/class-freemius.php:11545, includes/class-freemius.php:14916, includes/class-freemius.php:14968, includes/class-freemius.php:15030, includes/class-freemius.php:17263, includes/class-freemius.php:17273, includes/class-freemius.php:17882, includes/class-freemius.php:18742, includes/class-freemius.php:18857, includes/class-freemius.php:19001, templates/add-ons.php:43
147
  msgctxt "exclamation"
148
  msgid "Oops"
149
  msgstr "Oops"
150
 
151
+ #: includes/class-freemius.php:3903
152
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
153
  msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
154
 
155
+ #: includes/class-freemius.php:4340
156
  msgctxt "addonX cannot run without pluginY"
157
  msgid "%s cannot run without %s."
158
  msgstr "%s cannot run without %s."
159
 
160
+ #: includes/class-freemius.php:4341
161
  msgctxt "addonX cannot run..."
162
  msgid "%s cannot run without the plugin."
163
  msgstr "%s cannot run without the plugin."
164
 
165
+ #: includes/class-freemius.php:4487, includes/class-freemius.php:4512, includes/class-freemius.php:17953
166
  msgid "Unexpected API error. Please contact the %s's author with the following error."
167
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
168
 
169
+ #: includes/class-freemius.php:5130
170
  msgid "Premium %s version was successfully activated."
171
  msgstr "Premium %s version was successfully activated."
172
 
173
+ #: includes/class-freemius.php:5142, includes/class-freemius.php:7004
174
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
175
  msgid "W00t"
176
  msgstr "W00t"
177
 
178
+ #: includes/class-freemius.php:5157
179
  msgid "You have a %s license."
180
  msgstr "You have a %s license."
181
 
182
+ #: includes/class-freemius.php:5161, includes/class-freemius.php:14337, includes/class-freemius.php:14348, includes/class-freemius.php:17177, includes/class-freemius.php:17491, includes/class-freemius.php:17557, includes/class-freemius.php:17707
183
  msgctxt "interjection expressing joy or exuberance"
184
  msgid "Yee-haw"
185
  msgstr "Yee-haw"
186
 
187
+ #: includes/class-freemius.php:5425
188
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
189
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
190
 
191
+ #: includes/class-freemius.php:5429
192
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
193
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
194
 
195
+ #: includes/class-freemius.php:5438, templates/add-ons.php:103, templates/account/partials/addon.php:288
196
  msgid "More information about %s"
197
  msgstr "More information about %s"
198
 
199
+ #: includes/class-freemius.php:5439
200
  msgid "Purchase License"
201
  msgstr "Purchase License"
202
 
203
+ #: includes/class-freemius.php:6372, templates/connect.php:163
204
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
205
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
206
 
207
+ #: includes/class-freemius.php:6376
208
  msgid "start the trial"
209
  msgstr "start the trial"
210
 
211
+ #: includes/class-freemius.php:6377, templates/connect.php:167
212
  msgid "complete the install"
213
  msgstr "complete the install"
214
 
215
+ #: includes/class-freemius.php:6490
216
  msgid "You are just one step away - %s"
217
  msgstr "You are just one step away - %s"
218
 
219
+ #: includes/class-freemius.php:6493
220
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
221
  msgid "Complete \"%s\" Activation Now"
222
  msgstr "Complete \"%s\" Activation Now"
223
 
224
+ #: includes/class-freemius.php:6571
225
  msgid "We made a few tweaks to the %s, %s"
226
  msgstr "We made a few tweaks to the %s, %s"
227
 
228
+ #: includes/class-freemius.php:6575
229
  msgid "Opt in to make \"%s\" better!"
230
  msgstr "Opt in to make \"%s\" better!"
231
 
232
+ #: includes/class-freemius.php:7003
233
  msgid "The upgrade of %s was successfully completed."
234
  msgstr "The upgrade of %s was successfully completed."
235
 
236
+ #: includes/class-freemius.php:8925, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32
237
  msgid "Add-On"
238
  msgstr "Add-On"
239
 
240
+ #: includes/class-freemius.php:8927, templates/debug.php:359, templates/debug.php:520
241
  msgid "Plugin"
242
  msgstr "Plugin"
243
 
244
+ #: includes/class-freemius.php:8928, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
245
  msgid "Theme"
246
  msgstr "Theme"
247
 
248
+ #: includes/class-freemius.php:11412
249
  msgid "Invalid site details collection."
250
  msgstr "Invalid site details collection."
251
 
252
+ #: includes/class-freemius.php:11532
253
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
254
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
255
 
256
+ #: includes/class-freemius.php:11534
257
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
258
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
259
 
260
+ #: includes/class-freemius.php:11808
261
  msgid "Account is pending activation."
262
  msgstr "Account is pending activation."
263
 
264
+ #: includes/class-freemius.php:11920, templates/forms/premium-versions-upgrade-handler.php:47
265
  msgid "Buy a license now"
266
  msgstr "Buy a license now"
267
 
268
+ #: includes/class-freemius.php:11932, templates/forms/premium-versions-upgrade-handler.php:46
269
  msgid "Renew your license now"
270
  msgstr "Renew your license now"
271
 
272
+ #: includes/class-freemius.php:11936
273
  msgid "%s to access version %s security & feature updates, and support."
274
  msgstr "%s to access version %s security & feature updates, and support."
275
 
276
+ #: includes/class-freemius.php:14319
277
  msgid "%s activation was successfully completed."
278
  msgstr "%s activation was successfully completed."
279
 
280
+ #: includes/class-freemius.php:14333
281
  msgid "Your account was successfully activated with the %s plan."
282
  msgstr "Your account was successfully activated with the %s plan."
283
 
284
+ #: includes/class-freemius.php:14344, includes/class-freemius.php:17553
285
  msgid "Your trial has been successfully started."
286
  msgstr "Your trial has been successfully started."
287
 
288
+ #: includes/class-freemius.php:14914, includes/class-freemius.php:14966, includes/class-freemius.php:15028
289
  msgid "Couldn't activate %s."
290
  msgstr "Couldn't activate %s."
291
 
292
+ #: includes/class-freemius.php:14915, includes/class-freemius.php:14967, includes/class-freemius.php:15029
293
  msgid "Please contact us with the following message:"
294
  msgstr "Please contact us with the following message:"
295
 
296
+ #: includes/class-freemius.php:15378, includes/class-freemius.php:19839
297
  msgid "Upgrade"
298
  msgstr "Upgrade"
299
 
300
+ #: includes/class-freemius.php:15384
301
  msgid "Start Trial"
302
  msgstr "Start Trial"
303
 
304
+ #: includes/class-freemius.php:15386
305
  msgid "Pricing"
306
  msgstr "Pricing"
307
 
308
+ #: includes/class-freemius.php:15448, includes/class-freemius.php:15450
309
  msgid "Affiliation"
310
  msgstr "Affiliation"
311
 
312
+ #: includes/class-freemius.php:15478, includes/class-freemius.php:15480, templates/account.php:150, templates/debug.php:324
313
  msgid "Account"
314
  msgstr "Account"
315
 
316
+ #: includes/class-freemius.php:15493, includes/class-freemius.php:15495, includes/customizer/class-fs-customizer-support-section.php:60
317
  msgid "Contact Us"
318
  msgstr "Contact Us"
319
 
320
+ #: includes/class-freemius.php:15505, includes/class-freemius.php:15507, includes/class-freemius.php:19849, templates/account.php:100, templates/account/partials/addon.php:41
321
  msgid "Add-Ons"
322
  msgstr "Add-Ons"
323
 
324
+ #: includes/class-freemius.php:15541
325
  msgctxt "ASCII arrow left icon"
326
  msgid "&#x2190;"
327
  msgstr "&#x2190;"
328
 
329
+ #: includes/class-freemius.php:15541
330
  msgctxt "ASCII arrow right icon"
331
  msgid "&#x27a4;"
332
  msgstr "&#x27a4;"
333
 
334
+ #: includes/class-freemius.php:15543, templates/pricing.php:97
335
  msgctxt "noun"
336
  msgid "Pricing"
337
  msgstr "Pricing"
338
 
339
+ #: includes/class-freemius.php:15756, includes/customizer/class-fs-customizer-support-section.php:67
340
  msgid "Support Forum"
341
  msgstr "Support Forum"
342
 
343
+ #: includes/class-freemius.php:16542
344
  msgid "Your email has been successfully verified - you are AWESOME!"
345
  msgstr "Your email has been successfully verified - you are AWESOME!"
346
 
347
+ #: includes/class-freemius.php:16543
348
  msgctxt "a positive response"
349
  msgid "Right on"
350
  msgstr "Right on"
351
 
352
+ #: includes/class-freemius.php:17168
353
  msgid "Your %s Add-on plan was successfully upgraded."
354
  msgstr "Your %s Add-on plan was successfully upgraded."
355
 
356
+ #: includes/class-freemius.php:17170
357
  msgid "%s Add-on was successfully purchased."
358
  msgstr "%s Add-on was successfully purchased."
359
 
360
+ #: includes/class-freemius.php:17173
361
  msgid "Download the latest version"
362
  msgstr "Download the latest version"
363
 
364
+ #: includes/class-freemius.php:17259
365
  msgctxt "%1s - plugin title, %2s - API domain"
366
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
368
 
369
+ #: includes/class-freemius.php:17262, includes/class-freemius.php:17678, includes/class-freemius.php:17755
370
  msgid "Error received from the server:"
371
  msgstr "Error received from the server:"
372
 
373
+ #: includes/class-freemius.php:17272
374
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
 
377
+ #: includes/class-freemius.php:17454, includes/class-freemius.php:17683, includes/class-freemius.php:17726, includes/class-freemius.php:17829
378
  msgctxt "something somebody says when they are thinking about what you have just said."
379
  msgid "Hmm"
380
  msgstr "Hmm"
381
 
382
+ #: includes/class-freemius.php:17467
383
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
384
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
 
386
+ #: includes/class-freemius.php:17468, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
387
  msgctxt "trial period"
388
  msgid "Trial"
389
  msgstr "Trial"
390
 
391
+ #: includes/class-freemius.php:17473
392
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
393
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
 
395
+ #: includes/class-freemius.php:17477, includes/class-freemius.php:17535
396
  msgid "Please contact us here"
397
  msgstr "Please contact us here"
398
 
399
+ #: includes/class-freemius.php:17487
400
  msgid "Your plan was successfully upgraded."
401
  msgstr "Your plan was successfully upgraded."
402
 
403
+ #: includes/class-freemius.php:17505
404
  msgid "Your plan was successfully changed to %s."
405
  msgstr "Your plan was successfully changed to %s."
406
 
407
+ #: includes/class-freemius.php:17521
408
  msgid "Your license has expired. You can still continue using the free %s forever."
409
  msgstr "Your license has expired. You can still continue using the free %s forever."
410
 
411
+ #: includes/class-freemius.php:17523
412
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
413
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
414
 
415
+ #: includes/class-freemius.php:17531
416
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
417
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
418
 
419
+ #: includes/class-freemius.php:17544
420
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
421
  msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
422
 
423
+ #: includes/class-freemius.php:17567
424
  msgid "Your free trial has expired. You can still continue using all our free features."
425
  msgstr "Your free trial has expired. You can still continue using all our free features."
426
 
427
+ #: includes/class-freemius.php:17569
428
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
429
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
430
 
431
+ #: includes/class-freemius.php:17674
432
  msgid "It looks like the license could not be activated."
433
  msgstr "It looks like the license could not be activated."
434
 
435
+ #: includes/class-freemius.php:17704
436
  msgid "Your license was successfully activated."
437
  msgstr "Your license was successfully activated."
438
 
439
+ #: includes/class-freemius.php:17730
440
  msgid "It looks like your site currently doesn't have an active license."
441
  msgstr "It looks like your site currently doesn't have an active license."
442
 
443
+ #: includes/class-freemius.php:17754
444
  msgid "It looks like the license deactivation failed."
445
  msgstr "It looks like the license deactivation failed."
446
 
447
+ #: includes/class-freemius.php:17782
448
  msgid "Your license was successfully deactivated, you are back to the %s plan."
449
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
450
 
451
+ #: includes/class-freemius.php:17783
452
  msgid "O.K"
453
  msgstr "O.K"
454
 
455
+ #: includes/class-freemius.php:17836
456
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
457
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
458
 
459
+ #: includes/class-freemius.php:17845
460
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
461
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
462
 
463
+ #: includes/class-freemius.php:17887
464
  msgid "You are already running the %s in a trial mode."
465
  msgstr "You are already running the %s in a trial mode."
466
 
467
+ #: includes/class-freemius.php:17898
468
  msgid "You already utilized a trial before."
469
  msgstr "You already utilized a trial before."
470
 
471
+ #: includes/class-freemius.php:17912
472
  msgid "Plan %s do not exist, therefore, can't start a trial."
473
  msgstr "Plan %s do not exist, therefore, can't start a trial."
474
 
475
+ #: includes/class-freemius.php:17923
476
  msgid "Plan %s does not support a trial period."
477
  msgstr "Plan %s does not support a trial period."
478
 
479
+ #: includes/class-freemius.php:17934
480
  msgid "None of the %s's plans supports a trial period."
481
  msgstr "None of the %s's plans supports a trial period."
482
 
483
+ #: includes/class-freemius.php:17984
484
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
485
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
486
 
487
+ #: includes/class-freemius.php:18020
488
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
489
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
490
 
491
+ #: includes/class-freemius.php:18039
492
  msgid "Your %s free trial was successfully cancelled."
493
  msgstr "Your %s free trial was successfully cancelled."
494
 
495
+ #: includes/class-freemius.php:18346
496
  msgid "Version %s was released."
497
  msgstr "Version %s was released."
498
 
499
+ #: includes/class-freemius.php:18346
500
  msgid "Please download %s."
501
  msgstr "Please download %s."
502
 
503
+ #: includes/class-freemius.php:18353
504
  msgid "the latest %s version here"
505
  msgstr "the latest %s version here"
506
 
507
+ #: includes/class-freemius.php:18358
508
  msgid "New"
509
  msgstr "New"
510
 
511
+ #: includes/class-freemius.php:18363
512
  msgid "Seems like you got the latest release."
513
  msgstr "Seems like you got the latest release."
514
 
515
+ #: includes/class-freemius.php:18364
516
  msgid "You are all good!"
517
  msgstr "You are all good!"
518
 
519
+ #: includes/class-freemius.php:18632
520
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
521
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
522
 
523
+ #: includes/class-freemius.php:18769
524
  msgid "Site successfully opted in."
525
  msgstr "Site successfully opted in."
526
 
527
+ #: includes/class-freemius.php:18770, includes/class-freemius.php:19581
528
  msgid "Awesome"
529
  msgstr "Awesome"
530
 
531
+ #: includes/class-freemius.php:18786, templates/forms/optout.php:32
532
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
533
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
534
 
535
+ #: includes/class-freemius.php:18787
536
  msgid "Thank you!"
537
  msgstr "Thank you!"
538
 
539
+ #: includes/class-freemius.php:18794
540
  msgid "We will no longer be sending any usage data of %s on %s to %s."
541
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
542
 
543
+ #: includes/class-freemius.php:18923
544
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
545
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
546
 
547
+ #: includes/class-freemius.php:18929
548
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
549
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
550
 
551
+ #: includes/class-freemius.php:18934
552
  msgid "%s is the new owner of the account."
553
  msgstr "%s is the new owner of the account."
554
 
555
+ #: includes/class-freemius.php:18936
556
  msgctxt "as congratulations"
557
  msgid "Congrats"
558
  msgstr "Congrats"
559
 
560
+ #: includes/class-freemius.php:18956
561
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
562
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
563
 
564
+ #: includes/class-freemius.php:18957
565
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
566
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
567
 
568
+ #: includes/class-freemius.php:18964
569
  msgid "Change Ownership"
570
  msgstr "Change Ownership"
571
 
572
+ #: includes/class-freemius.php:18972
573
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
574
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
575
 
576
+ #: includes/class-freemius.php:18984
577
  msgid "Please provide your full name."
578
  msgstr "Please provide your full name."
579
 
580
+ #: includes/class-freemius.php:18989
581
  msgid "Your name was successfully updated."
582
  msgstr "Your name was successfully updated."
583
 
584
+ #: includes/class-freemius.php:19050
585
  msgid "You have successfully updated your %s."
586
  msgstr "You have successfully updated your %s."
587
 
588
+ #: includes/class-freemius.php:19190
589
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
590
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
591
 
592
+ #: includes/class-freemius.php:19191
593
  msgctxt "advance notice of something that will need attention."
594
  msgid "Heads up"
595
  msgstr "Heads up"
596
 
597
+ #: includes/class-freemius.php:19621
598
  msgctxt "exclamation"
599
  msgid "Hey"
600
  msgstr "Hey"
601
 
602
+ #: includes/class-freemius.php:19621
603
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
604
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
605
 
606
+ #: includes/class-freemius.php:19629
607
  msgid "No commitment for %s days - cancel anytime!"
608
  msgstr "No commitment for %s days - cancel anytime!"
609
 
610
+ #: includes/class-freemius.php:19630
611
  msgid "No credit card required"
612
  msgstr "No credit card required"
613
 
614
+ #: includes/class-freemius.php:19637, templates/forms/trial-start.php:53
615
  msgctxt "call to action"
616
  msgid "Start free trial"
617
  msgstr "Start free trial"
618
 
619
+ #: includes/class-freemius.php:19714
620
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
621
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
622
 
623
+ #: includes/class-freemius.php:19723
624
  msgid "Learn more"
625
  msgstr "Learn more"
626
 
627
+ #: includes/class-freemius.php:19873, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
628
  msgid "Activate License"
629
  msgstr "Activate License"
630
 
631
+ #: includes/class-freemius.php:19874, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
632
  msgid "Change License"
633
  msgstr "Change License"
634
 
635
+ #: includes/class-freemius.php:19956, templates/account/partials/site.php:161
636
  msgid "Opt Out"
637
  msgstr "Opt Out"
638
 
639
+ #: includes/class-freemius.php:19958, includes/class-freemius.php:19963, templates/account/partials/site.php:43, templates/account/partials/site.php:161
640
  msgid "Opt In"
641
  msgstr "Opt In"
642
 
643
+ #: includes/class-freemius.php:20187
644
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
645
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
646
 
647
+ #: includes/class-freemius.php:20195
648
  msgid "Activate %s features"
649
  msgstr "Activate %s features"
650
 
651
+ #: includes/class-freemius.php:20208
652
  msgid "Please follow these steps to complete the upgrade"
653
  msgstr "Please follow these steps to complete the upgrade"
654
 
655
+ #: includes/class-freemius.php:20212
656
  msgid "Download the latest %s version"
657
  msgstr "Download the latest %s version"
658
 
659
+ #: includes/class-freemius.php:20216
660
  msgid "Upload and activate the downloaded version"
661
  msgstr "Upload and activate the downloaded version"
662
 
663
+ #: includes/class-freemius.php:20218
664
  msgid "How to upload and activate?"
665
  msgstr "How to upload and activate?"
666
 
667
+ #: includes/class-freemius.php:20352
668
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
669
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
670
 
671
+ #: includes/class-freemius.php:20513
672
  msgid "Auto installation only works for opted-in users."
673
  msgstr "Auto installation only works for opted-in users."
674
 
675
+ #: includes/class-freemius.php:20523, includes/class-freemius.php:20556, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074
676
  msgid "Invalid module ID."
677
  msgstr "Invalid module ID."
678
 
679
+ #: includes/class-freemius.php:20532, includes/class-fs-plugin-updater.php:1096
680
  msgid "Premium version already active."
681
  msgstr "Premium version already active."
682
 
683
+ #: includes/class-freemius.php:20539
684
  msgid "You do not have a valid license to access the premium version."
685
  msgstr "You do not have a valid license to access the premium version."
686
 
687
+ #: includes/class-freemius.php:20546
688
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
689
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
690
 
691
+ #: includes/class-freemius.php:20564, includes/class-fs-plugin-updater.php:1095
692
  msgid "Premium add-on version already installed."
693
  msgstr "Premium add-on version already installed."
694
 
695
+ #: includes/class-freemius.php:20909
696
  msgid "View paid features"
697
  msgstr "View paid features"
698
 
699
+ #: includes/class-freemius.php:21229
700
  msgid "Thank you so much for using %s and its add-ons!"
701
  msgstr "Thank you so much for using %s and its add-ons!"
702
 
703
+ #: includes/class-freemius.php:21230
704
  msgid "Thank you so much for using %s!"
705
  msgstr "Thank you so much for using %s!"
706
 
707
+ #: includes/class-freemius.php:21236
708
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
709
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
710
 
711
+ #: includes/class-freemius.php:21240
712
  msgid "Thank you so much for using our products!"
713
  msgstr "Thank you so much for using our products!"
714
 
715
+ #: includes/class-freemius.php:21241
716
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
717
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
718
 
719
+ #: includes/class-freemius.php:21260
720
  msgid "%s and its add-ons"
721
  msgstr "%s and its add-ons"
722
 
723
+ #: includes/class-freemius.php:21269
724
  msgid "Products"
725
  msgstr "Products"
726
 
727
+ #: includes/class-freemius.php:21276, templates/connect.php:272
728
  msgid "Yes"
729
  msgstr "Yes"
730
 
731
+ #: includes/class-freemius.php:21277, templates/connect.php:273
732
  msgid "send me security & feature updates, educational content and offers."
733
  msgstr "send me security & feature updates, educational content and offers."
734
 
735
+ #: includes/class-freemius.php:21278, templates/connect.php:278
736
  msgid "No"
737
  msgstr "No"
738
 
739
+ #: includes/class-freemius.php:21280, templates/connect.php:280
740
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
741
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
742
 
743
+ #: includes/class-freemius.php:21290
744
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
745
  msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
746
 
747
+ #: includes/class-freemius.php:21292, templates/connect.php:287
748
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
749
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
750
 
751
+ #: includes/class-freemius.php:21574
752
  msgid "License key is empty."
753
  msgstr "License key is empty."
754
 
768
  msgid "new version"
769
  msgstr "new version"
770
 
771
+ #: includes/class-fs-plugin-updater.php:305
772
  msgid "Important Upgrade Notice:"
773
  msgstr "Important Upgrade Notice:"
774
 
775
+ #: includes/class-fs-plugin-updater.php:1125
776
  msgid "Installing plugin: %s"
777
  msgstr "Installing plugin: %s"
778
 
779
+ #: includes/class-fs-plugin-updater.php:1166
780
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
781
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
782
 
783
+ #: includes/class-fs-plugin-updater.php:1348
784
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
785
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
786
 
freemius/languages/freemius-es_ES.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Carlos Longarela <carlos@longarela.eu>, 2017-2018
@@ -21,772 +21,772 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:1602
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
 
28
- #: includes/class-freemius.php:1604
29
  msgid "Error"
30
  msgstr "Error"
31
 
32
- #: includes/class-freemius.php:1925
33
  msgid "I found a better %s"
34
  msgstr "He encontrado un %s mejor"
35
 
36
- #: includes/class-freemius.php:1927
37
  msgid "What's the %s's name?"
38
  msgstr "¿Cuál es el nombre de %s?"
39
 
40
- #: includes/class-freemius.php:1933
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Es una %stemporal . Sólo estoy depurando un problema"
43
 
44
- #: includes/class-freemius.php:1935
45
  msgid "Deactivation"
46
  msgstr "Desactivación"
47
 
48
- #: includes/class-freemius.php:1936
49
  msgid "Theme Switch"
50
  msgstr "Cambiar tema"
51
 
52
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Otra"
55
 
56
- #: includes/class-freemius.php:1953
57
  msgid "I no longer need the %s"
58
  msgstr "Ya no necesito el %s"
59
 
60
- #: includes/class-freemius.php:1960
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Sólo necesitaba la %s por un corto período"
63
 
64
- #: includes/class-freemius.php:1966
65
  msgid "The %s broke my site"
66
  msgstr "%s ha roto mi sitio"
67
 
68
- #: includes/class-freemius.php:1973
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s de repente ha dejado de funcionar"
71
 
72
- #: includes/class-freemius.php:1983
73
  msgid "I can't pay for it anymore"
74
  msgstr "No puedo pagarlo durante más tiempo"
75
 
76
- #: includes/class-freemius.php:1985
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
79
 
80
- #: includes/class-freemius.php:1991
81
  msgid "I don't like to share my information with you"
82
  msgstr "No me gusta compartir mi información contigo"
83
 
84
- #: includes/class-freemius.php:2012
85
  msgid "The %s didn't work"
86
  msgstr "El %s no funcionaba"
87
 
88
- #: includes/class-freemius.php:2022
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "No entiendo cómo hacerlo funcionar"
91
 
92
- #: includes/class-freemius.php:2030
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s es genial, pero necesito una característica que no soportáis"
95
 
96
- #: includes/class-freemius.php:2032
97
  msgid "What feature?"
98
  msgstr "¿Qué característica?"
99
 
100
- #: includes/class-freemius.php:2036
101
  msgid "The %s is not working"
102
  msgstr " El %s no funciona"
103
 
104
- #: includes/class-freemius.php:2038
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
 
108
- #: includes/class-freemius.php:2042
109
  msgid "It's not what I was looking for"
110
  msgstr "No es lo que estaba buscando"
111
 
112
- #: includes/class-freemius.php:2044
113
  msgid "What you've been looking for?"
114
  msgstr "¿Que has estado buscando?"
115
 
116
- #: includes/class-freemius.php:2048
117
  msgid "The %s didn't work as expected"
118
  msgstr " El %s no funciona como esperaba"
119
 
120
- #: includes/class-freemius.php:2050
121
  msgid "What did you expect?"
122
  msgstr "¿Qué esperas?"
123
 
124
- #: includes/class-freemius.php2853, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Debug Freemius"
127
 
128
- #: includes/class-freemius.php:3581
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
 
132
- #: includes/class-freemius.php:3583
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización."
135
 
136
- #: includes/class-freemius.php:3590
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo."
139
 
140
- #: includes/class-freemius.php:3695
141
  msgid "Yes - do your thing"
142
  msgstr "Vamos, adelante"
143
 
144
- #: includes/class-freemius.php:3700
145
  msgid "No - just deactivate"
146
  msgstr "No - sólo desactivar"
147
 
148
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
- #: includes/class-freemius.php18705, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
- #: includes/class-freemius.php:3814
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia."
162
 
163
- #: includes/class-freemius.php:4250
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s no se puede ejecutar sin %s."
167
 
168
- #: includes/class-freemius.php:4251
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s no se puede ejecutar sin el plugin."
172
 
173
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
- #: includes/class-freemius.php:17659
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
 
178
- #: includes/class-freemius.php:5006
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La versión Premium %s ha sido activada con éxito."
181
 
182
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "W00t"
186
 
187
- #: includes/class-freemius.php:5033
188
  msgid "You have a %s license."
189
  msgstr "Tienes una licencia %s."
190
 
191
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
- #: includes/class-freemius.php:17413
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Vaya"
198
 
199
- #: includes/class-freemius.php:5301
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia."
202
 
203
- #: includes/class-freemius.php:5305
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
 
207
- #: includes/class-freemius.php5314, templates/add-ons.php103,
208
  #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Más información sobre %s"
211
 
212
- #: includes/class-freemius.php:5315
213
  msgid "Purchase License"
214
  msgstr "Comprar licencia"
215
 
216
- #: includes/class-freemius.php6230, templates/connect.php:163
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
219
 
220
- #: includes/class-freemius.php:6234
221
  msgid "start the trial"
222
  msgstr "comenzar el período de prueba"
223
 
224
- #: includes/class-freemius.php6235, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "completar la instalación"
227
 
228
- #: includes/class-freemius.php:6348
229
  msgid "You are just one step away - %s"
230
  msgstr "Estás a sólo un paso - %s"
231
 
232
- #: includes/class-freemius.php:6351
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Completar la activación de \"%s\" ahora"
236
 
237
- #: includes/class-freemius.php:6429
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
 
241
- #: includes/class-freemius.php:6433
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
244
 
245
- #: includes/class-freemius.php:6861
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La actualización de %s se completó con éxito."
248
 
249
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
- #: includes/class-fs-plugin-updater.php1077,
251
- #: includes/class-fs-plugin-updater.php1084,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Complemento"
255
 
256
- #: includes/class-freemius.php8707, templates/debug.php359,
257
  #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Plugin"
260
 
261
- #: includes/class-freemius.php8708, templates/debug.php359,
262
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
  msgid "Theme"
264
  msgstr "Tema"
265
 
266
- #: includes/class-freemius.php:11183
267
  msgid "Invalid site details collection."
268
  msgstr "Colección de detalles del sitio no válida."
269
 
270
- #: includes/class-freemius.php:11303
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?"
273
 
274
- #: includes/class-freemius.php:11305
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?"
277
 
278
- #: includes/class-freemius.php:11541
279
  msgid "Account is pending activation."
280
  msgstr "La cuenta está pendiente de activación"
281
 
282
- #: includes/class-freemius.php11653,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Compra una licencia ahora"
286
 
287
- #: includes/class-freemius.php11665,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renueva tu licencia ahora"
291
 
292
- #: includes/class-freemius.php:11669
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
295
 
296
- #: includes/class-freemius.php:14052
297
  msgid "%s activation was successfully completed."
298
  msgstr "%s activación se completó con éxito."
299
 
300
- #: includes/class-freemius.php:14066
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
303
 
304
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
  msgid "Your trial has been successfully started."
306
  msgstr "Tu versión de prueba se ha iniciado con éxito."
307
 
308
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
- #: includes/class-freemius.php:14761
310
  msgid "Couldn't activate %s."
311
  msgstr "No se puede activar %s."
312
 
313
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
- #: includes/class-freemius.php:14762
315
  msgid "Please contact us with the following message:"
316
  msgstr "Por favor contáctanos con el siguiente mensaje:"
317
 
318
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
  msgid "Upgrade"
320
  msgstr "Actualizar"
321
 
322
- #: includes/class-freemius.php:15117
323
  msgid "Start Trial"
324
  msgstr "Comenzar el período de prueba"
325
 
326
- #: includes/class-freemius.php:15119
327
  msgid "Pricing"
328
  msgstr "Precio"
329
 
330
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
  msgid "Affiliation"
332
  msgstr "Afiliación"
333
 
334
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
  #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Cuenta"
338
 
339
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Contáctanos"
343
 
344
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
- #: includes/class-freemius.php19553, templates/account.php100,
346
  #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Complementos"
349
 
350
- #: includes/class-freemius.php:15274
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
- #: includes/class-freemius.php:15274
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
- #: includes/class-freemius.php15276, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Precio"
364
 
365
- #: includes/class-freemius.php15479,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Foro de soporte"
369
 
370
- #: includes/class-freemius.php:16265
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
373
 
374
- #: includes/class-freemius.php:16266
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Bien hecho"
378
 
379
- #: includes/class-freemius.php:16888
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Tu complemento %s del plan se actualizó con éxito."
382
 
383
- #: includes/class-freemius.php:16890
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "El complemento %s ha sido comprado correctamente."
386
 
387
- #: includes/class-freemius.php:16893
388
  msgid "Download the latest version"
389
  msgstr "Descargar la última versión"
390
 
391
- #: includes/class-freemius.php:16965
392
  msgctxt "%1s - plugin title, %2s - API domain"
393
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
  msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
395
 
396
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
- #: includes/class-freemius.php:17461
398
  msgid "Error received from the server:"
399
  msgstr "Error recibido del servidor:"
400
 
401
- #: includes/class-freemius.php:16978
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo."
404
 
405
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
- #: includes/class-freemius.php:17173
412
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
  msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos."
414
 
415
- #: includes/class-freemius.php17174, templates/account.php102,
416
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Período de Prueba Gratuito"
420
 
421
- #: includes/class-freemius.php:17179
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
424
 
425
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
  msgid "Please contact us here"
427
  msgstr "Contacta aquí con nosotros"
428
 
429
- #: includes/class-freemius.php:17193
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Tu plan se actualizó con éxito."
432
 
433
- #: includes/class-freemius.php:17211
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Tu plan se cambió correctamente a %s."
436
 
437
- #: includes/class-freemius.php:17227
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
440
 
441
- #: includes/class-freemius.php:17229
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
444
 
445
- #: includes/class-freemius.php:17237
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
448
 
449
- #: includes/class-freemius.php:17250
450
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
  msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte."
452
 
453
- #: includes/class-freemius.php:17273
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
456
 
457
- #: includes/class-freemius.php:17275
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
460
 
461
- #: includes/class-freemius.php:17380
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Parece que la licencia no se pudo activar."
464
 
465
- #: includes/class-freemius.php:17410
466
  msgid "Your license was successfully activated."
467
  msgstr "Tu licencia fue activada correctamente."
468
 
469
- #: includes/class-freemius.php:17436
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
472
 
473
- #: includes/class-freemius.php:17460
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Parece que la desactivación de licencia ha fallado."
476
 
477
- #: includes/class-freemius.php:17488
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
480
 
481
- #: includes/class-freemius.php:17489
482
  msgid "O.K"
483
  msgstr "O.K"
484
 
485
- #: includes/class-freemius.php:17542
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
488
 
489
- #: includes/class-freemius.php:17551
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
492
 
493
- #: includes/class-freemius.php:17593
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Estás ejecutando %s en modo de prueba."
496
 
497
- #: includes/class-freemius.php:17604
498
  msgid "You already utilized a trial before."
499
  msgstr "Ya utilizaste un período de prueba antes."
500
 
501
- #: includes/class-freemius.php:17618
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
504
 
505
- #: includes/class-freemius.php:17629
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "El plan %s no admite un período de prueba."
508
 
509
- #: includes/class-freemius.php:17640
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
512
 
513
- #: includes/class-freemius.php:17690
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
516
 
517
- #: includes/class-freemius.php:17726
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
520
 
521
- #: includes/class-freemius.php:17745
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
524
 
525
- #: includes/class-freemius.php:18052
526
  msgid "Version %s was released."
527
  msgstr "La versión %s se ha lanzado."
528
 
529
- #: includes/class-freemius.php:18052
530
  msgid "Please download %s."
531
  msgstr "Por favor descarga %s."
532
 
533
- #: includes/class-freemius.php:18059
534
  msgid "the latest %s version here"
535
  msgstr "la última versión %s aquí"
536
 
537
- #: includes/class-freemius.php:18064
538
  msgid "New"
539
  msgstr "Nuevo"
540
 
541
- #: includes/class-freemius.php:18069
542
  msgid "Seems like you got the latest release."
543
  msgstr "Parece que tienes la última versión."
544
 
545
- #: includes/class-freemius.php:18070
546
  msgid "You are all good!"
547
  msgstr "¡Está todo listo!"
548
 
549
- #: includes/class-freemius.php:18338
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam."
552
 
553
- #: includes/class-freemius.php:18473
554
  msgid "Site successfully opted in."
555
  msgstr "Sitio dado de alta correctamente."
556
 
557
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
  msgid "Awesome"
559
  msgstr "Increíble"
560
 
561
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
564
 
565
- #: includes/class-freemius.php:18491
566
  msgid "Thank you!"
567
  msgstr "¡Gracias!"
568
 
569
- #: includes/class-freemius.php:18498
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
572
 
573
- #: includes/class-freemius.php:18627
574
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
  msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
576
 
577
- #: includes/class-freemius.php:18633
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
580
 
581
- #: includes/class-freemius.php:18638
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s es el nuevo dueño de la cuenta."
584
 
585
- #: includes/class-freemius.php:18640
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Felicidades"
589
 
590
- #: includes/class-freemius.php:18660
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico."
593
 
594
- #: includes/class-freemius.php:18661
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
597
 
598
- #: includes/class-freemius.php:18668
599
  msgid "Change Ownership"
600
  msgstr "Cambiar propietario"
601
 
602
- #: includes/class-freemius.php:18676
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
605
 
606
- #: includes/class-freemius.php:18688
607
  msgid "Please provide your full name."
608
  msgstr "Por favor, dinos tu nombre completo."
609
 
610
- #: includes/class-freemius.php:18693
611
  msgid "Your name was successfully updated."
612
  msgstr "Tu nombre fue actualizado correctamente."
613
 
614
- #: includes/class-freemius.php:18754
615
  msgid "You have successfully updated your %s."
616
  msgstr "Has actualizado correctamente tu %s."
617
 
618
- #: includes/class-freemius.php:18894
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
621
 
622
- #: includes/class-freemius.php:18895
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Atención"
626
 
627
- #: includes/class-freemius.php:19325
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Hey"
631
 
632
- #: includes/class-freemius.php:19325
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
635
 
636
- #: includes/class-freemius.php:19333
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
639
 
640
- #: includes/class-freemius.php:19334
641
  msgid "No credit card required"
642
  msgstr "No se necesita tarjeta de crédito"
643
 
644
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Comenzar el período de prueba gratuito"
648
 
649
- #: includes/class-freemius.php:19418
650
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
652
 
653
- #: includes/class-freemius.php:19427
654
  msgid "Learn more"
655
  msgstr "Saber más"
656
 
657
- #: includes/class-freemius.php19577, templates/account.php406,
658
  #: templates/account.php509, templates/connect.php171,
659
  #: templates/connect.php421, templates/forms/license-activation.php24,
660
  #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Activar licencia"
663
 
664
- #: includes/class-freemius.php19578, templates/account.php469,
665
  #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Cambiar licencia"
668
 
669
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Darse de baja"
672
 
673
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Inscribirse"
678
 
679
- #: includes/class-freemius.php:19891
680
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
  msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
682
 
683
- #: includes/class-freemius.php:19899
684
  msgid "Activate %s features"
685
  msgstr "Activar características %s"
686
 
687
- #: includes/class-freemius.php:19912
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Por favor, sigue estos pasos para completar la actualización"
690
 
691
- #: includes/class-freemius.php:19916
692
  msgid "Download the latest %s version"
693
  msgstr "Descargar la última versión %s"
694
 
695
- #: includes/class-freemius.php:19920
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Cargar y activar la versión descargada"
698
 
699
- #: includes/class-freemius.php:19922
700
  msgid "How to upload and activate?"
701
  msgstr "¿Cómo subirlo y activarlo?"
702
 
703
- #: includes/class-freemius.php:20056
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
706
 
707
- #: includes/class-freemius.php:20217
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
710
 
711
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
- #: includes/class-fs-plugin-updater.php1056,
713
- #: includes/class-fs-plugin-updater.php:1070
714
  msgid "Invalid module ID."
715
  msgstr "Id de módulo no válido."
716
 
717
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
  msgid "Premium version already active."
719
  msgstr "Versión premium ya activa."
720
 
721
- #: includes/class-freemius.php:20243
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "No tienes una licencia válida para acceder a la versión premium."
724
 
725
- #: includes/class-freemius.php:20250
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
728
 
729
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
  msgid "Premium add-on version already installed."
731
  msgstr "Versión del complemento premium ya instalada."
732
 
733
- #: includes/class-freemius.php:20613
734
  msgid "View paid features"
735
  msgstr "Ver las funciones de pago"
736
 
737
- #: includes/class-freemius.php:20927
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
740
 
741
- #: includes/class-freemius.php:20928
742
  msgid "Thank you so much for using %s!"
743
  msgstr "¡Muchas gracias por utilizar %s!"
744
 
745
- #: includes/class-freemius.php:20934
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
748
 
749
- #: includes/class-freemius.php:20938
750
  msgid "Thank you so much for using our products!"
751
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
752
 
753
- #: includes/class-freemius.php:20939
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
756
 
757
- #: includes/class-freemius.php:20958
758
  msgid "%s and its add-ons"
759
  msgstr "%s y sus complementos"
760
 
761
- #: includes/class-freemius.php:20967
762
  msgid "Products"
763
  msgstr "Productos"
764
 
765
- #: includes/class-freemius.php20974, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Si"
768
 
769
- #: includes/class-freemius.php20975, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
772
 
773
- #: includes/class-freemius.php20976, templates/connect.php:278
774
  msgid "No"
775
  msgstr "No"
776
 
777
- #: includes/class-freemius.php20978, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
780
 
781
- #: includes/class-freemius.php:20988
782
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
  msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
784
 
785
- #: includes/class-freemius.php20990, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
788
 
789
- #: includes/class-freemius.php:21272
790
  msgid "License key is empty."
791
  msgstr "La clave de licencia está vacía."
792
 
@@ -808,19 +808,19 @@ msgstr "Hay una %s de %s disponible."
808
  msgid "new version"
809
  msgstr "nueva versión"
810
 
811
- #: includes/class-fs-plugin-updater.php:301
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Aviso importante de actualización:"
814
 
815
- #: includes/class-fs-plugin-updater.php:1121
816
  msgid "Installing plugin: %s"
817
  msgstr "Instalando plugin: %s"
818
 
819
- #: includes/class-fs-plugin-updater.php:1162
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
822
 
823
- #: includes/class-fs-plugin-updater.php:1335
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
826
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Carlos Longarela <carlos@longarela.eu>, 2017-2018
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php:1688
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
 
28
+ #: includes/class-freemius.php:1690
29
  msgid "Error"
30
  msgstr "Error"
31
 
32
+ #: includes/class-freemius.php:2011
33
  msgid "I found a better %s"
34
  msgstr "He encontrado un %s mejor"
35
 
36
+ #: includes/class-freemius.php:2013
37
  msgid "What's the %s's name?"
38
  msgstr "¿Cuál es el nombre de %s?"
39
 
40
+ #: includes/class-freemius.php:2019
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Es una %stemporal . Sólo estoy depurando un problema"
43
 
44
+ #: includes/class-freemius.php:2021
45
  msgid "Deactivation"
46
  msgstr "Desactivación"
47
 
48
+ #: includes/class-freemius.php:2022
49
  msgid "Theme Switch"
50
  msgstr "Cambiar tema"
51
 
52
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Otra"
55
 
56
+ #: includes/class-freemius.php:2039
57
  msgid "I no longer need the %s"
58
  msgstr "Ya no necesito el %s"
59
 
60
+ #: includes/class-freemius.php:2046
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Sólo necesitaba la %s por un corto período"
63
 
64
+ #: includes/class-freemius.php:2052
65
  msgid "The %s broke my site"
66
  msgstr "%s ha roto mi sitio"
67
 
68
+ #: includes/class-freemius.php:2059
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s de repente ha dejado de funcionar"
71
 
72
+ #: includes/class-freemius.php:2069
73
  msgid "I can't pay for it anymore"
74
  msgstr "No puedo pagarlo durante más tiempo"
75
 
76
+ #: includes/class-freemius.php:2071
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
79
 
80
+ #: includes/class-freemius.php:2077
81
  msgid "I don't like to share my information with you"
82
  msgstr "No me gusta compartir mi información contigo"
83
 
84
+ #: includes/class-freemius.php:2098
85
  msgid "The %s didn't work"
86
  msgstr "El %s no funcionaba"
87
 
88
+ #: includes/class-freemius.php:2108
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "No entiendo cómo hacerlo funcionar"
91
 
92
+ #: includes/class-freemius.php:2116
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s es genial, pero necesito una característica que no soportáis"
95
 
96
+ #: includes/class-freemius.php:2118
97
  msgid "What feature?"
98
  msgstr "¿Qué característica?"
99
 
100
+ #: includes/class-freemius.php:2122
101
  msgid "The %s is not working"
102
  msgstr " El %s no funciona"
103
 
104
+ #: includes/class-freemius.php:2124
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
 
108
+ #: includes/class-freemius.php:2128
109
  msgid "It's not what I was looking for"
110
  msgstr "No es lo que estaba buscando"
111
 
112
+ #: includes/class-freemius.php:2130
113
  msgid "What you've been looking for?"
114
  msgstr "¿Que has estado buscando?"
115
 
116
+ #: includes/class-freemius.php:2134
117
  msgid "The %s didn't work as expected"
118
  msgstr " El %s no funciona como esperaba"
119
 
120
+ #: includes/class-freemius.php:2136
121
  msgid "What did you expect?"
122
  msgstr "¿Qué esperas?"
123
 
124
+ #: includes/class-freemius.php2942, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Debug Freemius"
127
 
128
+ #: includes/class-freemius.php:3670
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
 
132
+ #: includes/class-freemius.php:3672
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización."
135
 
136
+ #: includes/class-freemius.php:3679
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo."
139
 
140
+ #: includes/class-freemius.php:3784
141
  msgid "Yes - do your thing"
142
  msgstr "Vamos, adelante"
143
 
144
+ #: includes/class-freemius.php:3789
145
  msgid "No - just deactivate"
146
  msgstr "No - sólo desactivar"
147
 
148
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
+ #: includes/class-freemius.php:3903
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia."
162
 
163
+ #: includes/class-freemius.php:4340
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s no se puede ejecutar sin %s."
167
 
168
+ #: includes/class-freemius.php:4341
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s no se puede ejecutar sin el plugin."
172
 
173
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
174
+ #: includes/class-freemius.php:17953
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
 
178
+ #: includes/class-freemius.php:5130
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La versión Premium %s ha sido activada con éxito."
181
 
182
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "W00t"
186
 
187
+ #: includes/class-freemius.php:5157
188
  msgid "You have a %s license."
189
  msgstr "Tienes una licencia %s."
190
 
191
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
+ #: includes/class-freemius.php:17707
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Vaya"
198
 
199
+ #: includes/class-freemius.php:5425
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia."
202
 
203
+ #: includes/class-freemius.php:5429
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
 
207
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
208
  #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Más información sobre %s"
211
 
212
+ #: includes/class-freemius.php:5439
213
  msgid "Purchase License"
214
  msgstr "Comprar licencia"
215
 
216
+ #: includes/class-freemius.php6372, templates/connect.php:163
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
219
 
220
+ #: includes/class-freemius.php:6376
221
  msgid "start the trial"
222
  msgstr "comenzar el período de prueba"
223
 
224
+ #: includes/class-freemius.php6377, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "completar la instalación"
227
 
228
+ #: includes/class-freemius.php:6490
229
  msgid "You are just one step away - %s"
230
  msgstr "Estás a sólo un paso - %s"
231
 
232
+ #: includes/class-freemius.php:6493
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Completar la activación de \"%s\" ahora"
236
 
237
+ #: includes/class-freemius.php:6571
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
 
241
+ #: includes/class-freemius.php:6575
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
244
 
245
+ #: includes/class-freemius.php:7003
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La actualización de %s se completó con éxito."
248
 
249
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
+ #: includes/class-fs-plugin-updater.php1081,
251
+ #: includes/class-fs-plugin-updater.php1088,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Complemento"
255
 
256
+ #: includes/class-freemius.php8927, templates/debug.php359,
257
  #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Plugin"
260
 
261
+ #: includes/class-freemius.php8928, templates/debug.php359,
262
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
  msgid "Theme"
264
  msgstr "Tema"
265
 
266
+ #: includes/class-freemius.php:11412
267
  msgid "Invalid site details collection."
268
  msgstr "Colección de detalles del sitio no válida."
269
 
270
+ #: includes/class-freemius.php:11532
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?"
273
 
274
+ #: includes/class-freemius.php:11534
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?"
277
 
278
+ #: includes/class-freemius.php:11808
279
  msgid "Account is pending activation."
280
  msgstr "La cuenta está pendiente de activación"
281
 
282
+ #: includes/class-freemius.php11920,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Compra una licencia ahora"
286
 
287
+ #: includes/class-freemius.php11932,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renueva tu licencia ahora"
291
 
292
+ #: includes/class-freemius.php:11936
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
295
 
296
+ #: includes/class-freemius.php:14319
297
  msgid "%s activation was successfully completed."
298
  msgstr "%s activación se completó con éxito."
299
 
300
+ #: includes/class-freemius.php:14333
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
303
 
304
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
  msgid "Your trial has been successfully started."
306
  msgstr "Tu versión de prueba se ha iniciado con éxito."
307
 
308
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
+ #: includes/class-freemius.php:15028
310
  msgid "Couldn't activate %s."
311
  msgstr "No se puede activar %s."
312
 
313
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
+ #: includes/class-freemius.php:15029
315
  msgid "Please contact us with the following message:"
316
  msgstr "Por favor contáctanos con el siguiente mensaje:"
317
 
318
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
319
  msgid "Upgrade"
320
  msgstr "Actualizar"
321
 
322
+ #: includes/class-freemius.php:15384
323
  msgid "Start Trial"
324
  msgstr "Comenzar el período de prueba"
325
 
326
+ #: includes/class-freemius.php:15386
327
  msgid "Pricing"
328
  msgstr "Precio"
329
 
330
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
  msgid "Affiliation"
332
  msgstr "Afiliación"
333
 
334
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
  #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Cuenta"
338
 
339
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Contáctanos"
343
 
344
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
+ #: includes/class-freemius.php19849, templates/account.php100,
346
  #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Complementos"
349
 
350
+ #: includes/class-freemius.php:15541
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
+ #: includes/class-freemius.php:15541
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
+ #: includes/class-freemius.php15543, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Precio"
364
 
365
+ #: includes/class-freemius.php15756,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Foro de soporte"
369
 
370
+ #: includes/class-freemius.php:16542
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
373
 
374
+ #: includes/class-freemius.php:16543
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Bien hecho"
378
 
379
+ #: includes/class-freemius.php:17168
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Tu complemento %s del plan se actualizó con éxito."
382
 
383
+ #: includes/class-freemius.php:17170
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "El complemento %s ha sido comprado correctamente."
386
 
387
+ #: includes/class-freemius.php:17173
388
  msgid "Download the latest version"
389
  msgstr "Descargar la última versión"
390
 
391
+ #: includes/class-freemius.php:17259
392
  msgctxt "%1s - plugin title, %2s - API domain"
393
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
  msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
395
 
396
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
+ #: includes/class-freemius.php:17755
398
  msgid "Error received from the server:"
399
  msgstr "Error recibido del servidor:"
400
 
401
+ #: includes/class-freemius.php:17272
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo."
404
 
405
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
+ #: includes/class-freemius.php:17467
412
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
  msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos."
414
 
415
+ #: includes/class-freemius.php17468, templates/account.php102,
416
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Período de Prueba Gratuito"
420
 
421
+ #: includes/class-freemius.php:17473
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
424
 
425
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
  msgid "Please contact us here"
427
  msgstr "Contacta aquí con nosotros"
428
 
429
+ #: includes/class-freemius.php:17487
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Tu plan se actualizó con éxito."
432
 
433
+ #: includes/class-freemius.php:17505
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Tu plan se cambió correctamente a %s."
436
 
437
+ #: includes/class-freemius.php:17521
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
440
 
441
+ #: includes/class-freemius.php:17523
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
444
 
445
+ #: includes/class-freemius.php:17531
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
448
 
449
+ #: includes/class-freemius.php:17544
450
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
  msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte."
452
 
453
+ #: includes/class-freemius.php:17567
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
456
 
457
+ #: includes/class-freemius.php:17569
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
460
 
461
+ #: includes/class-freemius.php:17674
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Parece que la licencia no se pudo activar."
464
 
465
+ #: includes/class-freemius.php:17704
466
  msgid "Your license was successfully activated."
467
  msgstr "Tu licencia fue activada correctamente."
468
 
469
+ #: includes/class-freemius.php:17730
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
472
 
473
+ #: includes/class-freemius.php:17754
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Parece que la desactivación de licencia ha fallado."
476
 
477
+ #: includes/class-freemius.php:17782
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
480
 
481
+ #: includes/class-freemius.php:17783
482
  msgid "O.K"
483
  msgstr "O.K"
484
 
485
+ #: includes/class-freemius.php:17836
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
488
 
489
+ #: includes/class-freemius.php:17845
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
492
 
493
+ #: includes/class-freemius.php:17887
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Estás ejecutando %s en modo de prueba."
496
 
497
+ #: includes/class-freemius.php:17898
498
  msgid "You already utilized a trial before."
499
  msgstr "Ya utilizaste un período de prueba antes."
500
 
501
+ #: includes/class-freemius.php:17912
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
504
 
505
+ #: includes/class-freemius.php:17923
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "El plan %s no admite un período de prueba."
508
 
509
+ #: includes/class-freemius.php:17934
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
512
 
513
+ #: includes/class-freemius.php:17984
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
516
 
517
+ #: includes/class-freemius.php:18020
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
520
 
521
+ #: includes/class-freemius.php:18039
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
524
 
525
+ #: includes/class-freemius.php:18346
526
  msgid "Version %s was released."
527
  msgstr "La versión %s se ha lanzado."
528
 
529
+ #: includes/class-freemius.php:18346
530
  msgid "Please download %s."
531
  msgstr "Por favor descarga %s."
532
 
533
+ #: includes/class-freemius.php:18353
534
  msgid "the latest %s version here"
535
  msgstr "la última versión %s aquí"
536
 
537
+ #: includes/class-freemius.php:18358
538
  msgid "New"
539
  msgstr "Nuevo"
540
 
541
+ #: includes/class-freemius.php:18363
542
  msgid "Seems like you got the latest release."
543
  msgstr "Parece que tienes la última versión."
544
 
545
+ #: includes/class-freemius.php:18364
546
  msgid "You are all good!"
547
  msgstr "¡Está todo listo!"
548
 
549
+ #: includes/class-freemius.php:18632
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam."
552
 
553
+ #: includes/class-freemius.php:18769
554
  msgid "Site successfully opted in."
555
  msgstr "Sitio dado de alta correctamente."
556
 
557
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
  msgid "Awesome"
559
  msgstr "Increíble"
560
 
561
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
564
 
565
+ #: includes/class-freemius.php:18787
566
  msgid "Thank you!"
567
  msgstr "¡Gracias!"
568
 
569
+ #: includes/class-freemius.php:18794
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
572
 
573
+ #: includes/class-freemius.php:18923
574
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
  msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
576
 
577
+ #: includes/class-freemius.php:18929
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
580
 
581
+ #: includes/class-freemius.php:18934
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s es el nuevo dueño de la cuenta."
584
 
585
+ #: includes/class-freemius.php:18936
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Felicidades"
589
 
590
+ #: includes/class-freemius.php:18956
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico."
593
 
594
+ #: includes/class-freemius.php:18957
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
597
 
598
+ #: includes/class-freemius.php:18964
599
  msgid "Change Ownership"
600
  msgstr "Cambiar propietario"
601
 
602
+ #: includes/class-freemius.php:18972
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
605
 
606
+ #: includes/class-freemius.php:18984
607
  msgid "Please provide your full name."
608
  msgstr "Por favor, dinos tu nombre completo."
609
 
610
+ #: includes/class-freemius.php:18989
611
  msgid "Your name was successfully updated."
612
  msgstr "Tu nombre fue actualizado correctamente."
613
 
614
+ #: includes/class-freemius.php:19050
615
  msgid "You have successfully updated your %s."
616
  msgstr "Has actualizado correctamente tu %s."
617
 
618
+ #: includes/class-freemius.php:19190
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
621
 
622
+ #: includes/class-freemius.php:19191
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Atención"
626
 
627
+ #: includes/class-freemius.php:19621
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Hey"
631
 
632
+ #: includes/class-freemius.php:19621
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
635
 
636
+ #: includes/class-freemius.php:19629
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
639
 
640
+ #: includes/class-freemius.php:19630
641
  msgid "No credit card required"
642
  msgstr "No se necesita tarjeta de crédito"
643
 
644
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Comenzar el período de prueba gratuito"
648
 
649
+ #: includes/class-freemius.php:19714
650
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
652
 
653
+ #: includes/class-freemius.php:19723
654
  msgid "Learn more"
655
  msgstr "Saber más"
656
 
657
+ #: includes/class-freemius.php19873, templates/account.php406,
658
  #: templates/account.php509, templates/connect.php171,
659
  #: templates/connect.php421, templates/forms/license-activation.php24,
660
  #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Activar licencia"
663
 
664
+ #: includes/class-freemius.php19874, templates/account.php469,
665
  #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Cambiar licencia"
668
 
669
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Darse de baja"
672
 
673
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Inscribirse"
678
 
679
+ #: includes/class-freemius.php:20187
680
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
  msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
682
 
683
+ #: includes/class-freemius.php:20195
684
  msgid "Activate %s features"
685
  msgstr "Activar características %s"
686
 
687
+ #: includes/class-freemius.php:20208
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Por favor, sigue estos pasos para completar la actualización"
690
 
691
+ #: includes/class-freemius.php:20212
692
  msgid "Download the latest %s version"
693
  msgstr "Descargar la última versión %s"
694
 
695
+ #: includes/class-freemius.php:20216
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Cargar y activar la versión descargada"
698
 
699
+ #: includes/class-freemius.php:20218
700
  msgid "How to upload and activate?"
701
  msgstr "¿Cómo subirlo y activarlo?"
702
 
703
+ #: includes/class-freemius.php:20352
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
706
 
707
+ #: includes/class-freemius.php:20513
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
710
 
711
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
+ #: includes/class-fs-plugin-updater.php1060,
713
+ #: includes/class-fs-plugin-updater.php:1074
714
  msgid "Invalid module ID."
715
  msgstr "Id de módulo no válido."
716
 
717
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
  msgid "Premium version already active."
719
  msgstr "Versión premium ya activa."
720
 
721
+ #: includes/class-freemius.php:20539
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "No tienes una licencia válida para acceder a la versión premium."
724
 
725
+ #: includes/class-freemius.php:20546
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
728
 
729
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
  msgid "Premium add-on version already installed."
731
  msgstr "Versión del complemento premium ya instalada."
732
 
733
+ #: includes/class-freemius.php:20909
734
  msgid "View paid features"
735
  msgstr "Ver las funciones de pago"
736
 
737
+ #: includes/class-freemius.php:21229
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
740
 
741
+ #: includes/class-freemius.php:21230
742
  msgid "Thank you so much for using %s!"
743
  msgstr "¡Muchas gracias por utilizar %s!"
744
 
745
+ #: includes/class-freemius.php:21236
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
748
 
749
+ #: includes/class-freemius.php:21240
750
  msgid "Thank you so much for using our products!"
751
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
752
 
753
+ #: includes/class-freemius.php:21241
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
756
 
757
+ #: includes/class-freemius.php:21260
758
  msgid "%s and its add-ons"
759
  msgstr "%s y sus complementos"
760
 
761
+ #: includes/class-freemius.php:21269
762
  msgid "Products"
763
  msgstr "Productos"
764
 
765
+ #: includes/class-freemius.php21276, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Si"
768
 
769
+ #: includes/class-freemius.php21277, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
772
 
773
+ #: includes/class-freemius.php21278, templates/connect.php:278
774
  msgid "No"
775
  msgstr "No"
776
 
777
+ #: includes/class-freemius.php21280, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
780
 
781
+ #: includes/class-freemius.php:21290
782
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
  msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
784
 
785
+ #: includes/class-freemius.php21292, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
788
 
789
+ #: includes/class-freemius.php:21574
790
  msgid "License key is empty."
791
  msgstr "La clave de licencia está vacía."
792
 
808
  msgid "new version"
809
  msgstr "nueva versión"
810
 
811
+ #: includes/class-fs-plugin-updater.php:305
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Aviso importante de actualización:"
814
 
815
+ #: includes/class-fs-plugin-updater.php:1125
816
  msgid "Installing plugin: %s"
817
  msgstr "Instalando plugin: %s"
818
 
819
+ #: includes/class-fs-plugin-updater.php:1166
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
822
 
823
+ #: includes/class-fs-plugin-updater.php:1348
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
826
 
freemius/languages/freemius-fr_FR.mo CHANGED
Binary file
freemius/languages/freemius-fr_FR.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Boris Colombier <transifex.com@wba.fr>, 2018
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2018-11-26 11:09+0000\n"
11
  "Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
12
  "Language: fr_FR\n"
13
  "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
@@ -21,772 +21,772 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:1602
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
27
 
28
- #: includes/class-freemius.php:1604
29
  msgid "Error"
30
  msgstr "Erreur"
31
 
32
- #: includes/class-freemius.php:1925
33
  msgid "I found a better %s"
34
  msgstr "J'ai trouvé un meilleur %s"
35
 
36
- #: includes/class-freemius.php:1927
37
  msgid "What's the %s's name?"
38
  msgstr "Quel est le nom du %s ?"
39
 
40
- #: includes/class-freemius.php:1933
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "C'est une %s temporaire. Je corrige un problème."
43
 
44
- #: includes/class-freemius.php:1935
45
  msgid "Deactivation"
46
  msgstr "Désactivation"
47
 
48
- #: includes/class-freemius.php:1936
49
  msgid "Theme Switch"
50
  msgstr "Changement de Thème"
51
 
52
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Autre"
55
 
56
- #: includes/class-freemius.php:1953
57
  msgid "I no longer need the %s"
58
  msgstr "Je n'ai plus besoin du %s"
59
 
60
- #: includes/class-freemius.php:1960
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Je n'ai besoin de %s que pour une courte période"
63
 
64
- #: includes/class-freemius.php:1966
65
  msgid "The %s broke my site"
66
  msgstr "Le %s a cassé mon site"
67
 
68
- #: includes/class-freemius.php:1973
69
  msgid "The %s suddenly stopped working"
70
  msgstr "Le %s a soudainement arrêté de fonctionner"
71
 
72
- #: includes/class-freemius.php:1983
73
  msgid "I can't pay for it anymore"
74
  msgstr "Je ne peux plus payer pour ça"
75
 
76
- #: includes/class-freemius.php:1985
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "Quel prix seriez-vous prêt à payer ?"
79
 
80
- #: includes/class-freemius.php:1991
81
  msgid "I don't like to share my information with you"
82
  msgstr "Je ne veux pas partager mes informations avec vous"
83
 
84
- #: includes/class-freemius.php:2012
85
  msgid "The %s didn't work"
86
  msgstr "Le %s n'a pas fonctionné"
87
 
88
- #: includes/class-freemius.php:2022
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "Je ne comprends pas comment le faire fonctionner"
91
 
92
- #: includes/class-freemius.php:2030
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
95
 
96
- #: includes/class-freemius.php:2032
97
  msgid "What feature?"
98
  msgstr "Quelle fonctionnalité ?"
99
 
100
- #: includes/class-freemius.php:2036
101
  msgid "The %s is not working"
102
  msgstr "Le %s ne fonctionne pas"
103
 
104
- #: includes/class-freemius.php:2038
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
107
 
108
- #: includes/class-freemius.php:2042
109
  msgid "It's not what I was looking for"
110
  msgstr "Ce n'est pas ce que je recherche"
111
 
112
- #: includes/class-freemius.php:2044
113
  msgid "What you've been looking for?"
114
  msgstr "Que recherchez-vous ?"
115
 
116
- #: includes/class-freemius.php:2048
117
  msgid "The %s didn't work as expected"
118
  msgstr "Le %s n'a pas fonctionné comme prévu"
119
 
120
- #: includes/class-freemius.php:2050
121
  msgid "What did you expect?"
122
  msgstr "À quoi vous attendiez-vous ?"
123
 
124
- #: includes/class-freemius.php2853, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Débuggage Freemius"
127
 
128
- #: includes/class-freemius.php:3581
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
131
 
132
- #: includes/class-freemius.php:3583
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
135
 
136
- #: includes/class-freemius.php:3590
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
139
 
140
- #: includes/class-freemius.php:3695
141
  msgid "Yes - do your thing"
142
  msgstr "Oui - allez-y"
143
 
144
- #: includes/class-freemius.php:3700
145
  msgid "No - just deactivate"
146
  msgstr "Non - désactivation seulement"
147
 
148
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
- #: includes/class-freemius.php18705, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oups"
158
 
159
- #: includes/class-freemius.php:3814
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
162
 
163
- #: includes/class-freemius.php:4250
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s ne peut pas fonctionner sans %s."
167
 
168
- #: includes/class-freemius.php:4251
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s ne peut pas fonctionner sans le plugin."
172
 
173
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
- #: includes/class-freemius.php:17659
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
177
 
178
- #: includes/class-freemius.php:5006
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La version premium de %s a été activée avec succès."
181
 
182
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "Génial"
186
 
187
- #: includes/class-freemius.php:5033
188
  msgid "You have a %s license."
189
  msgstr "Vous avez une license pour %s."
190
 
191
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
- #: includes/class-freemius.php:17413
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Youpi"
198
 
199
- #: includes/class-freemius.php:5301
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence."
202
 
203
- #: includes/class-freemius.php:5305
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
206
 
207
- #: includes/class-freemius.php5314, templates/add-ons.php103,
208
  #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Plus d'informations à propos de %s"
211
 
212
- #: includes/class-freemius.php:5315
213
  msgid "Purchase License"
214
  msgstr "Acheter une licence"
215
 
216
- #: includes/class-freemius.php6230, templates/connect.php:163
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
219
 
220
- #: includes/class-freemius.php:6234
221
  msgid "start the trial"
222
  msgstr "commencer la période d'essai"
223
 
224
- #: includes/class-freemius.php6235, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "compléter l'installation"
227
 
228
- #: includes/class-freemius.php:6348
229
  msgid "You are just one step away - %s"
230
  msgstr "Il ne reste qu'une étape - %s"
231
 
232
- #: includes/class-freemius.php:6351
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Compléter \"%s\" Activer Maintenant"
236
 
237
- #: includes/class-freemius.php:6429
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Nous avons fait quelques modifications au %s, %s"
240
 
241
- #: includes/class-freemius.php:6433
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
244
 
245
- #: includes/class-freemius.php:6861
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La mise à jour du %s s'est terminée avec succès "
248
 
249
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
- #: includes/class-fs-plugin-updater.php1077,
251
- #: includes/class-fs-plugin-updater.php1084,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Add-On"
255
 
256
- #: includes/class-freemius.php8707, templates/debug.php359,
257
  #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Plugin"
260
 
261
- #: includes/class-freemius.php8708, templates/debug.php359,
262
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
  msgid "Theme"
264
  msgstr "Thème"
265
 
266
- #: includes/class-freemius.php:11183
267
  msgid "Invalid site details collection."
268
- msgstr "Invalid site details collection."
269
 
270
- #: includes/class-freemius.php:11303
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
273
 
274
- #: includes/class-freemius.php:11305
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
277
 
278
- #: includes/class-freemius.php:11541
279
  msgid "Account is pending activation."
280
  msgstr "Compte en cours d'activation."
281
 
282
- #: includes/class-freemius.php11653,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Acheter une licence maintenant"
286
 
287
- #: includes/class-freemius.php11665,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renouvelez votre licence maintenant"
291
 
292
- #: includes/class-freemius.php:11669
293
  msgid "%s to access version %s security & feature updates, and support."
294
- msgstr "%s to access version %s security & feature updates, and support."
295
 
296
- #: includes/class-freemius.php:14052
297
  msgid "%s activation was successfully completed."
298
  msgstr "L'activation de %s s'est terminée avec succès."
299
 
300
- #: includes/class-freemius.php:14066
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Votre compte a été activé avec succès avec la formule %s."
303
 
304
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
  msgid "Your trial has been successfully started."
306
  msgstr "Votre période d'essai a bien démarré."
307
 
308
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
- #: includes/class-freemius.php:14761
310
  msgid "Couldn't activate %s."
311
  msgstr "Impossible d'activer %s."
312
 
313
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
- #: includes/class-freemius.php:14762
315
  msgid "Please contact us with the following message:"
316
  msgstr "Merci de nous contacter avec le message suivant :"
317
 
318
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
  msgid "Upgrade"
320
  msgstr "Mise à jour"
321
 
322
- #: includes/class-freemius.php:15117
323
  msgid "Start Trial"
324
  msgstr "Essai gratuit"
325
 
326
- #: includes/class-freemius.php:15119
327
  msgid "Pricing"
328
  msgstr "Tarifs"
329
 
330
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
  msgid "Affiliation"
332
  msgstr "Affiliation"
333
 
334
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
  #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Compte"
338
 
339
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Contactez Nous"
343
 
344
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
- #: includes/class-freemius.php19553, templates/account.php100,
346
  #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Add-Ons"
349
 
350
- #: includes/class-freemius.php:15274
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
- #: includes/class-freemius.php:15274
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
- #: includes/class-freemius.php15276, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Tarifs"
364
 
365
- #: includes/class-freemius.php15479,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Forum de Support"
369
 
370
- #: includes/class-freemius.php:16265
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
373
 
374
- #: includes/class-freemius.php:16266
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Directement"
378
 
379
- #: includes/class-freemius.php:16888
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Votre Add-on %s a bien été mis à jour."
382
 
383
- #: includes/class-freemius.php:16890
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "L'Add-on %s a bien été acheté."
386
 
387
- #: includes/class-freemius.php:16893
388
  msgid "Download the latest version"
389
  msgstr "Télécharger la dernière version"
390
 
391
- #: includes/class-freemius.php:16965
392
  msgctxt "%1s - plugin title, %2s - API domain"
393
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
  msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
395
 
396
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
- #: includes/class-freemius.php:17461
398
  msgid "Error received from the server:"
399
  msgstr "Une erreur a été reçu depuis le serveur :"
400
 
401
- #: includes/class-freemius.php:16978
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau."
404
 
405
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
- #: includes/class-freemius.php:17173
412
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
  msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé."
414
 
415
- #: includes/class-freemius.php17174, templates/account.php102,
416
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Période d'essai"
420
 
421
- #: includes/class-freemius.php:17179
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
424
 
425
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
  msgid "Please contact us here"
427
  msgstr "Merci de nous contacter ici"
428
 
429
- #: includes/class-freemius.php:17193
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Votre formule a bien été mise à jour."
432
 
433
- #: includes/class-freemius.php:17211
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Votre formule a bien été modifié vers %s. "
436
 
437
- #: includes/class-freemius.php:17227
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
440
 
441
- #: includes/class-freemius.php:17229
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
444
 
445
- #: includes/class-freemius.php:17237
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
448
 
449
- #: includes/class-freemius.php:17250
450
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance."
452
 
453
- #: includes/class-freemius.php:17273
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
456
 
457
- #: includes/class-freemius.php:17275
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
460
 
461
- #: includes/class-freemius.php:17380
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Il semble que la licence ne puisse être activée."
464
 
465
- #: includes/class-freemius.php:17410
466
  msgid "Your license was successfully activated."
467
  msgstr "Votre licence a bien été activée."
468
 
469
- #: includes/class-freemius.php:17436
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Il semble que votre site n'ait pas de licence active."
472
 
473
- #: includes/class-freemius.php:17460
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Il semble que la désactivation de la licence a échoué."
476
 
477
- #: includes/class-freemius.php:17488
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
480
 
481
- #: includes/class-freemius.php:17489
482
  msgid "O.K"
483
  msgstr "O.K"
484
 
485
- #: includes/class-freemius.php:17542
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
488
 
489
- #: includes/class-freemius.php:17551
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
- msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
 
493
- #: includes/class-freemius.php:17593
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Vous utilisez déjà le %s en période d'essai. "
496
 
497
- #: includes/class-freemius.php:17604
498
  msgid "You already utilized a trial before."
499
  msgstr "Vous avez déjà utilisé la période d'essai."
500
 
501
- #: includes/class-freemius.php:17618
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
504
 
505
- #: includes/class-freemius.php:17629
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "La formule %s ne propose pas de période d'essai."
508
 
509
- #: includes/class-freemius.php:17640
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Aucune formule du %s ne propose de période d'essai."
512
 
513
- #: includes/class-freemius.php:17690
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
516
 
517
- #: includes/class-freemius.php:17726
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
520
 
521
- #: includes/class-freemius.php:17745
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Votre période d'essai %s a bien été annulé."
524
 
525
- #: includes/class-freemius.php:18052
526
  msgid "Version %s was released."
527
  msgstr "La version %s vient d'être publiée."
528
 
529
- #: includes/class-freemius.php:18052
530
  msgid "Please download %s."
531
  msgstr "Merci de télécharger %s."
532
 
533
- #: includes/class-freemius.php:18059
534
  msgid "the latest %s version here"
535
  msgstr "la dernière version de %s ici"
536
 
537
- #: includes/class-freemius.php:18064
538
  msgid "New"
539
  msgstr "Nouveau"
540
 
541
- #: includes/class-freemius.php:18069
542
  msgid "Seems like you got the latest release."
543
  msgstr "Il semble que vous ayez la dernière version."
544
 
545
- #: includes/class-freemius.php:18070
546
  msgid "You are all good!"
547
  msgstr "Vous êtes tout bon !"
548
 
549
- #: includes/class-freemius.php:18338
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams."
552
 
553
- #: includes/class-freemius.php:18473
554
  msgid "Site successfully opted in."
555
  msgstr "Site ajouté avec succès."
556
 
557
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
  msgid "Awesome"
559
  msgstr "Formidable"
560
 
561
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
564
 
565
- #: includes/class-freemius.php:18491
566
  msgid "Thank you!"
567
  msgstr "Merci !"
568
 
569
- #: includes/class-freemius.php:18498
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
572
 
573
- #: includes/class-freemius.php:18627
574
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
  msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
576
 
577
- #: includes/class-freemius.php:18633
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
580
 
581
- #: includes/class-freemius.php:18638
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s est le nouveau propriétaire du compte."
584
 
585
- #: includes/class-freemius.php:18640
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Félicitations"
589
 
590
- #: includes/class-freemius.php:18660
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
593
 
594
- #: includes/class-freemius.php:18661
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
597
 
598
- #: includes/class-freemius.php:18668
599
  msgid "Change Ownership"
600
  msgstr "Changement De Propriétaire"
601
 
602
- #: includes/class-freemius.php:18676
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
605
 
606
- #: includes/class-freemius.php:18688
607
  msgid "Please provide your full name."
608
  msgstr "Merci d'indiquer vos prénom et nom."
609
 
610
- #: includes/class-freemius.php:18693
611
  msgid "Your name was successfully updated."
612
  msgstr "Votre nom a été mis à jour."
613
 
614
- #: includes/class-freemius.php:18754
615
  msgid "You have successfully updated your %s."
616
  msgstr "Votre %s a bien été mis à jour."
617
 
618
- #: includes/class-freemius.php:18894
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
621
 
622
- #: includes/class-freemius.php:18895
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Avertissement"
626
 
627
- #: includes/class-freemius.php:19325
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Hey"
631
 
632
- #: includes/class-freemius.php:19325
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
635
 
636
- #: includes/class-freemius.php:19333
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
639
 
640
- #: includes/class-freemius.php:19334
641
  msgid "No credit card required"
642
  msgstr "Pas besoin de carte bancaire"
643
 
644
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Commencer l'essai gratuit"
648
 
649
- #: includes/class-freemius.php:19418
650
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
  msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !"
652
 
653
- #: includes/class-freemius.php:19427
654
  msgid "Learn more"
655
  msgstr "En savoir plus"
656
 
657
- #: includes/class-freemius.php19577, templates/account.php406,
658
  #: templates/account.php509, templates/connect.php171,
659
  #: templates/connect.php421, templates/forms/license-activation.php24,
660
  #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Activer la licence"
663
 
664
- #: includes/class-freemius.php19578, templates/account.php469,
665
  #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Changer la licence"
668
 
669
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Désinscription"
672
 
673
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Inscription"
678
 
679
- #: includes/class-freemius.php:19891
680
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
 
683
- #: includes/class-freemius.php:19899
684
  msgid "Activate %s features"
685
- msgstr "Activate %s features"
686
 
687
- #: includes/class-freemius.php:19912
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
690
 
691
- #: includes/class-freemius.php:19916
692
  msgid "Download the latest %s version"
693
  msgstr "Télécharger la dernière version %s"
694
 
695
- #: includes/class-freemius.php:19920
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Téléverser et activer la version téléchargée"
698
 
699
- #: includes/class-freemius.php:19922
700
  msgid "How to upload and activate?"
701
  msgstr "Comment téléverser et activer ?"
702
 
703
- #: includes/class-freemius.php:20056
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
706
 
707
- #: includes/class-freemius.php:20217
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
710
 
711
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
- #: includes/class-fs-plugin-updater.php1056,
713
- #: includes/class-fs-plugin-updater.php:1070
714
  msgid "Invalid module ID."
715
  msgstr "ID du module non valide."
716
 
717
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
  msgid "Premium version already active."
719
  msgstr "Version premium déjà active."
720
 
721
- #: includes/class-freemius.php:20243
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
724
 
725
- #: includes/class-freemius.php:20250
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
728
 
729
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
  msgid "Premium add-on version already installed."
731
  msgstr "La version premium de l'add-on est déjà installée."
732
 
733
- #: includes/class-freemius.php:20613
734
  msgid "View paid features"
735
  msgstr "Voir les fonctionnalités payantes"
736
 
737
- #: includes/class-freemius.php:20927
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
740
 
741
- #: includes/class-freemius.php:20928
742
  msgid "Thank you so much for using %s!"
743
  msgstr "Merci beaucoup d'utiliser %s !"
744
 
745
- #: includes/class-freemius.php:20934
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
748
 
749
- #: includes/class-freemius.php:20938
750
  msgid "Thank you so much for using our products!"
751
  msgstr "Merci beaucoup d'utiliser nos produits !"
752
 
753
- #: includes/class-freemius.php:20939
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
756
 
757
- #: includes/class-freemius.php:20958
758
  msgid "%s and its add-ons"
759
  msgstr "%s et ses add-ons"
760
 
761
- #: includes/class-freemius.php:20967
762
  msgid "Products"
763
  msgstr "Produits"
764
 
765
- #: includes/class-freemius.php20974, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Oui"
768
 
769
- #: includes/class-freemius.php20975, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
772
 
773
- #: includes/class-freemius.php20976, templates/connect.php:278
774
  msgid "No"
775
  msgstr "Non"
776
 
777
- #: includes/class-freemius.php20978, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
780
 
781
- #: includes/class-freemius.php:20988
782
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
  msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
784
 
785
- #: includes/class-freemius.php20990, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :"
788
 
789
- #: includes/class-freemius.php:21272
790
  msgid "License key is empty."
791
  msgstr "La clé de licence est vide."
792
 
@@ -798,29 +798,29 @@ msgstr "Renouvelez votre licence"
798
  #: includes/class-fs-plugin-updater.php189,
799
  #: templates/forms/premium-versions-upgrade-handler.php:58
800
  msgid "Buy license"
801
- msgstr "Buy license"
802
 
803
  #: includes/class-fs-plugin-updater.php:278
804
  msgid "There is a %s of %s available."
805
- msgstr "There is a %s of %s available."
806
 
807
  #: includes/class-fs-plugin-updater.php:282
808
  msgid "new version"
809
- msgstr "new version"
810
 
811
- #: includes/class-fs-plugin-updater.php:301
812
  msgid "Important Upgrade Notice:"
813
- msgstr "Important Upgrade Notice:"
814
 
815
- #: includes/class-fs-plugin-updater.php:1121
816
  msgid "Installing plugin: %s"
817
  msgstr "Installation du plugin : %s"
818
 
819
- #: includes/class-fs-plugin-updater.php:1162
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
822
 
823
- #: includes/class-fs-plugin-updater.php:1335
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer."
826
 
@@ -1125,13 +1125,13 @@ msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1125
  #: templates/account/partials/addon.php22,
1126
  #: templates/account/partials/site.php:295
1127
  msgid "Downgrading your plan"
1128
- msgstr "Downgrading your plan"
1129
 
1130
  #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
  #: templates/account/partials/addon.php23,
1132
  #: templates/account/partials/site.php:296
1133
  msgid "Cancelling the subscription"
1134
- msgstr "Cancelling the subscription"
1135
 
1136
  #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
  #. subscription'
@@ -1139,13 +1139,13 @@ msgstr "Cancelling the subscription"
1139
  #: templates/account/partials/addon.php25,
1140
  #: templates/account/partials/site.php:298
1141
  msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
 
1144
  #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
  #: templates/account/partials/addon.php26,
1146
  #: templates/account/partials/site.php:299
1147
  msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
- msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
 
1150
  #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
  #: templates/account/partials/addon.php:27
@@ -1156,7 +1156,7 @@ msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalit
1156
  #: templates/account/partials/addon.php28,
1157
  #: templates/account/partials/site.php:300
1158
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
 
1161
  #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
  #: templates/account/partials/addon.php29,
@@ -1388,22 +1388,22 @@ msgstr "Cacher"
1388
 
1389
  #: templates/account.php:686
1390
  msgid "Cancelling %s"
1391
- msgstr "Cancelling %s"
1392
 
1393
  #: templates/account.php686, templates/account.php703,
1394
  #: templates/forms/subscription-cancellation.php27,
1395
  #: templates/forms/deactivation/form.php:117
1396
  msgid "trial"
1397
- msgstr "trial"
1398
 
1399
  #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
  msgid "Cancelling %s..."
1401
- msgstr "Cancelling %s..."
1402
 
1403
  #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
  #: templates/forms/deactivation/form.php:118
1405
  msgid "subscription"
1406
- msgstr "subscription"
1407
 
1408
  #: templates/account.php:718
1409
  msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
@@ -1605,7 +1605,7 @@ msgstr "Politique de confidentialité"
1605
 
1606
  #: templates/connect.php:430
1607
  msgid "License Agreement"
1608
- msgstr "License Agreement"
1609
 
1610
  #: templates/connect.php:430
1611
  msgid "Terms of Service"
@@ -1671,7 +1671,7 @@ msgstr "Synchronisation des données depuis le serveur"
1671
 
1672
  #: templates/debug.php:95
1673
  msgid "Migrate Options to Network"
1674
- msgstr "Migrate Options to Network"
1675
 
1676
  #: templates/debug.php:100
1677
  msgid "Load DB Option"
@@ -1752,7 +1752,7 @@ msgstr "Bloqué"
1752
 
1753
  #: templates/debug.php:320
1754
  msgid "Simulate Trial Promotion"
1755
- msgstr "Simulate Trial Promotion"
1756
 
1757
  #: templates/debug.php:332
1758
  msgid "Simulate Network Upgrade"
@@ -2222,7 +2222,7 @@ msgstr "Il y a une nouvelle version disponible de %s. "
2222
 
2223
  #: templates/forms/premium-versions-upgrade-handler.php:41
2224
  msgid " %s to access version %s security & feature updates, and support."
2225
- msgstr " %s to access version %s security & feature updates, and support."
2226
 
2227
  #: templates/forms/premium-versions-upgrade-handler.php:54
2228
  msgid "New Version Available"
@@ -2243,40 +2243,40 @@ msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise
2243
 
2244
  #: templates/forms/subscription-cancellation.php:37
2245
  msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
- msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
 
2248
  #: templates/forms/subscription-cancellation.php:47
2249
  msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
- msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
 
2252
  #: templates/forms/subscription-cancellation.php:52
2253
  msgid "license"
2254
- msgstr "license"
2255
 
2256
  #: templates/forms/subscription-cancellation.php:57
2257
  msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
- msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
 
2260
  #: templates/forms/subscription-cancellation.php:68
2261
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
- msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
 
2264
  #: templates/forms/subscription-cancellation.php:103
2265
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
- msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
 
2268
  #: templates/forms/subscription-cancellation.php:136
2269
  msgid "Cancel %s?"
2270
- msgstr "Cancel %s?"
2271
 
2272
  #: templates/forms/subscription-cancellation.php:143
2273
  msgid "Proceed"
2274
- msgstr "Proceed"
2275
 
2276
  #: templates/forms/subscription-cancellation.php191,
2277
  #: templates/forms/deactivation/form.php:150
2278
  msgid "Cancel %s & Proceed"
2279
- msgstr "Cancel %s & Proceed"
2280
 
2281
  #: templates/forms/trial-start.php:22
2282
  msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
@@ -2394,7 +2394,7 @@ msgstr "Activer %s"
2394
 
2395
  #: templates/forms/deactivation/form.php:80
2396
  msgid "Quick Feedback"
2397
- msgstr "Quick Feedback"
2398
 
2399
  #: templates/forms/deactivation/form.php:84
2400
  msgid "If you have a moment, please let us know why you are %s"
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Boris Colombier <transifex.com@wba.fr>, 2018
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2018-11-29 17:40+0000\n"
11
  "Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
12
  "Language: fr_FR\n"
13
  "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php:1688
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
27
 
28
+ #: includes/class-freemius.php:1690
29
  msgid "Error"
30
  msgstr "Erreur"
31
 
32
+ #: includes/class-freemius.php:2011
33
  msgid "I found a better %s"
34
  msgstr "J'ai trouvé un meilleur %s"
35
 
36
+ #: includes/class-freemius.php:2013
37
  msgid "What's the %s's name?"
38
  msgstr "Quel est le nom du %s ?"
39
 
40
+ #: includes/class-freemius.php:2019
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "C'est une %s temporaire. Je corrige un problème."
43
 
44
+ #: includes/class-freemius.php:2021
45
  msgid "Deactivation"
46
  msgstr "Désactivation"
47
 
48
+ #: includes/class-freemius.php:2022
49
  msgid "Theme Switch"
50
  msgstr "Changement de Thème"
51
 
52
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Autre"
55
 
56
+ #: includes/class-freemius.php:2039
57
  msgid "I no longer need the %s"
58
  msgstr "Je n'ai plus besoin du %s"
59
 
60
+ #: includes/class-freemius.php:2046
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Je n'ai besoin de %s que pour une courte période"
63
 
64
+ #: includes/class-freemius.php:2052
65
  msgid "The %s broke my site"
66
  msgstr "Le %s a cassé mon site"
67
 
68
+ #: includes/class-freemius.php:2059
69
  msgid "The %s suddenly stopped working"
70
  msgstr "Le %s a soudainement arrêté de fonctionner"
71
 
72
+ #: includes/class-freemius.php:2069
73
  msgid "I can't pay for it anymore"
74
  msgstr "Je ne peux plus payer pour ça"
75
 
76
+ #: includes/class-freemius.php:2071
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "Quel prix seriez-vous prêt à payer ?"
79
 
80
+ #: includes/class-freemius.php:2077
81
  msgid "I don't like to share my information with you"
82
  msgstr "Je ne veux pas partager mes informations avec vous"
83
 
84
+ #: includes/class-freemius.php:2098
85
  msgid "The %s didn't work"
86
  msgstr "Le %s n'a pas fonctionné"
87
 
88
+ #: includes/class-freemius.php:2108
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "Je ne comprends pas comment le faire fonctionner"
91
 
92
+ #: includes/class-freemius.php:2116
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
95
 
96
+ #: includes/class-freemius.php:2118
97
  msgid "What feature?"
98
  msgstr "Quelle fonctionnalité ?"
99
 
100
+ #: includes/class-freemius.php:2122
101
  msgid "The %s is not working"
102
  msgstr "Le %s ne fonctionne pas"
103
 
104
+ #: includes/class-freemius.php:2124
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
107
 
108
+ #: includes/class-freemius.php:2128
109
  msgid "It's not what I was looking for"
110
  msgstr "Ce n'est pas ce que je recherche"
111
 
112
+ #: includes/class-freemius.php:2130
113
  msgid "What you've been looking for?"
114
  msgstr "Que recherchez-vous ?"
115
 
116
+ #: includes/class-freemius.php:2134
117
  msgid "The %s didn't work as expected"
118
  msgstr "Le %s n'a pas fonctionné comme prévu"
119
 
120
+ #: includes/class-freemius.php:2136
121
  msgid "What did you expect?"
122
  msgstr "À quoi vous attendiez-vous ?"
123
 
124
+ #: includes/class-freemius.php2942, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Débuggage Freemius"
127
 
128
+ #: includes/class-freemius.php:3670
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
131
 
132
+ #: includes/class-freemius.php:3672
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
135
 
136
+ #: includes/class-freemius.php:3679
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
139
 
140
+ #: includes/class-freemius.php:3784
141
  msgid "Yes - do your thing"
142
  msgstr "Oui - allez-y"
143
 
144
+ #: includes/class-freemius.php:3789
145
  msgid "No - just deactivate"
146
  msgstr "Non - désactivation seulement"
147
 
148
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oups"
158
 
159
+ #: includes/class-freemius.php:3903
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
162
 
163
+ #: includes/class-freemius.php:4340
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s ne peut pas fonctionner sans %s."
167
 
168
+ #: includes/class-freemius.php:4341
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s ne peut pas fonctionner sans le plugin."
172
 
173
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
174
+ #: includes/class-freemius.php:17953
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
177
 
178
+ #: includes/class-freemius.php:5130
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La version premium de %s a été activée avec succès."
181
 
182
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "Génial"
186
 
187
+ #: includes/class-freemius.php:5157
188
  msgid "You have a %s license."
189
  msgstr "Vous avez une license pour %s."
190
 
191
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
+ #: includes/class-freemius.php:17707
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Youpi"
198
 
199
+ #: includes/class-freemius.php:5425
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence."
202
 
203
+ #: includes/class-freemius.php:5429
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
206
 
207
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
208
  #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Plus d'informations à propos de %s"
211
 
212
+ #: includes/class-freemius.php:5439
213
  msgid "Purchase License"
214
  msgstr "Acheter une licence"
215
 
216
+ #: includes/class-freemius.php6372, templates/connect.php:163
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
219
 
220
+ #: includes/class-freemius.php:6376
221
  msgid "start the trial"
222
  msgstr "commencer la période d'essai"
223
 
224
+ #: includes/class-freemius.php6377, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "compléter l'installation"
227
 
228
+ #: includes/class-freemius.php:6490
229
  msgid "You are just one step away - %s"
230
  msgstr "Il ne reste qu'une étape - %s"
231
 
232
+ #: includes/class-freemius.php:6493
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Compléter \"%s\" Activer Maintenant"
236
 
237
+ #: includes/class-freemius.php:6571
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Nous avons fait quelques modifications au %s, %s"
240
 
241
+ #: includes/class-freemius.php:6575
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
244
 
245
+ #: includes/class-freemius.php:7003
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La mise à jour du %s s'est terminée avec succès "
248
 
249
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
+ #: includes/class-fs-plugin-updater.php1081,
251
+ #: includes/class-fs-plugin-updater.php1088,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Add-On"
255
 
256
+ #: includes/class-freemius.php8927, templates/debug.php359,
257
  #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Plugin"
260
 
261
+ #: includes/class-freemius.php8928, templates/debug.php359,
262
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
  msgid "Theme"
264
  msgstr "Thème"
265
 
266
+ #: includes/class-freemius.php:11412
267
  msgid "Invalid site details collection."
268
+ msgstr "Récupération des détails du site non valide."
269
 
270
+ #: includes/class-freemius.php:11532
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
273
 
274
+ #: includes/class-freemius.php:11534
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
277
 
278
+ #: includes/class-freemius.php:11808
279
  msgid "Account is pending activation."
280
  msgstr "Compte en cours d'activation."
281
 
282
+ #: includes/class-freemius.php11920,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Acheter une licence maintenant"
286
 
287
+ #: includes/class-freemius.php11932,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renouvelez votre licence maintenant"
291
 
292
+ #: includes/class-freemius.php:11936
293
  msgid "%s to access version %s security & feature updates, and support."
294
+ msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
295
 
296
+ #: includes/class-freemius.php:14319
297
  msgid "%s activation was successfully completed."
298
  msgstr "L'activation de %s s'est terminée avec succès."
299
 
300
+ #: includes/class-freemius.php:14333
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Votre compte a été activé avec succès avec la formule %s."
303
 
304
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
  msgid "Your trial has been successfully started."
306
  msgstr "Votre période d'essai a bien démarré."
307
 
308
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
+ #: includes/class-freemius.php:15028
310
  msgid "Couldn't activate %s."
311
  msgstr "Impossible d'activer %s."
312
 
313
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
+ #: includes/class-freemius.php:15029
315
  msgid "Please contact us with the following message:"
316
  msgstr "Merci de nous contacter avec le message suivant :"
317
 
318
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
319
  msgid "Upgrade"
320
  msgstr "Mise à jour"
321
 
322
+ #: includes/class-freemius.php:15384
323
  msgid "Start Trial"
324
  msgstr "Essai gratuit"
325
 
326
+ #: includes/class-freemius.php:15386
327
  msgid "Pricing"
328
  msgstr "Tarifs"
329
 
330
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
  msgid "Affiliation"
332
  msgstr "Affiliation"
333
 
334
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
  #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Compte"
338
 
339
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Contactez Nous"
343
 
344
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
+ #: includes/class-freemius.php19849, templates/account.php100,
346
  #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Add-Ons"
349
 
350
+ #: includes/class-freemius.php:15541
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
+ #: includes/class-freemius.php:15541
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
+ #: includes/class-freemius.php15543, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Tarifs"
364
 
365
+ #: includes/class-freemius.php15756,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Forum de Support"
369
 
370
+ #: includes/class-freemius.php:16542
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
373
 
374
+ #: includes/class-freemius.php:16543
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Directement"
378
 
379
+ #: includes/class-freemius.php:17168
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Votre Add-on %s a bien été mis à jour."
382
 
383
+ #: includes/class-freemius.php:17170
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "L'Add-on %s a bien été acheté."
386
 
387
+ #: includes/class-freemius.php:17173
388
  msgid "Download the latest version"
389
  msgstr "Télécharger la dernière version"
390
 
391
+ #: includes/class-freemius.php:17259
392
  msgctxt "%1s - plugin title, %2s - API domain"
393
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
  msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
395
 
396
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
+ #: includes/class-freemius.php:17755
398
  msgid "Error received from the server:"
399
  msgstr "Une erreur a été reçu depuis le serveur :"
400
 
401
+ #: includes/class-freemius.php:17272
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau."
404
 
405
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Hmm"
410
 
411
+ #: includes/class-freemius.php:17467
412
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
  msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé."
414
 
415
+ #: includes/class-freemius.php17468, templates/account.php102,
416
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Période d'essai"
420
 
421
+ #: includes/class-freemius.php:17473
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
424
 
425
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
  msgid "Please contact us here"
427
  msgstr "Merci de nous contacter ici"
428
 
429
+ #: includes/class-freemius.php:17487
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Votre formule a bien été mise à jour."
432
 
433
+ #: includes/class-freemius.php:17505
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Votre formule a bien été modifié vers %s. "
436
 
437
+ #: includes/class-freemius.php:17521
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
440
 
441
+ #: includes/class-freemius.php:17523
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
444
 
445
+ #: includes/class-freemius.php:17531
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
448
 
449
+ #: includes/class-freemius.php:17544
450
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance."
452
 
453
+ #: includes/class-freemius.php:17567
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
456
 
457
+ #: includes/class-freemius.php:17569
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
460
 
461
+ #: includes/class-freemius.php:17674
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Il semble que la licence ne puisse être activée."
464
 
465
+ #: includes/class-freemius.php:17704
466
  msgid "Your license was successfully activated."
467
  msgstr "Votre licence a bien été activée."
468
 
469
+ #: includes/class-freemius.php:17730
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Il semble que votre site n'ait pas de licence active."
472
 
473
+ #: includes/class-freemius.php:17754
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Il semble que la désactivation de la licence a échoué."
476
 
477
+ #: includes/class-freemius.php:17782
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
480
 
481
+ #: includes/class-freemius.php:17783
482
  msgid "O.K"
483
  msgstr "O.K"
484
 
485
+ #: includes/class-freemius.php:17836
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
488
 
489
+ #: includes/class-freemius.php:17845
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
+ msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
492
 
493
+ #: includes/class-freemius.php:17887
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Vous utilisez déjà le %s en période d'essai. "
496
 
497
+ #: includes/class-freemius.php:17898
498
  msgid "You already utilized a trial before."
499
  msgstr "Vous avez déjà utilisé la période d'essai."
500
 
501
+ #: includes/class-freemius.php:17912
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
504
 
505
+ #: includes/class-freemius.php:17923
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "La formule %s ne propose pas de période d'essai."
508
 
509
+ #: includes/class-freemius.php:17934
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Aucune formule du %s ne propose de période d'essai."
512
 
513
+ #: includes/class-freemius.php:17984
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
516
 
517
+ #: includes/class-freemius.php:18020
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
520
 
521
+ #: includes/class-freemius.php:18039
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Votre période d'essai %s a bien été annulé."
524
 
525
+ #: includes/class-freemius.php:18346
526
  msgid "Version %s was released."
527
  msgstr "La version %s vient d'être publiée."
528
 
529
+ #: includes/class-freemius.php:18346
530
  msgid "Please download %s."
531
  msgstr "Merci de télécharger %s."
532
 
533
+ #: includes/class-freemius.php:18353
534
  msgid "the latest %s version here"
535
  msgstr "la dernière version de %s ici"
536
 
537
+ #: includes/class-freemius.php:18358
538
  msgid "New"
539
  msgstr "Nouveau"
540
 
541
+ #: includes/class-freemius.php:18363
542
  msgid "Seems like you got the latest release."
543
  msgstr "Il semble que vous ayez la dernière version."
544
 
545
+ #: includes/class-freemius.php:18364
546
  msgid "You are all good!"
547
  msgstr "Vous êtes tout bon !"
548
 
549
+ #: includes/class-freemius.php:18632
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams."
552
 
553
+ #: includes/class-freemius.php:18769
554
  msgid "Site successfully opted in."
555
  msgstr "Site ajouté avec succès."
556
 
557
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
  msgid "Awesome"
559
  msgstr "Formidable"
560
 
561
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
564
 
565
+ #: includes/class-freemius.php:18787
566
  msgid "Thank you!"
567
  msgstr "Merci !"
568
 
569
+ #: includes/class-freemius.php:18794
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
572
 
573
+ #: includes/class-freemius.php:18923
574
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
  msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
576
 
577
+ #: includes/class-freemius.php:18929
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
580
 
581
+ #: includes/class-freemius.php:18934
582
  msgid "%s is the new owner of the account."
583
  msgstr "%s est le nouveau propriétaire du compte."
584
 
585
+ #: includes/class-freemius.php:18936
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Félicitations"
589
 
590
+ #: includes/class-freemius.php:18956
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
593
 
594
+ #: includes/class-freemius.php:18957
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
597
 
598
+ #: includes/class-freemius.php:18964
599
  msgid "Change Ownership"
600
  msgstr "Changement De Propriétaire"
601
 
602
+ #: includes/class-freemius.php:18972
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
605
 
606
+ #: includes/class-freemius.php:18984
607
  msgid "Please provide your full name."
608
  msgstr "Merci d'indiquer vos prénom et nom."
609
 
610
+ #: includes/class-freemius.php:18989
611
  msgid "Your name was successfully updated."
612
  msgstr "Votre nom a été mis à jour."
613
 
614
+ #: includes/class-freemius.php:19050
615
  msgid "You have successfully updated your %s."
616
  msgstr "Votre %s a bien été mis à jour."
617
 
618
+ #: includes/class-freemius.php:19190
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
621
 
622
+ #: includes/class-freemius.php:19191
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Avertissement"
626
 
627
+ #: includes/class-freemius.php:19621
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Hey"
631
 
632
+ #: includes/class-freemius.php:19621
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
635
 
636
+ #: includes/class-freemius.php:19629
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
639
 
640
+ #: includes/class-freemius.php:19630
641
  msgid "No credit card required"
642
  msgstr "Pas besoin de carte bancaire"
643
 
644
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Commencer l'essai gratuit"
648
 
649
+ #: includes/class-freemius.php:19714
650
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
  msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !"
652
 
653
+ #: includes/class-freemius.php:19723
654
  msgid "Learn more"
655
  msgstr "En savoir plus"
656
 
657
+ #: includes/class-freemius.php19873, templates/account.php406,
658
  #: templates/account.php509, templates/connect.php171,
659
  #: templates/connect.php421, templates/forms/license-activation.php24,
660
  #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Activer la licence"
663
 
664
+ #: includes/class-freemius.php19874, templates/account.php469,
665
  #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Changer la licence"
668
 
669
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Désinscription"
672
 
673
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Inscription"
678
 
679
+ #: includes/class-freemius.php:20187
680
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
+ msgstr "La version payante de %1s est déjà installée. Merci de l'activer pour bénéficier des fonctionnalités %2s. %3s"
682
 
683
+ #: includes/class-freemius.php:20195
684
  msgid "Activate %s features"
685
+ msgstr "Activer les fonctionnalités %s"
686
 
687
+ #: includes/class-freemius.php:20208
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
690
 
691
+ #: includes/class-freemius.php:20212
692
  msgid "Download the latest %s version"
693
  msgstr "Télécharger la dernière version %s"
694
 
695
+ #: includes/class-freemius.php:20216
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Téléverser et activer la version téléchargée"
698
 
699
+ #: includes/class-freemius.php:20218
700
  msgid "How to upload and activate?"
701
  msgstr "Comment téléverser et activer ?"
702
 
703
+ #: includes/class-freemius.php:20352
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
706
 
707
+ #: includes/class-freemius.php:20513
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
710
 
711
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
+ #: includes/class-fs-plugin-updater.php1060,
713
+ #: includes/class-fs-plugin-updater.php:1074
714
  msgid "Invalid module ID."
715
  msgstr "ID du module non valide."
716
 
717
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
  msgid "Premium version already active."
719
  msgstr "Version premium déjà active."
720
 
721
+ #: includes/class-freemius.php:20539
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
724
 
725
+ #: includes/class-freemius.php:20546
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
728
 
729
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
  msgid "Premium add-on version already installed."
731
  msgstr "La version premium de l'add-on est déjà installée."
732
 
733
+ #: includes/class-freemius.php:20909
734
  msgid "View paid features"
735
  msgstr "Voir les fonctionnalités payantes"
736
 
737
+ #: includes/class-freemius.php:21229
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
740
 
741
+ #: includes/class-freemius.php:21230
742
  msgid "Thank you so much for using %s!"
743
  msgstr "Merci beaucoup d'utiliser %s !"
744
 
745
+ #: includes/class-freemius.php:21236
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
748
 
749
+ #: includes/class-freemius.php:21240
750
  msgid "Thank you so much for using our products!"
751
  msgstr "Merci beaucoup d'utiliser nos produits !"
752
 
753
+ #: includes/class-freemius.php:21241
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
756
 
757
+ #: includes/class-freemius.php:21260
758
  msgid "%s and its add-ons"
759
  msgstr "%s et ses add-ons"
760
 
761
+ #: includes/class-freemius.php:21269
762
  msgid "Products"
763
  msgstr "Produits"
764
 
765
+ #: includes/class-freemius.php21276, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Oui"
768
 
769
+ #: includes/class-freemius.php21277, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
772
 
773
+ #: includes/class-freemius.php21278, templates/connect.php:278
774
  msgid "No"
775
  msgstr "Non"
776
 
777
+ #: includes/class-freemius.php21280, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
780
 
781
+ #: includes/class-freemius.php:21290
782
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
  msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
784
 
785
+ #: includes/class-freemius.php21292, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :"
788
 
789
+ #: includes/class-freemius.php:21574
790
  msgid "License key is empty."
791
  msgstr "La clé de licence est vide."
792
 
798
  #: includes/class-fs-plugin-updater.php189,
799
  #: templates/forms/premium-versions-upgrade-handler.php:58
800
  msgid "Buy license"
801
+ msgstr "Acheter une licence"
802
 
803
  #: includes/class-fs-plugin-updater.php:278
804
  msgid "There is a %s of %s available."
805
+ msgstr "Il y a une %s de %s disponible."
806
 
807
  #: includes/class-fs-plugin-updater.php:282
808
  msgid "new version"
809
+ msgstr "Nouvelle version"
810
 
811
+ #: includes/class-fs-plugin-updater.php:305
812
  msgid "Important Upgrade Notice:"
813
+ msgstr "Information importante de mise à jour :"
814
 
815
+ #: includes/class-fs-plugin-updater.php:1125
816
  msgid "Installing plugin: %s"
817
  msgstr "Installation du plugin : %s"
818
 
819
+ #: includes/class-fs-plugin-updater.php:1166
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
822
 
823
+ #: includes/class-fs-plugin-updater.php:1348
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer."
826
 
1125
  #: templates/account/partials/addon.php22,
1126
  #: templates/account/partials/site.php:295
1127
  msgid "Downgrading your plan"
1128
+ msgstr "Rétrograder votre formule"
1129
 
1130
  #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
  #: templates/account/partials/addon.php23,
1132
  #: templates/account/partials/site.php:296
1133
  msgid "Cancelling the subscription"
1134
+ msgstr "Annuler votre abonnement"
1135
 
1136
  #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
  #. subscription'
1139
  #: templates/account/partials/addon.php25,
1140
  #: templates/account/partials/site.php:298
1141
  msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
+ msgstr "%1s va immédiatement arrêter tous les futurs paiements récurrents et la licence de votre formule %s expirera dans %s."
1143
 
1144
  #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
  #: templates/account/partials/addon.php26,
1146
  #: templates/account/partials/site.php:299
1147
  msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
+ msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé."
1149
 
1150
  #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
  #: templates/account/partials/addon.php:27
1156
  #: templates/account/partials/addon.php28,
1157
  #: templates/account/partials/site.php:300
1158
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
+ msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support."
1160
 
1161
  #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
  #: templates/account/partials/addon.php29,
1388
 
1389
  #: templates/account.php:686
1390
  msgid "Cancelling %s"
1391
+ msgstr "Annulation de %s"
1392
 
1393
  #: templates/account.php686, templates/account.php703,
1394
  #: templates/forms/subscription-cancellation.php27,
1395
  #: templates/forms/deactivation/form.php:117
1396
  msgid "trial"
1397
+ msgstr "essai"
1398
 
1399
  #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
  msgid "Cancelling %s..."
1401
+ msgstr "Annulation de %s..."
1402
 
1403
  #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
  #: templates/forms/deactivation/form.php:118
1405
  msgid "subscription"
1406
+ msgstr "abonnement"
1407
 
1408
  #: templates/account.php:718
1409
  msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1605
 
1606
  #: templates/connect.php:430
1607
  msgid "License Agreement"
1608
+ msgstr "Contrat de licence"
1609
 
1610
  #: templates/connect.php:430
1611
  msgid "Terms of Service"
1671
 
1672
  #: templates/debug.php:95
1673
  msgid "Migrate Options to Network"
1674
+ msgstr "Migrer les options vers le réseau"
1675
 
1676
  #: templates/debug.php:100
1677
  msgid "Load DB Option"
1752
 
1753
  #: templates/debug.php:320
1754
  msgid "Simulate Trial Promotion"
1755
+ msgstr "Simuler la promotion d'essai"
1756
 
1757
  #: templates/debug.php:332
1758
  msgid "Simulate Network Upgrade"
2222
 
2223
  #: templates/forms/premium-versions-upgrade-handler.php:41
2224
  msgid " %s to access version %s security & feature updates, and support."
2225
+ msgstr "%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la version %s, et au support."
2226
 
2227
  #: templates/forms/premium-versions-upgrade-handler.php:54
2228
  msgid "New Version Available"
2243
 
2244
  #: templates/forms/subscription-cancellation.php:37
2245
  msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
+ msgstr "Désactiver ou désinstaller le %s désactivera automatiquement la licence, que vous pourrez utiliser sur un autre site."
2247
 
2248
  #: templates/forms/subscription-cancellation.php:47
2249
  msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
+ msgstr "Dans le cas vous n'avez PAS l'intention d'utiliser ce %s sur ce site (ou tout autre site) - voulez-vous aussi annuler le %s ?"
2251
 
2252
  #: templates/forms/subscription-cancellation.php:52
2253
  msgid "license"
2254
+ msgstr "licence"
2255
 
2256
  #: templates/forms/subscription-cancellation.php:57
2257
  msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
+ msgstr "Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de fonctionnalités, ni de support pour %s parce que je n'ai pas l'intention d'utiliser le %s sur ce site, ou tout autre site."
2259
 
2260
  #: templates/forms/subscription-cancellation.php:68
2261
  msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
+ msgstr "Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité et de fonctionnalités, ainsi que d'être en mesure de contacter le support."
2263
 
2264
  #: templates/forms/subscription-cancellation.php:103
2265
  msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
+ msgstr "Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf si vous l'activez à nouveau avec une licence premium valide."
2267
 
2268
  #: templates/forms/subscription-cancellation.php:136
2269
  msgid "Cancel %s?"
2270
+ msgstr "Annuler %s ?"
2271
 
2272
  #: templates/forms/subscription-cancellation.php:143
2273
  msgid "Proceed"
2274
+ msgstr "Poursuivre"
2275
 
2276
  #: templates/forms/subscription-cancellation.php191,
2277
  #: templates/forms/deactivation/form.php:150
2278
  msgid "Cancel %s & Proceed"
2279
+ msgstr "Annuler %s et poursuivre"
2280
 
2281
  #: templates/forms/trial-start.php:22
2282
  msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2394
 
2395
  #: templates/forms/deactivation/form.php:80
2396
  msgid "Quick Feedback"
2397
+ msgstr "Commentaires rapides"
2398
 
2399
  #: templates/forms/deactivation/form.php:84
2400
  msgid "If you have a moment, please let us know why you are %s"
freemius/languages/freemius-he_IL.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
@@ -22,772 +22,772 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php:1602
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
- #: includes/class-freemius.php:1604
30
  msgid "Error"
31
  msgstr "שגיאה"
32
 
33
- #: includes/class-freemius.php:1925
34
  msgid "I found a better %s"
35
  msgstr "מצאתי %s יותר טוב"
36
 
37
- #: includes/class-freemius.php:1927
38
  msgid "What's the %s's name?"
39
  msgstr "What's the %s's name?"
40
 
41
- #: includes/class-freemius.php:1933
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "It's a temporary %s. I'm just debugging an issue."
44
 
45
- #: includes/class-freemius.php:1935
46
  msgid "Deactivation"
47
  msgstr "דיאקטיבציה"
48
 
49
- #: includes/class-freemius.php:1936
50
  msgid "Theme Switch"
51
  msgstr "החלפת תֵמָה"
52
 
53
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "אחר"
56
 
57
- #: includes/class-freemius.php:1953
58
  msgid "I no longer need the %s"
59
  msgstr "I no longer need the %s"
60
 
61
- #: includes/class-freemius.php:1960
62
  msgid "I only needed the %s for a short period"
63
  msgstr "I only needed the %s for a short period"
64
 
65
- #: includes/class-freemius.php:1966
66
  msgid "The %s broke my site"
67
  msgstr "ה%s הרס לי את האתר"
68
 
69
- #: includes/class-freemius.php:1973
70
  msgid "The %s suddenly stopped working"
71
  msgstr "ה%s הפסיק פתאום לעבוד"
72
 
73
- #: includes/class-freemius.php:1983
74
  msgid "I can't pay for it anymore"
75
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
 
77
- #: includes/class-freemius.php:1985
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
 
81
- #: includes/class-freemius.php:1991
82
  msgid "I don't like to share my information with you"
83
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
 
85
- #: includes/class-freemius.php:2012
86
  msgid "The %s didn't work"
87
  msgstr "ה%s לא עבד"
88
 
89
- #: includes/class-freemius.php:2022
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
 
93
- #: includes/class-freemius.php:2030
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "The %s is great, but I need specific feature that you don't support"
96
 
97
- #: includes/class-freemius.php:2032
98
  msgid "What feature?"
99
  msgstr "איזה פיטצ'ר?"
100
 
101
- #: includes/class-freemius.php:2036
102
  msgid "The %s is not working"
103
  msgstr "ה%s לא עובד"
104
 
105
- #: includes/class-freemius.php:2038
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
 
109
- #: includes/class-freemius.php:2042
110
  msgid "It's not what I was looking for"
111
  msgstr "חיפשתי משהו אחר"
112
 
113
- #: includes/class-freemius.php:2044
114
  msgid "What you've been looking for?"
115
  msgstr "מה חיפשת?"
116
 
117
- #: includes/class-freemius.php:2048
118
  msgid "The %s didn't work as expected"
119
  msgstr "ה%s לא עבד כמצופה"
120
 
121
- #: includes/class-freemius.php:2050
122
  msgid "What did you expect?"
123
  msgstr "למה ציפית?"
124
 
125
- #: includes/class-freemius.php2853, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "ניפוי תקלות פרימיוס"
128
 
129
- #: includes/class-freemius.php:3581
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
 
133
- #: includes/class-freemius.php:3583
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
136
 
137
- #: includes/class-freemius.php:3590
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
- #: includes/class-freemius.php:3695
142
  msgid "Yes - do your thing"
143
  msgstr "כן - בצעו את מה שצריך"
144
 
145
- #: includes/class-freemius.php:3700
146
  msgid "No - just deactivate"
147
  msgstr "לא - פשוט כבה"
148
 
149
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
- #: includes/class-freemius.php18705, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "אופס"
159
 
160
- #: includes/class-freemius.php:3814
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
163
 
164
- #: includes/class-freemius.php:4250
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s לא יכול לעבוד ללא %s."
168
 
169
- #: includes/class-freemius.php:4251
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
 
174
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
- #: includes/class-freemius.php:17659
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
- #: includes/class-freemius.php:5006
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s version was successfully activated."
182
 
183
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "יש"
187
 
188
- #: includes/class-freemius.php:5033
189
  msgid "You have a %s license."
190
  msgstr "יש לך רישיון %s."
191
 
192
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
- #: includes/class-freemius.php:17413
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "יששש"
199
 
200
- #: includes/class-freemius.php:5301
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
 
204
- #: includes/class-freemius.php:5305
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
- #: includes/class-freemius.php5314, templates/add-ons.php103,
209
  #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "מידע נוסף אודות %s"
212
 
213
- #: includes/class-freemius.php:5315
214
  msgid "Purchase License"
215
  msgstr "קניית רישיון"
216
 
217
- #: includes/class-freemius.php6230, templates/connect.php:163
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
 
221
- #: includes/class-freemius.php:6234
222
  msgid "start the trial"
223
  msgstr "התחל תקופת ניסיון"
224
 
225
- #: includes/class-freemius.php6235, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "השלם התקנה"
228
 
229
- #: includes/class-freemius.php:6348
230
  msgid "You are just one step away - %s"
231
  msgstr "You are just one step away - %s"
232
 
233
- #: includes/class-freemius.php:6351
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "השלם הפעלת \"%s\" עכשיו"
237
 
238
- #: includes/class-freemius.php:6429
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We made a few tweaks to the %s, %s"
241
 
242
- #: includes/class-freemius.php:6433
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt in to make \"%s\" better!"
245
 
246
- #: includes/class-freemius.php:6861
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "The upgrade of %s was successfully completed."
249
 
250
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
- #: includes/class-fs-plugin-updater.php1077,
252
- #: includes/class-fs-plugin-updater.php1084,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Add-On"
256
 
257
- #: includes/class-freemius.php8707, templates/debug.php359,
258
  #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "תוסף"
261
 
262
- #: includes/class-freemius.php8708, templates/debug.php359,
263
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
  msgid "Theme"
265
  msgstr "תבנית"
266
 
267
- #: includes/class-freemius.php:11183
268
  msgid "Invalid site details collection."
269
  msgstr "Invalid site details collection."
270
 
271
- #: includes/class-freemius.php:11303
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
274
 
275
- #: includes/class-freemius.php:11305
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
278
 
279
- #: includes/class-freemius.php:11541
280
  msgid "Account is pending activation."
281
  msgstr "Account is pending activation."
282
 
283
- #: includes/class-freemius.php11653,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Buy a license now"
287
 
288
- #: includes/class-freemius.php11665,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Renew your license now"
292
 
293
- #: includes/class-freemius.php:11669
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%s to access version %s security & feature updates, and support."
296
 
297
- #: includes/class-freemius.php:14052
298
  msgid "%s activation was successfully completed."
299
  msgstr "הפעלת %s הושלמה בהצלחה."
300
 
301
- #: includes/class-freemius.php:14066
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
304
 
305
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
  msgid "Your trial has been successfully started."
307
  msgstr "הניסיון שלך הופעל בהצלחה."
308
 
309
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
- #: includes/class-freemius.php:14761
311
  msgid "Couldn't activate %s."
312
  msgstr "לא ניתן להפעיל את %s."
313
 
314
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
- #: includes/class-freemius.php:14762
316
  msgid "Please contact us with the following message:"
317
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
318
 
319
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
  msgid "Upgrade"
321
  msgstr "שדרג"
322
 
323
- #: includes/class-freemius.php:15117
324
  msgid "Start Trial"
325
  msgstr "התחל תקופת ניסיון"
326
 
327
- #: includes/class-freemius.php:15119
328
  msgid "Pricing"
329
  msgstr "מחירון"
330
 
331
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
  msgid "Affiliation"
333
  msgstr "אפיליאציה"
334
 
335
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
  #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "חשבון"
339
 
340
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "יצירת קשר"
344
 
345
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
- #: includes/class-freemius.php19553, templates/account.php100,
347
  #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Add-Ons"
350
 
351
- #: includes/class-freemius.php:15274
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
- #: includes/class-freemius.php:15274
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
- #: includes/class-freemius.php15276, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "מחירון"
365
 
366
- #: includes/class-freemius.php15479,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "פורום תמיכה"
370
 
371
- #: includes/class-freemius.php:16265
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Your email has been successfully verified - you are AWESOME!"
374
 
375
- #: includes/class-freemius.php:16266
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "מעולה"
379
 
380
- #: includes/class-freemius.php:16888
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
383
 
384
- #: includes/class-freemius.php:16890
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "ההרחבה %s נרכשה בהצלחה."
387
 
388
- #: includes/class-freemius.php:16893
389
  msgid "Download the latest version"
390
  msgstr "הורד את הגרסה האחרונה"
391
 
392
- #: includes/class-freemius.php:16965
393
  msgctxt "%1s - plugin title, %2s - API domain"
394
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
 
397
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
- #: includes/class-freemius.php:17461
399
  msgid "Error received from the server:"
400
  msgstr "הוחזרה שגיאה מהשרת:"
401
 
402
- #: includes/class-freemius.php:16978
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
 
406
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "אממ"
411
 
412
- #: includes/class-freemius.php:17173
413
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
 
416
- #: includes/class-freemius.php17174, templates/account.php102,
417
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "ניסיון"
421
 
422
- #: includes/class-freemius.php:17179
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
425
 
426
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
  msgid "Please contact us here"
428
  msgstr "אנא צור איתנו קשר כאן"
429
 
430
- #: includes/class-freemius.php:17193
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "החבילה שודרגה בהצלחה."
433
 
434
- #: includes/class-freemius.php:17211
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "החבילה עודכנה בהצלחה אל %s."
437
 
438
- #: includes/class-freemius.php:17227
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Your license has expired. You can still continue using the free %s forever."
441
 
442
- #: includes/class-freemius.php:17229
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
445
 
446
- #: includes/class-freemius.php:17237
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
449
 
450
- #: includes/class-freemius.php:17250
451
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
  msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
453
 
454
- #: includes/class-freemius.php:17273
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
457
 
458
- #: includes/class-freemius.php:17275
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
 
462
- #: includes/class-freemius.php:17380
463
  msgid "It looks like the license could not be activated."
464
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
465
 
466
- #: includes/class-freemius.php:17410
467
  msgid "Your license was successfully activated."
468
  msgstr "הרישיון הופעל בהצלחה."
469
 
470
- #: includes/class-freemius.php:17436
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
473
 
474
- #: includes/class-freemius.php:17460
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "נראה שניתוק הרישיון נכשל."
477
 
478
- #: includes/class-freemius.php:17488
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
481
 
482
- #: includes/class-freemius.php:17489
483
  msgid "O.K"
484
  msgstr "אוקיי"
485
 
486
- #: includes/class-freemius.php:17542
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
 
490
- #: includes/class-freemius.php:17551
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
 
494
- #: includes/class-freemius.php:17593
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "You are already running the %s in a trial mode."
497
 
498
- #: includes/class-freemius.php:17604
499
  msgid "You already utilized a trial before."
500
  msgstr "הניסיון כבר נוצל בעבר."
501
 
502
- #: includes/class-freemius.php:17618
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
505
 
506
- #: includes/class-freemius.php:17629
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
509
 
510
- #: includes/class-freemius.php:17640
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "None of the %s's plans supports a trial period."
513
 
514
- #: includes/class-freemius.php:17690
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
517
 
518
- #: includes/class-freemius.php:17726
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
521
 
522
- #: includes/class-freemius.php:17745
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
525
 
526
- #: includes/class-freemius.php:18052
527
  msgid "Version %s was released."
528
  msgstr "גרסה %s הושקה."
529
 
530
- #: includes/class-freemius.php:18052
531
  msgid "Please download %s."
532
  msgstr "נא להוריד את %s."
533
 
534
- #: includes/class-freemius.php:18059
535
  msgid "the latest %s version here"
536
  msgstr "גרסת ה-%s האחרונה כאן"
537
 
538
- #: includes/class-freemius.php:18064
539
  msgid "New"
540
  msgstr "חדש"
541
 
542
- #: includes/class-freemius.php:18069
543
  msgid "Seems like you got the latest release."
544
  msgstr "נראה שיש לך את הגרסה האחרונה."
545
 
546
- #: includes/class-freemius.php:18070
547
  msgid "You are all good!"
548
  msgstr "את\\ה מסודר!"
549
 
550
- #: includes/class-freemius.php:18338
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
 
554
- #: includes/class-freemius.php:18473
555
  msgid "Site successfully opted in."
556
  msgstr "Site successfully opted in."
557
 
558
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
  msgid "Awesome"
560
  msgstr "אדיר"
561
 
562
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
565
 
566
- #: includes/class-freemius.php:18491
567
  msgid "Thank you!"
568
  msgstr "תודה רבה!"
569
 
570
- #: includes/class-freemius.php:18498
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
573
 
574
- #: includes/class-freemius.php:18627
575
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
 
578
- #: includes/class-freemius.php:18633
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
581
 
582
- #: includes/class-freemius.php:18638
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s הינו הבעלים החד של חשבון זה."
585
 
586
- #: includes/class-freemius.php:18640
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "מזל טוב"
590
 
591
- #: includes/class-freemius.php:18660
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
 
595
- #: includes/class-freemius.php:18661
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
 
599
- #: includes/class-freemius.php:18668
600
  msgid "Change Ownership"
601
  msgstr "עדכון בעלות"
602
 
603
- #: includes/class-freemius.php:18676
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
606
 
607
- #: includes/class-freemius.php:18688
608
  msgid "Please provide your full name."
609
  msgstr "נא למלא את שמך המלא."
610
 
611
- #: includes/class-freemius.php:18693
612
  msgid "Your name was successfully updated."
613
  msgstr "שמך עודכן בהצלחה."
614
 
615
- #: includes/class-freemius.php:18754
616
  msgid "You have successfully updated your %s."
617
  msgstr "עידכנת בהצלחה את ה%s."
618
 
619
- #: includes/class-freemius.php:18894
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
 
623
- #: includes/class-freemius.php:18895
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "לתשמות לבך"
627
 
628
- #: includes/class-freemius.php:19325
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "היי"
632
 
633
- #: includes/class-freemius.php:19325
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
636
 
637
- #: includes/class-freemius.php:19333
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
640
 
641
- #: includes/class-freemius.php:19334
642
  msgid "No credit card required"
643
  msgstr "לא נדרש כרטיס אשראי"
644
 
645
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "התחלת ניסיון חינם"
649
 
650
- #: includes/class-freemius.php:19418
651
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
 
654
- #: includes/class-freemius.php:19427
655
  msgid "Learn more"
656
  msgstr "Learn more"
657
 
658
- #: includes/class-freemius.php19577, templates/account.php406,
659
  #: templates/account.php509, templates/connect.php171,
660
  #: templates/connect.php421, templates/forms/license-activation.php24,
661
  #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "הפעלת רישיון"
664
 
665
- #: includes/class-freemius.php19578, templates/account.php469,
666
  #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "שינוי רישיון"
669
 
670
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Opt Out"
673
 
674
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Opt In"
679
 
680
- #: includes/class-freemius.php:19891
681
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
 
684
- #: includes/class-freemius.php:19899
685
  msgid "Activate %s features"
686
  msgstr "Activate %s features"
687
 
688
- #: includes/class-freemius.php:19912
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
691
 
692
- #: includes/class-freemius.php:19916
693
  msgid "Download the latest %s version"
694
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
695
 
696
- #: includes/class-freemius.php:19920
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
699
 
700
- #: includes/class-freemius.php:19922
701
  msgid "How to upload and activate?"
702
  msgstr "איך להעלות ולהפעיל?"
703
 
704
- #: includes/class-freemius.php:20056
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
 
708
- #: includes/class-freemius.php:20217
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Auto installation only works for opted-in users."
711
 
712
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
713
- #: includes/class-fs-plugin-updater.php1056,
714
- #: includes/class-fs-plugin-updater.php:1070
715
  msgid "Invalid module ID."
716
  msgstr "מזהה המודול לא תקני."
717
 
718
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
719
  msgid "Premium version already active."
720
  msgstr "הגרסה בתשלום כבר פעילה."
721
 
722
- #: includes/class-freemius.php:20243
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
725
 
726
- #: includes/class-freemius.php:20250
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
 
730
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium add-on version already installed."
733
 
734
- #: includes/class-freemius.php:20613
735
  msgid "View paid features"
736
  msgstr "צפה בפיטצ'רים שבתשלום"
737
 
738
- #: includes/class-freemius.php:20927
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Thank you so much for using %s and its add-ons!"
741
 
742
- #: includes/class-freemius.php:20928
743
  msgid "Thank you so much for using %s!"
744
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
745
 
746
- #: includes/class-freemius.php:20934
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
749
 
750
- #: includes/class-freemius.php:20938
751
  msgid "Thank you so much for using our products!"
752
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
753
 
754
- #: includes/class-freemius.php:20939
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
757
 
758
- #: includes/class-freemius.php:20958
759
  msgid "%s and its add-ons"
760
  msgstr "%s and its add-ons"
761
 
762
- #: includes/class-freemius.php:20967
763
  msgid "Products"
764
  msgstr "מוצרים"
765
 
766
- #: includes/class-freemius.php20974, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "כן"
769
 
770
- #: includes/class-freemius.php20975, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
773
 
774
- #: includes/class-freemius.php20976, templates/connect.php:278
775
  msgid "No"
776
  msgstr "לא"
777
 
778
- #: includes/class-freemius.php20978, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
781
 
782
- #: includes/class-freemius.php:20988
783
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
  msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
785
 
786
- #: includes/class-freemius.php20990, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
789
 
790
- #: includes/class-freemius.php:21272
791
  msgid "License key is empty."
792
  msgstr "מפתח הרישיון ריק."
793
 
@@ -809,19 +809,19 @@ msgstr "There is a %s of %s available."
809
  msgid "new version"
810
  msgstr "new version"
811
 
812
- #: includes/class-fs-plugin-updater.php:301
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Important Upgrade Notice:"
815
 
816
- #: includes/class-fs-plugin-updater.php:1121
817
  msgid "Installing plugin: %s"
818
  msgstr "Installing plugin: %s"
819
 
820
- #: includes/class-fs-plugin-updater.php:1162
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
 
824
- #: includes/class-fs-plugin-updater.php:1335
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php:1688
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
+ #: includes/class-freemius.php:1690
30
  msgid "Error"
31
  msgstr "שגיאה"
32
 
33
+ #: includes/class-freemius.php:2011
34
  msgid "I found a better %s"
35
  msgstr "מצאתי %s יותר טוב"
36
 
37
+ #: includes/class-freemius.php:2013
38
  msgid "What's the %s's name?"
39
  msgstr "What's the %s's name?"
40
 
41
+ #: includes/class-freemius.php:2019
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "It's a temporary %s. I'm just debugging an issue."
44
 
45
+ #: includes/class-freemius.php:2021
46
  msgid "Deactivation"
47
  msgstr "דיאקטיבציה"
48
 
49
+ #: includes/class-freemius.php:2022
50
  msgid "Theme Switch"
51
  msgstr "החלפת תֵמָה"
52
 
53
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "אחר"
56
 
57
+ #: includes/class-freemius.php:2039
58
  msgid "I no longer need the %s"
59
  msgstr "I no longer need the %s"
60
 
61
+ #: includes/class-freemius.php:2046
62
  msgid "I only needed the %s for a short period"
63
  msgstr "I only needed the %s for a short period"
64
 
65
+ #: includes/class-freemius.php:2052
66
  msgid "The %s broke my site"
67
  msgstr "ה%s הרס לי את האתר"
68
 
69
+ #: includes/class-freemius.php:2059
70
  msgid "The %s suddenly stopped working"
71
  msgstr "ה%s הפסיק פתאום לעבוד"
72
 
73
+ #: includes/class-freemius.php:2069
74
  msgid "I can't pay for it anymore"
75
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
 
77
+ #: includes/class-freemius.php:2071
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
 
81
+ #: includes/class-freemius.php:2077
82
  msgid "I don't like to share my information with you"
83
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
 
85
+ #: includes/class-freemius.php:2098
86
  msgid "The %s didn't work"
87
  msgstr "ה%s לא עבד"
88
 
89
+ #: includes/class-freemius.php:2108
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
 
93
+ #: includes/class-freemius.php:2116
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "The %s is great, but I need specific feature that you don't support"
96
 
97
+ #: includes/class-freemius.php:2118
98
  msgid "What feature?"
99
  msgstr "איזה פיטצ'ר?"
100
 
101
+ #: includes/class-freemius.php:2122
102
  msgid "The %s is not working"
103
  msgstr "ה%s לא עובד"
104
 
105
+ #: includes/class-freemius.php:2124
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
 
109
+ #: includes/class-freemius.php:2128
110
  msgid "It's not what I was looking for"
111
  msgstr "חיפשתי משהו אחר"
112
 
113
+ #: includes/class-freemius.php:2130
114
  msgid "What you've been looking for?"
115
  msgstr "מה חיפשת?"
116
 
117
+ #: includes/class-freemius.php:2134
118
  msgid "The %s didn't work as expected"
119
  msgstr "ה%s לא עבד כמצופה"
120
 
121
+ #: includes/class-freemius.php:2136
122
  msgid "What did you expect?"
123
  msgstr "למה ציפית?"
124
 
125
+ #: includes/class-freemius.php2942, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "ניפוי תקלות פרימיוס"
128
 
129
+ #: includes/class-freemius.php:3670
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
 
133
+ #: includes/class-freemius.php:3672
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
136
 
137
+ #: includes/class-freemius.php:3679
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
+ #: includes/class-freemius.php:3784
142
  msgid "Yes - do your thing"
143
  msgstr "כן - בצעו את מה שצריך"
144
 
145
+ #: includes/class-freemius.php:3789
146
  msgid "No - just deactivate"
147
  msgstr "לא - פשוט כבה"
148
 
149
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
150
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
151
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
152
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
153
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
154
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
155
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "אופס"
159
 
160
+ #: includes/class-freemius.php:3903
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
163
 
164
+ #: includes/class-freemius.php:4340
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s לא יכול לעבוד ללא %s."
168
 
169
+ #: includes/class-freemius.php:4341
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
 
174
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
175
+ #: includes/class-freemius.php:17953
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
+ #: includes/class-freemius.php:5130
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s version was successfully activated."
182
 
183
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "יש"
187
 
188
+ #: includes/class-freemius.php:5157
189
  msgid "You have a %s license."
190
  msgstr "יש לך רישיון %s."
191
 
192
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
193
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
194
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
195
+ #: includes/class-freemius.php:17707
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "יששש"
199
 
200
+ #: includes/class-freemius.php:5425
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
 
204
+ #: includes/class-freemius.php:5429
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
209
  #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "מידע נוסף אודות %s"
212
 
213
+ #: includes/class-freemius.php:5439
214
  msgid "Purchase License"
215
  msgstr "קניית רישיון"
216
 
217
+ #: includes/class-freemius.php6372, templates/connect.php:163
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
 
221
+ #: includes/class-freemius.php:6376
222
  msgid "start the trial"
223
  msgstr "התחל תקופת ניסיון"
224
 
225
+ #: includes/class-freemius.php6377, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "השלם התקנה"
228
 
229
+ #: includes/class-freemius.php:6490
230
  msgid "You are just one step away - %s"
231
  msgstr "You are just one step away - %s"
232
 
233
+ #: includes/class-freemius.php:6493
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "השלם הפעלת \"%s\" עכשיו"
237
 
238
+ #: includes/class-freemius.php:6571
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We made a few tweaks to the %s, %s"
241
 
242
+ #: includes/class-freemius.php:6575
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt in to make \"%s\" better!"
245
 
246
+ #: includes/class-freemius.php:7003
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "The upgrade of %s was successfully completed."
249
 
250
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
251
+ #: includes/class-fs-plugin-updater.php1081,
252
+ #: includes/class-fs-plugin-updater.php1088,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Add-On"
256
 
257
+ #: includes/class-freemius.php8927, templates/debug.php359,
258
  #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "תוסף"
261
 
262
+ #: includes/class-freemius.php8928, templates/debug.php359,
263
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
  msgid "Theme"
265
  msgstr "תבנית"
266
 
267
+ #: includes/class-freemius.php:11412
268
  msgid "Invalid site details collection."
269
  msgstr "Invalid site details collection."
270
 
271
+ #: includes/class-freemius.php:11532
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
274
 
275
+ #: includes/class-freemius.php:11534
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
278
 
279
+ #: includes/class-freemius.php:11808
280
  msgid "Account is pending activation."
281
  msgstr "Account is pending activation."
282
 
283
+ #: includes/class-freemius.php11920,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Buy a license now"
287
 
288
+ #: includes/class-freemius.php11932,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Renew your license now"
292
 
293
+ #: includes/class-freemius.php:11936
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%s to access version %s security & feature updates, and support."
296
 
297
+ #: includes/class-freemius.php:14319
298
  msgid "%s activation was successfully completed."
299
  msgstr "הפעלת %s הושלמה בהצלחה."
300
 
301
+ #: includes/class-freemius.php:14333
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
304
 
305
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
306
  msgid "Your trial has been successfully started."
307
  msgstr "הניסיון שלך הופעל בהצלחה."
308
 
309
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
310
+ #: includes/class-freemius.php:15028
311
  msgid "Couldn't activate %s."
312
  msgstr "לא ניתן להפעיל את %s."
313
 
314
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
315
+ #: includes/class-freemius.php:15029
316
  msgid "Please contact us with the following message:"
317
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
318
 
319
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
320
  msgid "Upgrade"
321
  msgstr "שדרג"
322
 
323
+ #: includes/class-freemius.php:15384
324
  msgid "Start Trial"
325
  msgstr "התחל תקופת ניסיון"
326
 
327
+ #: includes/class-freemius.php:15386
328
  msgid "Pricing"
329
  msgstr "מחירון"
330
 
331
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
332
  msgid "Affiliation"
333
  msgstr "אפיליאציה"
334
 
335
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
336
  #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "חשבון"
339
 
340
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "יצירת קשר"
344
 
345
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
346
+ #: includes/class-freemius.php19849, templates/account.php100,
347
  #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Add-Ons"
350
 
351
+ #: includes/class-freemius.php:15541
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
+ #: includes/class-freemius.php:15541
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
+ #: includes/class-freemius.php15543, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "מחירון"
365
 
366
+ #: includes/class-freemius.php15756,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "פורום תמיכה"
370
 
371
+ #: includes/class-freemius.php:16542
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Your email has been successfully verified - you are AWESOME!"
374
 
375
+ #: includes/class-freemius.php:16543
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "מעולה"
379
 
380
+ #: includes/class-freemius.php:17168
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
383
 
384
+ #: includes/class-freemius.php:17170
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "ההרחבה %s נרכשה בהצלחה."
387
 
388
+ #: includes/class-freemius.php:17173
389
  msgid "Download the latest version"
390
  msgstr "הורד את הגרסה האחרונה"
391
 
392
+ #: includes/class-freemius.php:17259
393
  msgctxt "%1s - plugin title, %2s - API domain"
394
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
 
397
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
398
+ #: includes/class-freemius.php:17755
399
  msgid "Error received from the server:"
400
  msgstr "הוחזרה שגיאה מהשרת:"
401
 
402
+ #: includes/class-freemius.php:17272
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
 
406
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
407
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "אממ"
411
 
412
+ #: includes/class-freemius.php:17467
413
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
 
416
+ #: includes/class-freemius.php17468, templates/account.php102,
417
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "ניסיון"
421
 
422
+ #: includes/class-freemius.php:17473
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
425
 
426
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
427
  msgid "Please contact us here"
428
  msgstr "אנא צור איתנו קשר כאן"
429
 
430
+ #: includes/class-freemius.php:17487
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "החבילה שודרגה בהצלחה."
433
 
434
+ #: includes/class-freemius.php:17505
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "החבילה עודכנה בהצלחה אל %s."
437
 
438
+ #: includes/class-freemius.php:17521
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Your license has expired. You can still continue using the free %s forever."
441
 
442
+ #: includes/class-freemius.php:17523
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
445
 
446
+ #: includes/class-freemius.php:17531
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
449
 
450
+ #: includes/class-freemius.php:17544
451
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
  msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
453
 
454
+ #: includes/class-freemius.php:17567
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
457
 
458
+ #: includes/class-freemius.php:17569
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
 
462
+ #: includes/class-freemius.php:17674
463
  msgid "It looks like the license could not be activated."
464
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
465
 
466
+ #: includes/class-freemius.php:17704
467
  msgid "Your license was successfully activated."
468
  msgstr "הרישיון הופעל בהצלחה."
469
 
470
+ #: includes/class-freemius.php:17730
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
473
 
474
+ #: includes/class-freemius.php:17754
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "נראה שניתוק הרישיון נכשל."
477
 
478
+ #: includes/class-freemius.php:17782
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
481
 
482
+ #: includes/class-freemius.php:17783
483
  msgid "O.K"
484
  msgstr "אוקיי"
485
 
486
+ #: includes/class-freemius.php:17836
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
 
490
+ #: includes/class-freemius.php:17845
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
 
494
+ #: includes/class-freemius.php:17887
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "You are already running the %s in a trial mode."
497
 
498
+ #: includes/class-freemius.php:17898
499
  msgid "You already utilized a trial before."
500
  msgstr "הניסיון כבר נוצל בעבר."
501
 
502
+ #: includes/class-freemius.php:17912
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
505
 
506
+ #: includes/class-freemius.php:17923
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
509
 
510
+ #: includes/class-freemius.php:17934
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "None of the %s's plans supports a trial period."
513
 
514
+ #: includes/class-freemius.php:17984
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
517
 
518
+ #: includes/class-freemius.php:18020
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
521
 
522
+ #: includes/class-freemius.php:18039
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
525
 
526
+ #: includes/class-freemius.php:18346
527
  msgid "Version %s was released."
528
  msgstr "גרסה %s הושקה."
529
 
530
+ #: includes/class-freemius.php:18346
531
  msgid "Please download %s."
532
  msgstr "נא להוריד את %s."
533
 
534
+ #: includes/class-freemius.php:18353
535
  msgid "the latest %s version here"
536
  msgstr "גרסת ה-%s האחרונה כאן"
537
 
538
+ #: includes/class-freemius.php:18358
539
  msgid "New"
540
  msgstr "חדש"
541
 
542
+ #: includes/class-freemius.php:18363
543
  msgid "Seems like you got the latest release."
544
  msgstr "נראה שיש לך את הגרסה האחרונה."
545
 
546
+ #: includes/class-freemius.php:18364
547
  msgid "You are all good!"
548
  msgstr "את\\ה מסודר!"
549
 
550
+ #: includes/class-freemius.php:18632
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
 
554
+ #: includes/class-freemius.php:18769
555
  msgid "Site successfully opted in."
556
  msgstr "Site successfully opted in."
557
 
558
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
559
  msgid "Awesome"
560
  msgstr "אדיר"
561
 
562
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
565
 
566
+ #: includes/class-freemius.php:18787
567
  msgid "Thank you!"
568
  msgstr "תודה רבה!"
569
 
570
+ #: includes/class-freemius.php:18794
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
573
 
574
+ #: includes/class-freemius.php:18923
575
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
 
578
+ #: includes/class-freemius.php:18929
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
581
 
582
+ #: includes/class-freemius.php:18934
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s הינו הבעלים החד של חשבון זה."
585
 
586
+ #: includes/class-freemius.php:18936
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "מזל טוב"
590
 
591
+ #: includes/class-freemius.php:18956
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
 
595
+ #: includes/class-freemius.php:18957
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
 
599
+ #: includes/class-freemius.php:18964
600
  msgid "Change Ownership"
601
  msgstr "עדכון בעלות"
602
 
603
+ #: includes/class-freemius.php:18972
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
606
 
607
+ #: includes/class-freemius.php:18984
608
  msgid "Please provide your full name."
609
  msgstr "נא למלא את שמך המלא."
610
 
611
+ #: includes/class-freemius.php:18989
612
  msgid "Your name was successfully updated."
613
  msgstr "שמך עודכן בהצלחה."
614
 
615
+ #: includes/class-freemius.php:19050
616
  msgid "You have successfully updated your %s."
617
  msgstr "עידכנת בהצלחה את ה%s."
618
 
619
+ #: includes/class-freemius.php:19190
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
 
623
+ #: includes/class-freemius.php:19191
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "לתשמות לבך"
627
 
628
+ #: includes/class-freemius.php:19621
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "היי"
632
 
633
+ #: includes/class-freemius.php:19621
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
636
 
637
+ #: includes/class-freemius.php:19629
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
640
 
641
+ #: includes/class-freemius.php:19630
642
  msgid "No credit card required"
643
  msgstr "לא נדרש כרטיס אשראי"
644
 
645
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "התחלת ניסיון חינם"
649
 
650
+ #: includes/class-freemius.php:19714
651
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
 
654
+ #: includes/class-freemius.php:19723
655
  msgid "Learn more"
656
  msgstr "Learn more"
657
 
658
+ #: includes/class-freemius.php19873, templates/account.php406,
659
  #: templates/account.php509, templates/connect.php171,
660
  #: templates/connect.php421, templates/forms/license-activation.php24,
661
  #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "הפעלת רישיון"
664
 
665
+ #: includes/class-freemius.php19874, templates/account.php469,
666
  #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "שינוי רישיון"
669
 
670
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Opt Out"
673
 
674
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Opt In"
679
 
680
+ #: includes/class-freemius.php:20187
681
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
 
684
+ #: includes/class-freemius.php:20195
685
  msgid "Activate %s features"
686
  msgstr "Activate %s features"
687
 
688
+ #: includes/class-freemius.php:20208
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
691
 
692
+ #: includes/class-freemius.php:20212
693
  msgid "Download the latest %s version"
694
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
695
 
696
+ #: includes/class-freemius.php:20216
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
699
 
700
+ #: includes/class-freemius.php:20218
701
  msgid "How to upload and activate?"
702
  msgstr "איך להעלות ולהפעיל?"
703
 
704
+ #: includes/class-freemius.php:20352
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
 
708
+ #: includes/class-freemius.php:20513
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Auto installation only works for opted-in users."
711
 
712
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
713
+ #: includes/class-fs-plugin-updater.php1060,
714
+ #: includes/class-fs-plugin-updater.php:1074
715
  msgid "Invalid module ID."
716
  msgstr "מזהה המודול לא תקני."
717
 
718
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
719
  msgid "Premium version already active."
720
  msgstr "הגרסה בתשלום כבר פעילה."
721
 
722
+ #: includes/class-freemius.php:20539
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
725
 
726
+ #: includes/class-freemius.php:20546
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
 
730
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium add-on version already installed."
733
 
734
+ #: includes/class-freemius.php:20909
735
  msgid "View paid features"
736
  msgstr "צפה בפיטצ'רים שבתשלום"
737
 
738
+ #: includes/class-freemius.php:21229
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Thank you so much for using %s and its add-ons!"
741
 
742
+ #: includes/class-freemius.php:21230
743
  msgid "Thank you so much for using %s!"
744
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
745
 
746
+ #: includes/class-freemius.php:21236
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
749
 
750
+ #: includes/class-freemius.php:21240
751
  msgid "Thank you so much for using our products!"
752
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
753
 
754
+ #: includes/class-freemius.php:21241
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
757
 
758
+ #: includes/class-freemius.php:21260
759
  msgid "%s and its add-ons"
760
  msgstr "%s and its add-ons"
761
 
762
+ #: includes/class-freemius.php:21269
763
  msgid "Products"
764
  msgstr "מוצרים"
765
 
766
+ #: includes/class-freemius.php21276, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "כן"
769
 
770
+ #: includes/class-freemius.php21277, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
773
 
774
+ #: includes/class-freemius.php21278, templates/connect.php:278
775
  msgid "No"
776
  msgstr "לא"
777
 
778
+ #: includes/class-freemius.php21280, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
781
 
782
+ #: includes/class-freemius.php:21290
783
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
  msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
785
 
786
+ #: includes/class-freemius.php21292, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
789
 
790
+ #: includes/class-freemius.php:21574
791
  msgid "License key is empty."
792
  msgstr "מפתח הרישיון ריק."
793
 
809
  msgid "new version"
810
  msgstr "new version"
811
 
812
+ #: includes/class-fs-plugin-updater.php:305
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Important Upgrade Notice:"
815
 
816
+ #: includes/class-fs-plugin-updater.php:1125
817
  msgid "Installing plugin: %s"
818
  msgstr "Installing plugin: %s"
819
 
820
+ #: includes/class-fs-plugin-updater.php:1166
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
 
824
+ #: includes/class-fs-plugin-updater.php:1348
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
 
freemius/languages/freemius-hu_HU.mo ADDED
Binary file
freemius/languages/freemius-hu_HU.po ADDED
@@ -0,0 +1,2433 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2019 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Peter Ambrus, 2018-2019
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-01-10 20:38+0000\n"
11
+ "Last-Translator: Peter Ambrus\n"
12
+ "Language: hu_HU\n"
13
+ "Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\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.php:1688
25
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
+
28
+ #: includes/class-freemius.php:1690
29
+ msgid "Error"
30
+ msgstr "Hiba"
31
+
32
+ #: includes/class-freemius.php:2011
33
+ msgid "I found a better %s"
34
+ msgstr "Jobb %st találtam"
35
+
36
+ #: includes/class-freemius.php:2013
37
+ msgid "What's the %s's name?"
38
+ msgstr "Mi a %s neve?"
39
+
40
+ #: includes/class-freemius.php:2019
41
+ msgid "It's a temporary %s. I'm just debugging an issue."
42
+ msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom."
43
+
44
+ #: includes/class-freemius.php:2021
45
+ msgid "Deactivation"
46
+ msgstr "Deaktiválás"
47
+
48
+ #: includes/class-freemius.php:2022
49
+ msgid "Theme Switch"
50
+ msgstr "Sablon váltás"
51
+
52
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
+ msgid "Other"
54
+ msgstr "Egyéb"
55
+
56
+ #: includes/class-freemius.php:2039
57
+ msgid "I no longer need the %s"
58
+ msgstr "I no longer need the %s"
59
+
60
+ #: includes/class-freemius.php:2046
61
+ msgid "I only needed the %s for a short period"
62
+ msgstr "I only needed the %s for a short period"
63
+
64
+ #: includes/class-freemius.php:2052
65
+ msgid "The %s broke my site"
66
+ msgstr "The %s broke my site"
67
+
68
+ #: includes/class-freemius.php:2059
69
+ msgid "The %s suddenly stopped working"
70
+ msgstr "The %s suddenly stopped working"
71
+
72
+ #: includes/class-freemius.php:2069
73
+ msgid "I can't pay for it anymore"
74
+ msgstr "Nem tudom tovább fizetni"
75
+
76
+ #: includes/class-freemius.php:2071
77
+ msgid "What price would you feel comfortable paying?"
78
+ msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
79
+
80
+ #: includes/class-freemius.php:2077
81
+ msgid "I don't like to share my information with you"
82
+ msgstr "Nem szeretném megosztani veletek az információt"
83
+
84
+ #: includes/class-freemius.php:2098
85
+ msgid "The %s didn't work"
86
+ msgstr "A %s nem működött"
87
+
88
+ #: includes/class-freemius.php:2108
89
+ msgid "I couldn't understand how to make it work"
90
+ msgstr "Nem értettem, hogy kell használni"
91
+
92
+ #: includes/class-freemius.php:2116
93
+ msgid "The %s is great, but I need specific feature that you don't support"
94
+ msgstr "The %s is great, but I need specific feature that you don't support"
95
+
96
+ #: includes/class-freemius.php:2118
97
+ msgid "What feature?"
98
+ msgstr "Melyik funkcióra van szükséged?"
99
+
100
+ #: includes/class-freemius.php:2122
101
+ msgid "The %s is not working"
102
+ msgstr "A(z) %s nem működik"
103
+
104
+ #: includes/class-freemius.php:2124
105
+ msgid "Kindly share what didn't work so we can fix it for future users..."
106
+ msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
107
+
108
+ #: includes/class-freemius.php:2128
109
+ msgid "It's not what I was looking for"
110
+ msgstr "Nem ezt kerestem"
111
+
112
+ #: includes/class-freemius.php:2130
113
+ msgid "What you've been looking for?"
114
+ msgstr "Pontosan mit kerestél?"
115
+
116
+ #: includes/class-freemius.php:2134
117
+ msgid "The %s didn't work as expected"
118
+ msgstr "A %s nem az elvárásoknak megfelelően működött"
119
+
120
+ #: includes/class-freemius.php:2136
121
+ msgid "What did you expect?"
122
+ msgstr "Mire számítottál?"
123
+
124
+ #: includes/class-freemius.php2942, templates/debug.php:20
125
+ msgid "Freemius Debug"
126
+ msgstr "Freemius Debug"
127
+
128
+ #: includes/class-freemius.php:3670
129
+ msgid "I don't know what is cURL or how to install it, help me!"
130
+ msgstr "I don't know what is cURL or how to install it, help me!"
131
+
132
+ #: includes/class-freemius.php:3672
133
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
+ msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
+
136
+ #: includes/class-freemius.php:3679
137
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
+
140
+ #: includes/class-freemius.php:3784
141
+ msgid "Yes - do your thing"
142
+ msgstr "Igen - tedd a dolgod"
143
+
144
+ #: includes/class-freemius.php:3789
145
+ msgid "No - just deactivate"
146
+ msgstr "Nem - csak deaktiválom"
147
+
148
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
155
+ msgctxt "exclamation"
156
+ msgid "Oops"
157
+ msgstr "Hoppá"
158
+
159
+ #: includes/class-freemius.php:3903
160
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
+ msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
+
163
+ #: includes/class-freemius.php:4340
164
+ msgctxt "addonX cannot run without pluginY"
165
+ msgid "%s cannot run without %s."
166
+ msgstr "%s cannot run without %s."
167
+
168
+ #: includes/class-freemius.php:4341
169
+ msgctxt "addonX cannot run..."
170
+ msgid "%s cannot run without the plugin."
171
+ msgstr "%s cannot run without the plugin."
172
+
173
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
174
+ #: includes/class-freemius.php:17953
175
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
176
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
177
+
178
+ #: includes/class-freemius.php:5130
179
+ msgid "Premium %s version was successfully activated."
180
+ msgstr "Premium %s version was successfully activated."
181
+
182
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
+ msgctxt ""
184
+ msgid "W00t"
185
+ msgstr "Fantasztikus"
186
+
187
+ #: includes/class-freemius.php:5157
188
+ msgid "You have a %s license."
189
+ msgstr "You have a %s license."
190
+
191
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
+ #: includes/class-freemius.php:17707
195
+ msgctxt "interjection expressing joy or exuberance"
196
+ msgid "Yee-haw"
197
+ msgstr "Juhuuu"
198
+
199
+ #: includes/class-freemius.php:5425
200
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
+ msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
+
203
+ #: includes/class-freemius.php:5429
204
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
+
207
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
208
+ #: templates/account/partials/addon.php:288
209
+ msgid "More information about %s"
210
+ msgstr "More information about %s"
211
+
212
+ #: includes/class-freemius.php:5439
213
+ msgid "Purchase License"
214
+ msgstr "Licensz vásárlása"
215
+
216
+ #: includes/class-freemius.php6372, templates/connect.php:163
217
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
+ msgstr "Küldtünk egy aktivációs emailt a(z) %s szoftverünkhöz a következő email címre: %s. Kérlek kattints a levélben található aktivációs linkre, hogy %s."
219
+
220
+ #: includes/class-freemius.php:6376
221
+ msgid "start the trial"
222
+ msgstr "próbaidő indítása"
223
+
224
+ #: includes/class-freemius.php6377, templates/connect.php:167
225
+ msgid "complete the install"
226
+ msgstr "befejezd a telepítést"
227
+
228
+ #: includes/class-freemius.php:6490
229
+ msgid "You are just one step away - %s"
230
+ msgstr "Már csak egy lépés van hátra - %s"
231
+
232
+ #: includes/class-freemius.php:6493
233
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
+ msgid "Complete \"%s\" Activation Now"
235
+ msgstr "\"%s\" aktiválásának a befejezése most"
236
+
237
+ #: includes/class-freemius.php:6571
238
+ msgid "We made a few tweaks to the %s, %s"
239
+ msgstr "We made a few tweaks to the %s, %s"
240
+
241
+ #: includes/class-freemius.php:6575
242
+ msgid "Opt in to make \"%s\" better!"
243
+ msgstr "Opt in to make \"%s\" better!"
244
+
245
+ #: includes/class-freemius.php:7003
246
+ msgid "The upgrade of %s was successfully completed."
247
+ msgstr "The upgrade of %s was successfully completed."
248
+
249
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
+ #: includes/class-fs-plugin-updater.php1081,
251
+ #: includes/class-fs-plugin-updater.php1088,
252
+ #: templates/auto-installation.php:32
253
+ msgid "Add-On"
254
+ msgstr "Kiegészítő"
255
+
256
+ #: includes/class-freemius.php8927, templates/debug.php359,
257
+ #: templates/debug.php:520
258
+ msgid "Plugin"
259
+ msgstr "Bővítmény"
260
+
261
+ #: includes/class-freemius.php8928, templates/debug.php359,
262
+ #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
+ msgid "Theme"
264
+ msgstr "Sablon"
265
+
266
+ #: includes/class-freemius.php:11412
267
+ msgid "Invalid site details collection."
268
+ msgstr "Invalid site details collection."
269
+
270
+ #: includes/class-freemius.php:11532
271
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
273
+
274
+ #: includes/class-freemius.php:11534
275
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
+
278
+ #: includes/class-freemius.php:11808
279
+ msgid "Account is pending activation."
280
+ msgstr "A fiók aktiválása függőben."
281
+
282
+ #: includes/class-freemius.php11920,
283
+ #: templates/forms/premium-versions-upgrade-handler.php:47
284
+ msgid "Buy a license now"
285
+ msgstr "Vásárolj licenszet most"
286
+
287
+ #: includes/class-freemius.php11932,
288
+ #: templates/forms/premium-versions-upgrade-handler.php:46
289
+ msgid "Renew your license now"
290
+ msgstr "Licensz kulcs megújítása"
291
+
292
+ #: includes/class-freemius.php:11936
293
+ msgid "%s to access version %s security & feature updates, and support."
294
+ msgstr "%s to access version %s security & feature updates, and support."
295
+
296
+ #: includes/class-freemius.php:14319
297
+ msgid "%s activation was successfully completed."
298
+ msgstr "%s activation was successfully completed."
299
+
300
+ #: includes/class-freemius.php:14333
301
+ msgid "Your account was successfully activated with the %s plan."
302
+ msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
303
+
304
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
+ msgid "Your trial has been successfully started."
306
+ msgstr "A próbaidőszakodat sikeresen aktiváltuk."
307
+
308
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
+ #: includes/class-freemius.php:15028
310
+ msgid "Couldn't activate %s."
311
+ msgstr "Couldn't activate %s."
312
+
313
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
+ #: includes/class-freemius.php:15029
315
+ msgid "Please contact us with the following message:"
316
+ msgstr "Please contact us with the following message:"
317
+
318
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
319
+ msgid "Upgrade"
320
+ msgstr "Előfizetés frissítése"
321
+
322
+ #: includes/class-freemius.php:15384
323
+ msgid "Start Trial"
324
+ msgstr "Próbaidő indítása"
325
+
326
+ #: includes/class-freemius.php:15386
327
+ msgid "Pricing"
328
+ msgstr "Árak"
329
+
330
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
+ msgid "Affiliation"
332
+ msgstr "Affiliation"
333
+
334
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
+ #: templates/account.php150, templates/debug.php:324
336
+ msgid "Account"
337
+ msgstr "Fiók"
338
+
339
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
+ #: includes/customizer/class-fs-customizer-support-section.php:60
341
+ msgid "Contact Us"
342
+ msgstr "Kapcsolat"
343
+
344
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
+ #: includes/class-freemius.php19849, templates/account.php100,
346
+ #: templates/account/partials/addon.php:41
347
+ msgid "Add-Ons"
348
+ msgstr "Kiegészítők"
349
+
350
+ #: includes/class-freemius.php:15541
351
+ msgctxt "ASCII arrow left icon"
352
+ msgid "&#x2190;"
353
+ msgstr "&#x2190;"
354
+
355
+ #: includes/class-freemius.php:15541
356
+ msgctxt "ASCII arrow right icon"
357
+ msgid "&#x27a4;"
358
+ msgstr "&#x27a4;"
359
+
360
+ #: includes/class-freemius.php15543, templates/pricing.php:97
361
+ msgctxt "noun"
362
+ msgid "Pricing"
363
+ msgstr "Árak"
364
+
365
+ #: includes/class-freemius.php15756,
366
+ #: includes/customizer/class-fs-customizer-support-section.php:67
367
+ msgid "Support Forum"
368
+ msgstr "Támogató fórum"
369
+
370
+ #: includes/class-freemius.php:16542
371
+ msgid "Your email has been successfully verified - you are AWESOME!"
372
+ msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
373
+
374
+ #: includes/class-freemius.php:16543
375
+ msgctxt "a positive response"
376
+ msgid "Right on"
377
+ msgstr "Right on"
378
+
379
+ #: includes/class-freemius.php:17168
380
+ msgid "Your %s Add-on plan was successfully upgraded."
381
+ msgstr "Your %s Add-on plan was successfully upgraded."
382
+
383
+ #: includes/class-freemius.php:17170
384
+ msgid "%s Add-on was successfully purchased."
385
+ msgstr "%s Add-on was successfully purchased."
386
+
387
+ #: includes/class-freemius.php:17173
388
+ msgid "Download the latest version"
389
+ msgstr "Töltsd le a legfrissebb verziót"
390
+
391
+ #: includes/class-freemius.php:17259
392
+ msgctxt "%1s - plugin title, %2s - API domain"
393
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
+
396
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
+ #: includes/class-freemius.php:17755
398
+ msgid "Error received from the server:"
399
+ msgstr "Error received from the server:"
400
+
401
+ #: includes/class-freemius.php:17272
402
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
+
405
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
+ msgctxt ""
408
+ msgid "Hmm"
409
+ msgstr "Hmm"
410
+
411
+ #: includes/class-freemius.php:17467
412
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
+ msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
+
415
+ #: includes/class-freemius.php17468, templates/account.php102,
416
+ #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
+ msgctxt "trial period"
418
+ msgid "Trial"
419
+ msgstr "Próbaidő"
420
+
421
+ #: includes/class-freemius.php:17473
422
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
+ msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
+
425
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
+ msgid "Please contact us here"
427
+ msgstr "Please contact us here"
428
+
429
+ #: includes/class-freemius.php:17487
430
+ msgid "Your plan was successfully upgraded."
431
+ msgstr "Your plan was successfully upgraded."
432
+
433
+ #: includes/class-freemius.php:17505
434
+ msgid "Your plan was successfully changed to %s."
435
+ msgstr "Your plan was successfully changed to %s."
436
+
437
+ #: includes/class-freemius.php:17521
438
+ msgid "Your license has expired. You can still continue using the free %s forever."
439
+ msgstr "Your license has expired. You can still continue using the free %s forever."
440
+
441
+ #: includes/class-freemius.php:17523
442
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
+ msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
+
445
+ #: includes/class-freemius.php:17531
446
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
+ msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
448
+
449
+ #: includes/class-freemius.php:17544
450
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
+ msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
+
453
+ #: includes/class-freemius.php:17567
454
+ msgid "Your free trial has expired. You can still continue using all our free features."
455
+ msgstr "Your free trial has expired. You can still continue using all our free features."
456
+
457
+ #: includes/class-freemius.php:17569
458
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
+
461
+ #: includes/class-freemius.php:17674
462
+ msgid "It looks like the license could not be activated."
463
+ msgstr "It looks like the license could not be activated."
464
+
465
+ #: includes/class-freemius.php:17704
466
+ msgid "Your license was successfully activated."
467
+ msgstr "Your license was successfully activated."
468
+
469
+ #: includes/class-freemius.php:17730
470
+ msgid "It looks like your site currently doesn't have an active license."
471
+ msgstr "It looks like your site currently doesn't have an active license."
472
+
473
+ #: includes/class-freemius.php:17754
474
+ msgid "It looks like the license deactivation failed."
475
+ msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
476
+
477
+ #: includes/class-freemius.php:17782
478
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
479
+ msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
480
+
481
+ #: includes/class-freemius.php:17783
482
+ msgid "O.K"
483
+ msgstr "Rendben"
484
+
485
+ #: includes/class-freemius.php:17836
486
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
+
489
+ #: includes/class-freemius.php:17845
490
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
+
493
+ #: includes/class-freemius.php:17887
494
+ msgid "You are already running the %s in a trial mode."
495
+ msgstr "You are already running the %s in a trial mode."
496
+
497
+ #: includes/class-freemius.php:17898
498
+ msgid "You already utilized a trial before."
499
+ msgstr "You already utilized a trial before."
500
+
501
+ #: includes/class-freemius.php:17912
502
+ msgid "Plan %s do not exist, therefore, can't start a trial."
503
+ msgstr "Plan %s do not exist, therefore, can't start a trial."
504
+
505
+ #: includes/class-freemius.php:17923
506
+ msgid "Plan %s does not support a trial period."
507
+ msgstr "Plan %s does not support a trial period."
508
+
509
+ #: includes/class-freemius.php:17934
510
+ msgid "None of the %s's plans supports a trial period."
511
+ msgstr "None of the %s's plans supports a trial period."
512
+
513
+ #: includes/class-freemius.php:17984
514
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
+
517
+ #: includes/class-freemius.php:18020
518
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
+
521
+ #: includes/class-freemius.php:18039
522
+ msgid "Your %s free trial was successfully cancelled."
523
+ msgstr "Your %s free trial was successfully cancelled."
524
+
525
+ #: includes/class-freemius.php:18346
526
+ msgid "Version %s was released."
527
+ msgstr "Version %s was released."
528
+
529
+ #: includes/class-freemius.php:18346
530
+ msgid "Please download %s."
531
+ msgstr "Please download %s."
532
+
533
+ #: includes/class-freemius.php:18353
534
+ msgid "the latest %s version here"
535
+ msgstr "the latest %s version here"
536
+
537
+ #: includes/class-freemius.php:18358
538
+ msgid "New"
539
+ msgstr "Új"
540
+
541
+ #: includes/class-freemius.php:18363
542
+ msgid "Seems like you got the latest release."
543
+ msgstr "Seems like you got the latest release."
544
+
545
+ #: includes/class-freemius.php:18364
546
+ msgid "You are all good!"
547
+ msgstr "Minden rendben!"
548
+
549
+ #: includes/class-freemius.php:18632
550
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
+
553
+ #: includes/class-freemius.php:18769
554
+ msgid "Site successfully opted in."
555
+ msgstr "Site successfully opted in."
556
+
557
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
+ msgid "Awesome"
559
+ msgstr "Nagyszerű"
560
+
561
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
564
+
565
+ #: includes/class-freemius.php:18787
566
+ msgid "Thank you!"
567
+ msgstr "Köszönjük!"
568
+
569
+ #: includes/class-freemius.php:18794
570
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
571
+ msgstr "We will no longer be sending any usage data of %s on %s to %s."
572
+
573
+ #: includes/class-freemius.php:18923
574
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
+ msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
+
577
+ #: includes/class-freemius.php:18929
578
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
+ msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
+
581
+ #: includes/class-freemius.php:18934
582
+ msgid "%s is the new owner of the account."
583
+ msgstr "%s is the new owner of the account."
584
+
585
+ #: includes/class-freemius.php:18936
586
+ msgctxt "as congratulations"
587
+ msgid "Congrats"
588
+ msgstr "Gratulálunk"
589
+
590
+ #: includes/class-freemius.php:18956
591
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
+
594
+ #: includes/class-freemius.php:18957
595
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
+
598
+ #: includes/class-freemius.php:18964
599
+ msgid "Change Ownership"
600
+ msgstr "Tulajdonos módosítása"
601
+
602
+ #: includes/class-freemius.php:18972
603
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
+
606
+ #: includes/class-freemius.php:18984
607
+ msgid "Please provide your full name."
608
+ msgstr "Kérlek add meg a teljes neved!"
609
+
610
+ #: includes/class-freemius.php:18989
611
+ msgid "Your name was successfully updated."
612
+ msgstr "A neved sikeresen frissítettük."
613
+
614
+ #: includes/class-freemius.php:19050
615
+ msgid "You have successfully updated your %s."
616
+ msgstr "You have successfully updated your %s."
617
+
618
+ #: includes/class-freemius.php:19190
619
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
+
622
+ #: includes/class-freemius.php:19191
623
+ msgctxt "advance notice of something that will need attention."
624
+ msgid "Heads up"
625
+ msgstr "Figyelem"
626
+
627
+ #: includes/class-freemius.php:19621
628
+ msgctxt "exclamation"
629
+ msgid "Hey"
630
+ msgstr "Üdv"
631
+
632
+ #: includes/class-freemius.php:19621
633
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
+ msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
+
636
+ #: includes/class-freemius.php:19629
637
+ msgid "No commitment for %s days - cancel anytime!"
638
+ msgstr "No commitment for %s days - cancel anytime!"
639
+
640
+ #: includes/class-freemius.php:19630
641
+ msgid "No credit card required"
642
+ msgstr "Bankkártya megadása nem kötelező"
643
+
644
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
+ msgctxt "call to action"
646
+ msgid "Start free trial"
647
+ msgstr "Start free trial"
648
+
649
+ #: includes/class-freemius.php:19714
650
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
+ msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
+
653
+ #: includes/class-freemius.php:19723
654
+ msgid "Learn more"
655
+ msgstr "Bővebben"
656
+
657
+ #: includes/class-freemius.php19873, templates/account.php406,
658
+ #: templates/account.php509, templates/connect.php171,
659
+ #: templates/connect.php421, templates/forms/license-activation.php24,
660
+ #: templates/account/partials/addon.php:235
661
+ msgid "Activate License"
662
+ msgstr "Licensz aktiválása"
663
+
664
+ #: includes/class-freemius.php19874, templates/account.php469,
665
+ #: templates/account.php508, templates/account/partials/site.php:256
666
+ msgid "Change License"
667
+ msgstr "Licensz módosítása"
668
+
669
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
+ msgid "Opt Out"
671
+ msgstr "Leiratkozás"
672
+
673
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
+ #: templates/account/partials/site.php43,
675
+ #: templates/account/partials/site.php:161
676
+ msgid "Opt In"
677
+ msgstr "Feliratkozás"
678
+
679
+ #: includes/class-freemius.php:20187
680
+ msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
+ msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
+
683
+ #: includes/class-freemius.php:20195
684
+ msgid "Activate %s features"
685
+ msgstr "Activate %s features"
686
+
687
+ #: includes/class-freemius.php:20208
688
+ msgid "Please follow these steps to complete the upgrade"
689
+ msgstr "Please follow these steps to complete the upgrade"
690
+
691
+ #: includes/class-freemius.php:20212
692
+ msgid "Download the latest %s version"
693
+ msgstr "Download the latest %s version"
694
+
695
+ #: includes/class-freemius.php:20216
696
+ msgid "Upload and activate the downloaded version"
697
+ msgstr "Upload and activate the downloaded version"
698
+
699
+ #: includes/class-freemius.php:20218
700
+ msgid "How to upload and activate?"
701
+ msgstr "How to upload and activate?"
702
+
703
+ #: includes/class-freemius.php:20352
704
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
706
+
707
+ #: includes/class-freemius.php:20513
708
+ msgid "Auto installation only works for opted-in users."
709
+ msgstr "Auto installation only works for opted-in users."
710
+
711
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
+ #: includes/class-fs-plugin-updater.php1060,
713
+ #: includes/class-fs-plugin-updater.php:1074
714
+ msgid "Invalid module ID."
715
+ msgstr "Invalid module ID."
716
+
717
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
+ msgid "Premium version already active."
719
+ msgstr "Premium version already active."
720
+
721
+ #: includes/class-freemius.php:20539
722
+ msgid "You do not have a valid license to access the premium version."
723
+ msgstr "You do not have a valid license to access the premium version."
724
+
725
+ #: includes/class-freemius.php:20546
726
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
+
729
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
+ msgid "Premium add-on version already installed."
731
+ msgstr "Premium add-on version already installed."
732
+
733
+ #: includes/class-freemius.php:20909
734
+ msgid "View paid features"
735
+ msgstr "Fizetős funkciók megtekintése"
736
+
737
+ #: includes/class-freemius.php:21229
738
+ msgid "Thank you so much for using %s and its add-ons!"
739
+ msgstr "Thank you so much for using %s and its add-ons!"
740
+
741
+ #: includes/class-freemius.php:21230
742
+ msgid "Thank you so much for using %s!"
743
+ msgstr "Thank you so much for using %s!"
744
+
745
+ #: includes/class-freemius.php:21236
746
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
+
749
+ #: includes/class-freemius.php:21240
750
+ msgid "Thank you so much for using our products!"
751
+ msgstr "Thank you so much for using our products!"
752
+
753
+ #: includes/class-freemius.php:21241
754
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
+
757
+ #: includes/class-freemius.php:21260
758
+ msgid "%s and its add-ons"
759
+ msgstr "%s and its add-ons"
760
+
761
+ #: includes/class-freemius.php:21269
762
+ msgid "Products"
763
+ msgstr "Termékek"
764
+
765
+ #: includes/class-freemius.php21276, templates/connect.php:272
766
+ msgid "Yes"
767
+ msgstr "Igen"
768
+
769
+ #: includes/class-freemius.php21277, templates/connect.php:273
770
+ msgid "send me security & feature updates, educational content and offers."
771
+ msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
772
+
773
+ #: includes/class-freemius.php21278, templates/connect.php:278
774
+ msgid "No"
775
+ msgstr "Nem"
776
+
777
+ #: includes/class-freemius.php21280, templates/connect.php:280
778
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
+ msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
780
+
781
+ #: includes/class-freemius.php:21290
782
+ msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
+ msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
+
785
+ #: includes/class-freemius.php21292, templates/connect.php:287
786
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
+ msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
+
789
+ #: includes/class-freemius.php:21574
790
+ msgid "License key is empty."
791
+ msgstr "A licensz kulcs üres."
792
+
793
+ #: includes/class-fs-plugin-updater.php184,
794
+ #: templates/forms/premium-versions-upgrade-handler.php:57
795
+ msgid "Renew license"
796
+ msgstr "Licensz megújítása"
797
+
798
+ #: includes/class-fs-plugin-updater.php189,
799
+ #: templates/forms/premium-versions-upgrade-handler.php:58
800
+ msgid "Buy license"
801
+ msgstr "Licensz vásárlása"
802
+
803
+ #: includes/class-fs-plugin-updater.php:278
804
+ msgid "There is a %s of %s available."
805
+ msgstr "There is a %s of %s available."
806
+
807
+ #: includes/class-fs-plugin-updater.php:282
808
+ msgid "new version"
809
+ msgstr "új verzió"
810
+
811
+ #: includes/class-fs-plugin-updater.php:305
812
+ msgid "Important Upgrade Notice:"
813
+ msgstr "Important Upgrade Notice:"
814
+
815
+ #: includes/class-fs-plugin-updater.php:1125
816
+ msgid "Installing plugin: %s"
817
+ msgstr "Bővítmény telepítése: %s"
818
+
819
+ #: includes/class-fs-plugin-updater.php:1166
820
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
822
+
823
+ #: includes/class-fs-plugin-updater.php:1348
824
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
+
827
+ #: includes/fs-plugin-info-dialog.php369,
828
+ #: templates/account/partials/addon.php:292
829
+ msgctxt "verb"
830
+ msgid "Purchase"
831
+ msgstr "Vásárlás"
832
+
833
+ #: includes/fs-plugin-info-dialog.php:372
834
+ msgid "Start my free %s"
835
+ msgstr "Start my free %s"
836
+
837
+ #: includes/fs-plugin-info-dialog.php:413
838
+ msgid "Install Free Version Now"
839
+ msgstr "Install Free Version Now"
840
+
841
+ #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
+ #: templates/account/partials/addon.php272,
843
+ #: templates/account/partials/addon.php:322
844
+ msgid "Install Now"
845
+ msgstr "Telepítés most"
846
+
847
+ #: includes/fs-plugin-info-dialog.php:425
848
+ msgctxt "as download latest version"
849
+ msgid "Download Latest Free Version"
850
+ msgstr "Download Latest Free Version"
851
+
852
+ #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
+ #: templates/account/partials/addon.php:21
854
+ msgctxt "as download latest version"
855
+ msgid "Download Latest"
856
+ msgstr "Download Latest"
857
+
858
+ #: includes/fs-plugin-info-dialog.php:436
859
+ msgid "Install Free Version Update Now"
860
+ msgstr "Install Free Version Update Now"
861
+
862
+ #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
+ msgid "Install Update Now"
864
+ msgstr "Frissítés telepítése most"
865
+
866
+ #: includes/fs-plugin-info-dialog.php:448
867
+ msgid "Newer Free Version (%s) Installed"
868
+ msgstr "Newer Free Version (%s) Installed"
869
+
870
+ #: includes/fs-plugin-info-dialog.php:449
871
+ msgid "Newer Version (%s) Installed"
872
+ msgstr "Newer Version (%s) Installed"
873
+
874
+ #: includes/fs-plugin-info-dialog.php:457
875
+ msgid "Latest Free Version Installed"
876
+ msgstr "Legfrissebb ingyenes verzió telepítve"
877
+
878
+ #: includes/fs-plugin-info-dialog.php:458
879
+ msgid "Latest Version Installed"
880
+ msgstr "Legfrissebb verzió telepítve"
881
+
882
+ #: includes/fs-plugin-info-dialog.php:613
883
+ msgctxt "Plugin installer section title"
884
+ msgid "Description"
885
+ msgstr "Leírás"
886
+
887
+ #: includes/fs-plugin-info-dialog.php:614
888
+ msgctxt "Plugin installer section title"
889
+ msgid "Installation"
890
+ msgstr "Telepítés"
891
+
892
+ #: includes/fs-plugin-info-dialog.php:615
893
+ msgctxt "Plugin installer section title"
894
+ msgid "FAQ"
895
+ msgstr "GYIK"
896
+
897
+ #: includes/fs-plugin-info-dialog.php616,
898
+ #: templates/plugin-info/description.php:55
899
+ msgid "Screenshots"
900
+ msgstr "Képernyőfotók"
901
+
902
+ #: includes/fs-plugin-info-dialog.php:617
903
+ msgctxt "Plugin installer section title"
904
+ msgid "Changelog"
905
+ msgstr "Változtatások"
906
+
907
+ #: includes/fs-plugin-info-dialog.php:618
908
+ msgctxt "Plugin installer section title"
909
+ msgid "Reviews"
910
+ msgstr "Vélemények"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:619
913
+ msgctxt "Plugin installer section title"
914
+ msgid "Other Notes"
915
+ msgstr "Egyéb megjegyzések"
916
+
917
+ #: includes/fs-plugin-info-dialog.php:634
918
+ msgctxt "Plugin installer section title"
919
+ msgid "Features & Pricing"
920
+ msgstr "Funkciók & Árak"
921
+
922
+ #: includes/fs-plugin-info-dialog.php:644
923
+ msgid "Plugin Install"
924
+ msgstr "Bővítmény telepítése"
925
+
926
+ #: includes/fs-plugin-info-dialog.php:716
927
+ msgctxt "e.g. Professional Plan"
928
+ msgid "%s Plan"
929
+ msgstr "%s csomag"
930
+
931
+ #: includes/fs-plugin-info-dialog.php:742
932
+ msgctxt "e.g. the best product"
933
+ msgid "Best"
934
+ msgstr "Legjobb"
935
+
936
+ #: includes/fs-plugin-info-dialog.php748,
937
+ #: includes/fs-plugin-info-dialog.php:768
938
+ msgctxt "as every month"
939
+ msgid "Monthly"
940
+ msgstr "Havi"
941
+
942
+ #: includes/fs-plugin-info-dialog.php:751
943
+ msgctxt "as once a year"
944
+ msgid "Annual"
945
+ msgstr "Éves"
946
+
947
+ #: includes/fs-plugin-info-dialog.php:754
948
+ msgid "Lifetime"
949
+ msgstr "Örök"
950
+
951
+ #: includes/fs-plugin-info-dialog.php768,
952
+ #: includes/fs-plugin-info-dialog.php770,
953
+ #: includes/fs-plugin-info-dialog.php:772
954
+ msgctxt "e.g. billed monthly"
955
+ msgid "Billed %s"
956
+ msgstr "%s számlázás"
957
+
958
+ #: includes/fs-plugin-info-dialog.php:770
959
+ msgctxt "as once a year"
960
+ msgid "Annually"
961
+ msgstr "Éves"
962
+
963
+ #: includes/fs-plugin-info-dialog.php:772
964
+ msgctxt "as once a year"
965
+ msgid "Once"
966
+ msgstr "Egyszeri"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:778
969
+ msgid "Single Site License"
970
+ msgstr "Egy weboldalas licensz"
971
+
972
+ #: includes/fs-plugin-info-dialog.php:780
973
+ msgid "Unlimited Licenses"
974
+ msgstr "Korlátlan licensz"
975
+
976
+ #: includes/fs-plugin-info-dialog.php:782
977
+ msgid "Up to %s Sites"
978
+ msgstr "Up to %s Sites"
979
+
980
+ #: includes/fs-plugin-info-dialog.php792,
981
+ #: templates/plugin-info/features.php:82
982
+ msgctxt "as monthly period"
983
+ msgid "mo"
984
+ msgstr "hó"
985
+
986
+ #: includes/fs-plugin-info-dialog.php799,
987
+ #: templates/plugin-info/features.php:80
988
+ msgctxt "as annual period"
989
+ msgid "year"
990
+ msgstr "év"
991
+
992
+ #: includes/fs-plugin-info-dialog.php:853
993
+ msgctxt "noun"
994
+ msgid "Price"
995
+ msgstr "Ár"
996
+
997
+ #: includes/fs-plugin-info-dialog.php:901
998
+ msgid "Save %s"
999
+ msgstr "%s mentése"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:911
1002
+ msgid "No commitment for %s - cancel anytime"
1003
+ msgstr "No commitment for %s - cancel anytime"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:914
1006
+ msgid "After your free %s, pay as little as %s"
1007
+ msgstr "After your free %s, pay as little as %s"
1008
+
1009
+ #: includes/fs-plugin-info-dialog.php:925
1010
+ msgid "Details"
1011
+ msgstr "Részletek"
1012
+
1013
+ #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
+ #: templates/account/partials/addon.php:32
1016
+ msgctxt "product version"
1017
+ msgid "Version"
1018
+ msgstr "Verzió"
1019
+
1020
+ #: includes/fs-plugin-info-dialog.php:936
1021
+ msgctxt "as the plugin author"
1022
+ msgid "Author"
1023
+ msgstr "Szerző"
1024
+
1025
+ #: includes/fs-plugin-info-dialog.php:943
1026
+ msgid "Last Updated"
1027
+ msgstr "Utolsó frissítés"
1028
+
1029
+ #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
+ msgctxt "x-ago"
1031
+ msgid "%s ago"
1032
+ msgstr "%s ago"
1033
+
1034
+ #: includes/fs-plugin-info-dialog.php:957
1035
+ msgid "Requires WordPress Version"
1036
+ msgstr "A következő WordPress verzió szükséges:"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:958
1039
+ msgid "%s or higher"
1040
+ msgstr "%s or higher"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:965
1043
+ msgid "Compatible up to"
1044
+ msgstr "Compatible up to"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:973
1047
+ msgid "Downloaded"
1048
+ msgstr "Letöltések száma:"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:977
1051
+ msgid "%s time"
1052
+ msgstr "%s"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php:979
1055
+ msgid "%s times"
1056
+ msgstr "%s"
1057
+
1058
+ #: includes/fs-plugin-info-dialog.php:989
1059
+ msgid "WordPress.org Plugin Page"
1060
+ msgstr "WordPress.org bővítmény oldal"
1061
+
1062
+ #: includes/fs-plugin-info-dialog.php:997
1063
+ msgid "Plugin Homepage"
1064
+ msgstr "Bővítmény oldala"
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php1005,
1067
+ #: includes/fs-plugin-info-dialog.php:1087
1068
+ msgid "Donate to this plugin"
1069
+ msgstr "Bővítmény támogatása"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1012
1072
+ msgid "Average Rating"
1073
+ msgstr "Átlagos értékelés"
1074
+
1075
+ #: includes/fs-plugin-info-dialog.php:1019
1076
+ msgid "based on %s"
1077
+ msgstr "based on %s"
1078
+
1079
+ #: includes/fs-plugin-info-dialog.php:1023
1080
+ msgid "%s rating"
1081
+ msgstr "%s rating"
1082
+
1083
+ #: includes/fs-plugin-info-dialog.php:1025
1084
+ msgid "%s ratings"
1085
+ msgstr "%s ratings"
1086
+
1087
+ #: includes/fs-plugin-info-dialog.php:1040
1088
+ msgid "%s star"
1089
+ msgstr "%s star"
1090
+
1091
+ #: includes/fs-plugin-info-dialog.php:1042
1092
+ msgid "%s stars"
1093
+ msgstr "%s stars"
1094
+
1095
+ #: includes/fs-plugin-info-dialog.php:1053
1096
+ msgid "Click to see reviews that provided a rating of %s"
1097
+ msgstr "Click to see reviews that provided a rating of %s"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1066
1100
+ msgid "Contributors"
1101
+ msgstr "Közreműködők"
1102
+
1103
+ #: includes/fs-plugin-info-dialog.php1095,
1104
+ #: includes/fs-plugin-info-dialog.php:1097
1105
+ msgid "Warning"
1106
+ msgstr "Figyelmeztetés"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php:1095
1109
+ msgid "This plugin has not been tested with your current version of WordPress."
1110
+ msgstr "This plugin has not been tested with your current version of WordPress."
1111
+
1112
+ #: includes/fs-plugin-info-dialog.php:1097
1113
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
1115
+
1116
+ #: includes/fs-plugin-info-dialog.php:1116
1117
+ msgid "Paid add-on must be deployed to Freemius."
1118
+ msgstr "Paid add-on must be deployed to Freemius."
1119
+
1120
+ #: includes/fs-plugin-info-dialog.php:1117
1121
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1123
+
1124
+ #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
+ #: templates/account/partials/addon.php22,
1126
+ #: templates/account/partials/site.php:295
1127
+ msgid "Downgrading your plan"
1128
+ msgstr "Downgrading your plan"
1129
+
1130
+ #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
+ #: templates/account/partials/addon.php23,
1132
+ #: templates/account/partials/site.php:296
1133
+ msgid "Cancelling the subscription"
1134
+ msgstr "Cancelling the subscription"
1135
+
1136
+ #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
+ #. subscription'
1138
+ #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
+ #: templates/account/partials/addon.php25,
1140
+ #: templates/account/partials/site.php:298
1141
+ msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
+ msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
+
1144
+ #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
+ #: templates/account/partials/addon.php26,
1146
+ #: templates/account/partials/site.php:299
1147
+ msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
+ msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
+
1150
+ #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
+ #: templates/account/partials/addon.php:27
1152
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
+
1155
+ #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
+ #: templates/account/partials/addon.php28,
1157
+ #: templates/account/partials/site.php:300
1158
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
+
1161
+ #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
+ #: templates/account/partials/addon.php29,
1163
+ #: templates/account/partials/site.php:301
1164
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
+
1167
+ #. translators: %s: Plan title (e.g. "Professional")
1168
+ #: templates/account.php90,
1169
+ #: templates/account/partials/activate-license-button.php31,
1170
+ #: templates/account/partials/addon.php:31
1171
+ msgid "Activate %s Plan"
1172
+ msgstr "%s csomag aktiválása"
1173
+
1174
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
+ #: templates/account.php93, templates/account/partials/addon.php34,
1176
+ #: templates/account/partials/site.php:275
1177
+ msgid "Auto renews in %s"
1178
+ msgstr "Auto renews in %s"
1179
+
1180
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1181
+ #: templates/account.php95, templates/account/partials/addon.php36,
1182
+ #: templates/account/partials/site.php:277
1183
+ msgid "Expires in %s"
1184
+ msgstr "Hátralévő idő: %s"
1185
+
1186
+ #: templates/account.php96, templates/account/partials/addon.php:37
1187
+ msgctxt "as synchronize license"
1188
+ msgid "Sync License"
1189
+ msgstr "Licensz szinkronizálása"
1190
+
1191
+ #: templates/account.php97, templates/account/partials/addon.php:38
1192
+ msgid "Cancel Trial"
1193
+ msgstr "Próbaidő törlése"
1194
+
1195
+ #: templates/account.php98, templates/account/partials/addon.php:39
1196
+ msgid "Change Plan"
1197
+ msgstr "Csomag módosítása"
1198
+
1199
+ #: templates/account.php99, templates/account/partials/addon.php:40
1200
+ msgctxt "verb"
1201
+ msgid "Upgrade"
1202
+ msgstr "Váltás nagyobb csomagra"
1203
+
1204
+ #: templates/account.php101, templates/account/partials/addon.php42,
1205
+ #: templates/account/partials/site.php:302
1206
+ msgctxt "verb"
1207
+ msgid "Downgrade"
1208
+ msgstr "Váltás kisebb csomagra"
1209
+
1210
+ #: templates/account.php103, templates/add-ons.php130,
1211
+ #: templates/plugin-info/features.php72,
1212
+ #: templates/account/partials/addon.php44,
1213
+ #: templates/account/partials/site.php:31
1214
+ msgid "Free"
1215
+ msgstr "Ingyenes"
1216
+
1217
+ #: templates/account.php104, templates/account/partials/addon.php:45
1218
+ msgid "Activate"
1219
+ msgstr "Aktiválás"
1220
+
1221
+ #: templates/account.php105, templates/debug.php371,
1222
+ #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
+ #: templates/account/partials/addon.php:46
1224
+ msgctxt "as product pricing plan"
1225
+ msgid "Plan"
1226
+ msgstr "Csomag"
1227
+
1228
+ #: templates/account.php:158
1229
+ msgid "Free Trial"
1230
+ msgstr "Ingyenes próbaidő"
1231
+
1232
+ #: templates/account.php:169
1233
+ msgid "Account Details"
1234
+ msgstr "Fiók információk"
1235
+
1236
+ #: templates/account.php:179
1237
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1238
+ msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1239
+
1240
+ #: templates/account.php:181
1241
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1242
+ msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1243
+
1244
+ #: templates/account.php:184
1245
+ msgid "Delete Account"
1246
+ msgstr "Fiók törlése"
1247
+
1248
+ #: templates/account.php196, templates/account/partials/addon.php159,
1249
+ #: templates/account/partials/deactivate-license-button.php:35
1250
+ msgid "Deactivate License"
1251
+ msgstr "Licensz deaktiválása"
1252
+
1253
+ #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
+ msgid "Are you sure you want to proceed?"
1255
+ msgstr "Are you sure you want to proceed?"
1256
+
1257
+ #: templates/account.php219, templates/account/partials/addon.php:182
1258
+ msgid "Cancel Subscription"
1259
+ msgstr "Előfizetés törlése"
1260
+
1261
+ #: templates/account.php:247
1262
+ msgctxt "as synchronize"
1263
+ msgid "Sync"
1264
+ msgstr "Szinkronizálás"
1265
+
1266
+ #: templates/account.php261, templates/debug.php:487
1267
+ msgid "Name"
1268
+ msgstr "Név"
1269
+
1270
+ #: templates/account.php267, templates/debug.php:488
1271
+ msgid "Email"
1272
+ msgstr "Email"
1273
+
1274
+ #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
+ msgid "User ID"
1276
+ msgstr "Felhasználó ID"
1277
+
1278
+ #: templates/account.php:282
1279
+ msgid "Site ID"
1280
+ msgstr "Weboldal ID"
1281
+
1282
+ #: templates/account.php:285
1283
+ msgid "No ID"
1284
+ msgstr "Nincs ID"
1285
+
1286
+ #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
+ #: templates/debug.php453, templates/debug.php490,
1288
+ #: templates/account/partials/site.php:219
1289
+ msgid "Public Key"
1290
+ msgstr "Publikus kulcs"
1291
+
1292
+ #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
+ #: templates/debug.php491, templates/account/partials/site.php:231
1294
+ msgid "Secret Key"
1295
+ msgstr "Titkos kulcs"
1296
+
1297
+ #: templates/account.php:299
1298
+ msgctxt "as secret encryption key missing"
1299
+ msgid "No Secret"
1300
+ msgstr "Nincs titkos kulcs"
1301
+
1302
+ #: templates/account.php318, templates/account/partials/site.php112,
1303
+ #: templates/account/partials/site.php:114
1304
+ msgid "Trial"
1305
+ msgstr "Próbaidő"
1306
+
1307
+ #: templates/account.php337, templates/debug.php531,
1308
+ #: templates/account/partials/site.php:248
1309
+ msgid "License Key"
1310
+ msgstr "Licensz kulcs"
1311
+
1312
+ #: templates/account.php:367
1313
+ msgid "not verified"
1314
+ msgstr "nem ellenőrzött"
1315
+
1316
+ #: templates/account.php376, templates/account/partials/addon.php:120
1317
+ msgid "Expired"
1318
+ msgstr "Lejárt"
1319
+
1320
+ #: templates/account.php:428
1321
+ msgid "Premium version"
1322
+ msgstr "Prémium verzió"
1323
+
1324
+ #: templates/account.php:430
1325
+ msgid "Free version"
1326
+ msgstr "Ingyenes verzió"
1327
+
1328
+ #: templates/account.php:442
1329
+ msgid "Verify Email"
1330
+ msgstr "Email ellenőrzése"
1331
+
1332
+ #: templates/account.php:453
1333
+ msgid "Download %s Version"
1334
+ msgstr "%s verzió letöltése"
1335
+
1336
+ #: templates/account.php467, templates/account.php649,
1337
+ #: templates/account/partials/site.php237,
1338
+ #: templates/account/partials/site.php:255
1339
+ msgctxt "verb"
1340
+ msgid "Show"
1341
+ msgstr "Mutasd"
1342
+
1343
+ #: templates/account.php:481
1344
+ msgid "What is your %s?"
1345
+ msgstr "Mi a te %s?"
1346
+
1347
+ #: templates/account.php489, templates/account/billing.php:27
1348
+ msgctxt "verb"
1349
+ msgid "Edit"
1350
+ msgstr "Szerkesztés"
1351
+
1352
+ #: templates/account.php:502
1353
+ msgid "Sites"
1354
+ msgstr "Weboldalak"
1355
+
1356
+ #: templates/account.php:513
1357
+ msgid "Search by address"
1358
+ msgstr "Keresés cím alapján"
1359
+
1360
+ #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
+ #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
+ #: templates/debug.php524, templates/debug.php597,
1363
+ #: templates/account/payments.php35, templates/debug/logger.php:21
1364
+ msgid "ID"
1365
+ msgstr "ID"
1366
+
1367
+ #: templates/account.php523, templates/debug.php:367
1368
+ msgid "Address"
1369
+ msgstr "Cím"
1370
+
1371
+ #: templates/account.php:524
1372
+ msgid "License"
1373
+ msgstr "Licensz"
1374
+
1375
+ #: templates/account.php:525
1376
+ msgid "Plan"
1377
+ msgstr "Csomag"
1378
+
1379
+ #: templates/account.php:573
1380
+ msgctxt "as software license"
1381
+ msgid "License"
1382
+ msgstr "Licensz"
1383
+
1384
+ #: templates/account.php:643
1385
+ msgctxt "verb"
1386
+ msgid "Hide"
1387
+ msgstr "Elrejt"
1388
+
1389
+ #: templates/account.php:686
1390
+ msgid "Cancelling %s"
1391
+ msgstr "Cancelling %s"
1392
+
1393
+ #: templates/account.php686, templates/account.php703,
1394
+ #: templates/forms/subscription-cancellation.php27,
1395
+ #: templates/forms/deactivation/form.php:117
1396
+ msgid "trial"
1397
+ msgstr "próbaidő"
1398
+
1399
+ #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
+ msgid "Cancelling %s..."
1401
+ msgstr "Cancelling %s..."
1402
+
1403
+ #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
+ #: templates/forms/deactivation/form.php:118
1405
+ msgid "subscription"
1406
+ msgstr "előfizetés"
1407
+
1408
+ #: templates/account.php:718
1409
+ msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1410
+ msgstr "A licensz deaktiválása után a prémium funkciók használata nem elérhető, de így tudod másik weboldalon aktiválni ugyanezt a licenszt. Folytatod a deaktiválást?"
1411
+
1412
+ #: templates/add-ons.php:36
1413
+ msgid "Add Ons for %s"
1414
+ msgstr "Add Ons for %s"
1415
+
1416
+ #: templates/add-ons.php:44
1417
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
+ msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
+
1420
+ #: templates/add-ons.php:139
1421
+ msgid "View details"
1422
+ msgstr "Részletek megtekintése"
1423
+
1424
+ #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
+ #: templates/forms/resend-key.php:77
1426
+ msgctxt "as close a window"
1427
+ msgid "Dismiss"
1428
+ msgstr "Mégsem"
1429
+
1430
+ #: templates/auto-installation.php:45
1431
+ msgid "%s sec"
1432
+ msgstr "%s sec"
1433
+
1434
+ #: templates/auto-installation.php:83
1435
+ msgid "Automatic Installation"
1436
+ msgstr "Automatikus telepítés"
1437
+
1438
+ #: templates/auto-installation.php:93
1439
+ 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."
1440
+ 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."
1441
+
1442
+ #: templates/auto-installation.php:104
1443
+ 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."
1444
+ msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1445
+
1446
+ #: templates/auto-installation.php:109
1447
+ msgid "Cancel Installation"
1448
+ msgstr "Telepítés törlése"
1449
+
1450
+ #: templates/checkout.php:172
1451
+ msgid "Checkout"
1452
+ msgstr "Pénztár"
1453
+
1454
+ #: templates/checkout.php:172
1455
+ msgid "PCI compliant"
1456
+ msgstr "PCI compliant"
1457
+
1458
+ #. translators: %s: name (e.g. Hey John,)
1459
+ #: templates/connect.php:112
1460
+ msgctxt "greeting"
1461
+ msgid "Hey %s,"
1462
+ msgstr "Üdv %s!"
1463
+
1464
+ #: templates/connect.php:154
1465
+ msgid "Allow & Continue"
1466
+ msgstr "Engedélyezés és folytatás"
1467
+
1468
+ #: templates/connect.php:158
1469
+ msgid "Re-send activation email"
1470
+ msgstr "Aktivációs email újraküldése"
1471
+
1472
+ #: templates/connect.php:162
1473
+ msgid "Thanks %s!"
1474
+ msgstr "Köszönjük %s!"
1475
+
1476
+ #: templates/connect.php172, templates/forms/license-activation.php:43
1477
+ msgid "Agree & Activate License"
1478
+ msgstr "Licensz elfogadása és aktiválása"
1479
+
1480
+ #: templates/connect.php:181
1481
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1482
+ msgstr "Köszönjük, hogy megvásároltad a %s szoftverünket! A folytatáshoz most meg kell adnod a licensz kulcsot, amit a vásárlás után kaptál emailben:"
1483
+
1484
+ #: templates/connect.php:188
1485
+ 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."
1486
+ msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1487
+
1488
+ #: templates/connect.php:189
1489
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1490
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1491
+
1492
+ #: templates/connect.php:195
1493
+ 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."
1494
+ msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1495
+
1496
+ #: templates/connect.php:196
1497
+ 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."
1498
+ msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1499
+
1500
+ #: templates/connect.php:230
1501
+ msgid "We're excited to introduce the Freemius network-level integration."
1502
+ msgstr "We're excited to introduce the Freemius network-level integration."
1503
+
1504
+ #: templates/connect.php:233
1505
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1506
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1507
+
1508
+ #: templates/connect.php:235
1509
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1510
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1511
+
1512
+ #: templates/connect.php:237
1513
+ msgid "%s's paid features"
1514
+ msgstr "%s's paid features"
1515
+
1516
+ #: templates/connect.php:242
1517
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1518
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1519
+
1520
+ #: templates/connect.php:244
1521
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
+
1524
+ #: templates/connect.php253, templates/forms/license-activation.php:46
1525
+ msgid "License key"
1526
+ msgstr "Licensz kulcs"
1527
+
1528
+ #: templates/connect.php256, templates/forms/license-activation.php:19
1529
+ msgid "Can't find your license key?"
1530
+ msgstr "Nem találod a licensz kulcsod?"
1531
+
1532
+ #: templates/connect.php315, templates/connect.php630,
1533
+ #: templates/forms/deactivation/retry-skip.php:20
1534
+ msgctxt "verb"
1535
+ msgid "Skip"
1536
+ msgstr "Ugrás"
1537
+
1538
+ #: templates/connect.php:318
1539
+ msgid "Delegate to Site Admins"
1540
+ msgstr "Delegate to Site Admins"
1541
+
1542
+ #: templates/connect.php:318
1543
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1544
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1545
+
1546
+ #: templates/connect.php:346
1547
+ msgid "Your Profile Overview"
1548
+ msgstr "Fiókod áttekintése"
1549
+
1550
+ #: templates/connect.php:347
1551
+ msgid "Name and email address"
1552
+ msgstr "Név és email cím"
1553
+
1554
+ #: templates/connect.php:352
1555
+ msgid "Your Site Overview"
1556
+ msgstr "Weboldalad adatainak áttekintése"
1557
+
1558
+ #: templates/connect.php:353
1559
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1560
+ msgstr "Weboldal címe, WP verzió, PHP információk, bővítmények és sablonok"
1561
+
1562
+ #: templates/connect.php:358
1563
+ msgid "Admin Notices"
1564
+ msgstr "Admin értesítések"
1565
+
1566
+ #: templates/connect.php359, templates/connect.php:375
1567
+ msgid "Updates, announcements, marketing, no spam"
1568
+ msgstr "Frissítések, közlemények, marketing, de semmi SPAM!"
1569
+
1570
+ #: templates/connect.php:364
1571
+ msgid "Current %s Events"
1572
+ msgstr "Aktuális %s események"
1573
+
1574
+ #: templates/connect.php:365
1575
+ msgid "Activation, deactivation and uninstall"
1576
+ msgstr "Aktiválás, deaktiválás és kikapcsolás"
1577
+
1578
+ #: templates/connect.php:374
1579
+ msgid "Newsletter"
1580
+ msgstr "Hírlevél"
1581
+
1582
+ #: templates/connect.php391, templates/forms/license-activation.php:38
1583
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1584
+ msgstr "A %1$s időközönként adatot küld a %2$s weboldalnak, hogy ellenőrizze a biztonsági és funkcionális frissítéseket, valamint ellenőrzi az érvényes licensz kulcsot."
1585
+
1586
+ #: templates/connect.php:396
1587
+ msgid "What permissions are being granted?"
1588
+ msgstr "Milyen jogosultágok lesznek engedélyezve?"
1589
+
1590
+ #: templates/connect.php:417
1591
+ msgid "Don't have a license key?"
1592
+ msgstr "Nincs még licensz kulcsod?"
1593
+
1594
+ #: templates/connect.php:418
1595
+ msgid "Activate Free Version"
1596
+ msgstr "Ingyenes verzió aktiválása"
1597
+
1598
+ #: templates/connect.php:420
1599
+ msgid "Have a license key?"
1600
+ msgstr "Van licensz kulcsod?"
1601
+
1602
+ #: templates/connect.php:428
1603
+ msgid "Privacy Policy"
1604
+ msgstr "Adatkezelési tájékoztató"
1605
+
1606
+ #: templates/connect.php:430
1607
+ msgid "License Agreement"
1608
+ msgstr "Licensz szerződés"
1609
+
1610
+ #: templates/connect.php:430
1611
+ msgid "Terms of Service"
1612
+ msgstr "Szolgáltatási feltételek"
1613
+
1614
+ #: templates/connect.php:766
1615
+ msgctxt "as in the process of sending an email"
1616
+ msgid "Sending email"
1617
+ msgstr "Email küldése"
1618
+
1619
+ #: templates/connect.php:767
1620
+ msgctxt "as activating plugin"
1621
+ msgid "Activating"
1622
+ msgstr "Aktiválás"
1623
+
1624
+ #: templates/contact.php:78
1625
+ msgid "Contact"
1626
+ msgstr "Kapcsolat"
1627
+
1628
+ #: templates/debug.php:17
1629
+ msgctxt "as turned off"
1630
+ msgid "Off"
1631
+ msgstr "Off"
1632
+
1633
+ #: templates/debug.php:18
1634
+ msgctxt "as turned on"
1635
+ msgid "On"
1636
+ msgstr "On"
1637
+
1638
+ #: templates/debug.php:20
1639
+ msgid "SDK"
1640
+ msgstr "SDK"
1641
+
1642
+ #: templates/debug.php:24
1643
+ msgctxt "as code debugging"
1644
+ msgid "Debugging"
1645
+ msgstr "Debugging"
1646
+
1647
+ #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
+ #: templates/debug.php:492
1649
+ msgid "Actions"
1650
+ msgstr "Események"
1651
+
1652
+ #: templates/debug.php:64
1653
+ msgid "Are you sure you want to delete all Freemius data?"
1654
+ msgstr "Are you sure you want to delete all Freemius data?"
1655
+
1656
+ #: templates/debug.php:64
1657
+ msgid "Delete All Accounts"
1658
+ msgstr "Minden fiók törlése"
1659
+
1660
+ #: templates/debug.php:71
1661
+ msgid "Clear API Cache"
1662
+ msgstr "Clear API Cache"
1663
+
1664
+ #: templates/debug.php:79
1665
+ msgid "Clear Updates Transients"
1666
+ msgstr "Clear Updates Transients"
1667
+
1668
+ #: templates/debug.php:86
1669
+ msgid "Sync Data From Server"
1670
+ msgstr "Adatok szinkronizálása a szerverről"
1671
+
1672
+ #: templates/debug.php:95
1673
+ msgid "Migrate Options to Network"
1674
+ msgstr "Migrate Options to Network"
1675
+
1676
+ #: templates/debug.php:100
1677
+ msgid "Load DB Option"
1678
+ msgstr "Load DB Option"
1679
+
1680
+ #: templates/debug.php:103
1681
+ msgid "Set DB Option"
1682
+ msgstr "Set DB Option"
1683
+
1684
+ #: templates/debug.php:180
1685
+ msgid "Key"
1686
+ msgstr "Kulcs"
1687
+
1688
+ #: templates/debug.php:181
1689
+ msgid "Value"
1690
+ msgstr "Érték"
1691
+
1692
+ #: templates/debug.php:197
1693
+ msgctxt "as software development kit versions"
1694
+ msgid "SDK Versions"
1695
+ msgstr "SDK verziók"
1696
+
1697
+ #: templates/debug.php:202
1698
+ msgid "SDK Path"
1699
+ msgstr "SDK útvonal"
1700
+
1701
+ #: templates/debug.php203, templates/debug.php:242
1702
+ msgid "Module Path"
1703
+ msgstr "Module Path"
1704
+
1705
+ #: templates/debug.php:204
1706
+ msgid "Is Active"
1707
+ msgstr "Aktív"
1708
+
1709
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
+ msgid "Plugins"
1711
+ msgstr "Bővítmények"
1712
+
1713
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
+ msgid "Themes"
1715
+ msgstr "Sablonok"
1716
+
1717
+ #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
+ #: templates/debug/scheduled-crons.php:80
1719
+ msgid "Slug"
1720
+ msgstr "Slug"
1721
+
1722
+ #: templates/debug.php239, templates/debug.php:450
1723
+ msgid "Title"
1724
+ msgstr "Cím"
1725
+
1726
+ #: templates/debug.php:240
1727
+ msgctxt "as application program interface"
1728
+ msgid "API"
1729
+ msgstr "API"
1730
+
1731
+ #: templates/debug.php:241
1732
+ msgid "Freemius State"
1733
+ msgstr "Freemius State"
1734
+
1735
+ #: templates/debug.php:245
1736
+ msgid "Network Blog"
1737
+ msgstr "Network Blog"
1738
+
1739
+ #: templates/debug.php:246
1740
+ msgid "Network User"
1741
+ msgstr "Network User"
1742
+
1743
+ #: templates/debug.php:283
1744
+ msgctxt "as connection was successful"
1745
+ msgid "Connected"
1746
+ msgstr "Connected"
1747
+
1748
+ #: templates/debug.php:284
1749
+ msgctxt "as connection blocked"
1750
+ msgid "Blocked"
1751
+ msgstr "Blocked"
1752
+
1753
+ #: templates/debug.php:320
1754
+ msgid "Simulate Trial Promotion"
1755
+ msgstr "Simulate Trial Promotion"
1756
+
1757
+ #: templates/debug.php:332
1758
+ msgid "Simulate Network Upgrade"
1759
+ msgstr "Simulate Network Upgrade"
1760
+
1761
+ #: templates/debug.php:358
1762
+ msgid "%s Installs"
1763
+ msgstr "%s Installs"
1764
+
1765
+ #: templates/debug.php:360
1766
+ msgctxt "like websites"
1767
+ msgid "Sites"
1768
+ msgstr "Weboldalak"
1769
+
1770
+ #: templates/debug.php366, templates/account/partials/site.php:148
1771
+ msgid "Blog ID"
1772
+ msgstr "Blog ID"
1773
+
1774
+ #: templates/debug.php431, templates/debug.php509,
1775
+ #: templates/account/partials/addon.php:339
1776
+ msgctxt "verb"
1777
+ msgid "Delete"
1778
+ msgstr "Törlés"
1779
+
1780
+ #: templates/debug.php:445
1781
+ msgid "Add Ons of module %s"
1782
+ msgstr "Add Ons of module %s"
1783
+
1784
+ #: templates/debug.php:482
1785
+ msgid "Users"
1786
+ msgstr "Felhasználók"
1787
+
1788
+ #: templates/debug.php:489
1789
+ msgid "Verified"
1790
+ msgstr "Ellenőrzött"
1791
+
1792
+ #: templates/debug.php:520
1793
+ msgid "%s Licenses"
1794
+ msgstr "%s Licenses"
1795
+
1796
+ #: templates/debug.php:525
1797
+ msgid "Plugin ID"
1798
+ msgstr "Bővítmény ID"
1799
+
1800
+ #: templates/debug.php:527
1801
+ msgid "Plan ID"
1802
+ msgstr "Csomag ID"
1803
+
1804
+ #: templates/debug.php:528
1805
+ msgid "Quota"
1806
+ msgstr "Quota"
1807
+
1808
+ #: templates/debug.php:529
1809
+ msgid "Activated"
1810
+ msgstr "Sikeres aktiválás"
1811
+
1812
+ #: templates/debug.php:530
1813
+ msgid "Blocking"
1814
+ msgstr "Blocking"
1815
+
1816
+ #: templates/debug.php:532
1817
+ msgctxt "as expiration date"
1818
+ msgid "Expiration"
1819
+ msgstr "Expiration"
1820
+
1821
+ #: templates/debug.php:555
1822
+ msgid "Debug Log"
1823
+ msgstr "Debug Log"
1824
+
1825
+ #: templates/debug.php:559
1826
+ msgid "All Types"
1827
+ msgstr "All Types"
1828
+
1829
+ #: templates/debug.php:566
1830
+ msgid "All Requests"
1831
+ msgstr "All Requests"
1832
+
1833
+ #: templates/debug.php571, templates/debug.php600,
1834
+ #: templates/debug/logger.php:25
1835
+ msgid "File"
1836
+ msgstr "File"
1837
+
1838
+ #: templates/debug.php572, templates/debug.php598,
1839
+ #: templates/debug/logger.php:23
1840
+ msgid "Function"
1841
+ msgstr "Function"
1842
+
1843
+ #: templates/debug.php:573
1844
+ msgid "Process ID"
1845
+ msgstr "Művelet ID"
1846
+
1847
+ #: templates/debug.php:574
1848
+ msgid "Logger"
1849
+ msgstr "Logger"
1850
+
1851
+ #: templates/debug.php575, templates/debug.php599,
1852
+ #: templates/debug/logger.php:24
1853
+ msgid "Message"
1854
+ msgstr "Message"
1855
+
1856
+ #: templates/debug.php:577
1857
+ msgid "Filter"
1858
+ msgstr "Filter"
1859
+
1860
+ #: templates/debug.php:585
1861
+ msgid "Download"
1862
+ msgstr "Download"
1863
+
1864
+ #: templates/debug.php596, templates/debug/logger.php:22
1865
+ msgid "Type"
1866
+ msgstr "Type"
1867
+
1868
+ #: templates/debug.php601, templates/debug/logger.php:26
1869
+ msgid "Timestamp"
1870
+ msgstr "Timestamp"
1871
+
1872
+ #: templates/secure-https-header.php:28
1873
+ msgid "Secure HTTPS %s page, running from an external domain"
1874
+ msgstr "Secure HTTPS %s page, running from an external domain"
1875
+
1876
+ #: includes/customizer/class-fs-customizer-support-section.php55,
1877
+ #: templates/plugin-info/features.php:43
1878
+ msgid "Support"
1879
+ msgstr "Support"
1880
+
1881
+ #: includes/debug/class-fs-debug-bar-panel.php48,
1882
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1883
+ msgctxt "milliseconds"
1884
+ msgid "ms"
1885
+ msgstr "ms"
1886
+
1887
+ #: includes/debug/debug-bar-start.php:41
1888
+ msgid "Freemius API"
1889
+ msgstr "Freemius API"
1890
+
1891
+ #: includes/debug/debug-bar-start.php:42
1892
+ msgid "Requests"
1893
+ msgstr "Requests"
1894
+
1895
+ #: templates/account/billing.php:28
1896
+ msgctxt "verb"
1897
+ msgid "Update"
1898
+ msgstr "Frissítés"
1899
+
1900
+ #: templates/account/billing.php:39
1901
+ msgid "Billing"
1902
+ msgstr "Számlázás"
1903
+
1904
+ #: templates/account/billing.php44, templates/account/billing.php:44
1905
+ msgid "Business name"
1906
+ msgstr "Cégnév"
1907
+
1908
+ #: templates/account/billing.php45, templates/account/billing.php:45
1909
+ msgid "Tax / VAT ID"
1910
+ msgstr "Közösségi adószám"
1911
+
1912
+ #: templates/account/billing.php48, templates/account/billing.php48,
1913
+ #: templates/account/billing.php49, templates/account/billing.php:49
1914
+ msgid "Address Line %d"
1915
+ msgstr "Cím %d"
1916
+
1917
+ #: templates/account/billing.php52, templates/account/billing.php:52
1918
+ msgid "City"
1919
+ msgstr "Város"
1920
+
1921
+ #: templates/account/billing.php52, templates/account/billing.php:52
1922
+ msgid "Town"
1923
+ msgstr "Town"
1924
+
1925
+ #: templates/account/billing.php53, templates/account/billing.php:53
1926
+ msgid "ZIP / Postal Code"
1927
+ msgstr "Irányítószám"
1928
+
1929
+ #: templates/account/billing.php:308
1930
+ msgid "Country"
1931
+ msgstr "Ország"
1932
+
1933
+ #: templates/account/billing.php:310
1934
+ msgid "Select Country"
1935
+ msgstr "Válaszz országot"
1936
+
1937
+ #: templates/account/billing.php317, templates/account/billing.php:318
1938
+ msgid "State"
1939
+ msgstr "Megye"
1940
+
1941
+ #: templates/account/billing.php317, templates/account/billing.php:318
1942
+ msgid "Province"
1943
+ msgstr "Province"
1944
+
1945
+ #: templates/account/payments.php:29
1946
+ msgid "Payments"
1947
+ msgstr "Fizetési módok"
1948
+
1949
+ #: templates/account/payments.php:36
1950
+ msgid "Date"
1951
+ msgstr "Dátum"
1952
+
1953
+ #: templates/account/payments.php:37
1954
+ msgid "Amount"
1955
+ msgstr "Mennyiség"
1956
+
1957
+ #: templates/account/payments.php38, templates/account/payments.php:50
1958
+ msgid "Invoice"
1959
+ msgstr "Számla"
1960
+
1961
+ #: templates/debug/api-calls.php:56
1962
+ msgid "API"
1963
+ msgstr "API"
1964
+
1965
+ #: templates/debug/api-calls.php:68
1966
+ msgid "Method"
1967
+ msgstr "Method"
1968
+
1969
+ #: templates/debug/api-calls.php:69
1970
+ msgid "Code"
1971
+ msgstr "Kód"
1972
+
1973
+ #: templates/debug/api-calls.php:70
1974
+ msgid "Length"
1975
+ msgstr "Hossz"
1976
+
1977
+ #: templates/debug/api-calls.php:71
1978
+ msgctxt "as file/folder path"
1979
+ msgid "Path"
1980
+ msgstr "Path"
1981
+
1982
+ #: templates/debug/api-calls.php:73
1983
+ msgid "Body"
1984
+ msgstr "Body"
1985
+
1986
+ #: templates/debug/api-calls.php:75
1987
+ msgid "Result"
1988
+ msgstr "Result"
1989
+
1990
+ #: templates/debug/api-calls.php:76
1991
+ msgid "Start"
1992
+ msgstr "Start"
1993
+
1994
+ #: templates/debug/api-calls.php:77
1995
+ msgid "End"
1996
+ msgstr "End"
1997
+
1998
+ #: templates/debug/logger.php:15
1999
+ msgid "Log"
2000
+ msgstr "Log"
2001
+
2002
+ #. translators: %s: time period (e.g. In "2 hours")
2003
+ #: templates/debug/plugins-themes-sync.php18,
2004
+ #: templates/debug/scheduled-crons.php:91
2005
+ msgid "In %s"
2006
+ msgstr "In %s"
2007
+
2008
+ #. translators: %s: time period (e.g. "2 hours" ago)
2009
+ #: templates/debug/plugins-themes-sync.php20,
2010
+ #: templates/debug/scheduled-crons.php:93
2011
+ msgid "%s ago"
2012
+ msgstr "%s ago"
2013
+
2014
+ #: templates/debug/plugins-themes-sync.php21,
2015
+ #: templates/debug/scheduled-crons.php:74
2016
+ msgctxt "seconds"
2017
+ msgid "sec"
2018
+ msgstr "sec"
2019
+
2020
+ #: templates/debug/plugins-themes-sync.php:23
2021
+ msgid "Plugins & Themes Sync"
2022
+ msgstr "Bővítmények és sablonok szinkronizálása"
2023
+
2024
+ #: templates/debug/plugins-themes-sync.php:28
2025
+ msgid "Total"
2026
+ msgstr "Összesen"
2027
+
2028
+ #: templates/debug/plugins-themes-sync.php29,
2029
+ #: templates/debug/scheduled-crons.php:84
2030
+ msgid "Last"
2031
+ msgstr "Last"
2032
+
2033
+ #: templates/debug/scheduled-crons.php:76
2034
+ msgid "Scheduled Crons"
2035
+ msgstr "Scheduled Crons"
2036
+
2037
+ #: templates/debug/scheduled-crons.php:81
2038
+ msgid "Module"
2039
+ msgstr "Module"
2040
+
2041
+ #: templates/debug/scheduled-crons.php:82
2042
+ msgid "Module Type"
2043
+ msgstr "Module Type"
2044
+
2045
+ #: templates/debug/scheduled-crons.php:83
2046
+ msgid "Cron Type"
2047
+ msgstr "Cron Type"
2048
+
2049
+ #: templates/debug/scheduled-crons.php:85
2050
+ msgid "Next"
2051
+ msgstr "Next"
2052
+
2053
+ #: templates/forms/affiliation.php:82
2054
+ msgid "Non-expiring"
2055
+ msgstr "Non-expiring"
2056
+
2057
+ #: templates/forms/affiliation.php:85
2058
+ msgid "Apply to become an affiliate"
2059
+ msgstr "Apply to become an affiliate"
2060
+
2061
+ #: templates/forms/affiliation.php:104
2062
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2063
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2064
+
2065
+ #: templates/forms/affiliation.php:119
2066
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2067
+ msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2068
+
2069
+ #: templates/forms/affiliation.php:122
2070
+ msgid "Your affiliation account was temporarily suspended."
2071
+ msgstr "Your affiliation account was temporarily suspended."
2072
+
2073
+ #: templates/forms/affiliation.php:125
2074
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2075
+ msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2076
+
2077
+ #: templates/forms/affiliation.php:128
2078
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2079
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2080
+
2081
+ #: templates/forms/affiliation.php:141
2082
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2083
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2084
+
2085
+ #: templates/forms/affiliation.php:142
2086
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2087
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2088
+
2089
+ #: templates/forms/affiliation.php:145
2090
+ msgid "Program Summary"
2091
+ msgstr "Program Summary"
2092
+
2093
+ #: templates/forms/affiliation.php:147
2094
+ msgid "%s commission when a customer purchases a new license."
2095
+ msgstr "%s commission when a customer purchases a new license."
2096
+
2097
+ #: templates/forms/affiliation.php:149
2098
+ msgid "Get commission for automated subscription renewals."
2099
+ msgstr "Get commission for automated subscription renewals."
2100
+
2101
+ #: templates/forms/affiliation.php:152
2102
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2103
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2104
+
2105
+ #: templates/forms/affiliation.php:155
2106
+ msgid "Unlimited commissions."
2107
+ msgstr "Unlimited commissions."
2108
+
2109
+ #: templates/forms/affiliation.php:157
2110
+ msgid "%s minimum payout amount."
2111
+ msgstr "%s minimum payout amount."
2112
+
2113
+ #: templates/forms/affiliation.php:158
2114
+ msgid "Payouts are in USD and processed monthly via PayPal."
2115
+ msgstr "Payouts are in USD and processed monthly via PayPal."
2116
+
2117
+ #: templates/forms/affiliation.php:159
2118
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2119
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2120
+
2121
+ #: templates/forms/affiliation.php:162
2122
+ msgid "Affiliate"
2123
+ msgstr "Affiliate"
2124
+
2125
+ #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2126
+ msgid "Email address"
2127
+ msgstr "Email cím"
2128
+
2129
+ #: templates/forms/affiliation.php:169
2130
+ msgid "Full name"
2131
+ msgstr "Teljes név"
2132
+
2133
+ #: templates/forms/affiliation.php:173
2134
+ msgid "PayPal account email address"
2135
+ msgstr "PayPal fiók email címe"
2136
+
2137
+ #: templates/forms/affiliation.php:177
2138
+ msgid "Where are you going to promote the %s?"
2139
+ msgstr "Where are you going to promote the %s?"
2140
+
2141
+ #: templates/forms/affiliation.php:179
2142
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2143
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2144
+
2145
+ #: templates/forms/affiliation.php:181
2146
+ msgid "Add another domain"
2147
+ msgstr "Másik domain hozzáadása"
2148
+
2149
+ #: templates/forms/affiliation.php:185
2150
+ msgid "Extra Domains"
2151
+ msgstr "További domainek"
2152
+
2153
+ #: templates/forms/affiliation.php:186
2154
+ msgid "Extra domains where you will be marketing the product from."
2155
+ msgstr "Extra domains where you will be marketing the product from."
2156
+
2157
+ #: templates/forms/affiliation.php:196
2158
+ msgid "Promotion methods"
2159
+ msgstr "Promotion methods"
2160
+
2161
+ #: templates/forms/affiliation.php:199
2162
+ msgid "Social media (Facebook, Twitter, etc.)"
2163
+ msgstr "Social media (Facebook, Twitter, etc.)"
2164
+
2165
+ #: templates/forms/affiliation.php:203
2166
+ msgid "Mobile apps"
2167
+ msgstr "Mobile apps"
2168
+
2169
+ #: templates/forms/affiliation.php:207
2170
+ msgid "Website, email, and social media statistics (optional)"
2171
+ msgstr "Weboldal, email és közösségi média statisztikák (opcionális)"
2172
+
2173
+ #: templates/forms/affiliation.php:210
2174
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2175
+ msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2176
+
2177
+ #: templates/forms/affiliation.php:214
2178
+ msgid "How will you promote us?"
2179
+ msgstr "How will you promote us?"
2180
+
2181
+ #: templates/forms/affiliation.php:217
2182
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2183
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2184
+
2185
+ #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2186
+ msgid "Cancel"
2187
+ msgstr "Mégsem"
2188
+
2189
+ #: templates/forms/affiliation.php:225
2190
+ msgid "Become an affiliate"
2191
+ msgstr "Become an affiliate"
2192
+
2193
+ #: templates/forms/license-activation.php:20
2194
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2195
+ msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:"
2196
+
2197
+ #: templates/forms/license-activation.php:25
2198
+ msgid "Update License"
2199
+ msgstr "Licensz frissítése"
2200
+
2201
+ #: templates/forms/optout.php:30
2202
+ msgctxt "verb"
2203
+ msgid "Opt Out"
2204
+ msgstr "Leiratkozás"
2205
+
2206
+ #: templates/forms/optout.php:31
2207
+ msgctxt "verb"
2208
+ msgid "Opt In"
2209
+ msgstr "Feliratkozás"
2210
+
2211
+ #: templates/forms/optout.php:33
2212
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2213
+ msgstr "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2214
+
2215
+ #: templates/forms/optout.php:35
2216
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2217
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2218
+
2219
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2220
+ msgid "There is a new version of %s available."
2221
+ msgstr "A(z) %s új verziója érhető el."
2222
+
2223
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2224
+ msgid " %s to access version %s security & feature updates, and support."
2225
+ msgstr " %s to access version %s security & feature updates, and support."
2226
+
2227
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2228
+ msgid "New Version Available"
2229
+ msgstr "Új verzió érhető el"
2230
+
2231
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2232
+ msgctxt "close a window"
2233
+ msgid "Dismiss"
2234
+ msgstr "Mégsem"
2235
+
2236
+ #: templates/forms/resend-key.php:21
2237
+ msgid "Send License Key"
2238
+ msgstr "Licensz kulcs küldése"
2239
+
2240
+ #: templates/forms/resend-key.php:57
2241
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2242
+ msgstr "Add meg az email címet, amit a vásárlás során használtál és újraküldjük a licensz kulcsot."
2243
+
2244
+ #: templates/forms/subscription-cancellation.php:37
2245
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
+ msgstr "A(z) %s deaktiválása vagy törlése automatikusan törli az oldalhoz tartozó licenszed is, amit így másik weboldalon tudsz újra aktiválni."
2247
+
2248
+ #: templates/forms/subscription-cancellation.php:47
2249
+ msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
+ msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
+
2252
+ #: templates/forms/subscription-cancellation.php:52
2253
+ msgid "license"
2254
+ msgstr "licensz"
2255
+
2256
+ #: templates/forms/subscription-cancellation.php:57
2257
+ msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
+ msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
+
2260
+ #: templates/forms/subscription-cancellation.php:68
2261
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
+
2264
+ #: templates/forms/subscription-cancellation.php:103
2265
+ msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
+ msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
+
2268
+ #: templates/forms/subscription-cancellation.php:136
2269
+ msgid "Cancel %s?"
2270
+ msgstr "Cancel %s?"
2271
+
2272
+ #: templates/forms/subscription-cancellation.php:143
2273
+ msgid "Proceed"
2274
+ msgstr "Proceed"
2275
+
2276
+ #: templates/forms/subscription-cancellation.php191,
2277
+ #: templates/forms/deactivation/form.php:150
2278
+ msgid "Cancel %s & Proceed"
2279
+ msgstr "Cancel %s & Proceed"
2280
+
2281
+ #: templates/forms/trial-start.php:22
2282
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2283
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2284
+
2285
+ #: templates/forms/trial-start.php:28
2286
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2287
+ msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2288
+
2289
+ #: templates/js/style-premium-theme.php:37
2290
+ msgid "Premium"
2291
+ msgstr "Prémium"
2292
+
2293
+ #: templates/partials/network-activation.php:23
2294
+ msgid "Activate license on all sites in the network."
2295
+ msgstr "Activate license on all sites in the network."
2296
+
2297
+ #: templates/partials/network-activation.php:24
2298
+ msgid "Apply on all sites in the network."
2299
+ msgstr "Apply on all sites in the network."
2300
+
2301
+ #: templates/partials/network-activation.php:27
2302
+ msgid "Activate license on all pending sites."
2303
+ msgstr "Activate license on all pending sites."
2304
+
2305
+ #: templates/partials/network-activation.php:28
2306
+ msgid "Apply on all pending sites."
2307
+ msgstr "Apply on all pending sites."
2308
+
2309
+ #: templates/partials/network-activation.php36,
2310
+ #: templates/partials/network-activation.php:68
2311
+ msgid "allow"
2312
+ msgstr "allow"
2313
+
2314
+ #: templates/partials/network-activation.php38,
2315
+ #: templates/partials/network-activation.php:70
2316
+ msgid "delegate"
2317
+ msgstr "delegate"
2318
+
2319
+ #: templates/partials/network-activation.php41,
2320
+ #: templates/partials/network-activation.php:73
2321
+ msgid "skip"
2322
+ msgstr "ugrás"
2323
+
2324
+ #: templates/plugin-info/description.php72,
2325
+ #: templates/plugin-info/screenshots.php:31
2326
+ msgid "Click to view full-size screenshot %d"
2327
+ msgstr "Click to view full-size screenshot %d"
2328
+
2329
+ #: templates/plugin-info/features.php:56
2330
+ msgid "Unlimited Updates"
2331
+ msgstr "Korlátlan frissítés"
2332
+
2333
+ #: templates/account/partials/activate-license-button.php:46
2334
+ msgid "Localhost"
2335
+ msgstr "Localhost"
2336
+
2337
+ #: templates/account/partials/activate-license-button.php:50
2338
+ msgctxt "as 5 licenses left"
2339
+ msgid "%s left"
2340
+ msgstr "%s left"
2341
+
2342
+ #: templates/account/partials/activate-license-button.php:51
2343
+ msgid "Last license"
2344
+ msgstr "Last license"
2345
+
2346
+ #: templates/account/partials/addon.php:115
2347
+ msgid "Cancelled"
2348
+ msgstr "Törölve"
2349
+
2350
+ #: templates/account/partials/addon.php:125
2351
+ msgid "No expiration"
2352
+ msgstr "No expiration"
2353
+
2354
+ #: templates/account/partials/addon.php264,
2355
+ #: templates/account/partials/addon.php:317
2356
+ msgid "Activate this add-on"
2357
+ msgstr "Activate this add-on"
2358
+
2359
+ #: templates/account/partials/site.php:181
2360
+ msgid "Owner Name"
2361
+ msgstr "Tulajdonos neve"
2362
+
2363
+ #: templates/account/partials/site.php:193
2364
+ msgid "Owner Email"
2365
+ msgstr "Tulajdonos email címe"
2366
+
2367
+ #: templates/account/partials/site.php:205
2368
+ msgid "Owner ID"
2369
+ msgstr "Tulajdonos ID"
2370
+
2371
+ #: templates/account/partials/site.php:270
2372
+ msgid "Subscription"
2373
+ msgstr "Előfizetés"
2374
+
2375
+ #: templates/forms/deactivation/contact.php:19
2376
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2377
+ msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
2378
+
2379
+ #: templates/forms/deactivation/contact.php:22
2380
+ msgid "Contact Support"
2381
+ msgstr "Írás az ügyfélszolgálatra"
2382
+
2383
+ #: templates/forms/deactivation/form.php:59
2384
+ msgid "Anonymous feedback"
2385
+ msgstr "Névtelen visszajelzés"
2386
+
2387
+ #: templates/forms/deactivation/form.php:66
2388
+ msgid "Deactivate"
2389
+ msgstr "Deaktiválás"
2390
+
2391
+ #: templates/forms/deactivation/form.php:68
2392
+ msgid "Activate %s"
2393
+ msgstr "%s aktiválása"
2394
+
2395
+ #: templates/forms/deactivation/form.php:80
2396
+ msgid "Quick Feedback"
2397
+ msgstr "Gyors visszajelzés"
2398
+
2399
+ #: templates/forms/deactivation/form.php:84
2400
+ msgid "If you have a moment, please let us know why you are %s"
2401
+ msgstr "Kérlek mondd el, miért %s"
2402
+
2403
+ #: templates/forms/deactivation/form.php:84
2404
+ msgid "deactivating"
2405
+ msgstr "deaktiválod"
2406
+
2407
+ #: templates/forms/deactivation/form.php:84
2408
+ msgid "switching"
2409
+ msgstr "váltasz"
2410
+
2411
+ #: templates/forms/deactivation/form.php:332
2412
+ msgid "Submit & %s"
2413
+ msgstr "Küldés & %s"
2414
+
2415
+ #: templates/forms/deactivation/form.php:353
2416
+ msgid "Kindly tell us the reason so we can improve."
2417
+ msgstr "Ha elmondod az okát, tudunk fejlődni."
2418
+
2419
+ #: templates/forms/deactivation/form.php:478
2420
+ msgid "Yes - %s"
2421
+ msgstr "Yes - %s"
2422
+
2423
+ #: templates/forms/deactivation/form.php:485
2424
+ msgid "Skip & %s"
2425
+ msgstr "Kihagyás & %s"
2426
+
2427
+ #: templates/forms/deactivation/retry-skip.php:21
2428
+ msgid "Click here to use the plugin anonymously"
2429
+ msgstr "Kattints ide, ha névtelenül szeretnéd használni a bővítményt"
2430
+
2431
+ #: templates/forms/deactivation/retry-skip.php:23
2432
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2433
+ msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in."
freemius/languages/freemius-it_IT.mo CHANGED
Binary file
freemius/languages/freemius-it_IT.po CHANGED
@@ -1,8 +1,9 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
5
  # Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-2018
 
6
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
7
  # Vova Feldman <vova@freemius.com>, 2015-2016
8
  msgid ""
@@ -10,8 +11,8 @@ msgstr ""
10
  "Project-Id-Version: WordPress SDK\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "POT-Creation-Date: \n"
13
- "PO-Revision-Date: 2018-11-25 07:22+0000\n"
14
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
15
  "Language: it_IT\n"
16
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,772 +25,772 @@ msgstr ""
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
- #: includes/class-freemius.php:1602
28
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
29
  msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
30
 
31
- #: includes/class-freemius.php:1604
32
  msgid "Error"
33
  msgstr "Errore"
34
 
35
- #: includes/class-freemius.php:1925
36
  msgid "I found a better %s"
37
  msgstr "Ho trovato un migliore %s"
38
 
39
- #: includes/class-freemius.php:1927
40
  msgid "What's the %s's name?"
41
  msgstr "Qual è il nome di %s?"
42
 
43
- #: includes/class-freemius.php:1933
44
  msgid "It's a temporary %s. I'm just debugging an issue."
45
  msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
46
 
47
- #: includes/class-freemius.php:1935
48
  msgid "Deactivation"
49
  msgstr "Disattivazione"
50
 
51
- #: includes/class-freemius.php:1936
52
  msgid "Theme Switch"
53
  msgstr "Cambio tema"
54
 
55
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
56
  msgid "Other"
57
  msgstr "Altro"
58
 
59
- #: includes/class-freemius.php:1953
60
  msgid "I no longer need the %s"
61
  msgstr "Non ho più bisogno di %s"
62
 
63
- #: includes/class-freemius.php:1960
64
  msgid "I only needed the %s for a short period"
65
  msgstr "Ho avuto bisogno di %s per un breve periodo"
66
 
67
- #: includes/class-freemius.php:1966
68
  msgid "The %s broke my site"
69
  msgstr "%s ha rotto il mio sito"
70
 
71
- #: includes/class-freemius.php:1973
72
  msgid "The %s suddenly stopped working"
73
  msgstr "%s ha improvvisamente smesso di funzionare"
74
 
75
- #: includes/class-freemius.php:1983
76
  msgid "I can't pay for it anymore"
77
  msgstr "Non posso piú pagarlo"
78
 
79
- #: includes/class-freemius.php:1985
80
  msgid "What price would you feel comfortable paying?"
81
  msgstr "Che prezzo ritieni opportuno pagare?"
82
 
83
- #: includes/class-freemius.php:1991
84
  msgid "I don't like to share my information with you"
85
  msgstr "Non voglio condividere i miei dati con te"
86
 
87
- #: includes/class-freemius.php:2012
88
  msgid "The %s didn't work"
89
  msgstr "%s non funziona"
90
 
91
- #: includes/class-freemius.php:2022
92
  msgid "I couldn't understand how to make it work"
93
  msgstr "Non capisco come farlo funzionare"
94
 
95
- #: includes/class-freemius.php:2030
96
  msgid "The %s is great, but I need specific feature that you don't support"
97
  msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
98
 
99
- #: includes/class-freemius.php:2032
100
  msgid "What feature?"
101
  msgstr "Quale funzionalitá?"
102
 
103
- #: includes/class-freemius.php:2036
104
  msgid "The %s is not working"
105
  msgstr "%s non funziona"
106
 
107
- #: includes/class-freemius.php:2038
108
  msgid "Kindly share what didn't work so we can fix it for future users..."
109
  msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
110
 
111
- #: includes/class-freemius.php:2042
112
  msgid "It's not what I was looking for"
113
  msgstr "Non é quello che stavo cercando"
114
 
115
- #: includes/class-freemius.php:2044
116
  msgid "What you've been looking for?"
117
  msgstr "Che cosa stai cercando?"
118
 
119
- #: includes/class-freemius.php:2048
120
  msgid "The %s didn't work as expected"
121
  msgstr "%s non ha funzionato come mi aspettavo"
122
 
123
- #: includes/class-freemius.php:2050
124
  msgid "What did you expect?"
125
  msgstr "Che cosa ti aspettavi?"
126
 
127
- #: includes/class-freemius.php2853, templates/debug.php:20
128
  msgid "Freemius Debug"
129
  msgstr "Debug Freemius"
130
 
131
- #: includes/class-freemius.php:3581
132
  msgid "I don't know what is cURL or how to install it, help me!"
133
  msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
134
 
135
- #: includes/class-freemius.php:3583
136
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
137
  msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
138
 
139
- #: includes/class-freemius.php:3590
140
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
141
  msgstr "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo."
142
 
143
- #: includes/class-freemius.php:3695
144
  msgid "Yes - do your thing"
145
  msgstr "Sì - fai pure"
146
 
147
- #: includes/class-freemius.php:3700
148
  msgid "No - just deactivate"
149
  msgstr "No - disattiva e basta"
150
 
151
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
152
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
153
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
154
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
155
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
156
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
157
- #: includes/class-freemius.php18705, templates/add-ons.php:43
158
  msgctxt "exclamation"
159
  msgid "Oops"
160
  msgstr "Ops"
161
 
162
- #: includes/class-freemius.php:3814
163
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
164
  msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza."
165
 
166
- #: includes/class-freemius.php:4250
167
  msgctxt "addonX cannot run without pluginY"
168
  msgid "%s cannot run without %s."
169
  msgstr "%s non può funzionare senza %s."
170
 
171
- #: includes/class-freemius.php:4251
172
  msgctxt "addonX cannot run..."
173
  msgid "%s cannot run without the plugin."
174
  msgstr "%s non può funzionare senza il plugin."
175
 
176
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
177
- #: includes/class-freemius.php:17659
178
  msgid "Unexpected API error. Please contact the %s's author with the following error."
179
  msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
180
 
181
- #: includes/class-freemius.php:5006
182
  msgid "Premium %s version was successfully activated."
183
  msgstr "La versione 1%s Permium è stata attivata con successo."
184
 
185
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
186
  msgctxt ""
187
  msgid "W00t"
188
  msgstr "Forte"
189
 
190
- #: includes/class-freemius.php:5033
191
  msgid "You have a %s license."
192
  msgstr "Hai la licenza %s."
193
 
194
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
195
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
196
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
197
- #: includes/class-freemius.php:17413
198
  msgctxt "interjection expressing joy or exuberance"
199
  msgid "Yee-haw"
200
  msgstr "Evvai"
201
 
202
- #: includes/class-freemius.php:5301
203
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
204
  msgstr "Il periodo di prova gratuito %s è stato annullato con successo. Siccome l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo in futuro, dovrai comprare una licenza."
205
 
206
- #: includes/class-freemius.php:5305
207
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
208
  msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
209
 
210
- #: includes/class-freemius.php5314, templates/add-ons.php103,
211
  #: templates/account/partials/addon.php:288
212
  msgid "More information about %s"
213
  msgstr "Ulteriori informazioni su %s"
214
 
215
- #: includes/class-freemius.php:5315
216
  msgid "Purchase License"
217
  msgstr "Acquista licenza"
218
 
219
- #: includes/class-freemius.php6230, templates/connect.php:163
220
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
221
  msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
222
 
223
- #: includes/class-freemius.php:6234
224
  msgid "start the trial"
225
  msgstr "Inizia il periodo di prova gratuito"
226
 
227
- #: includes/class-freemius.php6235, templates/connect.php:167
228
  msgid "complete the install"
229
  msgstr "completa l'installazione"
230
 
231
- #: includes/class-freemius.php:6348
232
  msgid "You are just one step away - %s"
233
  msgstr "Sei a un passo dalla fine - %s"
234
 
235
- #: includes/class-freemius.php:6351
236
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
237
  msgid "Complete \"%s\" Activation Now"
238
  msgstr "Completa l'attivazione di \"%s\" ora"
239
 
240
- #: includes/class-freemius.php:6429
241
  msgid "We made a few tweaks to the %s, %s"
242
  msgstr "Abbiamo fatto alcune migliore a %s,%s"
243
 
244
- #: includes/class-freemius.php:6433
245
  msgid "Opt in to make \"%s\" better!"
246
  msgstr "Opt in to make \"%s\" better!"
247
 
248
- #: includes/class-freemius.php:6861
249
  msgid "The upgrade of %s was successfully completed."
250
  msgstr "L'aggiornamento di %s è stato completato con successo."
251
 
252
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
253
- #: includes/class-fs-plugin-updater.php1077,
254
- #: includes/class-fs-plugin-updater.php1084,
255
  #: templates/auto-installation.php:32
256
  msgid "Add-On"
257
  msgstr "Add-on"
258
 
259
- #: includes/class-freemius.php8707, templates/debug.php359,
260
  #: templates/debug.php:520
261
  msgid "Plugin"
262
  msgstr "Plugin"
263
 
264
- #: includes/class-freemius.php8708, templates/debug.php359,
265
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
266
  msgid "Theme"
267
  msgstr "Tema"
268
 
269
- #: includes/class-freemius.php:11183
270
  msgid "Invalid site details collection."
271
  msgstr "Invalid site details collection."
272
 
273
- #: includes/class-freemius.php:11303
274
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
275
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
276
 
277
- #: includes/class-freemius.php:11305
278
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
279
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
280
 
281
- #: includes/class-freemius.php:11541
282
  msgid "Account is pending activation."
283
  msgstr "Account in attesa di attivazione."
284
 
285
- #: includes/class-freemius.php11653,
286
  #: templates/forms/premium-versions-upgrade-handler.php:47
287
  msgid "Buy a license now"
288
- msgstr "Buy a license now"
289
 
290
- #: includes/class-freemius.php11665,
291
  #: templates/forms/premium-versions-upgrade-handler.php:46
292
  msgid "Renew your license now"
293
- msgstr "Renew your license now"
294
 
295
- #: includes/class-freemius.php:11669
296
  msgid "%s to access version %s security & feature updates, and support."
297
  msgstr "%s to access version %s security & feature updates, and support."
298
 
299
- #: includes/class-freemius.php:14052
300
  msgid "%s activation was successfully completed."
301
  msgstr "%s è stato attivato con successo."
302
 
303
- #: includes/class-freemius.php:14066
304
  msgid "Your account was successfully activated with the %s plan."
305
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
306
 
307
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
308
  msgid "Your trial has been successfully started."
309
  msgstr "La versione di prova è stata avviata correttamente."
310
 
311
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
312
- #: includes/class-freemius.php:14761
313
  msgid "Couldn't activate %s."
314
  msgstr "Non é stato possibile attivare %s."
315
 
316
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
317
- #: includes/class-freemius.php:14762
318
  msgid "Please contact us with the following message:"
319
  msgstr "Contattaci con il seguente messaggio:"
320
 
321
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
322
  msgid "Upgrade"
323
  msgstr "Aggiornamento"
324
 
325
- #: includes/class-freemius.php:15117
326
  msgid "Start Trial"
327
  msgstr "Inizia il periodo di prova gratuito"
328
 
329
- #: includes/class-freemius.php:15119
330
  msgid "Pricing"
331
  msgstr "Prezzi"
332
 
333
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
334
  msgid "Affiliation"
335
  msgstr "Affiliazione"
336
 
337
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
338
  #: templates/account.php150, templates/debug.php:324
339
  msgid "Account"
340
  msgstr "Account"
341
 
342
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
343
  #: includes/customizer/class-fs-customizer-support-section.php:60
344
  msgid "Contact Us"
345
  msgstr "Contattaci"
346
 
347
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
348
- #: includes/class-freemius.php19553, templates/account.php100,
349
  #: templates/account/partials/addon.php:41
350
  msgid "Add-Ons"
351
  msgstr "Addon"
352
 
353
- #: includes/class-freemius.php:15274
354
  msgctxt "ASCII arrow left icon"
355
  msgid "&#x2190;"
356
  msgstr "&#x2190;"
357
 
358
- #: includes/class-freemius.php:15274
359
  msgctxt "ASCII arrow right icon"
360
  msgid "&#x27a4;"
361
  msgstr "&#x27a4;"
362
 
363
- #: includes/class-freemius.php15276, templates/pricing.php:97
364
  msgctxt "noun"
365
  msgid "Pricing"
366
  msgstr "Prezzi"
367
 
368
- #: includes/class-freemius.php15479,
369
  #: includes/customizer/class-fs-customizer-support-section.php:67
370
  msgid "Support Forum"
371
  msgstr "Forum di supporto"
372
 
373
- #: includes/class-freemius.php:16265
374
  msgid "Your email has been successfully verified - you are AWESOME!"
375
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
376
 
377
- #: includes/class-freemius.php:16266
378
  msgctxt "a positive response"
379
  msgid "Right on"
380
  msgstr "Sì"
381
 
382
- #: includes/class-freemius.php:16888
383
  msgid "Your %s Add-on plan was successfully upgraded."
384
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
385
 
386
- #: includes/class-freemius.php:16890
387
  msgid "%s Add-on was successfully purchased."
388
  msgstr "L' add-on %s è stato acquistato con successo."
389
 
390
- #: includes/class-freemius.php:16893
391
  msgid "Download the latest version"
392
  msgstr "Scarica l'ultima versione"
393
 
394
- #: includes/class-freemius.php:16965
395
  msgctxt "%1s - plugin title, %2s - API domain"
396
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
397
  msgstr "Il tuo server sta bloccando l'accesso all'API di Freemius. L'accesso è cruciale per quanto riguarda la la sincronizzazione di %1s. Per favore contatta il tuo host per aggiungere %2s alla whitelist."
398
 
399
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
400
- #: includes/class-freemius.php:17461
401
  msgid "Error received from the server:"
402
  msgstr "Errore ricevuto dal server:"
403
 
404
- #: includes/class-freemius.php:16978
405
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
406
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
407
 
408
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
409
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
410
  msgctxt ""
411
  msgid "Hmm"
412
  msgstr "Uhm"
413
 
414
- #: includes/class-freemius.php:17173
415
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
416
  msgstr "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o cambiato il piano, è probabile che ci sia un problema nei nostri sistemi."
417
 
418
- #: includes/class-freemius.php17174, templates/account.php102,
419
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
420
  msgctxt "trial period"
421
  msgid "Trial"
422
  msgstr "Prova gratuita"
423
 
424
- #: includes/class-freemius.php:17179
425
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
426
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
427
 
428
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
429
  msgid "Please contact us here"
430
  msgstr "Contattaci qui"
431
 
432
- #: includes/class-freemius.php:17193
433
  msgid "Your plan was successfully upgraded."
434
  msgstr "Il piano è stato aggiornato con successo."
435
 
436
- #: includes/class-freemius.php:17211
437
  msgid "Your plan was successfully changed to %s."
438
  msgstr "Il piano è stato cambiato con successo a %s."
439
 
440
- #: includes/class-freemius.php:17227
441
  msgid "Your license has expired. You can still continue using the free %s forever."
442
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
443
 
444
- #: includes/class-freemius.php:17229
445
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
446
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
447
 
448
- #: includes/class-freemius.php:17237
449
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
450
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
451
 
452
- #: includes/class-freemius.php:17250
453
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
454
  msgstr "La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare a ricevere gli aggiornamenti ed il supporto."
455
 
456
- #: includes/class-freemius.php:17273
457
  msgid "Your free trial has expired. You can still continue using all our free features."
458
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
459
 
460
- #: includes/class-freemius.php:17275
461
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
462
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
463
 
464
- #: includes/class-freemius.php:17380
465
  msgid "It looks like the license could not be activated."
466
  msgstr "Sembra che la licenza non possa essere attivata."
467
 
468
- #: includes/class-freemius.php:17410
469
  msgid "Your license was successfully activated."
470
  msgstr "La tua licenza è stata attivata correttamente."
471
 
472
- #: includes/class-freemius.php:17436
473
  msgid "It looks like your site currently doesn't have an active license."
474
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
475
 
476
- #: includes/class-freemius.php:17460
477
  msgid "It looks like the license deactivation failed."
478
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
479
 
480
- #: includes/class-freemius.php:17488
481
  msgid "Your license was successfully deactivated, you are back to the %s plan."
482
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
483
 
484
- #: includes/class-freemius.php:17489
485
  msgid "O.K"
486
  msgstr "OK"
487
 
488
- #: includes/class-freemius.php:17542
489
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
490
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
491
 
492
- #: includes/class-freemius.php:17551
493
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
494
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
495
 
496
- #: includes/class-freemius.php:17593
497
  msgid "You are already running the %s in a trial mode."
498
  msgstr "Stai già usando %s in modalità prova."
499
 
500
- #: includes/class-freemius.php:17604
501
  msgid "You already utilized a trial before."
502
  msgstr "Hai già utilizzato una prova gratuita in passato."
503
 
504
- #: includes/class-freemius.php:17618
505
  msgid "Plan %s do not exist, therefore, can't start a trial."
506
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
507
 
508
- #: includes/class-freemius.php:17629
509
  msgid "Plan %s does not support a trial period."
510
  msgstr "Il piano %s non supporta il periodo di prova."
511
 
512
- #: includes/class-freemius.php:17640
513
  msgid "None of the %s's plans supports a trial period."
514
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
515
 
516
- #: includes/class-freemius.php:17690
517
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
518
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
519
 
520
- #: includes/class-freemius.php:17726
521
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
522
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
523
 
524
- #: includes/class-freemius.php:17745
525
  msgid "Your %s free trial was successfully cancelled."
526
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
527
 
528
- #: includes/class-freemius.php:18052
529
  msgid "Version %s was released."
530
  msgstr "La versione %s é stata rilasciata."
531
 
532
- #: includes/class-freemius.php:18052
533
  msgid "Please download %s."
534
  msgstr "Scarica %s."
535
 
536
- #: includes/class-freemius.php:18059
537
  msgid "the latest %s version here"
538
  msgstr "l'ultima versione %s é quì"
539
 
540
- #: includes/class-freemius.php:18064
541
  msgid "New"
542
  msgstr "Nuovo"
543
 
544
- #: includes/class-freemius.php:18069
545
  msgid "Seems like you got the latest release."
546
  msgstr "Sembra che tu abbia la versione più recente."
547
 
548
- #: includes/class-freemius.php:18070
549
  msgid "You are all good!"
550
  msgstr "Sei fantastico!"
551
 
552
- #: includes/class-freemius.php:18338
553
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
554
  msgstr "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora arrivata, per favore controlla nella tua casella di posta indesiderata."
555
 
556
- #: includes/class-freemius.php:18473
557
  msgid "Site successfully opted in."
558
  msgstr "Sito accettato con successo."
559
 
560
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
561
  msgid "Awesome"
562
  msgstr "Fantastico"
563
 
564
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
565
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
566
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
567
 
568
- #: includes/class-freemius.php:18491
569
  msgid "Thank you!"
570
  msgstr "Grazie!"
571
 
572
- #: includes/class-freemius.php:18498
573
  msgid "We will no longer be sending any usage data of %s on %s to %s."
574
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
575
 
576
- #: includes/class-freemius.php:18627
577
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
578
  msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata."
579
 
580
- #: includes/class-freemius.php:18633
581
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
582
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
583
 
584
- #: includes/class-freemius.php:18638
585
  msgid "%s is the new owner of the account."
586
  msgstr "%s è il nuovo proprietario dell'account."
587
 
588
- #: includes/class-freemius.php:18640
589
  msgctxt "as congratulations"
590
  msgid "Congrats"
591
  msgstr "Congratulazioni"
592
 
593
- #: includes/class-freemius.php:18660
594
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
595
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
596
 
597
- #: includes/class-freemius.php:18661
598
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
599
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
600
 
601
- #: includes/class-freemius.php:18668
602
  msgid "Change Ownership"
603
  msgstr "Cambia Proprietario"
604
 
605
- #: includes/class-freemius.php:18676
606
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
607
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
608
 
609
- #: includes/class-freemius.php:18688
610
  msgid "Please provide your full name."
611
  msgstr "Per favore inserisci il tuo nome completo."
612
 
613
- #: includes/class-freemius.php:18693
614
  msgid "Your name was successfully updated."
615
  msgstr "Il tuo nome è stato aggiornato correttamente."
616
 
617
- #: includes/class-freemius.php:18754
618
  msgid "You have successfully updated your %s."
619
  msgstr "Hai aggiornato con successo il tuo %s."
620
 
621
- #: includes/class-freemius.php:18894
622
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
623
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
624
 
625
- #: includes/class-freemius.php:18895
626
  msgctxt "advance notice of something that will need attention."
627
  msgid "Heads up"
628
  msgstr "Attenzione"
629
 
630
- #: includes/class-freemius.php:19325
631
  msgctxt "exclamation"
632
  msgid "Hey"
633
  msgstr "Hey"
634
 
635
- #: includes/class-freemius.php:19325
636
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
637
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
638
 
639
- #: includes/class-freemius.php:19333
640
  msgid "No commitment for %s days - cancel anytime!"
641
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
642
 
643
- #: includes/class-freemius.php:19334
644
  msgid "No credit card required"
645
  msgstr "Nessuna carta di credito richiesta"
646
 
647
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
648
  msgctxt "call to action"
649
  msgid "Start free trial"
650
  msgstr "Inizia il periodo di prova gratuito"
651
 
652
- #: includes/class-freemius.php:19418
653
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
654
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
655
 
656
- #: includes/class-freemius.php:19427
657
  msgid "Learn more"
658
  msgstr "Scopri altro"
659
 
660
- #: includes/class-freemius.php19577, templates/account.php406,
661
  #: templates/account.php509, templates/connect.php171,
662
  #: templates/connect.php421, templates/forms/license-activation.php24,
663
  #: templates/account/partials/addon.php:235
664
  msgid "Activate License"
665
  msgstr "Attiva licenza"
666
 
667
- #: includes/class-freemius.php19578, templates/account.php469,
668
  #: templates/account.php508, templates/account/partials/site.php:256
669
  msgid "Change License"
670
  msgstr "Cambia licenza"
671
 
672
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
673
  msgid "Opt Out"
674
  msgstr "Cancella iscrizione"
675
 
676
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
677
  #: templates/account/partials/site.php43,
678
  #: templates/account/partials/site.php:161
679
  msgid "Opt In"
680
  msgstr "Iscriviti"
681
 
682
- #: includes/class-freemius.php:19891
683
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
684
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
685
 
686
- #: includes/class-freemius.php:19899
687
  msgid "Activate %s features"
688
  msgstr "Activate %s features"
689
 
690
- #: includes/class-freemius.php:19912
691
  msgid "Please follow these steps to complete the upgrade"
692
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
693
 
694
- #: includes/class-freemius.php:19916
695
  msgid "Download the latest %s version"
696
  msgstr "Scarica l'ultima versione di %s"
697
 
698
- #: includes/class-freemius.php:19920
699
  msgid "Upload and activate the downloaded version"
700
  msgstr "Carica e attiva la versione scaricata"
701
 
702
- #: includes/class-freemius.php:19922
703
  msgid "How to upload and activate?"
704
  msgstr "Come faccio a caricare ed attivare?"
705
 
706
- #: includes/class-freemius.php:20056
707
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
708
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
709
 
710
- #: includes/class-freemius.php:20217
711
  msgid "Auto installation only works for opted-in users."
712
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
713
 
714
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
715
- #: includes/class-fs-plugin-updater.php1056,
716
- #: includes/class-fs-plugin-updater.php:1070
717
  msgid "Invalid module ID."
718
  msgstr "ID modulo non valida."
719
 
720
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
721
  msgid "Premium version already active."
722
  msgstr "Versione Premium già attiva."
723
 
724
- #: includes/class-freemius.php:20243
725
  msgid "You do not have a valid license to access the premium version."
726
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
727
 
728
- #: includes/class-freemius.php:20250
729
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
730
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
731
 
732
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
733
  msgid "Premium add-on version already installed."
734
  msgstr "Versione Premium dell'add-on già installata."
735
 
736
- #: includes/class-freemius.php:20613
737
  msgid "View paid features"
738
  msgstr "Vedi funzionalità a pagamento"
739
 
740
- #: includes/class-freemius.php:20927
741
  msgid "Thank you so much for using %s and its add-ons!"
742
  msgstr "Grazie per utilizzare %se i suoi addon!"
743
 
744
- #: includes/class-freemius.php:20928
745
  msgid "Thank you so much for using %s!"
746
  msgstr "Grazie per utilizzare %s!"
747
 
748
- #: includes/class-freemius.php:20934
749
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
750
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
751
 
752
- #: includes/class-freemius.php:20938
753
  msgid "Thank you so much for using our products!"
754
  msgstr "Grazie per utilizzare i nostri prodotti!"
755
 
756
- #: includes/class-freemius.php:20939
757
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
758
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
759
 
760
- #: includes/class-freemius.php:20958
761
  msgid "%s and its add-ons"
762
  msgstr "%se i suoi addon"
763
 
764
- #: includes/class-freemius.php:20967
765
  msgid "Products"
766
  msgstr "Prodotti"
767
 
768
- #: includes/class-freemius.php20974, templates/connect.php:272
769
  msgid "Yes"
770
  msgstr "Si"
771
 
772
- #: includes/class-freemius.php20975, templates/connect.php:273
773
  msgid "send me security & feature updates, educational content and offers."
774
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
775
 
776
- #: includes/class-freemius.php20976, templates/connect.php:278
777
  msgid "No"
778
  msgstr "No"
779
 
780
- #: includes/class-freemius.php20978, templates/connect.php:280
781
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
782
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
783
 
784
- #: includes/class-freemius.php:20988
785
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
786
  msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti"
787
 
788
- #: includes/class-freemius.php20990, templates/connect.php:287
789
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
790
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
791
 
792
- #: includes/class-freemius.php:21272
793
  msgid "License key is empty."
794
  msgstr "La chiave licenza è vuota."
795
 
@@ -811,19 +812,19 @@ msgstr "There is a %s of %s available."
811
  msgid "new version"
812
  msgstr "new version"
813
 
814
- #: includes/class-fs-plugin-updater.php:301
815
  msgid "Important Upgrade Notice:"
816
  msgstr "Important Upgrade Notice:"
817
 
818
- #: includes/class-fs-plugin-updater.php:1121
819
  msgid "Installing plugin: %s"
820
  msgstr "Installazione plugin: %s"
821
 
822
- #: includes/class-fs-plugin-updater.php:1162
823
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
824
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
825
 
826
- #: includes/class-fs-plugin-updater.php:1335
827
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
828
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
829
 
@@ -1142,7 +1143,7 @@ msgstr "Cancelling the subscription"
1142
  #: templates/account/partials/addon.php25,
1143
  #: templates/account/partials/site.php:298
1144
  msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1145
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1146
 
1147
  #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1148
  #: templates/account/partials/addon.php26,
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
5
  # Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-2018
6
+ # Dario Curvino <d.curvino@gmail.com>, 2018
7
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
8
  # Vova Feldman <vova@freemius.com>, 2015-2016
9
  msgid ""
11
  "Project-Id-Version: WordPress SDK\n"
12
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
13
  "POT-Creation-Date: \n"
14
+ "PO-Revision-Date: 2018-12-23 14:23+0000\n"
15
+ "Last-Translator: Dario Curvino <d.curvino@gmail.com>\n"
16
  "Language: it_IT\n"
17
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
18
  "Content-Type: text/plain; charset=UTF-8\n"
25
  "X-Poedit-SearchPathExcluded-0: *.js\n"
26
  "X-Poedit-SourceCharset: UTF-8\n"
27
 
28
+ #: includes/class-freemius.php:1688
29
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
30
  msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
31
 
32
+ #: includes/class-freemius.php:1690
33
  msgid "Error"
34
  msgstr "Errore"
35
 
36
+ #: includes/class-freemius.php:2011
37
  msgid "I found a better %s"
38
  msgstr "Ho trovato un migliore %s"
39
 
40
+ #: includes/class-freemius.php:2013
41
  msgid "What's the %s's name?"
42
  msgstr "Qual è il nome di %s?"
43
 
44
+ #: includes/class-freemius.php:2019
45
  msgid "It's a temporary %s. I'm just debugging an issue."
46
  msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
47
 
48
+ #: includes/class-freemius.php:2021
49
  msgid "Deactivation"
50
  msgstr "Disattivazione"
51
 
52
+ #: includes/class-freemius.php:2022
53
  msgid "Theme Switch"
54
  msgstr "Cambio tema"
55
 
56
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
57
  msgid "Other"
58
  msgstr "Altro"
59
 
60
+ #: includes/class-freemius.php:2039
61
  msgid "I no longer need the %s"
62
  msgstr "Non ho più bisogno di %s"
63
 
64
+ #: includes/class-freemius.php:2046
65
  msgid "I only needed the %s for a short period"
66
  msgstr "Ho avuto bisogno di %s per un breve periodo"
67
 
68
+ #: includes/class-freemius.php:2052
69
  msgid "The %s broke my site"
70
  msgstr "%s ha rotto il mio sito"
71
 
72
+ #: includes/class-freemius.php:2059
73
  msgid "The %s suddenly stopped working"
74
  msgstr "%s ha improvvisamente smesso di funzionare"
75
 
76
+ #: includes/class-freemius.php:2069
77
  msgid "I can't pay for it anymore"
78
  msgstr "Non posso piú pagarlo"
79
 
80
+ #: includes/class-freemius.php:2071
81
  msgid "What price would you feel comfortable paying?"
82
  msgstr "Che prezzo ritieni opportuno pagare?"
83
 
84
+ #: includes/class-freemius.php:2077
85
  msgid "I don't like to share my information with you"
86
  msgstr "Non voglio condividere i miei dati con te"
87
 
88
+ #: includes/class-freemius.php:2098
89
  msgid "The %s didn't work"
90
  msgstr "%s non funziona"
91
 
92
+ #: includes/class-freemius.php:2108
93
  msgid "I couldn't understand how to make it work"
94
  msgstr "Non capisco come farlo funzionare"
95
 
96
+ #: includes/class-freemius.php:2116
97
  msgid "The %s is great, but I need specific feature that you don't support"
98
  msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
99
 
100
+ #: includes/class-freemius.php:2118
101
  msgid "What feature?"
102
  msgstr "Quale funzionalitá?"
103
 
104
+ #: includes/class-freemius.php:2122
105
  msgid "The %s is not working"
106
  msgstr "%s non funziona"
107
 
108
+ #: includes/class-freemius.php:2124
109
  msgid "Kindly share what didn't work so we can fix it for future users..."
110
  msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
111
 
112
+ #: includes/class-freemius.php:2128
113
  msgid "It's not what I was looking for"
114
  msgstr "Non é quello che stavo cercando"
115
 
116
+ #: includes/class-freemius.php:2130
117
  msgid "What you've been looking for?"
118
  msgstr "Che cosa stai cercando?"
119
 
120
+ #: includes/class-freemius.php:2134
121
  msgid "The %s didn't work as expected"
122
  msgstr "%s non ha funzionato come mi aspettavo"
123
 
124
+ #: includes/class-freemius.php:2136
125
  msgid "What did you expect?"
126
  msgstr "Che cosa ti aspettavi?"
127
 
128
+ #: includes/class-freemius.php2942, templates/debug.php:20
129
  msgid "Freemius Debug"
130
  msgstr "Debug Freemius"
131
 
132
+ #: includes/class-freemius.php:3670
133
  msgid "I don't know what is cURL or how to install it, help me!"
134
  msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
135
 
136
+ #: includes/class-freemius.php:3672
137
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
138
  msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
139
 
140
+ #: includes/class-freemius.php:3679
141
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
142
  msgstr "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo."
143
 
144
+ #: includes/class-freemius.php:3784
145
  msgid "Yes - do your thing"
146
  msgstr "Sì - fai pure"
147
 
148
+ #: includes/class-freemius.php:3789
149
  msgid "No - just deactivate"
150
  msgstr "No - disattiva e basta"
151
 
152
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
153
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
154
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
155
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
156
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
157
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
158
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
159
  msgctxt "exclamation"
160
  msgid "Oops"
161
  msgstr "Ops"
162
 
163
+ #: includes/class-freemius.php:3903
164
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
165
  msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza."
166
 
167
+ #: includes/class-freemius.php:4340
168
  msgctxt "addonX cannot run without pluginY"
169
  msgid "%s cannot run without %s."
170
  msgstr "%s non può funzionare senza %s."
171
 
172
+ #: includes/class-freemius.php:4341
173
  msgctxt "addonX cannot run..."
174
  msgid "%s cannot run without the plugin."
175
  msgstr "%s non può funzionare senza il plugin."
176
 
177
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
178
+ #: includes/class-freemius.php:17953
179
  msgid "Unexpected API error. Please contact the %s's author with the following error."
180
  msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
181
 
182
+ #: includes/class-freemius.php:5130
183
  msgid "Premium %s version was successfully activated."
184
  msgstr "La versione 1%s Permium è stata attivata con successo."
185
 
186
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
187
  msgctxt ""
188
  msgid "W00t"
189
  msgstr "Forte"
190
 
191
+ #: includes/class-freemius.php:5157
192
  msgid "You have a %s license."
193
  msgstr "Hai la licenza %s."
194
 
195
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
196
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
197
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
198
+ #: includes/class-freemius.php:17707
199
  msgctxt "interjection expressing joy or exuberance"
200
  msgid "Yee-haw"
201
  msgstr "Evvai"
202
 
203
+ #: includes/class-freemius.php:5425
204
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
205
  msgstr "Il periodo di prova gratuito %s è stato annullato con successo. Siccome l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo in futuro, dovrai comprare una licenza."
206
 
207
+ #: includes/class-freemius.php:5429
208
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
209
  msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
210
 
211
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
212
  #: templates/account/partials/addon.php:288
213
  msgid "More information about %s"
214
  msgstr "Ulteriori informazioni su %s"
215
 
216
+ #: includes/class-freemius.php:5439
217
  msgid "Purchase License"
218
  msgstr "Acquista licenza"
219
 
220
+ #: includes/class-freemius.php6372, templates/connect.php:163
221
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
222
  msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
223
 
224
+ #: includes/class-freemius.php:6376
225
  msgid "start the trial"
226
  msgstr "Inizia il periodo di prova gratuito"
227
 
228
+ #: includes/class-freemius.php6377, templates/connect.php:167
229
  msgid "complete the install"
230
  msgstr "completa l'installazione"
231
 
232
+ #: includes/class-freemius.php:6490
233
  msgid "You are just one step away - %s"
234
  msgstr "Sei a un passo dalla fine - %s"
235
 
236
+ #: includes/class-freemius.php:6493
237
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
238
  msgid "Complete \"%s\" Activation Now"
239
  msgstr "Completa l'attivazione di \"%s\" ora"
240
 
241
+ #: includes/class-freemius.php:6571
242
  msgid "We made a few tweaks to the %s, %s"
243
  msgstr "Abbiamo fatto alcune migliore a %s,%s"
244
 
245
+ #: includes/class-freemius.php:6575
246
  msgid "Opt in to make \"%s\" better!"
247
  msgstr "Opt in to make \"%s\" better!"
248
 
249
+ #: includes/class-freemius.php:7003
250
  msgid "The upgrade of %s was successfully completed."
251
  msgstr "L'aggiornamento di %s è stato completato con successo."
252
 
253
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
254
+ #: includes/class-fs-plugin-updater.php1081,
255
+ #: includes/class-fs-plugin-updater.php1088,
256
  #: templates/auto-installation.php:32
257
  msgid "Add-On"
258
  msgstr "Add-on"
259
 
260
+ #: includes/class-freemius.php8927, templates/debug.php359,
261
  #: templates/debug.php:520
262
  msgid "Plugin"
263
  msgstr "Plugin"
264
 
265
+ #: includes/class-freemius.php8928, templates/debug.php359,
266
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
267
  msgid "Theme"
268
  msgstr "Tema"
269
 
270
+ #: includes/class-freemius.php:11412
271
  msgid "Invalid site details collection."
272
  msgstr "Invalid site details collection."
273
 
274
+ #: includes/class-freemius.php:11532
275
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
276
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
277
 
278
+ #: includes/class-freemius.php:11534
279
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
280
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
281
 
282
+ #: includes/class-freemius.php:11808
283
  msgid "Account is pending activation."
284
  msgstr "Account in attesa di attivazione."
285
 
286
+ #: includes/class-freemius.php11920,
287
  #: templates/forms/premium-versions-upgrade-handler.php:47
288
  msgid "Buy a license now"
289
+ msgstr "Compra una licenza ora"
290
 
291
+ #: includes/class-freemius.php11932,
292
  #: templates/forms/premium-versions-upgrade-handler.php:46
293
  msgid "Renew your license now"
294
+ msgstr "Rinnova la tua licenza ora"
295
 
296
+ #: includes/class-freemius.php:11936
297
  msgid "%s to access version %s security & feature updates, and support."
298
  msgstr "%s to access version %s security & feature updates, and support."
299
 
300
+ #: includes/class-freemius.php:14319
301
  msgid "%s activation was successfully completed."
302
  msgstr "%s è stato attivato con successo."
303
 
304
+ #: includes/class-freemius.php:14333
305
  msgid "Your account was successfully activated with the %s plan."
306
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
307
 
308
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
309
  msgid "Your trial has been successfully started."
310
  msgstr "La versione di prova è stata avviata correttamente."
311
 
312
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
313
+ #: includes/class-freemius.php:15028
314
  msgid "Couldn't activate %s."
315
  msgstr "Non é stato possibile attivare %s."
316
 
317
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
318
+ #: includes/class-freemius.php:15029
319
  msgid "Please contact us with the following message:"
320
  msgstr "Contattaci con il seguente messaggio:"
321
 
322
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
323
  msgid "Upgrade"
324
  msgstr "Aggiornamento"
325
 
326
+ #: includes/class-freemius.php:15384
327
  msgid "Start Trial"
328
  msgstr "Inizia il periodo di prova gratuito"
329
 
330
+ #: includes/class-freemius.php:15386
331
  msgid "Pricing"
332
  msgstr "Prezzi"
333
 
334
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
335
  msgid "Affiliation"
336
  msgstr "Affiliazione"
337
 
338
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
339
  #: templates/account.php150, templates/debug.php:324
340
  msgid "Account"
341
  msgstr "Account"
342
 
343
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
344
  #: includes/customizer/class-fs-customizer-support-section.php:60
345
  msgid "Contact Us"
346
  msgstr "Contattaci"
347
 
348
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
349
+ #: includes/class-freemius.php19849, templates/account.php100,
350
  #: templates/account/partials/addon.php:41
351
  msgid "Add-Ons"
352
  msgstr "Addon"
353
 
354
+ #: includes/class-freemius.php:15541
355
  msgctxt "ASCII arrow left icon"
356
  msgid "&#x2190;"
357
  msgstr "&#x2190;"
358
 
359
+ #: includes/class-freemius.php:15541
360
  msgctxt "ASCII arrow right icon"
361
  msgid "&#x27a4;"
362
  msgstr "&#x27a4;"
363
 
364
+ #: includes/class-freemius.php15543, templates/pricing.php:97
365
  msgctxt "noun"
366
  msgid "Pricing"
367
  msgstr "Prezzi"
368
 
369
+ #: includes/class-freemius.php15756,
370
  #: includes/customizer/class-fs-customizer-support-section.php:67
371
  msgid "Support Forum"
372
  msgstr "Forum di supporto"
373
 
374
+ #: includes/class-freemius.php:16542
375
  msgid "Your email has been successfully verified - you are AWESOME!"
376
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
377
 
378
+ #: includes/class-freemius.php:16543
379
  msgctxt "a positive response"
380
  msgid "Right on"
381
  msgstr "Sì"
382
 
383
+ #: includes/class-freemius.php:17168
384
  msgid "Your %s Add-on plan was successfully upgraded."
385
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
386
 
387
+ #: includes/class-freemius.php:17170
388
  msgid "%s Add-on was successfully purchased."
389
  msgstr "L' add-on %s è stato acquistato con successo."
390
 
391
+ #: includes/class-freemius.php:17173
392
  msgid "Download the latest version"
393
  msgstr "Scarica l'ultima versione"
394
 
395
+ #: includes/class-freemius.php:17259
396
  msgctxt "%1s - plugin title, %2s - API domain"
397
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
398
  msgstr "Il tuo server sta bloccando l'accesso all'API di Freemius. L'accesso è cruciale per quanto riguarda la la sincronizzazione di %1s. Per favore contatta il tuo host per aggiungere %2s alla whitelist."
399
 
400
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
401
+ #: includes/class-freemius.php:17755
402
  msgid "Error received from the server:"
403
  msgstr "Errore ricevuto dal server:"
404
 
405
+ #: includes/class-freemius.php:17272
406
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
407
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
408
 
409
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
410
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
411
  msgctxt ""
412
  msgid "Hmm"
413
  msgstr "Uhm"
414
 
415
+ #: includes/class-freemius.php:17467
416
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
417
  msgstr "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o cambiato il piano, è probabile che ci sia un problema nei nostri sistemi."
418
 
419
+ #: includes/class-freemius.php17468, templates/account.php102,
420
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
421
  msgctxt "trial period"
422
  msgid "Trial"
423
  msgstr "Prova gratuita"
424
 
425
+ #: includes/class-freemius.php:17473
426
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
427
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
428
 
429
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
430
  msgid "Please contact us here"
431
  msgstr "Contattaci qui"
432
 
433
+ #: includes/class-freemius.php:17487
434
  msgid "Your plan was successfully upgraded."
435
  msgstr "Il piano è stato aggiornato con successo."
436
 
437
+ #: includes/class-freemius.php:17505
438
  msgid "Your plan was successfully changed to %s."
439
  msgstr "Il piano è stato cambiato con successo a %s."
440
 
441
+ #: includes/class-freemius.php:17521
442
  msgid "Your license has expired. You can still continue using the free %s forever."
443
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
444
 
445
+ #: includes/class-freemius.php:17523
446
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
447
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
448
 
449
+ #: includes/class-freemius.php:17531
450
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
451
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
452
 
453
+ #: includes/class-freemius.php:17544
454
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
455
  msgstr "La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare a ricevere gli aggiornamenti ed il supporto."
456
 
457
+ #: includes/class-freemius.php:17567
458
  msgid "Your free trial has expired. You can still continue using all our free features."
459
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
460
 
461
+ #: includes/class-freemius.php:17569
462
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
463
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
464
 
465
+ #: includes/class-freemius.php:17674
466
  msgid "It looks like the license could not be activated."
467
  msgstr "Sembra che la licenza non possa essere attivata."
468
 
469
+ #: includes/class-freemius.php:17704
470
  msgid "Your license was successfully activated."
471
  msgstr "La tua licenza è stata attivata correttamente."
472
 
473
+ #: includes/class-freemius.php:17730
474
  msgid "It looks like your site currently doesn't have an active license."
475
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
476
 
477
+ #: includes/class-freemius.php:17754
478
  msgid "It looks like the license deactivation failed."
479
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
480
 
481
+ #: includes/class-freemius.php:17782
482
  msgid "Your license was successfully deactivated, you are back to the %s plan."
483
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
484
 
485
+ #: includes/class-freemius.php:17783
486
  msgid "O.K"
487
  msgstr "OK"
488
 
489
+ #: includes/class-freemius.php:17836
490
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
491
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
492
 
493
+ #: includes/class-freemius.php:17845
494
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
495
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
496
 
497
+ #: includes/class-freemius.php:17887
498
  msgid "You are already running the %s in a trial mode."
499
  msgstr "Stai già usando %s in modalità prova."
500
 
501
+ #: includes/class-freemius.php:17898
502
  msgid "You already utilized a trial before."
503
  msgstr "Hai già utilizzato una prova gratuita in passato."
504
 
505
+ #: includes/class-freemius.php:17912
506
  msgid "Plan %s do not exist, therefore, can't start a trial."
507
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
508
 
509
+ #: includes/class-freemius.php:17923
510
  msgid "Plan %s does not support a trial period."
511
  msgstr "Il piano %s non supporta il periodo di prova."
512
 
513
+ #: includes/class-freemius.php:17934
514
  msgid "None of the %s's plans supports a trial period."
515
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
516
 
517
+ #: includes/class-freemius.php:17984
518
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
519
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
520
 
521
+ #: includes/class-freemius.php:18020
522
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
523
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
524
 
525
+ #: includes/class-freemius.php:18039
526
  msgid "Your %s free trial was successfully cancelled."
527
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
528
 
529
+ #: includes/class-freemius.php:18346
530
  msgid "Version %s was released."
531
  msgstr "La versione %s é stata rilasciata."
532
 
533
+ #: includes/class-freemius.php:18346
534
  msgid "Please download %s."
535
  msgstr "Scarica %s."
536
 
537
+ #: includes/class-freemius.php:18353
538
  msgid "the latest %s version here"
539
  msgstr "l'ultima versione %s é quì"
540
 
541
+ #: includes/class-freemius.php:18358
542
  msgid "New"
543
  msgstr "Nuovo"
544
 
545
+ #: includes/class-freemius.php:18363
546
  msgid "Seems like you got the latest release."
547
  msgstr "Sembra che tu abbia la versione più recente."
548
 
549
+ #: includes/class-freemius.php:18364
550
  msgid "You are all good!"
551
  msgstr "Sei fantastico!"
552
 
553
+ #: includes/class-freemius.php:18632
554
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
555
  msgstr "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora arrivata, per favore controlla nella tua casella di posta indesiderata."
556
 
557
+ #: includes/class-freemius.php:18769
558
  msgid "Site successfully opted in."
559
  msgstr "Sito accettato con successo."
560
 
561
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
562
  msgid "Awesome"
563
  msgstr "Fantastico"
564
 
565
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
566
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
567
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
568
 
569
+ #: includes/class-freemius.php:18787
570
  msgid "Thank you!"
571
  msgstr "Grazie!"
572
 
573
+ #: includes/class-freemius.php:18794
574
  msgid "We will no longer be sending any usage data of %s on %s to %s."
575
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
576
 
577
+ #: includes/class-freemius.php:18923
578
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
579
  msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata."
580
 
581
+ #: includes/class-freemius.php:18929
582
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
583
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
584
 
585
+ #: includes/class-freemius.php:18934
586
  msgid "%s is the new owner of the account."
587
  msgstr "%s è il nuovo proprietario dell'account."
588
 
589
+ #: includes/class-freemius.php:18936
590
  msgctxt "as congratulations"
591
  msgid "Congrats"
592
  msgstr "Congratulazioni"
593
 
594
+ #: includes/class-freemius.php:18956
595
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
596
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
597
 
598
+ #: includes/class-freemius.php:18957
599
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
600
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
601
 
602
+ #: includes/class-freemius.php:18964
603
  msgid "Change Ownership"
604
  msgstr "Cambia Proprietario"
605
 
606
+ #: includes/class-freemius.php:18972
607
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
608
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
609
 
610
+ #: includes/class-freemius.php:18984
611
  msgid "Please provide your full name."
612
  msgstr "Per favore inserisci il tuo nome completo."
613
 
614
+ #: includes/class-freemius.php:18989
615
  msgid "Your name was successfully updated."
616
  msgstr "Il tuo nome è stato aggiornato correttamente."
617
 
618
+ #: includes/class-freemius.php:19050
619
  msgid "You have successfully updated your %s."
620
  msgstr "Hai aggiornato con successo il tuo %s."
621
 
622
+ #: includes/class-freemius.php:19190
623
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
624
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
625
 
626
+ #: includes/class-freemius.php:19191
627
  msgctxt "advance notice of something that will need attention."
628
  msgid "Heads up"
629
  msgstr "Attenzione"
630
 
631
+ #: includes/class-freemius.php:19621
632
  msgctxt "exclamation"
633
  msgid "Hey"
634
  msgstr "Hey"
635
 
636
+ #: includes/class-freemius.php:19621
637
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
638
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
639
 
640
+ #: includes/class-freemius.php:19629
641
  msgid "No commitment for %s days - cancel anytime!"
642
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
643
 
644
+ #: includes/class-freemius.php:19630
645
  msgid "No credit card required"
646
  msgstr "Nessuna carta di credito richiesta"
647
 
648
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
649
  msgctxt "call to action"
650
  msgid "Start free trial"
651
  msgstr "Inizia il periodo di prova gratuito"
652
 
653
+ #: includes/class-freemius.php:19714
654
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
655
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
656
 
657
+ #: includes/class-freemius.php:19723
658
  msgid "Learn more"
659
  msgstr "Scopri altro"
660
 
661
+ #: includes/class-freemius.php19873, templates/account.php406,
662
  #: templates/account.php509, templates/connect.php171,
663
  #: templates/connect.php421, templates/forms/license-activation.php24,
664
  #: templates/account/partials/addon.php:235
665
  msgid "Activate License"
666
  msgstr "Attiva licenza"
667
 
668
+ #: includes/class-freemius.php19874, templates/account.php469,
669
  #: templates/account.php508, templates/account/partials/site.php:256
670
  msgid "Change License"
671
  msgstr "Cambia licenza"
672
 
673
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
674
  msgid "Opt Out"
675
  msgstr "Cancella iscrizione"
676
 
677
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
678
  #: templates/account/partials/site.php43,
679
  #: templates/account/partials/site.php:161
680
  msgid "Opt In"
681
  msgstr "Iscriviti"
682
 
683
+ #: includes/class-freemius.php:20187
684
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
685
+ msgstr " La versione a pagamento di%1s è già installata. Attivala per iniziare a usare le funzionalità di %2s features. %3s"
686
 
687
+ #: includes/class-freemius.php:20195
688
  msgid "Activate %s features"
689
  msgstr "Activate %s features"
690
 
691
+ #: includes/class-freemius.php:20208
692
  msgid "Please follow these steps to complete the upgrade"
693
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
694
 
695
+ #: includes/class-freemius.php:20212
696
  msgid "Download the latest %s version"
697
  msgstr "Scarica l'ultima versione di %s"
698
 
699
+ #: includes/class-freemius.php:20216
700
  msgid "Upload and activate the downloaded version"
701
  msgstr "Carica e attiva la versione scaricata"
702
 
703
+ #: includes/class-freemius.php:20218
704
  msgid "How to upload and activate?"
705
  msgstr "Come faccio a caricare ed attivare?"
706
 
707
+ #: includes/class-freemius.php:20352
708
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
709
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
710
 
711
+ #: includes/class-freemius.php:20513
712
  msgid "Auto installation only works for opted-in users."
713
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
714
 
715
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
716
+ #: includes/class-fs-plugin-updater.php1060,
717
+ #: includes/class-fs-plugin-updater.php:1074
718
  msgid "Invalid module ID."
719
  msgstr "ID modulo non valida."
720
 
721
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
722
  msgid "Premium version already active."
723
  msgstr "Versione Premium già attiva."
724
 
725
+ #: includes/class-freemius.php:20539
726
  msgid "You do not have a valid license to access the premium version."
727
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
728
 
729
+ #: includes/class-freemius.php:20546
730
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
731
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
732
 
733
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
734
  msgid "Premium add-on version already installed."
735
  msgstr "Versione Premium dell'add-on già installata."
736
 
737
+ #: includes/class-freemius.php:20909
738
  msgid "View paid features"
739
  msgstr "Vedi funzionalità a pagamento"
740
 
741
+ #: includes/class-freemius.php:21229
742
  msgid "Thank you so much for using %s and its add-ons!"
743
  msgstr "Grazie per utilizzare %se i suoi addon!"
744
 
745
+ #: includes/class-freemius.php:21230
746
  msgid "Thank you so much for using %s!"
747
  msgstr "Grazie per utilizzare %s!"
748
 
749
+ #: includes/class-freemius.php:21236
750
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
751
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
752
 
753
+ #: includes/class-freemius.php:21240
754
  msgid "Thank you so much for using our products!"
755
  msgstr "Grazie per utilizzare i nostri prodotti!"
756
 
757
+ #: includes/class-freemius.php:21241
758
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
759
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
760
 
761
+ #: includes/class-freemius.php:21260
762
  msgid "%s and its add-ons"
763
  msgstr "%se i suoi addon"
764
 
765
+ #: includes/class-freemius.php:21269
766
  msgid "Products"
767
  msgstr "Prodotti"
768
 
769
+ #: includes/class-freemius.php21276, templates/connect.php:272
770
  msgid "Yes"
771
  msgstr "Si"
772
 
773
+ #: includes/class-freemius.php21277, templates/connect.php:273
774
  msgid "send me security & feature updates, educational content and offers."
775
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
776
 
777
+ #: includes/class-freemius.php21278, templates/connect.php:278
778
  msgid "No"
779
  msgstr "No"
780
 
781
+ #: includes/class-freemius.php21280, templates/connect.php:280
782
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
783
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
784
 
785
+ #: includes/class-freemius.php:21290
786
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
787
  msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti"
788
 
789
+ #: includes/class-freemius.php21292, templates/connect.php:287
790
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
791
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
792
 
793
+ #: includes/class-freemius.php:21574
794
  msgid "License key is empty."
795
  msgstr "La chiave licenza è vuota."
796
 
812
  msgid "new version"
813
  msgstr "new version"
814
 
815
+ #: includes/class-fs-plugin-updater.php:305
816
  msgid "Important Upgrade Notice:"
817
  msgstr "Important Upgrade Notice:"
818
 
819
+ #: includes/class-fs-plugin-updater.php:1125
820
  msgid "Installing plugin: %s"
821
  msgstr "Installazione plugin: %s"
822
 
823
+ #: includes/class-fs-plugin-updater.php:1166
824
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
825
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
826
 
827
+ #: includes/class-fs-plugin-updater.php:1348
828
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
829
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
830
 
1143
  #: templates/account/partials/addon.php25,
1144
  #: templates/account/partials/site.php:298
1145
  msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1146
+ msgstr "%1s fermerà immediatamente ogni futuro pagamento ricorrente e la tua %s licenza scadrà il %s."
1147
 
1148
  #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1149
  #: templates/account/partials/addon.php26,
freemius/languages/freemius-ja_JP.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Odyssey <8bitodyssey+github@gmail.com>, 2016
@@ -24,772 +24,772 @@ msgstr ""
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
- #: includes/class-freemius.php:1602
28
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
29
  msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
30
 
31
- #: includes/class-freemius.php:1604
32
  msgid "Error"
33
  msgstr "エラー"
34
 
35
- #: includes/class-freemius.php:1925
36
  msgid "I found a better %s"
37
  msgstr "より良い %sを見つけました"
38
 
39
- #: includes/class-freemius.php:1927
40
  msgid "What's the %s's name?"
41
  msgstr "%sの名前は何ですか?"
42
 
43
- #: includes/class-freemius.php:1933
44
  msgid "It's a temporary %s. I'm just debugging an issue."
45
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
46
 
47
- #: includes/class-freemius.php:1935
48
  msgid "Deactivation"
49
  msgstr "無効化"
50
 
51
- #: includes/class-freemius.php:1936
52
  msgid "Theme Switch"
53
  msgstr "テーマ変更"
54
 
55
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
56
  msgid "Other"
57
  msgstr "その他"
58
 
59
- #: includes/class-freemius.php:1953
60
  msgid "I no longer need the %s"
61
  msgstr "%sはもう不要です"
62
 
63
- #: includes/class-freemius.php:1960
64
  msgid "I only needed the %s for a short period"
65
  msgstr "短期間だけ %sが 必要です。"
66
 
67
- #: includes/class-freemius.php:1966
68
  msgid "The %s broke my site"
69
  msgstr "%s の影響でサイトを崩れました"
70
 
71
- #: includes/class-freemius.php:1973
72
  msgid "The %s suddenly stopped working"
73
  msgstr "%s の動作が突然停止しました"
74
 
75
- #: includes/class-freemius.php:1983
76
  msgid "I can't pay for it anymore"
77
  msgstr "もう払うことができません"
78
 
79
- #: includes/class-freemius.php:1985
80
  msgid "What price would you feel comfortable paying?"
81
  msgstr " 支払ってもよいと思う価格はいくらですか?"
82
 
83
- #: includes/class-freemius.php:1991
84
  msgid "I don't like to share my information with you"
85
  msgstr "自分の情報を共有したくありません"
86
 
87
- #: includes/class-freemius.php:2012
88
  msgid "The %s didn't work"
89
  msgstr "%s が動作しませんでした"
90
 
91
- #: includes/class-freemius.php:2022
92
  msgid "I couldn't understand how to make it work"
93
  msgstr "どうしたら動作するか分かりませんでした。"
94
 
95
- #: includes/class-freemius.php:2030
96
  msgid "The %s is great, but I need specific feature that you don't support"
97
  msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
98
 
99
- #: includes/class-freemius.php:2032
100
  msgid "What feature?"
101
  msgstr "何の機能ですか?"
102
 
103
- #: includes/class-freemius.php:2036
104
  msgid "The %s is not working"
105
  msgstr "%s が動作していません"
106
 
107
- #: includes/class-freemius.php:2038
108
  msgid "Kindly share what didn't work so we can fix it for future users..."
109
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
110
 
111
- #: includes/class-freemius.php:2042
112
  msgid "It's not what I was looking for"
113
  msgstr "探していたものではありません"
114
 
115
- #: includes/class-freemius.php:2044
116
  msgid "What you've been looking for?"
117
  msgstr "探していたのは何ですか?"
118
 
119
- #: includes/class-freemius.php:2048
120
  msgid "The %s didn't work as expected"
121
  msgstr "%sが期待通りに動きませんでした "
122
 
123
- #: includes/class-freemius.php:2050
124
  msgid "What did you expect?"
125
  msgstr "何を期待していましたか?"
126
 
127
- #: includes/class-freemius.php2853, templates/debug.php:20
128
  msgid "Freemius Debug"
129
  msgstr "Freemius デバッグ"
130
 
131
- #: includes/class-freemius.php:3581
132
  msgid "I don't know what is cURL or how to install it, help me!"
133
  msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
134
 
135
- #: includes/class-freemius.php:3583
136
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
137
  msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
138
 
139
- #: includes/class-freemius.php:3590
140
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
141
  msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
142
 
143
- #: includes/class-freemius.php:3695
144
  msgid "Yes - do your thing"
145
  msgstr "はい - お構いなく"
146
 
147
- #: includes/class-freemius.php:3700
148
  msgid "No - just deactivate"
149
  msgstr "いいえ - すぐに無効化"
150
 
151
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
152
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
153
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
154
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
155
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
156
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
157
- #: includes/class-freemius.php18705, templates/add-ons.php:43
158
  msgctxt "exclamation"
159
  msgid "Oops"
160
  msgstr "おっと"
161
 
162
- #: includes/class-freemius.php:3814
163
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
164
  msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
165
 
166
- #: includes/class-freemius.php:4250
167
  msgctxt "addonX cannot run without pluginY"
168
  msgid "%s cannot run without %s."
169
  msgstr "%s は、%s が無いと実行することができません。"
170
 
171
- #: includes/class-freemius.php:4251
172
  msgctxt "addonX cannot run..."
173
  msgid "%s cannot run without the plugin."
174
  msgstr "%s は、プラグインが無いと実行することができません。"
175
 
176
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
177
- #: includes/class-freemius.php:17659
178
  msgid "Unexpected API error. Please contact the %s's author with the following error."
179
  msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
180
 
181
- #: includes/class-freemius.php:5006
182
  msgid "Premium %s version was successfully activated."
183
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
184
 
185
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
186
  msgctxt ""
187
  msgid "W00t"
188
  msgstr "やったー"
189
 
190
- #: includes/class-freemius.php:5033
191
  msgid "You have a %s license."
192
  msgstr "%s ライセンスを持っています。"
193
 
194
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
195
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
196
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
197
- #: includes/class-freemius.php:17413
198
  msgctxt "interjection expressing joy or exuberance"
199
  msgid "Yee-haw"
200
  msgstr "ヤッホー"
201
 
202
- #: includes/class-freemius.php:5301
203
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
204
  msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
205
 
206
- #: includes/class-freemius.php:5305
207
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
208
  msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
209
 
210
- #: includes/class-freemius.php5314, templates/add-ons.php103,
211
  #: templates/account/partials/addon.php:288
212
  msgid "More information about %s"
213
  msgstr "%s に関する詳細情報"
214
 
215
- #: includes/class-freemius.php:5315
216
  msgid "Purchase License"
217
  msgstr "ライセンスを購入"
218
 
219
- #: includes/class-freemius.php6230, templates/connect.php:163
220
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
221
  msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
222
 
223
- #: includes/class-freemius.php:6234
224
  msgid "start the trial"
225
  msgstr "トライアルを開始"
226
 
227
- #: includes/class-freemius.php6235, templates/connect.php:167
228
  msgid "complete the install"
229
  msgstr "インストールを完了"
230
 
231
- #: includes/class-freemius.php:6348
232
  msgid "You are just one step away - %s"
233
  msgstr "もうあとわずかです - %s"
234
 
235
- #: includes/class-freemius.php:6351
236
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
237
  msgid "Complete \"%s\" Activation Now"
238
  msgstr "すぐに \"%s\" 有効化を完了してください"
239
 
240
- #: includes/class-freemius.php:6429
241
  msgid "We made a few tweaks to the %s, %s"
242
  msgstr "プラグインを微調整します、 %s, %s"
243
 
244
- #: includes/class-freemius.php:6433
245
  msgid "Opt in to make \"%s\" better!"
246
  msgstr "Opt in to make \"%s\" better!"
247
 
248
- #: includes/class-freemius.php:6861
249
  msgid "The upgrade of %s was successfully completed."
250
  msgstr "%s のアップグレードが完了しました。"
251
 
252
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
253
- #: includes/class-fs-plugin-updater.php1077,
254
- #: includes/class-fs-plugin-updater.php1084,
255
  #: templates/auto-installation.php:32
256
  msgid "Add-On"
257
  msgstr "アドオン"
258
 
259
- #: includes/class-freemius.php8707, templates/debug.php359,
260
  #: templates/debug.php:520
261
  msgid "Plugin"
262
  msgstr "プラグイン"
263
 
264
- #: includes/class-freemius.php8708, templates/debug.php359,
265
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
266
  msgid "Theme"
267
  msgstr "テーマ"
268
 
269
- #: includes/class-freemius.php:11183
270
  msgid "Invalid site details collection."
271
  msgstr "Invalid site details collection."
272
 
273
- #: includes/class-freemius.php:11303
274
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
275
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
276
 
277
- #: includes/class-freemius.php:11305
278
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
279
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
280
 
281
- #: includes/class-freemius.php:11541
282
  msgid "Account is pending activation."
283
  msgstr "アカウントは有効化待ちです。"
284
 
285
- #: includes/class-freemius.php11653,
286
  #: templates/forms/premium-versions-upgrade-handler.php:47
287
  msgid "Buy a license now"
288
  msgstr "Buy a license now"
289
 
290
- #: includes/class-freemius.php11665,
291
  #: templates/forms/premium-versions-upgrade-handler.php:46
292
  msgid "Renew your license now"
293
  msgstr "Renew your license now"
294
 
295
- #: includes/class-freemius.php:11669
296
  msgid "%s to access version %s security & feature updates, and support."
297
  msgstr "%s to access version %s security & feature updates, and support."
298
 
299
- #: includes/class-freemius.php:14052
300
  msgid "%s activation was successfully completed."
301
  msgstr "%s の有効化が成功しました。"
302
 
303
- #: includes/class-freemius.php:14066
304
  msgid "Your account was successfully activated with the %s plan."
305
  msgstr "アカウントが %s プランで有効化できました。"
306
 
307
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
308
  msgid "Your trial has been successfully started."
309
  msgstr "トライアル版の利用を開始しました。"
310
 
311
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
312
- #: includes/class-freemius.php:14761
313
  msgid "Couldn't activate %s."
314
  msgstr "%s を有効化できません。"
315
 
316
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
317
- #: includes/class-freemius.php:14762
318
  msgid "Please contact us with the following message:"
319
  msgstr "以下のメッセージとともに私たちに連絡をください。"
320
 
321
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
322
  msgid "Upgrade"
323
  msgstr "アップグレード"
324
 
325
- #: includes/class-freemius.php:15117
326
  msgid "Start Trial"
327
  msgstr "トライアルを開始"
328
 
329
- #: includes/class-freemius.php:15119
330
  msgid "Pricing"
331
  msgstr "料金表"
332
 
333
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
334
  msgid "Affiliation"
335
  msgstr "アフィリエイト"
336
 
337
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
338
  #: templates/account.php150, templates/debug.php:324
339
  msgid "Account"
340
  msgstr "アカウント"
341
 
342
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
343
  #: includes/customizer/class-fs-customizer-support-section.php:60
344
  msgid "Contact Us"
345
  msgstr "連絡"
346
 
347
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
348
- #: includes/class-freemius.php19553, templates/account.php100,
349
  #: templates/account/partials/addon.php:41
350
  msgid "Add-Ons"
351
  msgstr "アドオン"
352
 
353
- #: includes/class-freemius.php:15274
354
  msgctxt "ASCII arrow left icon"
355
  msgid "&#x2190;"
356
  msgstr "&#x2190;"
357
 
358
- #: includes/class-freemius.php:15274
359
  msgctxt "ASCII arrow right icon"
360
  msgid "&#x27a4;"
361
  msgstr "&#x27a4;"
362
 
363
- #: includes/class-freemius.php15276, templates/pricing.php:97
364
  msgctxt "noun"
365
  msgid "Pricing"
366
  msgstr "料金表"
367
 
368
- #: includes/class-freemius.php15479,
369
  #: includes/customizer/class-fs-customizer-support-section.php:67
370
  msgid "Support Forum"
371
  msgstr "サポートフォーラム"
372
 
373
- #: includes/class-freemius.php:16265
374
  msgid "Your email has been successfully verified - you are AWESOME!"
375
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
376
 
377
- #: includes/class-freemius.php:16266
378
  msgctxt "a positive response"
379
  msgid "Right on"
380
  msgstr "そうだ"
381
 
382
- #: includes/class-freemius.php:16888
383
  msgid "Your %s Add-on plan was successfully upgraded."
384
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
385
 
386
- #: includes/class-freemius.php:16890
387
  msgid "%s Add-on was successfully purchased."
388
  msgstr "%s のアドオンの支払いが完了しました。"
389
 
390
- #: includes/class-freemius.php:16893
391
  msgid "Download the latest version"
392
  msgstr "最新版をダウンロード"
393
 
394
- #: includes/class-freemius.php:16965
395
  msgctxt "%1s - plugin title, %2s - API domain"
396
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
397
  msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
398
 
399
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
400
- #: includes/class-freemius.php:17461
401
  msgid "Error received from the server:"
402
  msgstr "サーバーからエラーを受信しました。"
403
 
404
- #: includes/class-freemius.php:16978
405
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
406
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
407
 
408
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
409
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
410
  msgctxt ""
411
  msgid "Hmm"
412
  msgstr "ふむ"
413
 
414
- #: includes/class-freemius.php:17173
415
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
416
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
417
 
418
- #: includes/class-freemius.php17174, templates/account.php102,
419
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
420
  msgctxt "trial period"
421
  msgid "Trial"
422
  msgstr "トライアル"
423
 
424
- #: includes/class-freemius.php:17179
425
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
426
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
427
 
428
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
429
  msgid "Please contact us here"
430
  msgstr "こちらで私たちに連絡をとってください。"
431
 
432
- #: includes/class-freemius.php:17193
433
  msgid "Your plan was successfully upgraded."
434
  msgstr "プランのアップグレードが成功しました。"
435
 
436
- #: includes/class-freemius.php:17211
437
  msgid "Your plan was successfully changed to %s."
438
  msgstr "プランの %s への変更が成功しました。"
439
 
440
- #: includes/class-freemius.php:17227
441
  msgid "Your license has expired. You can still continue using the free %s forever."
442
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
443
 
444
- #: includes/class-freemius.php:17229
445
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
446
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
447
 
448
- #: includes/class-freemius.php:17237
449
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
450
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
451
 
452
- #: includes/class-freemius.php:17250
453
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
454
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
455
 
456
- #: includes/class-freemius.php:17273
457
  msgid "Your free trial has expired. You can still continue using all our free features."
458
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
459
 
460
- #: includes/class-freemius.php:17275
461
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
462
  msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
463
 
464
- #: includes/class-freemius.php:17380
465
  msgid "It looks like the license could not be activated."
466
  msgstr "ライセンスの有効化ができませんでした。"
467
 
468
- #: includes/class-freemius.php:17410
469
  msgid "Your license was successfully activated."
470
  msgstr "ライセンスの有効化が成功しました。"
471
 
472
- #: includes/class-freemius.php:17436
473
  msgid "It looks like your site currently doesn't have an active license."
474
  msgstr "サイトは有効なライセンスを持っていないようです。"
475
 
476
- #: includes/class-freemius.php:17460
477
  msgid "It looks like the license deactivation failed."
478
  msgstr "ライセンスの無効化ができませんでした。"
479
 
480
- #: includes/class-freemius.php:17488
481
  msgid "Your license was successfully deactivated, you are back to the %s plan."
482
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
483
 
484
- #: includes/class-freemius.php:17489
485
  msgid "O.K"
486
  msgstr "O.K"
487
 
488
- #: includes/class-freemius.php:17542
489
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
490
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
491
 
492
- #: includes/class-freemius.php:17551
493
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
494
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
495
 
496
- #: includes/class-freemius.php:17593
497
  msgid "You are already running the %s in a trial mode."
498
  msgstr "すでに%sをトライアルモードで利用中です。"
499
 
500
- #: includes/class-freemius.php:17604
501
  msgid "You already utilized a trial before."
502
  msgstr "以前すでに試用版を利用しました。"
503
 
504
- #: includes/class-freemius.php:17618
505
  msgid "Plan %s do not exist, therefore, can't start a trial."
506
  msgstr "%s プランは存在しないため、試用を開始できません。"
507
 
508
- #: includes/class-freemius.php:17629
509
  msgid "Plan %s does not support a trial period."
510
  msgstr "%s プランにはトライアル期間はありません。"
511
 
512
- #: includes/class-freemius.php:17640
513
  msgid "None of the %s's plans supports a trial period."
514
  msgstr "%sのプランにはトライアル期間はありません。"
515
 
516
- #: includes/class-freemius.php:17690
517
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
518
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
519
 
520
- #: includes/class-freemius.php:17726
521
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
522
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
523
 
524
- #: includes/class-freemius.php:17745
525
  msgid "Your %s free trial was successfully cancelled."
526
  msgstr "%s のフリートライアルはキャンセルされました。"
527
 
528
- #: includes/class-freemius.php:18052
529
  msgid "Version %s was released."
530
  msgstr "バージョン %s をリリースしました。"
531
 
532
- #: includes/class-freemius.php:18052
533
  msgid "Please download %s."
534
  msgstr "%s をダウンロードしてください。"
535
 
536
- #: includes/class-freemius.php:18059
537
  msgid "the latest %s version here"
538
  msgstr "最新の %s バージョンはこちらです。"
539
 
540
- #: includes/class-freemius.php:18064
541
  msgid "New"
542
  msgstr "新規"
543
 
544
- #: includes/class-freemius.php:18069
545
  msgid "Seems like you got the latest release."
546
  msgstr "最新版を取得できました。"
547
 
548
- #: includes/class-freemius.php:18070
549
  msgid "You are all good!"
550
  msgstr "すべて完璧です!"
551
 
552
- #: includes/class-freemius.php:18338
553
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
554
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
555
 
556
- #: includes/class-freemius.php:18473
557
  msgid "Site successfully opted in."
558
  msgstr "サイトのオプトインに成功しました。"
559
 
560
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
561
  msgid "Awesome"
562
  msgstr "すごい!"
563
 
564
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
565
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
566
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
567
 
568
- #: includes/class-freemius.php:18491
569
  msgid "Thank you!"
570
  msgstr "ありがとうございます!"
571
 
572
- #: includes/class-freemius.php:18498
573
  msgid "We will no longer be sending any usage data of %s on %s to %s."
574
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
575
 
576
- #: includes/class-freemius.php:18627
577
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
578
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
579
 
580
- #: includes/class-freemius.php:18633
581
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
582
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
583
 
584
- #: includes/class-freemius.php:18638
585
  msgid "%s is the new owner of the account."
586
  msgstr "%s は新しいオーナーです。"
587
 
588
- #: includes/class-freemius.php:18640
589
  msgctxt "as congratulations"
590
  msgid "Congrats"
591
  msgstr "おめでとう"
592
 
593
- #: includes/class-freemius.php:18660
594
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
595
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
596
 
597
- #: includes/class-freemius.php:18661
598
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
599
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
600
 
601
- #: includes/class-freemius.php:18668
602
  msgid "Change Ownership"
603
  msgstr "オーナーを変更"
604
 
605
- #: includes/class-freemius.php:18676
606
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
607
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
608
 
609
- #: includes/class-freemius.php:18688
610
  msgid "Please provide your full name."
611
  msgstr "フルネームを入力してください。"
612
 
613
- #: includes/class-freemius.php:18693
614
  msgid "Your name was successfully updated."
615
  msgstr "名前のアップデートが成功しました。"
616
 
617
- #: includes/class-freemius.php:18754
618
  msgid "You have successfully updated your %s."
619
  msgstr "%s のアップデートが成功しました。"
620
 
621
- #: includes/class-freemius.php:18894
622
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
623
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
624
 
625
- #: includes/class-freemius.php:18895
626
  msgctxt "advance notice of something that will need attention."
627
  msgid "Heads up"
628
  msgstr "警告"
629
 
630
- #: includes/class-freemius.php:19325
631
  msgctxt "exclamation"
632
  msgid "Hey"
633
  msgstr "ヘイ"
634
 
635
- #: includes/class-freemius.php:19325
636
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
637
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
638
 
639
- #: includes/class-freemius.php:19333
640
  msgid "No commitment for %s days - cancel anytime!"
641
  msgstr "%s 日以内であればいつでもキャンセルできます。"
642
 
643
- #: includes/class-freemius.php:19334
644
  msgid "No credit card required"
645
  msgstr "クレジットカードは必要ありません。"
646
 
647
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
648
  msgctxt "call to action"
649
  msgid "Start free trial"
650
  msgstr "フリートライアルを開始"
651
 
652
- #: includes/class-freemius.php:19418
653
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
654
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
655
 
656
- #: includes/class-freemius.php:19427
657
  msgid "Learn more"
658
  msgstr "詳細はこちら"
659
 
660
- #: includes/class-freemius.php19577, templates/account.php406,
661
  #: templates/account.php509, templates/connect.php171,
662
  #: templates/connect.php421, templates/forms/license-activation.php24,
663
  #: templates/account/partials/addon.php:235
664
  msgid "Activate License"
665
  msgstr "ライセンスを有効化"
666
 
667
- #: includes/class-freemius.php19578, templates/account.php469,
668
  #: templates/account.php508, templates/account/partials/site.php:256
669
  msgid "Change License"
670
  msgstr "ライセンスを変更"
671
 
672
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
673
  msgid "Opt Out"
674
  msgstr "オプトアウト"
675
 
676
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
677
  #: templates/account/partials/site.php43,
678
  #: templates/account/partials/site.php:161
679
  msgid "Opt In"
680
  msgstr "オプトイン"
681
 
682
- #: includes/class-freemius.php:19891
683
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
684
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
685
 
686
- #: includes/class-freemius.php:19899
687
  msgid "Activate %s features"
688
  msgstr "Activate %s features"
689
 
690
- #: includes/class-freemius.php:19912
691
  msgid "Please follow these steps to complete the upgrade"
692
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
693
 
694
- #: includes/class-freemius.php:19916
695
  msgid "Download the latest %s version"
696
  msgstr "最新の %s をダウンロード"
697
 
698
- #: includes/class-freemius.php:19920
699
  msgid "Upload and activate the downloaded version"
700
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
701
 
702
- #: includes/class-freemius.php:19922
703
  msgid "How to upload and activate?"
704
  msgstr "アップロードと有効化の方法"
705
 
706
- #: includes/class-freemius.php:20056
707
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
708
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
709
 
710
- #: includes/class-freemius.php:20217
711
  msgid "Auto installation only works for opted-in users."
712
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
713
 
714
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
715
- #: includes/class-fs-plugin-updater.php1056,
716
- #: includes/class-fs-plugin-updater.php:1070
717
  msgid "Invalid module ID."
718
  msgstr "モジュール ID が不正です"
719
 
720
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
721
  msgid "Premium version already active."
722
  msgstr "プレミアムバージョンはすでに有効になっています。"
723
 
724
- #: includes/class-freemius.php:20243
725
  msgid "You do not have a valid license to access the premium version."
726
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
727
 
728
- #: includes/class-freemius.php:20250
729
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
730
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
731
 
732
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
733
  msgid "Premium add-on version already installed."
734
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
735
 
736
- #: includes/class-freemius.php:20613
737
  msgid "View paid features"
738
  msgstr "有料の機能を表示する"
739
 
740
- #: includes/class-freemius.php:20927
741
  msgid "Thank you so much for using %s and its add-ons!"
742
  msgstr "%sとアドオンのご利用ありがとうございます!"
743
 
744
- #: includes/class-freemius.php:20928
745
  msgid "Thank you so much for using %s!"
746
  msgstr "%sのご利用ありがとうございます!"
747
 
748
- #: includes/class-freemius.php:20934
749
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
750
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
751
 
752
- #: includes/class-freemius.php:20938
753
  msgid "Thank you so much for using our products!"
754
  msgstr "プロダクトのご利用ありがとうございます!"
755
 
756
- #: includes/class-freemius.php:20939
757
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
758
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
759
 
760
- #: includes/class-freemius.php:20958
761
  msgid "%s and its add-ons"
762
  msgstr "%sとそのアドオン"
763
 
764
- #: includes/class-freemius.php:20967
765
  msgid "Products"
766
  msgstr "プロダクト"
767
 
768
- #: includes/class-freemius.php20974, templates/connect.php:272
769
  msgid "Yes"
770
  msgstr "はい"
771
 
772
- #: includes/class-freemius.php20975, templates/connect.php:273
773
  msgid "send me security & feature updates, educational content and offers."
774
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
775
 
776
- #: includes/class-freemius.php20976, templates/connect.php:278
777
  msgid "No"
778
  msgstr "いいえ"
779
 
780
- #: includes/class-freemius.php20978, templates/connect.php:280
781
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
782
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
783
 
784
- #: includes/class-freemius.php:20988
785
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
786
  msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂"
787
 
788
- #: includes/class-freemius.php20990, templates/connect.php:287
789
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
790
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
791
 
792
- #: includes/class-freemius.php:21272
793
  msgid "License key is empty."
794
  msgstr "ライセンスキーが空です。"
795
 
@@ -811,19 +811,19 @@ msgstr "There is a %s of %s available."
811
  msgid "new version"
812
  msgstr "new version"
813
 
814
- #: includes/class-fs-plugin-updater.php:301
815
  msgid "Important Upgrade Notice:"
816
  msgstr "Important Upgrade Notice:"
817
 
818
- #: includes/class-fs-plugin-updater.php:1121
819
  msgid "Installing plugin: %s"
820
  msgstr "インストール中プラグイン: %s"
821
 
822
- #: includes/class-fs-plugin-updater.php:1162
823
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
824
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
825
 
826
- #: includes/class-fs-plugin-updater.php:1335
827
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
828
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
829
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Odyssey <8bitodyssey+github@gmail.com>, 2016
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
+ #: includes/class-freemius.php:1688
28
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
29
  msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
30
 
31
+ #: includes/class-freemius.php:1690
32
  msgid "Error"
33
  msgstr "エラー"
34
 
35
+ #: includes/class-freemius.php:2011
36
  msgid "I found a better %s"
37
  msgstr "より良い %sを見つけました"
38
 
39
+ #: includes/class-freemius.php:2013
40
  msgid "What's the %s's name?"
41
  msgstr "%sの名前は何ですか?"
42
 
43
+ #: includes/class-freemius.php:2019
44
  msgid "It's a temporary %s. I'm just debugging an issue."
45
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
46
 
47
+ #: includes/class-freemius.php:2021
48
  msgid "Deactivation"
49
  msgstr "無効化"
50
 
51
+ #: includes/class-freemius.php:2022
52
  msgid "Theme Switch"
53
  msgstr "テーマ変更"
54
 
55
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
56
  msgid "Other"
57
  msgstr "その他"
58
 
59
+ #: includes/class-freemius.php:2039
60
  msgid "I no longer need the %s"
61
  msgstr "%sはもう不要です"
62
 
63
+ #: includes/class-freemius.php:2046
64
  msgid "I only needed the %s for a short period"
65
  msgstr "短期間だけ %sが 必要です。"
66
 
67
+ #: includes/class-freemius.php:2052
68
  msgid "The %s broke my site"
69
  msgstr "%s の影響でサイトを崩れました"
70
 
71
+ #: includes/class-freemius.php:2059
72
  msgid "The %s suddenly stopped working"
73
  msgstr "%s の動作が突然停止しました"
74
 
75
+ #: includes/class-freemius.php:2069
76
  msgid "I can't pay for it anymore"
77
  msgstr "もう払うことができません"
78
 
79
+ #: includes/class-freemius.php:2071
80
  msgid "What price would you feel comfortable paying?"
81
  msgstr " 支払ってもよいと思う価格はいくらですか?"
82
 
83
+ #: includes/class-freemius.php:2077
84
  msgid "I don't like to share my information with you"
85
  msgstr "自分の情報を共有したくありません"
86
 
87
+ #: includes/class-freemius.php:2098
88
  msgid "The %s didn't work"
89
  msgstr "%s が動作しませんでした"
90
 
91
+ #: includes/class-freemius.php:2108
92
  msgid "I couldn't understand how to make it work"
93
  msgstr "どうしたら動作するか分かりませんでした。"
94
 
95
+ #: includes/class-freemius.php:2116
96
  msgid "The %s is great, but I need specific feature that you don't support"
97
  msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
98
 
99
+ #: includes/class-freemius.php:2118
100
  msgid "What feature?"
101
  msgstr "何の機能ですか?"
102
 
103
+ #: includes/class-freemius.php:2122
104
  msgid "The %s is not working"
105
  msgstr "%s が動作していません"
106
 
107
+ #: includes/class-freemius.php:2124
108
  msgid "Kindly share what didn't work so we can fix it for future users..."
109
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
110
 
111
+ #: includes/class-freemius.php:2128
112
  msgid "It's not what I was looking for"
113
  msgstr "探していたものではありません"
114
 
115
+ #: includes/class-freemius.php:2130
116
  msgid "What you've been looking for?"
117
  msgstr "探していたのは何ですか?"
118
 
119
+ #: includes/class-freemius.php:2134
120
  msgid "The %s didn't work as expected"
121
  msgstr "%sが期待通りに動きませんでした "
122
 
123
+ #: includes/class-freemius.php:2136
124
  msgid "What did you expect?"
125
  msgstr "何を期待していましたか?"
126
 
127
+ #: includes/class-freemius.php2942, templates/debug.php:20
128
  msgid "Freemius Debug"
129
  msgstr "Freemius デバッグ"
130
 
131
+ #: includes/class-freemius.php:3670
132
  msgid "I don't know what is cURL or how to install it, help me!"
133
  msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
134
 
135
+ #: includes/class-freemius.php:3672
136
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
137
  msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
138
 
139
+ #: includes/class-freemius.php:3679
140
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
141
  msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
142
 
143
+ #: includes/class-freemius.php:3784
144
  msgid "Yes - do your thing"
145
  msgstr "はい - お構いなく"
146
 
147
+ #: includes/class-freemius.php:3789
148
  msgid "No - just deactivate"
149
  msgstr "いいえ - すぐに無効化"
150
 
151
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
152
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
153
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
154
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
155
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
156
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
157
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
158
  msgctxt "exclamation"
159
  msgid "Oops"
160
  msgstr "おっと"
161
 
162
+ #: includes/class-freemius.php:3903
163
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
164
  msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
165
 
166
+ #: includes/class-freemius.php:4340
167
  msgctxt "addonX cannot run without pluginY"
168
  msgid "%s cannot run without %s."
169
  msgstr "%s は、%s が無いと実行することができません。"
170
 
171
+ #: includes/class-freemius.php:4341
172
  msgctxt "addonX cannot run..."
173
  msgid "%s cannot run without the plugin."
174
  msgstr "%s は、プラグインが無いと実行することができません。"
175
 
176
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
177
+ #: includes/class-freemius.php:17953
178
  msgid "Unexpected API error. Please contact the %s's author with the following error."
179
  msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
180
 
181
+ #: includes/class-freemius.php:5130
182
  msgid "Premium %s version was successfully activated."
183
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
184
 
185
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
186
  msgctxt ""
187
  msgid "W00t"
188
  msgstr "やったー"
189
 
190
+ #: includes/class-freemius.php:5157
191
  msgid "You have a %s license."
192
  msgstr "%s ライセンスを持っています。"
193
 
194
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
195
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
196
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
197
+ #: includes/class-freemius.php:17707
198
  msgctxt "interjection expressing joy or exuberance"
199
  msgid "Yee-haw"
200
  msgstr "ヤッホー"
201
 
202
+ #: includes/class-freemius.php:5425
203
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
204
  msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
205
 
206
+ #: includes/class-freemius.php:5429
207
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
208
  msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
209
 
210
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
211
  #: templates/account/partials/addon.php:288
212
  msgid "More information about %s"
213
  msgstr "%s に関する詳細情報"
214
 
215
+ #: includes/class-freemius.php:5439
216
  msgid "Purchase License"
217
  msgstr "ライセンスを購入"
218
 
219
+ #: includes/class-freemius.php6372, templates/connect.php:163
220
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
221
  msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
222
 
223
+ #: includes/class-freemius.php:6376
224
  msgid "start the trial"
225
  msgstr "トライアルを開始"
226
 
227
+ #: includes/class-freemius.php6377, templates/connect.php:167
228
  msgid "complete the install"
229
  msgstr "インストールを完了"
230
 
231
+ #: includes/class-freemius.php:6490
232
  msgid "You are just one step away - %s"
233
  msgstr "もうあとわずかです - %s"
234
 
235
+ #: includes/class-freemius.php:6493
236
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
237
  msgid "Complete \"%s\" Activation Now"
238
  msgstr "すぐに \"%s\" 有効化を完了してください"
239
 
240
+ #: includes/class-freemius.php:6571
241
  msgid "We made a few tweaks to the %s, %s"
242
  msgstr "プラグインを微調整します、 %s, %s"
243
 
244
+ #: includes/class-freemius.php:6575
245
  msgid "Opt in to make \"%s\" better!"
246
  msgstr "Opt in to make \"%s\" better!"
247
 
248
+ #: includes/class-freemius.php:7003
249
  msgid "The upgrade of %s was successfully completed."
250
  msgstr "%s のアップグレードが完了しました。"
251
 
252
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
253
+ #: includes/class-fs-plugin-updater.php1081,
254
+ #: includes/class-fs-plugin-updater.php1088,
255
  #: templates/auto-installation.php:32
256
  msgid "Add-On"
257
  msgstr "アドオン"
258
 
259
+ #: includes/class-freemius.php8927, templates/debug.php359,
260
  #: templates/debug.php:520
261
  msgid "Plugin"
262
  msgstr "プラグイン"
263
 
264
+ #: includes/class-freemius.php8928, templates/debug.php359,
265
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
266
  msgid "Theme"
267
  msgstr "テーマ"
268
 
269
+ #: includes/class-freemius.php:11412
270
  msgid "Invalid site details collection."
271
  msgstr "Invalid site details collection."
272
 
273
+ #: includes/class-freemius.php:11532
274
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
275
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
276
 
277
+ #: includes/class-freemius.php:11534
278
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
279
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
280
 
281
+ #: includes/class-freemius.php:11808
282
  msgid "Account is pending activation."
283
  msgstr "アカウントは有効化待ちです。"
284
 
285
+ #: includes/class-freemius.php11920,
286
  #: templates/forms/premium-versions-upgrade-handler.php:47
287
  msgid "Buy a license now"
288
  msgstr "Buy a license now"
289
 
290
+ #: includes/class-freemius.php11932,
291
  #: templates/forms/premium-versions-upgrade-handler.php:46
292
  msgid "Renew your license now"
293
  msgstr "Renew your license now"
294
 
295
+ #: includes/class-freemius.php:11936
296
  msgid "%s to access version %s security & feature updates, and support."
297
  msgstr "%s to access version %s security & feature updates, and support."
298
 
299
+ #: includes/class-freemius.php:14319
300
  msgid "%s activation was successfully completed."
301
  msgstr "%s の有効化が成功しました。"
302
 
303
+ #: includes/class-freemius.php:14333
304
  msgid "Your account was successfully activated with the %s plan."
305
  msgstr "アカウントが %s プランで有効化できました。"
306
 
307
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
308
  msgid "Your trial has been successfully started."
309
  msgstr "トライアル版の利用を開始しました。"
310
 
311
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
312
+ #: includes/class-freemius.php:15028
313
  msgid "Couldn't activate %s."
314
  msgstr "%s を有効化できません。"
315
 
316
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
317
+ #: includes/class-freemius.php:15029
318
  msgid "Please contact us with the following message:"
319
  msgstr "以下のメッセージとともに私たちに連絡をください。"
320
 
321
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
322
  msgid "Upgrade"
323
  msgstr "アップグレード"
324
 
325
+ #: includes/class-freemius.php:15384
326
  msgid "Start Trial"
327
  msgstr "トライアルを開始"
328
 
329
+ #: includes/class-freemius.php:15386
330
  msgid "Pricing"
331
  msgstr "料金表"
332
 
333
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
334
  msgid "Affiliation"
335
  msgstr "アフィリエイト"
336
 
337
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
338
  #: templates/account.php150, templates/debug.php:324
339
  msgid "Account"
340
  msgstr "アカウント"
341
 
342
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
343
  #: includes/customizer/class-fs-customizer-support-section.php:60
344
  msgid "Contact Us"
345
  msgstr "連絡"
346
 
347
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
348
+ #: includes/class-freemius.php19849, templates/account.php100,
349
  #: templates/account/partials/addon.php:41
350
  msgid "Add-Ons"
351
  msgstr "アドオン"
352
 
353
+ #: includes/class-freemius.php:15541
354
  msgctxt "ASCII arrow left icon"
355
  msgid "&#x2190;"
356
  msgstr "&#x2190;"
357
 
358
+ #: includes/class-freemius.php:15541
359
  msgctxt "ASCII arrow right icon"
360
  msgid "&#x27a4;"
361
  msgstr "&#x27a4;"
362
 
363
+ #: includes/class-freemius.php15543, templates/pricing.php:97
364
  msgctxt "noun"
365
  msgid "Pricing"
366
  msgstr "料金表"
367
 
368
+ #: includes/class-freemius.php15756,
369
  #: includes/customizer/class-fs-customizer-support-section.php:67
370
  msgid "Support Forum"
371
  msgstr "サポートフォーラム"
372
 
373
+ #: includes/class-freemius.php:16542
374
  msgid "Your email has been successfully verified - you are AWESOME!"
375
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
376
 
377
+ #: includes/class-freemius.php:16543
378
  msgctxt "a positive response"
379
  msgid "Right on"
380
  msgstr "そうだ"
381
 
382
+ #: includes/class-freemius.php:17168
383
  msgid "Your %s Add-on plan was successfully upgraded."
384
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
385
 
386
+ #: includes/class-freemius.php:17170
387
  msgid "%s Add-on was successfully purchased."
388
  msgstr "%s のアドオンの支払いが完了しました。"
389
 
390
+ #: includes/class-freemius.php:17173
391
  msgid "Download the latest version"
392
  msgstr "最新版をダウンロード"
393
 
394
+ #: includes/class-freemius.php:17259
395
  msgctxt "%1s - plugin title, %2s - API domain"
396
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
397
  msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
398
 
399
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
400
+ #: includes/class-freemius.php:17755
401
  msgid "Error received from the server:"
402
  msgstr "サーバーからエラーを受信しました。"
403
 
404
+ #: includes/class-freemius.php:17272
405
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
406
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
407
 
408
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
409
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
410
  msgctxt ""
411
  msgid "Hmm"
412
  msgstr "ふむ"
413
 
414
+ #: includes/class-freemius.php:17467
415
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
416
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
417
 
418
+ #: includes/class-freemius.php17468, templates/account.php102,
419
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
420
  msgctxt "trial period"
421
  msgid "Trial"
422
  msgstr "トライアル"
423
 
424
+ #: includes/class-freemius.php:17473
425
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
426
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
427
 
428
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
429
  msgid "Please contact us here"
430
  msgstr "こちらで私たちに連絡をとってください。"
431
 
432
+ #: includes/class-freemius.php:17487
433
  msgid "Your plan was successfully upgraded."
434
  msgstr "プランのアップグレードが成功しました。"
435
 
436
+ #: includes/class-freemius.php:17505
437
  msgid "Your plan was successfully changed to %s."
438
  msgstr "プランの %s への変更が成功しました。"
439
 
440
+ #: includes/class-freemius.php:17521
441
  msgid "Your license has expired. You can still continue using the free %s forever."
442
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
443
 
444
+ #: includes/class-freemius.php:17523
445
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
446
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
447
 
448
+ #: includes/class-freemius.php:17531
449
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
450
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
451
 
452
+ #: includes/class-freemius.php:17544
453
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
454
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
455
 
456
+ #: includes/class-freemius.php:17567
457
  msgid "Your free trial has expired. You can still continue using all our free features."
458
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
459
 
460
+ #: includes/class-freemius.php:17569
461
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
462
  msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
463
 
464
+ #: includes/class-freemius.php:17674
465
  msgid "It looks like the license could not be activated."
466
  msgstr "ライセンスの有効化ができませんでした。"
467
 
468
+ #: includes/class-freemius.php:17704
469
  msgid "Your license was successfully activated."
470
  msgstr "ライセンスの有効化が成功しました。"
471
 
472
+ #: includes/class-freemius.php:17730
473
  msgid "It looks like your site currently doesn't have an active license."
474
  msgstr "サイトは有効なライセンスを持っていないようです。"
475
 
476
+ #: includes/class-freemius.php:17754
477
  msgid "It looks like the license deactivation failed."
478
  msgstr "ライセンスの無効化ができませんでした。"
479
 
480
+ #: includes/class-freemius.php:17782
481
  msgid "Your license was successfully deactivated, you are back to the %s plan."
482
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
483
 
484
+ #: includes/class-freemius.php:17783
485
  msgid "O.K"
486
  msgstr "O.K"
487
 
488
+ #: includes/class-freemius.php:17836
489
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
490
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
491
 
492
+ #: includes/class-freemius.php:17845
493
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
494
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
495
 
496
+ #: includes/class-freemius.php:17887
497
  msgid "You are already running the %s in a trial mode."
498
  msgstr "すでに%sをトライアルモードで利用中です。"
499
 
500
+ #: includes/class-freemius.php:17898
501
  msgid "You already utilized a trial before."
502
  msgstr "以前すでに試用版を利用しました。"
503
 
504
+ #: includes/class-freemius.php:17912
505
  msgid "Plan %s do not exist, therefore, can't start a trial."
506
  msgstr "%s プランは存在しないため、試用を開始できません。"
507
 
508
+ #: includes/class-freemius.php:17923
509
  msgid "Plan %s does not support a trial period."
510
  msgstr "%s プランにはトライアル期間はありません。"
511
 
512
+ #: includes/class-freemius.php:17934
513
  msgid "None of the %s's plans supports a trial period."
514
  msgstr "%sのプランにはトライアル期間はありません。"
515
 
516
+ #: includes/class-freemius.php:17984
517
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
518
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
519
 
520
+ #: includes/class-freemius.php:18020
521
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
522
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
523
 
524
+ #: includes/class-freemius.php:18039
525
  msgid "Your %s free trial was successfully cancelled."
526
  msgstr "%s のフリートライアルはキャンセルされました。"
527
 
528
+ #: includes/class-freemius.php:18346
529
  msgid "Version %s was released."
530
  msgstr "バージョン %s をリリースしました。"
531
 
532
+ #: includes/class-freemius.php:18346
533
  msgid "Please download %s."
534
  msgstr "%s をダウンロードしてください。"
535
 
536
+ #: includes/class-freemius.php:18353
537
  msgid "the latest %s version here"
538
  msgstr "最新の %s バージョンはこちらです。"
539
 
540
+ #: includes/class-freemius.php:18358
541
  msgid "New"
542
  msgstr "新規"
543
 
544
+ #: includes/class-freemius.php:18363
545
  msgid "Seems like you got the latest release."
546
  msgstr "最新版を取得できました。"
547
 
548
+ #: includes/class-freemius.php:18364
549
  msgid "You are all good!"
550
  msgstr "すべて完璧です!"
551
 
552
+ #: includes/class-freemius.php:18632
553
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
554
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
555
 
556
+ #: includes/class-freemius.php:18769
557
  msgid "Site successfully opted in."
558
  msgstr "サイトのオプトインに成功しました。"
559
 
560
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
561
  msgid "Awesome"
562
  msgstr "すごい!"
563
 
564
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
565
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
566
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
567
 
568
+ #: includes/class-freemius.php:18787
569
  msgid "Thank you!"
570
  msgstr "ありがとうございます!"
571
 
572
+ #: includes/class-freemius.php:18794
573
  msgid "We will no longer be sending any usage data of %s on %s to %s."
574
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
575
 
576
+ #: includes/class-freemius.php:18923
577
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
578
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
579
 
580
+ #: includes/class-freemius.php:18929
581
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
582
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
583
 
584
+ #: includes/class-freemius.php:18934
585
  msgid "%s is the new owner of the account."
586
  msgstr "%s は新しいオーナーです。"
587
 
588
+ #: includes/class-freemius.php:18936
589
  msgctxt "as congratulations"
590
  msgid "Congrats"
591
  msgstr "おめでとう"
592
 
593
+ #: includes/class-freemius.php:18956
594
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
595
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
596
 
597
+ #: includes/class-freemius.php:18957
598
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
599
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
600
 
601
+ #: includes/class-freemius.php:18964
602
  msgid "Change Ownership"
603
  msgstr "オーナーを変更"
604
 
605
+ #: includes/class-freemius.php:18972
606
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
607
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
608
 
609
+ #: includes/class-freemius.php:18984
610
  msgid "Please provide your full name."
611
  msgstr "フルネームを入力してください。"
612
 
613
+ #: includes/class-freemius.php:18989
614
  msgid "Your name was successfully updated."
615
  msgstr "名前のアップデートが成功しました。"
616
 
617
+ #: includes/class-freemius.php:19050
618
  msgid "You have successfully updated your %s."
619
  msgstr "%s のアップデートが成功しました。"
620
 
621
+ #: includes/class-freemius.php:19190
622
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
623
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
624
 
625
+ #: includes/class-freemius.php:19191
626
  msgctxt "advance notice of something that will need attention."
627
  msgid "Heads up"
628
  msgstr "警告"
629
 
630
+ #: includes/class-freemius.php:19621
631
  msgctxt "exclamation"
632
  msgid "Hey"
633
  msgstr "ヘイ"
634
 
635
+ #: includes/class-freemius.php:19621
636
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
637
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
638
 
639
+ #: includes/class-freemius.php:19629
640
  msgid "No commitment for %s days - cancel anytime!"
641
  msgstr "%s 日以内であればいつでもキャンセルできます。"
642
 
643
+ #: includes/class-freemius.php:19630
644
  msgid "No credit card required"
645
  msgstr "クレジットカードは必要ありません。"
646
 
647
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
648
  msgctxt "call to action"
649
  msgid "Start free trial"
650
  msgstr "フリートライアルを開始"
651
 
652
+ #: includes/class-freemius.php:19714
653
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
654
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
655
 
656
+ #: includes/class-freemius.php:19723
657
  msgid "Learn more"
658
  msgstr "詳細はこちら"
659
 
660
+ #: includes/class-freemius.php19873, templates/account.php406,
661
  #: templates/account.php509, templates/connect.php171,
662
  #: templates/connect.php421, templates/forms/license-activation.php24,
663
  #: templates/account/partials/addon.php:235
664
  msgid "Activate License"
665
  msgstr "ライセンスを有効化"
666
 
667
+ #: includes/class-freemius.php19874, templates/account.php469,
668
  #: templates/account.php508, templates/account/partials/site.php:256
669
  msgid "Change License"
670
  msgstr "ライセンスを変更"
671
 
672
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
673
  msgid "Opt Out"
674
  msgstr "オプトアウト"
675
 
676
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
677
  #: templates/account/partials/site.php43,
678
  #: templates/account/partials/site.php:161
679
  msgid "Opt In"
680
  msgstr "オプトイン"
681
 
682
+ #: includes/class-freemius.php:20187
683
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
684
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
685
 
686
+ #: includes/class-freemius.php:20195
687
  msgid "Activate %s features"
688
  msgstr "Activate %s features"
689
 
690
+ #: includes/class-freemius.php:20208
691
  msgid "Please follow these steps to complete the upgrade"
692
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
693
 
694
+ #: includes/class-freemius.php:20212
695
  msgid "Download the latest %s version"
696
  msgstr "最新の %s をダウンロード"
697
 
698
+ #: includes/class-freemius.php:20216
699
  msgid "Upload and activate the downloaded version"
700
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
701
 
702
+ #: includes/class-freemius.php:20218
703
  msgid "How to upload and activate?"
704
  msgstr "アップロードと有効化の方法"
705
 
706
+ #: includes/class-freemius.php:20352
707
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
708
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
709
 
710
+ #: includes/class-freemius.php:20513
711
  msgid "Auto installation only works for opted-in users."
712
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
713
 
714
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
715
+ #: includes/class-fs-plugin-updater.php1060,
716
+ #: includes/class-fs-plugin-updater.php:1074
717
  msgid "Invalid module ID."
718
  msgstr "モジュール ID が不正です"
719
 
720
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
721
  msgid "Premium version already active."
722
  msgstr "プレミアムバージョンはすでに有効になっています。"
723
 
724
+ #: includes/class-freemius.php:20539
725
  msgid "You do not have a valid license to access the premium version."
726
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
727
 
728
+ #: includes/class-freemius.php:20546
729
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
730
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
731
 
732
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
733
  msgid "Premium add-on version already installed."
734
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
735
 
736
+ #: includes/class-freemius.php:20909
737
  msgid "View paid features"
738
  msgstr "有料の機能を表示する"
739
 
740
+ #: includes/class-freemius.php:21229
741
  msgid "Thank you so much for using %s and its add-ons!"
742
  msgstr "%sとアドオンのご利用ありがとうございます!"
743
 
744
+ #: includes/class-freemius.php:21230
745
  msgid "Thank you so much for using %s!"
746
  msgstr "%sのご利用ありがとうございます!"
747
 
748
+ #: includes/class-freemius.php:21236
749
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
750
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
751
 
752
+ #: includes/class-freemius.php:21240
753
  msgid "Thank you so much for using our products!"
754
  msgstr "プロダクトのご利用ありがとうございます!"
755
 
756
+ #: includes/class-freemius.php:21241
757
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
758
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
759
 
760
+ #: includes/class-freemius.php:21260
761
  msgid "%s and its add-ons"
762
  msgstr "%sとそのアドオン"
763
 
764
+ #: includes/class-freemius.php:21269
765
  msgid "Products"
766
  msgstr "プロダクト"
767
 
768
+ #: includes/class-freemius.php21276, templates/connect.php:272
769
  msgid "Yes"
770
  msgstr "はい"
771
 
772
+ #: includes/class-freemius.php21277, templates/connect.php:273
773
  msgid "send me security & feature updates, educational content and offers."
774
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
775
 
776
+ #: includes/class-freemius.php21278, templates/connect.php:278
777
  msgid "No"
778
  msgstr "いいえ"
779
 
780
+ #: includes/class-freemius.php21280, templates/connect.php:280
781
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
782
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
783
 
784
+ #: includes/class-freemius.php:21290
785
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
786
  msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂"
787
 
788
+ #: includes/class-freemius.php21292, templates/connect.php:287
789
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
790
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
791
 
792
+ #: includes/class-freemius.php:21574
793
  msgid "License key is empty."
794
  msgstr "ライセンスキーが空です。"
795
 
811
  msgid "new version"
812
  msgstr "new version"
813
 
814
+ #: includes/class-fs-plugin-updater.php:305
815
  msgid "Important Upgrade Notice:"
816
  msgstr "Important Upgrade Notice:"
817
 
818
+ #: includes/class-fs-plugin-updater.php:1125
819
  msgid "Installing plugin: %s"
820
  msgstr "インストール中プラグイン: %s"
821
 
822
+ #: includes/class-fs-plugin-updater.php:1166
823
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
824
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
825
 
826
+ #: includes/class-fs-plugin-updater.php:1348
827
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
828
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
829
 
freemius/languages/freemius-nl_NL.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Benny Vluggen <benny@prodevign.com>, 2017-2018
@@ -22,772 +22,772 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php:1602
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout."
28
 
29
- #: includes/class-freemius.php:1604
30
  msgid "Error"
31
  msgstr "Fout"
32
 
33
- #: includes/class-freemius.php:1925
34
  msgid "I found a better %s"
35
  msgstr "Ik vond een beter %s"
36
 
37
- #: includes/class-freemius.php:1927
38
  msgid "What's the %s's name?"
39
  msgstr "Wat is de naam van het %s?"
40
 
41
- #: includes/class-freemius.php:1933
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
44
 
45
- #: includes/class-freemius.php:1935
46
  msgid "Deactivation"
47
  msgstr "Deactivatie"
48
 
49
- #: includes/class-freemius.php:1936
50
  msgid "Theme Switch"
51
  msgstr "Thema Wissel"
52
 
53
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "Overige"
56
 
57
- #: includes/class-freemius.php:1953
58
  msgid "I no longer need the %s"
59
  msgstr "Ik heb de %s niet meer nodig "
60
 
61
- #: includes/class-freemius.php:1960
62
  msgid "I only needed the %s for a short period"
63
  msgstr "Ik had de %s alleen nodig voor een korte periode."
64
 
65
- #: includes/class-freemius.php:1966
66
  msgid "The %s broke my site"
67
  msgstr "De %s maakte mijn site onbruikbaar"
68
 
69
- #: includes/class-freemius.php:1973
70
  msgid "The %s suddenly stopped working"
71
  msgstr "De %s werkte opeens niet meer"
72
 
73
- #: includes/class-freemius.php:1983
74
  msgid "I can't pay for it anymore"
75
  msgstr "Ik kan er niet langer meer voor betalen"
76
 
77
- #: includes/class-freemius.php:1985
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "Welke bedrag zou je ervoor over hebben?"
80
 
81
- #: includes/class-freemius.php:1991
82
  msgid "I don't like to share my information with you"
83
  msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
84
 
85
- #: includes/class-freemius.php:2012
86
  msgid "The %s didn't work"
87
  msgstr "De %s werkte niet"
88
 
89
- #: includes/class-freemius.php:2022
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
92
 
93
- #: includes/class-freemius.php:2030
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
96
 
97
- #: includes/class-freemius.php:2032
98
  msgid "What feature?"
99
  msgstr "Welke feature?"
100
 
101
- #: includes/class-freemius.php:2036
102
  msgid "The %s is not working"
103
  msgstr "De %s werkt niet"
104
 
105
- #: includes/class-freemius.php:2038
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
108
 
109
- #: includes/class-freemius.php:2042
110
  msgid "It's not what I was looking for"
111
  msgstr "Het is niet waarna ik opzoek was"
112
 
113
- #: includes/class-freemius.php:2044
114
  msgid "What you've been looking for?"
115
  msgstr "Waar was je naar op zoek?"
116
 
117
- #: includes/class-freemius.php:2048
118
  msgid "The %s didn't work as expected"
119
  msgstr "De %s werkte niet zoals verwacht"
120
 
121
- #: includes/class-freemius.php:2050
122
  msgid "What did you expect?"
123
  msgstr "Wat had je verwacht?"
124
 
125
- #: includes/class-freemius.php2853, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "Freemius Debug"
128
 
129
- #: includes/class-freemius.php:3581
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
132
 
133
- #: includes/class-freemius.php:3583
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "We doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. "
136
 
137
- #: includes/class-freemius.php:3590
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw."
140
 
141
- #: includes/class-freemius.php:3695
142
  msgid "Yes - do your thing"
143
  msgstr "Ja, ga je gang"
144
 
145
- #: includes/class-freemius.php:3700
146
  msgid "No - just deactivate"
147
  msgstr "Nee - alleen deactiveren"
148
 
149
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
- #: includes/class-freemius.php18705, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "Oeps"
159
 
160
- #: includes/class-freemius.php:3814
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld."
163
 
164
- #: includes/class-freemius.php:4250
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s werkt niet zonder %s."
168
 
169
- #: includes/class-freemius.php:4251
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "%s werkt niet zonder de plug-in."
173
 
174
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
- #: includes/class-freemius.php:17659
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
178
 
179
- #: includes/class-freemius.php:5006
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s versie is succesvol geactiveerd."
182
 
183
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
- #: includes/class-freemius.php:5033
189
  msgid "You have a %s license."
190
  msgstr "Je hebt een %s licentie"
191
 
192
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
- #: includes/class-freemius.php:17413
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "Hoera"
199
 
200
- #: includes/class-freemius.php:5301
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen."
203
 
204
- #: includes/class-freemius.php:5305
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
207
 
208
- #: includes/class-freemius.php5314, templates/add-ons.php103,
209
  #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "Meer informatie over %s"
212
 
213
- #: includes/class-freemius.php:5315
214
  msgid "Purchase License"
215
  msgstr "Licentie Kopen"
216
 
217
- #: includes/class-freemius.php6230, templates/connect.php:163
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s."
220
 
221
- #: includes/class-freemius.php:6234
222
  msgid "start the trial"
223
  msgstr "start de proefperiode"
224
 
225
- #: includes/class-freemius.php6235, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "voltooi de installatie"
228
 
229
- #: includes/class-freemius.php:6348
230
  msgid "You are just one step away - %s"
231
  msgstr "Je bent slechts een stap verwijderd - %s"
232
 
233
- #: includes/class-freemius.php:6351
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "Voltooi \"%s\" Activatie Nu"
237
 
238
- #: includes/class-freemius.php:6429
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
241
 
242
- #: includes/class-freemius.php:6433
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt-in om \"%s\" te verbeteren!"
245
 
246
- #: includes/class-freemius.php:6861
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "De upgrade van %s is succesvol voltooid."
249
 
250
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
- #: includes/class-fs-plugin-updater.php1077,
252
- #: includes/class-fs-plugin-updater.php1084,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Uitbreiding"
256
 
257
- #: includes/class-freemius.php8707, templates/debug.php359,
258
  #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "Plug-in"
261
 
262
- #: includes/class-freemius.php8708, templates/debug.php359,
263
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
  msgid "Theme"
265
  msgstr "Thema"
266
 
267
- #: includes/class-freemius.php:11183
268
  msgid "Invalid site details collection."
269
  msgstr "Ongeldige verzameling van Site Details."
270
 
271
- #: includes/class-freemius.php:11303
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
274
 
275
- #: includes/class-freemius.php:11305
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
278
 
279
- #: includes/class-freemius.php:11541
280
  msgid "Account is pending activation."
281
  msgstr "Account wacht op activatie."
282
 
283
- #: includes/class-freemius.php11653,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Koop nu een licentie"
287
 
288
- #: includes/class-freemius.php11665,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Vernieuw je licentie nu"
292
 
293
- #: includes/class-freemius.php:11669
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
296
 
297
- #: includes/class-freemius.php:14052
298
  msgid "%s activation was successfully completed."
299
  msgstr "%s activatie is succesvol voltooid."
300
 
301
- #: includes/class-freemius.php:14066
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "Je account is succesvol geactiveerd met het %s plan."
304
 
305
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
  msgid "Your trial has been successfully started."
307
  msgstr "U proefperiode is met succes gestart."
308
 
309
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
- #: includes/class-freemius.php:14761
311
  msgid "Couldn't activate %s."
312
  msgstr "Kon %s niet activeren."
313
 
314
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
- #: includes/class-freemius.php:14762
316
  msgid "Please contact us with the following message:"
317
  msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
318
 
319
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
  msgid "Upgrade"
321
  msgstr "Upgrade"
322
 
323
- #: includes/class-freemius.php:15117
324
  msgid "Start Trial"
325
  msgstr "Start Proefperiode"
326
 
327
- #: includes/class-freemius.php:15119
328
  msgid "Pricing"
329
  msgstr "Prijzen"
330
 
331
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
  msgid "Affiliation"
333
  msgstr "Affiliatie"
334
 
335
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
  #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "Account"
339
 
340
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "Contacteer Ons"
344
 
345
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
- #: includes/class-freemius.php19553, templates/account.php100,
347
  #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Uitbreidingen"
350
 
351
- #: includes/class-freemius.php:15274
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
- #: includes/class-freemius.php:15274
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
- #: includes/class-freemius.php15276, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "Prijzen"
365
 
366
- #: includes/class-freemius.php15479,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "Supportforum"
370
 
371
- #: includes/class-freemius.php:16265
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
374
 
375
- #: includes/class-freemius.php:16266
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "Toppie"
379
 
380
- #: includes/class-freemius.php:16888
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
383
 
384
- #: includes/class-freemius.php:16890
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "%s Add-on werd succesvol aangekocht."
387
 
388
- #: includes/class-freemius.php:16893
389
  msgid "Download the latest version"
390
  msgstr "Download de meeste recente versie"
391
 
392
- #: includes/class-freemius.php:16965
393
  msgctxt "%1s - plugin title, %2s - API domain"
394
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
  msgstr "Je server blokkeert de toegang tot de Freemius API, welke cruciaal is voor %1s synchronisatie. Neem alsjeblieft contact op met je host om %2s te whitelisten."
396
 
397
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
- #: includes/class-freemius.php:17461
399
  msgid "Error received from the server:"
400
  msgstr "Foutmelding ontvangen van de server:"
401
 
402
- #: includes/class-freemius.php:16978
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
405
 
406
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "Hmm"
411
 
412
- #: includes/class-freemius.php:17173
413
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
  msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry."
415
 
416
- #: includes/class-freemius.php17174, templates/account.php102,
417
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "Proefperiode"
421
 
422
- #: includes/class-freemius.php:17179
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
425
 
426
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
  msgid "Please contact us here"
428
  msgstr "Neem hier a.u.b. contact met ons op"
429
 
430
- #: includes/class-freemius.php:17193
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "Je plan is succesvol geüpgraded."
433
 
434
- #: includes/class-freemius.php:17211
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "Je plan is succesvol veranderd naar %s."
437
 
438
- #: includes/class-freemius.php:17227
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
441
 
442
- #: includes/class-freemius.php:17229
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
445
 
446
- #: includes/class-freemius.php:17237
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
449
 
450
- #: includes/class-freemius.php:17250
451
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
  msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen."
453
 
454
- #: includes/class-freemius.php:17273
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
457
 
458
- #: includes/class-freemius.php:17275
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
461
 
462
- #: includes/class-freemius.php:17380
463
  msgid "It looks like the license could not be activated."
464
  msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
465
 
466
- #: includes/class-freemius.php:17410
467
  msgid "Your license was successfully activated."
468
  msgstr "Je licentie is succesvol geactiveerd."
469
 
470
- #: includes/class-freemius.php:17436
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
473
 
474
- #: includes/class-freemius.php:17460
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
477
 
478
- #: includes/class-freemius.php:17488
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
481
 
482
- #: includes/class-freemius.php:17489
483
  msgid "O.K"
484
  msgstr "Oké"
485
 
486
- #: includes/class-freemius.php:17542
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens."
489
 
490
- #: includes/class-freemius.php:17551
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
493
 
494
- #: includes/class-freemius.php:17593
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "Je draait de %s al in proefmodus."
497
 
498
- #: includes/class-freemius.php:17604
499
  msgid "You already utilized a trial before."
500
  msgstr "U heeft reeds een proefperiode gebruikt."
501
 
502
- #: includes/class-freemius.php:17618
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
505
 
506
- #: includes/class-freemius.php:17629
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "Plan %s ondersteunt geen proefperiode."
509
 
510
- #: includes/class-freemius.php:17640
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "Geen van de %s plannen ondersteunt een proefperiode."
513
 
514
- #: includes/class-freemius.php:17690
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
517
 
518
- #: includes/class-freemius.php:17726
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens."
521
 
522
- #: includes/class-freemius.php:17745
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
525
 
526
- #: includes/class-freemius.php:18052
527
  msgid "Version %s was released."
528
  msgstr "Versie %s is vrijgegeven."
529
 
530
- #: includes/class-freemius.php:18052
531
  msgid "Please download %s."
532
  msgstr "A.u.b. %s downloaden."
533
 
534
- #: includes/class-freemius.php:18059
535
  msgid "the latest %s version here"
536
  msgstr "de meest recente %s versie hier"
537
 
538
- #: includes/class-freemius.php:18064
539
  msgid "New"
540
  msgstr "Nieuw"
541
 
542
- #: includes/class-freemius.php:18069
543
  msgid "Seems like you got the latest release."
544
  msgstr "Het lijkt erop dat je de meest recente versie hebt."
545
 
546
- #: includes/class-freemius.php:18070
547
  msgid "You are all good!"
548
  msgstr "Alles is goed!"
549
 
550
- #: includes/class-freemius.php:18338
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
553
 
554
- #: includes/class-freemius.php:18473
555
  msgid "Site successfully opted in."
556
  msgstr "Site opt-in geslaagd. "
557
 
558
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
  msgid "Awesome"
560
  msgstr "Geweldig"
561
 
562
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
565
 
566
- #: includes/class-freemius.php:18491
567
  msgid "Thank you!"
568
  msgstr "Bedankt!"
569
 
570
- #: includes/class-freemius.php:18498
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
573
 
574
- #: includes/class-freemius.php:18627
575
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
  msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox."
577
 
578
- #: includes/class-freemius.php:18633
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
581
 
582
- #: includes/class-freemius.php:18638
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s is de nieuwe eigenaar van het account."
585
 
586
- #: includes/class-freemius.php:18640
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "Gefeliciteerd"
590
 
591
- #: includes/class-freemius.php:18660
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
594
 
595
- #: includes/class-freemius.php:18661
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
598
 
599
- #: includes/class-freemius.php:18668
600
  msgid "Change Ownership"
601
  msgstr "Eigendom Overdragen"
602
 
603
- #: includes/class-freemius.php:18676
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
606
 
607
- #: includes/class-freemius.php:18688
608
  msgid "Please provide your full name."
609
  msgstr "Geef alsjeblieft je volledige naam."
610
 
611
- #: includes/class-freemius.php:18693
612
  msgid "Your name was successfully updated."
613
  msgstr "Je naam is succesvol bijgewerkt."
614
 
615
- #: includes/class-freemius.php:18754
616
  msgid "You have successfully updated your %s."
617
  msgstr "Je hebt je %s succesvol geüpdatet."
618
 
619
- #: includes/class-freemius.php:18894
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
622
 
623
- #: includes/class-freemius.php:18895
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "Aankondiging"
627
 
628
- #: includes/class-freemius.php:19325
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "Hoi"
632
 
633
- #: includes/class-freemius.php:19325
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
636
 
637
- #: includes/class-freemius.php:19333
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
640
 
641
- #: includes/class-freemius.php:19334
642
  msgid "No credit card required"
643
  msgstr "Geen creditcard nodig"
644
 
645
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "Start gratis proefperidoe"
649
 
650
- #: includes/class-freemius.php:19418
651
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
  msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
653
 
654
- #: includes/class-freemius.php:19427
655
  msgid "Learn more"
656
  msgstr "Lees meer"
657
 
658
- #: includes/class-freemius.php19577, templates/account.php406,
659
  #: templates/account.php509, templates/connect.php171,
660
  #: templates/connect.php421, templates/forms/license-activation.php24,
661
  #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "Activeer Licentie"
664
 
665
- #: includes/class-freemius.php19578, templates/account.php469,
666
  #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "Verander Licentie"
669
 
670
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Opt Out"
673
 
674
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Opt In"
679
 
680
- #: includes/class-freemius.php:19891
681
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
  msgstr "De betaalde versie van%1s is reeds geïnstalleerd. Activeer deze alsjeblieft om te kunnen profiteren van de %2s features. %3s "
683
 
684
- #: includes/class-freemius.php:19899
685
  msgid "Activate %s features"
686
  msgstr "Activeer %s features."
687
 
688
- #: includes/class-freemius.php:19912
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
691
 
692
- #: includes/class-freemius.php:19916
693
  msgid "Download the latest %s version"
694
  msgstr "Download de meeste recente %s versie"
695
 
696
- #: includes/class-freemius.php:19920
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "Upload en activeer de gedownloade versie"
699
 
700
- #: includes/class-freemius.php:19922
701
  msgid "How to upload and activate?"
702
  msgstr "Hoe te uploaden en activeren?"
703
 
704
- #: includes/class-freemius.php:20056
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
707
 
708
- #: includes/class-freemius.php:20217
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
711
 
712
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
713
- #: includes/class-fs-plugin-updater.php1056,
714
- #: includes/class-fs-plugin-updater.php:1070
715
  msgid "Invalid module ID."
716
  msgstr "Ongeldige Module-ID"
717
 
718
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
719
  msgid "Premium version already active."
720
  msgstr "Premium versie reeds actief."
721
 
722
- #: includes/class-freemius.php:20243
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "Je hebt geen geldige licentie voor de premium versie."
725
 
726
- #: includes/class-freemius.php:20250
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
729
 
730
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium add-on versie is reeds geïnstalleerd."
733
 
734
- #: includes/class-freemius.php:20613
735
  msgid "View paid features"
736
  msgstr "Bekijk betaalde kenmerken"
737
 
738
- #: includes/class-freemius.php:20927
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
741
 
742
- #: includes/class-freemius.php:20928
743
  msgid "Thank you so much for using %s!"
744
  msgstr "Hartelijk bedankt voor het gebruik van %s!"
745
 
746
- #: includes/class-freemius.php:20934
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
749
 
750
- #: includes/class-freemius.php:20938
751
  msgid "Thank you so much for using our products!"
752
  msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
753
 
754
- #: includes/class-freemius.php:20939
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
757
 
758
- #: includes/class-freemius.php:20958
759
  msgid "%s and its add-ons"
760
  msgstr "%sen bijbehorende uitbreidingen"
761
 
762
- #: includes/class-freemius.php:20967
763
  msgid "Products"
764
  msgstr "Producten"
765
 
766
- #: includes/class-freemius.php20974, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "Ja"
769
 
770
- #: includes/class-freemius.php20975, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
773
 
774
- #: includes/class-freemius.php20976, templates/connect.php:278
775
  msgid "No"
776
  msgstr "Nee"
777
 
778
- #: includes/class-freemius.php20978, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
781
 
782
- #: includes/class-freemius.php:20988
783
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
  msgstr "Naar aanleiding van de nieuwe %sEU General Data Protection Regulation (GDPR) / Algemene verordening gegevensbescherming (AVG) %s regelgeving is het verplicht dat je je expliciete toestemming geeft, nogmaals, bevestigend dat je 'aan boord' bent 🙂"
785
 
786
- #: includes/class-freemius.php20990, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:"
789
 
790
- #: includes/class-freemius.php:21272
791
  msgid "License key is empty."
792
  msgstr "Licentiesleutel is leeg."
793
 
@@ -809,19 +809,19 @@ msgstr "Er is een %s van %s beschikbaar."
809
  msgid "new version"
810
  msgstr "nieuwe versie"
811
 
812
- #: includes/class-fs-plugin-updater.php:301
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Belangrijke Upgrade Mededeling:"
815
 
816
- #: includes/class-fs-plugin-updater.php:1121
817
  msgid "Installing plugin: %s"
818
  msgstr "Installeren van plug-in: %s"
819
 
820
- #: includes/class-fs-plugin-updater.php:1162
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
823
 
824
- #: includes/class-fs-plugin-updater.php:1335
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
827
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Benny Vluggen <benny@prodevign.com>, 2017-2018
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php:1688
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout."
28
 
29
+ #: includes/class-freemius.php:1690
30
  msgid "Error"
31
  msgstr "Fout"
32
 
33
+ #: includes/class-freemius.php:2011
34
  msgid "I found a better %s"
35
  msgstr "Ik vond een beter %s"
36
 
37
+ #: includes/class-freemius.php:2013
38
  msgid "What's the %s's name?"
39
  msgstr "Wat is de naam van het %s?"
40
 
41
+ #: includes/class-freemius.php:2019
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
44
 
45
+ #: includes/class-freemius.php:2021
46
  msgid "Deactivation"
47
  msgstr "Deactivatie"
48
 
49
+ #: includes/class-freemius.php:2022
50
  msgid "Theme Switch"
51
  msgstr "Thema Wissel"
52
 
53
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "Overige"
56
 
57
+ #: includes/class-freemius.php:2039
58
  msgid "I no longer need the %s"
59
  msgstr "Ik heb de %s niet meer nodig "
60
 
61
+ #: includes/class-freemius.php:2046
62
  msgid "I only needed the %s for a short period"
63
  msgstr "Ik had de %s alleen nodig voor een korte periode."
64
 
65
+ #: includes/class-freemius.php:2052
66
  msgid "The %s broke my site"
67
  msgstr "De %s maakte mijn site onbruikbaar"
68
 
69
+ #: includes/class-freemius.php:2059
70
  msgid "The %s suddenly stopped working"
71
  msgstr "De %s werkte opeens niet meer"
72
 
73
+ #: includes/class-freemius.php:2069
74
  msgid "I can't pay for it anymore"
75
  msgstr "Ik kan er niet langer meer voor betalen"
76
 
77
+ #: includes/class-freemius.php:2071
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "Welke bedrag zou je ervoor over hebben?"
80
 
81
+ #: includes/class-freemius.php:2077
82
  msgid "I don't like to share my information with you"
83
  msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
84
 
85
+ #: includes/class-freemius.php:2098
86
  msgid "The %s didn't work"
87
  msgstr "De %s werkte niet"
88
 
89
+ #: includes/class-freemius.php:2108
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
92
 
93
+ #: includes/class-freemius.php:2116
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
96
 
97
+ #: includes/class-freemius.php:2118
98
  msgid "What feature?"
99
  msgstr "Welke feature?"
100
 
101
+ #: includes/class-freemius.php:2122
102
  msgid "The %s is not working"
103
  msgstr "De %s werkt niet"
104
 
105
+ #: includes/class-freemius.php:2124
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
108
 
109
+ #: includes/class-freemius.php:2128
110
  msgid "It's not what I was looking for"
111
  msgstr "Het is niet waarna ik opzoek was"
112
 
113
+ #: includes/class-freemius.php:2130
114
  msgid "What you've been looking for?"
115
  msgstr "Waar was je naar op zoek?"
116
 
117
+ #: includes/class-freemius.php:2134
118
  msgid "The %s didn't work as expected"
119
  msgstr "De %s werkte niet zoals verwacht"
120
 
121
+ #: includes/class-freemius.php:2136
122
  msgid "What did you expect?"
123
  msgstr "Wat had je verwacht?"
124
 
125
+ #: includes/class-freemius.php2942, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "Freemius Debug"
128
 
129
+ #: includes/class-freemius.php:3670
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
132
 
133
+ #: includes/class-freemius.php:3672
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "We doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. "
136
 
137
+ #: includes/class-freemius.php:3679
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw."
140
 
141
+ #: includes/class-freemius.php:3784
142
  msgid "Yes - do your thing"
143
  msgstr "Ja, ga je gang"
144
 
145
+ #: includes/class-freemius.php:3789
146
  msgid "No - just deactivate"
147
  msgstr "Nee - alleen deactiveren"
148
 
149
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
150
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
151
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
152
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
153
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
154
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
155
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "Oeps"
159
 
160
+ #: includes/class-freemius.php:3903
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld."
163
 
164
+ #: includes/class-freemius.php:4340
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s werkt niet zonder %s."
168
 
169
+ #: includes/class-freemius.php:4341
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "%s werkt niet zonder de plug-in."
173
 
174
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
175
+ #: includes/class-freemius.php:17953
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
178
 
179
+ #: includes/class-freemius.php:5130
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s versie is succesvol geactiveerd."
182
 
183
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
+ #: includes/class-freemius.php:5157
189
  msgid "You have a %s license."
190
  msgstr "Je hebt een %s licentie"
191
 
192
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
193
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
194
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
195
+ #: includes/class-freemius.php:17707
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "Hoera"
199
 
200
+ #: includes/class-freemius.php:5425
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen."
203
 
204
+ #: includes/class-freemius.php:5429
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
207
 
208
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
209
  #: templates/account/partials/addon.php:288
210
  msgid "More information about %s"
211
  msgstr "Meer informatie over %s"
212
 
213
+ #: includes/class-freemius.php:5439
214
  msgid "Purchase License"
215
  msgstr "Licentie Kopen"
216
 
217
+ #: includes/class-freemius.php6372, templates/connect.php:163
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s."
220
 
221
+ #: includes/class-freemius.php:6376
222
  msgid "start the trial"
223
  msgstr "start de proefperiode"
224
 
225
+ #: includes/class-freemius.php6377, templates/connect.php:167
226
  msgid "complete the install"
227
  msgstr "voltooi de installatie"
228
 
229
+ #: includes/class-freemius.php:6490
230
  msgid "You are just one step away - %s"
231
  msgstr "Je bent slechts een stap verwijderd - %s"
232
 
233
+ #: includes/class-freemius.php:6493
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "Voltooi \"%s\" Activatie Nu"
237
 
238
+ #: includes/class-freemius.php:6571
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
241
 
242
+ #: includes/class-freemius.php:6575
243
  msgid "Opt in to make \"%s\" better!"
244
  msgstr "Opt-in om \"%s\" te verbeteren!"
245
 
246
+ #: includes/class-freemius.php:7003
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "De upgrade van %s is succesvol voltooid."
249
 
250
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
251
+ #: includes/class-fs-plugin-updater.php1081,
252
+ #: includes/class-fs-plugin-updater.php1088,
253
  #: templates/auto-installation.php:32
254
  msgid "Add-On"
255
  msgstr "Uitbreiding"
256
 
257
+ #: includes/class-freemius.php8927, templates/debug.php359,
258
  #: templates/debug.php:520
259
  msgid "Plugin"
260
  msgstr "Plug-in"
261
 
262
+ #: includes/class-freemius.php8928, templates/debug.php359,
263
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
  msgid "Theme"
265
  msgstr "Thema"
266
 
267
+ #: includes/class-freemius.php:11412
268
  msgid "Invalid site details collection."
269
  msgstr "Ongeldige verzameling van Site Details."
270
 
271
+ #: includes/class-freemius.php:11532
272
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
  msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
274
 
275
+ #: includes/class-freemius.php:11534
276
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
  msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
278
 
279
+ #: includes/class-freemius.php:11808
280
  msgid "Account is pending activation."
281
  msgstr "Account wacht op activatie."
282
 
283
+ #: includes/class-freemius.php11920,
284
  #: templates/forms/premium-versions-upgrade-handler.php:47
285
  msgid "Buy a license now"
286
  msgstr "Koop nu een licentie"
287
 
288
+ #: includes/class-freemius.php11932,
289
  #: templates/forms/premium-versions-upgrade-handler.php:46
290
  msgid "Renew your license now"
291
  msgstr "Vernieuw je licentie nu"
292
 
293
+ #: includes/class-freemius.php:11936
294
  msgid "%s to access version %s security & feature updates, and support."
295
  msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
296
 
297
+ #: includes/class-freemius.php:14319
298
  msgid "%s activation was successfully completed."
299
  msgstr "%s activatie is succesvol voltooid."
300
 
301
+ #: includes/class-freemius.php:14333
302
  msgid "Your account was successfully activated with the %s plan."
303
  msgstr "Je account is succesvol geactiveerd met het %s plan."
304
 
305
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
306
  msgid "Your trial has been successfully started."
307
  msgstr "U proefperiode is met succes gestart."
308
 
309
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
310
+ #: includes/class-freemius.php:15028
311
  msgid "Couldn't activate %s."
312
  msgstr "Kon %s niet activeren."
313
 
314
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
315
+ #: includes/class-freemius.php:15029
316
  msgid "Please contact us with the following message:"
317
  msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
318
 
319
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
320
  msgid "Upgrade"
321
  msgstr "Upgrade"
322
 
323
+ #: includes/class-freemius.php:15384
324
  msgid "Start Trial"
325
  msgstr "Start Proefperiode"
326
 
327
+ #: includes/class-freemius.php:15386
328
  msgid "Pricing"
329
  msgstr "Prijzen"
330
 
331
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
332
  msgid "Affiliation"
333
  msgstr "Affiliatie"
334
 
335
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
336
  #: templates/account.php150, templates/debug.php:324
337
  msgid "Account"
338
  msgstr "Account"
339
 
340
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
341
  #: includes/customizer/class-fs-customizer-support-section.php:60
342
  msgid "Contact Us"
343
  msgstr "Contacteer Ons"
344
 
345
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
346
+ #: includes/class-freemius.php19849, templates/account.php100,
347
  #: templates/account/partials/addon.php:41
348
  msgid "Add-Ons"
349
  msgstr "Uitbreidingen"
350
 
351
+ #: includes/class-freemius.php:15541
352
  msgctxt "ASCII arrow left icon"
353
  msgid "&#x2190;"
354
  msgstr "&#x2190;"
355
 
356
+ #: includes/class-freemius.php:15541
357
  msgctxt "ASCII arrow right icon"
358
  msgid "&#x27a4;"
359
  msgstr "&#x27a4;"
360
 
361
+ #: includes/class-freemius.php15543, templates/pricing.php:97
362
  msgctxt "noun"
363
  msgid "Pricing"
364
  msgstr "Prijzen"
365
 
366
+ #: includes/class-freemius.php15756,
367
  #: includes/customizer/class-fs-customizer-support-section.php:67
368
  msgid "Support Forum"
369
  msgstr "Supportforum"
370
 
371
+ #: includes/class-freemius.php:16542
372
  msgid "Your email has been successfully verified - you are AWESOME!"
373
  msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
374
 
375
+ #: includes/class-freemius.php:16543
376
  msgctxt "a positive response"
377
  msgid "Right on"
378
  msgstr "Toppie"
379
 
380
+ #: includes/class-freemius.php:17168
381
  msgid "Your %s Add-on plan was successfully upgraded."
382
  msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
383
 
384
+ #: includes/class-freemius.php:17170
385
  msgid "%s Add-on was successfully purchased."
386
  msgstr "%s Add-on werd succesvol aangekocht."
387
 
388
+ #: includes/class-freemius.php:17173
389
  msgid "Download the latest version"
390
  msgstr "Download de meeste recente versie"
391
 
392
+ #: includes/class-freemius.php:17259
393
  msgctxt "%1s - plugin title, %2s - API domain"
394
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
  msgstr "Je server blokkeert de toegang tot de Freemius API, welke cruciaal is voor %1s synchronisatie. Neem alsjeblieft contact op met je host om %2s te whitelisten."
396
 
397
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
398
+ #: includes/class-freemius.php:17755
399
  msgid "Error received from the server:"
400
  msgstr "Foutmelding ontvangen van de server:"
401
 
402
+ #: includes/class-freemius.php:17272
403
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
  msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
405
 
406
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
407
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
408
  msgctxt ""
409
  msgid "Hmm"
410
  msgstr "Hmm"
411
 
412
+ #: includes/class-freemius.php:17467
413
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
  msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry."
415
 
416
+ #: includes/class-freemius.php17468, templates/account.php102,
417
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
  msgctxt "trial period"
419
  msgid "Trial"
420
  msgstr "Proefperiode"
421
 
422
+ #: includes/class-freemius.php:17473
423
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
  msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
425
 
426
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
427
  msgid "Please contact us here"
428
  msgstr "Neem hier a.u.b. contact met ons op"
429
 
430
+ #: includes/class-freemius.php:17487
431
  msgid "Your plan was successfully upgraded."
432
  msgstr "Je plan is succesvol geüpgraded."
433
 
434
+ #: includes/class-freemius.php:17505
435
  msgid "Your plan was successfully changed to %s."
436
  msgstr "Je plan is succesvol veranderd naar %s."
437
 
438
+ #: includes/class-freemius.php:17521
439
  msgid "Your license has expired. You can still continue using the free %s forever."
440
  msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
441
 
442
+ #: includes/class-freemius.php:17523
443
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
  msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
445
 
446
+ #: includes/class-freemius.php:17531
447
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
  msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
449
 
450
+ #: includes/class-freemius.php:17544
451
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
  msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen."
453
 
454
+ #: includes/class-freemius.php:17567
455
  msgid "Your free trial has expired. You can still continue using all our free features."
456
  msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
457
 
458
+ #: includes/class-freemius.php:17569
459
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
  msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
461
 
462
+ #: includes/class-freemius.php:17674
463
  msgid "It looks like the license could not be activated."
464
  msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
465
 
466
+ #: includes/class-freemius.php:17704
467
  msgid "Your license was successfully activated."
468
  msgstr "Je licentie is succesvol geactiveerd."
469
 
470
+ #: includes/class-freemius.php:17730
471
  msgid "It looks like your site currently doesn't have an active license."
472
  msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
473
 
474
+ #: includes/class-freemius.php:17754
475
  msgid "It looks like the license deactivation failed."
476
  msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
477
 
478
+ #: includes/class-freemius.php:17782
479
  msgid "Your license was successfully deactivated, you are back to the %s plan."
480
  msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
481
 
482
+ #: includes/class-freemius.php:17783
483
  msgid "O.K"
484
  msgstr "Oké"
485
 
486
+ #: includes/class-freemius.php:17836
487
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
  msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens."
489
 
490
+ #: includes/class-freemius.php:17845
491
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
  msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
493
 
494
+ #: includes/class-freemius.php:17887
495
  msgid "You are already running the %s in a trial mode."
496
  msgstr "Je draait de %s al in proefmodus."
497
 
498
+ #: includes/class-freemius.php:17898
499
  msgid "You already utilized a trial before."
500
  msgstr "U heeft reeds een proefperiode gebruikt."
501
 
502
+ #: includes/class-freemius.php:17912
503
  msgid "Plan %s do not exist, therefore, can't start a trial."
504
  msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
505
 
506
+ #: includes/class-freemius.php:17923
507
  msgid "Plan %s does not support a trial period."
508
  msgstr "Plan %s ondersteunt geen proefperiode."
509
 
510
+ #: includes/class-freemius.php:17934
511
  msgid "None of the %s's plans supports a trial period."
512
  msgstr "Geen van de %s plannen ondersteunt een proefperiode."
513
 
514
+ #: includes/class-freemius.php:17984
515
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
  msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
517
 
518
+ #: includes/class-freemius.php:18020
519
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
  msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens."
521
 
522
+ #: includes/class-freemius.php:18039
523
  msgid "Your %s free trial was successfully cancelled."
524
  msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
525
 
526
+ #: includes/class-freemius.php:18346
527
  msgid "Version %s was released."
528
  msgstr "Versie %s is vrijgegeven."
529
 
530
+ #: includes/class-freemius.php:18346
531
  msgid "Please download %s."
532
  msgstr "A.u.b. %s downloaden."
533
 
534
+ #: includes/class-freemius.php:18353
535
  msgid "the latest %s version here"
536
  msgstr "de meest recente %s versie hier"
537
 
538
+ #: includes/class-freemius.php:18358
539
  msgid "New"
540
  msgstr "Nieuw"
541
 
542
+ #: includes/class-freemius.php:18363
543
  msgid "Seems like you got the latest release."
544
  msgstr "Het lijkt erop dat je de meest recente versie hebt."
545
 
546
+ #: includes/class-freemius.php:18364
547
  msgid "You are all good!"
548
  msgstr "Alles is goed!"
549
 
550
+ #: includes/class-freemius.php:18632
551
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
  msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
553
 
554
+ #: includes/class-freemius.php:18769
555
  msgid "Site successfully opted in."
556
  msgstr "Site opt-in geslaagd. "
557
 
558
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
559
  msgid "Awesome"
560
  msgstr "Geweldig"
561
 
562
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
563
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
  msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
565
 
566
+ #: includes/class-freemius.php:18787
567
  msgid "Thank you!"
568
  msgstr "Bedankt!"
569
 
570
+ #: includes/class-freemius.php:18794
571
  msgid "We will no longer be sending any usage data of %s on %s to %s."
572
  msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
573
 
574
+ #: includes/class-freemius.php:18923
575
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
  msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox."
577
 
578
+ #: includes/class-freemius.php:18929
579
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
  msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
581
 
582
+ #: includes/class-freemius.php:18934
583
  msgid "%s is the new owner of the account."
584
  msgstr "%s is de nieuwe eigenaar van het account."
585
 
586
+ #: includes/class-freemius.php:18936
587
  msgctxt "as congratulations"
588
  msgid "Congrats"
589
  msgstr "Gefeliciteerd"
590
 
591
+ #: includes/class-freemius.php:18956
592
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
  msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
594
 
595
+ #: includes/class-freemius.php:18957
596
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
  msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
598
 
599
+ #: includes/class-freemius.php:18964
600
  msgid "Change Ownership"
601
  msgstr "Eigendom Overdragen"
602
 
603
+ #: includes/class-freemius.php:18972
604
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
  msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
606
 
607
+ #: includes/class-freemius.php:18984
608
  msgid "Please provide your full name."
609
  msgstr "Geef alsjeblieft je volledige naam."
610
 
611
+ #: includes/class-freemius.php:18989
612
  msgid "Your name was successfully updated."
613
  msgstr "Je naam is succesvol bijgewerkt."
614
 
615
+ #: includes/class-freemius.php:19050
616
  msgid "You have successfully updated your %s."
617
  msgstr "Je hebt je %s succesvol geüpdatet."
618
 
619
+ #: includes/class-freemius.php:19190
620
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
  msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
622
 
623
+ #: includes/class-freemius.php:19191
624
  msgctxt "advance notice of something that will need attention."
625
  msgid "Heads up"
626
  msgstr "Aankondiging"
627
 
628
+ #: includes/class-freemius.php:19621
629
  msgctxt "exclamation"
630
  msgid "Hey"
631
  msgstr "Hoi"
632
 
633
+ #: includes/class-freemius.php:19621
634
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
  msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
636
 
637
+ #: includes/class-freemius.php:19629
638
  msgid "No commitment for %s days - cancel anytime!"
639
  msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
640
 
641
+ #: includes/class-freemius.php:19630
642
  msgid "No credit card required"
643
  msgstr "Geen creditcard nodig"
644
 
645
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
646
  msgctxt "call to action"
647
  msgid "Start free trial"
648
  msgstr "Start gratis proefperidoe"
649
 
650
+ #: includes/class-freemius.php:19714
651
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
  msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
653
 
654
+ #: includes/class-freemius.php:19723
655
  msgid "Learn more"
656
  msgstr "Lees meer"
657
 
658
+ #: includes/class-freemius.php19873, templates/account.php406,
659
  #: templates/account.php509, templates/connect.php171,
660
  #: templates/connect.php421, templates/forms/license-activation.php24,
661
  #: templates/account/partials/addon.php:235
662
  msgid "Activate License"
663
  msgstr "Activeer Licentie"
664
 
665
+ #: includes/class-freemius.php19874, templates/account.php469,
666
  #: templates/account.php508, templates/account/partials/site.php:256
667
  msgid "Change License"
668
  msgstr "Verander Licentie"
669
 
670
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
671
  msgid "Opt Out"
672
  msgstr "Opt Out"
673
 
674
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
675
  #: templates/account/partials/site.php43,
676
  #: templates/account/partials/site.php:161
677
  msgid "Opt In"
678
  msgstr "Opt In"
679
 
680
+ #: includes/class-freemius.php:20187
681
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
  msgstr "De betaalde versie van%1s is reeds geïnstalleerd. Activeer deze alsjeblieft om te kunnen profiteren van de %2s features. %3s "
683
 
684
+ #: includes/class-freemius.php:20195
685
  msgid "Activate %s features"
686
  msgstr "Activeer %s features."
687
 
688
+ #: includes/class-freemius.php:20208
689
  msgid "Please follow these steps to complete the upgrade"
690
  msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
691
 
692
+ #: includes/class-freemius.php:20212
693
  msgid "Download the latest %s version"
694
  msgstr "Download de meeste recente %s versie"
695
 
696
+ #: includes/class-freemius.php:20216
697
  msgid "Upload and activate the downloaded version"
698
  msgstr "Upload en activeer de gedownloade versie"
699
 
700
+ #: includes/class-freemius.php:20218
701
  msgid "How to upload and activate?"
702
  msgstr "Hoe te uploaden en activeren?"
703
 
704
+ #: includes/class-freemius.php:20352
705
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
  msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
707
 
708
+ #: includes/class-freemius.php:20513
709
  msgid "Auto installation only works for opted-in users."
710
  msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
711
 
712
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
713
+ #: includes/class-fs-plugin-updater.php1060,
714
+ #: includes/class-fs-plugin-updater.php:1074
715
  msgid "Invalid module ID."
716
  msgstr "Ongeldige Module-ID"
717
 
718
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
719
  msgid "Premium version already active."
720
  msgstr "Premium versie reeds actief."
721
 
722
+ #: includes/class-freemius.php:20539
723
  msgid "You do not have a valid license to access the premium version."
724
  msgstr "Je hebt geen geldige licentie voor de premium versie."
725
 
726
+ #: includes/class-freemius.php:20546
727
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
  msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
729
 
730
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
731
  msgid "Premium add-on version already installed."
732
  msgstr "Premium add-on versie is reeds geïnstalleerd."
733
 
734
+ #: includes/class-freemius.php:20909
735
  msgid "View paid features"
736
  msgstr "Bekijk betaalde kenmerken"
737
 
738
+ #: includes/class-freemius.php:21229
739
  msgid "Thank you so much for using %s and its add-ons!"
740
  msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
741
 
742
+ #: includes/class-freemius.php:21230
743
  msgid "Thank you so much for using %s!"
744
  msgstr "Hartelijk bedankt voor het gebruik van %s!"
745
 
746
+ #: includes/class-freemius.php:21236
747
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
749
 
750
+ #: includes/class-freemius.php:21240
751
  msgid "Thank you so much for using our products!"
752
  msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
753
 
754
+ #: includes/class-freemius.php:21241
755
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
757
 
758
+ #: includes/class-freemius.php:21260
759
  msgid "%s and its add-ons"
760
  msgstr "%sen bijbehorende uitbreidingen"
761
 
762
+ #: includes/class-freemius.php:21269
763
  msgid "Products"
764
  msgstr "Producten"
765
 
766
+ #: includes/class-freemius.php21276, templates/connect.php:272
767
  msgid "Yes"
768
  msgstr "Ja"
769
 
770
+ #: includes/class-freemius.php21277, templates/connect.php:273
771
  msgid "send me security & feature updates, educational content and offers."
772
  msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
773
 
774
+ #: includes/class-freemius.php21278, templates/connect.php:278
775
  msgid "No"
776
  msgstr "Nee"
777
 
778
+ #: includes/class-freemius.php21280, templates/connect.php:280
779
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
  msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
781
 
782
+ #: includes/class-freemius.php:21290
783
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
  msgstr "Naar aanleiding van de nieuwe %sEU General Data Protection Regulation (GDPR) / Algemene verordening gegevensbescherming (AVG) %s regelgeving is het verplicht dat je je expliciete toestemming geeft, nogmaals, bevestigend dat je 'aan boord' bent 🙂"
785
 
786
+ #: includes/class-freemius.php21292, templates/connect.php:287
787
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
  msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:"
789
 
790
+ #: includes/class-freemius.php:21574
791
  msgid "License key is empty."
792
  msgstr "Licentiesleutel is leeg."
793
 
809
  msgid "new version"
810
  msgstr "nieuwe versie"
811
 
812
+ #: includes/class-fs-plugin-updater.php:305
813
  msgid "Important Upgrade Notice:"
814
  msgstr "Belangrijke Upgrade Mededeling:"
815
 
816
+ #: includes/class-fs-plugin-updater.php:1125
817
  msgid "Installing plugin: %s"
818
  msgstr "Installeren van plug-in: %s"
819
 
820
+ #: includes/class-fs-plugin-updater.php:1166
821
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
  msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
823
 
824
+ #: includes/class-fs-plugin-updater.php:1348
825
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
  msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
827
 
freemius/languages/freemius-ru_RU.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Robert Premmerce <info@premmerce.com>, 2018
@@ -21,772 +21,772 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:1602
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой."
27
 
28
- #: includes/class-freemius.php:1604
29
  msgid "Error"
30
  msgstr "Ошибка"
31
 
32
- #: includes/class-freemius.php:1925
33
  msgid "I found a better %s"
34
  msgstr "Я нашел лучший %s"
35
 
36
- #: includes/class-freemius.php:1927
37
  msgid "What's the %s's name?"
38
  msgstr "Какое название %s?"
39
 
40
- #: includes/class-freemius.php:1933
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
43
 
44
- #: includes/class-freemius.php:1935
45
  msgid "Deactivation"
46
  msgstr "Деактивация"
47
 
48
- #: includes/class-freemius.php:1936
49
  msgid "Theme Switch"
50
  msgstr "Переключатель шаблона "
51
 
52
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Другие"
55
 
56
- #: includes/class-freemius.php:1953
57
  msgid "I no longer need the %s"
58
  msgstr "%s больше не понадобится."
59
 
60
- #: includes/class-freemius.php:1960
61
  msgid "I only needed the %s for a short period"
62
  msgstr "%s требовалась на короткое время"
63
 
64
- #: includes/class-freemius.php:1966
65
  msgid "The %s broke my site"
66
  msgstr "%s повредила мой сайт"
67
 
68
- #: includes/class-freemius.php:1973
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s внезапно перестала работать "
71
 
72
- #: includes/class-freemius.php:1983
73
  msgid "I can't pay for it anymore"
74
  msgstr "Я больше не могу оплачивать это. "
75
 
76
- #: includes/class-freemius.php:1985
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "Какая стоимость была бы для Вас приемлемой? "
79
 
80
- #: includes/class-freemius.php:1991
81
  msgid "I don't like to share my information with you"
82
  msgstr "Я не хочу делиться личной информацией с Вами"
83
 
84
- #: includes/class-freemius.php:2012
85
  msgid "The %s didn't work"
86
  msgstr "%s не сработала"
87
 
88
- #: includes/class-freemius.php:2022
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "Я не могу понять как сделать так, чтобы оно работало"
91
 
92
- #: includes/class-freemius.php:2030
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. "
95
 
96
- #: includes/class-freemius.php:2032
97
  msgid "What feature?"
98
  msgstr "Какой функционал?"
99
 
100
- #: includes/class-freemius.php:2036
101
  msgid "The %s is not working"
102
  msgstr "%s не работает"
103
 
104
- #: includes/class-freemius.php:2038
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
107
 
108
- #: includes/class-freemius.php:2042
109
  msgid "It's not what I was looking for"
110
  msgstr "Это не то, что я искал. "
111
 
112
- #: includes/class-freemius.php:2044
113
  msgid "What you've been looking for?"
114
  msgstr "Что именно Вы ищите? "
115
 
116
- #: includes/class-freemius.php:2048
117
  msgid "The %s didn't work as expected"
118
  msgstr "%s не сработала как ожидалось"
119
 
120
- #: includes/class-freemius.php:2050
121
  msgid "What did you expect?"
122
  msgstr "Каковы были Ваши ожидания? "
123
 
124
- #: includes/class-freemius.php2853, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Исправление ошибок Freemius"
127
 
128
- #: includes/class-freemius.php:3581
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне."
131
 
132
- #: includes/class-freemius.php:3583
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. "
135
 
136
- #: includes/class-freemius.php:3590
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. "
139
 
140
- #: includes/class-freemius.php:3695
141
  msgid "Yes - do your thing"
142
  msgstr "Да, делайте то, что Вам нужно. "
143
 
144
- #: includes/class-freemius.php:3700
145
  msgid "No - just deactivate"
146
  msgstr "Нет. Нужно деактивировать. "
147
 
148
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
- #: includes/class-freemius.php18705, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Упс!"
158
 
159
- #: includes/class-freemius.php:3814
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. "
162
 
163
- #: includes/class-freemius.php:4250
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s не работает без %s."
167
 
168
- #: includes/class-freemius.php:4251
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s не может работать без плагина. "
172
 
173
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
- #: includes/class-freemius.php:17659
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. "
177
 
178
- #: includes/class-freemius.php:5006
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "Премиум версия %s была успешно активирована. "
181
 
182
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "Вау!"
186
 
187
- #: includes/class-freemius.php:5033
188
  msgid "You have a %s license."
189
  msgstr "У Вас есть лицензия %s."
190
 
191
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
- #: includes/class-freemius.php:17413
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Ура!"
198
 
199
- #: includes/class-freemius.php:5301
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. "
202
 
203
- #: includes/class-freemius.php:5305
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. "
206
 
207
- #: includes/class-freemius.php5314, templates/add-ons.php103,
208
  #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Больше информации о %s"
211
 
212
- #: includes/class-freemius.php:5315
213
  msgid "Purchase License"
214
  msgstr "Купите лицензию "
215
 
216
- #: includes/class-freemius.php6230, templates/connect.php:163
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. "
219
 
220
- #: includes/class-freemius.php:6234
221
  msgid "start the trial"
222
  msgstr "Начать тестовый период"
223
 
224
- #: includes/class-freemius.php6235, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "Закончить установку"
227
 
228
- #: includes/class-freemius.php:6348
229
  msgid "You are just one step away - %s"
230
  msgstr "Вам осталось совсем немножко %s"
231
 
232
- #: includes/class-freemius.php:6351
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Закончить активацию %s сейчас "
236
 
237
- #: includes/class-freemius.php:6429
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Мы усовершенствовали в %s, %s для лучшей работы "
240
 
241
- #: includes/class-freemius.php:6433
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "Opt in to make \"%s\" better!"
244
 
245
- #: includes/class-freemius.php:6861
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "Обновление %s было успешно завершено"
248
 
249
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
- #: includes/class-fs-plugin-updater.php1077,
251
- #: includes/class-fs-plugin-updater.php1084,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Функционал плагина "
255
 
256
- #: includes/class-freemius.php8707, templates/debug.php359,
257
  #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Плагин "
260
 
261
- #: includes/class-freemius.php8708, templates/debug.php359,
262
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
  msgid "Theme"
264
  msgstr "Шаблон "
265
 
266
- #: includes/class-freemius.php:11183
267
  msgid "Invalid site details collection."
268
  msgstr "Invalid site details collection."
269
 
270
- #: includes/class-freemius.php:11303
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
273
 
274
- #: includes/class-freemius.php:11305
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
277
 
278
- #: includes/class-freemius.php:11541
279
  msgid "Account is pending activation."
280
  msgstr "Учетная запись в процессе активации"
281
 
282
- #: includes/class-freemius.php11653,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Buy a license now"
286
 
287
- #: includes/class-freemius.php11665,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renew your license now"
291
 
292
- #: includes/class-freemius.php:11669
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s to access version %s security & feature updates, and support."
295
 
296
- #: includes/class-freemius.php:14052
297
  msgid "%s activation was successfully completed."
298
  msgstr "Активация %s была успешно завершена"
299
 
300
- #: includes/class-freemius.php:14066
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
303
 
304
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
  msgid "Your trial has been successfully started."
306
  msgstr "Ваш тестовый период успешно начат"
307
 
308
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
- #: includes/class-freemius.php:14761
310
  msgid "Couldn't activate %s."
311
  msgstr "Невозможно активировать %s"
312
 
313
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
- #: includes/class-freemius.php:14762
315
  msgid "Please contact us with the following message:"
316
  msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
317
 
318
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
  msgid "Upgrade"
320
  msgstr "Сделать апгрейд "
321
 
322
- #: includes/class-freemius.php:15117
323
  msgid "Start Trial"
324
  msgstr "Начать тестовый период"
325
 
326
- #: includes/class-freemius.php:15119
327
  msgid "Pricing"
328
  msgstr "Цены "
329
 
330
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
  msgid "Affiliation"
332
  msgstr "Партнерство "
333
 
334
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
  #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Личный кабинет"
338
 
339
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Контакты "
343
 
344
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
- #: includes/class-freemius.php19553, templates/account.php100,
346
  #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Настройки плагина "
349
 
350
- #: includes/class-freemius.php:15274
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
- #: includes/class-freemius.php:15274
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
- #: includes/class-freemius.php15276, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Цены"
364
 
365
- #: includes/class-freemius.php15479,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Форум поддержки "
369
 
370
- #: includes/class-freemius.php:16265
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
373
 
374
- #: includes/class-freemius.php:16266
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Все верно!"
378
 
379
- #: includes/class-freemius.php:16888
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Ваш %s план был успешно обновлен"
382
 
383
- #: includes/class-freemius.php:16890
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "Покупка %s плагина успешно состоялась"
386
 
387
- #: includes/class-freemius.php:16893
388
  msgid "Download the latest version"
389
  msgstr "Скачай последнюю версию"
390
 
391
- #: includes/class-freemius.php:16965
392
  msgctxt "%1s - plugin title, %2s - API domain"
393
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
  msgstr "Ваш сервер блокирует доступ к Freemius' API, что является очень важным для синхронизации с %1s. Пожалуйста, свяжитесь с Вашим хостинг провайдером для разрешения доступа к %2s "
395
 
396
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
- #: includes/class-freemius.php:17461
398
  msgid "Error received from the server:"
399
  msgstr "Ошибка сервера"
400
 
401
- #: includes/class-freemius.php:16978
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
404
 
405
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Хм..."
410
 
411
- #: includes/class-freemius.php:17173
412
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
  msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
414
 
415
- #: includes/class-freemius.php17174, templates/account.php102,
416
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Тестовый период"
420
 
421
- #: includes/class-freemius.php:17179
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
424
 
425
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
  msgid "Please contact us here"
427
  msgstr "Пожалуйста, напишите нам сообщение здесь. "
428
 
429
- #: includes/class-freemius.php:17193
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Ваш тарифный план был успешно изменен. "
432
 
433
- #: includes/class-freemius.php:17211
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Ваш тарифный план был успешно изменен на %s."
436
 
437
- #: includes/class-freemius.php:17227
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
440
 
441
- #: includes/class-freemius.php:17229
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
 
445
- #: includes/class-freemius.php:17237
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
448
 
449
- #: includes/class-freemius.php:17250
450
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
  msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
452
 
453
- #: includes/class-freemius.php:17273
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Your free trial has expired. You can still continue using all our free features."
456
 
457
- #: includes/class-freemius.php:17275
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
 
461
- #: includes/class-freemius.php:17380
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Вероятно возникли трудности с активацией лицензии. "
464
 
465
- #: includes/class-freemius.php:17410
466
  msgid "Your license was successfully activated."
467
  msgstr "Ваша лицензия была успешно активирована. "
468
 
469
- #: includes/class-freemius.php:17436
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
472
 
473
- #: includes/class-freemius.php:17460
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Вероятно деактивация лицензии не состоялась. "
476
 
477
- #: includes/class-freemius.php:17488
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
480
 
481
- #: includes/class-freemius.php:17489
482
  msgid "O.K"
483
  msgstr "O.K."
484
 
485
- #: includes/class-freemius.php:17542
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
 
489
- #: includes/class-freemius.php:17551
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
 
493
- #: includes/class-freemius.php:17593
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Вы уже пользуетесь тестовой версией %s "
496
 
497
- #: includes/class-freemius.php:17604
498
  msgid "You already utilized a trial before."
499
  msgstr "Вы уже использовали Ваш тестовый период"
500
 
501
- #: includes/class-freemius.php:17618
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
504
 
505
- #: includes/class-freemius.php:17629
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "Тарифный план % не предусматривает тестового периода. "
508
 
509
- #: includes/class-freemius.php:17640
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Тарифные планы %s не предусматривают тестовый период. "
512
 
513
- #: includes/class-freemius.php:17690
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Возможно, Ваш тестовый период уже закончился. "
516
 
517
- #: includes/class-freemius.php:17726
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
520
 
521
- #: includes/class-freemius.php:17745
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Ваш бесплатный тестовый период был успешно отменен. "
524
 
525
- #: includes/class-freemius.php:18052
526
  msgid "Version %s was released."
527
  msgstr "Релиз версии %s состоялся. "
528
 
529
- #: includes/class-freemius.php:18052
530
  msgid "Please download %s."
531
  msgstr "Пожалуйста, скачайте %s"
532
 
533
- #: includes/class-freemius.php:18059
534
  msgid "the latest %s version here"
535
  msgstr "Последняя версия %s здесь"
536
 
537
- #: includes/class-freemius.php:18064
538
  msgid "New"
539
  msgstr "Новое "
540
 
541
- #: includes/class-freemius.php:18069
542
  msgid "Seems like you got the latest release."
543
  msgstr "Вероятно, Вы пользуетесь последней версией"
544
 
545
- #: includes/class-freemius.php:18070
546
  msgid "You are all good!"
547
  msgstr "Все прошло хорошо!"
548
 
549
- #: includes/class-freemius.php:18338
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
552
 
553
- #: includes/class-freemius.php:18473
554
  msgid "Site successfully opted in."
555
  msgstr "Site successfully opted in."
556
 
557
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
  msgid "Awesome"
559
  msgstr "Отлично!"
560
 
561
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
564
 
565
- #: includes/class-freemius.php:18491
566
  msgid "Thank you!"
567
  msgstr "Thank you!"
568
 
569
- #: includes/class-freemius.php:18498
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
572
 
573
- #: includes/class-freemius.php:18627
574
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
  msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
576
 
577
- #: includes/class-freemius.php:18633
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
580
 
581
- #: includes/class-freemius.php:18638
582
  msgid "%s is the new owner of the account."
583
  msgstr "%я является новым владельцем аккаунта"
584
 
585
- #: includes/class-freemius.php:18640
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Поздравления! "
589
 
590
- #: includes/class-freemius.php:18660
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
593
 
594
- #: includes/class-freemius.php:18661
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
597
 
598
- #: includes/class-freemius.php:18668
599
  msgid "Change Ownership"
600
  msgstr "Сменить владельца лицензии "
601
 
602
- #: includes/class-freemius.php:18676
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
605
 
606
- #: includes/class-freemius.php:18688
607
  msgid "Please provide your full name."
608
  msgstr "Пожалуйста, введите Ваше полное имя"
609
 
610
- #: includes/class-freemius.php:18693
611
  msgid "Your name was successfully updated."
612
  msgstr "Ваше имя было успешно обновлено"
613
 
614
- #: includes/class-freemius.php:18754
615
  msgid "You have successfully updated your %s."
616
  msgstr "Вы успешно обновили Ваш %s"
617
 
618
- #: includes/class-freemius.php:18894
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
621
 
622
- #: includes/class-freemius.php:18895
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Внимание!"
626
 
627
- #: includes/class-freemius.php:19325
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Привет!"
631
 
632
- #: includes/class-freemius.php:19325
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
635
 
636
- #: includes/class-freemius.php:19333
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
639
 
640
- #: includes/class-freemius.php:19334
641
  msgid "No credit card required"
642
  msgstr "Не требуются данные платежной карты"
643
 
644
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Начни тестовый период!"
648
 
649
- #: includes/class-freemius.php:19418
650
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
  msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
652
 
653
- #: includes/class-freemius.php:19427
654
  msgid "Learn more"
655
  msgstr "Узнать больше"
656
 
657
- #: includes/class-freemius.php19577, templates/account.php406,
658
  #: templates/account.php509, templates/connect.php171,
659
  #: templates/connect.php421, templates/forms/license-activation.php24,
660
  #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Активировать лицензию"
663
 
664
- #: includes/class-freemius.php19578, templates/account.php469,
665
  #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Изменить лицензию "
668
 
669
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Отказаться от использования"
672
 
673
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Присоединиться"
678
 
679
- #: includes/class-freemius.php:19891
680
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
 
683
- #: includes/class-freemius.php:19899
684
  msgid "Activate %s features"
685
  msgstr "Activate %s features"
686
 
687
- #: includes/class-freemius.php:19912
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
690
 
691
- #: includes/class-freemius.php:19916
692
  msgid "Download the latest %s version"
693
  msgstr "Скачайте последнюю версию %s"
694
 
695
- #: includes/class-freemius.php:19920
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Загрузите и активируйте скачанную версию"
698
 
699
- #: includes/class-freemius.php:19922
700
  msgid "How to upload and activate?"
701
  msgstr "Как загрузить и активировать?"
702
 
703
- #: includes/class-freemius.php:20056
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
706
 
707
- #: includes/class-freemius.php:20217
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "Авто установка работает только для зарегистрированных пользователей."
710
 
711
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
- #: includes/class-fs-plugin-updater.php1056,
713
- #: includes/class-fs-plugin-updater.php:1070
714
  msgid "Invalid module ID."
715
  msgstr "Неверный ID модуля"
716
 
717
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
  msgid "Premium version already active."
719
  msgstr "Премиум версия уже активирована"
720
 
721
- #: includes/class-freemius.php:20243
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
724
 
725
- #: includes/class-freemius.php:20250
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
728
 
729
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
  msgid "Premium add-on version already installed."
731
  msgstr "Премиум версия плагина была установлена"
732
 
733
- #: includes/class-freemius.php:20613
734
  msgid "View paid features"
735
  msgstr "Просмотр платных возможностей"
736
 
737
- #: includes/class-freemius.php:20927
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "Thank you so much for using %s and its add-ons!"
740
 
741
- #: includes/class-freemius.php:20928
742
  msgid "Thank you so much for using %s!"
743
  msgstr "Thank you so much for using %s!"
744
 
745
- #: includes/class-freemius.php:20934
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
 
749
- #: includes/class-freemius.php:20938
750
  msgid "Thank you so much for using our products!"
751
  msgstr "Thank you so much for using our products!"
752
 
753
- #: includes/class-freemius.php:20939
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
 
757
- #: includes/class-freemius.php:20958
758
  msgid "%s and its add-ons"
759
  msgstr "%s and its add-ons"
760
 
761
- #: includes/class-freemius.php:20967
762
  msgid "Products"
763
  msgstr "Products"
764
 
765
- #: includes/class-freemius.php20974, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Yes"
768
 
769
- #: includes/class-freemius.php20975, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "send me security & feature updates, educational content and offers."
772
 
773
- #: includes/class-freemius.php20976, templates/connect.php:278
774
  msgid "No"
775
  msgstr "No"
776
 
777
- #: includes/class-freemius.php20978, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
780
 
781
- #: includes/class-freemius.php:20988
782
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
  msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
 
785
- #: includes/class-freemius.php20990, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
 
789
- #: includes/class-freemius.php:21272
790
  msgid "License key is empty."
791
  msgstr "License key is empty."
792
 
@@ -808,19 +808,19 @@ msgstr "There is a %s of %s available."
808
  msgid "new version"
809
  msgstr "new version"
810
 
811
- #: includes/class-fs-plugin-updater.php:301
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Important Upgrade Notice:"
814
 
815
- #: includes/class-fs-plugin-updater.php:1121
816
  msgid "Installing plugin: %s"
817
  msgstr "Установка плагина: %s"
818
 
819
- #: includes/class-fs-plugin-updater.php:1162
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
822
 
823
- #: includes/class-fs-plugin-updater.php:1335
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
826
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Robert Premmerce <info@premmerce.com>, 2018
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php:1688
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой."
27
 
28
+ #: includes/class-freemius.php:1690
29
  msgid "Error"
30
  msgstr "Ошибка"
31
 
32
+ #: includes/class-freemius.php:2011
33
  msgid "I found a better %s"
34
  msgstr "Я нашел лучший %s"
35
 
36
+ #: includes/class-freemius.php:2013
37
  msgid "What's the %s's name?"
38
  msgstr "Какое название %s?"
39
 
40
+ #: includes/class-freemius.php:2019
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
43
 
44
+ #: includes/class-freemius.php:2021
45
  msgid "Deactivation"
46
  msgstr "Деактивация"
47
 
48
+ #: includes/class-freemius.php:2022
49
  msgid "Theme Switch"
50
  msgstr "Переключатель шаблона "
51
 
52
+ #: includes/class-freemius.php2031, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Другие"
55
 
56
+ #: includes/class-freemius.php:2039
57
  msgid "I no longer need the %s"
58
  msgstr "%s больше не понадобится."
59
 
60
+ #: includes/class-freemius.php:2046
61
  msgid "I only needed the %s for a short period"
62
  msgstr "%s требовалась на короткое время"
63
 
64
+ #: includes/class-freemius.php:2052
65
  msgid "The %s broke my site"
66
  msgstr "%s повредила мой сайт"
67
 
68
+ #: includes/class-freemius.php:2059
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s внезапно перестала работать "
71
 
72
+ #: includes/class-freemius.php:2069
73
  msgid "I can't pay for it anymore"
74
  msgstr "Я больше не могу оплачивать это. "
75
 
76
+ #: includes/class-freemius.php:2071
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "Какая стоимость была бы для Вас приемлемой? "
79
 
80
+ #: includes/class-freemius.php:2077
81
  msgid "I don't like to share my information with you"
82
  msgstr "Я не хочу делиться личной информацией с Вами"
83
 
84
+ #: includes/class-freemius.php:2098
85
  msgid "The %s didn't work"
86
  msgstr "%s не сработала"
87
 
88
+ #: includes/class-freemius.php:2108
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "Я не могу понять как сделать так, чтобы оно работало"
91
 
92
+ #: includes/class-freemius.php:2116
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. "
95
 
96
+ #: includes/class-freemius.php:2118
97
  msgid "What feature?"
98
  msgstr "Какой функционал?"
99
 
100
+ #: includes/class-freemius.php:2122
101
  msgid "The %s is not working"
102
  msgstr "%s не работает"
103
 
104
+ #: includes/class-freemius.php:2124
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
107
 
108
+ #: includes/class-freemius.php:2128
109
  msgid "It's not what I was looking for"
110
  msgstr "Это не то, что я искал. "
111
 
112
+ #: includes/class-freemius.php:2130
113
  msgid "What you've been looking for?"
114
  msgstr "Что именно Вы ищите? "
115
 
116
+ #: includes/class-freemius.php:2134
117
  msgid "The %s didn't work as expected"
118
  msgstr "%s не сработала как ожидалось"
119
 
120
+ #: includes/class-freemius.php:2136
121
  msgid "What did you expect?"
122
  msgstr "Каковы были Ваши ожидания? "
123
 
124
+ #: includes/class-freemius.php2942, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Исправление ошибок Freemius"
127
 
128
+ #: includes/class-freemius.php:3670
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне."
131
 
132
+ #: includes/class-freemius.php:3672
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. "
135
 
136
+ #: includes/class-freemius.php:3679
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. "
139
 
140
+ #: includes/class-freemius.php:3784
141
  msgid "Yes - do your thing"
142
  msgstr "Да, делайте то, что Вам нужно. "
143
 
144
+ #: includes/class-freemius.php:3789
145
  msgid "No - just deactivate"
146
  msgstr "Нет. Нужно деактивировать. "
147
 
148
+ #: includes/class-freemius.php3834, includes/class-freemius.php4343,
149
+ #: includes/class-freemius.php5442, includes/class-freemius.php11545,
150
+ #: includes/class-freemius.php14916, includes/class-freemius.php14968,
151
+ #: includes/class-freemius.php15030, includes/class-freemius.php17263,
152
+ #: includes/class-freemius.php17273, includes/class-freemius.php17882,
153
+ #: includes/class-freemius.php18742, includes/class-freemius.php18857,
154
+ #: includes/class-freemius.php19001, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Упс!"
158
 
159
+ #: includes/class-freemius.php:3903
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. "
162
 
163
+ #: includes/class-freemius.php:4340
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s не работает без %s."
167
 
168
+ #: includes/class-freemius.php:4341
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s не может работать без плагина. "
172
 
173
+ #: includes/class-freemius.php4487, includes/class-freemius.php4512,
174
+ #: includes/class-freemius.php:17953
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. "
177
 
178
+ #: includes/class-freemius.php:5130
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "Премиум версия %s была успешно активирована. "
181
 
182
+ #: includes/class-freemius.php5142, includes/class-freemius.php:7004
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "Вау!"
186
 
187
+ #: includes/class-freemius.php:5157
188
  msgid "You have a %s license."
189
  msgstr "У Вас есть лицензия %s."
190
 
191
+ #: includes/class-freemius.php5161, includes/class-freemius.php14337,
192
+ #: includes/class-freemius.php14348, includes/class-freemius.php17177,
193
+ #: includes/class-freemius.php17491, includes/class-freemius.php17557,
194
+ #: includes/class-freemius.php:17707
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Ура!"
198
 
199
+ #: includes/class-freemius.php:5425
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. "
202
 
203
+ #: includes/class-freemius.php:5429
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. "
206
 
207
+ #: includes/class-freemius.php5438, templates/add-ons.php103,
208
  #: templates/account/partials/addon.php:288
209
  msgid "More information about %s"
210
  msgstr "Больше информации о %s"
211
 
212
+ #: includes/class-freemius.php:5439
213
  msgid "Purchase License"
214
  msgstr "Купите лицензию "
215
 
216
+ #: includes/class-freemius.php6372, templates/connect.php:163
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. "
219
 
220
+ #: includes/class-freemius.php:6376
221
  msgid "start the trial"
222
  msgstr "Начать тестовый период"
223
 
224
+ #: includes/class-freemius.php6377, templates/connect.php:167
225
  msgid "complete the install"
226
  msgstr "Закончить установку"
227
 
228
+ #: includes/class-freemius.php:6490
229
  msgid "You are just one step away - %s"
230
  msgstr "Вам осталось совсем немножко %s"
231
 
232
+ #: includes/class-freemius.php:6493
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Закончить активацию %s сейчас "
236
 
237
+ #: includes/class-freemius.php:6571
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Мы усовершенствовали в %s, %s для лучшей работы "
240
 
241
+ #: includes/class-freemius.php:6575
242
  msgid "Opt in to make \"%s\" better!"
243
  msgstr "Opt in to make \"%s\" better!"
244
 
245
+ #: includes/class-freemius.php:7003
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "Обновление %s было успешно завершено"
248
 
249
+ #: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
250
+ #: includes/class-fs-plugin-updater.php1081,
251
+ #: includes/class-fs-plugin-updater.php1088,
252
  #: templates/auto-installation.php:32
253
  msgid "Add-On"
254
  msgstr "Функционал плагина "
255
 
256
+ #: includes/class-freemius.php8927, templates/debug.php359,
257
  #: templates/debug.php:520
258
  msgid "Plugin"
259
  msgstr "Плагин "
260
 
261
+ #: includes/class-freemius.php8928, templates/debug.php359,
262
  #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
  msgid "Theme"
264
  msgstr "Шаблон "
265
 
266
+ #: includes/class-freemius.php:11412
267
  msgid "Invalid site details collection."
268
  msgstr "Invalid site details collection."
269
 
270
+ #: includes/class-freemius.php:11532
271
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
  msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
273
 
274
+ #: includes/class-freemius.php:11534
275
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
  msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
277
 
278
+ #: includes/class-freemius.php:11808
279
  msgid "Account is pending activation."
280
  msgstr "Учетная запись в процессе активации"
281
 
282
+ #: includes/class-freemius.php11920,
283
  #: templates/forms/premium-versions-upgrade-handler.php:47
284
  msgid "Buy a license now"
285
  msgstr "Buy a license now"
286
 
287
+ #: includes/class-freemius.php11932,
288
  #: templates/forms/premium-versions-upgrade-handler.php:46
289
  msgid "Renew your license now"
290
  msgstr "Renew your license now"
291
 
292
+ #: includes/class-freemius.php:11936
293
  msgid "%s to access version %s security & feature updates, and support."
294
  msgstr "%s to access version %s security & feature updates, and support."
295
 
296
+ #: includes/class-freemius.php:14319
297
  msgid "%s activation was successfully completed."
298
  msgstr "Активация %s была успешно завершена"
299
 
300
+ #: includes/class-freemius.php:14333
301
  msgid "Your account was successfully activated with the %s plan."
302
  msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
303
 
304
+ #: includes/class-freemius.php14344, includes/class-freemius.php:17553
305
  msgid "Your trial has been successfully started."
306
  msgstr "Ваш тестовый период успешно начат"
307
 
308
+ #: includes/class-freemius.php14914, includes/class-freemius.php14966,
309
+ #: includes/class-freemius.php:15028
310
  msgid "Couldn't activate %s."
311
  msgstr "Невозможно активировать %s"
312
 
313
+ #: includes/class-freemius.php14915, includes/class-freemius.php14967,
314
+ #: includes/class-freemius.php:15029
315
  msgid "Please contact us with the following message:"
316
  msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
317
 
318
+ #: includes/class-freemius.php15378, includes/class-freemius.php:19839
319
  msgid "Upgrade"
320
  msgstr "Сделать апгрейд "
321
 
322
+ #: includes/class-freemius.php:15384
323
  msgid "Start Trial"
324
  msgstr "Начать тестовый период"
325
 
326
+ #: includes/class-freemius.php:15386
327
  msgid "Pricing"
328
  msgstr "Цены "
329
 
330
+ #: includes/class-freemius.php15448, includes/class-freemius.php:15450
331
  msgid "Affiliation"
332
  msgstr "Партнерство "
333
 
334
+ #: includes/class-freemius.php15478, includes/class-freemius.php15480,
335
  #: templates/account.php150, templates/debug.php:324
336
  msgid "Account"
337
  msgstr "Личный кабинет"
338
 
339
+ #: includes/class-freemius.php15493, includes/class-freemius.php15495,
340
  #: includes/customizer/class-fs-customizer-support-section.php:60
341
  msgid "Contact Us"
342
  msgstr "Контакты "
343
 
344
+ #: includes/class-freemius.php15505, includes/class-freemius.php15507,
345
+ #: includes/class-freemius.php19849, templates/account.php100,
346
  #: templates/account/partials/addon.php:41
347
  msgid "Add-Ons"
348
  msgstr "Настройки плагина "
349
 
350
+ #: includes/class-freemius.php:15541
351
  msgctxt "ASCII arrow left icon"
352
  msgid "&#x2190;"
353
  msgstr "&#x2190;"
354
 
355
+ #: includes/class-freemius.php:15541
356
  msgctxt "ASCII arrow right icon"
357
  msgid "&#x27a4;"
358
  msgstr "&#x27a4;"
359
 
360
+ #: includes/class-freemius.php15543, templates/pricing.php:97
361
  msgctxt "noun"
362
  msgid "Pricing"
363
  msgstr "Цены"
364
 
365
+ #: includes/class-freemius.php15756,
366
  #: includes/customizer/class-fs-customizer-support-section.php:67
367
  msgid "Support Forum"
368
  msgstr "Форум поддержки "
369
 
370
+ #: includes/class-freemius.php:16542
371
  msgid "Your email has been successfully verified - you are AWESOME!"
372
  msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
373
 
374
+ #: includes/class-freemius.php:16543
375
  msgctxt "a positive response"
376
  msgid "Right on"
377
  msgstr "Все верно!"
378
 
379
+ #: includes/class-freemius.php:17168
380
  msgid "Your %s Add-on plan was successfully upgraded."
381
  msgstr "Ваш %s план был успешно обновлен"
382
 
383
+ #: includes/class-freemius.php:17170
384
  msgid "%s Add-on was successfully purchased."
385
  msgstr "Покупка %s плагина успешно состоялась"
386
 
387
+ #: includes/class-freemius.php:17173
388
  msgid "Download the latest version"
389
  msgstr "Скачай последнюю версию"
390
 
391
+ #: includes/class-freemius.php:17259
392
  msgctxt "%1s - plugin title, %2s - API domain"
393
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
  msgstr "Ваш сервер блокирует доступ к Freemius' API, что является очень важным для синхронизации с %1s. Пожалуйста, свяжитесь с Вашим хостинг провайдером для разрешения доступа к %2s "
395
 
396
+ #: includes/class-freemius.php17262, includes/class-freemius.php17678,
397
+ #: includes/class-freemius.php:17755
398
  msgid "Error received from the server:"
399
  msgstr "Ошибка сервера"
400
 
401
+ #: includes/class-freemius.php:17272
402
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
  msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
404
 
405
+ #: includes/class-freemius.php17454, includes/class-freemius.php17683,
406
+ #: includes/class-freemius.php17726, includes/class-freemius.php:17829
407
  msgctxt ""
408
  msgid "Hmm"
409
  msgstr "Хм..."
410
 
411
+ #: includes/class-freemius.php:17467
412
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
  msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
414
 
415
+ #: includes/class-freemius.php17468, templates/account.php102,
416
  #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
  msgctxt "trial period"
418
  msgid "Trial"
419
  msgstr "Тестовый период"
420
 
421
+ #: includes/class-freemius.php:17473
422
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
  msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
424
 
425
+ #: includes/class-freemius.php17477, includes/class-freemius.php:17535
426
  msgid "Please contact us here"
427
  msgstr "Пожалуйста, напишите нам сообщение здесь. "
428
 
429
+ #: includes/class-freemius.php:17487
430
  msgid "Your plan was successfully upgraded."
431
  msgstr "Ваш тарифный план был успешно изменен. "
432
 
433
+ #: includes/class-freemius.php:17505
434
  msgid "Your plan was successfully changed to %s."
435
  msgstr "Ваш тарифный план был успешно изменен на %s."
436
 
437
+ #: includes/class-freemius.php:17521
438
  msgid "Your license has expired. You can still continue using the free %s forever."
439
  msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
440
 
441
+ #: includes/class-freemius.php:17523
442
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
 
445
+ #: includes/class-freemius.php:17531
446
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
  msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
448
 
449
+ #: includes/class-freemius.php:17544
450
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
  msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
452
 
453
+ #: includes/class-freemius.php:17567
454
  msgid "Your free trial has expired. You can still continue using all our free features."
455
  msgstr "Your free trial has expired. You can still continue using all our free features."
456
 
457
+ #: includes/class-freemius.php:17569
458
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
 
461
+ #: includes/class-freemius.php:17674
462
  msgid "It looks like the license could not be activated."
463
  msgstr "Вероятно возникли трудности с активацией лицензии. "
464
 
465
+ #: includes/class-freemius.php:17704
466
  msgid "Your license was successfully activated."
467
  msgstr "Ваша лицензия была успешно активирована. "
468
 
469
+ #: includes/class-freemius.php:17730
470
  msgid "It looks like your site currently doesn't have an active license."
471
  msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
472
 
473
+ #: includes/class-freemius.php:17754
474
  msgid "It looks like the license deactivation failed."
475
  msgstr "Вероятно деактивация лицензии не состоялась. "
476
 
477
+ #: includes/class-freemius.php:17782
478
  msgid "Your license was successfully deactivated, you are back to the %s plan."
479
  msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
480
 
481
+ #: includes/class-freemius.php:17783
482
  msgid "O.K"
483
  msgstr "O.K."
484
 
485
+ #: includes/class-freemius.php:17836
486
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
 
489
+ #: includes/class-freemius.php:17845
490
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
 
493
+ #: includes/class-freemius.php:17887
494
  msgid "You are already running the %s in a trial mode."
495
  msgstr "Вы уже пользуетесь тестовой версией %s "
496
 
497
+ #: includes/class-freemius.php:17898
498
  msgid "You already utilized a trial before."
499
  msgstr "Вы уже использовали Ваш тестовый период"
500
 
501
+ #: includes/class-freemius.php:17912
502
  msgid "Plan %s do not exist, therefore, can't start a trial."
503
  msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
504
 
505
+ #: includes/class-freemius.php:17923
506
  msgid "Plan %s does not support a trial period."
507
  msgstr "Тарифный план % не предусматривает тестового периода. "
508
 
509
+ #: includes/class-freemius.php:17934
510
  msgid "None of the %s's plans supports a trial period."
511
  msgstr "Тарифные планы %s не предусматривают тестовый период. "
512
 
513
+ #: includes/class-freemius.php:17984
514
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
  msgstr "Возможно, Ваш тестовый период уже закончился. "
516
 
517
+ #: includes/class-freemius.php:18020
518
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
  msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
520
 
521
+ #: includes/class-freemius.php:18039
522
  msgid "Your %s free trial was successfully cancelled."
523
  msgstr "Ваш бесплатный тестовый период был успешно отменен. "
524
 
525
+ #: includes/class-freemius.php:18346
526
  msgid "Version %s was released."
527
  msgstr "Релиз версии %s состоялся. "
528
 
529
+ #: includes/class-freemius.php:18346
530
  msgid "Please download %s."
531
  msgstr "Пожалуйста, скачайте %s"
532
 
533
+ #: includes/class-freemius.php:18353
534
  msgid "the latest %s version here"
535
  msgstr "Последняя версия %s здесь"
536
 
537
+ #: includes/class-freemius.php:18358
538
  msgid "New"
539
  msgstr "Новое "
540
 
541
+ #: includes/class-freemius.php:18363
542
  msgid "Seems like you got the latest release."
543
  msgstr "Вероятно, Вы пользуетесь последней версией"
544
 
545
+ #: includes/class-freemius.php:18364
546
  msgid "You are all good!"
547
  msgstr "Все прошло хорошо!"
548
 
549
+ #: includes/class-freemius.php:18632
550
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
  msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
552
 
553
+ #: includes/class-freemius.php:18769
554
  msgid "Site successfully opted in."
555
  msgstr "Site successfully opted in."
556
 
557
+ #: includes/class-freemius.php18770, includes/class-freemius.php:19581
558
  msgid "Awesome"
559
  msgstr "Отлично!"
560
 
561
+ #: includes/class-freemius.php18786, templates/forms/optout.php:32
562
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
  msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
564
 
565
+ #: includes/class-freemius.php:18787
566
  msgid "Thank you!"
567
  msgstr "Thank you!"
568
 
569
+ #: includes/class-freemius.php:18794
570
  msgid "We will no longer be sending any usage data of %s on %s to %s."
571
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
572
 
573
+ #: includes/class-freemius.php:18923
574
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
  msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
576
 
577
+ #: includes/class-freemius.php:18929
578
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
  msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
580
 
581
+ #: includes/class-freemius.php:18934
582
  msgid "%s is the new owner of the account."
583
  msgstr "%я является новым владельцем аккаунта"
584
 
585
+ #: includes/class-freemius.php:18936
586
  msgctxt "as congratulations"
587
  msgid "Congrats"
588
  msgstr "Поздравления! "
589
 
590
+ #: includes/class-freemius.php:18956
591
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
  msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
593
 
594
+ #: includes/class-freemius.php:18957
595
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
  msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
597
 
598
+ #: includes/class-freemius.php:18964
599
  msgid "Change Ownership"
600
  msgstr "Сменить владельца лицензии "
601
 
602
+ #: includes/class-freemius.php:18972
603
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
  msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
605
 
606
+ #: includes/class-freemius.php:18984
607
  msgid "Please provide your full name."
608
  msgstr "Пожалуйста, введите Ваше полное имя"
609
 
610
+ #: includes/class-freemius.php:18989
611
  msgid "Your name was successfully updated."
612
  msgstr "Ваше имя было успешно обновлено"
613
 
614
+ #: includes/class-freemius.php:19050
615
  msgid "You have successfully updated your %s."
616
  msgstr "Вы успешно обновили Ваш %s"
617
 
618
+ #: includes/class-freemius.php:19190
619
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
  msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
621
 
622
+ #: includes/class-freemius.php:19191
623
  msgctxt "advance notice of something that will need attention."
624
  msgid "Heads up"
625
  msgstr "Внимание!"
626
 
627
+ #: includes/class-freemius.php:19621
628
  msgctxt "exclamation"
629
  msgid "Hey"
630
  msgstr "Привет!"
631
 
632
+ #: includes/class-freemius.php:19621
633
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
  msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
635
 
636
+ #: includes/class-freemius.php:19629
637
  msgid "No commitment for %s days - cancel anytime!"
638
  msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
639
 
640
+ #: includes/class-freemius.php:19630
641
  msgid "No credit card required"
642
  msgstr "Не требуются данные платежной карты"
643
 
644
+ #: includes/class-freemius.php19637, templates/forms/trial-start.php:53
645
  msgctxt "call to action"
646
  msgid "Start free trial"
647
  msgstr "Начни тестовый период!"
648
 
649
+ #: includes/class-freemius.php:19714
650
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
  msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
652
 
653
+ #: includes/class-freemius.php:19723
654
  msgid "Learn more"
655
  msgstr "Узнать больше"
656
 
657
+ #: includes/class-freemius.php19873, templates/account.php406,
658
  #: templates/account.php509, templates/connect.php171,
659
  #: templates/connect.php421, templates/forms/license-activation.php24,
660
  #: templates/account/partials/addon.php:235
661
  msgid "Activate License"
662
  msgstr "Активировать лицензию"
663
 
664
+ #: includes/class-freemius.php19874, templates/account.php469,
665
  #: templates/account.php508, templates/account/partials/site.php:256
666
  msgid "Change License"
667
  msgstr "Изменить лицензию "
668
 
669
+ #: includes/class-freemius.php19956, templates/account/partials/site.php:161
670
  msgid "Opt Out"
671
  msgstr "Отказаться от использования"
672
 
673
+ #: includes/class-freemius.php19958, includes/class-freemius.php19963,
674
  #: templates/account/partials/site.php43,
675
  #: templates/account/partials/site.php:161
676
  msgid "Opt In"
677
  msgstr "Присоединиться"
678
 
679
+ #: includes/class-freemius.php:20187
680
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
  msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
 
683
+ #: includes/class-freemius.php:20195
684
  msgid "Activate %s features"
685
  msgstr "Activate %s features"
686
 
687
+ #: includes/class-freemius.php:20208
688
  msgid "Please follow these steps to complete the upgrade"
689
  msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
690
 
691
+ #: includes/class-freemius.php:20212
692
  msgid "Download the latest %s version"
693
  msgstr "Скачайте последнюю версию %s"
694
 
695
+ #: includes/class-freemius.php:20216
696
  msgid "Upload and activate the downloaded version"
697
  msgstr "Загрузите и активируйте скачанную версию"
698
 
699
+ #: includes/class-freemius.php:20218
700
  msgid "How to upload and activate?"
701
  msgstr "Как загрузить и активировать?"
702
 
703
+ #: includes/class-freemius.php:20352
704
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
706
 
707
+ #: includes/class-freemius.php:20513
708
  msgid "Auto installation only works for opted-in users."
709
  msgstr "Авто установка работает только для зарегистрированных пользователей."
710
 
711
+ #: includes/class-freemius.php20523, includes/class-freemius.php20556,
712
+ #: includes/class-fs-plugin-updater.php1060,
713
+ #: includes/class-fs-plugin-updater.php:1074
714
  msgid "Invalid module ID."
715
  msgstr "Неверный ID модуля"
716
 
717
+ #: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
718
  msgid "Premium version already active."
719
  msgstr "Премиум версия уже активирована"
720
 
721
+ #: includes/class-freemius.php:20539
722
  msgid "You do not have a valid license to access the premium version."
723
  msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
724
 
725
+ #: includes/class-freemius.php:20546
726
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
  msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
728
 
729
+ #: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
730
  msgid "Premium add-on version already installed."
731
  msgstr "Премиум версия плагина была установлена"
732
 
733
+ #: includes/class-freemius.php:20909
734
  msgid "View paid features"
735
  msgstr "Просмотр платных возможностей"
736
 
737
+ #: includes/class-freemius.php:21229
738
  msgid "Thank you so much for using %s and its add-ons!"
739
  msgstr "Thank you so much for using %s and its add-ons!"
740
 
741
+ #: includes/class-freemius.php:21230
742
  msgid "Thank you so much for using %s!"
743
  msgstr "Thank you so much for using %s!"
744
 
745
+ #: includes/class-freemius.php:21236
746
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
 
749
+ #: includes/class-freemius.php:21240
750
  msgid "Thank you so much for using our products!"
751
  msgstr "Thank you so much for using our products!"
752
 
753
+ #: includes/class-freemius.php:21241
754
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
 
757
+ #: includes/class-freemius.php:21260
758
  msgid "%s and its add-ons"
759
  msgstr "%s and its add-ons"
760
 
761
+ #: includes/class-freemius.php:21269
762
  msgid "Products"
763
  msgstr "Products"
764
 
765
+ #: includes/class-freemius.php21276, templates/connect.php:272
766
  msgid "Yes"
767
  msgstr "Yes"
768
 
769
+ #: includes/class-freemius.php21277, templates/connect.php:273
770
  msgid "send me security & feature updates, educational content and offers."
771
  msgstr "send me security & feature updates, educational content and offers."
772
 
773
+ #: includes/class-freemius.php21278, templates/connect.php:278
774
  msgid "No"
775
  msgstr "No"
776
 
777
+ #: includes/class-freemius.php21280, templates/connect.php:280
778
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
780
 
781
+ #: includes/class-freemius.php:21290
782
  msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
  msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
 
785
+ #: includes/class-freemius.php21292, templates/connect.php:287
786
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
 
789
+ #: includes/class-freemius.php:21574
790
  msgid "License key is empty."
791
  msgstr "License key is empty."
792
 
808
  msgid "new version"
809
  msgstr "new version"
810
 
811
+ #: includes/class-fs-plugin-updater.php:305
812
  msgid "Important Upgrade Notice:"
813
  msgstr "Important Upgrade Notice:"
814
 
815
+ #: includes/class-fs-plugin-updater.php:1125
816
  msgid "Installing plugin: %s"
817
  msgstr "Установка плагина: %s"
818
 
819
+ #: includes/class-fs-plugin-updater.php:1166
820
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
  msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
822
 
823
+ #: includes/class-fs-plugin-updater.php:1348
824
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
  msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
826
 
freemius/languages/freemius.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2018 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
@@ -16,736 +16,736 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/class-freemius.php:1602
20
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
21
  msgstr ""
22
 
23
- #: includes/class-freemius.php:1604
24
  msgid "Error"
25
  msgstr ""
26
 
27
- #: includes/class-freemius.php:1925
28
  msgid "I found a better %s"
29
  msgstr ""
30
 
31
- #: includes/class-freemius.php:1927
32
  msgid "What's the %s's name?"
33
  msgstr ""
34
 
35
- #: includes/class-freemius.php:1933
36
  msgid "It's a temporary %s. I'm just debugging an issue."
37
  msgstr ""
38
 
39
- #: includes/class-freemius.php:1935
40
  msgid "Deactivation"
41
  msgstr ""
42
 
43
- #: includes/class-freemius.php:1936
44
  msgid "Theme Switch"
45
  msgstr ""
46
 
47
- #: includes/class-freemius.php:1945, templates/forms/resend-key.php:24
48
  msgid "Other"
49
  msgstr ""
50
 
51
- #: includes/class-freemius.php:1953
52
  msgid "I no longer need the %s"
53
  msgstr ""
54
 
55
- #: includes/class-freemius.php:1960
56
  msgid "I only needed the %s for a short period"
57
  msgstr ""
58
 
59
- #: includes/class-freemius.php:1966
60
  msgid "The %s broke my site"
61
  msgstr ""
62
 
63
- #: includes/class-freemius.php:1973
64
  msgid "The %s suddenly stopped working"
65
  msgstr ""
66
 
67
- #: includes/class-freemius.php:1983
68
  msgid "I can't pay for it anymore"
69
  msgstr ""
70
 
71
- #: includes/class-freemius.php:1985
72
  msgid "What price would you feel comfortable paying?"
73
  msgstr ""
74
 
75
- #: includes/class-freemius.php:1991
76
  msgid "I don't like to share my information with you"
77
  msgstr ""
78
 
79
- #: includes/class-freemius.php:2012
80
  msgid "The %s didn't work"
81
  msgstr ""
82
 
83
- #: includes/class-freemius.php:2022
84
  msgid "I couldn't understand how to make it work"
85
  msgstr ""
86
 
87
- #: includes/class-freemius.php:2030
88
  msgid "The %s is great, but I need specific feature that you don't support"
89
  msgstr ""
90
 
91
- #: includes/class-freemius.php:2032
92
  msgid "What feature?"
93
  msgstr ""
94
 
95
- #: includes/class-freemius.php:2036
96
  msgid "The %s is not working"
97
  msgstr ""
98
 
99
- #: includes/class-freemius.php:2038
100
  msgid "Kindly share what didn't work so we can fix it for future users..."
101
  msgstr ""
102
 
103
- #: includes/class-freemius.php:2042
104
  msgid "It's not what I was looking for"
105
  msgstr ""
106
 
107
- #: includes/class-freemius.php:2044
108
  msgid "What you've been looking for?"
109
  msgstr ""
110
 
111
- #: includes/class-freemius.php:2048
112
  msgid "The %s didn't work as expected"
113
  msgstr ""
114
 
115
- #: includes/class-freemius.php:2050
116
  msgid "What did you expect?"
117
  msgstr ""
118
 
119
- #: includes/class-freemius.php:2856, templates/debug.php:20
120
  msgid "Freemius Debug"
121
  msgstr ""
122
 
123
- #: includes/class-freemius.php:3584
124
  msgid "I don't know what is cURL or how to install it, help me!"
125
  msgstr ""
126
 
127
- #: includes/class-freemius.php:3586
128
  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."
129
  msgstr ""
130
 
131
- #: includes/class-freemius.php:3593
132
  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."
133
  msgstr ""
134
 
135
- #: includes/class-freemius.php:3698
136
  msgid "Yes - do your thing"
137
  msgstr ""
138
 
139
- #: includes/class-freemius.php:3703
140
  msgid "No - just deactivate"
141
  msgstr ""
142
 
143
- #: includes/class-freemius.php:3748, includes/class-freemius.php:4256, includes/class-freemius.php:5321, includes/class-freemius.php:11323, includes/class-freemius.php:14656, includes/class-freemius.php:14708, includes/class-freemius.php:14770, includes/class-freemius.php:16986, includes/class-freemius.php:16996, includes/class-freemius.php:17605, includes/class-freemius.php:18463, includes/class-freemius.php:18578, includes/class-freemius.php:18722, templates/add-ons.php:43
144
  msgctxt "exclamation"
145
  msgid "Oops"
146
  msgstr ""
147
 
148
- #: includes/class-freemius.php:3817
149
  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."
150
  msgstr ""
151
 
152
- #: includes/class-freemius.php:4253
153
  msgctxt "addonX cannot run without pluginY"
154
  msgid "%s cannot run without %s."
155
  msgstr ""
156
 
157
- #: includes/class-freemius.php:4254
158
  msgctxt "addonX cannot run..."
159
  msgid "%s cannot run without the plugin."
160
  msgstr ""
161
 
162
- #: includes/class-freemius.php:4366, includes/class-freemius.php:4391, includes/class-freemius.php:17676
163
  msgid "Unexpected API error. Please contact the %s's author with the following error."
164
  msgstr ""
165
 
166
- #: includes/class-freemius.php:5009
167
  msgid "Premium %s version was successfully activated."
168
  msgstr ""
169
 
170
- #: includes/class-freemius.php:5021, includes/class-freemius.php:6865
171
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
172
  msgid "W00t"
173
  msgstr ""
174
 
175
- #: includes/class-freemius.php:5036
176
  msgid "You have a %s license."
177
  msgstr ""
178
 
179
- #: includes/class-freemius.php:5040, includes/class-freemius.php:14077, includes/class-freemius.php:14088, includes/class-freemius.php:16914, includes/class-freemius.php:17214, includes/class-freemius.php:17280, includes/class-freemius.php:17430
180
  msgctxt "interjection expressing joy or exuberance"
181
  msgid "Yee-haw"
182
  msgstr ""
183
 
184
- #: includes/class-freemius.php:5304
185
  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."
186
  msgstr ""
187
 
188
- #: includes/class-freemius.php:5308
189
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
190
  msgstr ""
191
 
192
- #: includes/class-freemius.php:5317, templates/add-ons.php:103, templates/account/partials/addon.php:288
193
  msgid "More information about %s"
194
  msgstr ""
195
 
196
- #: includes/class-freemius.php:5318
197
  msgid "Purchase License"
198
  msgstr ""
199
 
200
- #: includes/class-freemius.php:6233, templates/connect.php:163
201
  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."
202
  msgstr ""
203
 
204
- #: includes/class-freemius.php:6237
205
  msgid "start the trial"
206
  msgstr ""
207
 
208
- #: includes/class-freemius.php:6238, templates/connect.php:167
209
  msgid "complete the install"
210
  msgstr ""
211
 
212
- #: includes/class-freemius.php:6351
213
  msgid "You are just one step away - %s"
214
  msgstr ""
215
 
216
- #: includes/class-freemius.php:6354
217
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
218
  msgid "Complete \"%s\" Activation Now"
219
  msgstr ""
220
 
221
- #: includes/class-freemius.php:6432
222
  msgid "We made a few tweaks to the %s, %s"
223
  msgstr ""
224
 
225
- #: includes/class-freemius.php:6436
226
  msgid "Opt in to make \"%s\" better!"
227
  msgstr ""
228
 
229
- #: includes/class-freemius.php:6864
230
  msgid "The upgrade of %s was successfully completed."
231
  msgstr ""
232
 
233
- #: includes/class-freemius.php:8712, includes/class-fs-plugin-updater.php:882, includes/class-fs-plugin-updater.php:1077, includes/class-fs-plugin-updater.php:1084, templates/auto-installation.php:32
234
  msgid "Add-On"
235
  msgstr ""
236
 
237
- #: includes/class-freemius.php:8714, templates/debug.php:359, templates/debug.php:520
238
  msgid "Plugin"
239
  msgstr ""
240
 
241
- #: includes/class-freemius.php:8715, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
242
  msgid "Theme"
243
  msgstr ""
244
 
245
- #: includes/class-freemius.php:11190
246
  msgid "Invalid site details collection."
247
  msgstr ""
248
 
249
- #: includes/class-freemius.php:11310
250
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
251
  msgstr ""
252
 
253
- #: includes/class-freemius.php:11312
254
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
255
  msgstr ""
256
 
257
- #: includes/class-freemius.php:11548
258
  msgid "Account is pending activation."
259
  msgstr ""
260
 
261
- #: includes/class-freemius.php:11660, templates/forms/premium-versions-upgrade-handler.php:47
262
  msgid "Buy a license now"
263
  msgstr ""
264
 
265
- #: includes/class-freemius.php:11672, templates/forms/premium-versions-upgrade-handler.php:46
266
  msgid "Renew your license now"
267
  msgstr ""
268
 
269
- #: includes/class-freemius.php:11676
270
  msgid "%s to access version %s security & feature updates, and support."
271
  msgstr ""
272
 
273
- #: includes/class-freemius.php:14059
274
  msgid "%s activation was successfully completed."
275
  msgstr ""
276
 
277
- #: includes/class-freemius.php:14073
278
  msgid "Your account was successfully activated with the %s plan."
279
  msgstr ""
280
 
281
- #: includes/class-freemius.php:14084, includes/class-freemius.php:17276
282
  msgid "Your trial has been successfully started."
283
  msgstr ""
284
 
285
- #: includes/class-freemius.php:14654, includes/class-freemius.php:14706, includes/class-freemius.php:14768
286
  msgid "Couldn't activate %s."
287
  msgstr ""
288
 
289
- #: includes/class-freemius.php:14655, includes/class-freemius.php:14707, includes/class-freemius.php:14769
290
  msgid "Please contact us with the following message:"
291
  msgstr ""
292
 
293
- #: includes/class-freemius.php:15118, includes/class-freemius.php:19560
294
  msgid "Upgrade"
295
  msgstr ""
296
 
297
- #: includes/class-freemius.php:15124
298
  msgid "Start Trial"
299
  msgstr ""
300
 
301
- #: includes/class-freemius.php:15126
302
  msgid "Pricing"
303
  msgstr ""
304
 
305
- #: includes/class-freemius.php:15188, includes/class-freemius.php:15190
306
  msgid "Affiliation"
307
  msgstr ""
308
 
309
- #: includes/class-freemius.php:15218, includes/class-freemius.php:15220, templates/account.php:150, templates/debug.php:324
310
  msgid "Account"
311
  msgstr ""
312
 
313
- #: includes/class-freemius.php:15233, includes/class-freemius.php:15235, includes/customizer/class-fs-customizer-support-section.php:60
314
  msgid "Contact Us"
315
  msgstr ""
316
 
317
- #: includes/class-freemius.php:15245, includes/class-freemius.php:15247, includes/class-freemius.php:19570, templates/account.php:100, templates/account/partials/addon.php:41
318
  msgid "Add-Ons"
319
  msgstr ""
320
 
321
- #: includes/class-freemius.php:15281
322
  msgctxt "ASCII arrow left icon"
323
  msgid "&#x2190;"
324
  msgstr ""
325
 
326
- #: includes/class-freemius.php:15281
327
  msgctxt "ASCII arrow right icon"
328
  msgid "&#x27a4;"
329
  msgstr ""
330
 
331
- #: includes/class-freemius.php:15283, templates/pricing.php:97
332
  msgctxt "noun"
333
  msgid "Pricing"
334
  msgstr ""
335
 
336
- #: includes/class-freemius.php:15496, includes/customizer/class-fs-customizer-support-section.php:67
337
  msgid "Support Forum"
338
  msgstr ""
339
 
340
- #: includes/class-freemius.php:16282
341
  msgid "Your email has been successfully verified - you are AWESOME!"
342
  msgstr ""
343
 
344
- #: includes/class-freemius.php:16283
345
  msgctxt "a positive response"
346
  msgid "Right on"
347
  msgstr ""
348
 
349
- #: includes/class-freemius.php:16905
350
  msgid "Your %s Add-on plan was successfully upgraded."
351
  msgstr ""
352
 
353
- #: includes/class-freemius.php:16907
354
  msgid "%s Add-on was successfully purchased."
355
  msgstr ""
356
 
357
- #: includes/class-freemius.php:16910
358
  msgid "Download the latest version"
359
  msgstr ""
360
 
361
- #: includes/class-freemius.php:16982
362
  msgctxt "%1s - plugin title, %2s - API domain"
363
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
364
  msgstr ""
365
 
366
- #: includes/class-freemius.php:16985, includes/class-freemius.php:17401, includes/class-freemius.php:17478
367
  msgid "Error received from the server:"
368
  msgstr ""
369
 
370
- #: includes/class-freemius.php:16995
371
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
372
  msgstr ""
373
 
374
- #: includes/class-freemius.php:17177, includes/class-freemius.php:17406, includes/class-freemius.php:17449, includes/class-freemius.php:17552
375
  msgctxt "something somebody says when they are thinking about what you have just said."
376
  msgid "Hmm"
377
  msgstr ""
378
 
379
- #: includes/class-freemius.php:17190
380
  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."
381
  msgstr ""
382
 
383
- #: includes/class-freemius.php:17191, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
384
  msgctxt "trial period"
385
  msgid "Trial"
386
  msgstr ""
387
 
388
- #: includes/class-freemius.php:17196
389
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
390
  msgstr ""
391
 
392
- #: includes/class-freemius.php:17200, includes/class-freemius.php:17258
393
  msgid "Please contact us here"
394
  msgstr ""
395
 
396
- #: includes/class-freemius.php:17210
397
  msgid "Your plan was successfully upgraded."
398
  msgstr ""
399
 
400
- #: includes/class-freemius.php:17228
401
  msgid "Your plan was successfully changed to %s."
402
  msgstr ""
403
 
404
- #: includes/class-freemius.php:17244
405
  msgid "Your license has expired. You can still continue using the free %s forever."
406
  msgstr ""
407
 
408
- #: includes/class-freemius.php:17246
409
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
410
  msgstr ""
411
 
412
- #: includes/class-freemius.php:17254
413
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
414
  msgstr ""
415
 
416
- #: includes/class-freemius.php:17267
417
  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."
418
  msgstr ""
419
 
420
- #: includes/class-freemius.php:17290
421
  msgid "Your free trial has expired. You can still continue using all our free features."
422
  msgstr ""
423
 
424
- #: includes/class-freemius.php:17292
425
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
426
  msgstr ""
427
 
428
- #: includes/class-freemius.php:17397
429
  msgid "It looks like the license could not be activated."
430
  msgstr ""
431
 
432
- #: includes/class-freemius.php:17427
433
  msgid "Your license was successfully activated."
434
  msgstr ""
435
 
436
- #: includes/class-freemius.php:17453
437
  msgid "It looks like your site currently doesn't have an active license."
438
  msgstr ""
439
 
440
- #: includes/class-freemius.php:17477
441
  msgid "It looks like the license deactivation failed."
442
  msgstr ""
443
 
444
- #: includes/class-freemius.php:17505
445
  msgid "Your license was successfully deactivated, you are back to the %s plan."
446
  msgstr ""
447
 
448
- #: includes/class-freemius.php:17506
449
  msgid "O.K"
450
  msgstr ""
451
 
452
- #: includes/class-freemius.php:17559
453
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
454
  msgstr ""
455
 
456
- #: includes/class-freemius.php:17568
457
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
458
  msgstr ""
459
 
460
- #: includes/class-freemius.php:17610
461
  msgid "You are already running the %s in a trial mode."
462
  msgstr ""
463
 
464
- #: includes/class-freemius.php:17621
465
  msgid "You already utilized a trial before."
466
  msgstr ""
467
 
468
- #: includes/class-freemius.php:17635
469
  msgid "Plan %s do not exist, therefore, can't start a trial."
470
  msgstr ""
471
 
472
- #: includes/class-freemius.php:17646
473
  msgid "Plan %s does not support a trial period."
474
  msgstr ""
475
 
476
- #: includes/class-freemius.php:17657
477
  msgid "None of the %s's plans supports a trial period."
478
  msgstr ""
479
 
480
- #: includes/class-freemius.php:17707
481
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
482
  msgstr ""
483
 
484
- #: includes/class-freemius.php:17743
485
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
486
  msgstr ""
487
 
488
- #: includes/class-freemius.php:17762
489
  msgid "Your %s free trial was successfully cancelled."
490
  msgstr ""
491
 
492
- #: includes/class-freemius.php:18069
493
  msgid "Version %s was released."
494
  msgstr ""
495
 
496
- #: includes/class-freemius.php:18069
497
  msgid "Please download %s."
498
  msgstr ""
499
 
500
- #: includes/class-freemius.php:18076
501
  msgid "the latest %s version here"
502
  msgstr ""
503
 
504
- #: includes/class-freemius.php:18081
505
  msgid "New"
506
  msgstr ""
507
 
508
- #: includes/class-freemius.php:18086
509
  msgid "Seems like you got the latest release."
510
  msgstr ""
511
 
512
- #: includes/class-freemius.php:18087
513
  msgid "You are all good!"
514
  msgstr ""
515
 
516
- #: includes/class-freemius.php:18355
517
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
518
  msgstr ""
519
 
520
- #: includes/class-freemius.php:18490
521
  msgid "Site successfully opted in."
522
  msgstr ""
523
 
524
- #: includes/class-freemius.php:18491, includes/class-freemius.php:19302
525
  msgid "Awesome"
526
  msgstr ""
527
 
528
- #: includes/class-freemius.php:18507, templates/forms/optout.php:32
529
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
530
  msgstr ""
531
 
532
- #: includes/class-freemius.php:18508
533
  msgid "Thank you!"
534
  msgstr ""
535
 
536
- #: includes/class-freemius.php:18515
537
  msgid "We will no longer be sending any usage data of %s on %s to %s."
538
  msgstr ""
539
 
540
- #: includes/class-freemius.php:18644
541
  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."
542
  msgstr ""
543
 
544
- #: includes/class-freemius.php:18650
545
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
546
  msgstr ""
547
 
548
- #: includes/class-freemius.php:18655
549
  msgid "%s is the new owner of the account."
550
  msgstr ""
551
 
552
- #: includes/class-freemius.php:18657
553
  msgctxt "as congratulations"
554
  msgid "Congrats"
555
  msgstr ""
556
 
557
- #: includes/class-freemius.php:18677
558
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
559
  msgstr ""
560
 
561
- #: includes/class-freemius.php:18678
562
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
563
  msgstr ""
564
 
565
- #: includes/class-freemius.php:18685
566
  msgid "Change Ownership"
567
  msgstr ""
568
 
569
- #: includes/class-freemius.php:18693
570
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
571
  msgstr ""
572
 
573
- #: includes/class-freemius.php:18705
574
  msgid "Please provide your full name."
575
  msgstr ""
576
 
577
- #: includes/class-freemius.php:18710
578
  msgid "Your name was successfully updated."
579
  msgstr ""
580
 
581
- #: includes/class-freemius.php:18771
582
  msgid "You have successfully updated your %s."
583
  msgstr ""
584
 
585
- #: includes/class-freemius.php:18911
586
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
587
  msgstr ""
588
 
589
- #: includes/class-freemius.php:18912
590
  msgctxt "advance notice of something that will need attention."
591
  msgid "Heads up"
592
  msgstr ""
593
 
594
- #: includes/class-freemius.php:19342
595
  msgctxt "exclamation"
596
  msgid "Hey"
597
  msgstr ""
598
 
599
- #: includes/class-freemius.php:19342
600
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
601
  msgstr ""
602
 
603
- #: includes/class-freemius.php:19350
604
  msgid "No commitment for %s days - cancel anytime!"
605
  msgstr ""
606
 
607
- #: includes/class-freemius.php:19351
608
  msgid "No credit card required"
609
  msgstr ""
610
 
611
- #: includes/class-freemius.php:19358, templates/forms/trial-start.php:53
612
  msgctxt "call to action"
613
  msgid "Start free trial"
614
  msgstr ""
615
 
616
- #: includes/class-freemius.php:19435
617
  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!"
618
  msgstr ""
619
 
620
- #: includes/class-freemius.php:19444
621
  msgid "Learn more"
622
  msgstr ""
623
 
624
- #: includes/class-freemius.php:19594, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
625
  msgid "Activate License"
626
  msgstr ""
627
 
628
- #: includes/class-freemius.php:19595, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
629
  msgid "Change License"
630
  msgstr ""
631
 
632
- #: includes/class-freemius.php:19677, templates/account/partials/site.php:161
633
  msgid "Opt Out"
634
  msgstr ""
635
 
636
- #: includes/class-freemius.php:19679, includes/class-freemius.php:19684, templates/account/partials/site.php:43, templates/account/partials/site.php:161
637
  msgid "Opt In"
638
  msgstr ""
639
 
640
- #: includes/class-freemius.php:19908
641
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
642
  msgstr ""
643
 
644
- #: includes/class-freemius.php:19916
645
  msgid "Activate %s features"
646
  msgstr ""
647
 
648
- #: includes/class-freemius.php:19929
649
  msgid "Please follow these steps to complete the upgrade"
650
  msgstr ""
651
 
652
- #: includes/class-freemius.php:19933
653
  msgid "Download the latest %s version"
654
  msgstr ""
655
 
656
- #: includes/class-freemius.php:19937
657
  msgid "Upload and activate the downloaded version"
658
  msgstr ""
659
 
660
- #: includes/class-freemius.php:19939
661
  msgid "How to upload and activate?"
662
  msgstr ""
663
 
664
- #: includes/class-freemius.php:20073
665
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
666
  msgstr ""
667
 
668
- #: includes/class-freemius.php:20234
669
  msgid "Auto installation only works for opted-in users."
670
  msgstr ""
671
 
672
- #: includes/class-freemius.php:20244, includes/class-freemius.php:20277, includes/class-fs-plugin-updater.php:1056, includes/class-fs-plugin-updater.php:1070
673
  msgid "Invalid module ID."
674
  msgstr ""
675
 
676
- #: includes/class-freemius.php:20253, includes/class-fs-plugin-updater.php:1092
677
  msgid "Premium version already active."
678
  msgstr ""
679
 
680
- #: includes/class-freemius.php:20260
681
  msgid "You do not have a valid license to access the premium version."
682
  msgstr ""
683
 
684
- #: includes/class-freemius.php:20267
685
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
686
  msgstr ""
687
 
688
- #: includes/class-freemius.php:20285, includes/class-fs-plugin-updater.php:1091
689
  msgid "Premium add-on version already installed."
690
  msgstr ""
691
 
692
- #: includes/class-freemius.php:20630
693
  msgid "View paid features"
694
  msgstr ""
695
 
696
- #: includes/class-freemius.php:20944
697
  msgid "Thank you so much for using %s and its add-ons!"
698
  msgstr ""
699
 
700
- #: includes/class-freemius.php:20945
701
  msgid "Thank you so much for using %s!"
702
  msgstr ""
703
 
704
- #: includes/class-freemius.php:20951
705
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
706
  msgstr ""
707
 
708
- #: includes/class-freemius.php:20955
709
  msgid "Thank you so much for using our products!"
710
  msgstr ""
711
 
712
- #: includes/class-freemius.php:20956
713
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
714
  msgstr ""
715
 
716
- #: includes/class-freemius.php:20975
717
  msgid "%s and its add-ons"
718
  msgstr ""
719
 
720
- #: includes/class-freemius.php:20984
721
  msgid "Products"
722
  msgstr ""
723
 
724
- #: includes/class-freemius.php:20991, templates/connect.php:272
725
  msgid "Yes"
726
  msgstr ""
727
 
728
- #: includes/class-freemius.php:20992, templates/connect.php:273
729
  msgid "send me security & feature updates, educational content and offers."
730
  msgstr ""
731
 
732
- #: includes/class-freemius.php:20993, templates/connect.php:278
733
  msgid "No"
734
  msgstr ""
735
 
736
- #: includes/class-freemius.php:20995, templates/connect.php:280
737
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
738
  msgstr ""
739
 
740
- #: includes/class-freemius.php:21005
741
  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 🙂"
742
  msgstr ""
743
 
744
- #: includes/class-freemius.php:21007, templates/connect.php:287
745
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
746
  msgstr ""
747
 
748
- #: includes/class-freemius.php:21289
749
  msgid "License key is empty."
750
  msgstr ""
751
 
@@ -765,19 +765,19 @@ msgstr ""
765
  msgid "new version"
766
  msgstr ""
767
 
768
- #: includes/class-fs-plugin-updater.php:301
769
  msgid "Important Upgrade Notice:"
770
  msgstr ""
771
 
772
- #: includes/class-fs-plugin-updater.php:1121
773
  msgid "Installing plugin: %s"
774
  msgstr ""
775
 
776
- #: includes/class-fs-plugin-updater.php:1162
777
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
778
  msgstr ""
779
 
780
- #: includes/class-fs-plugin-updater.php:1344
781
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
782
  msgstr ""
783
 
1
+ # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
+ #: includes/class-freemius.php:1688
20
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
21
  msgstr ""
22
 
23
+ #: includes/class-freemius.php:1690
24
  msgid "Error"
25
  msgstr ""
26
 
27
+ #: includes/class-freemius.php:2011
28
  msgid "I found a better %s"
29
  msgstr ""
30
 
31
+ #: includes/class-freemius.php:2013
32
  msgid "What's the %s's name?"
33
  msgstr ""
34
 
35
+ #: includes/class-freemius.php:2019
36
  msgid "It's a temporary %s. I'm just debugging an issue."
37
  msgstr ""
38
 
39
+ #: includes/class-freemius.php:2021
40
  msgid "Deactivation"
41
  msgstr ""
42
 
43
+ #: includes/class-freemius.php:2022
44
  msgid "Theme Switch"
45
  msgstr ""
46
 
47
+ #: includes/class-freemius.php:2031, templates/forms/resend-key.php:24
48
  msgid "Other"
49
  msgstr ""
50
 
51
+ #: includes/class-freemius.php:2039
52
  msgid "I no longer need the %s"
53
  msgstr ""
54
 
55
+ #: includes/class-freemius.php:2046
56
  msgid "I only needed the %s for a short period"
57
  msgstr ""
58
 
59
+ #: includes/class-freemius.php:2052
60
  msgid "The %s broke my site"
61
  msgstr ""
62
 
63
+ #: includes/class-freemius.php:2059
64
  msgid "The %s suddenly stopped working"
65
  msgstr ""
66
 
67
+ #: includes/class-freemius.php:2069
68
  msgid "I can't pay for it anymore"
69
  msgstr ""
70
 
71
+ #: includes/class-freemius.php:2071
72
  msgid "What price would you feel comfortable paying?"
73
  msgstr ""
74
 
75
+ #: includes/class-freemius.php:2077
76
  msgid "I don't like to share my information with you"
77
  msgstr ""
78
 
79
+ #: includes/class-freemius.php:2098
80
  msgid "The %s didn't work"
81
  msgstr ""
82
 
83
+ #: includes/class-freemius.php:2108
84
  msgid "I couldn't understand how to make it work"
85
  msgstr ""
86
 
87
+ #: includes/class-freemius.php:2116
88
  msgid "The %s is great, but I need specific feature that you don't support"
89
  msgstr ""
90
 
91
+ #: includes/class-freemius.php:2118
92
  msgid "What feature?"
93
  msgstr ""
94
 
95
+ #: includes/class-freemius.php:2122
96
  msgid "The %s is not working"
97
  msgstr ""
98
 
99
+ #: includes/class-freemius.php:2124
100
  msgid "Kindly share what didn't work so we can fix it for future users..."
101
  msgstr ""
102
 
103
+ #: includes/class-freemius.php:2128
104
  msgid "It's not what I was looking for"
105
  msgstr ""
106
 
107
+ #: includes/class-freemius.php:2130
108
  msgid "What you've been looking for?"
109
  msgstr ""
110
 
111
+ #: includes/class-freemius.php:2134
112
  msgid "The %s didn't work as expected"
113
  msgstr ""
114
 
115
+ #: includes/class-freemius.php:2136
116
  msgid "What did you expect?"
117
  msgstr ""
118
 
119
+ #: includes/class-freemius.php:2947, templates/debug.php:20
120
  msgid "Freemius Debug"
121
  msgstr ""
122
 
123
+ #: includes/class-freemius.php:3675
124
  msgid "I don't know what is cURL or how to install it, help me!"
125
  msgstr ""
126
 
127
+ #: includes/class-freemius.php:3677
128
  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."
129
  msgstr ""
130
 
131
+ #: includes/class-freemius.php:3684
132
  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."
133
  msgstr ""
134
 
135
+ #: includes/class-freemius.php:3789
136
  msgid "Yes - do your thing"
137
  msgstr ""
138
 
139
+ #: includes/class-freemius.php:3794
140
  msgid "No - just deactivate"
141
  msgstr ""
142
 
143
+ #: includes/class-freemius.php:3839, includes/class-freemius.php:4348, includes/class-freemius.php:5447, includes/class-freemius.php:11555, includes/class-freemius.php:14926, includes/class-freemius.php:14978, includes/class-freemius.php:15040, includes/class-freemius.php:17273, includes/class-freemius.php:17283, includes/class-freemius.php:17892, includes/class-freemius.php:18752, includes/class-freemius.php:18867, includes/class-freemius.php:19011, templates/add-ons.php:43
144
  msgctxt "exclamation"
145
  msgid "Oops"
146
  msgstr ""
147
 
148
+ #: includes/class-freemius.php:3908
149
  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."
150
  msgstr ""
151
 
152
+ #: includes/class-freemius.php:4345
153
  msgctxt "addonX cannot run without pluginY"
154
  msgid "%s cannot run without %s."
155
  msgstr ""
156
 
157
+ #: includes/class-freemius.php:4346
158
  msgctxt "addonX cannot run..."
159
  msgid "%s cannot run without the plugin."
160
  msgstr ""
161
 
162
+ #: includes/class-freemius.php:4492, includes/class-freemius.php:4517, includes/class-freemius.php:17963
163
  msgid "Unexpected API error. Please contact the %s's author with the following error."
164
  msgstr ""
165
 
166
+ #: includes/class-freemius.php:5135
167
  msgid "Premium %s version was successfully activated."
168
  msgstr ""
169
 
170
+ #: includes/class-freemius.php:5147, includes/class-freemius.php:7009
171
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
172
  msgid "W00t"
173
  msgstr ""
174
 
175
+ #: includes/class-freemius.php:5162
176
  msgid "You have a %s license."
177
  msgstr ""
178
 
179
+ #: includes/class-freemius.php:5166, includes/class-freemius.php:14347, includes/class-freemius.php:14358, includes/class-freemius.php:17187, includes/class-freemius.php:17501, includes/class-freemius.php:17567, includes/class-freemius.php:17717
180
  msgctxt "interjection expressing joy or exuberance"
181
  msgid "Yee-haw"
182
  msgstr ""
183
 
184
+ #: includes/class-freemius.php:5430
185
  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."
186
  msgstr ""
187
 
188
+ #: includes/class-freemius.php:5434
189
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
190
  msgstr ""
191
 
192
+ #: includes/class-freemius.php:5443, templates/add-ons.php:103, templates/account/partials/addon.php:288
193
  msgid "More information about %s"
194
  msgstr ""
195
 
196
+ #: includes/class-freemius.php:5444
197
  msgid "Purchase License"
198
  msgstr ""
199
 
200
+ #: includes/class-freemius.php:6377, templates/connect.php:163
201
  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."
202
  msgstr ""
203
 
204
+ #: includes/class-freemius.php:6381
205
  msgid "start the trial"
206
  msgstr ""
207
 
208
+ #: includes/class-freemius.php:6382, templates/connect.php:167
209
  msgid "complete the install"
210
  msgstr ""
211
 
212
+ #: includes/class-freemius.php:6495
213
  msgid "You are just one step away - %s"
214
  msgstr ""
215
 
216
+ #: includes/class-freemius.php:6498
217
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
218
  msgid "Complete \"%s\" Activation Now"
219
  msgstr ""
220
 
221
+ #: includes/class-freemius.php:6576
222
  msgid "We made a few tweaks to the %s, %s"
223
  msgstr ""
224
 
225
+ #: includes/class-freemius.php:6580
226
  msgid "Opt in to make \"%s\" better!"
227
  msgstr ""
228
 
229
+ #: includes/class-freemius.php:7008
230
  msgid "The upgrade of %s was successfully completed."
231
  msgstr ""
232
 
233
+ #: includes/class-freemius.php:8935, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32
234
  msgid "Add-On"
235
  msgstr ""
236
 
237
+ #: includes/class-freemius.php:8937, templates/debug.php:359, templates/debug.php:520
238
  msgid "Plugin"
239
  msgstr ""
240
 
241
+ #: includes/class-freemius.php:8938, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
242
  msgid "Theme"
243
  msgstr ""
244
 
245
+ #: includes/class-freemius.php:11422
246
  msgid "Invalid site details collection."
247
  msgstr ""
248
 
249
+ #: includes/class-freemius.php:11542
250
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
251
  msgstr ""
252
 
253
+ #: includes/class-freemius.php:11544
254
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
255
  msgstr ""
256
 
257
+ #: includes/class-freemius.php:11818
258
  msgid "Account is pending activation."
259
  msgstr ""
260
 
261
+ #: includes/class-freemius.php:11930, templates/forms/premium-versions-upgrade-handler.php:47
262
  msgid "Buy a license now"
263
  msgstr ""
264
 
265
+ #: includes/class-freemius.php:11942, templates/forms/premium-versions-upgrade-handler.php:46
266
  msgid "Renew your license now"
267
  msgstr ""
268
 
269
+ #: includes/class-freemius.php:11946
270
  msgid "%s to access version %s security & feature updates, and support."
271
  msgstr ""
272
 
273
+ #: includes/class-freemius.php:14329
274
  msgid "%s activation was successfully completed."
275
  msgstr ""
276
 
277
+ #: includes/class-freemius.php:14343
278
  msgid "Your account was successfully activated with the %s plan."
279
  msgstr ""
280
 
281
+ #: includes/class-freemius.php:14354, includes/class-freemius.php:17563
282
  msgid "Your trial has been successfully started."
283
  msgstr ""
284
 
285
+ #: includes/class-freemius.php:14924, includes/class-freemius.php:14976, includes/class-freemius.php:15038
286
  msgid "Couldn't activate %s."
287
  msgstr ""
288
 
289
+ #: includes/class-freemius.php:14925, includes/class-freemius.php:14977, includes/class-freemius.php:15039
290
  msgid "Please contact us with the following message:"
291
  msgstr ""
292
 
293
+ #: includes/class-freemius.php:15388, includes/class-freemius.php:19849
294
  msgid "Upgrade"
295
  msgstr ""
296
 
297
+ #: includes/class-freemius.php:15394
298
  msgid "Start Trial"
299
  msgstr ""
300
 
301
+ #: includes/class-freemius.php:15396
302
  msgid "Pricing"
303
  msgstr ""
304
 
305
+ #: includes/class-freemius.php:15458, includes/class-freemius.php:15460
306
  msgid "Affiliation"
307
  msgstr ""
308
 
309
+ #: includes/class-freemius.php:15488, includes/class-freemius.php:15490, templates/account.php:150, templates/debug.php:324
310
  msgid "Account"
311
  msgstr ""
312
 
313
+ #: includes/class-freemius.php:15503, includes/class-freemius.php:15505, includes/customizer/class-fs-customizer-support-section.php:60
314
  msgid "Contact Us"
315
  msgstr ""
316
 
317
+ #: includes/class-freemius.php:15515, includes/class-freemius.php:15517, includes/class-freemius.php:19859, templates/account.php:100, templates/account/partials/addon.php:41
318
  msgid "Add-Ons"
319
  msgstr ""
320
 
321
+ #: includes/class-freemius.php:15551
322
  msgctxt "ASCII arrow left icon"
323
  msgid "&#x2190;"
324
  msgstr ""
325
 
326
+ #: includes/class-freemius.php:15551
327
  msgctxt "ASCII arrow right icon"
328
  msgid "&#x27a4;"
329
  msgstr ""
330
 
331
+ #: includes/class-freemius.php:15553, templates/pricing.php:97
332
  msgctxt "noun"
333
  msgid "Pricing"
334
  msgstr ""
335
 
336
+ #: includes/class-freemius.php:15766, includes/customizer/class-fs-customizer-support-section.php:67
337
  msgid "Support Forum"
338
  msgstr ""
339
 
340
+ #: includes/class-freemius.php:16552
341
  msgid "Your email has been successfully verified - you are AWESOME!"
342
  msgstr ""
343
 
344
+ #: includes/class-freemius.php:16553
345
  msgctxt "a positive response"
346
  msgid "Right on"
347
  msgstr ""
348
 
349
+ #: includes/class-freemius.php:17178
350
  msgid "Your %s Add-on plan was successfully upgraded."
351
  msgstr ""
352
 
353
+ #: includes/class-freemius.php:17180
354
  msgid "%s Add-on was successfully purchased."
355
  msgstr ""
356
 
357
+ #: includes/class-freemius.php:17183
358
  msgid "Download the latest version"
359
  msgstr ""
360
 
361
+ #: includes/class-freemius.php:17269
362
  msgctxt "%1s - plugin title, %2s - API domain"
363
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
364
  msgstr ""
365
 
366
+ #: includes/class-freemius.php:17272, includes/class-freemius.php:17688, includes/class-freemius.php:17765
367
  msgid "Error received from the server:"
368
  msgstr ""
369
 
370
+ #: includes/class-freemius.php:17282
371
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
372
  msgstr ""
373
 
374
+ #: includes/class-freemius.php:17464, includes/class-freemius.php:17693, includes/class-freemius.php:17736, includes/class-freemius.php:17839
375
  msgctxt "something somebody says when they are thinking about what you have just said."
376
  msgid "Hmm"
377
  msgstr ""
378
 
379
+ #: includes/class-freemius.php:17477
380
  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."
381
  msgstr ""
382
 
383
+ #: includes/class-freemius.php:17478, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
384
  msgctxt "trial period"
385
  msgid "Trial"
386
  msgstr ""
387
 
388
+ #: includes/class-freemius.php:17483
389
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
390
  msgstr ""
391
 
392
+ #: includes/class-freemius.php:17487, includes/class-freemius.php:17545
393
  msgid "Please contact us here"
394
  msgstr ""
395
 
396
+ #: includes/class-freemius.php:17497
397
  msgid "Your plan was successfully upgraded."
398
  msgstr ""
399
 
400
+ #: includes/class-freemius.php:17515
401
  msgid "Your plan was successfully changed to %s."
402
  msgstr ""
403
 
404
+ #: includes/class-freemius.php:17531
405
  msgid "Your license has expired. You can still continue using the free %s forever."
406
  msgstr ""
407
 
408
+ #: includes/class-freemius.php:17533
409
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
410
  msgstr ""
411
 
412
+ #: includes/class-freemius.php:17541
413
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
414
  msgstr ""
415
 
416
+ #: includes/class-freemius.php:17554
417
  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."
418
  msgstr ""
419
 
420
+ #: includes/class-freemius.php:17577
421
  msgid "Your free trial has expired. You can still continue using all our free features."
422
  msgstr ""
423
 
424
+ #: includes/class-freemius.php:17579
425
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
426
  msgstr ""
427
 
428
+ #: includes/class-freemius.php:17684
429
  msgid "It looks like the license could not be activated."
430
  msgstr ""
431
 
432
+ #: includes/class-freemius.php:17714
433
  msgid "Your license was successfully activated."
434
  msgstr ""
435
 
436
+ #: includes/class-freemius.php:17740
437
  msgid "It looks like your site currently doesn't have an active license."
438
  msgstr ""
439
 
440
+ #: includes/class-freemius.php:17764
441
  msgid "It looks like the license deactivation failed."
442
  msgstr ""
443
 
444
+ #: includes/class-freemius.php:17792
445
  msgid "Your license was successfully deactivated, you are back to the %s plan."
446
  msgstr ""
447
 
448
+ #: includes/class-freemius.php:17793
449
  msgid "O.K"
450
  msgstr ""
451
 
452
+ #: includes/class-freemius.php:17846
453
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
454
  msgstr ""
455
 
456
+ #: includes/class-freemius.php:17855
457
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
458
  msgstr ""
459
 
460
+ #: includes/class-freemius.php:17897
461
  msgid "You are already running the %s in a trial mode."
462
  msgstr ""
463
 
464
+ #: includes/class-freemius.php:17908
465
  msgid "You already utilized a trial before."
466
  msgstr ""
467
 
468
+ #: includes/class-freemius.php:17922
469
  msgid "Plan %s do not exist, therefore, can't start a trial."
470
  msgstr ""
471
 
472
+ #: includes/class-freemius.php:17933
473
  msgid "Plan %s does not support a trial period."
474
  msgstr ""
475
 
476
+ #: includes/class-freemius.php:17944
477
  msgid "None of the %s's plans supports a trial period."
478
  msgstr ""
479
 
480
+ #: includes/class-freemius.php:17994
481
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
482
  msgstr ""
483
 
484
+ #: includes/class-freemius.php:18030
485
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
486
  msgstr ""
487
 
488
+ #: includes/class-freemius.php:18049
489
  msgid "Your %s free trial was successfully cancelled."
490
  msgstr ""
491
 
492
+ #: includes/class-freemius.php:18356
493
  msgid "Version %s was released."
494
  msgstr ""
495
 
496
+ #: includes/class-freemius.php:18356
497
  msgid "Please download %s."
498
  msgstr ""
499
 
500
+ #: includes/class-freemius.php:18363
501
  msgid "the latest %s version here"
502
  msgstr ""
503
 
504
+ #: includes/class-freemius.php:18368
505
  msgid "New"
506
  msgstr ""
507
 
508
+ #: includes/class-freemius.php:18373
509
  msgid "Seems like you got the latest release."
510
  msgstr ""
511
 
512
+ #: includes/class-freemius.php:18374
513
  msgid "You are all good!"
514
  msgstr ""
515
 
516
+ #: includes/class-freemius.php:18642
517
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
518
  msgstr ""
519
 
520
+ #: includes/class-freemius.php:18779
521
  msgid "Site successfully opted in."
522
  msgstr ""
523
 
524
+ #: includes/class-freemius.php:18780, includes/class-freemius.php:19591
525
  msgid "Awesome"
526
  msgstr ""
527
 
528
+ #: includes/class-freemius.php:18796, templates/forms/optout.php:32
529
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
530
  msgstr ""
531
 
532
+ #: includes/class-freemius.php:18797
533
  msgid "Thank you!"
534
  msgstr ""
535
 
536
+ #: includes/class-freemius.php:18804
537
  msgid "We will no longer be sending any usage data of %s on %s to %s."
538
  msgstr ""
539
 
540
+ #: includes/class-freemius.php:18933
541
  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."
542
  msgstr ""
543
 
544
+ #: includes/class-freemius.php:18939
545
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
546
  msgstr ""
547
 
548
+ #: includes/class-freemius.php:18944
549
  msgid "%s is the new owner of the account."
550
  msgstr ""
551
 
552
+ #: includes/class-freemius.php:18946
553
  msgctxt "as congratulations"
554
  msgid "Congrats"
555
  msgstr ""
556
 
557
+ #: includes/class-freemius.php:18966
558
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
559
  msgstr ""
560
 
561
+ #: includes/class-freemius.php:18967
562
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
563
  msgstr ""
564
 
565
+ #: includes/class-freemius.php:18974
566
  msgid "Change Ownership"
567
  msgstr ""
568
 
569
+ #: includes/class-freemius.php:18982
570
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
571
  msgstr ""
572
 
573
+ #: includes/class-freemius.php:18994
574
  msgid "Please provide your full name."
575
  msgstr ""
576
 
577
+ #: includes/class-freemius.php:18999
578
  msgid "Your name was successfully updated."
579
  msgstr ""
580
 
581
+ #: includes/class-freemius.php:19060
582
  msgid "You have successfully updated your %s."
583
  msgstr ""
584
 
585
+ #: includes/class-freemius.php:19200
586
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
587
  msgstr ""
588
 
589
+ #: includes/class-freemius.php:19201
590
  msgctxt "advance notice of something that will need attention."
591
  msgid "Heads up"
592
  msgstr ""
593
 
594
+ #: includes/class-freemius.php:19631
595
  msgctxt "exclamation"
596
  msgid "Hey"
597
  msgstr ""
598
 
599
+ #: includes/class-freemius.php:19631
600
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
601
  msgstr ""
602
 
603
+ #: includes/class-freemius.php:19639
604
  msgid "No commitment for %s days - cancel anytime!"
605
  msgstr ""
606
 
607
+ #: includes/class-freemius.php:19640
608
  msgid "No credit card required"
609
  msgstr ""
610
 
611
+ #: includes/class-freemius.php:19647, templates/forms/trial-start.php:53
612
  msgctxt "call to action"
613
  msgid "Start free trial"
614
  msgstr ""
615
 
616
+ #: includes/class-freemius.php:19724
617
  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!"
618
  msgstr ""
619
 
620
+ #: includes/class-freemius.php:19733
621
  msgid "Learn more"
622
  msgstr ""
623
 
624
+ #: includes/class-freemius.php:19883, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
625
  msgid "Activate License"
626
  msgstr ""
627
 
628
+ #: includes/class-freemius.php:19884, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
629
  msgid "Change License"
630
  msgstr ""
631
 
632
+ #: includes/class-freemius.php:19966, templates/account/partials/site.php:161
633
  msgid "Opt Out"
634
  msgstr ""
635
 
636
+ #: includes/class-freemius.php:19968, includes/class-freemius.php:19973, templates/account/partials/site.php:43, templates/account/partials/site.php:161
637
  msgid "Opt In"
638
  msgstr ""
639
 
640
+ #: includes/class-freemius.php:20197
641
  msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
642
  msgstr ""
643
 
644
+ #: includes/class-freemius.php:20205
645
  msgid "Activate %s features"
646
  msgstr ""
647
 
648
+ #: includes/class-freemius.php:20218
649
  msgid "Please follow these steps to complete the upgrade"
650
  msgstr ""
651
 
652
+ #: includes/class-freemius.php:20222
653
  msgid "Download the latest %s version"
654
  msgstr ""
655
 
656
+ #: includes/class-freemius.php:20226
657
  msgid "Upload and activate the downloaded version"
658
  msgstr ""
659
 
660
+ #: includes/class-freemius.php:20228
661
  msgid "How to upload and activate?"
662
  msgstr ""
663
 
664
+ #: includes/class-freemius.php:20362
665
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
666
  msgstr ""
667
 
668
+ #: includes/class-freemius.php:20523
669
  msgid "Auto installation only works for opted-in users."
670
  msgstr ""
671
 
672
+ #: includes/class-freemius.php:20533, includes/class-freemius.php:20566, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074
673
  msgid "Invalid module ID."
674
  msgstr ""
675
 
676
+ #: includes/class-freemius.php:20542, includes/class-fs-plugin-updater.php:1096
677
  msgid "Premium version already active."
678
  msgstr ""
679
 
680
+ #: includes/class-freemius.php:20549
681
  msgid "You do not have a valid license to access the premium version."
682
  msgstr ""
683
 
684
+ #: includes/class-freemius.php:20556
685
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
686
  msgstr ""
687
 
688
+ #: includes/class-freemius.php:20574, includes/class-fs-plugin-updater.php:1095
689
  msgid "Premium add-on version already installed."
690
  msgstr ""
691
 
692
+ #: includes/class-freemius.php:20919
693
  msgid "View paid features"
694
  msgstr ""
695
 
696
+ #: includes/class-freemius.php:21239
697
  msgid "Thank you so much for using %s and its add-ons!"
698
  msgstr ""
699
 
700
+ #: includes/class-freemius.php:21240
701
  msgid "Thank you so much for using %s!"
702
  msgstr ""
703
 
704
+ #: includes/class-freemius.php:21246
705
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
706
  msgstr ""
707
 
708
+ #: includes/class-freemius.php:21250
709
  msgid "Thank you so much for using our products!"
710
  msgstr ""
711
 
712
+ #: includes/class-freemius.php:21251
713
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
714
  msgstr ""
715
 
716
+ #: includes/class-freemius.php:21270
717
  msgid "%s and its add-ons"
718
  msgstr ""
719
 
720
+ #: includes/class-freemius.php:21279
721
  msgid "Products"
722
  msgstr ""
723
 
724
+ #: includes/class-freemius.php:21286, templates/connect.php:272
725
  msgid "Yes"
726
  msgstr ""
727
 
728
+ #: includes/class-freemius.php:21287, templates/connect.php:273
729
  msgid "send me security & feature updates, educational content and offers."
730
  msgstr ""
731
 
732
+ #: includes/class-freemius.php:21288, templates/connect.php:278
733
  msgid "No"
734
  msgstr ""
735
 
736
+ #: includes/class-freemius.php:21290, templates/connect.php:280
737
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
738
  msgstr ""
739
 
740
+ #: includes/class-freemius.php:21300
741
  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 🙂"
742
  msgstr ""
743
 
744
+ #: includes/class-freemius.php:21302, templates/connect.php:287
745
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
746
  msgstr ""
747
 
748
+ #: includes/class-freemius.php:21584
749
  msgid "License key is empty."
750
  msgstr ""
751
 
765
  msgid "new version"
766
  msgstr ""
767
 
768
+ #: includes/class-fs-plugin-updater.php:305
769
  msgid "Important Upgrade Notice:"
770
  msgstr ""
771
 
772
+ #: includes/class-fs-plugin-updater.php:1125
773
  msgid "Installing plugin: %s"
774
  msgstr ""
775
 
776
+ #: includes/class-fs-plugin-updater.php:1166
777
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
778
  msgstr ""
779
 
780
+ #: includes/class-fs-plugin-updater.php:1348
781
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
782
  msgstr ""
783
 
freemius/start.php CHANGED
@@ -15,7 +15,7 @@
15
  *
16
  * @var string
17
  */
18
- $this_sdk_version = '2.2.2';
19
 
20
  #region SDK Selection Logic --------------------------------------------------------------------
21
 
@@ -44,9 +44,16 @@
44
  * @author Vova Feldman (@svovaf)
45
  * @since 1.2.2.6
46
  */
47
- $file_path = fs_normalize_path( __FILE__ );
48
- $fs_root_path = dirname( $file_path );
49
- $themes_directory = get_theme_root();
 
 
 
 
 
 
 
50
  $themes_directory_name = basename( $themes_directory );
51
  $theme_candidate_basename = basename( dirname( $fs_root_path ) ) . '/' . basename( $fs_root_path );
52
 
@@ -100,7 +107,7 @@
100
  */
101
  $has_changes = false;
102
  foreach ( $fs_active_plugins->plugins as $sdk_path => $data ) {
103
- if ( ! file_exists( WP_PLUGIN_DIR . '/' . $sdk_path ) ) {
104
  unset( $fs_active_plugins->plugins[ $sdk_path ] );
105
  $has_changes = true;
106
  }
@@ -209,7 +216,7 @@
209
  $sdk_starter_path = fs_normalize_path( WP_PLUGIN_DIR . '/' . $this_sdk_relative_path . '/start.php' );
210
  } else {
211
  $sdk_starter_path = fs_normalize_path(
212
- get_theme_root()
213
  . '/'
214
  . str_replace( "../{$themes_directory_name}/", '', $this_sdk_relative_path )
215
  . '/start.php' );
@@ -271,7 +278,7 @@
271
 
272
  $plugins_or_theme_dir_path = ( ! isset( $newest_sdk->type ) || 'theme' !== $newest_sdk->type ) ?
273
  WP_PLUGIN_DIR :
274
- get_theme_root();
275
 
276
  $newest_sdk_starter = fs_normalize_path(
277
  $plugins_or_theme_dir_path
@@ -379,7 +386,7 @@
379
  }
380
 
381
  $plugins_or_theme_dir_path = fs_normalize_path( trailingslashit( $is_theme ?
382
- get_theme_root() :
383
  WP_PLUGIN_DIR ) );
384
 
385
  if ( 0 === strpos( $file_path, $plugins_or_theme_dir_path ) ) {
15
  *
16
  * @var string
17
  */
18
+ $this_sdk_version = '2.2.3.2';
19
 
20
  #region SDK Selection Logic --------------------------------------------------------------------
21
 
44
  * @author Vova Feldman (@svovaf)
45
  * @since 1.2.2.6
46
  */
47
+ $file_path = fs_normalize_path( __FILE__ );
48
+ $fs_root_path = dirname( $file_path );
49
+ /**
50
+ * Get the themes directory where the active theme is located (not passing the stylesheet will make WordPress
51
+ * assume that the themes directory is inside `wp-content`.
52
+ *
53
+ * @author Leo Fajardo (@leorw)
54
+ * @since 2.2.3
55
+ */
56
+ $themes_directory = get_theme_root( get_stylesheet() );
57
  $themes_directory_name = basename( $themes_directory );
58
  $theme_candidate_basename = basename( dirname( $fs_root_path ) ) . '/' . basename( $fs_root_path );
59
 
107
  */
108
  $has_changes = false;
109
  foreach ( $fs_active_plugins->plugins as $sdk_path => $data ) {
110
+ if ( ! file_exists( ( isset( $data->type ) && 'theme' === $data->type ? $themes_directory : WP_PLUGIN_DIR ) . '/' . $sdk_path ) ) {
111
  unset( $fs_active_plugins->plugins[ $sdk_path ] );
112
  $has_changes = true;
113
  }
216
  $sdk_starter_path = fs_normalize_path( WP_PLUGIN_DIR . '/' . $this_sdk_relative_path . '/start.php' );
217
  } else {
218
  $sdk_starter_path = fs_normalize_path(
219
+ $themes_directory
220
  . '/'
221
  . str_replace( "../{$themes_directory_name}/", '', $this_sdk_relative_path )
222
  . '/start.php' );
278
 
279
  $plugins_or_theme_dir_path = ( ! isset( $newest_sdk->type ) || 'theme' !== $newest_sdk->type ) ?
280
  WP_PLUGIN_DIR :
281
+ $themes_directory;
282
 
283
  $newest_sdk_starter = fs_normalize_path(
284
  $plugins_or_theme_dir_path
386
  }
387
 
388
  $plugins_or_theme_dir_path = fs_normalize_path( trailingslashit( $is_theme ?
389
+ $themes_directory :
390
  WP_PLUGIN_DIR ) );
391
 
392
  if ( 0 === strpos( $file_path, $plugins_or_theme_dir_path ) ) {
freemius/templates/account.php CHANGED
@@ -80,8 +80,8 @@
80
  $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
81
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
82
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
83
- /* translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
84
- $downgrade_x_confirm_text = fs_text_inline( '%1s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
85
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
86
  $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug );
87
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
@@ -545,10 +545,7 @@
545
  <?php endif ?>
546
 
547
  <?php
548
- $account_addons = $fs->get_account_addons();
549
- if ( ! is_array( $account_addons ) ) {
550
- $account_addons = array();
551
- }
552
 
553
  $installed_addons = $fs->get_installed_addons();
554
  $installed_addons_ids = array();
80
  $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
81
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
82
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
83
+ /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
84
+ $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
85
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
86
  $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug );
87
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
545
  <?php endif ?>
546
 
547
  <?php
548
+ $account_addons = $fs->get_updated_account_addons();
 
 
 
549
 
550
  $installed_addons = $fs->get_installed_addons();
551
  $installed_addons_ids = array();
freemius/templates/account/partials/addon.php CHANGED
@@ -21,8 +21,8 @@
21
  $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
22
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
23
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
24
- /* translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
25
- $downgrade_x_confirm_text = fs_text_inline( '%1s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
26
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
27
  $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug );
28
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
@@ -268,7 +268,7 @@
268
  if ( $fs->is_allowed_to_install() ) {
269
  $buttons[] = sprintf(
270
  '<a class="button button-primary edit" href="%s">%s</a>',
271
- wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ),
272
  fs_text_inline( 'Install Now', 'install-now', $slug )
273
  );
274
  } else {
@@ -283,7 +283,7 @@
283
 
284
  if ( $show_upgrade ) {
285
  $buttons[] = sprintf( '<a href="%s" class="thickbox button button-small button-primary" aria-label="%s" data-title="%s"><i class="dashicons dashicons-cart"></i> %s</a>',
286
- esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
287
  '&TB_iframe=true&width=600&height=550' ) ),
288
  esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
289
  esc_attr( $addon->title ),
@@ -319,7 +319,7 @@
319
  <?php else : ?>
320
  <?php if ( $fs->is_allowed_to_install() ) : ?>
321
  <a class="button button-primary"
322
- href="<?php echo wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ) ?>"><?php fs_esc_html_echo_inline( 'Install Now', 'install-now', $slug ) ?></a>
323
  <?php else : ?>
324
  <a target="_blank" class="button button-primary"
325
  href="<?php echo $fs->_get_latest_download_local_url( $addon_id ) ?>"><?php echo esc_html( $download_latest_text ) ?></a>
21
  $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
22
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
23
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
24
+ /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
25
+ $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
26
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
27
  $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug );
28
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
268
  if ( $fs->is_allowed_to_install() ) {
269
  $buttons[] = sprintf(
270
  '<a class="button button-primary edit" href="%s">%s</a>',
271
+ wp_nonce_url( self_admin_url( 'update.php?fs_allow_updater_and_dialog=true&action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ),
272
  fs_text_inline( 'Install Now', 'install-now', $slug )
273
  );
274
  } else {
283
 
284
  if ( $show_upgrade ) {
285
  $buttons[] = sprintf( '<a href="%s" class="thickbox button button-small button-primary" aria-label="%s" data-title="%s"><i class="dashicons dashicons-cart"></i> %s</a>',
286
+ esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
287
  '&TB_iframe=true&width=600&height=550' ) ),
288
  esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
289
  esc_attr( $addon->title ),
319
  <?php else : ?>
320
  <?php if ( $fs->is_allowed_to_install() ) : ?>
321
  <a class="button button-primary"
322
+ href="<?php echo wp_nonce_url( self_admin_url( 'update.php?fs_allow_updater_and_dialog=true&action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ) ?>"><?php fs_esc_html_echo_inline( 'Install Now', 'install-now', $slug ) ?></a>
323
  <?php else : ?>
324
  <a target="_blank" class="button button-primary"
325
  href="<?php echo $fs->_get_latest_download_local_url( $addon_id ) ?>"><?php echo esc_html( $download_latest_text ) ?></a>
freemius/templates/account/partials/site.php CHANGED
@@ -294,8 +294,8 @@
294
  <?php
295
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
296
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
297
- /* translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
298
- $downgrade_x_confirm_text = fs_text_inline( '%1s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
299
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
300
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
301
  $after_downgrade_blocking_text = fs_text_inline( 'Once your license expires you can still use the Free version but you will NOT have access to the %s features.', 'after-downgrade-blocking', $slug );
294
  <?php
295
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
296
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
297
+ /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
298
+ $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
299
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
300
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
301
  $after_downgrade_blocking_text = fs_text_inline( 'Once your license expires you can still use the Free version but you will NOT have access to the %s features.', 'after-downgrade-blocking', $slug );
freemius/templates/add-ons.php CHANGED
@@ -29,6 +29,11 @@
29
 
30
  $has_addons = ( is_array( $addons ) && 0 < count( $addons ) );
31
 
 
 
 
 
 
32
  $has_tabs = $fs->_add_tabs_before_content();
33
  ?>
34
  <div id="fs_addons" class="wrap fs-section">
@@ -46,8 +51,24 @@
46
  <?php endif ?>
47
  <ul class="fs-cards-list">
48
  <?php if ( $has_addons ) : ?>
 
 
 
 
 
 
 
 
 
 
 
49
  <?php foreach ( $addons as $addon ) : ?>
50
  <?php
 
 
 
 
 
51
  $open_addon = ( $open_addon || ( $open_addon_slug === $addon->slug ) );
52
 
53
  $price = 0;
@@ -55,9 +76,8 @@
55
  $has_free_plan = false;
56
  $has_paid_plan = false;
57
 
58
- $result = $fs->get_api_plugin_scope()->get( $fs->add_show_pending( "/addons/{$addon->id}/pricing.json?type=visible" ) );
59
- if ( ! isset( $result->error ) ) {
60
- $plans = $result->plans;
61
 
62
  if ( is_array( $plans ) && 0 < count( $plans ) ) {
63
  foreach ( $plans as $plan ) {
@@ -97,12 +117,32 @@
97
  ?>
98
  <li class="fs-card fs-addon" data-slug="<?php echo $addon->slug ?>">
99
  <?php
100
- echo sprintf( '<a href="%s" class="thickbox fs-overlay" aria-label="%s" data-title="%s"></a>',
101
- esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
102
  '&TB_iframe=true&width=600&height=550' ) ),
103
  esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
104
  esc_attr( $addon->title )
105
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  ?>
107
  <?php
108
  if ( is_null( $addon->info ) ) {
@@ -118,7 +158,17 @@
118
  <div class="fs-inner">
119
  <ul>
120
  <li class="fs-card-banner"
121
- style="background-image: url('<?php echo $addon->info->card_banner_url ?>');"></li>
 
 
 
 
 
 
 
 
 
 
122
  <!-- <li class="fs-tag"></li> -->
123
  <li class="fs-title"><?php echo $addon->title ?></li>
124
  <li class="fs-offer">
@@ -136,7 +186,55 @@
136
  echo implode(' - ', $descriptors) ?></span>
137
  </li>
138
  <li class="fs-description"><?php echo ! empty( $addon->info->short_description ) ? $addon->info->short_description : 'SHORT DESCRIPTION' ?></li>
139
- <li class="fs-cta"><a class="button"><?php fs_esc_html_echo_inline( 'View details', 'view-details', $slug ) ?></a></li>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  </ul>
141
  </div>
142
  </li>
@@ -146,7 +244,7 @@
146
  </div>
147
  </div>
148
  <script type="text/javascript">
149
- (function ($) {
150
  <?php if ( $open_addon ) : ?>
151
 
152
  var interval = setInterval(function () {
@@ -171,16 +269,94 @@
171
 
172
  <?php else : ?>
173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
 
175
- $('.fs-card.fs-addon')
176
- .mouseover(function () {
177
- $(this).find('.fs-cta .button').addClass('button-primary');
178
- }).mouseout(function () {
179
- $(this).find('.fs-cta .button').removeClass('button-primary');
180
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
 
182
  <?php endif ?>
183
- })(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  </script>
185
  <?php
186
  if ( $has_tabs ) {
29
 
30
  $has_addons = ( is_array( $addons ) && 0 < count( $addons ) );
31
 
32
+ $account_addon_ids = $fs->get_updated_account_addons();
33
+
34
+ $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug );
35
+ $view_details_text = fs_text_inline( 'View details', 'view-details', $slug );
36
+
37
  $has_tabs = $fs->_add_tabs_before_content();
38
  ?>
39
  <div id="fs_addons" class="wrap fs-section">
51
  <?php endif ?>
52
  <ul class="fs-cards-list">
53
  <?php if ( $has_addons ) : ?>
54
+ <?php
55
+ $result = $fs->get_api_plugin_scope()->get( $fs->add_show_pending( "/addons/pricing.json?type=visible" ) );
56
+
57
+ $plans_and_pricing_by_addon_id = array();
58
+ if ($fs->is_api_result_object( $result, 'addons')) {
59
+ foreach ( $result->addons as $addon ) {
60
+ $plans_and_pricing_by_addon_id[ $addon->id ] = $addon->plans;
61
+ }
62
+ }
63
+
64
+ ?>
65
  <?php foreach ( $addons as $addon ) : ?>
66
  <?php
67
+ $is_addon_installed = $fs->is_addon_installed( $addon->id );
68
+ $is_addon_activated = $is_addon_installed ?
69
+ $fs->is_addon_activated( $addon->id ) :
70
+ false;
71
+
72
  $open_addon = ( $open_addon || ( $open_addon_slug === $addon->slug ) );
73
 
74
  $price = 0;
76
  $has_free_plan = false;
77
  $has_paid_plan = false;
78
 
79
+ if ( isset( $plans_and_pricing_by_addon_id[$addon->id] ) ) {
80
+ $plans = $plans_and_pricing_by_addon_id[$addon->id];
 
81
 
82
  if ( is_array( $plans ) && 0 < count( $plans ) ) {
83
  foreach ( $plans as $plan ) {
117
  ?>
118
  <li class="fs-card fs-addon" data-slug="<?php echo $addon->slug ?>">
119
  <?php
120
+ $view_details_link = sprintf( '<a href="%s" aria-label="%s" data-title="%s"',
121
+ esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
122
  '&TB_iframe=true&width=600&height=550' ) ),
123
  esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
124
  esc_attr( $addon->title )
125
+ ) . ' class="thickbox%s">%s</a>';
126
+
127
+ echo sprintf(
128
+ $view_details_link,
129
+ /**
130
+ * Additional class.
131
+ *
132
+ * @author Leo Fajardo (@leorw)
133
+ * @since 2.2.4
134
+ */
135
+ ' fs-overlay',
136
+ /**
137
+ * Set the view details link text to an empty string since it is an overlay that
138
+ * doesn't really need a text and whose purpose is to open the details dialog when
139
+ * the card is clicked.
140
+ *
141
+ * @author Leo Fajardo (@leorw)
142
+ * @since 2.2.4
143
+ */
144
+ ''
145
+ );
146
  ?>
147
  <?php
148
  if ( is_null( $addon->info ) ) {
158
  <div class="fs-inner">
159
  <ul>
160
  <li class="fs-card-banner"
161
+ style="background-image: url('<?php echo $addon->info->card_banner_url ?>');"><?php
162
+ if ( $is_addon_activated || $is_addon_installed ) {
163
+ echo sprintf(
164
+ '<span class="fs-badge fs-installed-addon-badge">%s</span>',
165
+ esc_html( $is_addon_activated ?
166
+ fs_text_x_inline( 'Active', 'active add-on', 'active-addon', $slug ) :
167
+ fs_text_x_inline( 'Installed', 'installed add-on', 'installed-addon', $slug )
168
+ )
169
+ );
170
+ }
171
+ ?></li>
172
  <!-- <li class="fs-tag"></li> -->
173
  <li class="fs-title"><?php echo $addon->title ?></li>
174
  <li class="fs-offer">
186
  echo implode(' - ', $descriptors) ?></span>
187
  </li>
188
  <li class="fs-description"><?php echo ! empty( $addon->info->short_description ) ? $addon->info->short_description : 'SHORT DESCRIPTION' ?></li>
189
+ <?php if ( ! in_array( $addon->id, $account_addon_ids ) || $is_addon_installed ) : ?>
190
+ <li class="fs-cta"><a class="button"><?php echo esc_html( $view_details_text ) ?></a></li>
191
+ <?php else : ?>
192
+ <?php
193
+ $latest_download_local_url = $fs->_get_latest_download_local_url( $addon->id );
194
+ $is_allowed_to_install = $fs->is_allowed_to_install();
195
+ ?>
196
+
197
+ <li class="fs-cta fs-dropdown">
198
+ <div class="button-group">
199
+ <?php if ( $is_allowed_to_install ) : ?>
200
+ <?php
201
+ echo sprintf(
202
+ '<a class="button button-primary" href="%s">%s</a>',
203
+ wp_nonce_url( self_admin_url( 'update.php?fs_allow_updater_and_dialog=true&action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ),
204
+ fs_esc_html_inline( 'Install Now', 'install-now', $slug )
205
+ );
206
+ ?>
207
+ <?php else : ?>
208
+ <a target="_blank" class="button button-primary" href="<?php echo $latest_download_local_url ?>"><?php echo esc_html( $download_latest_text ) ?></a>
209
+ <?php endif ?>
210
+ <div class="button button-primary fs-dropdown-arrow-button"><span class="fs-dropdown-arrow"></span><ul class="fs-dropdown-list" style="display: none">
211
+ <?php if ( $is_allowed_to_install ) : ?>
212
+ <li><a target="_blank" href="<?php echo $latest_download_local_url ?>"><?php echo esc_html( $download_latest_text ) ?></a></li>
213
+ <?php endif ?>
214
+ <li><?php
215
+ echo sprintf(
216
+ $view_details_link,
217
+ /**
218
+ * No additional class.
219
+ *
220
+ * @author Leo Fajardo (@leorw)
221
+ * @since 2.2.4
222
+ */
223
+ '',
224
+ /**
225
+ * Set the view details link text to a non-empty string since it is an
226
+ * item in the dropdown list and the text should be visible.
227
+ *
228
+ * @author Leo Fajardo (@leorw)
229
+ * @since 2.2.4
230
+ */
231
+ esc_html( $view_details_text )
232
+ );
233
+ ?></li>
234
+ </ul></div>
235
+ </div>
236
+ </li>
237
+ <?php endif ?>
238
  </ul>
239
  </div>
240
  </li>
244
  </div>
245
  </div>
246
  <script type="text/javascript">
247
+ (function( $, undef ) {
248
  <?php if ( $open_addon ) : ?>
249
 
250
  var interval = setInterval(function () {
269
 
270
  <?php else : ?>
271
 
272
+ $( '.fs-card.fs-addon' )
273
+ .mouseover(function() {
274
+ var $this = $( this );
275
+
276
+ $this.find( '.fs-cta .button' ).addClass( 'button-primary' );
277
+
278
+ if ( 0 === $this.find( '.fs-dropdown-arrow-button.active' ).length ) {
279
+ /**
280
+ * When hovering over a card, close the dropdown on any other card.
281
+ *
282
+ * @author Leo Fajardo (@leorw)
283
+ * @since 2.2.4
284
+ */
285
+ toggleDropdown();
286
+ }
287
+ }).mouseout(function( evt ) {
288
+ var $relatedTarget = $( evt.relatedTarget );
289
 
290
+ if ( 0 !== $relatedTarget.parents( '.fs-addon' ).length ) {
291
+ return true;
292
+ }
293
+
294
+ var $this = $( this );
295
+
296
+ /**
297
+ * Set the color of the "View details" button to "secondary".
298
+ *
299
+ * @author Leo Fajardo (@leorw)
300
+ * @since 2.2.4
301
+ */
302
+ $this.find( '.fs-cta .button' ).filter(function() {
303
+ /**
304
+ * Keep the "primary" color of the dropdown arrow button, "Install Now" button, and
305
+ * "Download Latest" button.
306
+
307
+ * @author Leo Fajardo (@leorw)
308
+ * @since 2.2.4
309
+ */
310
+ return $( this ).parent().is( ':not(.button-group)' );
311
+ }).removeClass('button-primary');
312
+
313
+ toggleDropdown( $this.find( '.fs-dropdown' ), false );
314
+ }).find( 'a.thickbox, .button:not(.fs-dropdown-arrow-button)' ).click(function() {
315
+ toggleDropdown();
316
+ });
317
 
318
  <?php endif ?>
319
+
320
+ var $dropdowns = $( '.fs-dropdown' );
321
+ if ( 0 !== $dropdowns.length ) {
322
+ $dropdowns.find( '.fs-dropdown-arrow-button' ).click(function() {
323
+ var $this = $( this ),
324
+ $dropdown = $this.parents( '.fs-dropdown' );
325
+
326
+ toggleDropdown( $dropdown, ! $dropdown.hasClass( 'active' ) );
327
+ });
328
+ }
329
+
330
+ /**
331
+ * Returns the default state of the dropdown arrow button and hides the dropdown list.
332
+ *
333
+ * @author Leo Fajardo (@leorw)
334
+ * @since 2.2.4
335
+ *
336
+ * @param {(Object|undefined)} [$dropdown]
337
+ * @param {(Boolean|undefined)} [state]
338
+ */
339
+ function toggleDropdown( $dropdown, state ) {
340
+ if ( undef === $dropdown ) {
341
+ var $activeDropdown = $dropdowns.find( '.active' );
342
+ if ( 0 !== $activeDropdown.length ) {
343
+ $dropdown = $activeDropdown;
344
+ }
345
+ }
346
+
347
+ if ( undef === $dropdown ) {
348
+ return;
349
+ }
350
+
351
+ if ( undef === state ) {
352
+ state = false;
353
+ }
354
+
355
+ $dropdown.toggleClass( 'active', state );
356
+ $dropdown.find( '.fs-dropdown-list' ).toggle( state );
357
+ $dropdown.find( '.fs-dropdown-arrow-button' ).toggleClass( 'active', state );
358
+ }
359
+ })( jQuery );
360
  </script>
361
  <?php
362
  if ( $has_tabs ) {
freemius/templates/admin-notice.php CHANGED
@@ -11,8 +11,32 @@
11
  }
12
 
13
  $dismiss_text = fs_text_x_inline( 'Dismiss', 'as close a window', 'dismiss' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ?>
15
- <div<?php if ( ! empty( $VARS['id'] ) ) : ?> data-id="<?php echo $VARS['id'] ?>"<?php endif ?><?php if ( ! empty( $VARS['manager_id'] ) ) : ?> data-manager-id="<?php echo $VARS['manager_id'] ?>"<?php endif ?>
16
  class="<?php
17
  switch ( $VARS['type'] ) {
18
  case 'error':
@@ -33,6 +57,10 @@
33
  echo ' fs-sticky';
34
  } ?><?php if ( ! empty( $VARS['plugin'] ) ) {
35
  echo ' fs-has-title';
 
 
 
 
36
  } ?>"><?php if ( ! empty( $VARS['plugin'] ) ) : ?>
37
  <label class="fs-plugin-title"><?php echo $VARS['plugin'] ?></label>
38
  <?php endif ?>
11
  }
12
 
13
  $dismiss_text = fs_text_x_inline( 'Dismiss', 'as close a window', 'dismiss' );
14
+
15
+ $slug = '';
16
+ $type = '';
17
+
18
+ if ( ! empty( $VARS['manager_id'] ) ) {
19
+ /**
20
+ * @var array $VARS
21
+ */
22
+ $slug = $VARS['manager_id'];
23
+
24
+ $type = WP_FS__MODULE_TYPE_PLUGIN;
25
+
26
+ if ( false !== strpos( $slug, ':' ) ) {
27
+ $parts = explode( ':', $slug );
28
+
29
+ $slug = $parts[0];
30
+
31
+ $parts_count = count( $parts );
32
+
33
+ if ( 1 < $parts_count && WP_FS__MODULE_TYPE_THEME == $parts[1] ) {
34
+ $type = $parts[1];
35
+ }
36
+ }
37
+ }
38
  ?>
39
+ <div<?php if ( ! empty( $VARS['id'] ) ) : ?> data-id="<?php echo $VARS['id'] ?>"<?php endif ?><?php if ( ! empty( $VARS['manager_id'] ) ) : ?> data-manager-id="<?php echo $VARS['manager_id'] ?>"<?php endif ?><?php if ( ! empty( $slug ) ) : ?> data-slug="<?php echo $slug ?>"<?php endif ?><?php if ( ! empty( $type ) ) : ?> data-type="<?php echo $type ?>"<?php endif ?>
40
  class="<?php
41
  switch ( $VARS['type'] ) {
42
  case 'error':
57
  echo ' fs-sticky';
58
  } ?><?php if ( ! empty( $VARS['plugin'] ) ) {
59
  echo ' fs-has-title';
60
+ } ?><?php if ( ! empty( $slug ) ) {
61
+ echo " fs-slug-{$slug}";
62
+ } ?><?php if ( ! empty( $type ) ) {
63
+ echo " fs-type-{$type}";
64
  } ?>"><?php if ( ! empty( $VARS['plugin'] ) ) : ?>
65
  <label class="fs-plugin-title"><?php echo $VARS['plugin'] ?></label>
66
  <?php endif ?>
freemius/templates/checkout.php CHANGED
@@ -79,7 +79,12 @@
79
 
80
  if ( $plugin_id == $fs->get_id() ) {
81
  $is_premium = $fs->is_premium();
82
- } else {
 
 
 
 
 
83
  // Identify the module code version of the checkout context module.
84
  if ( $fs->is_addon_activated( $plugin_id ) ) {
85
  $fs_addon = Freemius::get_instance_by_id( $plugin_id );
@@ -174,7 +179,7 @@
174
  fs_require_once_template('secure-https-header.php', $view_params);
175
  ?>
176
  <div id="fs_checkout" class="wrap fs-section fs-full-size-wrapper">
177
- <div id="frame"></div>
178
  <script type="text/javascript">
179
  // http://stackoverflow.com/questions/4583703/jquery-post-request-not-ajax
180
  jQuery(function ($) {
@@ -234,7 +239,7 @@
234
  src = base_url + '/?<?php echo http_build_query( $query_params ) ?>#' + encodeURIComponent(document.location.href),
235
  // Append the i-frame into the DOM.
236
  frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
237
- .appendTo('#frame');
238
 
239
  FS.PostMessage.init(base_url, [frame[0]]);
240
  FS.PostMessage.receiveOnce('height', function (data) {
79
 
80
  if ( $plugin_id == $fs->get_id() ) {
81
  $is_premium = $fs->is_premium();
82
+
83
+ $bundle_id = $fs->get_bundle_id();
84
+ if ( ! is_null( $bundle_id ) ) {
85
+ $context_params['bundle_id'] = $bundle_id;
86
+ }
87
+ } else {
88
  // Identify the module code version of the checkout context module.
89
  if ( $fs->is_addon_activated( $plugin_id ) ) {
90
  $fs_addon = Freemius::get_instance_by_id( $plugin_id );
179
  fs_require_once_template('secure-https-header.php', $view_params);
180
  ?>
181
  <div id="fs_checkout" class="wrap fs-section fs-full-size-wrapper">
182
+ <div id="fs_frame"></div>
183
  <script type="text/javascript">
184
  // http://stackoverflow.com/questions/4583703/jquery-post-request-not-ajax
185
  jQuery(function ($) {
239
  src = base_url + '/?<?php echo http_build_query( $query_params ) ?>#' + encodeURIComponent(document.location.href),
240
  // Append the i-frame into the DOM.
241
  frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
242
+ .appendTo('#fs_frame');
243
 
244
  FS.PostMessage.init(base_url, [frame[0]]);
245
  FS.PostMessage.receiveOnce('height', function (data) {
freemius/templates/connect.php CHANGED
@@ -314,7 +314,7 @@
314
  <a id="skip_activation" href="<?php echo fs_nonce_url( $fs->_get_admin_page_url( '', array( 'fs_action' => $fs->get_unique_affix() . '_skip_activation' ), $is_network_level_activation ), $fs->get_unique_affix() . '_skip_activation' ) ?>"
315
  class="button button-secondary" tabindex="2"><?php fs_esc_html_echo_x_inline( 'Skip', 'verb', 'skip', $slug ) ?></a>
316
  <?php endif ?>
317
- <?php if ( $is_network_level_activation ) : ?>
318
  <a id="delegate_to_site_admins" class="fs-tooltip-trigger <?php echo is_rtl() ? ' rtl' : '' ?>" href="<?php echo fs_nonce_url( $fs->_get_admin_page_url( '', array( 'fs_action' => $fs->get_unique_affix() . '_delegate_activation' ) ), $fs->get_unique_affix() . '_delegate_activation' ) ?>"><?php fs_esc_html_echo_inline( 'Delegate to Site Admins', 'delegate-to-site-admins', $slug ) ?><span class="fs-tooltip"><?php fs_esc_html_echo_inline( 'If you click it, this decision will be delegated to the sites administrators.', 'delegate-sites-tooltip', $slug ) ?></span></a>
319
  <?php endif ?>
320
  <?php if ( $activate_with_current_user ) : ?>
314
  <a id="skip_activation" href="<?php echo fs_nonce_url( $fs->_get_admin_page_url( '', array( 'fs_action' => $fs->get_unique_affix() . '_skip_activation' ), $is_network_level_activation ), $fs->get_unique_affix() . '_skip_activation' ) ?>"
315
  class="button button-secondary" tabindex="2"><?php fs_esc_html_echo_x_inline( 'Skip', 'verb', 'skip', $slug ) ?></a>
316
  <?php endif ?>
317
+ <?php if ( $is_network_level_activation && $fs->apply_filters( 'show_delegation_option', true ) ) : ?>
318
  <a id="delegate_to_site_admins" class="fs-tooltip-trigger <?php echo is_rtl() ? ' rtl' : '' ?>" href="<?php echo fs_nonce_url( $fs->_get_admin_page_url( '', array( 'fs_action' => $fs->get_unique_affix() . '_delegate_activation' ) ), $fs->get_unique_affix() . '_delegate_activation' ) ?>"><?php fs_esc_html_echo_inline( 'Delegate to Site Admins', 'delegate-to-site-admins', $slug ) ?><span class="fs-tooltip"><?php fs_esc_html_echo_inline( 'If you click it, this decision will be delegated to the sites administrators.', 'delegate-sites-tooltip', $slug ) ?></span></a>
319
  <?php endif ?>
320
  <?php if ( $activate_with_current_user ) : ?>
freemius/templates/contact.php CHANGED
@@ -86,7 +86,7 @@
86
  }
87
  ?>
88
  <div id="fs_contact" class="wrap fs-section fs-full-size-wrapper">
89
- <div id="frame"></div>
90
  <script type="text/javascript">
91
  (function ($) {
92
  $(function () {
@@ -99,14 +99,14 @@
99
 
100
  // Append the i-frame into the DOM.
101
  frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
102
- .appendTo('#frame');
103
 
104
  FS.PostMessage.init(base_url);
105
  FS.PostMessage.receive('height', function (data) {
106
  var h = data.height;
107
  if (!isNaN(h) && h > 0 && h != frame_height) {
108
  frame_height = h;
109
- $('#frame i' + 'frame').height(frame_height + 'px');
110
  }
111
  });
112
  });
86
  }
87
  ?>
88
  <div id="fs_contact" class="wrap fs-section fs-full-size-wrapper">
89
+ <div id="fs_frame"></div>
90
  <script type="text/javascript">
91
  (function ($) {
92
  $(function () {
99
 
100
  // Append the i-frame into the DOM.
101
  frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
102
+ .appendTo('#fs_frame');
103
 
104
  FS.PostMessage.init(base_url);
105
  FS.PostMessage.receive('height', function (data) {
106
  var h = data.height;
107
  if (!isNaN(h) && h > 0 && h != frame_height) {
108
  frame_height = h;
109
+ $('#fs_frame i' + 'frame').height(frame_height + 'px');
110
  }
111
  });
112
  });
freemius/templates/debug.php CHANGED
@@ -113,6 +113,7 @@
113
  if (optionName) {
114
  $.post(ajaxurl, {
115
  action : 'fs_get_db_option',
 
116
  option_name: optionName
117
  }, function (response) {
118
  if (response.data.value)
@@ -132,6 +133,7 @@
132
  if (optionValue) {
133
  $.post(ajaxurl, {
134
  action : 'fs_set_db_option',
 
135
  option_name : optionName,
136
  option_value: optionValue
137
  }, function () {
113
  if (optionName) {
114
  $.post(ajaxurl, {
115
  action : 'fs_get_db_option',
116
+ _wpnonce : '<?php echo wp_create_nonce( 'fs_get_db_option' ) ?>',
117
  option_name: optionName
118
  }, function (response) {
119
  if (response.data.value)
133
  if (optionValue) {
134
  $.post(ajaxurl, {
135
  action : 'fs_set_db_option',
136
+ _wpnonce : '<?php echo wp_create_nonce( 'fs_set_db_option' ) ?>',
137
  option_name : optionName,
138
  option_value: optionValue
139
  }, function () {
freemius/templates/forms/deactivation/form.php CHANGED
@@ -68,8 +68,11 @@ HTML;
68
  $activate_x_text = fs_text_inline( 'Activate %s', 'activate-x', $slug );
69
 
70
  fs_enqueue_local_style( 'fs_dialog_boxes', '/admin/dialog-boxes.css' );
 
 
 
 
71
  ?>
72
- <?php $fs->_maybe_add_subscription_cancellation_dialog_box() ?>
73
  <script type="text/javascript">
74
  (function ($) {
75
  var reasonsHtml = <?php echo json_encode( $reasons_list_items_html ) ?>,
68
  $activate_x_text = fs_text_inline( 'Activate %s', 'activate-x', $slug );
69
 
70
  fs_enqueue_local_style( 'fs_dialog_boxes', '/admin/dialog-boxes.css' );
71
+
72
+ if ( $fs->apply_filters( 'show_deactivation_subscription_cancellation', true ) ) {
73
+ $fs->_maybe_add_subscription_cancellation_dialog_box();
74
+ }
75
  ?>
 
76
  <script type="text/javascript">
77
  (function ($) {
78
  var reasonsHtml = <?php echo json_encode( $reasons_list_items_html ) ?>,
freemius/templates/forms/premium-versions-upgrade-metadata.php CHANGED
@@ -30,6 +30,8 @@
30
  array( 'licenses' => $license->quota )
31
  );
32
  }
 
 
33
  ?>
34
  <script type="text/javascript">
35
  (function( $ ) {
@@ -37,7 +39,7 @@
37
  var $premiumVersionCheckbox = $( 'input[type="checkbox"][value="<?php echo $fs->get_plugin_basename() ?>"]' );
38
 
39
  $premiumVersionCheckbox.addClass( 'license-expired' );
40
- $premiumVersionCheckbox.data( 'plugin-name', <?php echo json_encode( $fs->get_plugin_data()['Name'] ) ?> );
41
  $premiumVersionCheckbox.data( 'pricing-url', <?php echo json_encode( $purchase_url ) ?> );
42
  $premiumVersionCheckbox.data( 'new-version', <?php echo json_encode( $VARS['new_version'] ) ?> );
43
  });
30
  array( 'licenses' => $license->quota )
31
  );
32
  }
33
+
34
+ $plugin_data = $fs->get_plugin_data();
35
  ?>
36
  <script type="text/javascript">
37
  (function( $ ) {
39
  var $premiumVersionCheckbox = $( 'input[type="checkbox"][value="<?php echo $fs->get_plugin_basename() ?>"]' );
40
 
41
  $premiumVersionCheckbox.addClass( 'license-expired' );
42
+ $premiumVersionCheckbox.data( 'plugin-name', <?php echo json_encode( $plugin_data['Name'] ) ?> );
43
  $premiumVersionCheckbox.data( 'pricing-url', <?php echo json_encode( $purchase_url ) ?> );
44
  $premiumVersionCheckbox.data( 'new-version', <?php echo json_encode( $VARS['new_version'] ) ?> );
45
  });
freemius/templates/forms/subscription-cancellation.php CHANGED
@@ -95,8 +95,8 @@ HTML;
95
 
96
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
97
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
98
- /* translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
99
- $downgrade_x_confirm_text = fs_text_inline( '%1s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
100
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
101
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
102
  $after_downgrade_blocking_text = fs_text_inline( 'Once your license expires you can still use the Free version but you will NOT have access to the %s features.', 'after-downgrade-blocking', $slug );
95
 
96
  $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug );
97
  $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug );
98
+ /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */
99
+ $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug );
100
  $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug );
101
  $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug );
102
  $after_downgrade_blocking_text = fs_text_inline( 'Once your license expires you can still use the Free version but you will NOT have access to the %s features.', 'after-downgrade-blocking', $slug );
freemius/templates/js/style-premium-theme.php CHANGED
@@ -34,7 +34,7 @@
34
  if (0 === $theme.find('.fs-premium-theme-badge').length) {
35
  $theme.addClass('fs-premium');
36
 
37
- $theme.append('<span class="fs-premium-theme-badge">' + <?php echo json_encode( $fs->get_text_inline( 'Premium', 'premium' ) ) ?> +'</span>');
38
  }
39
  };
40
 
34
  if (0 === $theme.find('.fs-premium-theme-badge').length) {
35
  $theme.addClass('fs-premium');
36
 
37
+ $theme.append('<span class="fs-badge fs-premium-theme-badge">' + <?php echo json_encode( $fs->get_text_inline( 'Premium', 'premium' ) ) ?> +'</span>');
38
  }
39
  };
40
 
freemius/templates/partials/network-activation.php CHANGED
@@ -9,9 +9,13 @@
9
 
10
  $sites = $VARS['sites'];
11
  $require_license_key = $VARS['require_license_key'];
 
 
 
12
  ?>
13
  <?php $separator = '<td>|</td>' ?>
14
- <div id="multisite_options_container" class="apply-on-all-sites">
 
15
  <table id="all_sites_options">
16
  <tbody>
17
  <tr>
@@ -35,7 +39,9 @@
35
  <?php if ( ! $require_license_key ) : ?>
36
  <td><a class="action action-allow" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td>
37
  <?php echo $separator ?>
 
38
  <td><a class="action action-delegate" data-action-type="delegate" href="#"><?php fs_esc_html_echo_inline( 'delegate', 'delegate', $slug ) ?></a></td>
 
39
  <?php if ( $fs->is_enable_anonymous() ) : ?>
40
  <?php echo $separator ?>
41
  <td><a class="action action-skip" data-action-type="skip" href="#"><?php echo strtolower( fs_esc_html_inline( 'skip', 'skip', $slug ) ) ?></a></td>
@@ -67,7 +73,9 @@
67
  <?php if ( ! $require_license_key ) : ?>
68
  <td><a class="action action-allow selected" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td>
69
  <?php echo $separator ?>
 
70
  <td><a class="action action-delegate" data-action-type="delegate" href="#"><?php fs_esc_html_echo_inline( 'delegate', 'delegate', $slug ) ?></a></td>
 
71
  <?php if ( $fs->is_enable_anonymous() ) : ?>
72
  <?php echo $separator ?>
73
  <td><a class="action action-skip" data-action-type="skip" href="#"><?php echo strtolower( fs_esc_html_inline( 'skip', 'skip', $slug ) ) ?></a></td>
9
 
10
  $sites = $VARS['sites'];
11
  $require_license_key = $VARS['require_license_key'];
12
+
13
+ $show_delegation_option = $fs->apply_filters( 'show_delegation_option', true );
14
+ $enable_per_site_activation = $fs->apply_filters( 'enable_per_site_activation', true );
15
  ?>
16
  <?php $separator = '<td>|</td>' ?>
17
+ <div id="multisite_options_container" class="apply-on-all-sites"<?php if ( ! $enable_per_site_activation )
18
+ echo ' style="display: none;"' ?>>
19
  <table id="all_sites_options">
20
  <tbody>
21
  <tr>
39
  <?php if ( ! $require_license_key ) : ?>
40
  <td><a class="action action-allow" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td>
41
  <?php echo $separator ?>
42
+ <?php if ( $show_delegation_option ) : ?>
43
  <td><a class="action action-delegate" data-action-type="delegate" href="#"><?php fs_esc_html_echo_inline( 'delegate', 'delegate', $slug ) ?></a></td>
44
+ <?php endif ?>
45
  <?php if ( $fs->is_enable_anonymous() ) : ?>
46
  <?php echo $separator ?>
47
  <td><a class="action action-skip" data-action-type="skip" href="#"><?php echo strtolower( fs_esc_html_inline( 'skip', 'skip', $slug ) ) ?></a></td>
73
  <?php if ( ! $require_license_key ) : ?>
74
  <td><a class="action action-allow selected" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td>
75
  <?php echo $separator ?>
76
+ <?php if ( $show_delegation_option ) : ?>
77
  <td><a class="action action-delegate" data-action-type="delegate" href="#"><?php fs_esc_html_echo_inline( 'delegate', 'delegate', $slug ) ?></a></td>
78
+ <?php endif ?>
79
  <?php if ( $fs->is_enable_anonymous() ) : ?>
80
  <?php echo $separator ?>
81
  <td><a class="action action-skip" data-action-type="skip" href="#"><?php echo strtolower( fs_esc_html_inline( 'skip', 'skip', $slug ) ) ?></a></td>
freemius/templates/pricing.php CHANGED
@@ -57,6 +57,11 @@
57
  'plugin_version' => $fs->get_plugin_version(),
58
  );
59
 
 
 
 
 
 
60
  // Get site context secure params.
61
  if ( $fs->is_registered() ) {
62
  $context_params = array_merge( $context_params, FS_Security::instance()->get_context_params(
@@ -105,7 +110,7 @@
105
  }
106
  ?>
107
  <div id="fs_pricing" class="wrap fs-section fs-full-size-wrapper">
108
- <div id="frame"></div>
109
  <form action="" method="POST">
110
  <input type="hidden" name="user_id"/>
111
  <input type="hidden" name="user_email"/>
@@ -128,7 +133,7 @@
128
 
129
  // Append the I-frame into the DOM.
130
  frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
131
- .appendTo('#frame');
132
 
133
  FS.PostMessage.init(base_url, [frame[0]]);
134
 
57
  'plugin_version' => $fs->get_plugin_version(),
58
  );
59
 
60
+ $bundle_id = $fs->get_bundle_id();
61
+ if ( ! is_null( $bundle_id ) ) {
62
+ $context_params['bundle_id'] = $bundle_id;
63
+ }
64
+
65
  // Get site context secure params.
66
  if ( $fs->is_registered() ) {
67
  $context_params = array_merge( $context_params, FS_Security::instance()->get_context_params(
110
  }
111
  ?>
112
  <div id="fs_pricing" class="wrap fs-section fs-full-size-wrapper">
113
+ <div id="fs_frame"></div>
114
  <form action="" method="POST">
115
  <input type="hidden" name="user_id"/>
116
  <input type="hidden" name="user_email"/>
133
 
134
  // Append the I-frame into the DOM.
135
  frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
136
+ .appendTo('#fs_frame');
137
 
138
  FS.PostMessage.init(base_url, [frame[0]]);
139
 
freemius/templates/tabs.php CHANGED
@@ -30,6 +30,10 @@
30
  'support' :
31
  $item['menu_slug'];
32
 
 
 
 
 
33
  if ( ! $is_free_wp_org_theme || ! $fs->is_submenu_item_visible( $submenu_name, true ) ) {
34
  continue;
35
  }
30
  'support' :
31
  $item['menu_slug'];
32
 
33
+ if ( 'pricing' === $submenu_name && ! $fs->is_pricing_page_visible() ) {
34
+ continue;
35
+ }
36
+
37
  if ( ! $is_free_wp_org_theme || ! $fs->is_submenu_item_visible( $submenu_name, true ) ) {
38
  continue;
39
  }
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: gabelivan
3
  Tags: pagespeed, page speed, dequeue, performance, gtmetrix
4
  Donate link: https://gabelivan.com/items/wp-asset-cleanup-pro/?utm_source=wp_org_lite&utm_medium=donate
5
  Requires at least: 4.4
6
- Tested up to: 5.0.3
7
- Stable tag: 1.3
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
@@ -129,12 +129,18 @@ In case the assets are not loading for you, please write me on the forum and I w
129
  With the recently released "Test Mode" feature, you can safely unload assets on your web pages without affecting the pages' functionality for the regular visitors. It will unload CSS & JavaScript files that you selected ONLY for yourself (logged-in administrator). That's recommended in case you have any doubts about whether you should applying a specific setting or unload any asset. Once you've been through the trial and error and your website is lighter, you can deactivate "Test Mode", clear cache (if using a caching plugin) and the changes will apply for everyone. Then, test the page speed score of your website :)
130
 
131
  == Screenshots ==
132
- 1. When editing a post/page (custom post type as well) a meta box will load with the asset list
133
- 2. Styles (.CSS) loaded for the home page when accessing the "Asset CleanUp" Dashboard's menu
134
- 3. Scripts (.JS) loaded for the home page having an alert message when accessing the "Asset CleanUp" Dashboard's menu
135
- 4. Scripts (.JS) are selected for site-wide unload
136
 
137
  == Changelog ==
 
 
 
 
 
 
138
  = 1.3 =
139
  * New Feature: Minify CSS
140
  * Bug Fix: Make sure no 500 errors are returned on save settings or save post when the wrong caching directory is read
3
  Tags: pagespeed, page speed, dequeue, performance, gtmetrix
4
  Donate link: https://gabelivan.com/items/wp-asset-cleanup-pro/?utm_source=wp_org_lite&utm_medium=donate
5
  Requires at least: 4.4
6
+ Tested up to: 5.1
7
+ Stable tag: 1.3.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
129
  With the recently released "Test Mode" feature, you can safely unload assets on your web pages without affecting the pages' functionality for the regular visitors. It will unload CSS & JavaScript files that you selected ONLY for yourself (logged-in administrator). That's recommended in case you have any doubts about whether you should applying a specific setting or unload any asset. Once you've been through the trial and error and your website is lighter, you can deactivate "Test Mode", clear cache (if using a caching plugin) and the changes will apply for everyone. Then, test the page speed score of your website :)
130
 
131
  == Screenshots ==
132
+ 1. When editing a page, a meta box will load with the list of loaded CSS & JS files from the active theme & plugins
133
+ 2. Plugin Usage Preferences (From "Settings")
134
+ 3. Combine CSS & JS files option
135
+ 4. Homepage CSS & JS Management (List sorted by location)
136
 
137
  == Changelog ==
138
+ = 1.3.1 =
139
+ * CSS Files within <body> are also combined just like the ones from <head>
140
+ * Offer the option to clear the CSS/JS caching even if CSS/JS Minify/Combine options were deactivated
141
+ * Bug Fix: Old links to the manage homepage page from the admin bar were updated with the new ones
142
+ * Bug Fix: On some WordPress setups, the path to the CSS background image URL after combination was updated incorrectly
143
+
144
  = 1.3 =
145
  * New Feature: Minify CSS
146
  * Bug Fix: Make sure no 500 errors are returned on save settings or save post when the wrong caching directory is read
templates/_admin-page-settings-plugin-areas/_combine-loaded-files.php ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-combine-loaded-files';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Combine loaded CSS &amp; JavaScript files into fewer files', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+
15
+ <div style="line-height: 22px; background: #f8f8f8; border-left: 4px solid #008f9c; padding: 10px; margin: 0 0 15px;">
16
+ <strong>NOTE:</strong> Concatenating assets is no longer a recommended practice in HTTP/2. &nbsp; <span style="color: #0073aa;" class="dashicons dashicons-info"></span> <a id="wpacu-http2-info-link" href="#wpacu-http2-info">Read more</a> &nbsp;|&nbsp; <a target="_blank" href="https://tools.keycdn.com/http2-test">Verify if your server has HTTP/2 support</a>
17
+ </div>
18
+
19
+ <table class="wpacu-form-table">
20
+ <tr valign="top">
21
+ <th scope="row" class="setting_title">
22
+ <label for="wpacu_combine_loaded_css_enable">Combine loaded CSS (Stylesheets) into one file?</label>
23
+ <p class="wpacu_subtitle"><small><em>Helps reducing the number of HTTP Requests even further</em></small></p>
24
+ </th>
25
+ <td>
26
+ <label class="wpacu_switch">
27
+ <input id="wpacu_combine_loaded_css_enable"
28
+ type="checkbox"
29
+ <?php echo (in_array($data['combine_loaded_css'], array('for_admin', 'for_all', 1)) ? 'checked="checked"' : ''); ?>
30
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[combine_loaded_css]"
31
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
32
+
33
+ <small>* if /wp-content/cache/ directory is not writable for some reason, this feature will not work; requires the DOMDocument XML DOM Parser to be enabled in PHP (which it is by default) for maximum performance</small>
34
+
35
+ <div id="combine_loaded_css_info_area" <?php if (in_array($data['combine_loaded_css'], array('for_admin', 'for_all', 1))) { ?> style="opacity: 1;" <?php } else { ?>style="opacity: 0.4;"<?php } ?>>
36
+ <p style="margin-top: 8px; padding: 10px; background: #f2faf2;">
37
+ <label for="combine_loaded_css_for_admin_only_checkbox">
38
+ <input id="combine_loaded_css_for_admin_only_checkbox"
39
+ <?php echo ((in_array($data['combine_loaded_css_for_admin_only'], array('for_admin', 1))
40
+ || $data['combine_loaded_css'] === 'for_admin')
41
+ ? 'checked="checked"' : ''); ?>
42
+ type="checkbox"
43
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[combine_loaded_css_for_admin_only]"
44
+ value="1" />
45
+ Apply combination only for logged-in administrator (for debugging purposes)
46
+ </label>
47
+ </p>
48
+
49
+ <div id="wpacu_combine_loaded_css_exceptions_area">
50
+ <div style="margin: 0 0 6px;">Do not combine the CSS files matching the patterns below (one per line, see pattern examples below):</div>
51
+ <label for="combine_loaded_css_exceptions">
52
+ <textarea style="width: 100%;"
53
+ rows="4"
54
+ id="combine_loaded_css_exceptions"
55
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[combine_loaded_css_exceptions]"><?php echo $data['combine_loaded_css_exceptions']; ?></textarea>
56
+ </label>
57
+
58
+ <p>Pattern Examples (you don't have to add the full URL, as it's recommended to use relative paths):</p>
59
+ <code>/wp-includes/css/dashicons.min.css<br />/wp-includes/css/admin-bar.min.css<br />/wp-content/plugins/plugin-title/css/(.*?).css</code>
60
+
61
+ <div style="margin-top: 15px; margin-bottom: 0;"><hr /></div>
62
+ </div>
63
+
64
+ <p>This scans the remaining CSS files (left after cleaning up the unnecessary ones) from the <code>&lt;head&gt;</code> and <code>&lt;body&gt;</code> locations and combines them into ~2 files (one in each location). To be 100% sure everything works fine after activation, consider enabling this feature only for logged-in administrator, so only you can see the updated page. If all looks good, you can later uncheck the option to apply the feature to everyone else.</p>
65
+ <p style="margin-bottom: -7px;"><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> The following stylesheets are not included in the combined CSS file for maximum performance:</p>
66
+ <ul style="list-style: disc; margin-left: 35px; margin-bottom: 0;">
67
+ <li>Have any <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content">preloading added to them</a> via <code>rel="preload"</code> will not be combined as they have priority in loading and shouldn't be mixed with the rest of the CSS.</li>
68
+ <li style="margin-bottom: 0;">Have a different media attribute than "screen" and "all". If the "print" attribute is there, it is for a reason and it's not added together with "all".</li>
69
+ </ul>
70
+ <p style="margin-bottom: -7px; margin-top: 20px;"><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> This feature will not work <strong>IF</strong>:</p>
71
+ <ul style="margin-left: 35px; list-style: disc;">
72
+ <li>"Test Mode" is enabled, this feature will not work for the guest users, even if "Yes, for everyone" is chosen as "Test Mode" purpose is to make the plugin as inactive for non logged-in administrators for ultimate debugging.</li>
73
+ <li>The URL has query strings (e.g. an URL such as //www.yourdomain.com/product/title-here/?param=1&amp;param_two=value_here)</li>
74
+ </ul>
75
+ </div>
76
+ </td>
77
+ </tr>
78
+
79
+ <tr valign="top">
80
+ <th scope="row" class="setting_title">
81
+ <label for="wpacu_combine_loaded_js_enable">Combine loaded JS (JavaScript) into fewer files?</label>
82
+ <p class="wpacu_subtitle"><small><em>Helps reducing the number of HTTP Requests even further</em></small></p>
83
+ </th>
84
+ <td>
85
+ <?php echo $availableForPro; ?>
86
+ <label class="wpacu_switch wpacu_locked_for_pro">
87
+ <input id="wpacu_combine_loaded_js_enable"
88
+ type="checkbox"
89
+ disabled="disabled"
90
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[combine_loaded_js]"
91
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
92
+
93
+ &nbsp;<small>* if /wp-content/cache/ directory is not writable for some reason, this feature will not work; requires the DOMDocument XML DOM Parser to be enabled in PHP (which it is by default) for maximum performance</small>
94
+
95
+ <div id="combine_loaded_js_info_area" style="opacity: 0.4;">
96
+ <p style="margin-top: 8px; padding: 10px; background: #f2faf2;">
97
+ <label for="combine_loaded_js_for_admin_only_checkbox">
98
+ <input id="combine_loaded_js_for_admin_only_checkbox"
99
+ type="checkbox"
100
+ disabled="disabled"
101
+ value="1" />
102
+ Apply combination only for logged-in administrator (for debugging purposes)
103
+ </label>
104
+ </p>
105
+
106
+ <p style="padding: 10px; background: #f2faf2;">
107
+ <label for="wpacu_combine_loaded_js_defer_body_checkbox">
108
+ <input id="wpacu_combine_loaded_js_defer_body_checkbox"
109
+ type="checkbox"
110
+ disabled="disabled"
111
+ value="1" />
112
+ Defer loading JavaScript combined files from <code>&lt;body&gt;</code> (applies <code>defer="defer"</code> attribute to the combined script tags)
113
+ </label>
114
+ </p>
115
+
116
+ <hr />
117
+
118
+ <p>
119
+ This results in as less JS combination groups as possible (this combines all JS files into 2/3 files, keeping their HEAD and BODY locations and most of the inline script tags before them for maximum compatibility)
120
+ </p>
121
+
122
+ <p>Any inline JavaScript code associated with the combined scripts, will not be altered or moved in any way.</p>
123
+ <p><strong>Example:</strong> If you have 5 JS files (including jQuery library) loading in the <code>&lt;head&gt;</code> location and 7 JS files loading in <code>&lt;body&gt;</code> location, you will end up with a total of 3 JS files: jQuery library &amp; jQuery Migrate (they are not combined together with other JS files for maximum performance) in 1 file and the 2 JS files for HEAD and BODY, respectively.</p>
124
+
125
+ <hr />
126
+
127
+ <div class="clearfix"></div>
128
+
129
+ <p><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> To be 100% sure everything works fine after activation, consider using the checkbox option above to apply the changes only for logged-in administrator (yourself). If all looks good, you can later uncheck so the changes will apply to everyone.</p>
130
+
131
+ <hr />
132
+
133
+ <p style="margin-bottom: -7px;"><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> Any scripts having "defer" or "async" attributes (which are there for a reason) will not be combined together with other render-blocking scripts.</p>
134
+
135
+ <p style="margin-bottom: -7px; margin-top: 20px;"><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> This feature will not work <strong>IF</strong>:</p>
136
+ <ul style="list-style: disc; margin-left: 35px; margin-bottom: 0;">
137
+ <li>"Test Mode" is enabled and a guest (not logged-in) user visits the page, as the feature's ultimate purpose is to make the plugin inactive for non logged-in administrators for ultimate debugging.</li>
138
+ <li>The URL has query strings (e.g. an URL such as //www.yourdomain.com/product/title-here/?param=1&amp;param_two=value_here)</li>
139
+ </ul>
140
+ </div>
141
+ </td>
142
+ </tr>
143
+ </table>
144
+ </div>
145
+
146
+ <div id="wpacu-http2-info" class="wpacu-modal" style="padding-top: 100px;">
147
+ <div class="wpacu-modal-content" style="max-width: 800px;">
148
+ <span class="wpacu-close">&times;</span>
149
+ <h2 style="margin-top: 5px;">Combining CSS &amp; JavaScript files in HTTP/2 protocol</h2>
150
+ <p>While it's still a good idea to combine assets into fewer (or only one) files in HTTP/1 (since you are restricted to the number of open connections), doing the same in HTTP/2 is no longer a performance optimization due to the ability to transfer multiple small files simultaneously without much overhead.</p>
151
+
152
+ <hr />
153
+
154
+ <p>In HTTP/2 some of the issues that were addressed are:</p>
155
+ <ul>
156
+
157
+ <li><strong>Multiplexing</strong>: allows concurrent requests across a single TCP connection</li>
158
+ <li><strong>Server Push</strong>: whereby a server can push vital resources to the browser before being asked for them.</li>
159
+ </ul>
160
+
161
+ <hr />
162
+
163
+ <p>Since HTTP requests are loaded concurrently in HTTP/2, it's better to only serve the files that your visitors need and don't worry much about concatenation.</p>
164
+ <p>Note that page speed testing tools such as PageSpeed Insights, YSlow, Pingdom Tools or GTMetrix still recommend combining CSS/JS files because they haven't updated their recommendations based on HTTP/1 or HTTP/2 protocols so you should take into account the actual load time, not the performance grade.</p>
165
+
166
+ <hr />
167
+
168
+ <p style="margin-bottom: 12px;">If you do decide to move on with the concatenation (which at least would improve the GTMetrix performance grade from a cosmetic point of view), please remember to <strong>test thoroughly</strong> the pages that have the assets combined (pay attention to any JavaScript errors in the browser's console which is accessed via right click &amp; "Inspect") as, in rare cases, due to the order in which the scripts were loaded and the way their code was written, it could break some functionality.</p>
169
+ </div>
170
+ </div>
templates/_admin-page-settings-plugin-areas/_common-files-unload.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-common-files-unload';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Site-Wide Unload For Common CSS &amp; JS Files', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+ <p>This area allows you to quickly add the rule "Unload Site-wide" for the scripts below, which are often used in WordPress environments.</p>
15
+ <table class="wpacu-form-table">
16
+ <tr valign="top">
17
+ <th scope="row">
18
+ <label for="wpacu_disable_emojis">Disable Emojis Site-Wide?</label>
19
+ </th>
20
+ <td>
21
+ <label class="wpacu_switch">
22
+ <input id="wpacu_disable_emojis"
23
+ type="checkbox"
24
+ <?php echo (($data['disable_emojis'] == 1) ? 'checked="checked"' : ''); ?>
25
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[disable_emojis]"
26
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
27
+ &nbsp;
28
+ This will unload WordPress' Emojis (the smiley icons)
29
+ <p style="margin-top: 10px;">As of WordPress 4.2, a new feature was introduced that allows you to use the new Emojis. While on some WordPress setups is useful, in many situations (especially when you are not using WordPress as a blog), you just don’t need them and the file /wp-includes/js/wp-emoji-release.min.js is loaded along with extra inline JavaScript code which add up to the number of loaded HTTP requests.</p>
30
+ </td>
31
+ </tr>
32
+
33
+ <tr valign="top">
34
+ <th scope="row">
35
+ <label for="wpacu_disable_jquery_migrate">Disable jQuery Migrate Site-Wide? <span style="color: #cc0000;" class="dashicons dashicons-warning wordpress-core-file"><span class="wpacu-tooltip">WordPress Core File<br />Not sure if needed or not? In this case, it's better to leave it loaded to avoid breaking the website.</span></span></label>
36
+ </th>
37
+ <td>
38
+ <label class="wpacu_switch">
39
+ <input id="wpacu_disable_jquery_migrate" type="checkbox"
40
+ <?php echo (($data['disable_jquery_migrate'] == 1) ? 'checked="checked"' : ''); ?>
41
+ name="<?php echo WPACU_PLUGIN_ID . '_global_unloads'; ?>[disable_jquery_migrate]"
42
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
43
+ &nbsp;
44
+ This will unload jQuery Migrate (<em>jquery-migrate(.min).js</em>)
45
+ <p style="margin-top: 10px;">This is a JavaScript library that allows older jQuery code (up to version jQuery 1.9) to run on the latest version of jQuery avoiding incompatibility problems. Unless your website is using an old theme or has a jQuery plugin that was written a long time ago, this file is likely not needed to load. Consider disabling it to improve page loading time. Make sure to properly test the website.</p>
46
+ </td>
47
+ </tr>
48
+
49
+ <tr valign="top">
50
+ <th scope="row">
51
+ <label for="wpacu_disable_comment_reply">Disable Comment Reply Site-Wide? <span style="color: #cc0000;" class="dashicons dashicons-warning wordpress-core-file"><span class="wpacu-tooltip">WordPress Core File<br />Not sure if needed or not? In this case, it's better to leave it loaded to avoid breaking the website.</span></span></label>
52
+ </th>
53
+ <td>
54
+ <label class="wpacu_switch">
55
+ <input id="wpacu_disable_comment_reply" type="checkbox"
56
+ <?php echo (($data['disable_comment_reply'] == 1) ? 'checked="checked"' : ''); ?>
57
+ name="<?php echo WPACU_PLUGIN_ID . '_global_unloads'; ?>[disable_comment_reply]"
58
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
59
+ &nbsp;
60
+ This will unload Comment Reply (<em>/wp-includes/js/comment-reply(.min).js</em>)
61
+ <p style="margin-top: 10px;">This is safe to unload if you're not using WordPress as a blog, do not want visitors to leave comments or you've replaced the default WordPress comments with a comment platform such as Disqus or Facebook.</p>
62
+ </td>
63
+ </tr>
64
+ </table>
65
+ </div>
templates/_admin-page-settings-plugin-areas/_disable-xml-rpc-protocol.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-disable-xml-rpc';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Disable XML-RPC Protocol Support partially or completely', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+ <p><?php echo $settingsWithLock; ?></p>
15
+ <table class="wpacu-form-table">
16
+ <!-- Disable "XML-RPC" protocol support? -->
17
+ <tr valign="top">
18
+ <td>
19
+ <?php echo $availableForPro; ?>
20
+ <code>&lt;link rel=&quot;pingback&quot; href=&quot;https://www.yourwebsite.com/xmlrpc.php&quot; /&gt;</code>
21
+ <p style="margin-bottom: 10px;">This will disable XML-RPC protocol support and cleans up the "pingback" tag from the HEAD section of your website.</p>
22
+ <p style="margin-bottom: 10px;">This is an API service used by WordPress for 3rd party applications, such as mobile apps, communication between blogs, plugins such as Jetpack. If you use, or are planning to use a remote system to post content to your website, you can keep this feature enabled (which it is by default). Many users do not use this function at all and if you're one of them, you can disable it.</p>
23
+
24
+ <p style="margin-bottom: 10px;"><strong>Disable XML-RPC Pingback Only</strong>: If you need the XML-RPC protocol support, but you do not use the pingbacks which are used by your website to notify another website that you have linked to it from your page(s), you can just disable the pinbacks and keep the other XML-RPC functionality. This is also a security measure to prevent DDoS attacks.</p>
25
+
26
+ <p style="margin-bottom: 0;"><strong>Disable XML-RPC Completely</strong>: If you do not use Jetpack plugin for off-site server communication or you only use the Dashboard to post content (without any remote software connection to the WordPress website such as Windows Live Writer or mobile apps), then you can disable the XML-RPC functionality. You can always re-enable it whenever you believe you'll need it.</p>
27
+ </td>
28
+ </tr>
29
+ </table>
30
+ </div>
templates/_admin-page-settings-plugin-areas/_head-cleanup.php ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-head-cleanup';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Remove unused elements from the &lthead&gt; section', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+
15
+ <p><?php echo $settingsWithLock; ?></p>
16
+ <p>There are elements that are enabled by default in many WordPress environments, but not necessary to be enabled. Cleanup the unnecessary code between <code>&lt;head&gt;</code> and <code>&lt;/head&gt;</code>.</p>
17
+ <table class="wpacu-form-table">
18
+ <!-- Remove "Really Simple Discovery (RSD)" link? -->
19
+ <tr valign="top">
20
+ <th scope="row">
21
+ <label for="wpacu_remove_rsd_link">Remove "Really Simple Discovery (RSD)" link tag?</label>
22
+ </th>
23
+ <td>
24
+ <?php echo $availableForPro; ?>
25
+ <label class="wpacu_switch wpacu_locked_for_pro">
26
+ <input id="wpacu_remove_rsd_link"
27
+ type="checkbox"
28
+ disabled="disabled"
29
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_rsd_link]"
30
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
31
+ &nbsp;
32
+ <code>&lt;link rel=&quot;EditURI&quot; type=&quot;application/rsd xml&quot; title=&quot;RSD&quot; href=&quot;http://yourwebsite.com/xmlrpc.php?rsd&quot; /&gt;</code>
33
+ <p style="margin-top: 10px;">XML-RPC clients use this discover method. If you do not know what this is and don't use service integrations such as <a href="http://www.flickr.com/services/api/request.xmlrpc.html" target="_blank">Flickr</a> on your WordPress website, you can remove it.</p>
34
+ </td>
35
+ </tr>
36
+
37
+ <!-- Remove "Windows Live Writer" link? -->
38
+ <tr valign="top">
39
+ <th scope="row">
40
+ <label for="wpacu_remove_wlw_link">Remove "Windows Live Writer" link tag?</label>
41
+ </th>
42
+ <td>
43
+ <?php echo $availableForPro; ?>
44
+ <label class="wpacu_switch wpacu_locked_for_pro">
45
+ <input id="wpacu_remove_wlw_link"
46
+ type="checkbox"
47
+ disabled="disabled"
48
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_wlw_link]"
49
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
50
+ &nbsp;
51
+ <code>&lt;link rel=&quot;wlwmanifest&quot; type=&quot;application/wlwmanifest xml&quot; href=&quot;https://yourwebsite.com/asset-optimizer/wp-includes/wlwmanifest.xml&quot; /&gt;</code>
52
+ <p style="margin-top: 10px;">If you do not use Windows Live Writer to edit your blog contents, then it's safe to remove this.</p>
53
+ </td>
54
+ </tr>
55
+
56
+ <!-- Remove "REST API" link tag? -->
57
+ <tr valign="top">
58
+ <th scope="row">
59
+ <label for="wpacu_remove_rest_api_link">Remove "REST API" link tag?</label>
60
+ </th>
61
+ <td>
62
+ <?php echo $availableForPro; ?>
63
+ <label class="wpacu_switch wpacu_locked_for_pro">
64
+ <input id="wpacu_remove_rest_api_link"
65
+ type="checkbox"
66
+ disabled="disabled"
67
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_rest_api_link]"
68
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
69
+ &nbsp;
70
+ <code>&lt;link rel=&#39;https://api.w.org/&#39; href=&#39;https://yourwebsite.com/wp-json/&#39; /&gt;</code>
71
+ <p style="margin-top: 10px;">Are you accessing your content through endpoints (e.g. https://yourwebsite.com/wp-json/, https://yourwebsite.com/wp-json/wp/v2/posts/1 - <em>1</em> in this example is the POST ID)? If not, you can remove this.</p>
72
+ </td>
73
+ </tr>
74
+
75
+ <!-- Remove Pages/Posts "Shortlink" tag? -->
76
+ <tr valign="top">
77
+ <th scope="row">
78
+ <label for="wpacu_remove_shortlink">Remove Pages/Posts "Shortlink" tag?</label>
79
+ </th>
80
+ <td>
81
+ <?php echo $availableForPro; ?>
82
+ <label class="wpacu_switch wpacu_locked_for_pro">
83
+ <input id="wpacu_remove_shortlink"
84
+ type="checkbox"
85
+ disabled="disabled"
86
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_shortlink]"
87
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
88
+ &nbsp;
89
+ <code>&lt;link rel=&#39;shortlink&#39; href=&quot;https://yourdomain.com/?p=1&quot;&gt;</code>
90
+ <p style="margin-top: 10px;">Are you using SEO friendly URLs and do not need the default WordPress shortlink? You can just remove this as it bulks out the head section of your website.</p>
91
+ </td>
92
+ </tr>
93
+
94
+ <!-- Remove "Post's Relational Links" tag? -->
95
+ <tr valign="top">
96
+ <th scope="row">
97
+ <label for="wpacu_remove_posts_rel_links">Remove "Post's Relational Links" tag?</label>
98
+ </th>
99
+ <td>
100
+ <?php echo $availableForPro; ?>
101
+ <label class="wpacu_switch wpacu_locked_for_pro">
102
+ <input id="wpacu_remove_posts_rel_links"
103
+ type="checkbox"
104
+ disabled="disabled"
105
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_posts_rel_links]"
106
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
107
+ &nbsp;
108
+ <code>&lt;link rel=&#39;prev&#39; title=&#39;Title of adjacent post&#39; href=&#39;https://yourdomain.com/adjacent-post-slug-here/&#39; /&gt;</code>
109
+ <p style="margin-top: 10px;">This removes relational links for the posts adjacent to the current post for single post pages.</p>
110
+ </td>
111
+ </tr>
112
+
113
+ <!-- Remove "WordPress version" meta tag? -->
114
+ <tr valign="top">
115
+ <th scope="row">
116
+ <label for="wpacu_remove_wp_version">Remove "WordPress version" meta tag?</label>
117
+ </th>
118
+ <td>
119
+ <?php echo $availableForPro; ?>
120
+ <label class="wpacu_switch wpacu_locked_for_pro">
121
+ <input id="wpacu_remove_wp_version"
122
+ type="checkbox"
123
+ disabled="disabled"
124
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_wp_version]"
125
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
126
+ &nbsp;
127
+ <code>&lt;meta name=&quot;generator&quot; content=&quot;WordPress 4.9.8&quot; /&gt;</code>
128
+ <p style="margin-top: 10px;">This is good for security purposes as well, since it hides the WordPress version you're using (in case of hacking attempts).</p>
129
+ </td>
130
+ </tr>
131
+
132
+ <!-- Remove "WordPress version" meta tag and all other tags? -->
133
+ <tr valign="top">
134
+ <th scope="row">
135
+ <label for="wpacu_remove_generator_tag">Remove All "generator" meta tags?</label>
136
+ </th>
137
+ <td>
138
+ <?php echo $availableForPro; ?>
139
+ <label class="wpacu_switch wpacu_locked_for_pro">
140
+ <input id="wpacu_remove_generator_tag"
141
+ type="checkbox"
142
+ disabled="disabled"
143
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_generator_tag]"
144
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
145
+ &nbsp;
146
+ <code>e.g. &lt;meta name=&quot;generator&quot; content=&quot;Easy Digital Downloads v2.9.8&quot; /&gt;</code>
147
+ <p style="margin-top: 10px;">This will remove all meta tags with the "generator" name, including the WordPress version. You could use a plugin or a theme that has added a generator notice, but you do not need to have it there. Moreover, it will hide the version of the plugins and theme you're using which is good for security reasons.</p>
148
+ </td>
149
+ </tr>
150
+
151
+ <!-- Remove Main RSS Feed Link -->
152
+ <tr valign="top">
153
+ <th scope="row">
154
+ <label for="wpacu_remove_main_feed_link">Remove Main RSS Feed Link?</label>
155
+ </th>
156
+ <td>
157
+ <?php echo $availableForPro; ?>
158
+ <label class="wpacu_switch wpacu_locked_for_pro">
159
+ <input id="wpacu_remove_main_feed_link"
160
+ type="checkbox"
161
+ disabled="disabled"
162
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_main_feed_link]"
163
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
164
+ &nbsp;
165
+ <code>&lt;link rel=&quot;alternate&quot; type=&quot;application/rss xml&quot; title=&quot;Your Site Title &amp;raquo; Feed&quot; href=&quot;https://www.yourwebsite.com/feed/&quot; /&gt;</code>
166
+ <p style="margin-top: 10px;">If you do not use WordPress for blogging purposes at all, and it doesn't have any blog posts (apart from the main pages that you added), then you can remove the main feed link. It will also remove feeds for the following pages: categories, tags, custom taxonomies &amp; search results. Note that it will not remove comments RSS feeds which can be removed using the setting below. Some websites might have blog posts and would keep the main RSS feeds enabled, while removing the comments RSS feeds if they don't use the comments functionality.</p>
167
+ </td>
168
+ </tr>
169
+
170
+ <!-- Remove Comment Feeds Link -->
171
+ <tr valign="top">
172
+ <th scope="row">
173
+ <label for="wpacu_remove_comment_feed_link">Remove Comment RSS Feed Link?</label>
174
+ </th>
175
+ <td>
176
+ <?php echo $availableForPro; ?>
177
+ <label class="wpacu_switch wpacu_locked_for_pro">
178
+ <input id="wpacu_remove_comment_feed_link"
179
+ type="checkbox"
180
+ disabled="disabled"
181
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_comment_feed_link]"
182
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
183
+ &nbsp;
184
+ <code>e.g. &lt;link rel=&quot;alternate&quot; type=&quot;application/rss xml&quot; title=&quot;Your Website Title &amp;raquo; Comments Feed&quot; href=&quot;https://www.yourdomain.com/comments/feed/&quot; /&gt;</code>
185
+ <p style="margin-top: 10px;">If you do not use the comments functionality on your posts or do not use WordPress for blogging purposes at all, then you can remove the comments feed link.</p>
186
+ </td>
187
+ </tr>
188
+ </table>
189
+ </div>
templates/_admin-page-settings-plugin-areas/_minify-loaded-files.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-minify-loaded-files';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Minify loaded CSS &amp; JavaScript files to reduce total page size', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+ <table class="wpacu-form-table">
15
+ <tr valign="top">
16
+ <th scope="row" class="setting_title">
17
+ <label for="wpacu_minify_css_enable">CSS Files Minification</label>
18
+ <p class="wpacu_subtitle"><small><em>Helps decrease the total page size even further</em></small></p>
19
+ </th>
20
+ <td>
21
+ <label class="wpacu_switch">
22
+ <input id="wpacu_minify_css_enable"
23
+ type="checkbox"
24
+ <?php echo (($data['minify_loaded_css'] == 1) ? 'checked="checked"' : ''); ?>
25
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[minify_loaded_css]"
26
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
27
+
28
+ &nbsp;This will take the remaining enqueued CSS files, minify them and load them from the cache.
29
+
30
+ <?php
31
+ ?>
32
+
33
+ <div id="wpacu_minify_css_exceptions_area">
34
+ <div style="margin: 0 0 6px;">Do not minify the CSS files matching the patterns below (one per line):</div>
35
+ <label for="wpacu_minify_css_exceptions">
36
+ <textarea style="width: 100%;"
37
+ rows="5"
38
+ id="wpacu_minify_css_exceptions"
39
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[minify_loaded_css_exceptions]"><?php echo $data['minify_loaded_css_exceptions']; ?></textarea>
40
+ </label>
41
+ <div style="margin-top: 15px; margin-bottom: 0;"><hr /></div>
42
+ </div>
43
+ </td>
44
+ </tr>
45
+
46
+ <tr valign="top">
47
+ <th scope="row" class="setting_title" style="padding: 5px 20px 10px 0;">
48
+ <label for="wpacu_minify_js_enable">JavaScript Files Minification</label>
49
+ <p class="wpacu_subtitle"><small><em>Helps decrease the total page size even further</em></small></p>
50
+ </th>
51
+ <td>
52
+ <?php echo $availableForPro; ?>
53
+ <label class="wpacu_switch wpacu_locked_for_pro">
54
+ <input id="wpacu_minify_js_enable"
55
+ type="checkbox"
56
+ disabled="disabled"
57
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[minify_loaded_js]"
58
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
59
+ &nbsp;&nbsp;This will take the remaining enqueued JavaScript files, minify them and load them from the cache.
60
+ </td>
61
+ </tr>
62
+ </table>
63
+
64
+ <hr />
65
+
66
+ <ul style="list-style: none; margin-left: 18px;">
67
+ <li style="margin-bottom: 18px;"><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> The CSS/JS cached files will be re-generated once the file version changes (the value from <code>?ver=</code>). In addition, the versioning value from the source will be appended to the new cached CSS/JS file name (e.g. new-file-name-here-ver-1.2).</li>
68
+ <li><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> For maximum performance and to reduce server resources, the following CSS/JS files will not be minified, but kept as they are, since they are already optimised and minified by the WordPress core contributors &amp; developers:
69
+ <div style="margin: 15px 0 0 28px;">
70
+ <ul style="list-style: circle;">
71
+ <li>CSS/JS WordPress core files that end up in .min.css and .min.js (e.g. <code>/wp-includes/css/dashicons.min.css</code>, <code>/wp-includes/css/admin-bar.min.css</code>, <code>/wp-includes/js/jquery/jquery-migrate.min.js</code>, <code>/wp-includes/js/jquery/ui/datepicker.min.js</code> etc.)</li>
72
+ <li>jQuery library from <code>/wp-includes/js/jquery/jquery.js</code></li>
73
+ </ul>
74
+ </div>
75
+ </li>
76
+ </ul>
77
+ </div>
templates/_admin-page-settings-plugin-areas/_plugin-usage-settings.php ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-plugin-usage-settings';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Plugin Usage Preferences', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+ <p>Choose how the assets are retrieved and whether you would like to see them within the Dashboard / Front-end view; Decide how the management list of CSS &amp; JavaScript files will show up and get sorted, depending on your preferences.</p>
15
+ <table class="wpacu-form-table">
16
+ <tr valign="top">
17
+ <th scope="row">
18
+ <label for="wpacu_dashboard">Manage in the Dashboard?</label>
19
+ </th>
20
+ <td>
21
+ <label class="wpacu_switch">
22
+ <input id="wpacu_dashboard"
23
+ type="checkbox"
24
+ <?php echo (($data['dashboard_show'] == 1) ? 'checked="checked"' : ''); ?>
25
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[dashboard_show]"
26
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
27
+ &nbsp;
28
+ This will show the list of assets in a meta box on edit the post (any type) / page within the Dashboard
29
+ <p>The assets would be retrieved via AJAX call(s) that will fetch the post/page URL and extract all the styles &amp; scripts that are enqueued.</p>
30
+ <p>Note that sometimes the assets list is not loading within the Dashboard. That could be because "mod_security" Apache module is enabled or some securiy plugins are blocking the AJAX request. If this option doesn't work, consider managing the list in the front-end view.</p>
31
+
32
+ <div id="wpacu-settings-assets-retrieval-mode"
33
+ <?php if (! ($data['dashboard_show'] == 1)) { echo 'style="display: none;"'; } ?>>
34
+
35
+ <ul id="wpacu-dom-get-type-selections">
36
+ <li>
37
+ <label for="wpacu_dom_get_type">Select a retrieval way:</label>
38
+ </li>
39
+ <li>
40
+ <label>
41
+ <input class="wpacu-dom-get-type-selection"
42
+ data-target="wpacu-dom-get-type-direct-info"
43
+ <?php if ($data['dom_get_type'] === 'direct') { ?>checked="checked"<?php } ?>
44
+ type="radio" name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[dom_get_type]"
45
+ value="direct" /> Direct
46
+ </label>
47
+ </li>
48
+ <li>
49
+ <label>
50
+ <input class="wpacu-dom-get-type-selection"
51
+ data-target="wpacu-dom-get-type-wp-remote-post-info"
52
+ <?php if ($data['dom_get_type'] === 'wp_remote_post') { ?>checked="checked"<?php } ?>
53
+ type="radio" name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[dom_get_type]"
54
+ value="wp_remote_post" /> WP Remote Post
55
+ </label>
56
+ </li>
57
+ </ul>
58
+
59
+ <div class="wpacu-clearfix" style="height: 0;"></div>
60
+
61
+ <ul id="wpacu-dom-get-type-infos">
62
+ <li <?php if ($data['dom_get_type'] !== 'direct') { ?>style="display: none;"<?php } ?>
63
+ class="wpacu-dom-get-type-info"
64
+ id="wpacu-dom-get-type-direct-info">
65
+ <strong>Direct</strong> - This one makes an AJAX call directly on the URL for which the assets are retrieved, then an extra WordPress AJAX call to process the list. Sometimes, due to some external factors (e.g. mod_security module from Apache, security plugin or the fact that non-http is forced for the front-end view and the AJAX request will be blocked), this might not work and another choice method might work better. This used to be the only option available, prior to version 1.2.4.4 and is set as default.
66
+ </li>
67
+ <li <?php if ($data['dom_get_type'] !== 'wp_remote_post') { ?>style="display: none;"<?php } ?>
68
+ class="wpacu-dom-get-type-info"
69
+ id="wpacu-dom-get-type-wp-remote-post-info">
70
+ <strong>WP Remote Post</strong> - It makes a WordPress AJAX call and gets the HTML source code through wp_remote_post(). This one is less likely to be blocked as it is made on the same protocol (no HTTP request from HTTPS). However, in some cases (e.g. a different load balancer configuration), this might not work when the call to fetch a domain's URL (your website) is actually made from the same domain.
71
+ </li>
72
+ </ul>
73
+ </div>
74
+ </td>
75
+ </tr>
76
+ <tr valign="top">
77
+ <th scope="row">
78
+ <label for="wpacu_frontend">Manage in the Front-end?</label>
79
+ </th>
80
+ <td>
81
+ <label class="wpacu_switch">
82
+ <input id="wpacu_frontend"
83
+ type="checkbox"
84
+ <?php echo (($data['frontend_show'] == 1) ? 'checked="checked"' : ''); ?>
85
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[frontend_show]"
86
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
87
+ &nbsp;
88
+ If you are logged in, this will make the list of assets show below the page that you view (either home page, a post or a page).
89
+ <p style="margin-top: 10px;">The area will be shown through the <code>wp_footer</code> action so in case you do not see the asset list at the bottom of the page, make sure the theme is using <a href="https://codex.wordpress.org/Function_Reference/wp_footer"><code>wp_footer()</code></a> function before the <code>&lt;/body&gt;</code> tag. Any theme that follows the standards should have it. If not, you will have to add it to make sure other plugins and code from functions.php will work fine.</p>
90
+ </td>
91
+ </tr>
92
+ <tr valign="top">
93
+ <th scope="row">
94
+ <label for="wpacu_assets_list_layout">Assets List Layout</label>
95
+ </th>
96
+ <td>
97
+ <label>
98
+ <select id="wpacu_assets_list_layout"
99
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_layout]">
100
+ <option <?php if ($data['assets_list_layout'] === 'by-location') { echo 'selected="selected"'; } ?> value="by-location">All Styles &amp; Scripts &#10230; One list grouped by location (themes, plugins, core &amp; external)</option>
101
+ <option <?php if (in_array($data['assets_list_layout'], array('two-lists', 'default'))) { echo 'selected="selected"'; } ?> value="two-lists">All Styles + All Scripts &#10230; Two lists</option>
102
+ <option disabled="disabled" value="all">All Styles &amp; Scripts &#10230; One list (Pro Version)</option>
103
+ </select>
104
+ </label>
105
+
106
+ <p style="margin-top: 10px;">These are various ways in which the list of assets that you will manage will show up. Depending on your preference, you might want to see the list of styles &amp; scripts first, or all together sorted in alphabetical order etc. Options that are disabled are available in the Pro version.</p>
107
+ </td>
108
+ </tr>
109
+ <tr valign="top">
110
+ <th scope="row">
111
+ <label>On Assets List Layout Load, keep "Styles &amp; Scripts" area:</label>
112
+ </th>
113
+ <td>
114
+ <ul class="assets_list_layout_areas_status_choices">
115
+ <li>
116
+ <label for="assets_list_layout_areas_status_expanded">
117
+ <input id="assets_list_layout_areas_status_expanded"
118
+ <?php if (! $data['assets_list_layout_areas_status'] || $data['assets_list_layout_areas_status'] === 'expanded') { ?>checked="checked"<?php } ?>
119
+ type="radio"
120
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_layout_areas_status]"
121
+ value="expanded"> Expanded (Default)
122
+ </label>
123
+ </li>
124
+ <li>
125
+ <label for="assets_list_layout_areas_status_contracted">
126
+ <input id="assets_list_layout_areas_status_contracted"
127
+ <?php if ($data['assets_list_layout_areas_status'] === 'contracted') { ?>checked="checked"<?php } ?>
128
+ type="radio"
129
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_layout_areas_status]"
130
+ value="contracted"> Contracted
131
+ </label>
132
+ </li>
133
+ </ul>
134
+ <div class="wpacu-clearfix"></div>
135
+
136
+ <p>Sometimes, when you have plenty of elements in the edit page, you might want to contract the list of assets when you're viewing the page as it will save space. This can be a good practice, especially when you finished optimising the pages and you don't want to keep seeing the long list of files every time you edit a page.</p>
137
+ </td>
138
+ </tr>
139
+ <tr valign="top">
140
+ <th scope="row">
141
+ <label>On Assets List Layout Load, keep "Inline code associated with this handle" area:</label>
142
+ </th>
143
+ <td>
144
+ <ul class="assets_list_inline_code_status_choices">
145
+ <li>
146
+ <label for="assets_list_inline_code_status_expanded">
147
+ <input id="assets_list_inline_code_status_expanded"
148
+ <?php if (! $data['assets_list_inline_code_status'] || $data['assets_list_inline_code_status'] === 'expanded') { ?>checked="checked"<?php } ?>
149
+ type="radio"
150
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_inline_code_status]"
151
+ value="expanded"> Expanded (Default)
152
+ </label>
153
+ </li>
154
+ <li>
155
+ <label for="assets_list_inline_code_status_contracted">
156
+ <input id="assets_list_inline_code_status_contracted"
157
+ <?php if ($data['assets_list_inline_code_status'] === 'contracted') { ?>checked="checked"<?php } ?>
158
+ type="radio"
159
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_inline_code_status]"
160
+ value="contracted"> Contracted
161
+ </label>
162
+ </li>
163
+ </ul>
164
+ <div class="wpacu-clearfix"></div>
165
+
166
+ <p>Some assets (CSS &amp; JavaScript) have inline code associate with them and often, they are quite large, making the asset row bigger and requiring you to scroll more until you reach a specific area. By setting it to "Contracted", it will hide all the inline code by default and you can view it by clicking on the toggle link inside the asset row.</p>
167
+ </td>
168
+ </tr>
169
+ <tr valign="top">
170
+ <th scope="row" class="setting_title">
171
+ <label>Input Fields Style:</label>
172
+ <p class="wpacu_subtitle"><small><em>How would you like to view the checkboxes / selectors?</em></small></p>
173
+ <p class="wpacu_read_more"><a href="https://assetcleanup.com/docs/?p=95" target="_blank">Read More</a></p>
174
+ </th>
175
+ <td>
176
+ <ul class="input_style_choices">
177
+ <li>
178
+ <label for="input_style_enhanced">
179
+ <input id="input_style_enhanced"
180
+ <?php if (! $data['input_style'] || $data['input_style'] === 'enhanced') { ?>checked="checked"<?php } ?>
181
+ type="radio"
182
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[input_style]"
183
+ value="enhanced"> Enhanced iPhone Style (Default)
184
+ </label>
185
+ </li>
186
+ <li>
187
+ <label for="input_style_standard">
188
+ <input id="input_style_standard"
189
+ <?php if ($data['input_style'] === 'standard') { ?>checked="checked"<?php } ?>
190
+ type="radio"
191
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[input_style]"
192
+ value="standard"> Standard
193
+ </label>
194
+ </li>
195
+ </ul>
196
+ <div class="wpacu-clearfix"></div>
197
+
198
+ <p>In case you prefer standard HTML checkboxes instead of the enhanced CSS3 iPhone style ones (on &amp; off) or you need a simple HTML layout in case you're using a screen reader software (e.g. for people with disabilities) which requires standard/clean HTML code, then you can choose "Standard" as an option.</p>
199
+ </td>
200
+ </tr>
201
+ <tr valign="top">
202
+ <th scope="row">
203
+ <label for="wpacu_hide_core_files">Hide WordPress Core Files From The Assets List?</label>
204
+ </th>
205
+ <td>
206
+ <label class="wpacu_switch">
207
+ <input id="wpacu_hide_core_files"
208
+ type="checkbox"
209
+ <?php echo (($data['hide_core_files'] == 1) ? 'checked="checked"' : ''); ?>
210
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[hide_core_files]"
211
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
212
+ &nbsp;
213
+ WordPress Core Files have handles such as 'jquery', 'wp-embed', 'comment-reply', 'dashicons' etc.
214
+ <p style="margin-top: 10px;">They should only be unloaded by experienced developers when they are convinced that are not needed in particular situations. It's better to leave them loaded if you have any doubts whether you need them or not. By hiding them in the assets management list, you will see a smaller assets list (easier to manage) and you will avoid updating by mistake any option (unload, async, defer) related to any core file.</p>
215
+ </td>
216
+ </tr>
217
+ </table>
218
+ </div>
templates/_admin-page-settings-plugin-areas/_test-mode.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * No direct access to this file
4
+ */
5
+ if (! isset($data)) {
6
+ exit;
7
+ }
8
+
9
+ $tabIdArea = 'wpacu-setting-test-mode';
10
+ $styleTabContent = ($selectedTabArea === $tabIdArea) ? 'style="display: table-cell;"' : '';
11
+ ?>
12
+ <div id="<?php echo $tabIdArea; ?>" class="wpacu-settings-tab-content" <?php echo $styleTabContent; ?>>
13
+ <h2><?php _e('Test Mode', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
14
+ <p>Have your visitors load the website without any Asset CleanUp settings while you're going through the plugin setup and unloading the useless CSS &amp; JavaScript!</p>
15
+ <table class="wpacu-form-table">
16
+ <tr valign="top">
17
+ <th scope="row" class="setting_title">
18
+ <label for="wpacu_enable_test_mode">Enable Test Mode?</label>
19
+ <p class="wpacu_subtitle"><small><em>Apply plugin's changes for the admin only</em></small></p>
20
+ <p class="wpacu_read_more"><a target="_blank" href="https://assetcleanup.com/docs/?p=84">Read More</a></p>
21
+ </th>
22
+ <td>
23
+ <label class="wpacu_switch">
24
+ <input id="wpacu_enable_test_mode"
25
+ type="checkbox"
26
+ <?php echo (($data['test_mode'] == 1) ? 'checked="checked"' : ''); ?>
27
+ name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[test_mode]"
28
+ value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
29
+ &nbsp;
30
+ This is great for debugging when you're going through trial and error while removing unneeded CSS &amp; JavaScript on your website.
31
+ <p>Your visitors will load the website with all the settings &amp; assets loaded (just like it was before you activated the plugin).</p>
32
+ <p>For instance, you have an eCommerce website (e.g. WooCommerce, Easy Digital Downloads), and you're worried that unloading one wrong asset could break the "add to cart" functionality or the layout of the product page. You can enable this option, do the unloading for the CSS &amp; JavaScript files you believe are not needed on certain pages, test to check if everything is alright, and then disable test mode to enable the unloading for your visitors too (not only the admin).</p>
33
+ </td>
34
+ </tr>
35
+ </table>
36
+ </div>
templates/_top-area.php CHANGED
@@ -14,7 +14,7 @@ $wpacu_top_area_links = array(
14
  ),
15
  'admin.php?page=wpassetcleanup_assets_manager' => array(
16
  'icon' => '<span class="dashicons dashicons-media-code"></span>',
17
- 'title' => 'CSS &amp; JS Load Manager',
18
  'page' => 'wpassetcleanup_assets_manager',
19
  ),
20
  'admin.php?page=wpassetcleanup_bulk_unloads' => array(
14
  ),
15
  'admin.php?page=wpassetcleanup_assets_manager' => array(
16
  'icon' => '<span class="dashicons dashicons-media-code"></span>',
17
+ 'title' => 'CSS &amp; JavaScript Load Manager',
18
  'page' => 'wpassetcleanup_assets_manager',
19
  ),
20
  'admin.php?page=wpassetcleanup_bulk_unloads' => array(
templates/admin-page-plugins-manager.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- * No direct access to this file
4
- */
5
- if (! isset($data)) {
6
- exit;
7
- }
8
-
9
- include_once '_top-area.php';
10
- ?>
11
-
12
- <div class="wpacu-wrap">
13
- <table class="wp-list-table widefat plugins">
14
- <thead>
15
- <tr>
16
- <td width="100">&nbsp;</td>
17
- <td>Active Plugin</td>
18
- <tr>
19
- </thead>
20
- <?php
21
- foreach ($data['active_plugins'] as $plugin) {
22
- $plugin_data = get_plugin_data(WP_CONTENT_DIR . '/plugins/'.$plugin);
23
- list($plugin_dir) = explode('/', $plugin);
24
- ?>
25
- <tr>
26
- <td><img width="40" height="40" alt="" src="<?php echo isset($data['plugins_icons'][$plugin_dir]) ? $data['plugins_icons'][$plugin_dir] : ''; ?>" /></td>
27
- <td><?php echo $plugin_data['Name']; ?></td>
28
- </tr>
29
- <?php } ?>
30
- </table>
31
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/admin-page-settings-plugin.php CHANGED
@@ -14,669 +14,118 @@ $settingsWithLock = '<em><strong>Note:</strong> The settings that have a lock ar
14
  // [/wpacu_lite]
15
 
16
  do_action('wpacu_admin_notices');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  ?>
18
  <div class="wpacu-wrap wpacu-settings-area <?php if ($data['input_style'] !== 'standard') { ?>wpacu-switch-enhanced<?php } else { ?>wpacu-switch-standard<?php } ?>">
19
- <form method="post" action="">
20
  <input type="hidden" name="wpacu_settings_page" value="1" />
21
 
22
  <div id="wpacu-settings-vertical-tab-wrap">
23
  <div class="wpacu-settings-tab">
24
- <a href="#wpacu-setting-plugin-usage-settings" class="wpacu-settings-tab-link active" onclick="wpacuTabOpenSettingsArea(event, 'wpacu-setting-plugin-usage-settings');"><?php _e('General &amp; Files Management', WPACU_PLUGIN_TEXT_DOMAIN); ?></a>
25
- <a href="#wpacu-setting-test-mode" class="wpacu-settings-tab-link" onclick="wpacuTabOpenSettingsArea(event, 'wpacu-setting-test-mode');"><?php _e('Test Mode', WPACU_PLUGIN_TEXT_DOMAIN); ?></a>
26
- <!-- -->
27
- <a href="#wpacu-setting-combine-loaded-files" class="wpacu-settings-tab-link" onclick="wpacuTabOpenSettingsArea(event, 'wpacu-setting-combine-loaded-files');"><?php _e('Combine CSS &amp; JS Files', WPACU_PLUGIN_TEXT_DOMAIN); ?></a>
28
- <a href="#wpacu-setting-common-files-unload" class="wpacu-settings-tab-link" onclick="wpacuTabOpenSettingsArea(event, 'wpacu-setting-common-files-unload');"><?php _e('Common Elements Unload', WPACU_PLUGIN_TEXT_DOMAIN); ?></a>
29
- <a href="#wpacu-setting-head-cleanup" class="wpacu-settings-tab-link" onclick="wpacuTabOpenSettingsArea(event, 'wpacu-setting-head-cleanup');"><?php _e('&lthead&gt; CleanUp', WPACU_PLUGIN_TEXT_DOMAIN); ?></a>
30
- <a href="#wpacu-setting-disable-xml-rpc-protocol" class="wpacu-settings-tab-link" onclick="wpacuTabOpenSettingsArea(event, 'wpacu-setting-disable-xml-rpc-protocol');"><?php _e('Disable XML-RPC', WPACU_PLUGIN_TEXT_DOMAIN); ?></a>
31
- </div>
32
-
33
- <div id="wpacu-setting-plugin-usage-settings" class="wpacu-settings-tab-content" style="display: table-cell;">
34
- <h2><?php _e('Plugin Usage Preferences', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
35
- <p>Choose how the assets are retrieved and whether you would like to see them within the Dashboard / Front-end view; Decide how the management list of CSS &amp; JavaScript files will show up and get sorted, depending on your preferences.</p>
36
- <table class="wpacu-form-table">
37
- <tr valign="top">
38
- <th scope="row">
39
- <label for="wpacu_dashboard">Manage in the Dashboard?</label>
40
- </th>
41
- <td>
42
- <label class="wpacu_switch">
43
- <input id="wpacu_dashboard"
44
- type="checkbox"
45
- <?php echo (($data['dashboard_show'] == 1) ? 'checked="checked"' : ''); ?>
46
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[dashboard_show]"
47
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
48
- &nbsp;
49
- This will show the list of assets in a meta box on edit the post (any type) / page within the Dashboard
50
- <p>The assets would be retrieved via AJAX call(s) that will fetch the post/page URL and extract all the styles &amp; scripts that are enqueued.</p>
51
- <p>Note that sometimes the assets list is not loading within the Dashboard. That could be because "mod_security" Apache module is enabled or some securiy plugins are blocking the AJAX request. If this option doesn't work, consider managing the list in the front-end view.</p>
52
-
53
- <div id="wpacu-settings-assets-retrieval-mode"
54
- <?php if (! ($data['dashboard_show'] == 1)) { echo 'style="display: none;"'; } ?>>
55
-
56
- <ul id="wpacu-dom-get-type-selections">
57
- <li>
58
- <label for="wpacu_dom_get_type">Select a retrieval way:</label>
59
- </li>
60
- <li>
61
- <label>
62
- <input class="wpacu-dom-get-type-selection"
63
- data-target="wpacu-dom-get-type-direct-info"
64
- <?php if ($data['dom_get_type'] === 'direct') { ?>checked="checked"<?php } ?>
65
- type="radio" name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[dom_get_type]"
66
- value="direct" /> Direct
67
- </label>
68
- </li>
69
- <li>
70
- <label>
71
- <input class="wpacu-dom-get-type-selection"
72
- data-target="wpacu-dom-get-type-wp-remote-post-info"
73
- <?php if ($data['dom_get_type'] === 'wp_remote_post') { ?>checked="checked"<?php } ?>
74
- type="radio" name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[dom_get_type]"
75
- value="wp_remote_post" /> WP Remote Post
76
- </label>
77
- </li>
78
- </ul>
79
-
80
- <div class="wpacu-clearfix" style="height: 0;"></div>
81
-
82
- <ul id="wpacu-dom-get-type-infos">
83
- <li <?php if ($data['dom_get_type'] !== 'direct') { ?>style="display: none;"<?php } ?>
84
- class="wpacu-dom-get-type-info"
85
- id="wpacu-dom-get-type-direct-info">
86
- <strong>Direct</strong> - This one makes an AJAX call directly on the URL for which the assets are retrieved, then an extra WordPress AJAX call to process the list. Sometimes, due to some external factors (e.g. mod_security module from Apache, security plugin or the fact that non-http is forced for the front-end view and the AJAX request will be blocked), this might not work and another choice method might work better. This used to be the only option available, prior to version 1.2.4.4 and is set as default.
87
- </li>
88
- <li <?php if ($data['dom_get_type'] !== 'wp_remote_post') { ?>style="display: none;"<?php } ?>
89
- class="wpacu-dom-get-type-info"
90
- id="wpacu-dom-get-type-wp-remote-post-info">
91
- <strong>WP Remote Post</strong> - It makes a WordPress AJAX call and gets the HTML source code through wp_remote_post(). This one is less likely to be blocked as it is made on the same protocol (no HTTP request from HTTPS). However, in some cases (e.g. a different load balancer configuration), this might not work when the call to fetch a domain's URL (your website) is actually made from the same domain.
92
- </li>
93
- </ul>
94
- </div>
95
- </td>
96
- </tr>
97
- <tr valign="top">
98
- <th scope="row">
99
- <label for="wpacu_frontend">Manage in the Front-end?</label>
100
- </th>
101
- <td>
102
- <label class="wpacu_switch">
103
- <input id="wpacu_frontend"
104
- type="checkbox"
105
- <?php echo (($data['frontend_show'] == 1) ? 'checked="checked"' : ''); ?>
106
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[frontend_show]"
107
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
108
- &nbsp;
109
- If you are logged in, this will make the list of assets show below the page that you view (either home page, a post or a page).
110
- <p style="margin-top: 10px;">The area will be shown through the <code>wp_footer</code> action so in case you do not see the asset list at the bottom of the page, make sure the theme is using <a href="https://codex.wordpress.org/Function_Reference/wp_footer"><code>wp_footer()</code></a> function before the <code>&lt;/body&gt;</code> tag. Any theme that follows the standards should have it. If not, you will have to add it to make sure other plugins and code from functions.php will work fine.</p>
111
- </td>
112
- </tr>
113
- <tr valign="top">
114
- <th scope="row">
115
- <label for="wpacu_assets_list_layout">Assets List Layout</label>
116
- </th>
117
- <td>
118
- <label>
119
- <select id="wpacu_assets_list_layout"
120
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_layout]">
121
- <option <?php if ($data['assets_list_layout'] === 'by-location') { echo 'selected="selected"'; } ?> value="by-location">All Styles &amp; Scripts &#10230; One list grouped by location (themes, plugins, core &amp; external)</option>
122
- <option <?php if (in_array($data['assets_list_layout'], array('two-lists', 'default'))) { echo 'selected="selected"'; } ?> value="two-lists">All Styles + All Scripts &#10230; Two lists</option>
123
- <option disabled="disabled" value="all">All Styles &amp; Scripts &#10230; One list (Pro Version)</option>
124
- </select>
125
- </label>
126
-
127
- <p style="margin-top: 10px;">These are various ways in which the list of assets that you will manage will show up. Depending on your preference, you might want to see the list of styles &amp; scripts first, or all together sorted in alphabetical order etc. Options that are disabled are available in the Pro version.</p>
128
- </td>
129
- </tr>
130
- <tr valign="top">
131
- <th scope="row">
132
- <label>On Assets List Layout Load, keep "Styles &amp; Scripts" area:</label>
133
- </th>
134
- <td>
135
- <ul class="assets_list_layout_areas_status_choices">
136
- <li>
137
- <label for="assets_list_layout_areas_status_expanded">
138
- <input id="assets_list_layout_areas_status_expanded"
139
- <?php if (! $data['assets_list_layout_areas_status'] || $data['assets_list_layout_areas_status'] === 'expanded') { ?>checked="checked"<?php } ?>
140
- type="radio"
141
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_layout_areas_status]"
142
- value="expanded"> Expanded (Default)
143
- </label>
144
- </li>
145
- <li>
146
- <label for="assets_list_layout_areas_status_contracted">
147
- <input id="assets_list_layout_areas_status_contracted"
148
- <?php if ($data['assets_list_layout_areas_status'] === 'contracted') { ?>checked="checked"<?php } ?>
149
- type="radio"
150
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_layout_areas_status]"
151
- value="contracted"> Contracted
152
- </label>
153
- </li>
154
- </ul>
155
- <div class="wpacu-clearfix"></div>
156
-
157
- <p>Sometimes, when you have plenty of elements in the edit page, you might want to contract the list of assets when you're viewing the page as it will save space. This can be a good practice, especially when you finished optimising the pages and you don't want to keep seeing the long list of files every time you edit a page.</p>
158
- </td>
159
- </tr>
160
- <tr valign="top">
161
- <th scope="row">
162
- <label>On Assets List Layout Load, keep "Inline code associated with this handle" area:</label>
163
- </th>
164
- <td>
165
- <ul class="assets_list_inline_code_status_choices">
166
- <li>
167
- <label for="assets_list_inline_code_status_expanded">
168
- <input id="assets_list_inline_code_status_expanded"
169
- <?php if (! $data['assets_list_inline_code_status'] || $data['assets_list_inline_code_status'] === 'expanded') { ?>checked="checked"<?php } ?>
170
- type="radio"
171
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_inline_code_status]"
172
- value="expanded"> Expanded (Default)
173
- </label>
174
- </li>
175
- <li>
176
- <label for="assets_list_inline_code_status_contracted">
177
- <input id="assets_list_inline_code_status_contracted"
178
- <?php if ($data['assets_list_inline_code_status'] === 'contracted') { ?>checked="checked"<?php } ?>
179
- type="radio"
180
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[assets_list_inline_code_status]"
181
- value="contracted"> Contracted
182
- </label>
183
- </li>
184
- </ul>
185
- <div class="wpacu-clearfix"></div>
186
-
187
- <p>Some assets (CSS &amp; JavaScript) have inline code associate with them and often, they are quite large, making the asset row bigger and requiring you to scroll more until you reach a specific area. By setting it to "Contracted", it will hide all the inline code by default and you can view it by clicking on the toggle link inside the asset row.</p>
188
- </td>
189
- </tr>
190
- <tr valign="top">
191
- <th scope="row" class="setting_title">
192
- <label>Input Fields Style:</label>
193
- <p class="wpacu_subtitle"><small><em>How would you like to view the checkboxes / selectors?</em></small></p>
194
- <p class="wpacu_read_more"><a href="https://assetcleanup.com/docs/?p=95" target="_blank">Read More</a></p>
195
- </th>
196
- <td>
197
- <ul class="input_style_choices">
198
- <li>
199
- <label for="input_style_enhanced">
200
- <input id="input_style_enhanced"
201
- <?php if (! $data['input_style'] || $data['input_style'] === 'enhanced') { ?>checked="checked"<?php } ?>
202
- type="radio"
203
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[input_style]"
204
- value="enhanced"> Enhanced iPhone Style (Default)
205
- </label>
206
- </li>
207
- <li>
208
- <label for="input_style_standard">
209
- <input id="input_style_standard"
210
- <?php if ($data['input_style'] === 'standard') { ?>checked="checked"<?php } ?>
211
- type="radio"
212
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[input_style]"
213
- value="standard"> Standard
214
- </label>
215
- </li>
216
- </ul>
217
- <div class="wpacu-clearfix"></div>
218
-
219
- <p>In case you prefer standard HTML checkboxes instead of the enhanced CSS3 iPhone style ones (on &amp; off) or you need a simple HTML layout in case you're using a screen reader software (e.g. for people with disabilities) which requires standard/clean HTML code, then you can choose "Standard" as an option.</p>
220
- </td>
221
- </tr>
222
- <tr valign="top">
223
- <th scope="row">
224
- <label for="wpacu_hide_core_files">Hide WordPress Core Files From The Assets List?</label>
225
- </th>
226
- <td>
227
- <label class="wpacu_switch">
228
- <input id="wpacu_hide_core_files"
229
- type="checkbox"
230
- <?php echo (($data['hide_core_files'] == 1) ? 'checked="checked"' : ''); ?>
231
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[hide_core_files]"
232
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
233
- &nbsp;
234
- WordPress Core Files have handles such as 'jquery', 'wp-embed', 'comment-reply', 'dashicons' etc.
235
- <p style="margin-top: 10px;">They should only be unloaded by experienced developers when they are convinced that are not needed in particular situations. It's better to leave them loaded if you have any doubts whether you need them or not. By hiding them in the assets management list, you will see a smaller assets list (easier to manage) and you will avoid updating by mistake any option (unload, async, defer) related to any core file.</p>
236
- </td>
237
- </tr>
238
- </table>
239
- </div>
240
-
241
- <div id="wpacu-setting-test-mode" class="wpacu-settings-tab-content">
242
- <h2><?php _e('Test Mode', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
243
- <p>Have your visitors load the website without any Asset CleanUp settings while you're going through the plugin setup and unloading the useless CSS &amp; JavaScript!</p>
244
- <table class="wpacu-form-table">
245
- <tr valign="top">
246
- <th scope="row" class="setting_title">
247
- <label for="wpacu_enable_test_mode">Enable Test Mode?</label>
248
- <p class="wpacu_subtitle"><small><em>Apply plugin's changes for the admin only</em></small></p>
249
- <p class="wpacu_read_more"><a target="_blank" href="https://assetcleanup.com/docs/?p=84">Read More</a></p>
250
- </th>
251
- <td>
252
- <label class="wpacu_switch">
253
- <input id="wpacu_enable_test_mode"
254
- type="checkbox"
255
- <?php echo (($data['test_mode'] == 1) ? 'checked="checked"' : ''); ?>
256
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[test_mode]"
257
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
258
- &nbsp;
259
- This is great for debugging when you're going through trial and error while removing unneeded CSS &amp; JavaScript on your website.
260
- <p>Your visitors will load the website with all the settings &amp; assets loaded (just like it was before you activated the plugin).</p>
261
- <p>For instance, you have an eCommerce website (e.g. WooCommerce, Easy Digital Downloads), and you're worried that unloading one wrong asset could break the "add to cart" functionality or the layout of the product page. You can enable this option, do the unloading for the CSS &amp; JavaScript files you believe are not needed on certain pages, test to check if everything is alright, and then disable test mode to enable the unloading for your visitors too (not only the admin).</p>
262
- </td>
263
- </tr>
264
- </table>
265
- </div>
266
-
267
- <div id="wpacu-setting-minify-loaded-files" class="wpacu-settings-tab-content">
268
- <h2><?php _e('Minify loaded CSS &amp; JavaScript files to reduce total page size', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
269
- <table class="wpacu-form-table">
270
- <tr valign="top">
271
- <th scope="row" class="setting_title">
272
- <label for="wpacu_minify_css_enable">CSS Files Minification</label>
273
- <p class="wpacu_subtitle"><small><em>Helps decrease the total page size even further</em></small></p>
274
- </th>
275
- <td>
276
- <label class="wpacu_switch">
277
- <input id="wpacu_minify_css_enable"
278
- type="checkbox"
279
- <?php echo (($data['minify_loaded_css'] == 1) ? 'checked="checked"' : ''); ?>
280
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[minify_loaded_css]"
281
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
282
-
283
- &nbsp;This will take the remaining enqueued CSS files, minify them and load them from the cache.
284
-
285
- <?php
286
- $minifyCssExceptionsAreaStyle = ($data['minify_loaded_css'] == 1) ? 'display: block;' : 'display: none;';
287
- ?>
288
-
289
- <div id="wpacu_minify_css_exceptions_area" style="<?php echo $minifyCssExceptionsAreaStyle; ?>">
290
- <div style="margin: 0 0 6px;">Do not minify the CSS files matching the patterns below (one per line):</div>
291
- <label for="wpacu_minify_css_exceptions">
292
- <textarea style="width: 100%;"
293
- rows="5"
294
- id="wpacu_minify_css_exceptions"
295
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[minify_loaded_css_exceptions]"><?php echo $data['minify_loaded_css_exceptions']; ?></textarea>
296
- </label>
297
- <div style="margin-top: 15px; margin-bottom: 0;"><hr /></div>
298
- </div>
299
- </td>
300
- </tr>
301
-
302
- <tr valign="top">
303
- <th scope="row" class="setting_title" style="padding: 5px 20px 10px 0;">
304
- <label for="wpacu_minify_js_enable">JavaScript Files Minification</label>
305
- <p class="wpacu_subtitle"><small><em>Helps decrease the total page size even further</em></small></p>
306
- </th>
307
- <td>
308
- <?php echo $availableForPro; ?>
309
- <label class="wpacu_switch wpacu_locked_for_pro">
310
- <input id="wpacu_minify_js_enable"
311
- type="checkbox"
312
- disabled="disabled"
313
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[minify_loaded_js]"
314
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
315
- &nbsp;&nbsp;This will take the remaining enqueued JavaScript files, minify them and load them from the cache.
316
- </td>
317
- </tr>
318
- </table>
319
-
320
- <hr />
321
-
322
- <ul style="list-style: none; margin-left: 18px;">
323
- <li style="margin-bottom: 18px;"><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> The CSS/JS cached files will be re-generated once the file version changes (the value from <code>?ver=</code>). In addition, the versioning value from the source will be appended to the new cached CSS/JS file name (e.g. new-file-name-here-ver-1.2).</li>
324
- <li><span style="color: #ffc107;" class="dashicons dashicons-lightbulb"></span> For maximum performance and to reduce server resources, the following CSS/JS files will not be minified, but kept as they are, since they are already optimised and minified by the WordPress core contributors &amp; developers:
325
- <div style="margin: 15px 0 0 28px;">
326
- <ul style="list-style: circle;">
327
- <li>CSS/JS WordPress core files that end up in .min.css and .min.js (e.g. <code>/wp-includes/css/dashicons.min.css</code>, <code>/wp-includes/css/admin-bar.min.css</code>, <code>/wp-includes/js/jquery/jquery-migrate.min.js</code>, <code>/wp-includes/js/jquery/ui/datepicker.min.js</code> etc.)</li>
328
- <li>jQuery library from <code>/wp-includes/js/jquery/jquery.js</code></li>
329
- </ul>
330
- </div>
331
- </li>
332
- </ul>
333
- </div>
334
-
335
- <div id="wpacu-setting-combine-loaded-files" class="wpacu-settings-tab-content">
336
- <h2><?php _e('Combine loaded CSS &amp; JavaScript files into fewer files to reduce HTTP Requests', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
337
- <p><?php echo $settingsWithLock; ?></p>
338
- <table class="wpacu-form-table">
339
- <tr valign="top">
340
- <th scope="row" class="setting_title">
341
- <label for="wpacu_combine_loaded_css">Combine loaded CSS into one file?</label>
342
- <p class="wpacu_subtitle"><small><em>Helps reducing the number of HTTP Requests even further</em></small></p>
343
- </th>
344
- <td>
345
- <select id="wpacu_combine_loaded_css" name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[combine_loaded_css]">
346
- <option <?php if ($data['combine_loaded_css'] === 'default') { ?>selected="selected"<?php } ?> value="">No (default)</option>
347
- <option <?php if ($data['combine_loaded_css'] === 'for_admin') { ?>selected="selected"<?php } ?> value="for_admin">Yes, for logged-in administrators</option>
348
- <option <?php if ($data['combine_loaded_css'] === 'for_all') { ?>selected="selected"<?php } ?> value="for_all">Yes, for everyone</option>
349
- </select> <small>* if /wp-content/cache/ directory is not writable for some reason, this feature will not work; requires the DOMDocument XML DOM Parser to be enabled in PHP (which it is by default) for maximum performance</small>
350
- &nbsp;
351
- <p>This scans the remaining CSS files (left after cleaning up the unnecessary ones) from the <code>&lt;head&gt;</code> and combines them into one file. To be 100% sure everything works fine after activation, consider using "Yes, for logged-in administrators" so only you can see the updated page. If all looks good, you can later switch it to "Yes (for everyone)".</p>
352
- <p style="margin-bottom: -7px;">The following stylesheets are not included in the combined CSS file for maximum performance:</p>
353
- <ul style="list-style: disc; margin-left: 25px; margin-bottom: 0;">
354
- <li>Have any <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content">preloading added to them</a> via <code>rel="preload"</code> will not be combined as they have priority in loading and shouldn't be mixed with the rest of the CSS.</li>
355
- <li style="margin-bottom: 0;">Are loaded within the <code>&lt;body&gt;</code> part of the page as they were likely added there because they are needed after the page is rendered (e.g. for AJAX styling calls, popups or elements that are not visible in the top viewport etc.)</li>
356
- </ul>
357
- <p style="margin-bottom: -7px; margin-top: 20px;">This feature will not work <strong>IF</strong>:</p>
358
- <ul style="margin-left: 25px; list-style: disc;">
359
- <li>"Test Mode" is enabled, this feature will not work for the guest users, even if "Yes, for everyone" is chosen as "Test Mode" purpose is to make the plugin as inactive for non logged-in administrators for ultimate debugging.</li>
360
- <li>The URL has query strings (e.g. an URL such as //www.yourdomain.com/product/title-here/?param=1&amp;param_two=value_here)</li>
361
- </ul>
362
- <p style="margin-top: 25px;"><strong>Note:</strong> If "CSS files minification" is enabled, the combine feature will add up the minified version (if any) of each of the detected CSS files to the combination list.</p>
363
- </td>
364
- </tr>
365
- <tr>
366
- <td colspan="2"><hr /></td>
367
- </tr>
368
- <tr valign="top">
369
- <th scope="row" class="setting_title">
370
- <label>Combine loaded JS (JavaScript) into fewer files?</label>
371
- <p class="wpacu_subtitle"><small><em>Helps reducing the number of HTTP Requests even further</em></small></p>
372
- </th>
373
- <td>
374
- <?php echo $availableForPro; ?> <small>* if /wp-content/cache/ directory is not writable for some reason, this feature will not work; requires the DOMDocument XML DOM Parser to be enabled in PHP (which it is by default) for maximum performance</small>
375
- &nbsp;
376
- <p>This scans the remaining JavaScript files (left after cleaning up the unnecessary ones) from the <code>&lt;head&gt;</code> and <code>&lt;body&gt;</code> and combines them into fewer files. The combination is made in such a way that it will not interefere with any inline JavaScript code associated with any of the files. To be 100% sure everything works fine after activation, consider using "Yes, for logged-in administrators" so only you can see the updated page. If all looks good, you can later switch it to "Yes (for everyone)".</p>
377
- <p style="margin-bottom: -7px;">For maximum performance and making sure that no functionality is broken the following JavaScript files:</p>
378
- <ul style="list-style: disc; margin-left: 25px; margin-bottom: 0;">
379
- <li>Any script tag having "defer" or "async" attributes</li>
380
- <li>Scripts that have inline code associated with it</li>
381
- </ul>
382
- <p style="margin-bottom: -7px; margin-top: 20px;">This feature will not work <strong>IF</strong>:</p>
383
- <ul style="list-style: disc; margin-left: 25px; margin-bottom: 0;">
384
- <li>"Test Mode" is enabled, this feature will not work for the guest users, even if "Yes, for everyone" is chosen as "Test Mode" purpose is to make the plugin as inactive for non logged-in administrators for ultimate debugging.</li>
385
- <li>The URL has query strings (e.g. an URL such as //www.yourdomain.com/product/title-here/?param=1&amp;param_two=value_here)</li>
386
- </ul>
387
-
388
- <p style="margin-top: 25px;"><strong>Note:</strong> If "JavaScript files minification" is enabled, the combine feature will add up the minified version (if any) of each of the detected JS files to the combination list.</p>
389
- </td>
390
- </tr>
391
- </table>
392
- </div>
393
-
394
- <div id="wpacu-setting-common-files-unload" class="wpacu-settings-tab-content">
395
- <h2><?php _e('Site-Wide Unload For Common CSS &amp; JS Files', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
396
- <p>This area allows you to quickly add the rule "Unload Site-wide" for the scripts below, which are often used in WordPress environments.</p>
397
- <table class="wpacu-form-table">
398
- <tr valign="top">
399
- <th scope="row">
400
- <label for="wpacu_disable_emojis">Disable Emojis Site-Wide?</label>
401
- </th>
402
- <td>
403
- <label class="wpacu_switch">
404
- <input id="wpacu_disable_emojis"
405
- type="checkbox"
406
- <?php echo (($data['disable_emojis'] == 1) ? 'checked="checked"' : ''); ?>
407
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[disable_emojis]"
408
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
409
- &nbsp;
410
- This will unload WordPress' Emojis (the smiley icons)
411
- <p style="margin-top: 10px;">As of WordPress 4.2, a new feature was introduced that allows you to use the new Emojis. While on some WordPress setups is useful, in many situations (especially when you are not using WordPress as a blog), you just don’t need them and the file /wp-includes/js/wp-emoji-release.min.js is loaded along with extra inline JavaScript code which add up to the number of loaded HTTP requests.</p>
412
- </td>
413
- </tr>
414
-
415
- <tr valign="top">
416
- <th scope="row">
417
- <label for="wpacu_disable_jquery_migrate">Disable jQuery Migrate Site-Wide? <span style="color: #cc0000;" class="dashicons dashicons-warning wordpress-core-file"><span class="wpacu-tooltip">WordPress Core File<br />Not sure if needed or not? In this case, it's better to leave it loaded to avoid breaking the website.</span></span></label>
418
- </th>
419
- <td>
420
- <label class="wpacu_switch">
421
- <input id="wpacu_disable_jquery_migrate" type="checkbox"
422
- <?php echo (($data['disable_jquery_migrate'] == 1) ? 'checked="checked"' : ''); ?>
423
- name="<?php echo WPACU_PLUGIN_ID . '_global_unloads'; ?>[disable_jquery_migrate]"
424
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
425
- &nbsp;
426
- This will unload jQuery Migrate (<em>jquery-migrate(.min).js</em>)
427
- <p style="margin-top: 10px;">This is a JavaScript library that allows older jQuery code (up to version jQuery 1.9) to run on the latest version of jQuery avoiding incompatibility problems. Unless your website is using an old theme or has a jQuery plugin that was written a long time ago, this file is likely not needed to load. Consider disabling it to improve page loading time. Make sure to properly test the website.</p>
428
- </td>
429
- </tr>
430
-
431
- <tr valign="top">
432
- <th scope="row">
433
- <label for="wpacu_disable_comment_reply">Disable Comment Reply Site-Wide? <span style="color: #cc0000;" class="dashicons dashicons-warning wordpress-core-file"><span class="wpacu-tooltip">WordPress Core File<br />Not sure if needed or not? In this case, it's better to leave it loaded to avoid breaking the website.</span></span></label>
434
- </th>
435
- <td>
436
- <label class="wpacu_switch">
437
- <input id="wpacu_disable_comment_reply" type="checkbox"
438
- <?php echo (($data['disable_comment_reply'] == 1) ? 'checked="checked"' : ''); ?>
439
- name="<?php echo WPACU_PLUGIN_ID . '_global_unloads'; ?>[disable_comment_reply]"
440
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
441
- &nbsp;
442
- This will unload Comment Reply (<em>/wp-includes/js/comment-reply(.min).js</em>)
443
- <p style="margin-top: 10px;">This is safe to unload if you're not using WordPress as a blog, do not want visitors to leave comments or you've replaced the default WordPress comments with a comment platform such as Disqus or Facebook.</p>
444
- </td>
445
- </tr>
446
- </table>
447
- </div>
448
-
449
- <div id="wpacu-setting-head-cleanup" class="wpacu-settings-tab-content">
450
- <h2><?php _e('Remove unused elements from the &lthead&gt; section', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
451
-
452
- <p><?php echo $settingsWithLock; ?></p>
453
- <p>There are elements that are enabled by default in many WordPress environments, but not necessary to be enabled. Cleanup the unnecessary code between <code>&lt;head&gt;</code> and <code>&lt;/head&gt;</code>.</p>
454
- <table class="wpacu-form-table">
455
- <!-- Remove "Really Simple Discovery (RSD)" link? -->
456
- <tr valign="top">
457
- <th scope="row">
458
- <label for="wpacu_remove_rsd_link">Remove "Really Simple Discovery (RSD)" link tag?</label>
459
- </th>
460
- <td>
461
- <?php echo $availableForPro; ?>
462
- <label class="wpacu_switch wpacu_locked_for_pro">
463
- <input id="wpacu_remove_rsd_link"
464
- type="checkbox"
465
- disabled="disabled"
466
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_rsd_link]"
467
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
468
- &nbsp;
469
- <code>&lt;link rel=&quot;EditURI&quot; type=&quot;application/rsd xml&quot; title=&quot;RSD&quot; href=&quot;http://yourwebsite.com/xmlrpc.php?rsd&quot; /&gt;</code>
470
- <p style="margin-top: 10px;">XML-RPC clients use this discover method. If you do not know what this is and don't use service integrations such as <a href="http://www.flickr.com/services/api/request.xmlrpc.html" target="_blank">Flickr</a> on your WordPress website, you can remove it.</p>
471
- </td>
472
- </tr>
473
-
474
- <!-- Remove "Windows Live Writer" link? -->
475
- <tr valign="top">
476
- <th scope="row">
477
- <label for="wpacu_remove_wlw_link">Remove "Windows Live Writer" link tag?</label>
478
- </th>
479
- <td>
480
- <?php echo $availableForPro; ?>
481
- <label class="wpacu_switch wpacu_locked_for_pro">
482
- <input id="wpacu_remove_wlw_link"
483
- type="checkbox"
484
- disabled="disabled"
485
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_wlw_link]"
486
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
487
- &nbsp;
488
- <code>&lt;link rel=&quot;wlwmanifest&quot; type=&quot;application/wlwmanifest xml&quot; href=&quot;https://yourwebsite.com/asset-optimizer/wp-includes/wlwmanifest.xml&quot; /&gt;</code>
489
- <p style="margin-top: 10px;">If you do not use Windows Live Writer to edit your blog contents, then it's safe to remove this.</p>
490
- </td>
491
- </tr>
492
-
493
- <!-- Remove "REST API" link tag? -->
494
- <tr valign="top">
495
- <th scope="row">
496
- <label for="wpacu_remove_rest_api_link">Remove "REST API" link tag?</label>
497
- </th>
498
- <td>
499
- <?php echo $availableForPro; ?>
500
- <label class="wpacu_switch wpacu_locked_for_pro">
501
- <input id="wpacu_remove_rest_api_link"
502
- type="checkbox"
503
- disabled="disabled"
504
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_rest_api_link]"
505
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
506
- &nbsp;
507
- <code>&lt;link rel=&#39;https://api.w.org/&#39; href=&#39;https://yourwebsite.com/wp-json/&#39; /&gt;</code>
508
- <p style="margin-top: 10px;">Are you accessing your content through endpoints (e.g. https://yourwebsite.com/wp-json/, https://yourwebsite.com/wp-json/wp/v2/posts/1 - <em>1</em> in this example is the POST ID)? If not, you can remove this.</p>
509
- </td>
510
- </tr>
511
-
512
- <!-- Remove Pages/Posts "Shortlink" tag? -->
513
- <tr valign="top">
514
- <th scope="row">
515
- <label for="wpacu_remove_shortlink">Remove Pages/Posts "Shortlink" tag?</label>
516
- </th>
517
- <td>
518
- <?php echo $availableForPro; ?>
519
- <label class="wpacu_switch wpacu_locked_for_pro">
520
- <input id="wpacu_remove_shortlink"
521
- type="checkbox"
522
- disabled="disabled"
523
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_shortlink]"
524
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
525
- &nbsp;
526
- <code>&lt;link rel=&#39;shortlink&#39; href=&quot;https://yourdomain.com/?p=1&quot;&gt;</code>
527
- <p style="margin-top: 10px;">Are you using SEO friendly URLs and do not need the default WordPress shortlink? You can just remove this as it bulks out the head section of your website.</p>
528
- </td>
529
- </tr>
530
-
531
- <!-- Remove "Post's Relational Links" tag? -->
532
- <tr valign="top">
533
- <th scope="row">
534
- <label for="wpacu_remove_posts_rel_links">Remove "Post's Relational Links" tag?</label>
535
- </th>
536
- <td>
537
- <?php echo $availableForPro; ?>
538
- <label class="wpacu_switch wpacu_locked_for_pro">
539
- <input id="wpacu_remove_posts_rel_links"
540
- type="checkbox"
541
- disabled="disabled"
542
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_posts_rel_links]"
543
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
544
- &nbsp;
545
- <code>&lt;link rel=&#39;prev&#39; title=&#39;Title of adjacent post&#39; href=&#39;https://yourdomain.com/adjacent-post-slug-here/&#39; /&gt;</code>
546
- <p style="margin-top: 10px;">This removes relational links for the posts adjacent to the current post for single post pages.</p>
547
- </td>
548
- </tr>
549
-
550
- <!-- Remove "WordPress version" meta tag? -->
551
- <tr valign="top">
552
- <th scope="row">
553
- <label for="wpacu_remove_wp_version">Remove "WordPress version" meta tag?</label>
554
- </th>
555
- <td>
556
- <?php echo $availableForPro; ?>
557
- <label class="wpacu_switch wpacu_locked_for_pro">
558
- <input id="wpacu_remove_wp_version"
559
- type="checkbox"
560
- disabled="disabled"
561
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_wp_version]"
562
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
563
- &nbsp;
564
- <code>&lt;meta name=&quot;generator&quot; content=&quot;WordPress 4.9.8&quot; /&gt;</code>
565
- <p style="margin-top: 10px;">This is good for security purposes as well, since it hides the WordPress version you're using (in case of hacking attempts).</p>
566
- </td>
567
- </tr>
568
-
569
- <!-- Remove "WordPress version" meta tag and all other tags? -->
570
- <tr valign="top">
571
- <th scope="row">
572
- <label for="wpacu_remove_generator_tag">Remove All "generator" meta tags?</label>
573
- </th>
574
- <td>
575
- <?php echo $availableForPro; ?>
576
- <label class="wpacu_switch wpacu_locked_for_pro">
577
- <input id="wpacu_remove_generator_tag"
578
- type="checkbox"
579
- disabled="disabled"
580
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_generator_tag]"
581
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
582
- &nbsp;
583
- <code>e.g. &lt;meta name=&quot;generator&quot; content=&quot;Easy Digital Downloads v2.9.8&quot; /&gt;</code>
584
- <p style="margin-top: 10px;">This will remove all meta tags with the "generator" name, including the WordPress version. You could use a plugin or a theme that has added a generator notice, but you do not need to have it there. Moreover, it will hide the version of the plugins and theme you're using which is good for security reasons.</p>
585
- </td>
586
- </tr>
587
-
588
- <!-- Remove Main RSS Feed Link -->
589
- <tr valign="top">
590
- <th scope="row">
591
- <label for="wpacu_remove_main_feed_link">Remove Main RSS Feed Link?</label>
592
- </th>
593
- <td>
594
- <?php echo $availableForPro; ?>
595
- <label class="wpacu_switch wpacu_locked_for_pro">
596
- <input id="wpacu_remove_main_feed_link"
597
- type="checkbox"
598
- disabled="disabled"
599
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_main_feed_link]"
600
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
601
- &nbsp;
602
- <code>&lt;link rel=&quot;alternate&quot; type=&quot;application/rss xml&quot; title=&quot;Your Site Title &amp;raquo; Feed&quot; href=&quot;https://www.yourwebsite.com/feed/&quot; /&gt;</code>
603
- <p style="margin-top: 10px;">If you do not use WordPress for blogging purposes at all, and it doesn't have any blog posts (apart from the main pages that you added), then you can remove the main feed link. It will also remove feeds for the following pages: categories, tags, custom taxonomies &amp; search results. Note that it will not remove comments RSS feeds which can be removed using the setting below. Some websites might have blog posts and would keep the main RSS feeds enabled, while removing the comments RSS feeds if they don't use the comments functionality.</p>
604
- </td>
605
- </tr>
606
-
607
- <!-- Remove Comment Feeds Link -->
608
- <tr valign="top">
609
- <th scope="row">
610
- <label for="wpacu_remove_comment_feed_link">Remove Comment RSS Feed Link?</label>
611
- </th>
612
- <td>
613
- <?php echo $availableForPro; ?>
614
- <label class="wpacu_switch wpacu_locked_for_pro">
615
- <input id="wpacu_remove_comment_feed_link"
616
- type="checkbox"
617
- disabled="disabled"
618
- name="<?php echo WPACU_PLUGIN_ID . '_settings'; ?>[remove_comment_feed_link]"
619
- value="1" /> <span class="wpacu_slider wpacu_round"></span> </label>
620
- &nbsp;
621
- <code>e.g. &lt;link rel=&quot;alternate&quot; type=&quot;application/rss xml&quot; title=&quot;Your Website Title &amp;raquo; Comments Feed&quot; href=&quot;https://www.yourdomain.com/comments/feed/&quot; /&gt;</code>
622
- <p style="margin-top: 10px;">If you do not use the comments functionality on your posts or do not use WordPress for blogging purposes at all, then you can remove the comments feed link.</p>
623
- </td>
624
- </tr>
625
- </table>
626
  </div>
627
 
628
- <div id="wpacu-setting-disable-xml-rpc-protocol" class="wpacu-settings-tab-content">
629
- <h2><?php _e('Disable XML-RPC Protocol Support partially or completely', WPACU_PLUGIN_TEXT_DOMAIN); ?></h2>
630
- <p><?php echo $settingsWithLock; ?></p>
631
- <table class="wpacu-form-table">
632
- <!-- Disable "XML-RPC" protocol support? -->
633
- <tr valign="top">
634
- <td>
635
- <?php echo $availableForPro; ?>
636
- <code>&lt;link rel=&quot;pingback&quot; href=&quot;https://www.yourwebsite.com/xmlrpc.php&quot; /&gt;</code>
637
- <p style="margin-bottom: 10px;">This will disable XML-RPC protocol support and cleans up the "pingback" tag from the HEAD section of your website.</p>
638
- <p style="margin-bottom: 10px;">This is an API service used by WordPress for 3rd party applications, such as mobile apps, communication between blogs, plugins such as Jetpack. If you use, or are planning to use a remote system to post content to your website, you can keep this feature enabled (which it is by default). Many users do not use this function at all and if you're one of them, you can disable it.</p>
639
-
640
- <p style="margin-bottom: 10px;"><strong>Disable XML-RPC Pingback Only</strong>: If you need the XML-RPC protocol support, but you do not use the pingbacks which are used by your website to notify another website that you have linked to it from your page(s), you can just disable the pinbacks and keep the other XML-RPC functionality. This is also a security measure to prevent DDoS attacks.</p>
641
-
642
- <p style="margin-bottom: 0;"><strong>Disable XML-RPC Completely</strong>: If you do not use Jetpack plugin for off-site server communication or you only use the Dashboard to post content (without any remote software connection to the WordPress website such as Windows Live Writer or mobile apps), then you can disable the XML-RPC functionality. You can always re-enable it whenever you believe you'll need it.</p>
643
- </td>
644
- </tr>
645
- </table>
646
- </div>
647
 
648
  <div class="clearfix"></div>
649
  </div>
650
 
651
- <script>
652
- function wpacuTabOpenSettingsArea(evt, settingName) {
653
- evt.preventDefault();
654
-
655
- var i, wpacuVerticalTabContent, wpacuVerticalTabLinks;
656
-
657
- wpacuVerticalTabContent = document.getElementsByClassName("wpacu-settings-tab-content");
658
-
659
- for (i = 0; i < wpacuVerticalTabContent.length; i++) {
660
- wpacuVerticalTabContent[i].style.display = "none";
661
- }
662
-
663
- wpacuVerticalTabLinks = document.getElementsByClassName("wpacu-settings-tab-link");
664
-
665
- for (i = 0; i < wpacuVerticalTabLinks.length; i++) {
666
- wpacuVerticalTabLinks[i].className = wpacuVerticalTabLinks[i].className.replace(" active", "");
667
- }
668
-
669
- document.getElementById(settingName).style.display = "table-cell";
670
- evt.currentTarget.className += " active";
671
- }
672
-
673
- </script>
674
-
675
  <div id="wpacu-update-button-area">
676
- <?php
677
- wp_nonce_field('wpacu_settings_update');
678
- submit_button('Update All Settings');
679
- ?>
 
 
 
680
  </div>
 
 
 
 
681
  </form>
682
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  // [/wpacu_lite]
15
 
16
  do_action('wpacu_admin_notices');
17
+
18
+ $settingsTabs = array(
19
+ 'wpacu-setting-plugin-usage-settings' => __('General &amp; Files Management', WPACU_PLUGIN_TEXT_DOMAIN),
20
+ 'wpacu-setting-test-mode' => __('Test Mode', WPACU_PLUGIN_TEXT_DOMAIN),
21
+ 'wpacu-setting-minify-loaded-files' => __('Minify CSS &amp; JS Files', WPACU_PLUGIN_TEXT_DOMAIN),
22
+ 'wpacu-setting-combine-loaded-files' => __('Combine CSS &amp; JS Files', WPACU_PLUGIN_TEXT_DOMAIN),
23
+ 'wpacu-setting-common-files-unload' => __('Common Elements Unload', WPACU_PLUGIN_TEXT_DOMAIN),
24
+ 'wpacu-setting-head-cleanup' => __('&lthead&gt; CleanUp', WPACU_PLUGIN_TEXT_DOMAIN),
25
+ 'wpacu-setting-disable-xml-rpc' => __('Disable XML-RPC', WPACU_PLUGIN_TEXT_DOMAIN),
26
+ );
27
+
28
+ $settingsTabActive = 'wpacu-setting-plugin-usage-settings';
29
+ $selectedTabArea = isset($_POST['wpacu_selected_tab_area']) && array_key_exists($_POST['wpacu_selected_tab_area'], $settingsTabs) // the tab id area has to be one within the list above
30
+ ? $_POST['wpacu_selected_tab_area'] // after update
31
+ : 'wpacu-setting-plugin-usage-settings'; // default
32
+
33
+ if ($selectedTabArea && array_key_exists($selectedTabArea, $settingsTabs)) {
34
+ $settingsTabActive = $selectedTabArea;
35
+ }
36
  ?>
37
  <div class="wpacu-wrap wpacu-settings-area <?php if ($data['input_style'] !== 'standard') { ?>wpacu-switch-enhanced<?php } else { ?>wpacu-switch-standard<?php } ?>">
38
+ <form method="post" action="" id="wpacu-settings-form">
39
  <input type="hidden" name="wpacu_settings_page" value="1" />
40
 
41
  <div id="wpacu-settings-vertical-tab-wrap">
42
  <div class="wpacu-settings-tab">
43
+ <?php
44
+ foreach ($settingsTabs as $navId => $navText) {
45
+ $active = ($settingsTabActive === $navId) ? 'active' : '';
46
+ ?>
47
+ <a href="#<?php echo $navId; ?>" class="wpacu-settings-tab-link <?php echo $active; ?>" onclick="wpacuTabOpenSettingsArea(event, '<?php echo $navId; ?>');"><?php echo $navText; ?></a>
48
+ <?php
49
+ }
50
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  </div>
52
 
53
+ <?php
54
+ include_once '_admin-page-settings-plugin-areas/_plugin-usage-settings.php';
55
+ include_once '_admin-page-settings-plugin-areas/_test-mode.php';
56
+ include_once '_admin-page-settings-plugin-areas/_minify-loaded-files.php';
57
+ include_once '_admin-page-settings-plugin-areas/_combine-loaded-files.php';
58
+ include_once '_admin-page-settings-plugin-areas/_common-files-unload.php';
59
+ include_once '_admin-page-settings-plugin-areas/_head-cleanup.php';
60
+ include_once '_admin-page-settings-plugin-areas/_disable-xml-rpc-protocol.php';
61
+ ?>
 
 
 
 
 
 
 
 
 
 
62
 
63
  <div class="clearfix"></div>
64
  </div>
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  <div id="wpacu-update-button-area">
67
+ <?php
68
+ wp_nonce_field('wpacu_settings_update');
69
+ submit_button('Update All Settings');
70
+ ?>
71
+ <div id="wpacu-updating-settings">
72
+ <img src="<?php echo admin_url(); ?>/images/spinner.gif" align="top" width="20" height="20" alt="" />
73
+ </div>
74
  </div>
75
+ <input type="hidden"
76
+ name="wpacu_selected_tab_area"
77
+ id="wpacu-selected-tab-area"
78
+ value="" />
79
  </form>
80
+ </div>
81
+
82
+ <script type="text/javascript">
83
+ jQuery(document).ready(function($) {
84
+ // [START] MODAL INFO
85
+ var currentModal;
86
+ $('.wpacu-modal').each(function (wpacuIndex) {
87
+ var wpacuModalId = $(this).attr('id');
88
+
89
+ // Get the modal
90
+ var wpacuModal = document.getElementById(wpacuModalId);
91
+
92
+ // Get the button that opens the modal
93
+ var wpacuBtn = document.getElementById(wpacuModalId + '-link');
94
+
95
+ // When the user clicks the button, open the modal
96
+ wpacuBtn.onclick = function() {
97
+ wpacuModal.style.display = 'block';
98
+ currentModal = wpacuModal;
99
+ };
100
+
101
+ // Get the <span> element that closes the modal
102
+ var wpacuSpan = document.getElementsByClassName('wpacu-close')[wpacuIndex];
103
+
104
+ // When the user clicks on <span> (x), close the modal
105
+ wpacuSpan.onclick = function() {
106
+ wpacuModal.style.display = 'none';
107
+ };
108
+ });
109
+
110
+ // When the user clicks anywhere outside of the modal, close it
111
+ window.onclick = function (event) {
112
+ if (event.target === currentModal) {
113
+ currentModal.style.display = 'none';
114
+ }
115
+ };
116
+ // [END] MODAL INFO
117
+ });
118
+
119
+ <?php
120
+ if (! empty($_POST)) {
121
+ ?>
122
+ // Situations: After settings update (post mode), do not jump to URL's anchor
123
+ if (location.hash) {
124
+ setTimeout(function() {
125
+ window.scrollTo(0, 0);
126
+ }, 1);
127
+ }
128
+ <?php
129
+ }
130
+ ?>
131
+ </script>
templates/meta-box-loaded-assets/view-by-location.php CHANGED
@@ -30,7 +30,7 @@ $listAreaStatus = $data['plugin_settings']['assets_list_layout_areas_status'];
30
  <?php
31
  }
32
 
33
- if (($data['core_styles_loaded'] || $data['core_scripts_loaded']) && ! $data['plugin_settings']['hide_core_files']) {
34
  ?>
35
  <div class="wpacu_note wpacu_warning"><em><?php
36
  echo sprintf(
30
  <?php
31
  }
32
 
33
+ if ( ( (isset($data['core_styles_loaded']) && $data['core_styles_loaded']) || (isset($data['core_scripts_loaded']) && $data['core_scripts_loaded']) ) && ! $data['plugin_settings']['hide_core_files']) {
34
  ?>
35
  <div class="wpacu_note wpacu_warning"><em><?php
36
  echo sprintf(
templates/meta-box-loaded-assets/view-default.php CHANGED
@@ -44,7 +44,7 @@ $listAreaStatus = $data['plugin_settings']['assets_list_layout_areas_status'];
44
  <?php
45
  }
46
 
47
- if ($data['core_styles_loaded'] && ! $data['plugin_settings']['hide_core_files']) {
48
  ?>
49
  <div class="wpacu_note wpacu_warning"><em><?php
50
  echo sprintf(
@@ -106,8 +106,8 @@ $listAreaStatus = $data['plugin_settings']['assets_list_layout_areas_status'];
106
  <?php
107
  }
108
 
109
- if ($data['core_scripts_loaded'] && ! $data['plugin_settings']['hide_core_files']) {
110
- ?>
111
  <div class="wpacu_note wpacu_warning"><em><?php
112
  echo sprintf(
113
  __('JavaScript files that are marked with %s are part of WordPress core files. Be careful if you decide to unload them! If you are not sure what to do, just leave them loaded by default and consult with a developer.', WPACU_PLUGIN_TEXT_DOMAIN),
44
  <?php
45
  }
46
 
47
+ if ((isset($data['core_styles_loaded']) && $data['core_styles_loaded']) && ! $data['plugin_settings']['hide_core_files']) {
48
  ?>
49
  <div class="wpacu_note wpacu_warning"><em><?php
50
  echo sprintf(
106
  <?php
107
  }
108
 
109
+ if ((isset($data['core_scripts_loaded']) && $data['core_scripts_loaded']) && ! $data['plugin_settings']['hide_core_files']) {
110
+ ?>
111
  <div class="wpacu_note wpacu_warning"><em><?php
112
  echo sprintf(
113
  __('JavaScript files that are marked with %s are part of WordPress core files. Be careful if you decide to unload them! If you are not sure what to do, just leave them loaded by default and consult with a developer.', WPACU_PLUGIN_TEXT_DOMAIN),
templates/meta-box-loaded.php CHANGED
@@ -40,6 +40,8 @@ if (! $metaBoxLoadedFine) {
40
  exit;
41
  }
42
 
 
 
43
  if (isset($data['page_template'])) {
44
  ob_start();
45
 
@@ -100,12 +102,7 @@ elseif ($data['bulk_unloaded_type'] === 'post_type') {
100
  <img src="<?php echo $iconShown; ?>" alt="" style="height: 40px !important; margin-top: -6px; margin-right: 5px;" align="middle" /> <strong>WooCommerce</strong>
101
  <?php } ?>
102
  <strong><?php if (! $iconShown) { ?><span style="color: #0f6cab;" class="dashicons dashicons-admin-<?php echo $dashIconPart; ?>"></span> <?php } ?> <u><?php echo $data['post_type']; ?></u> <?php if ($data['post_type'] !== 'post') { echo 'post'; } ?> type.</strong>
103
-
104
- <?php
105
- if ($pageTemplateInfoOutput) {
106
- echo $pageTemplateInfoOutput;
107
- }
108
- ?>
109
  </p>
110
  <?php
111
  }
40
  exit;
41
  }
42
 
43
+ $pageTemplateInfoOutput = '';
44
+
45
  if (isset($data['page_template'])) {
46
  ob_start();
47
 
102
  <img src="<?php echo $iconShown; ?>" alt="" style="height: 40px !important; margin-top: -6px; margin-right: 5px;" align="middle" /> <strong>WooCommerce</strong>
103
  <?php } ?>
104
  <strong><?php if (! $iconShown) { ?><span style="color: #0f6cab;" class="dashicons dashicons-admin-<?php echo $dashIconPart; ?>"></span> <?php } ?> <u><?php echo $data['post_type']; ?></u> <?php if ($data['post_type'] !== 'post') { echo 'post'; } ?> type.</strong>
105
+ <?php echo $pageTemplateInfoOutput; ?>
 
 
 
 
 
106
  </p>
107
  <?php
108
  }
wpacu-load.php CHANGED
@@ -56,7 +56,8 @@ new \WpAssetCleanUp\AdminBar();
56
  * Trigger the CSS & JS combination only in the front-end view in certain conditions (not within the Dashboard)
57
  */
58
  // Common functions for both CSS & JS combinations
59
- new \WpAssetCleanUp\OptimiseAssets\OptimizeCommon();
 
60
 
61
  // Combine/Minify CSS Files Setup
62
  $wpacuOptimizeCss = new \WpAssetCleanUp\OptimiseAssets\OptimizeCss();
56
  * Trigger the CSS & JS combination only in the front-end view in certain conditions (not within the Dashboard)
57
  */
58
  // Common functions for both CSS & JS combinations
59
+ $wpacuOptimizeCommon = new \WpAssetCleanUp\OptimiseAssets\OptimizeCommon();
60
+ $wpacuOptimizeCommon->init();
61
 
62
  // Combine/Minify CSS Files Setup
63
  $wpacuOptimizeCss = new \WpAssetCleanUp\OptimiseAssets\OptimizeCss();
wpacu.php CHANGED
@@ -2,13 +2,13 @@
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
- * Version: 1.3
6
  * Description: Prevent Chosen Scripts & Styles from loading in Posts/Pages to reduce HTTP Requests and have the website load faster
7
  * Author: Gabriel Livan
8
  * Author URI: http://gabelivan.com/
9
  */
10
 
11
- define('WPACU_PLUGIN_VERSION', '1.3');
12
 
13
  // Exit if accessed directly
14
  if (! defined('ABSPATH')) {
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
+ * Version: 1.3.1
6
  * Description: Prevent Chosen Scripts & Styles from loading in Posts/Pages to reduce HTTP Requests and have the website load faster
7
  * Author: Gabriel Livan
8
  * Author URI: http://gabelivan.com/
9
  */
10
 
11
+ define('WPACU_PLUGIN_VERSION', '1.3.1');
12
 
13
  // Exit if accessed directly
14
  if (! defined('ABSPATH')) {