Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | Popup Maker – Popup Forms, Optins & More |
Version | 1.7.22 |
Comparing to | |
See all releases |
Code changes from version 1.7.21 to 1.7.22
- assets/js/admin-general.js +0 -46
- assets/js/admin-general.min.js +3 -3
- classes/AssetCache.php +5 -1
- classes/Extension/Updater.php +1 -1
- classes/Model/Popup.php +1 -1
- classes/Privacy.php +24 -10
- classes/Utils/Array.php +7 -5
- includes/admin/class-pum-admin-upgrades.php +2 -2
- includes/admin/upgrades/class-pum-admin-upgrade-routine.php +2 -2
- includes/ajax-calls.php +2 -2
- includes/class-pum.php +1 -1
- includes/general-functions.php +1 -1
- includes/integrations/class-pum-cf7.php +1 -1
- includes/integrations/class-pum-gravity-forms.php +1 -1
- includes/popup-functions.php +1 -1
- includes/pum-sdk/freemius/assets/css/admin/connect.css +1 -1
- includes/pum-sdk/freemius/assets/css/admin/gdpr-optin-notice.css +1 -0
- includes/pum-sdk/freemius/assets/scss/admin/_gdpr-consent.scss +81 -0
- includes/pum-sdk/freemius/assets/scss/admin/connect.scss +1 -0
- includes/pum-sdk/freemius/assets/scss/admin/gdpr-optin-notice.scss +17 -0
- includes/pum-sdk/freemius/composer.json +10 -0
- includes/pum-sdk/freemius/config.php +12 -2
- includes/pum-sdk/freemius/includes/class-freemius-abstract.php +1 -1
- includes/pum-sdk/freemius/includes/class-freemius.php +988 -167
- includes/pum-sdk/freemius/includes/class-fs-admin-notices.php +29 -10
- includes/pum-sdk/freemius/includes/class-fs-plugin-updater.php +79 -3
- includes/pum-sdk/freemius/includes/class-fs-storage.php +1 -0
- includes/pum-sdk/freemius/includes/class-fs-user-lock.php +126 -0
- includes/pum-sdk/freemius/includes/entities/class-fs-payment.php +101 -85
- includes/pum-sdk/freemius/includes/entities/class-fs-site.php +3 -1
- includes/pum-sdk/freemius/includes/i18n.php +1 -1
- includes/pum-sdk/freemius/includes/managers/class-fs-admin-notice-manager.php +73 -18
- includes/pum-sdk/freemius/includes/managers/class-fs-gdpr-manager.php +202 -0
- includes/pum-sdk/freemius/languages/freemius-da_DK.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-da_DK.po +1874 -1401
- includes/pum-sdk/freemius/languages/freemius-en.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-en.po +486 -372
- includes/pum-sdk/freemius/languages/freemius-es_ES.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-es_ES.po +648 -516
- includes/pum-sdk/freemius/languages/freemius-fr_FR.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-fr_FR.po +2299 -0
- includes/pum-sdk/freemius/languages/freemius-he_IL.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-he_IL.po +545 -413
- includes/pum-sdk/freemius/languages/freemius-it_IT.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-it_IT.po +632 -500
- includes/pum-sdk/freemius/languages/freemius-ja_JP.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-ja_JP.po +748 -614
- includes/pum-sdk/freemius/languages/freemius-nl_NL.mo +0 -0
- includes/pum-sdk/freemius/languages/freemius-nl_NL.po +1393 -0
assets/js/admin-general.js
CHANGED
@@ -6981,52 +6981,6 @@ function pumChecked(val1, val2, print) {
|
|
6981 |
return checked;
|
6982 |
}
|
6983 |
|
6984 |
-
(function ($) {
|
6985 |
-
var current_link_field;
|
6986 |
-
//var wpActiveEditor = true;
|
6987 |
-
|
6988 |
-
$(document)
|
6989 |
-
.on('click', '.pum-field-link button', function (event) {
|
6990 |
-
var $input = $(this).next().select(),
|
6991 |
-
id = $input.attr('id');
|
6992 |
-
|
6993 |
-
current_link_field = $input;
|
6994 |
-
|
6995 |
-
wpLink.open(id, $input.val(), ""); //open the link popup
|
6996 |
-
|
6997 |
-
JPCC.selectors('#wp-link-wrap').removeClass('has-text-field');
|
6998 |
-
JPCC.selectors('#wp-link-target').hide();
|
6999 |
-
JPCC.selectors('#pum-restriction-editor', true).hide();
|
7000 |
-
return false;
|
7001 |
-
})
|
7002 |
-
.on('click', '#wp-link-submit, #wp-link-cancel button, #wp-link-close', function (event) {
|
7003 |
-
var linkAtts = wpLink.getAttrs();
|
7004 |
-
|
7005 |
-
// If not for our fields then ignore it.
|
7006 |
-
if (current_link_field === undefined || !current_link_field) {
|
7007 |
-
return;
|
7008 |
-
}
|
7009 |
-
|
7010 |
-
// If not the close buttons then its the save button.
|
7011 |
-
if (event.target.id === 'wp-link-submit') {
|
7012 |
-
current_link_field.val(linkAtts.href);
|
7013 |
-
}
|
7014 |
-
|
7015 |
-
wpLink.textarea = current_link_field;
|
7016 |
-
wpLink.close();
|
7017 |
-
|
7018 |
-
// Clear the current_link_field
|
7019 |
-
current_link_field = false;
|
7020 |
-
|
7021 |
-
// Show our editor
|
7022 |
-
JPCC.selectors('#pum-restriction-editor').show();
|
7023 |
-
|
7024 |
-
//trap any other events
|
7025 |
-
event.preventDefault ? event.preventDefault() : event.returnValue = false;
|
7026 |
-
event.stopPropagation();
|
7027 |
-
return false;
|
7028 |
-
});
|
7029 |
-
}(jQuery));
|
7030 |
/*******************************************************************************
|
7031 |
* Copyright (c) 2017, WP Popup Maker
|
7032 |
******************************************************************************/
|
6981 |
return checked;
|
6982 |
}
|
6983 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6984 |
/*******************************************************************************
|
6985 |
* Copyright (c) 2017, WP Popup Maker
|
6986 |
******************************************************************************/
|
assets/js/admin-general.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
function pumSelected(e,t,n){"use strict";var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t&&(i=!0),void 0!==n&&n?i?' selected="selected"':"":i}function pumChecked(e,t,n){"use strict";var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t&&(i=!0),void 0!==n&&n?i?' checked="checked"':"":i}!function(e){"function"==typeof define&&void 0!==define.amd&&define.amd?define(["jquery"],e):e("object"==typeof exports?require("jquery"):jQuery)}(function(e){var t=function(){if(e&&e.fn&&e.fn.pumselect2&&e.fn.pumselect2.amd)var t=e.fn.pumselect2.amd;var t;return function(){if(!t||!t.requirejs){t?n=t:t={};var e,n,i;!function(t){function r(e,t){return _.call(e,t)}function s(e,t){var n,i,r,s,o,a,l,u,c,d,p,h=t&&t.split("/"),f=y.map,m=f&&f["*"]||{};if(e&&"."===e.charAt(0))if(t){for(e=e.split("/"),o=e.length-1,y.nodeIdCompat&&A.test(e[o])&&(e[o]=e[o].replace(A,"")),e=h.slice(0,h.length-1).concat(e),c=0;c<e.length;c+=1)if(p=e[c],"."===p)e.splice(c,1),c-=1;else if(".."===p){if(1===c&&(".."===e[2]||".."===e[0]))break;c>0&&(e.splice(c-1,2),c-=2)}e=e.join("/")}else 0===e.indexOf("./")&&(e=e.substring(2));if((h||m)&&f){for(n=e.split("/"),c=n.length;c>0;c-=1){if(i=n.slice(0,c).join("/"),h)for(d=h.length;d>0;d-=1)if(r=f[h.slice(0,d).join("/")],r&&(r=r[i])){s=r,a=c;break}if(s)break;!l&&m&&m[i]&&(l=m[i],u=c)}!s&&l&&(s=l,a=u),s&&(n.splice(0,a,s),e=n.join("/"))}return e}function o(e,n){return function(){var i=w.call(arguments,0);return"string"!=typeof i[0]&&1===i.length&&i.push(null),h.apply(t,i.concat([e,n]))}}function a(e){return function(t){return s(t,e)}}function l(e){return function(t){g[e]=t}}function u(e){if(r(v,e)){var n=v[e];delete v[e],b[e]=!0,p.apply(t,n)}if(!r(g,e)&&!r(b,e))throw new Error("No "+e);return g[e]}function c(e){var t,n=e?e.indexOf("!"):-1;return n>-1&&(t=e.substring(0,n),e=e.substring(n+1,e.length)),[t,e]}function d(e){return function(){return y&&y.config&&y.config[e]||{}}}var p,h,f,m,g={},v={},y={},b={},_=Object.prototype.hasOwnProperty,w=[].slice,A=/\.js$/;f=function(e,t){var n,i=c(e),r=i[0];return e=i[1],r&&(r=s(r,t),n=u(r)),r?e=n&&n.normalize?n.normalize(e,a(t)):s(e,t):(e=s(e,t),i=c(e),r=i[0],e=i[1],r&&(n=u(r))),{f:r?r+"!"+e:e,n:e,pr:r,p:n}},m={require:function(e){return o(e)},exports:function(e){var t=g[e];return"undefined"!=typeof t?t:g[e]={}},module:function(e){return{id:e,uri:"",exports:g[e],config:d(e)}}},p=function(e,n,i,s){var a,c,d,p,h,y,_=[],w=typeof i;if(s=s||e,"undefined"===w||"function"===w){for(n=!n.length&&i.length?["require","exports","module"]:n,h=0;h<n.length;h+=1)if(p=f(n[h],s),c=p.f,"require"===c)_[h]=m.require(e);else if("exports"===c)_[h]=m.exports(e),y=!0;else if("module"===c)a=_[h]=m.module(e);else if(r(g,c)||r(v,c)||r(b,c))_[h]=u(c);else{if(!p.p)throw new Error(e+" missing "+c);p.p.load(p.n,o(s,!0),l(c),{}),_[h]=g[c]}d=i?i.apply(g[e],_):void 0,e&&(a&&a.exports!==t&&a.exports!==g[e]?g[e]=a.exports:d===t&&y||(g[e]=d))}else e&&(g[e]=i)},e=n=h=function(e,n,i,r,s){if("string"==typeof e)return m[e]?m[e](n):u(f(e,n).f);if(!e.splice){if(y=e,y.deps&&h(y.deps,y.callback),!n)return;n.splice?(e=n,n=i,i=null):e=t}return n=n||function(){},"function"==typeof i&&(i=r,r=s),r?p(t,e,n,i):setTimeout(function(){p(t,e,n,i)},4),h},h.config=function(e){return h(e)},e._defined=g,i=function(e,t,n){if("string"!=typeof e)throw new Error("See almond README: incorrect module build, no module name");t.splice||(n=t,t=[]),r(g,e)||r(v,e)||(v[e]=[e,t,n])},i.amd={jQuery:!0}}(),t.requirejs=e,t.require=n,t.define=i}}(),t.define("almond",function(){}),t.define("jquery",[],function(){var t=e||$;return null==t&&console&&console.error&&console.error("Select2: An instance of jQuery or a jQuery-compatible library was not found. Make sure that you are including jQuery before Select2 on your web page."),t}),t.define("pumselect2/utils",["jquery"],function(e){function t(e){var t=e.prototype,n=[];for(var i in t){var r=t[i];"function"==typeof r&&"constructor"!==i&&n.push(i)}return n}var n={};n.Extend=function(e,t){function n(){this.constructor=e}var i={}.hasOwnProperty;for(var r in t)i.call(t,r)&&(e[r]=t[r]);return n.prototype=t.prototype,e.prototype=new n,e.__super__=t.prototype,e},n.Decorate=function(e,n){function i(){var t=Array.prototype.unshift,i=n.prototype.constructor.length,r=e.prototype.constructor;i>0&&(t.call(arguments,e.prototype.constructor),r=n.prototype.constructor),r.apply(this,arguments)}function r(){this.constructor=i}var s=t(n),o=t(e);n.displayName=e.displayName,i.prototype=new r;for(var a=0;a<o.length;a++){var l=o[a];i.prototype[l]=e.prototype[l]}for(var u=(function(e){var t=function(){};e in i.prototype&&(t=i.prototype[e]);var r=n.prototype[e];return function(){var e=Array.prototype.unshift;return e.call(arguments,t),r.apply(this,arguments)}}),c=0;c<s.length;c++){var d=s[c];i.prototype[d]=u(d)}return i};var i=function(){this.listeners={}};return i.prototype.on=function(e,t){this.listeners=this.listeners||{},e in this.listeners?this.listeners[e].push(t):this.listeners[e]=[t]},i.prototype.trigger=function(e){var t=Array.prototype.slice;this.listeners=this.listeners||{},e in this.listeners&&this.invoke(this.listeners[e],t.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},i.prototype.invoke=function(e,t){for(var n=0,i=e.length;n<i;n++)e[n].apply(this,t)},n.Observable=i,n.generateChars=function(e){for(var t="",n=0;n<e;n++){var i=Math.floor(36*Math.random());t+=i.toString(36)}return t},n.bind=function(e,t){return function(){e.apply(t,arguments)}},n._convertData=function(e){for(var t in e){var n=t.split("-"),i=e;if(1!==n.length){for(var r=0;r<n.length;r++){var s=n[r];s=s.substring(0,1).toLowerCase()+s.substring(1),s in i||(i[s]={}),r==n.length-1&&(i[s]=e[t]),i=i[s]}delete e[t]}}return e},n.hasScroll=function(t,n){var i=e(n),r=n.style.overflowX,s=n.style.overflowY;return(r!==s||"hidden"!==s&&"visible"!==s)&&("scroll"===r||"scroll"===s||(i.innerHeight()<n.scrollHeight||i.innerWidth()<n.scrollWidth))},n.escapeMarkup=function(e){var t={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return"string"!=typeof e?e:String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]})},n.appendMany=function(t,n){if("1.7"===e.fn.jquery.substr(0,3)){var i=e();e.map(n,function(e){i=i.add(e)}),n=i}t.append(n)},n}),t.define("pumselect2/results",["jquery","./utils"],function(e,t){function n(e,t,i){this.$element=e,this.data=i,this.options=t,n.__super__.constructor.call(this)}return t.Extend(n,t.Observable),n.prototype.render=function(){var t=e('<ul class="pumselect2-results__options" role="tree"></ul>');return this.options.get("multiple")&&t.attr("aria-multiselectable","true"),this.$results=t,t},n.prototype.clear=function(){this.$results.empty()},n.prototype.displayMessage=function(t){var n=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var i=e('<li role="treeitem" aria-live="assertive" class="pumselect2-results__option"></li>'),r=this.options.get("translations").get(t.message);i.append(n(r(t.args))),i[0].className+=" pumselect2-results__message",this.$results.append(i)},n.prototype.hideMessages=function(){this.$results.find(".pumselect2-results__message").remove()},n.prototype.append=function(e){this.hideLoading();var t=[];if(null==e.results||0===e.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));e.results=this.sort(e.results);for(var n=0;n<e.results.length;n++){var i=e.results[n],r=this.option(i);t.push(r)}this.$results.append(t)},n.prototype.position=function(e,t){var n=t.find(".pumselect2-results");n.append(e)},n.prototype.sort=function(e){var t=this.options.get("sorter");return t(e)},n.prototype.setClasses=function(){var t=this;this.data.current(function(n){var i=e.map(n,function(e){return e.id.toString()}),r=t.$results.find(".pumselect2-results__option[aria-selected]");r.each(function(){var t=e(this),n=e.data(this,"data"),r=""+n.id;null!=n.element&&n.element.selected||null==n.element&&e.inArray(r,i)>-1?t.attr("aria-selected","true"):t.attr("aria-selected","false")});var s=r.filter("[aria-selected=true]");s.length>0?s.first().trigger("mouseenter"):r.first().trigger("mouseenter")})},n.prototype.showLoading=function(e){this.hideLoading();var t=this.options.get("translations").get("searching"),n={disabled:!0,loading:!0,text:t(e)},i=this.option(n);i.className+=" loading-results",this.$results.prepend(i)},n.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},n.prototype.option=function(t){var n=document.createElement("li");n.className="pumselect2-results__option";var i={role:"treeitem","aria-selected":"false"};t.disabled&&(delete i["aria-selected"],i["aria-disabled"]="true"),null==t.id&&delete i["aria-selected"],null!=t._resultId&&(n.id=t._resultId),t.title&&(n.title=t.title),t.children&&(i.role="group",i["aria-label"]=t.text,delete i["aria-selected"]);for(var r in i){var s=i[r];n.setAttribute(r,s)}if(t.children){var o=e(n),a=document.createElement("strong");a.className="pumselect2-results__group";e(a);this.template(t,a);for(var l=[],u=0;u<t.children.length;u++){var c=t.children[u],d=this.option(c);l.push(d)}var p=e("<ul></ul>",{"class":"pumselect2-results__options pumselect2-results__options--nested"});p.append(l),o.append(a),o.append(p)}else this.template(t,n);return e.data(n,"data",t),n},n.prototype.bind=function(t,n){var i=this,r=t.id+"-results";this.$results.attr("id",r),t.on("results:all",function(e){i.clear(),i.append(e.data),t.isOpen()&&i.setClasses()}),t.on("results:append",function(e){i.append(e.data),t.isOpen()&&i.setClasses()}),t.on("query",function(e){i.hideMessages(),i.showLoading(e)}),t.on("select",function(){t.isOpen()&&i.setClasses()}),t.on("unselect",function(){t.isOpen()&&i.setClasses()}),t.on("open",function(){i.$results.attr("aria-expanded","true"),i.$results.attr("aria-hidden","false"),i.setClasses(),i.ensureHighlightVisible()}),t.on("close",function(){i.$results.attr("aria-expanded","false"),i.$results.attr("aria-hidden","true"),i.$results.removeAttr("aria-activedescendant")}),t.on("results:toggle",function(){var e=i.getHighlightedResults();0!==e.length&&e.trigger("mouseup")}),t.on("results:select",function(){var e=i.getHighlightedResults();if(0!==e.length){var t=e.data("data");"true"==e.attr("aria-selected")?i.trigger("close",{}):i.trigger("select",{data:t})}}),t.on("results:previous",function(){var e=i.getHighlightedResults(),t=i.$results.find("[aria-selected]"),n=t.index(e);if(0!==n){var r=n-1;0===e.length&&(r=0);var s=t.eq(r);s.trigger("mouseenter");var o=i.$results.offset().top,a=s.offset().top,l=i.$results.scrollTop()+(a-o);0===r?i.$results.scrollTop(0):a-o<0&&i.$results.scrollTop(l)}}),t.on("results:next",function(){var e=i.getHighlightedResults(),t=i.$results.find("[aria-selected]"),n=t.index(e),r=n+1;if(!(r>=t.length)){var s=t.eq(r);s.trigger("mouseenter");var o=i.$results.offset().top+i.$results.outerHeight(!1),a=s.offset().top+s.outerHeight(!1),l=i.$results.scrollTop()+a-o;0===r?i.$results.scrollTop(0):a>o&&i.$results.scrollTop(l)}}),t.on("results:focus",function(e){e.element.addClass("pumselect2-results__option--highlighted")}),t.on("results:message",function(e){i.displayMessage(e)}),e.fn.mousewheel&&this.$results.on("mousewheel",function(e){var t=i.$results.scrollTop(),n=i.$results.get(0).scrollHeight-t+e.deltaY,r=e.deltaY>0&&t-e.deltaY<=0,s=e.deltaY<0&&n<=i.$results.height();r?(i.$results.scrollTop(0),e.preventDefault(),e.stopPropagation()):s&&(i.$results.scrollTop(i.$results.get(0).scrollHeight-i.$results.height()),e.preventDefault(),e.stopPropagation())}),this.$results.on("mouseup",".pumselect2-results__option[aria-selected]",function(t){var n=e(this),r=n.data("data");return"true"===n.attr("aria-selected")?void(i.options.get("multiple")?i.trigger("unselect",{originalEvent:t,data:r}):i.trigger("close",{})):void i.trigger("select",{originalEvent:t,data:r})}),this.$results.on("mouseenter",".pumselect2-results__option[aria-selected]",function(t){var n=e(this).data("data");i.getHighlightedResults().removeClass("pumselect2-results__option--highlighted"),i.trigger("results:focus",{data:n,element:e(this)})})},n.prototype.getHighlightedResults=function(){var e=this.$results.find(".pumselect2-results__option--highlighted");return e},n.prototype.destroy=function(){this.$results.remove()},n.prototype.ensureHighlightVisible=function(){var e=this.getHighlightedResults();if(0!==e.length){var t=this.$results.find("[aria-selected]"),n=t.index(e),i=this.$results.offset().top,r=e.offset().top,s=this.$results.scrollTop()+(r-i),o=r-i;s-=2*e.outerHeight(!1),n<=2?this.$results.scrollTop(0):(o>this.$results.outerHeight()||o<0)&&this.$results.scrollTop(s)}},n.prototype.template=function(t,n){var i=this.options.get("templateResult"),r=this.options.get("escapeMarkup"),s=i(t,n);null==s?n.style.display="none":"string"==typeof s?n.innerHTML=r(s):e(n).append(s)},n}),t.define("pumselect2/keys",[],function(){var e={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return e}),t.define("pumselect2/selection/base",["jquery","../utils","../keys"],function(e,t,n){function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return t.Extend(i,t.Observable),i.prototype.render=function(){var t=e('<span class="pumselect2-selection" role="combobox" aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),t.attr("title",this.$element.attr("title")),t.attr("tabindex",this._tabindex),this.$selection=t,t},i.prototype.bind=function(e,t){var i=this,r=(e.id+"-container",e.id+"-results");this.container=e,this.$selection.on("focus",function(e){i.trigger("focus",e)}),this.$selection.on("blur",function(e){i._handleBlur(e)}),this.$selection.on("keydown",function(e){i.trigger("keypress",e),e.which===n.SPACE&&e.preventDefault()}),e.on("results:focus",function(e){i.$selection.attr("aria-activedescendant",e.data._resultId)}),e.on("selection:update",function(e){i.update(e.data)}),e.on("open",function(){i.$selection.attr("aria-expanded","true"),i.$selection.attr("aria-owns",r),i._attachCloseHandler(e)}),e.on("close",function(){i.$selection.attr("aria-expanded","false"),i.$selection.removeAttr("aria-activedescendant"),i.$selection.removeAttr("aria-owns"),i.$selection.focus(),i._detachCloseHandler(e)}),e.on("enable",function(){i.$selection.attr("tabindex",i._tabindex)}),e.on("disable",function(){i.$selection.attr("tabindex","-1")})},i.prototype._handleBlur=function(t){var n=this;window.setTimeout(function(){document.activeElement==n.$selection[0]||e.contains(n.$selection[0],document.activeElement)||n.trigger("blur",t)},1)},i.prototype._attachCloseHandler=function(t){e(document.body).on("mousedown.pumselect2."+t.id,function(t){var n=e(t.target),i=n.closest(".pumselect2"),r=e(".pumselect2.pumselect2-container--open");r.each(function(){var t=e(this);if(this!=i[0]){var n=t.data("element");n.pumselect2("close")}})})},i.prototype._detachCloseHandler=function(t){e(document.body).off("mousedown.pumselect2."+t.id)},i.prototype.position=function(e,t){var n=t.find(".selection");n.append(e)},i.prototype.destroy=function(){this._detachCloseHandler(this.container)},i.prototype.update=function(e){throw new Error("The `update` method must be defined in child classes.")},i}),t.define("pumselect2/selection/single",["jquery","./base","../utils","../keys"],function(e,t,n,i){function r(){r.__super__.constructor.apply(this,arguments)}return n.Extend(r,t),r.prototype.render=function(){var e=r.__super__.render.call(this);return e.addClass("pumselect2-selection--single"),e.html('<span class="pumselect2-selection__rendered"></span><span class="pumselect2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),e},r.prototype.bind=function(e,t){var n=this;r.__super__.bind.apply(this,arguments);var i=e.id+"-container";this.$selection.find(".pumselect2-selection__rendered").attr("id",i),this.$selection.attr("aria-labelledby",i),this.$selection.on("mousedown",function(e){1===e.which&&n.trigger("toggle",{originalEvent:e})}),this.$selection.on("focus",function(e){}),this.$selection.on("blur",function(e){}),e.on("selection:update",function(e){n.update(e.data)})},r.prototype.clear=function(){this.$selection.find(".pumselect2-selection__rendered").empty()},r.prototype.display=function(e,t){var n=this.options.get("templateSelection"),i=this.options.get("escapeMarkup");return i(n(e,t))},r.prototype.selectionContainer=function(){return e("<span></span>")},r.prototype.update=function(e){if(0===e.length)return void this.clear();var t=e[0],n=this.$selection.find(".pumselect2-selection__rendered"),i=this.display(t,n);n.empty().append(i),n.prop("title",t.title||t.text)},r}),t.define("pumselect2/selection/multiple",["jquery","./base","../utils"],function(e,t,n){function i(e,t){i.__super__.constructor.apply(this,arguments)}return n.Extend(i,t),i.prototype.render=function(){var e=i.__super__.render.call(this);return e.addClass("pumselect2-selection--multiple"),e.html('<ul class="pumselect2-selection__rendered"></ul>'),e},i.prototype.bind=function(t,n){var r=this;i.__super__.bind.apply(this,arguments),this.$selection.on("click",function(e){r.trigger("toggle",{originalEvent:e})}),this.$selection.on("click",".pumselect2-selection__choice__remove",function(t){if(!r.options.get("disabled")){var n=e(this),i=n.parent(),s=i.data("data");r.trigger("unselect",{originalEvent:t,data:s})}})},i.prototype.clear=function(){this.$selection.find(".pumselect2-selection__rendered").empty()},i.prototype.display=function(e,t){var n=this.options.get("templateSelection"),i=this.options.get("escapeMarkup");return i(n(e,t))},i.prototype.selectionContainer=function(){var t=e('<li class="pumselect2-selection__choice"><span class="pumselect2-selection__choice__remove" role="presentation">×</span></li>');return t},i.prototype.update=function(e){if(this.clear(),0!==e.length){for(var t=[],i=0;i<e.length;i++){var r=e[i],s=this.selectionContainer(),o=this.display(r,s);s.append(o),s.prop("title",r.title||r.text),s.data("data",r),t.push(s)}var a=this.$selection.find(".pumselect2-selection__rendered");n.appendMany(a,t)}},i}),t.define("pumselect2/selection/placeholder",["../utils"],function(e){function t(e,t,n){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n)}return t.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},t.prototype.createPlaceholder=function(e,t){var n=this.selectionContainer();return n.html(this.display(t)),n.addClass("pumselect2-selection__placeholder").removeClass("pumselect2-selection__choice"),n},t.prototype.update=function(e,t){var n=1==t.length&&t[0].id!=this.placeholder.id,i=t.length>1;if(i||n)return e.call(this,t);this.clear();var r=this.createPlaceholder(this.placeholder);this.$selection.find(".pumselect2-selection__rendered").append(r)},t}),t.define("pumselect2/selection/allowClear",["jquery","../keys"],function(e,t){function n(){}return n.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".pumselect2-selection__clear",function(e){i._handleClear(e)}),t.on("keypress",function(e){i._handleKeyboardClear(e,t)})},n.prototype._handleClear=function(e,t){if(!this.options.get("disabled")){var n=this.$selection.find(".pumselect2-selection__clear");if(0!==n.length){t.stopPropagation();for(var i=n.data("data"),r=0;r<i.length;r++){var s={data:i[r]};if(this.trigger("unselect",s),s.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},n.prototype._handleKeyboardClear=function(e,n,i){i.isOpen()||n.which!=t.DELETE&&n.which!=t.BACKSPACE||this._handleClear(n)},n.prototype.update=function(t,n){if(t.call(this,n),!(this.$selection.find(".pumselect2-selection__placeholder").length>0||0===n.length)){var i=e('<span class="pumselect2-selection__clear">×</span>');i.data("data",n),this.$selection.find(".pumselect2-selection__rendered").prepend(i)}},n}),t.define("pumselect2/selection/search",["jquery","../utils","../keys"],function(e,t,n){function i(e,t,n){e.call(this,t,n)}return i.prototype.render=function(t){var n=e('<li class="pumselect2-search pumselect2-search--inline"><input class="pumselect2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=n,this.$search=n.find("input");var i=t.call(this);return this._transferTabIndex(),i},i.prototype.bind=function(e,t,i){var r=this;e.call(this,t,i),t.on("open",function(){r.$search.trigger("focus")}),t.on("close",function(){r.$search.val(""),r.$search.removeAttr("aria-activedescendant"),r.$search.trigger("focus")}),t.on("enable",function(){r.$search.prop("disabled",!1),r._transferTabIndex()}),t.on("disable",function(){r.$search.prop("disabled",!0)}),t.on("focus",function(e){r.$search.trigger("focus")}),t.on("results:focus",function(e){r.$search.attr("aria-activedescendant",e.id)}),this.$selection.on("focusin",".pumselect2-search--inline",function(e){r.trigger("focus",e)}),this.$selection.on("focusout",".pumselect2-search--inline",function(e){r._handleBlur(e)}),this.$selection.on("keydown",".pumselect2-search--inline",function(e){e.stopPropagation(),r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented();var t=e.which;if(t===n.BACKSPACE&&""===r.$search.val()){var i=r.$searchContainer.prev(".pumselect2-selection__choice");if(i.length>0){var s=i.data("data");r.searchRemoveChoice(s),e.preventDefault()}}});var s=document.documentMode,o=s&&s<=11;this.$selection.on("input.searchcheck",".pumselect2-search--inline",function(e){return o?void r.$selection.off("input.search input.searchcheck"):void r.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".pumselect2-search--inline",function(e){if(o&&"input"===e.type)return void r.$selection.off("input.search input.searchcheck");var t=e.which;t!=n.SHIFT&&t!=n.CTRL&&t!=n.ALT&&t!=n.TAB&&r.handleSearch(e)})},i.prototype._transferTabIndex=function(e){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},i.prototype.createPlaceholder=function(e,t){this.$search.attr("placeholder",t.text)},i.prototype.update=function(e,t){var n=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),e.call(this,t),this.$selection.find(".pumselect2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),n&&this.$search.focus()},i.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var e=this.$search.val();this.trigger("query",{term:e})}this._keyUpPrevented=!1},i.prototype.searchRemoveChoice=function(e,t){this.trigger("unselect",{data:t}),this.$search.val(t.text),this.handleSearch()},i.prototype.resizeSearch=function(){this.$search.css("width","25px");var e="";if(""!==this.$search.attr("placeholder"))e=this.$selection.find(".pumselect2-selection__rendered").innerWidth();else{var t=this.$search.val().length+1;e=.75*t+"em"}this.$search.css("width",e)},i}),t.define("pumselect2/selection/eventRelay",["jquery"],function(e){function t(){}return t.prototype.bind=function(t,n,i){var r=this,s=["open","opening","close","closing","select","selecting","unselect","unselecting"],o=["opening","closing","selecting","unselecting"];t.call(this,n,i),n.on("*",function(t,n){if(e.inArray(t,s)!==-1){n=n||{};var i=e.Event("pumselect2:"+t,{params:n});r.$element.trigger(i),e.inArray(t,o)!==-1&&(n.prevented=i.isDefaultPrevented())}})},t}),t.define("pumselect2/translation",["jquery","require"],function(e,t){function n(e){this.dict=e||{}}return n.prototype.all=function(){return this.dict},n.prototype.get=function(e){return this.dict[e]},n.prototype.extend=function(t){this.dict=e.extend({},t.all(),this.dict)},n._cache={},n.loadPath=function(e){if(!(e in n._cache)){var i=t(e);n._cache[e]=i}return new n(n._cache[e])},n}),t.define("pumselect2/diacritics",[],function(){var e={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};return e}),t.define("pumselect2/data/base",["../utils"],function(e){function t(e,n){t.__super__.constructor.call(this)}return e.Extend(t,e.Observable),t.prototype.current=function(e){throw new Error("The `current` method must be defined in child classes.")},t.prototype.query=function(e,t){throw new Error("The `query` method must be defined in child classes.")},t.prototype.bind=function(e,t){},t.prototype.destroy=function(){},t.prototype.generateResultId=function(t,n){var i=t.id+"-result-";return i+=e.generateChars(4),i+=null!=n.id?"-"+n.id.toString():"-"+e.generateChars(4)},t}),t.define("pumselect2/data/select",["./base","../utils","jquery"],function(e,t,n){
|
2 |
-
function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return t.Extend(i,e),i.prototype.current=function(e){var t=[],i=this;this.$element.find(":selected").each(function(){var e=n(this),r=i.item(e);t.push(r)}),e(t)},i.prototype.select=function(e){var t=this;if(e.selected=!0,n(e.element).is("option"))return e.element.selected=!0,void this.$element.trigger("change");if(this.$element.prop("multiple"))this.current(function(i){var r=[];e=[e],e.push.apply(e,i);for(var s=0;s<e.length;s++){var o=e[s].id;n.inArray(o,r)===-1&&r.push(o)}t.$element.val(r),t.$element.trigger("change")});else{var i=e.id;this.$element.val(i),this.$element.trigger("change")}},i.prototype.unselect=function(e){var t=this;if(this.$element.prop("multiple"))return e.selected=!1,n(e.element).is("option")?(e.element.selected=!1,void this.$element.trigger("change")):void this.current(function(i){for(var r=[],s=0;s<i.length;s++){var o=i[s].id;o!==e.id&&n.inArray(o,r)===-1&&r.push(o)}t.$element.val(r),t.$element.trigger("change")})},i.prototype.bind=function(e,t){var n=this;this.container=e,e.on("select",function(e){n.select(e.data)}),e.on("unselect",function(e){n.unselect(e.data)})},i.prototype.destroy=function(){this.$element.find("*").each(function(){n.removeData(this,"data")})},i.prototype.query=function(e,t){var i=[],r=this,s=this.$element.children();s.each(function(){var t=n(this);if(t.is("option")||t.is("optgroup")){var s=r.item(t),o=r.matches(e,s);null!==o&&i.push(o)}}),t({results:i})},i.prototype.addOptions=function(e){t.appendMany(this.$element,e)},i.prototype.option=function(e){var t;e.children?(t=document.createElement("optgroup"),t.label=e.text):(t=document.createElement("option"),void 0!==t.textContent?t.textContent=e.text:t.innerText=e.text),e.id&&(t.value=e.id),e.disabled&&(t.disabled=!0),e.selected&&(t.selected=!0),e.title&&(t.title=e.title);var i=n(t),r=this._normalizeItem(e);return r.element=t,n.data(t,"data",r),i},i.prototype.item=function(e){var t={};if(t=n.data(e[0],"data"),null!=t)return t;if(e.is("option"))t={id:e.val(),text:e.text(),disabled:e.prop("disabled"),selected:e.prop("selected"),title:e.prop("title")};else if(e.is("optgroup")){t={text:e.prop("label"),children:[],title:e.prop("title")};for(var i=e.children("option"),r=[],s=0;s<i.length;s++){var o=n(i[s]),a=this.item(o);r.push(a)}t.children=r}return t=this._normalizeItem(t),t.element=e[0],n.data(e[0],"data",t),t},i.prototype._normalizeItem=function(e){n.isPlainObject(e)||(e={id:e,text:e}),e=n.extend({},{text:""},e);var t={selected:!1,disabled:!1};return null!=e.id&&(e.id=e.id.toString()),null!=e.text&&(e.text=e.text.toString()),null==e._resultId&&e.id&&null!=this.container&&(e._resultId=this.generateResultId(this.container,e)),n.extend({},t,e)},i.prototype.matches=function(e,t){var n=this.options.get("matcher");return n(e,t)},i}),t.define("pumselect2/data/array",["./select","../utils","jquery"],function(e,t,n){function i(e,t){var n=t.get("data")||[];i.__super__.constructor.call(this,e,t),this.addOptions(this.convertToOptions(n))}return t.Extend(i,e),i.prototype.select=function(e){var t=this.$element.find("option").filter(function(t,n){return n.value==e.id.toString()});0===t.length&&(t=this.option(e),this.addOptions(t)),i.__super__.select.call(this,e)},i.prototype.convertToOptions=function(e){function i(e){return function(){return n(this).val()==e.id}}for(var r=this,s=this.$element.find("option"),o=s.map(function(){return r.item(n(this)).id}).get(),a=[],l=0;l<e.length;l++){var u=this._normalizeItem(e[l]);if(n.inArray(u.id,o)>=0){var c=s.filter(i(u)),d=this.item(c),p=n.extend(!0,{},u,d),h=this.option(p);c.replaceWith(h)}else{var f=this.option(u);if(u.children){var m=this.convertToOptions(u.children);t.appendMany(f,m)}a.push(f)}}return a},i}),t.define("pumselect2/data/ajax",["./array","../utils","jquery"],function(e,t,n){function i(e,t){this.ajaxOptions=this._applyDefaults(t.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),i.__super__.constructor.call(this,e,t)}return t.Extend(i,e),i.prototype._applyDefaults=function(e){var t={data:function(e){return n.extend({},e,{q:e.term})},transport:function(e,t,i){var r=n.ajax(e);return r.then(t),r.fail(i),r}};return n.extend({},t,e,!0)},i.prototype.processResults=function(e){return e},i.prototype.query=function(e,t){function i(){var i=s.transport(s,function(i){var s=r.processResults(i,e);r.options.get("debug")&&window.console&&console.error&&(s&&s.results&&n.isArray(s.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),t(s)},function(){r.trigger("results:message",{message:"errorLoading"})});r._request=i}var r=this;null!=this._request&&(n.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var s=n.extend({type:"GET"},this.ajaxOptions);"function"==typeof s.url&&(s.url=s.url.call(this.$element,e)),"function"==typeof s.data&&(s.data=s.data.call(this.$element,e)),this.ajaxOptions.delay&&""!==e.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(i,this.ajaxOptions.delay)):i()},i}),t.define("pumselect2/data/tags",["jquery"],function(e){function t(t,n,i){var r=i.get("tags"),s=i.get("createTag");void 0!==s&&(this.createTag=s);var o=i.get("insertTag");if(void 0!==o&&(this.insertTag=o),t.call(this,n,i),e.isArray(r))for(var a=0;a<r.length;a++){var l=r[a],u=this._normalizeItem(l),c=this.option(u);this.$element.append(c)}}return t.prototype.query=function(e,t,n){function i(e,s){for(var o=e.results,a=0;a<o.length;a++){var l=o[a],u=null!=l.children&&!i({results:l.children},!0),c=l.text===t.term;if(c||u)return!s&&(e.data=o,void n(e))}if(s)return!0;var d=r.createTag(t);if(null!=d){var p=r.option(d);p.attr("data-pumselect2-tag",!0),r.addOptions([p]),r.insertTag(o,d)}e.results=o,n(e)}var r=this;return this._removeOldTags(),null==t.term||null!=t.page?void e.call(this,t,n):void e.call(this,t,i)},t.prototype.createTag=function(t,n){var i=e.trim(n.term);return""===i?null:{id:i,text:i}},t.prototype.insertTag=function(e,t,n){t.unshift(n)},t.prototype._removeOldTags=function(t){var n=(this._lastTag,this.$element.find("option[data-pumselect2-tag]"));n.each(function(){this.selected||e(this).remove()})},t}),t.define("pumselect2/data/tokenizer",["jquery"],function(e){function t(e,t,n){var i=n.get("tokenizer");void 0!==i&&(this.tokenizer=i),e.call(this,t,n)}return t.prototype.bind=function(e,t,n){e.call(this,t,n),this.$search=t.dropdown.$search||t.selection.$search||n.find(".pumselect2-search__field")},t.prototype.query=function(e,t,n){function i(e){r.trigger("select",{data:e})}var r=this;t.term=t.term||"";var s=this.tokenizer(t,this.options,i);s.term!==t.term&&(this.$search.length&&(this.$search.val(s.term),this.$search.focus()),t.term=s.term),e.call(this,t,n)},t.prototype.tokenizer=function(t,n,i,r){for(var s=i.get("tokenSeparators")||[],o=n.term,a=0,l=this.createTag||function(e){return{id:e.term,text:e.term}};a<o.length;){var u=o[a];if(e.inArray(u,s)!==-1){var c=o.substr(0,a),d=e.extend({},n,{term:c}),p=l(d);null!=p?(r(p),o=o.substr(a+1)||"",a=0):a++}else a++}return{term:o}},t}),t.define("pumselect2/data/minimumInputLength",[],function(){function e(e,t,n){this.minimumInputLength=n.get("minimumInputLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){return t.term=t.term||"",t.term.length<this.minimumInputLength?void this.trigger("results:message",{message:"inputTooShort",args:{minimum:this.minimumInputLength,input:t.term,params:t}}):void e.call(this,t,n)},e}),t.define("pumselect2/data/maximumInputLength",[],function(){function e(e,t,n){this.maximumInputLength=n.get("maximumInputLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){return t.term=t.term||"",this.maximumInputLength>0&&t.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:t.term,params:t}}):void e.call(this,t,n)},e}),t.define("pumselect2/data/maximumSelectionLength",[],function(){function e(e,t,n){this.maximumSelectionLength=n.get("maximumSelectionLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){var i=this;this.current(function(r){var s=null!=r?r.length:0;return i.maximumSelectionLength>0&&s>=i.maximumSelectionLength?void i.trigger("results:message",{message:"maximumSelected",args:{maximum:i.maximumSelectionLength}}):void e.call(i,t,n)})},e}),t.define("pumselect2/dropdown",["jquery","./utils"],function(e,t){function n(e,t){this.$element=e,this.options=t,n.__super__.constructor.call(this)}return t.Extend(n,t.Observable),n.prototype.render=function(){var t=e('<span class="pumselect2-dropdown"><span class="pumselect2-results"></span></span>');return t.attr("dir",this.options.get("dir")),this.$dropdown=t,t},n.prototype.bind=function(){},n.prototype.position=function(e,t){},n.prototype.destroy=function(){this.$dropdown.remove()},n}),t.define("pumselect2/dropdown/search",["jquery","../utils"],function(e,t){function n(){}return n.prototype.render=function(t){var n=t.call(this),i=e('<span class="pumselect2-search pumselect2-search--dropdown"><input class="pumselect2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" /></span>');return this.$searchContainer=i,this.$search=i.find("input"),n.prepend(i),n},n.prototype.bind=function(t,n,i){var r=this;t.call(this,n,i),this.$search.on("keydown",function(e){r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented()}),this.$search.on("input",function(t){e(this).off("keyup")}),this.$search.on("keyup input",function(e){r.handleSearch(e)}),n.on("open",function(){r.$search.attr("tabindex",0),r.$search.focus(),window.setTimeout(function(){r.$search.focus()},0)}),n.on("close",function(){r.$search.attr("tabindex",-1),r.$search.val("")}),n.on("results:all",function(e){if(null==e.query.term||""===e.query.term){var t=r.showSearch(e);t?r.$searchContainer.removeClass("pumselect2-search--hide"):r.$searchContainer.addClass("pumselect2-search--hide")}})},n.prototype.handleSearch=function(e){if(!this._keyUpPrevented){var t=this.$search.val();this.trigger("query",{term:t})}this._keyUpPrevented=!1},n.prototype.showSearch=function(e,t){return!0},n}),t.define("pumselect2/dropdown/hidePlaceholder",[],function(){function e(e,t,n,i){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n,i)}return e.prototype.append=function(e,t){t.results=this.removePlaceholder(t.results),e.call(this,t)},e.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},e.prototype.removePlaceholder=function(e,t){for(var n=t.slice(0),i=t.length-1;i>=0;i--){var r=t[i];this.placeholder.id===r.id&&n.splice(i,1)}return n},e}),t.define("pumselect2/dropdown/infiniteScroll",["jquery"],function(e){function t(e,t,n,i){this.lastParams={},e.call(this,t,n,i),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return t.prototype.append=function(e,t){this.$loadingMore.remove(),this.loading=!1,e.call(this,t),this.showLoadingMore(t)&&this.$results.append(this.$loadingMore)},t.prototype.bind=function(t,n,i){var r=this;t.call(this,n,i),n.on("query",function(e){r.lastParams=e,r.loading=!0}),n.on("query:append",function(e){r.lastParams=e,r.loading=!0}),this.$results.on("scroll",function(){var t=e.contains(document.documentElement,r.$loadingMore[0]);if(!r.loading&&t){var n=r.$results.offset().top+r.$results.outerHeight(!1),i=r.$loadingMore.offset().top+r.$loadingMore.outerHeight(!1);n+50>=i&&r.loadMore()}})},t.prototype.loadMore=function(){this.loading=!0;var t=e.extend({},{page:1},this.lastParams);t.page++,this.trigger("query:append",t)},t.prototype.showLoadingMore=function(e,t){return t.pagination&&t.pagination.more},t.prototype.createLoadingMore=function(){var t=e('<li class="pumselect2-results__option pumselect2-results__option--load-more"role="treeitem" aria-disabled="true"></li>'),n=this.options.get("translations").get("loadingMore");return t.html(n(this.lastParams)),t},t}),t.define("pumselect2/dropdown/attachBody",["jquery","../utils"],function(e,t){function n(t,n,i){this.$dropdownParent=i.get("dropdownParent")||e(document.body),t.call(this,n,i)}return n.prototype.bind=function(e,t,n){var i=this,r=!1;e.call(this,t,n),t.on("open",function(){i._showDropdown(),i._attachPositioningHandler(t),r||(r=!0,t.on("results:all",function(){i._positionDropdown(),i._resizeDropdown()}),t.on("results:append",function(){i._positionDropdown(),i._resizeDropdown()}))}),t.on("close",function(){i._hideDropdown(),i._detachPositioningHandler(t)}),this.$dropdownContainer.on("mousedown",function(e){e.stopPropagation()})},n.prototype.destroy=function(e){e.call(this),this.$dropdownContainer.remove()},n.prototype.position=function(e,t,n){t.attr("class",n.attr("class")),t.removeClass("pumselect2"),t.addClass("pumselect2-container--open"),t.css({position:"absolute",top:-999999}),this.$container=n},n.prototype.render=function(t){var n=e("<span></span>"),i=t.call(this);return n.append(i),this.$dropdownContainer=n,n},n.prototype._hideDropdown=function(e){this.$dropdownContainer.detach()},n.prototype._attachPositioningHandler=function(n,i){var r=this,s="scroll.pumselect2."+i.id,o="resize.pumselect2."+i.id,a="orientationchange.pumselect2."+i.id,l=this.$container.parents().filter(t.hasScroll);l.each(function(){e(this).data("pumselect2-scroll-position",{x:e(this).scrollLeft(),y:e(this).scrollTop()})}),l.on(s,function(t){var n=e(this).data("pumselect2-scroll-position");e(this).scrollTop(n.y)}),e(window).on(s+" "+o+" "+a,function(e){r._positionDropdown(),r._resizeDropdown()})},n.prototype._detachPositioningHandler=function(n,i){var r="scroll.pumselect2."+i.id,s="resize.pumselect2."+i.id,o="orientationchange.pumselect2."+i.id,a=this.$container.parents().filter(t.hasScroll);a.off(r),e(window).off(r+" "+s+" "+o)},n.prototype._positionDropdown=function(){var t=e(window),n=this.$dropdown.hasClass("pumselect2-dropdown--above"),i=this.$dropdown.hasClass("pumselect2-dropdown--below"),r=null,s=this.$container.offset();s.bottom=s.top+this.$container.outerHeight(!1);var o={height:this.$container.outerHeight(!1)};o.top=s.top,o.bottom=s.top+o.height;var a={height:this.$dropdown.outerHeight(!1)},l={top:t.scrollTop(),bottom:t.scrollTop()+t.height()},u=l.top<s.top-a.height,c=l.bottom>s.bottom+a.height,d={left:s.left,top:o.bottom},p=this.$dropdownParent;"static"===p.css("position")&&(p=p.offsetParent());var h=p.offset();d.top-=h.top,d.left-=h.left,n||i||(r="below"),c||!u||n?!u&&c&&n&&(r="below"):r="above",("above"==r||n&&"below"!==r)&&(d.top=o.top-a.height),null!=r&&(this.$dropdown.removeClass("pumselect2-dropdown--below pumselect2-dropdown--above").addClass("pumselect2-dropdown--"+r),this.$container.removeClass("pumselect2-container--below pumselect2-container--above").addClass("pumselect2-container--"+r)),this.$dropdownContainer.css(d)},n.prototype._resizeDropdown=function(){var e={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(e.minWidth=e.width,e.width="auto"),this.$dropdown.css(e)},n.prototype._showDropdown=function(e){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},n}),t.define("pumselect2/dropdown/minimumResultsForSearch",[],function(){function e(t){for(var n=0,i=0;i<t.length;i++){var r=t[i];r.children?n+=e(r.children):n++}return n}function t(e,t,n,i){this.minimumResultsForSearch=n.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),e.call(this,t,n,i)}return t.prototype.showSearch=function(t,n){return!(e(n.data.results)<this.minimumResultsForSearch)&&t.call(this,n)},t}),t.define("pumselect2/dropdown/selectOnClose",[],function(){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("close",function(){i._handleSelectOnClose()})},e.prototype._handleSelectOnClose=function(){var e=this.getHighlightedResults();if(!(e.length<1)){var t=e.data("data");null!=t.element&&t.element.selected||null==t.element&&t.selected||this.trigger("select",{data:t})}},e}),t.define("pumselect2/dropdown/closeOnSelect",[],function(){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("select",function(e){i._selectTriggered(e)}),t.on("unselect",function(e){i._selectTriggered(e)})},e.prototype._selectTriggered=function(e,t){var n=t.originalEvent;n&&n.ctrlKey||this.trigger("close",{})},e}),t.define("pumselect2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return 1!=t&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return 1!=e.maximum&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),t.define("pumselect2/defaults",["jquery","require","./results","./selection/single","./selection/multiple","./selection/placeholder","./selection/allowClear","./selection/search","./selection/eventRelay","./utils","./translation","./diacritics","./data/select","./data/array","./data/ajax","./data/tags","./data/tokenizer","./data/minimumInputLength","./data/maximumInputLength","./data/maximumSelectionLength","./dropdown","./dropdown/search","./dropdown/hidePlaceholder","./dropdown/infiniteScroll","./dropdown/attachBody","./dropdown/minimumResultsForSearch","./dropdown/selectOnClose","./dropdown/closeOnSelect","./i18n/en"],function(e,t,n,i,r,s,o,a,l,u,c,d,p,h,f,m,g,v,y,b,_,w,A,$,x,k,C,j,P){function O(){this.reset()}O.prototype.apply=function(d){if(d=e.extend(!0,{},this.defaults,d),null==d.dataAdapter){if(null!=d.ajax?d.dataAdapter=f:null!=d.data?d.dataAdapter=h:d.dataAdapter=p,d.minimumInputLength>0&&(d.dataAdapter=u.Decorate(d.dataAdapter,v)),d.maximumInputLength>0&&(d.dataAdapter=u.Decorate(d.dataAdapter,y)),d.maximumSelectionLength>0&&(d.dataAdapter=u.Decorate(d.dataAdapter,b)),d.tags&&(d.dataAdapter=u.Decorate(d.dataAdapter,m)),null==d.tokenSeparators&&null==d.tokenizer||(d.dataAdapter=u.Decorate(d.dataAdapter,g)),null!=d.query){var P=t(d.amdBase+"compat/query");d.dataAdapter=u.Decorate(d.dataAdapter,P)}if(null!=d.initSelection){var O=t(d.amdBase+"compat/initSelection");d.dataAdapter=u.Decorate(d.dataAdapter,O)}}if(null==d.resultsAdapter&&(d.resultsAdapter=n,null!=d.ajax&&(d.resultsAdapter=u.Decorate(d.resultsAdapter,$)),null!=d.placeholder&&(d.resultsAdapter=u.Decorate(d.resultsAdapter,A)),d.selectOnClose&&(d.resultsAdapter=u.Decorate(d.resultsAdapter,C))),null==d.dropdownAdapter){if(d.multiple)d.dropdownAdapter=_;else{var M=u.Decorate(_,w);d.dropdownAdapter=M}if(0!==d.minimumResultsForSearch&&(d.dropdownAdapter=u.Decorate(d.dropdownAdapter,k)),d.closeOnSelect&&(d.dropdownAdapter=u.Decorate(d.dropdownAdapter,j)),null!=d.dropdownCssClass||null!=d.dropdownCss||null!=d.adaptDropdownCssClass){var S=t(d.amdBase+"compat/dropdownCss");d.dropdownAdapter=u.Decorate(d.dropdownAdapter,S)}d.dropdownAdapter=u.Decorate(d.dropdownAdapter,x)}if(null==d.selectionAdapter){if(d.multiple?d.selectionAdapter=r:d.selectionAdapter=i,null!=d.placeholder&&(d.selectionAdapter=u.Decorate(d.selectionAdapter,s)),d.allowClear&&(d.selectionAdapter=u.Decorate(d.selectionAdapter,o)),d.multiple&&(d.selectionAdapter=u.Decorate(d.selectionAdapter,a)),null!=d.containerCssClass||null!=d.containerCss||null!=d.adaptContainerCssClass){var E=t(d.amdBase+"compat/containerCss");d.selectionAdapter=u.Decorate(d.selectionAdapter,E)}d.selectionAdapter=u.Decorate(d.selectionAdapter,l)}if("string"==typeof d.language)if(d.language.indexOf("-")>0){var U=d.language.split("-"),D=U[0];d.language=[d.language,D]}else d.language=[d.language];if(e.isArray(d.language)){var T=new c;d.language.push("en");for(var q=d.language,I=0;I<q.length;I++){var z=q[I],L={};try{L=c.loadPath(z)}catch(H){try{z=this.defaults.amdLanguageBase+z,L=c.loadPath(z)}catch(R){d.debug&&window.console&&console.warn&&console.warn('Select2: The language file for "'+z+'" could not be automatically loaded. A fallback will be used instead.');continue}}T.extend(L)}d.translations=T}else{var N=c.loadPath(this.defaults.amdLanguageBase+"en"),F=new c(d.language);F.extend(N),d.translations=F}return d},O.prototype.reset=function(){function t(e){function t(e){return d[e]||e}return e.replace(/[^\u0000-\u007E]/g,t)}function n(i,r){if(""===e.trim(i.term))return r;if(r.children&&r.children.length>0){for(var s=e.extend(!0,{},r),o=r.children.length-1;o>=0;o--){var a=r.children[o],l=n(i,a);null==l&&s.children.splice(o,1)}return s.children.length>0?s:n(i,s)}var u=t(r.text).toUpperCase(),c=t(i.term).toUpperCase();return u.indexOf(c)>-1?r:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:u.escapeMarkup,language:P,matcher:n,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(e){return e},templateResult:function(e){return e.text},templateSelection:function(e){return e.text},theme:"default",width:"resolve"}},O.prototype.set=function(t,n){var i=e.camelCase(t),r={};r[i]=n;var s=u._convertData(r);e.extend(this.defaults,s)};var M=new O;return M}),t.define("pumselect2/options",["require","jquery","./defaults","./utils"],function(e,t,n,i){function r(t,r){if(this.options=t,null!=r&&this.fromElement(r),this.options=n.apply(this.options),r&&r.is("input")){var s=e(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=i.Decorate(this.options.dataAdapter,s)}}return r.prototype.fromElement=function(e){var n=["pumselect2"];null==this.options.multiple&&(this.options.multiple=e.prop("multiple")),null==this.options.disabled&&(this.options.disabled=e.prop("disabled")),null==this.options.language&&(e.prop("lang")?this.options.language=e.prop("lang").toLowerCase():e.closest("[lang]").prop("lang")&&(this.options.language=e.closest("[lang]").prop("lang"))),null==this.options.dir&&(e.prop("dir")?this.options.dir=e.prop("dir"):e.closest("[dir]").prop("dir")?this.options.dir=e.closest("[dir]").prop("dir"):this.options.dir="ltr"),e.prop("disabled",this.options.disabled),e.prop("multiple",this.options.multiple),e.data("pumselect2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-pumselect2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),e.data("data",e.data("pumselect2Tags")),e.data("tags",!0)),e.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),e.attr("ajax--url",e.data("ajaxUrl")),e.data("ajax--url",e.data("ajaxUrl")));var r={};r=t.fn.jquery&&"1."==t.fn.jquery.substr(0,2)&&e[0].dataset?t.extend(!0,{},e[0].dataset,e.data()):e.data();var s=t.extend(!0,{},r);s=i._convertData(s);for(var o in s)t.inArray(o,n)>-1||(t.isPlainObject(this.options[o])?t.extend(this.options[o],s[o]):this.options[o]=s[o]);return this},r.prototype.get=function(e){return this.options[e]},r.prototype.set=function(e,t){this.options[e]=t},r}),t.define("pumselect2/core",["jquery","./options","./utils","./keys"],function(e,t,n,i){var r=function(e,n){null!=e.data("pumselect2")&&e.data("pumselect2").destroy(),this.$element=e,this.id=this._generateId(e),n=n||{},this.options=new t(n,e),r.__super__.constructor.call(this);var i=e.attr("tabindex")||0;e.data("old-tabindex",i),e.attr("tabindex","-1");var s=this.options.get("dataAdapter");this.dataAdapter=new s(e,this.options);var o=this.render();this._placeContainer(o);var a=this.options.get("selectionAdapter");this.selection=new a(e,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,o);var l=this.options.get("dropdownAdapter");this.dropdown=new l(e,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,o);var u=this.options.get("resultsAdapter");this.results=new u(e,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var c=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(e){c.trigger("selection:update",{data:e})}),e.addClass("pumselect2-hidden-accessible"),e.attr("aria-hidden","true"),this._syncAttributes(),e.data("pumselect2",this)};return n.Extend(r,n.Observable),r.prototype._generateId=function(e){var t="";return t=null!=e.attr("id")?e.attr("id"):null!=e.attr("name")?e.attr("name")+"-"+n.generateChars(2):n.generateChars(4),t=t.replace(/(:|\.|\[|\]|,)/g,""),t="pumselect2-"+t},r.prototype._placeContainer=function(e){e.insertAfter(this.$element);var t=this._resolveWidth(this.$element,this.options.get("width"));null!=t&&e.css("width",t)},r.prototype._resolveWidth=function(e,t){var n=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==t){var i=this._resolveWidth(e,"style");return null!=i?i:this._resolveWidth(e,"element")}if("element"==t){var r=e.outerWidth(!1);return r<=0?"auto":r+"px"}if("style"==t){var s=e.attr("style");if("string"!=typeof s)return null;for(var o=s.split(";"),a=0,l=o.length;a<l;a+=1){var u=o[a].replace(/\s/g,""),c=u.match(n);if(null!==c&&c.length>=1)return c[1]}return null}return t},r.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},r.prototype._registerDomEvents=function(){var t=this;this.$element.on("change.pumselect2",function(){t.dataAdapter.current(function(e){t.trigger("selection:update",{data:e})})}),this._sync=n.bind(this._syncAttributes,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._sync);var i=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=i?(this._observer=new i(function(n){e.each(n,t._sync)}),this._observer.observe(this.$element[0],{attributes:!0,subtree:!1})):this.$element[0].addEventListener&&this.$element[0].addEventListener("DOMAttrModified",t._sync,!1)},r.prototype._registerDataEvents=function(){var e=this;this.dataAdapter.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerSelectionEvents=function(){var t=this,n=["toggle","focus"];this.selection.on("toggle",function(){t.toggleDropdown()}),this.selection.on("focus",function(e){t.focus(e)}),this.selection.on("*",function(i,r){e.inArray(i,n)===-1&&t.trigger(i,r)})},r.prototype._registerDropdownEvents=function(){var e=this;this.dropdown.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerResultsEvents=function(){var e=this;this.results.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerEvents=function(){var e=this;this.on("open",function(){e.$container.addClass("pumselect2-container--open")}),this.on("close",function(){e.$container.removeClass("pumselect2-container--open")}),this.on("enable",function(){e.$container.removeClass("pumselect2-container--disabled")}),this.on("disable",function(){e.$container.addClass("pumselect2-container--disabled")}),this.on("blur",function(){e.$container.removeClass("pumselect2-container--focus")}),this.on("query",function(t){e.isOpen()||e.trigger("open",{}),this.dataAdapter.query(t,function(n){e.trigger("results:all",{data:n,query:t})})}),this.on("query:append",function(t){this.dataAdapter.query(t,function(n){e.trigger("results:append",{data:n,query:t})})}),this.on("keypress",function(t){var n=t.which;e.isOpen()?n===i.ESC||n===i.TAB||n===i.UP&&t.altKey?(e.close(),t.preventDefault()):n===i.ENTER?(e.trigger("results:select",{}),t.preventDefault()):n===i.SPACE&&t.ctrlKey?(e.trigger("results:toggle",{}),t.preventDefault()):n===i.UP?(e.trigger("results:previous",{}),t.preventDefault()):n===i.DOWN&&(e.trigger("results:next",{}),t.preventDefault()):(n===i.ENTER||n===i.SPACE||n===i.DOWN&&t.altKey)&&(e.open(),t.preventDefault())})},r.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},r.prototype.trigger=function(e,t){var n=r.__super__.trigger,i={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===t&&(t={}),e in i){var s=i[e],o={prevented:!1,name:e,args:t};if(n.call(this,s,o),o.prevented)return void(t.prevented=!0)}n.call(this,e,t)},r.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},r.prototype.open=function(){this.isOpen()||this.trigger("query",{})},r.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},r.prototype.isOpen=function(){return this.$container.hasClass("pumselect2-container--open")},r.prototype.hasFocus=function(){return this.$container.hasClass("pumselect2-container--focus")},r.prototype.focus=function(e){this.hasFocus()||(this.$container.addClass("pumselect2-container--focus"),this.trigger("focus",{}))},r.prototype.enable=function(e){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `pumselect2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),null!=e&&0!==e.length||(e=[!0]);var t=!e[0];this.$element.prop("disabled",t)},r.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `pumselect2("data")`. You should consider setting the value instead using `$element.val()`.');var e=[];return this.dataAdapter.current(function(t){e=t}),e},r.prototype.val=function(t){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `pumselect2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==t||0===t.length)return this.$element.val();var n=t[0];e.isArray(n)&&(n=e.map(n,function(e){return e.toString()})),this.$element.val(n).trigger("change")},r.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._sync),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&this.$element[0].removeEventListener("DOMAttrModified",this._sync,!1),this._sync=null,this.$element.off(".pumselect2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("pumselect2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("pumselect2"),this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null},r.prototype.render=function(){var t=e('<span class="pumselect2 pumselect2-container"><span class="selection"></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>');return t.attr("dir",this.options.get("dir")),this.$container=t,this.$container.addClass("pumselect2-container--"+this.options.get("theme")),t.data("element",this.$element),t},r}),t.define("pumselect2/compat/utils",["jquery"],function(e){function t(t,n,i){var r,s,o=[];r=e.trim(t.attr("class")),r&&(r=""+r,e(r.split(/\s+/)).each(function(){0===this.indexOf("pumselect2-")&&o.push(this)})),r=e.trim(n.attr("class")),r&&(r=""+r,e(r.split(/\s+/)).each(function(){0!==this.indexOf("pumselect2-")&&(s=i(this),null!=s&&o.push(s))})),t.attr("class",o.join(" "));
|
3 |
-
}return{syncCssClasses:t}}),t.define("pumselect2/compat/containerCss",["jquery","./utils"],function(e,t){function n(e){return null}function i(){}return i.prototype.render=function(i){var r=i.call(this),s=this.options.get("containerCssClass")||"";e.isFunction(s)&&(s=s(this.$element));var o=this.options.get("adaptContainerCssClass");if(o=o||n,s.indexOf(":all:")!==-1){s=s.replace(":all:","");var a=o;o=function(e){var t=a(e);return null!=t?t+" "+e:e}}var l=this.options.get("containerCss")||{};return e.isFunction(l)&&(l=l(this.$element)),t.syncCssClasses(r,this.$element,o),r.css(l),r.addClass(s),r},i}),t.define("pumselect2/compat/dropdownCss",["jquery","./utils"],function(e,t){function n(e){return null}function i(){}return i.prototype.render=function(i){var r=i.call(this),s=this.options.get("dropdownCssClass")||"";e.isFunction(s)&&(s=s(this.$element));var o=this.options.get("adaptDropdownCssClass");if(o=o||n,s.indexOf(":all:")!==-1){s=s.replace(":all:","");var a=o;o=function(e){var t=a(e);return null!=t?t+" "+e:e}}var l=this.options.get("dropdownCss")||{};return e.isFunction(l)&&(l=l(this.$element)),t.syncCssClasses(r,this.$element,o),r.css(l),r.addClass(s),r},i}),t.define("pumselect2/compat/initSelection",["jquery"],function(e){function t(e,t,n){n.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `initSelection` option has been deprecated in favor of a custom data adapter that overrides the `current` method. This method is now called multiple times instead of a single time when the instance is initialized. Support will be removed for the `initSelection` option in future versions of Select2"),this.initSelection=n.get("initSelection"),this._isInitialized=!1,e.call(this,t,n)}return t.prototype.current=function(t,n){var i=this;return this._isInitialized?void t.call(this,n):void this.initSelection.call(null,this.$element,function(t){i._isInitialized=!0,e.isArray(t)||(t=[t]),n(t)})},t}),t.define("pumselect2/compat/inputData",["jquery"],function(e){function t(e,t,n){this._currentData=[],this._valueSeparator=n.get("valueSeparator")||",","hidden"===t.prop("type")&&n.get("debug")&&console&&console.warn&&console.warn("Select2: Using a hidden input with Select2 is no longer supported and may stop working in the future. It is recommended to use a `<select>` element instead."),e.call(this,t,n)}return t.prototype.current=function(t,n){function i(t,n){var r=[];return t.selected||e.inArray(t.id,n)!==-1?(t.selected=!0,r.push(t)):t.selected=!1,t.children&&r.push.apply(r,i(t.children,n)),r}for(var r=[],s=0;s<this._currentData.length;s++){var o=this._currentData[s];r.push.apply(r,i(o,this.$element.val().split(this._valueSeparator)))}n(r)},t.prototype.select=function(t,n){if(this.options.get("multiple")){var i=this.$element.val();i+=this._valueSeparator+n.id,this.$element.val(i),this.$element.trigger("change")}else this.current(function(t){e.map(t,function(e){e.selected=!1})}),this.$element.val(n.id),this.$element.trigger("change")},t.prototype.unselect=function(e,t){var n=this;t.selected=!1,this.current(function(e){for(var i=[],r=0;r<e.length;r++){var s=e[r];t.id!=s.id&&i.push(s.id)}n.$element.val(i.join(n._valueSeparator)),n.$element.trigger("change")})},t.prototype.query=function(e,t,n){for(var i=[],r=0;r<this._currentData.length;r++){var s=this._currentData[r],o=this.matches(t,s);null!==o&&i.push(o)}n({results:i})},t.prototype.addOptions=function(t,n){var i=e.map(n,function(t){return e.data(t[0],"data")});this._currentData.push.apply(this._currentData,i)},t}),t.define("pumselect2/compat/matcher",["jquery"],function(e){function t(t){function n(n,i){var r=e.extend(!0,{},i);if(null==n.term||""===e.trim(n.term))return r;if(i.children){for(var s=i.children.length-1;s>=0;s--){var o=i.children[s],a=t(n.term,o.text,o);a||r.children.splice(s,1)}if(r.children.length>0)return r}return t(n.term,i.text,i)?r:null}return n}return t}),t.define("pumselect2/compat/query",[],function(){function e(e,t,n){n.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `query` option has been deprecated in favor of a custom data adapter that overrides the `query` method. Support will be removed for the `query` option in future versions of Select2."),e.call(this,t,n)}return e.prototype.query=function(e,t,n){t.callback=n;var i=this.options.get("query");i.call(null,t)},e}),t.define("pumselect2/dropdown/attachContainer",[],function(){function e(e,t,n){e.call(this,t,n)}return e.prototype.position=function(e,t,n){var i=n.find(".dropdown-wrapper");i.append(t),t.addClass("pumselect2-dropdown--below"),n.addClass("pumselect2-container--below")},e}),t.define("pumselect2/dropdown/stopPropagation",[],function(){function e(){}return e.prototype.bind=function(e,t,n){e.call(this,t,n);var i=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$dropdown.on(i.join(" "),function(e){e.stopPropagation()})},e}),t.define("pumselect2/selection/stopPropagation",[],function(){function e(){}return e.prototype.bind=function(e,t,n){e.call(this,t,n);var i=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$selection.on(i.join(" "),function(e){e.stopPropagation()})},e}),function(n){"function"==typeof t.define&&t.define.amd?t.define("jquery-mousewheel",["jquery"],n):"object"==typeof exports?module.exports=n:n(e)}(function(e){function t(t){var o=t||window.event,a=l.call(arguments,1),u=0,d=0,p=0,h=0,f=0,m=0;if(t=e.event.fix(o),t.type="mousewheel","detail"in o&&(p=o.detail*-1),"wheelDelta"in o&&(p=o.wheelDelta),"wheelDeltaY"in o&&(p=o.wheelDeltaY),"wheelDeltaX"in o&&(d=o.wheelDeltaX*-1),"axis"in o&&o.axis===o.HORIZONTAL_AXIS&&(d=p*-1,p=0),u=0===p?d:p,"deltaY"in o&&(p=o.deltaY*-1,u=p),"deltaX"in o&&(d=o.deltaX,0===p&&(u=d*-1)),0!==p||0!==d){if(1===o.deltaMode){var g=e.data(this,"mousewheel-line-height");u*=g,p*=g,d*=g}else if(2===o.deltaMode){var v=e.data(this,"mousewheel-page-height");u*=v,p*=v,d*=v}if(h=Math.max(Math.abs(p),Math.abs(d)),(!s||h<s)&&(s=h,i(o,h)&&(s/=40)),i(o,h)&&(u/=40,d/=40,p/=40),u=Math[u>=1?"floor":"ceil"](u/s),d=Math[d>=1?"floor":"ceil"](d/s),p=Math[p>=1?"floor":"ceil"](p/s),c.settings.normalizeOffset&&this.getBoundingClientRect){var y=this.getBoundingClientRect();f=t.clientX-y.left,m=t.clientY-y.top}return t.deltaX=d,t.deltaY=p,t.deltaFactor=s,t.offsetX=f,t.offsetY=m,t.deltaMode=0,a.unshift(t,u,d,p),r&&clearTimeout(r),r=setTimeout(n,200),(e.event.dispatch||e.event.handle).apply(this,a)}}function n(){s=null}function i(e,t){return c.settings.adjustOldDeltas&&"mousewheel"===e.type&&t%120===0}var r,s,o=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],a="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],l=Array.prototype.slice;if(e.event.fixHooks)for(var u=o.length;u;)e.event.fixHooks[o[--u]]=e.event.mouseHooks;var c=e.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var n=a.length;n;)this.addEventListener(a[--n],t,!1);else this.onmousewheel=t;e.data(this,"mousewheel-line-height",c.getLineHeight(this)),e.data(this,"mousewheel-page-height",c.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var n=a.length;n;)this.removeEventListener(a[--n],t,!1);else this.onmousewheel=null;e.removeData(this,"mousewheel-line-height"),e.removeData(this,"mousewheel-page-height")},getLineHeight:function(t){var n=e(t),i=n["offsetParent"in e.fn?"offsetParent":"parent"]();return i.length||(i=e("body")),parseInt(i.css("fontSize"),10)||parseInt(n.css("fontSize"),10)||16},getPageHeight:function(t){return e(t).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}),t.define("jquery.pumselect2",["jquery","jquery-mousewheel","./pumselect2/core","./pumselect2/defaults"],function(e,t,n,i){if(null==e.fn.pumselect2){var r=["open","close","destroy"];e.fn.pumselect2=function(t){if(t=t||{},"object"==typeof t)return this.each(function(){var i=e.extend(!0,{},t);new n(e(this),i)}),this;if("string"==typeof t){var i;return this.each(function(){var n=e(this).data("pumselect2");null==n&&window.console&&console.error&&console.error("The pumselect2('"+t+"') method was called on an element that is not using Select2.");var r=Array.prototype.slice.call(arguments,1);i=n[t].apply(n,r)}),e.inArray(t,r)>-1?this:i}throw new Error("Invalid arguments for Select2: "+t)}}return null==e.fn.pumselect2.defaults&&(e.fn.pumselect2.defaults=i),n}),{define:t.define,require:t.require}}(),n=t.require("jquery.pumselect2");return e.fn.pumselect2.amd=t,n}),function(e){"use strict";var t={init:function(){e(".pum-color-picker").filter(":not(.pum-color-picker-initialized)").addClass("pum-color-picker-initialized").wpColorPicker({change:function(t,n){e(t.target).trigger("colorchange",n)},clear:function(t){e(t.target).prev().trigger("colorchange").wpColorPicker("close")}})}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.colorpicker=t,e(document).on("click",".iris-palette",function(){e(this).parents(".wp-picker-active").find("input.pum-color-picker").trigger("change"),setTimeout(PopMakeAdmin.update_theme,500)}).on("colorchange",function(t,n){var i=e(t.target),r=i.parents("tr").next("tr.background-opacity"),s="";void 0!==n&&void 0!==n.color&&(s=n.color.toString()),i.hasClass("background-color")&&("string"==typeof s&&s.length?r.show():r.hide()),i.val(s),"popup_theme"===e("form#post input#post_type").val()&&PopMakeAdmin.update_theme()}).on("pum_init",t.init)}(jQuery),function(e){"use strict";var t={init:function(){t.checkDependencies()},checkDependencies:function(t){var n=e(t);t=n.length?n:e("[data-pum-dependencies]:not([data-pum-processed-dependencies])"),t.each(function(){var t,n=e(this),i=n.data("id"),r=n.data("pum-processed-dependencies")||{},s=Object.keys(r).length,o=0,a=n.data("pum-dependent-fields");if(!n.data("pum-processed-dependencies")){r=n.data("pum-dependencies"),"string"==typeof r&&(r=JSON.parse(r));for(t in r)r.hasOwnProperty(t)&&("string"==typeof r[t]?r[t].indexOf(",")!==-1?r[t]=r[t].split(","):r[t]=[r[t]]:"number"==typeof r[t]&&(r[t]=[r[t]]));s=Object.keys(r).length,n.data("pum-processed-dependencies",r).attr("data-pum-processed-dependencies",r)}a||(a=e.map(r,function(t,n){var i=e('.pum-field[data-id="'+n+'"]');return i.length?i.eq(0):null}),n.data("pum-dependent-fields",a)),e(a).each(function(){var t,a=e(this),l=a.find(":input:first"),u=a.data("id"),c=l.val(),d=r[u],p=a.data("pum-field-dependents")||[];if(p.indexOf(i)===-1&&(p.push(i),a.data("pum-field-dependents",p)),"undefined"==typeof d||null===d)return n.removeClass("pum-dependencies-met").hide(0).trigger("pumFormDependencyUnmet"),!1;if(a.hasClass("pum-field-radio")&&(c=a.find(":input:checked").val()),a.hasClass("pum-field-multicheck")&&(c=[],a.find(":checkbox:checked").each(function(t){c[t]=e(this).val(),"string"!=typeof c[t]||isNaN(parseInt(c[t]))||(c[t]=parseInt(c[t]))})),a.hasClass("pum-field-select")||a.hasClass("pum-field-radio"))t=d&&d.indexOf(c)!==-1;else if(a.hasClass("pum-field-checkbox"))t=d===l.is(":checked");else if(a.hasClass("pum-field-multicheck"))if(Array.isArray(d)){t=!1;for(var h=0;h<d.length;h++)c.indexOf(d[h])!==-1&&(t=!0)}else t=c.indexOf(d)!==-1;else t=Array.isArray(d)?d.indexOf(c)!==-1:d==c;return t?(o++,void(o===s&&n.addClass("pum-dependencies-met").show(0).trigger("pumFormDependencyMet"))):(n.removeClass("pum-dependencies-met").hide(0).trigger("pumFormDependencyUnmet"),!1)})})},form_check:function(){e(document).trigger("pum_form_check")},is_field:function(e){if("object"!=typeof e)return!1;var t=[void 0===e.type&&(void 0!==e.label||void 0!==e.desc),void 0!==e.type&&"string"==typeof e.type];return t.indexOf(!0)>=0},flattenFields:function(e){var n={},i=e.tabs||{},r=e.sections||{},s=e.fields||{};return Object.keys(i).length&&Object.keys(r).length?_.each(s,function(e,i){"object"==typeof e&&Object.keys(e).length&&_.each(e,function(e,i){if("object"==typeof e&&Object.keys(e).length){if(t.is_field(e)){var r={};r[i]=e,i="main",e=r}_.each(e,function(e){n[e.id]=e})}})}):Object.keys(i).length?_.each(s,function(e,t){"object"==typeof e&&Object.keys(e).length&&_.each(e,function(e){n[e.id]=e})}):Object.keys(r).length?_.each(s,function(e,t){_.each(e,function(e){n[e.id]=e})}):(s=t.parseFields(s,values),_.each(s,function(e){n[e.id]=e})),n},parseFields:function(e,t){return t=t||{},_.each(e,function(n,i){e[i]=PUM_Admin.models.field(n),"object"!=typeof e[i].meta&&(e[i].meta={}),void 0!==t[i]&&(e[i].value=t[i]),""===e[i].id&&(e[i].id=i)}),e},renderTab:function(){},renderSection:function(){},render:function(n,i,r){var s,o=[],a={},l=e.extend(!0,{id:"",tabs:{},sections:{},fields:{},maintabs:{},subtabs:{}},n),u=e.extend({id:l.id,classes:[],tabs:{},vertical:!0,form:!0,meta:{"data-min-height":250}},l.maintabs),c=e.extend({classes:["link-tabs","sub-tabs"],tabs:{}},l.subtabs),d=["pum-dynamic-form"];return i=i||{},Object.keys(l.tabs).length&&Object.keys(l.sections).length?(d.push("tabbed-content"),_.each(l.fields,function(n,r){"object"==typeof n&&Object.keys(n).length&&(void 0===u.tabs[r]&&(u.tabs[r]={label:l.tabs[r],content:""}),c=e.extend(c,{id:l.id+"-"+r+"-subtabs",tabs:{}}),_.each(n,function(e,n){if("object"==typeof e&&Object.keys(e).length){if(t.is_field(e)){var s={};s[n]=e,n="main",e=s}void 0===c.tabs[n]&&(c.tabs[n]={label:l.sections[r][n],content:""}),e=t.parseFields(e,i),_.each(e,function(e){a[e.id]=e,c.tabs[n].content+=PUM_Admin.templates.field(e)}),""===c.tabs[n].content&&delete c.tabs[n]}}),Object.keys(c.tabs).length?u.tabs[r].content=PUM_Admin.templates.tabs(c):delete u.tabs[r])}),Object.keys(u.tabs).length&&(s=PUM_Admin.templates.tabs(u))):Object.keys(l.tabs).length?(d.push("tabbed-content"),_.each(l.fields,function(e,n){"object"==typeof e&&Object.keys(e).length&&(void 0===u.tabs[n]&&(u.tabs[n]={label:l.tabs[n],content:""}),o=[],e=t.parseFields(e,i),_.each(e,function(e){a[e.id]=e,o.push(PUM_Admin.templates.field(e))}),o.length?u.tabs[n].content=PUM_Admin.templates.section({fields:o}):delete u.tabs[n])}),Object.keys(u.tabs).length&&(s=PUM_Admin.templates.tabs(u))):Object.keys(l.sections).length?_.each(l.fields,function(e,n){o=[],o.push(PUM_Admin.templates.field({type:"heading",desc:l.sections[n]||""})),e=t.parseFields(e,i),_.each(e,function(e){a[e.id]=e,o.push(PUM_Admin.templates.field(e))}),s+=PUM_Admin.templates.section({fields:o})}):(l.fields=t.parseFields(l.fields,i),_.each(l.fields,function(e){a[e.id]=e,o.push(PUM_Admin.templates.field(e))}),s=PUM_Admin.templates.section({fields:o})),void 0!==r&&r.length&&r.addClass(d.join(" ")).data("form_fields",a).html(s).trigger("pum_init"),s},parseValues:function(e,t){if(t=t||!1,!t)return e;for(var n in t)t.hasOwnProperty(n)&&(e.hasOwnProperty(n+"_unit")&&(e[n]+=e[n+"_unit"],delete e[n+"_unit"]),"undefined"!=typeof e[n]?t[n].allow_html&&!PUM_Admin.utils.htmlencoder.hasEncoded(e[n])&&(e[n]=PUM_Admin.utils.htmlencoder.htmlEncode(e[n])):"checkbox"===t[n].type&&(e[n]=!1));return e}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.forms=t,e(document).on("pum_init pum_form_check",function(){PUM_Admin.forms.init()}).on("pumFieldChanged",".pum-field",function(){var t,n=e(this),i=n.data("pum-field-dependents")||[],r=e();if(i&&!(i.length<=0)){for(t=0;t<i.length;t++)r=r.add('.pum-field[data-id="'+i[t]+'"]');PUM_Admin.forms.checkDependencies(r)}}).on("pumFieldChanged",".pum-field-dynamic-desc",function(){var t=e(this),n=t.find(":input"),i=t.parents(".pum-dynamic-form:first"),r=n.val(),s=i.data("form_fields")||{},o=s[t.data("id")]||{},a=t.find(".pum-desc"),l=t.data("pum-dynamic-desc");switch(o.type){case"radio":r=t.find(":input:checked").val()}o.value=r,l&&l.length&&a.html(PUM_Admin.templates.renderInline(l,o))}).on("change",".pum-field-select select",function(){e(this).parents(".pum-field").trigger("pumFieldChanged")}).on("click",".pum-field-checkbox input",function(){e(this).parents(".pum-field").trigger("pumFieldChanged")}).on("click",".pum-field-multicheck input",function(){e(this).parents(".pum-field").trigger("pumFieldChanged")}).on("click",".pum-field-radio input",function(t){var n=e(this),i=n.parents("li"),r=n.parents(".pum-field");r.trigger("pumFieldChanged"),r.find("li.pum-selected").removeClass("pum-selected"),i.addClass("pum-selected")})}(jQuery),function(e){var t;e(document).on("click",".pum-field-link button",function(n){var i=e(this).next().select(),r=i.attr("id");return t=i,wpLink.open(r,i.val(),""),JPCC.selectors("#wp-link-wrap").removeClass("has-text-field"),JPCC.selectors("#wp-link-target").hide(),JPCC.selectors("#pum-restriction-editor",!0).hide(),!1}).on("click","#wp-link-submit, #wp-link-cancel button, #wp-link-close",function(e){var n=wpLink.getAttrs();if(void 0!==t&&t)return"wp-link-submit"===e.target.id&&t.val(n.href),wpLink.textarea=t,wpLink.close(),t=!1,JPCC.selectors("#pum-restriction-editor").show(),e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation(),!1})}(jQuery),function(e){"use strict";var t,n,i=e("html"),r=e(document),s="a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, *[tabindex], *[contenteditable]",o={_current:null,forceFocus:function(e){PUM_Admin.modals._current&&!PUM_Admin.modals._current.contains(e.target)&&(e.stopPropagation(),PUM_Admin.modals._current.focus())},trapEscapeKey:function(e){27===e.keyCode&&(PUM_Admin.modals.closeAll(),e.preventDefault())},trapTabKey:function(t){if(9===t.keyCode){var n=PUM_Admin.modals._current.find("*").filter(s).filter(":visible"),i=e(":focus"),r=n.length,o=n.index(i);t.shiftKey?0===o&&(n.get(r-1).focus(),t.preventDefault()):o===r-1&&(n.get(0).focus(),t.preventDefault())}},setFocusToFirstItem:function(){PUM_Admin.modals._current.find(".pum-modal-content *").filter(s).filter(":visible").first().focus()},closeAll:function(i){e(".pum-modal-background").off("keydown.pum_modal").hide(0,function(){e("html").css({overflow:"visible",width:"auto"}),t&&(t.attr("aria-hidden","false"),t=null),n.length&&n.focus(),PUM_Admin.modals._current=null,r.off("focus.pum_modal"),void 0!==i&&i()}).attr("aria-hidden","true")},show:function(r,s){e(".pum-modal-background").off("keydown.pum_modal").hide(0).attr("aria-hidden","true"),i.data("origwidth",i.innerWidth()).css({overflow:"hidden",width:i.innerWidth()});var o=e(":focus");o.parents(".pum-modal-wrap").length||(n=o),PUM_Admin.modals._current=e(r),PUM_Admin.modals._current.on("keydown.pum_modal",function(e){PUM_Admin.modals.trapEscapeKey(e),PUM_Admin.modals.trapTabKey(e)}).show(0,function(){t=e("body > *").filter(":visible").not(PUM_Admin.modals._current),t.attr("aria-hidden","true"),PUM_Admin.modals._current.trigger("pum_init").on("focus.pum_modal",PUM_Admin.modals.forceFocus),PUM_Admin.modals.setFocusToFirstItem(),void 0!==s&&s()}).attr("aria-hidden","false")},remove:function(t){e(t).remove()},replace:function(t,n){PUM_Admin.modals.remove(e.trim(t)),e("body").append(e.trim(n))},reload:function(t,n,i){PUM_Admin.modals.replace(t,n),PUM_Admin.modals.show(t,i),e(t).trigger("pum_init")}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.modals=o,e(document).on("click",".pum-modal-background, .pum-modal-wrap .cancel, .pum-modal-wrap .pum-modal-close",function(t){var n=e(t.target);(n.hasClass("cancel")||n.hasClass("pum-modal-close")||n.hasClass("submitdelete"))&&(PUM_Admin.modals.closeAll(),t.preventDefault(),t.stopPropagation())})}(jQuery),function(e){"use strict";var t={field:function(t){return e.extend(!0,{},{type:"text",id:"",id_prefix:"",name:"",label:null,placeholder:"",desc:null,dynamic_desc:null,size:"regular",classes:[],dependencies:"",value:null,select2:!1,allow_html:!1,multiple:!1,as_array:!1,options:[],object_type:null,object_key:null,std:null,min:0,max:50,step:1,unit:"px",units:{},required:!1,desc_position:"bottom",meta:{}},t)}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.models=t}(jQuery),function(e){"use strict";var t={cloneables:{slider:e('<input type="range" class="pum-range-slider" />'),plus:e('<button type="button" class="pum-range-plus">+</button>'),minus:e('<button type="button" class="pum-range-minus">-</button>')},init:function(){e(".pum-field-rangeslider:not(.pum-rangeslider-initialized)").each(function(){var n=e(this).addClass("pum-rangeslider-initialized"),i=n.find("input.pum-range-manual"),r=t.cloneables.slider.clone(),s=t.cloneables.plus.clone(),o=t.cloneables.minus.clone(),a={force:i.data("force-minmax"),min:parseInt(i.attr("min"),10)||0,max:parseInt(i.attr("max"),10)||100,step:parseInt(i.attr("step"),10)||1,value:parseInt(i.attr("value"),10)||0};a.force&&a.value>a.max&&(a.value=a.max,i.val(a.value)),r.prop({min:a.min||0,max:a.force||a.max&&a.max>a.value?a.max:1.5*a.value,step:a.step||1.5*a.value/100,value:a.value}).on("change input",function(){i.trigger("input")}),i.next().after(o,s),i.before(r)})}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.rangesliders=t,e(document).on("pum_init",PUM_Admin.rangesliders.init).on("input",".pum-field-rangeslider.pum-rangeslider-initialized .pum-range-slider",function(){var t=e(this);t.siblings(".pum-range-manual").val(t.val())}).on("change",".pum-range-manual",function(){var t=e(this),n=parseInt(t.prop("max"),0),i=parseInt(t.prop("min"),0),r=parseInt(t.prop("step"),0),s=t.data("force-minmax"),o=parseInt(t.val(),0),a=t.prev();isNaN(o)&&(o=a.val()),s&&o>n?o=n:s&&o<i&&(o=i),t.val(o).trigger("input"),a.prop({max:s||n&&n>o?n:1.5*o,step:r||1.5*o/100,value:o})}).on("click",".pum-range-plus",function(t){var n=e(this).siblings(".pum-range-manual"),i=parseInt(n.prop("max"),0),r=parseInt(n.prop("step"),0),s=n.data("force-minmax"),o=parseInt(n.val(),0),a=n.prev();t.preventDefault(),o+=r,isNaN(o)&&(o=a.val()),s&&o>i&&(o=i),n.val(o).trigger("input"),a.val(o)}).on("click",".pum-range-minus",function(t){var n=e(this).siblings(".pum-range-manual"),i=parseInt(n.prop("min"),0),r=parseInt(n.prop("step"),0),s=n.data("force-minmax"),o=parseInt(n.val(),0),a=n.prev();t.preventDefault(),o-=r,isNaN(o)&&(o=a.val()),s&&o<i&&(o=i),n.val(o).trigger("input"),a.val(o)})}(jQuery),function(e){"use strict";e.fn.pumselect2=e.fn.pumselect2||e.fn.select2;var t={init:function(){e(".pum-field-select2 select").filter(":not(.pumselect2-initialized)").each(function(){var t=e(this),n=t.data("current")||t.val(),i=t.data("objecttype"),r=t.data("objectkey"),s=t.data("objectexcludes")||null,o={width:"100%",multiple:!1,dropdownParent:t.parent()};t.attr("multiple")&&(o.multiple=!0),i&&r&&(o=e.extend(o,{ajax:{url:ajaxurl,dataType:"json",delay:250,data:function(e){return{s:e.term,paged:e.page,action:"pum_object_search",object_type:i,object_key:r,exclude:s}},processResults:function(e,t){return t.page=t.page||1,{results:e.items,pagination:{more:10*t.page<e.total_count}}},cache:!0},cache:!0,escapeMarkup:function(e){return e},maximumInputLength:20,closeOnSelect:!o.multiple,templateResult:PUM_Admin.select2.formatObject,templateSelection:PUM_Admin.select2.formatObjectSelection})),t.addClass("pumselect2-initialized").pumselect2(o),null!==n&&void 0!==n?o.multiple&&"object"!=typeof n&&""!==n?n=[n]:o.multiple||""!==n||(n=null):n=null,i&&r&&null!==n&&("number"==typeof n||n.length)?e.ajax({url:ajaxurl,data:{action:"pum_object_search",object_type:i,object_key:r,exclude:s,include:n&&n.length?"string"==typeof n||"number"==typeof n?[n]:n:null},dataType:"json",success:function(i){e.each(i.items,function(e,n){t.find('option[value="'+n.id+'"]').length||t.prepend('<option value="'+n.id+'">'+n.text+"</option>")}),t.val(n).trigger("change")}}):n&&(o.multiple&&n.length||!o.multiple&&""!==n)?t.val(n).trigger("change"):null===n&&t.val(n).trigger("change")})},formatObject:function(e){return e.text},formatObjectSelection:function(e){return e.text||e.text}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.select2=t,e(document).on("pum_init",function(){PUM_Admin.select2.init()})}(jQuery),function(e,t){if("function"!=typeof window.$$){var n,i,r={},s={};window.$$=function(o,a){return a?((n=a.selector)&&(a=n),i=s[a],i===t&&(i=s[a]={}),n=i[o],n!==t?n:i[o]=e(o,$$(a))):(n=r[o],n!==t?n:r[o]=e(o))},window.$$clear=function(e,i){i?((n=i.selector)&&(i=n),e&&(n=s[i])&&(n[e]=t),s[i]=t):e?(r[e]=t,s[e]=t):(r={},s={})},window.$$fresh=function(e,t){return $$clear(e,t),$$(e,t)}}}(jQuery),function(e,t){if("function"==typeof define&&define.amd)define(["exports","jquery"],function(e,n){return t(e,n)});else if("undefined"!=typeof exports){var n=require("jquery");t(exports,n)}else t(e,e.jQuery||e.Zepto||e.ender||e.$)}(this,function(e,t){function n(e,n){function r(e,t,n){return e[t]=n,e}function s(e,t){var n,s=e.match(i.key);try{t=JSON.parse(t)}catch(a){}for(;void 0!==(n=s.pop());)if(i.push.test(n)){var l=o(e.replace(/\[\]$/,""));t=r([],l,t)}else i.fixed.test(n)?t=r([],n,t):i.named.test(n)&&(t=r({},n,t));return t}function o(e){return void 0===h[e]&&(h[e]=0),h[e]++}function a(e){switch(t('[name="'+e.name+'"]',n).attr("type")){case"checkbox":return"1"===e.value||e.value;default:return e.value}}function l(t){if(!i.validate.test(t.name))return this;var n=s(t.name,a(t));return p=e.extend(!0,p,n),this}function u(t){if(!e.isArray(t))throw new Error("formSerializer.addPairs expects an Array");for(var n=0,i=t.length;n<i;n++)this.addPair(t[n]);return this}function c(){return p}function d(){return JSON.stringify(c())}var p={},h={};this.addPair=l,this.addPairs=u,this.serialize=c,this.serializeJSON=d}var i={validate:/^[a-z_][a-z0-9_]*(?:\[(?:\d*|[a-z0-9_]+)\])*$/i,key:/[a-z0-9_]+|(?=\[\])/gi,push:/^$/,fixed:/^\d+$/,named:/^[a-z0-9_]+$/i};return n.patterns=i,n.serializeObject=function(){var e;return e=this.is("form")?this.serializeArray():this.find(":input").serializeArray(),new n(t,this).addPairs(e).serialize()},n.serializeJSON=function(){var e;return e=this.is("form")?this.serializeArray():this.find(":input").serializeArray(),new n(t,this).addPairs(e).serializeJSON()},"undefined"!=typeof t.fn&&(t.fn.pumSerializeObject=n.serializeObject,t.fn.pumSerializeJSON=n.serializeJSON),e.FormSerializer=n,n}),function(e){"use strict";var t={init:function(){e(".pum-tabs-container").filter(":not(.pum-tabs-initialized)").each(function(){var t=e(this).addClass("pum-tabs-initialized"),n=t.find("> ul.tabs"),i=n.find("> li:first"),r=t.data("min-height");if(t.hasClass("vertical-tabs")){var s=r&&r>0?r:n.eq(0).outerHeight(!0);t.css({minHeight:s+"px"}),t.parent().innerHeight<s&&t.parent().css({minHeight:s+"px"})}i.trigger("click")})}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.tabs=t,e(document).on("pum_init",PUM_Admin.tabs.init).on("click",".pum-tabs-initialized li.tab",function(t){var n=e(this),i=n.parents(".pum-tabs-container:first"),r=i.find("> ul.tabs > li.tab"),s=i.find("> div.tab-content"),o=n.find("a").attr("href");r.removeClass("active"),s.removeClass("active"),n.addClass("active"),i.find("> div.tab-content"+o).addClass("active"),t.preventDefault()})}(jQuery),function(e){"use strict";var t=pum_admin_vars.I10n,n={render:function(e,t){var n=wp.template(e);return t=t||{},void 0!==t.classes&&Array.isArray(t.classes)&&(t.classes=t.classes.join(" ")),t=PUM_Admin.templates.prepareMeta(t),n(t)},renderInline:function(e,t){var n={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"},i=_.template(e,null,n);return i(t)},shortcode:function(t){var n=e.extend(!0,{},{tag:"",meta:{},has_content:!1,content:""},t),i=n.has_content?"pum-shortcode-w-content":"pum-shortcode";return PUM_Admin.templates.render(i,n)},modal:function(n){var i=e.extend(!0,{},{id:"",title:"",description:"",classes:"",save_button:t.save,cancel_button:t.cancel,content:""},n);return PUM_Admin.templates.render("pum-modal",i)},tabs:function(t){return t=e.extend(!0,{},{id:"",vertical:!1,form:!1,classes:[],tabs:{},meta:{}},t),"string"==typeof t.classes&&(t.classes=[t.classes]),t.form&&t.classes.push("pum-tabbed-form"),t.meta["data-tab-count"]=Object.keys(t.tabs).length,t.classes.push(t.vertical?"vertical-tabs":"horizontal-tabs"),t.classes=t.classes.join(" "),PUM_Admin.templates.render("pum-tabs",t)},section:function(t){var n=e.extend(!0,{},{classes:[],fields:[]},t);return PUM_Admin.templates.render("pum-field-section",n)},fieldArgs:function(t){var n=[],i=e.extend(!0,{},PUM_Admin.models.field(t));switch(void 0===t.std||"checkbox"===t.type||null!==i.value&&i.value!==!1||(i.value=t.std),"string"==typeof i.classes&&(i.classes=i.classes.split(" ")),void 0!==t["class"]&&i.classes.push(t["class"]),void 0!==t.dependencies&&"object"==typeof t.dependencies&&(i.dependencies=JSON.stringify(t.dependencies)),i.required&&(i.meta.required=!0,i.classes.push("pum-required")),"string"==typeof i.dynamic_desc&&i.dynamic_desc.length&&(i.classes.push("pum-field-dynamic-desc"),i.desc=PUM_Admin.templates.renderInline(i.dynamic_desc,i)),i.allow_html&&(i.classes.push("pum-field-"+i.type+"--html"),"string"==typeof i.value&&""!==i.value&&PUM_Admin.utils.htmlencoder.hasEncoded(i.value)&&(i.value=PUM_Admin.utils.htmlencoder.htmlDecode(i.value))),t.type){case"select":case"objectselect":case"postselect":case"taxonomyselect":void 0!==i.options&&(_.each(i.options,function(e,t){var r,s,o=!1;"object"!=typeof e?(null!==i.value&&(i.multiple&&("string"==typeof i.value&&i.value==t||Array.isArray(i.value)&&i.value.indexOf(t)!==-1||!Array.isArray(i.value)&&"object"==typeof i.value&&Object.keys(i.value).length&&void 0!==i.value[t])?o="selected":i.multiple||i.value!=t||(o="selected")),n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{selected:o}}))):(r=t,s=[],_.each(e,function(e,t){var n=!1;null!==i.value&&(i.multiple&&("string"==typeof i.value&&i.value==t||Array.isArray(i.value)&&i.value.indexOf(t)!==-1||!Array.isArray(i.value)&&"object"==typeof i.value&&Object.keys(i.value).length&&void 0!==i.value[t])?n="selected":i.multiple||i.value!=t||(n="selected")),s.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{selected:n}}))}),n.push({label:r,options:s}))}),i.options=n),i.multiple&&(i.meta.multiple=!0,i.as_array&&(i.name+="[]"),i.value&&i.value.length||(i.value=[]),"string"==typeof i.value&&(i.value=[i.value])),"select"!==t.type&&(i.select2=!0,i.classes.push("pum-field-objectselect"),i.classes.push("postselect"===t.type?"pum-field-postselect":"pum-field-taxonomyselect"),i.meta["data-objecttype"]="postselect"===t.type?"post_type":"taxonomy",i.meta["data-objectkey"]="postselect"===t.type?t.post_type:t.taxonomy,i.meta["data-current"]="object"==typeof i.value||Array.isArray(i.value)?JSON.stringify(i.value):i.value),i.select2&&(i.classes.push("pum-field-select2"),i.placeholder&&(i.meta["data-placeholder"]=i.placeholder));break;case"radio":void 0!==i.options&&(_.each(i.options,function(e,t){n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{checked:i.value===t}}))}),i.options=n);break;case"multicheck":void 0!==i.options&&(i.value!==!1&&null!==i.value||(i.value=[]),"string"==typeof i.value&&i.value.indexOf(",")&&(i.value=i.value.split(",")),i.as_array&&(i.name+="[]"),_.each(i.options,function(e,t){n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{checked:Array.isArray(i.value)&&i.value.indexOf(t)!==-1||!Array.isArray(i.value)&&"object"==typeof i.value&&Object.keys(i.value).length&&void 0!==i.value[t]}}))}),i.options=n);break;case"checkbox":switch(typeof i.value){case"object":Array.isArray(i.value)&&1===i.value.length&&"1"===i.value[0].toString()&&(i.value=!0,i.meta.checked=!0);break;case"boolean":i.value&&(i.meta.checked=!0);break;case"string":"true"!==i.value&&"yes"!==i.value&&"1"!==i.value||(i.meta.checked=!0);break;case"number":(1===parseInt(i.value,10)||parseInt(i.value,10)>0)&&(i.meta.checked=!0)}break;case"rangeslider":i.meta.step=i.step,i.meta.min=i.min,i.meta.max=i.max;
|
4 |
-
break;case"textarea":i.meta.cols=i.cols,i.meta.rows=i.rows;break;case"measure":"string"==typeof i.value&&""!==i.value?(i.number=parseInt(i.value),i.unitValue=i.value.replace(i.number,""),i.value=i.number):i.unitValue=null,void 0!==i.units&&(_.each(i.units,function(e,t){var r=!1;i.unitValue==t&&(r="selected"),n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{selected:r}}))}),i.units=n);break;case"license_key":i.value=e.extend({key:"",license:{},messages:[],status:"empty",expires:!1,classes:!1},i.value),i.classes.push("pum-license-"+i.value.status+"-notice"),i.value.classes&&i.classes.push(i.value.classes)}return i},field:function(t){var n,i=PUM_Admin.templates.fieldArgs(t);return n="pum-field-"+i.type,"objectselfect"!==i.type&&"postselect"!==i.type&&"taxonomyselect"!==i.type||(n="pum-field-select"),e("#tmpl-"+n).length?(i.field=PUM_Admin.templates.render(n,i),PUM_Admin.templates.render("pum-field-wrapper",i)):(console.warn("No field template found for type:"+i.type+" fieldID: "+i.id),"")},prepareMeta:function(e){var t,n=[];for(t in e.meta)e.meta.hasOwnProperty(t)&&("boolean"==typeof e.meta[t]?e.meta[t]&&n.push(_.escape(t)):n.push(_.escape(t)+'="'+_.escape(e.meta[t])+'"'));return e.meta=n.join(" "),e}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.templates=n}(window.jQuery),function(e){"use strict";function t(t,n){return e.inArray(n,t)!==-1}function n(e,t,i){var r=t[0];t.length>1?(e[r]||(e[r]=t[1]?{}:[]),n(e[r],t.slice(1),i)):(r||(r=e.length),e[r]=i)}String.prototype.capitalize=function(){return this.charAt(0).toUpperCase()+this.slice(1)};var i="color,date,datetime,datetime-local,email,hidden,month,number,password,range,search,tel,text,time,url,week".split(","),r="select,textarea".split(","),s=/\[([^\]]*)\]/g,o={EncodeType:"entity",isEmpty:function(e){return!e||(null===e||0==e.length||/^\s+$/.test(e))},arr1:[" ","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","­","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ý","þ","ÿ",""","&","<",">","Œ","œ","Š","š","Ÿ","ˆ","˜"," "," "," ","‌","‍","‎","‏","–","—","‘","’","‚","“","”","„","†","‡","‰","‹","›","€","ƒ","Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω","ϑ","ϒ","ϖ","•","…","′","″","‾","⁄","℘","ℑ","ℜ","™","ℵ","←","↑","→","↓","↔","↵","⇐","⇑","⇒","⇓","⇔","∀","∂","∃","∅","∇","∈","∉","∋","∏","∑","−","∗","√","∝","∞","∠","∧","∨","∩","∪","∫","∴","∼","≅","≈","≠","≡","≤","≥","⊂","⊃","⊄","⊆","⊇","⊕","⊗","⊥","⋅","⌈","⌉","⌊","⌋","⟨","⟩","◊","♠","♣","♥","♦"],arr2:[" ","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","­","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ý","þ","ÿ",""","&","<",">","Œ","œ","Š","š","Ÿ","ˆ","˜"," "," "," ","‌","‍","‎","‏","–","—","‘","’","‚","“","”","„","†","‡","‰","‹","›","€","ƒ","Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω","ϑ","ϒ","ϖ","•","…","′","″","‾","⁄","℘","ℑ","ℜ","™","ℵ","←","↑","→","↓","↔","↵","⇐","⇑","⇒","⇓","⇔","∀","∂","∃","∅","∇","∈","∉","∋","∏","∑","−","∗","√","∝","∞","∠","∧","∨","∩","∪","∫","∴","∼","≅","≈","≠","≡","≤","≥","⊂","⊃","⊄","⊆","⊇","⊕","⊗","⊥","⋅","⌈","⌉","⌊","⌋","〈","〉","◊","♠","♣","♥","♦"],HTML2Numerical:function(e){return this.swapArrayVals(e,this.arr1,this.arr2)},NumericalToHTML:function(e){return this.swapArrayVals(e,this.arr2,this.arr1)},numEncode:function(e){if(this.isEmpty(e))return"";for(var t=[],n=e.length,i=0;i<n;i++){var r=e.charAt(i);r<" "||r>"~"?(t.push("&#"),t.push(r.charCodeAt()),t.push(";")):t.push(r)}return t.join("")},htmlDecode:function(e){var t,n,i=e;if(this.isEmpty(i))return"";i=this.HTML2Numerical(i);var r=i.match(/&#[0-9]{1,5};/g);if(null!=r)for(var s=0;s<r.length;s++)n=r[s],t=n.substring(2,n.length-1),i=t>=-32768&&t<=65535?i.replace(n,String.fromCharCode(t)):i.replace(n,"");return i},htmlEncode:function(e,t){return this.isEmpty(e)?"":(t=t||!1,t&&(e="numerical"==this.EncodeType?e.replace(/&/g,"&"):e.replace(/&/g,"&")),e=this.XSSEncode(e,!1),"numerical"!=this.EncodeType&&t||(e=this.HTML2Numerical(e)),e=this.numEncode(e),t||(e=e.replace(/&#/g,"##AMPHASH##"),e="numerical"==this.EncodeType?e.replace(/&/g,"&"):e.replace(/&/g,"&"),e=e.replace(/##AMPHASH##/g,"&#")),e=e.replace(/&#\d*([^\d;]|$)/g,"$1"),t||(e=this.correctEncoding(e)),"entity"==this.EncodeType&&(e=this.NumericalToHTML(e)),e)},XSSEncode:function(e,t){return this.isEmpty(e)?"":(t=t||!0,t?(e=e.replace(/\'/g,"'"),e=e.replace(/\"/g,"""),e=e.replace(/</g,"<"),e=e.replace(/>/g,">")):(e=e.replace(/\'/g,"'"),e=e.replace(/\"/g,"""),e=e.replace(/</g,"<"),e=e.replace(/>/g,">")),e)},hasEncoded:function(e){return!!/&#[0-9]{1,5};/g.test(e)||!!/&[A-Z]{2,6};/gi.test(e)},stripUnicode:function(e){return e.replace(/[^\x20-\x7E]/g,"")},correctEncoding:function(e){return e.replace(/(&)(amp;)+/,"$1")},swapArrayVals:function(e,t,n){if(this.isEmpty(e))return"";var i;if(t&&n&&t.length==n.length)for(var r=0,s=t.length;r<s;r++)i=new RegExp(t[r],"g"),e=e.replace(i,n[r]);return e},inArray:function(e,t){for(var n=0,i=t.length;n<i;n++)if(t[n]===e)return n;return-1}};o.EncodeType="entity";var a={htmlencoder:o,convert_meta_to_object:function(e){var t,n,i,r={};for(i in e)e.hasOwnProperty(i)&&(t=i.split(/_(.+)?/)[0],n=i.split(/_(.+)?/)[1],void 0===r[t]&&(r[t]={}),r[t][n]=e[i]);return r},object_to_array:function(e){var t,n=[];if("object"==typeof e){for(t in e)n.push(e[t]);e=n}return e},checked:function(e,t,n){var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t?i=!0:e==t&&(i=!0),void 0!==n&&n?i?' checked="checked"':"":i},selected:function(e,t,n){var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t&&(i=!0),void 0!==n&&n?i?' selected="selected"':"":i},convert_hex:function(e,t){if(void 0===e)return"";void 0===t&&(t=100),e=e.replace("#","");var n=parseInt(e.substring(0,2),16),i=parseInt(e.substring(2,4),16),r=parseInt(e.substring(4,6),16),s="rgba("+n+","+i+","+r+","+t/100+")";return s},debounce:function(e,t){var n;return function(){var i=this,r=arguments;window.clearTimeout(n),n=window.setTimeout(function(){e.apply(i,r)},t)}},throttle:function(e,t){var n=!1,i=function(){n=!1};return function(){n||(e(),window.setTimeout(i,t),n=!0)}},serializeForm:function(o){e.extend({},o);var a={},l=e.extend(!0,{include:[],exclude:[],includeByClass:""},o);return this.find(":input").each(function(){var o;!this.name||this.disabled||t(l.exclude,this.name)||l.include.length&&!t(l.include,this.name)||this.className.indexOf(l.includeByClass)===-1||(o=this.name.replace(s,"[$1").split("["),o[0]&&(this.checked||t(i,this.type)||t(r,this.nodeName.toLowerCase()))&&("checkbox"===this.type&&o.push(""),n(a,o,e(this).val())))}),a}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.utils=a,window.PUMUtils=a,e.fn.pumSerializeForm=a.serializeForm}(jQuery);
|
1 |
function pumSelected(e,t,n){"use strict";var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t&&(i=!0),void 0!==n&&n?i?' selected="selected"':"":i}function pumChecked(e,t,n){"use strict";var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t&&(i=!0),void 0!==n&&n?i?' checked="checked"':"":i}!function(e){"function"==typeof define&&void 0!==define.amd&&define.amd?define(["jquery"],e):e("object"==typeof exports?require("jquery"):jQuery)}(function(e){var t=function(){if(e&&e.fn&&e.fn.pumselect2&&e.fn.pumselect2.amd)var t=e.fn.pumselect2.amd;var t;return function(){if(!t||!t.requirejs){t?n=t:t={};var e,n,i;!function(t){function r(e,t){return _.call(e,t)}function s(e,t){var n,i,r,s,o,a,l,u,c,d,p,h=t&&t.split("/"),f=y.map,m=f&&f["*"]||{};if(e&&"."===e.charAt(0))if(t){for(e=e.split("/"),o=e.length-1,y.nodeIdCompat&&A.test(e[o])&&(e[o]=e[o].replace(A,"")),e=h.slice(0,h.length-1).concat(e),c=0;c<e.length;c+=1)if(p=e[c],"."===p)e.splice(c,1),c-=1;else if(".."===p){if(1===c&&(".."===e[2]||".."===e[0]))break;c>0&&(e.splice(c-1,2),c-=2)}e=e.join("/")}else 0===e.indexOf("./")&&(e=e.substring(2));if((h||m)&&f){for(n=e.split("/"),c=n.length;c>0;c-=1){if(i=n.slice(0,c).join("/"),h)for(d=h.length;d>0;d-=1)if(r=f[h.slice(0,d).join("/")],r&&(r=r[i])){s=r,a=c;break}if(s)break;!l&&m&&m[i]&&(l=m[i],u=c)}!s&&l&&(s=l,a=u),s&&(n.splice(0,a,s),e=n.join("/"))}return e}function o(e,n){return function(){var i=w.call(arguments,0);return"string"!=typeof i[0]&&1===i.length&&i.push(null),h.apply(t,i.concat([e,n]))}}function a(e){return function(t){return s(t,e)}}function l(e){return function(t){g[e]=t}}function u(e){if(r(v,e)){var n=v[e];delete v[e],b[e]=!0,p.apply(t,n)}if(!r(g,e)&&!r(b,e))throw new Error("No "+e);return g[e]}function c(e){var t,n=e?e.indexOf("!"):-1;return n>-1&&(t=e.substring(0,n),e=e.substring(n+1,e.length)),[t,e]}function d(e){return function(){return y&&y.config&&y.config[e]||{}}}var p,h,f,m,g={},v={},y={},b={},_=Object.prototype.hasOwnProperty,w=[].slice,A=/\.js$/;f=function(e,t){var n,i=c(e),r=i[0];return e=i[1],r&&(r=s(r,t),n=u(r)),r?e=n&&n.normalize?n.normalize(e,a(t)):s(e,t):(e=s(e,t),i=c(e),r=i[0],e=i[1],r&&(n=u(r))),{f:r?r+"!"+e:e,n:e,pr:r,p:n}},m={require:function(e){return o(e)},exports:function(e){var t=g[e];return"undefined"!=typeof t?t:g[e]={}},module:function(e){return{id:e,uri:"",exports:g[e],config:d(e)}}},p=function(e,n,i,s){var a,c,d,p,h,y,_=[],w=typeof i;if(s=s||e,"undefined"===w||"function"===w){for(n=!n.length&&i.length?["require","exports","module"]:n,h=0;h<n.length;h+=1)if(p=f(n[h],s),c=p.f,"require"===c)_[h]=m.require(e);else if("exports"===c)_[h]=m.exports(e),y=!0;else if("module"===c)a=_[h]=m.module(e);else if(r(g,c)||r(v,c)||r(b,c))_[h]=u(c);else{if(!p.p)throw new Error(e+" missing "+c);p.p.load(p.n,o(s,!0),l(c),{}),_[h]=g[c]}d=i?i.apply(g[e],_):void 0,e&&(a&&a.exports!==t&&a.exports!==g[e]?g[e]=a.exports:d===t&&y||(g[e]=d))}else e&&(g[e]=i)},e=n=h=function(e,n,i,r,s){if("string"==typeof e)return m[e]?m[e](n):u(f(e,n).f);if(!e.splice){if(y=e,y.deps&&h(y.deps,y.callback),!n)return;n.splice?(e=n,n=i,i=null):e=t}return n=n||function(){},"function"==typeof i&&(i=r,r=s),r?p(t,e,n,i):setTimeout(function(){p(t,e,n,i)},4),h},h.config=function(e){return h(e)},e._defined=g,i=function(e,t,n){if("string"!=typeof e)throw new Error("See almond README: incorrect module build, no module name");t.splice||(n=t,t=[]),r(g,e)||r(v,e)||(v[e]=[e,t,n])},i.amd={jQuery:!0}}(),t.requirejs=e,t.require=n,t.define=i}}(),t.define("almond",function(){}),t.define("jquery",[],function(){var t=e||$;return null==t&&console&&console.error&&console.error("Select2: An instance of jQuery or a jQuery-compatible library was not found. Make sure that you are including jQuery before Select2 on your web page."),t}),t.define("pumselect2/utils",["jquery"],function(e){function t(e){var t=e.prototype,n=[];for(var i in t){var r=t[i];"function"==typeof r&&"constructor"!==i&&n.push(i)}return n}var n={};n.Extend=function(e,t){function n(){this.constructor=e}var i={}.hasOwnProperty;for(var r in t)i.call(t,r)&&(e[r]=t[r]);return n.prototype=t.prototype,e.prototype=new n,e.__super__=t.prototype,e},n.Decorate=function(e,n){function i(){var t=Array.prototype.unshift,i=n.prototype.constructor.length,r=e.prototype.constructor;i>0&&(t.call(arguments,e.prototype.constructor),r=n.prototype.constructor),r.apply(this,arguments)}function r(){this.constructor=i}var s=t(n),o=t(e);n.displayName=e.displayName,i.prototype=new r;for(var a=0;a<o.length;a++){var l=o[a];i.prototype[l]=e.prototype[l]}for(var u=(function(e){var t=function(){};e in i.prototype&&(t=i.prototype[e]);var r=n.prototype[e];return function(){var e=Array.prototype.unshift;return e.call(arguments,t),r.apply(this,arguments)}}),c=0;c<s.length;c++){var d=s[c];i.prototype[d]=u(d)}return i};var i=function(){this.listeners={}};return i.prototype.on=function(e,t){this.listeners=this.listeners||{},e in this.listeners?this.listeners[e].push(t):this.listeners[e]=[t]},i.prototype.trigger=function(e){var t=Array.prototype.slice;this.listeners=this.listeners||{},e in this.listeners&&this.invoke(this.listeners[e],t.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},i.prototype.invoke=function(e,t){for(var n=0,i=e.length;n<i;n++)e[n].apply(this,t)},n.Observable=i,n.generateChars=function(e){for(var t="",n=0;n<e;n++){var i=Math.floor(36*Math.random());t+=i.toString(36)}return t},n.bind=function(e,t){return function(){e.apply(t,arguments)}},n._convertData=function(e){for(var t in e){var n=t.split("-"),i=e;if(1!==n.length){for(var r=0;r<n.length;r++){var s=n[r];s=s.substring(0,1).toLowerCase()+s.substring(1),s in i||(i[s]={}),r==n.length-1&&(i[s]=e[t]),i=i[s]}delete e[t]}}return e},n.hasScroll=function(t,n){var i=e(n),r=n.style.overflowX,s=n.style.overflowY;return(r!==s||"hidden"!==s&&"visible"!==s)&&("scroll"===r||"scroll"===s||(i.innerHeight()<n.scrollHeight||i.innerWidth()<n.scrollWidth))},n.escapeMarkup=function(e){var t={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return"string"!=typeof e?e:String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]})},n.appendMany=function(t,n){if("1.7"===e.fn.jquery.substr(0,3)){var i=e();e.map(n,function(e){i=i.add(e)}),n=i}t.append(n)},n}),t.define("pumselect2/results",["jquery","./utils"],function(e,t){function n(e,t,i){this.$element=e,this.data=i,this.options=t,n.__super__.constructor.call(this)}return t.Extend(n,t.Observable),n.prototype.render=function(){var t=e('<ul class="pumselect2-results__options" role="tree"></ul>');return this.options.get("multiple")&&t.attr("aria-multiselectable","true"),this.$results=t,t},n.prototype.clear=function(){this.$results.empty()},n.prototype.displayMessage=function(t){var n=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var i=e('<li role="treeitem" aria-live="assertive" class="pumselect2-results__option"></li>'),r=this.options.get("translations").get(t.message);i.append(n(r(t.args))),i[0].className+=" pumselect2-results__message",this.$results.append(i)},n.prototype.hideMessages=function(){this.$results.find(".pumselect2-results__message").remove()},n.prototype.append=function(e){this.hideLoading();var t=[];if(null==e.results||0===e.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));e.results=this.sort(e.results);for(var n=0;n<e.results.length;n++){var i=e.results[n],r=this.option(i);t.push(r)}this.$results.append(t)},n.prototype.position=function(e,t){var n=t.find(".pumselect2-results");n.append(e)},n.prototype.sort=function(e){var t=this.options.get("sorter");return t(e)},n.prototype.setClasses=function(){var t=this;this.data.current(function(n){var i=e.map(n,function(e){return e.id.toString()}),r=t.$results.find(".pumselect2-results__option[aria-selected]");r.each(function(){var t=e(this),n=e.data(this,"data"),r=""+n.id;null!=n.element&&n.element.selected||null==n.element&&e.inArray(r,i)>-1?t.attr("aria-selected","true"):t.attr("aria-selected","false")});var s=r.filter("[aria-selected=true]");s.length>0?s.first().trigger("mouseenter"):r.first().trigger("mouseenter")})},n.prototype.showLoading=function(e){this.hideLoading();var t=this.options.get("translations").get("searching"),n={disabled:!0,loading:!0,text:t(e)},i=this.option(n);i.className+=" loading-results",this.$results.prepend(i)},n.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},n.prototype.option=function(t){var n=document.createElement("li");n.className="pumselect2-results__option";var i={role:"treeitem","aria-selected":"false"};t.disabled&&(delete i["aria-selected"],i["aria-disabled"]="true"),null==t.id&&delete i["aria-selected"],null!=t._resultId&&(n.id=t._resultId),t.title&&(n.title=t.title),t.children&&(i.role="group",i["aria-label"]=t.text,delete i["aria-selected"]);for(var r in i){var s=i[r];n.setAttribute(r,s)}if(t.children){var o=e(n),a=document.createElement("strong");a.className="pumselect2-results__group";e(a);this.template(t,a);for(var l=[],u=0;u<t.children.length;u++){var c=t.children[u],d=this.option(c);l.push(d)}var p=e("<ul></ul>",{"class":"pumselect2-results__options pumselect2-results__options--nested"});p.append(l),o.append(a),o.append(p)}else this.template(t,n);return e.data(n,"data",t),n},n.prototype.bind=function(t,n){var i=this,r=t.id+"-results";this.$results.attr("id",r),t.on("results:all",function(e){i.clear(),i.append(e.data),t.isOpen()&&i.setClasses()}),t.on("results:append",function(e){i.append(e.data),t.isOpen()&&i.setClasses()}),t.on("query",function(e){i.hideMessages(),i.showLoading(e)}),t.on("select",function(){t.isOpen()&&i.setClasses()}),t.on("unselect",function(){t.isOpen()&&i.setClasses()}),t.on("open",function(){i.$results.attr("aria-expanded","true"),i.$results.attr("aria-hidden","false"),i.setClasses(),i.ensureHighlightVisible()}),t.on("close",function(){i.$results.attr("aria-expanded","false"),i.$results.attr("aria-hidden","true"),i.$results.removeAttr("aria-activedescendant")}),t.on("results:toggle",function(){var e=i.getHighlightedResults();0!==e.length&&e.trigger("mouseup")}),t.on("results:select",function(){var e=i.getHighlightedResults();if(0!==e.length){var t=e.data("data");"true"==e.attr("aria-selected")?i.trigger("close",{}):i.trigger("select",{data:t})}}),t.on("results:previous",function(){var e=i.getHighlightedResults(),t=i.$results.find("[aria-selected]"),n=t.index(e);if(0!==n){var r=n-1;0===e.length&&(r=0);var s=t.eq(r);s.trigger("mouseenter");var o=i.$results.offset().top,a=s.offset().top,l=i.$results.scrollTop()+(a-o);0===r?i.$results.scrollTop(0):a-o<0&&i.$results.scrollTop(l)}}),t.on("results:next",function(){var e=i.getHighlightedResults(),t=i.$results.find("[aria-selected]"),n=t.index(e),r=n+1;if(!(r>=t.length)){var s=t.eq(r);s.trigger("mouseenter");var o=i.$results.offset().top+i.$results.outerHeight(!1),a=s.offset().top+s.outerHeight(!1),l=i.$results.scrollTop()+a-o;0===r?i.$results.scrollTop(0):a>o&&i.$results.scrollTop(l)}}),t.on("results:focus",function(e){e.element.addClass("pumselect2-results__option--highlighted")}),t.on("results:message",function(e){i.displayMessage(e)}),e.fn.mousewheel&&this.$results.on("mousewheel",function(e){var t=i.$results.scrollTop(),n=i.$results.get(0).scrollHeight-t+e.deltaY,r=e.deltaY>0&&t-e.deltaY<=0,s=e.deltaY<0&&n<=i.$results.height();r?(i.$results.scrollTop(0),e.preventDefault(),e.stopPropagation()):s&&(i.$results.scrollTop(i.$results.get(0).scrollHeight-i.$results.height()),e.preventDefault(),e.stopPropagation())}),this.$results.on("mouseup",".pumselect2-results__option[aria-selected]",function(t){var n=e(this),r=n.data("data");return"true"===n.attr("aria-selected")?void(i.options.get("multiple")?i.trigger("unselect",{originalEvent:t,data:r}):i.trigger("close",{})):void i.trigger("select",{originalEvent:t,data:r})}),this.$results.on("mouseenter",".pumselect2-results__option[aria-selected]",function(t){var n=e(this).data("data");i.getHighlightedResults().removeClass("pumselect2-results__option--highlighted"),i.trigger("results:focus",{data:n,element:e(this)})})},n.prototype.getHighlightedResults=function(){var e=this.$results.find(".pumselect2-results__option--highlighted");return e},n.prototype.destroy=function(){this.$results.remove()},n.prototype.ensureHighlightVisible=function(){var e=this.getHighlightedResults();if(0!==e.length){var t=this.$results.find("[aria-selected]"),n=t.index(e),i=this.$results.offset().top,r=e.offset().top,s=this.$results.scrollTop()+(r-i),o=r-i;s-=2*e.outerHeight(!1),n<=2?this.$results.scrollTop(0):(o>this.$results.outerHeight()||o<0)&&this.$results.scrollTop(s)}},n.prototype.template=function(t,n){var i=this.options.get("templateResult"),r=this.options.get("escapeMarkup"),s=i(t,n);null==s?n.style.display="none":"string"==typeof s?n.innerHTML=r(s):e(n).append(s)},n}),t.define("pumselect2/keys",[],function(){var e={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return e}),t.define("pumselect2/selection/base",["jquery","../utils","../keys"],function(e,t,n){function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return t.Extend(i,t.Observable),i.prototype.render=function(){var t=e('<span class="pumselect2-selection" role="combobox" aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),t.attr("title",this.$element.attr("title")),t.attr("tabindex",this._tabindex),this.$selection=t,t},i.prototype.bind=function(e,t){var i=this,r=(e.id+"-container",e.id+"-results");this.container=e,this.$selection.on("focus",function(e){i.trigger("focus",e)}),this.$selection.on("blur",function(e){i._handleBlur(e)}),this.$selection.on("keydown",function(e){i.trigger("keypress",e),e.which===n.SPACE&&e.preventDefault()}),e.on("results:focus",function(e){i.$selection.attr("aria-activedescendant",e.data._resultId)}),e.on("selection:update",function(e){i.update(e.data)}),e.on("open",function(){i.$selection.attr("aria-expanded","true"),i.$selection.attr("aria-owns",r),i._attachCloseHandler(e)}),e.on("close",function(){i.$selection.attr("aria-expanded","false"),i.$selection.removeAttr("aria-activedescendant"),i.$selection.removeAttr("aria-owns"),i.$selection.focus(),i._detachCloseHandler(e)}),e.on("enable",function(){i.$selection.attr("tabindex",i._tabindex)}),e.on("disable",function(){i.$selection.attr("tabindex","-1")})},i.prototype._handleBlur=function(t){var n=this;window.setTimeout(function(){document.activeElement==n.$selection[0]||e.contains(n.$selection[0],document.activeElement)||n.trigger("blur",t)},1)},i.prototype._attachCloseHandler=function(t){e(document.body).on("mousedown.pumselect2."+t.id,function(t){var n=e(t.target),i=n.closest(".pumselect2"),r=e(".pumselect2.pumselect2-container--open");r.each(function(){var t=e(this);if(this!=i[0]){var n=t.data("element");n.pumselect2("close")}})})},i.prototype._detachCloseHandler=function(t){e(document.body).off("mousedown.pumselect2."+t.id)},i.prototype.position=function(e,t){var n=t.find(".selection");n.append(e)},i.prototype.destroy=function(){this._detachCloseHandler(this.container)},i.prototype.update=function(e){throw new Error("The `update` method must be defined in child classes.")},i}),t.define("pumselect2/selection/single",["jquery","./base","../utils","../keys"],function(e,t,n,i){function r(){r.__super__.constructor.apply(this,arguments)}return n.Extend(r,t),r.prototype.render=function(){var e=r.__super__.render.call(this);return e.addClass("pumselect2-selection--single"),e.html('<span class="pumselect2-selection__rendered"></span><span class="pumselect2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),e},r.prototype.bind=function(e,t){var n=this;r.__super__.bind.apply(this,arguments);var i=e.id+"-container";this.$selection.find(".pumselect2-selection__rendered").attr("id",i),this.$selection.attr("aria-labelledby",i),this.$selection.on("mousedown",function(e){1===e.which&&n.trigger("toggle",{originalEvent:e})}),this.$selection.on("focus",function(e){}),this.$selection.on("blur",function(e){}),e.on("selection:update",function(e){n.update(e.data)})},r.prototype.clear=function(){this.$selection.find(".pumselect2-selection__rendered").empty()},r.prototype.display=function(e,t){var n=this.options.get("templateSelection"),i=this.options.get("escapeMarkup");return i(n(e,t))},r.prototype.selectionContainer=function(){return e("<span></span>")},r.prototype.update=function(e){if(0===e.length)return void this.clear();var t=e[0],n=this.$selection.find(".pumselect2-selection__rendered"),i=this.display(t,n);n.empty().append(i),n.prop("title",t.title||t.text)},r}),t.define("pumselect2/selection/multiple",["jquery","./base","../utils"],function(e,t,n){function i(e,t){i.__super__.constructor.apply(this,arguments)}return n.Extend(i,t),i.prototype.render=function(){var e=i.__super__.render.call(this);return e.addClass("pumselect2-selection--multiple"),e.html('<ul class="pumselect2-selection__rendered"></ul>'),e},i.prototype.bind=function(t,n){var r=this;i.__super__.bind.apply(this,arguments),this.$selection.on("click",function(e){r.trigger("toggle",{originalEvent:e})}),this.$selection.on("click",".pumselect2-selection__choice__remove",function(t){if(!r.options.get("disabled")){var n=e(this),i=n.parent(),s=i.data("data");r.trigger("unselect",{originalEvent:t,data:s})}})},i.prototype.clear=function(){this.$selection.find(".pumselect2-selection__rendered").empty()},i.prototype.display=function(e,t){var n=this.options.get("templateSelection"),i=this.options.get("escapeMarkup");return i(n(e,t))},i.prototype.selectionContainer=function(){var t=e('<li class="pumselect2-selection__choice"><span class="pumselect2-selection__choice__remove" role="presentation">×</span></li>');return t},i.prototype.update=function(e){if(this.clear(),0!==e.length){for(var t=[],i=0;i<e.length;i++){var r=e[i],s=this.selectionContainer(),o=this.display(r,s);s.append(o),s.prop("title",r.title||r.text),s.data("data",r),t.push(s)}var a=this.$selection.find(".pumselect2-selection__rendered");n.appendMany(a,t)}},i}),t.define("pumselect2/selection/placeholder",["../utils"],function(e){function t(e,t,n){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n)}return t.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},t.prototype.createPlaceholder=function(e,t){var n=this.selectionContainer();return n.html(this.display(t)),n.addClass("pumselect2-selection__placeholder").removeClass("pumselect2-selection__choice"),n},t.prototype.update=function(e,t){var n=1==t.length&&t[0].id!=this.placeholder.id,i=t.length>1;if(i||n)return e.call(this,t);this.clear();var r=this.createPlaceholder(this.placeholder);this.$selection.find(".pumselect2-selection__rendered").append(r)},t}),t.define("pumselect2/selection/allowClear",["jquery","../keys"],function(e,t){function n(){}return n.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".pumselect2-selection__clear",function(e){i._handleClear(e)}),t.on("keypress",function(e){i._handleKeyboardClear(e,t)})},n.prototype._handleClear=function(e,t){if(!this.options.get("disabled")){var n=this.$selection.find(".pumselect2-selection__clear");if(0!==n.length){t.stopPropagation();for(var i=n.data("data"),r=0;r<i.length;r++){var s={data:i[r]};if(this.trigger("unselect",s),s.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},n.prototype._handleKeyboardClear=function(e,n,i){i.isOpen()||n.which!=t.DELETE&&n.which!=t.BACKSPACE||this._handleClear(n)},n.prototype.update=function(t,n){if(t.call(this,n),!(this.$selection.find(".pumselect2-selection__placeholder").length>0||0===n.length)){var i=e('<span class="pumselect2-selection__clear">×</span>');i.data("data",n),this.$selection.find(".pumselect2-selection__rendered").prepend(i)}},n}),t.define("pumselect2/selection/search",["jquery","../utils","../keys"],function(e,t,n){function i(e,t,n){e.call(this,t,n)}return i.prototype.render=function(t){var n=e('<li class="pumselect2-search pumselect2-search--inline"><input class="pumselect2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=n,this.$search=n.find("input");var i=t.call(this);return this._transferTabIndex(),i},i.prototype.bind=function(e,t,i){var r=this;e.call(this,t,i),t.on("open",function(){r.$search.trigger("focus")}),t.on("close",function(){r.$search.val(""),r.$search.removeAttr("aria-activedescendant"),r.$search.trigger("focus")}),t.on("enable",function(){r.$search.prop("disabled",!1),r._transferTabIndex()}),t.on("disable",function(){r.$search.prop("disabled",!0)}),t.on("focus",function(e){r.$search.trigger("focus")}),t.on("results:focus",function(e){r.$search.attr("aria-activedescendant",e.id)}),this.$selection.on("focusin",".pumselect2-search--inline",function(e){r.trigger("focus",e)}),this.$selection.on("focusout",".pumselect2-search--inline",function(e){r._handleBlur(e)}),this.$selection.on("keydown",".pumselect2-search--inline",function(e){e.stopPropagation(),r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented();var t=e.which;if(t===n.BACKSPACE&&""===r.$search.val()){var i=r.$searchContainer.prev(".pumselect2-selection__choice");if(i.length>0){var s=i.data("data");r.searchRemoveChoice(s),e.preventDefault()}}});var s=document.documentMode,o=s&&s<=11;this.$selection.on("input.searchcheck",".pumselect2-search--inline",function(e){return o?void r.$selection.off("input.search input.searchcheck"):void r.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".pumselect2-search--inline",function(e){if(o&&"input"===e.type)return void r.$selection.off("input.search input.searchcheck");var t=e.which;t!=n.SHIFT&&t!=n.CTRL&&t!=n.ALT&&t!=n.TAB&&r.handleSearch(e)})},i.prototype._transferTabIndex=function(e){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},i.prototype.createPlaceholder=function(e,t){this.$search.attr("placeholder",t.text)},i.prototype.update=function(e,t){var n=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),e.call(this,t),this.$selection.find(".pumselect2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),n&&this.$search.focus()},i.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var e=this.$search.val();this.trigger("query",{term:e})}this._keyUpPrevented=!1},i.prototype.searchRemoveChoice=function(e,t){this.trigger("unselect",{data:t}),this.$search.val(t.text),this.handleSearch()},i.prototype.resizeSearch=function(){this.$search.css("width","25px");var e="";if(""!==this.$search.attr("placeholder"))e=this.$selection.find(".pumselect2-selection__rendered").innerWidth();else{var t=this.$search.val().length+1;e=.75*t+"em"}this.$search.css("width",e)},i}),t.define("pumselect2/selection/eventRelay",["jquery"],function(e){function t(){}return t.prototype.bind=function(t,n,i){var r=this,s=["open","opening","close","closing","select","selecting","unselect","unselecting"],o=["opening","closing","selecting","unselecting"];t.call(this,n,i),n.on("*",function(t,n){if(e.inArray(t,s)!==-1){n=n||{};var i=e.Event("pumselect2:"+t,{params:n});r.$element.trigger(i),e.inArray(t,o)!==-1&&(n.prevented=i.isDefaultPrevented())}})},t}),t.define("pumselect2/translation",["jquery","require"],function(e,t){function n(e){this.dict=e||{}}return n.prototype.all=function(){return this.dict},n.prototype.get=function(e){return this.dict[e]},n.prototype.extend=function(t){this.dict=e.extend({},t.all(),this.dict)},n._cache={},n.loadPath=function(e){if(!(e in n._cache)){var i=t(e);n._cache[e]=i}return new n(n._cache[e])},n}),t.define("pumselect2/diacritics",[],function(){var e={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};return e}),t.define("pumselect2/data/base",["../utils"],function(e){function t(e,n){t.__super__.constructor.call(this)}return e.Extend(t,e.Observable),t.prototype.current=function(e){throw new Error("The `current` method must be defined in child classes.")},t.prototype.query=function(e,t){throw new Error("The `query` method must be defined in child classes.")},t.prototype.bind=function(e,t){},t.prototype.destroy=function(){},t.prototype.generateResultId=function(t,n){var i=t.id+"-result-";return i+=e.generateChars(4),i+=null!=n.id?"-"+n.id.toString():"-"+e.generateChars(4)},t}),t.define("pumselect2/data/select",["./base","../utils","jquery"],function(e,t,n){
|
2 |
+
function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return t.Extend(i,e),i.prototype.current=function(e){var t=[],i=this;this.$element.find(":selected").each(function(){var e=n(this),r=i.item(e);t.push(r)}),e(t)},i.prototype.select=function(e){var t=this;if(e.selected=!0,n(e.element).is("option"))return e.element.selected=!0,void this.$element.trigger("change");if(this.$element.prop("multiple"))this.current(function(i){var r=[];e=[e],e.push.apply(e,i);for(var s=0;s<e.length;s++){var o=e[s].id;n.inArray(o,r)===-1&&r.push(o)}t.$element.val(r),t.$element.trigger("change")});else{var i=e.id;this.$element.val(i),this.$element.trigger("change")}},i.prototype.unselect=function(e){var t=this;if(this.$element.prop("multiple"))return e.selected=!1,n(e.element).is("option")?(e.element.selected=!1,void this.$element.trigger("change")):void this.current(function(i){for(var r=[],s=0;s<i.length;s++){var o=i[s].id;o!==e.id&&n.inArray(o,r)===-1&&r.push(o)}t.$element.val(r),t.$element.trigger("change")})},i.prototype.bind=function(e,t){var n=this;this.container=e,e.on("select",function(e){n.select(e.data)}),e.on("unselect",function(e){n.unselect(e.data)})},i.prototype.destroy=function(){this.$element.find("*").each(function(){n.removeData(this,"data")})},i.prototype.query=function(e,t){var i=[],r=this,s=this.$element.children();s.each(function(){var t=n(this);if(t.is("option")||t.is("optgroup")){var s=r.item(t),o=r.matches(e,s);null!==o&&i.push(o)}}),t({results:i})},i.prototype.addOptions=function(e){t.appendMany(this.$element,e)},i.prototype.option=function(e){var t;e.children?(t=document.createElement("optgroup"),t.label=e.text):(t=document.createElement("option"),void 0!==t.textContent?t.textContent=e.text:t.innerText=e.text),e.id&&(t.value=e.id),e.disabled&&(t.disabled=!0),e.selected&&(t.selected=!0),e.title&&(t.title=e.title);var i=n(t),r=this._normalizeItem(e);return r.element=t,n.data(t,"data",r),i},i.prototype.item=function(e){var t={};if(t=n.data(e[0],"data"),null!=t)return t;if(e.is("option"))t={id:e.val(),text:e.text(),disabled:e.prop("disabled"),selected:e.prop("selected"),title:e.prop("title")};else if(e.is("optgroup")){t={text:e.prop("label"),children:[],title:e.prop("title")};for(var i=e.children("option"),r=[],s=0;s<i.length;s++){var o=n(i[s]),a=this.item(o);r.push(a)}t.children=r}return t=this._normalizeItem(t),t.element=e[0],n.data(e[0],"data",t),t},i.prototype._normalizeItem=function(e){n.isPlainObject(e)||(e={id:e,text:e}),e=n.extend({},{text:""},e);var t={selected:!1,disabled:!1};return null!=e.id&&(e.id=e.id.toString()),null!=e.text&&(e.text=e.text.toString()),null==e._resultId&&e.id&&null!=this.container&&(e._resultId=this.generateResultId(this.container,e)),n.extend({},t,e)},i.prototype.matches=function(e,t){var n=this.options.get("matcher");return n(e,t)},i}),t.define("pumselect2/data/array",["./select","../utils","jquery"],function(e,t,n){function i(e,t){var n=t.get("data")||[];i.__super__.constructor.call(this,e,t),this.addOptions(this.convertToOptions(n))}return t.Extend(i,e),i.prototype.select=function(e){var t=this.$element.find("option").filter(function(t,n){return n.value==e.id.toString()});0===t.length&&(t=this.option(e),this.addOptions(t)),i.__super__.select.call(this,e)},i.prototype.convertToOptions=function(e){function i(e){return function(){return n(this).val()==e.id}}for(var r=this,s=this.$element.find("option"),o=s.map(function(){return r.item(n(this)).id}).get(),a=[],l=0;l<e.length;l++){var u=this._normalizeItem(e[l]);if(n.inArray(u.id,o)>=0){var c=s.filter(i(u)),d=this.item(c),p=n.extend(!0,{},u,d),h=this.option(p);c.replaceWith(h)}else{var f=this.option(u);if(u.children){var m=this.convertToOptions(u.children);t.appendMany(f,m)}a.push(f)}}return a},i}),t.define("pumselect2/data/ajax",["./array","../utils","jquery"],function(e,t,n){function i(e,t){this.ajaxOptions=this._applyDefaults(t.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),i.__super__.constructor.call(this,e,t)}return t.Extend(i,e),i.prototype._applyDefaults=function(e){var t={data:function(e){return n.extend({},e,{q:e.term})},transport:function(e,t,i){var r=n.ajax(e);return r.then(t),r.fail(i),r}};return n.extend({},t,e,!0)},i.prototype.processResults=function(e){return e},i.prototype.query=function(e,t){function i(){var i=s.transport(s,function(i){var s=r.processResults(i,e);r.options.get("debug")&&window.console&&console.error&&(s&&s.results&&n.isArray(s.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),t(s)},function(){r.trigger("results:message",{message:"errorLoading"})});r._request=i}var r=this;null!=this._request&&(n.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var s=n.extend({type:"GET"},this.ajaxOptions);"function"==typeof s.url&&(s.url=s.url.call(this.$element,e)),"function"==typeof s.data&&(s.data=s.data.call(this.$element,e)),this.ajaxOptions.delay&&""!==e.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(i,this.ajaxOptions.delay)):i()},i}),t.define("pumselect2/data/tags",["jquery"],function(e){function t(t,n,i){var r=i.get("tags"),s=i.get("createTag");void 0!==s&&(this.createTag=s);var o=i.get("insertTag");if(void 0!==o&&(this.insertTag=o),t.call(this,n,i),e.isArray(r))for(var a=0;a<r.length;a++){var l=r[a],u=this._normalizeItem(l),c=this.option(u);this.$element.append(c)}}return t.prototype.query=function(e,t,n){function i(e,s){for(var o=e.results,a=0;a<o.length;a++){var l=o[a],u=null!=l.children&&!i({results:l.children},!0),c=l.text===t.term;if(c||u)return!s&&(e.data=o,void n(e))}if(s)return!0;var d=r.createTag(t);if(null!=d){var p=r.option(d);p.attr("data-pumselect2-tag",!0),r.addOptions([p]),r.insertTag(o,d)}e.results=o,n(e)}var r=this;return this._removeOldTags(),null==t.term||null!=t.page?void e.call(this,t,n):void e.call(this,t,i)},t.prototype.createTag=function(t,n){var i=e.trim(n.term);return""===i?null:{id:i,text:i}},t.prototype.insertTag=function(e,t,n){t.unshift(n)},t.prototype._removeOldTags=function(t){var n=(this._lastTag,this.$element.find("option[data-pumselect2-tag]"));n.each(function(){this.selected||e(this).remove()})},t}),t.define("pumselect2/data/tokenizer",["jquery"],function(e){function t(e,t,n){var i=n.get("tokenizer");void 0!==i&&(this.tokenizer=i),e.call(this,t,n)}return t.prototype.bind=function(e,t,n){e.call(this,t,n),this.$search=t.dropdown.$search||t.selection.$search||n.find(".pumselect2-search__field")},t.prototype.query=function(e,t,n){function i(e){r.trigger("select",{data:e})}var r=this;t.term=t.term||"";var s=this.tokenizer(t,this.options,i);s.term!==t.term&&(this.$search.length&&(this.$search.val(s.term),this.$search.focus()),t.term=s.term),e.call(this,t,n)},t.prototype.tokenizer=function(t,n,i,r){for(var s=i.get("tokenSeparators")||[],o=n.term,a=0,l=this.createTag||function(e){return{id:e.term,text:e.term}};a<o.length;){var u=o[a];if(e.inArray(u,s)!==-1){var c=o.substr(0,a),d=e.extend({},n,{term:c}),p=l(d);null!=p?(r(p),o=o.substr(a+1)||"",a=0):a++}else a++}return{term:o}},t}),t.define("pumselect2/data/minimumInputLength",[],function(){function e(e,t,n){this.minimumInputLength=n.get("minimumInputLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){return t.term=t.term||"",t.term.length<this.minimumInputLength?void this.trigger("results:message",{message:"inputTooShort",args:{minimum:this.minimumInputLength,input:t.term,params:t}}):void e.call(this,t,n)},e}),t.define("pumselect2/data/maximumInputLength",[],function(){function e(e,t,n){this.maximumInputLength=n.get("maximumInputLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){return t.term=t.term||"",this.maximumInputLength>0&&t.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:t.term,params:t}}):void e.call(this,t,n)},e}),t.define("pumselect2/data/maximumSelectionLength",[],function(){function e(e,t,n){this.maximumSelectionLength=n.get("maximumSelectionLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){var i=this;this.current(function(r){var s=null!=r?r.length:0;return i.maximumSelectionLength>0&&s>=i.maximumSelectionLength?void i.trigger("results:message",{message:"maximumSelected",args:{maximum:i.maximumSelectionLength}}):void e.call(i,t,n)})},e}),t.define("pumselect2/dropdown",["jquery","./utils"],function(e,t){function n(e,t){this.$element=e,this.options=t,n.__super__.constructor.call(this)}return t.Extend(n,t.Observable),n.prototype.render=function(){var t=e('<span class="pumselect2-dropdown"><span class="pumselect2-results"></span></span>');return t.attr("dir",this.options.get("dir")),this.$dropdown=t,t},n.prototype.bind=function(){},n.prototype.position=function(e,t){},n.prototype.destroy=function(){this.$dropdown.remove()},n}),t.define("pumselect2/dropdown/search",["jquery","../utils"],function(e,t){function n(){}return n.prototype.render=function(t){var n=t.call(this),i=e('<span class="pumselect2-search pumselect2-search--dropdown"><input class="pumselect2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" /></span>');return this.$searchContainer=i,this.$search=i.find("input"),n.prepend(i),n},n.prototype.bind=function(t,n,i){var r=this;t.call(this,n,i),this.$search.on("keydown",function(e){r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented()}),this.$search.on("input",function(t){e(this).off("keyup")}),this.$search.on("keyup input",function(e){r.handleSearch(e)}),n.on("open",function(){r.$search.attr("tabindex",0),r.$search.focus(),window.setTimeout(function(){r.$search.focus()},0)}),n.on("close",function(){r.$search.attr("tabindex",-1),r.$search.val("")}),n.on("results:all",function(e){if(null==e.query.term||""===e.query.term){var t=r.showSearch(e);t?r.$searchContainer.removeClass("pumselect2-search--hide"):r.$searchContainer.addClass("pumselect2-search--hide")}})},n.prototype.handleSearch=function(e){if(!this._keyUpPrevented){var t=this.$search.val();this.trigger("query",{term:t})}this._keyUpPrevented=!1},n.prototype.showSearch=function(e,t){return!0},n}),t.define("pumselect2/dropdown/hidePlaceholder",[],function(){function e(e,t,n,i){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n,i)}return e.prototype.append=function(e,t){t.results=this.removePlaceholder(t.results),e.call(this,t)},e.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},e.prototype.removePlaceholder=function(e,t){for(var n=t.slice(0),i=t.length-1;i>=0;i--){var r=t[i];this.placeholder.id===r.id&&n.splice(i,1)}return n},e}),t.define("pumselect2/dropdown/infiniteScroll",["jquery"],function(e){function t(e,t,n,i){this.lastParams={},e.call(this,t,n,i),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return t.prototype.append=function(e,t){this.$loadingMore.remove(),this.loading=!1,e.call(this,t),this.showLoadingMore(t)&&this.$results.append(this.$loadingMore)},t.prototype.bind=function(t,n,i){var r=this;t.call(this,n,i),n.on("query",function(e){r.lastParams=e,r.loading=!0}),n.on("query:append",function(e){r.lastParams=e,r.loading=!0}),this.$results.on("scroll",function(){var t=e.contains(document.documentElement,r.$loadingMore[0]);if(!r.loading&&t){var n=r.$results.offset().top+r.$results.outerHeight(!1),i=r.$loadingMore.offset().top+r.$loadingMore.outerHeight(!1);n+50>=i&&r.loadMore()}})},t.prototype.loadMore=function(){this.loading=!0;var t=e.extend({},{page:1},this.lastParams);t.page++,this.trigger("query:append",t)},t.prototype.showLoadingMore=function(e,t){return t.pagination&&t.pagination.more},t.prototype.createLoadingMore=function(){var t=e('<li class="pumselect2-results__option pumselect2-results__option--load-more"role="treeitem" aria-disabled="true"></li>'),n=this.options.get("translations").get("loadingMore");return t.html(n(this.lastParams)),t},t}),t.define("pumselect2/dropdown/attachBody",["jquery","../utils"],function(e,t){function n(t,n,i){this.$dropdownParent=i.get("dropdownParent")||e(document.body),t.call(this,n,i)}return n.prototype.bind=function(e,t,n){var i=this,r=!1;e.call(this,t,n),t.on("open",function(){i._showDropdown(),i._attachPositioningHandler(t),r||(r=!0,t.on("results:all",function(){i._positionDropdown(),i._resizeDropdown()}),t.on("results:append",function(){i._positionDropdown(),i._resizeDropdown()}))}),t.on("close",function(){i._hideDropdown(),i._detachPositioningHandler(t)}),this.$dropdownContainer.on("mousedown",function(e){e.stopPropagation()})},n.prototype.destroy=function(e){e.call(this),this.$dropdownContainer.remove()},n.prototype.position=function(e,t,n){t.attr("class",n.attr("class")),t.removeClass("pumselect2"),t.addClass("pumselect2-container--open"),t.css({position:"absolute",top:-999999}),this.$container=n},n.prototype.render=function(t){var n=e("<span></span>"),i=t.call(this);return n.append(i),this.$dropdownContainer=n,n},n.prototype._hideDropdown=function(e){this.$dropdownContainer.detach()},n.prototype._attachPositioningHandler=function(n,i){var r=this,s="scroll.pumselect2."+i.id,o="resize.pumselect2."+i.id,a="orientationchange.pumselect2."+i.id,l=this.$container.parents().filter(t.hasScroll);l.each(function(){e(this).data("pumselect2-scroll-position",{x:e(this).scrollLeft(),y:e(this).scrollTop()})}),l.on(s,function(t){var n=e(this).data("pumselect2-scroll-position");e(this).scrollTop(n.y)}),e(window).on(s+" "+o+" "+a,function(e){r._positionDropdown(),r._resizeDropdown()})},n.prototype._detachPositioningHandler=function(n,i){var r="scroll.pumselect2."+i.id,s="resize.pumselect2."+i.id,o="orientationchange.pumselect2."+i.id,a=this.$container.parents().filter(t.hasScroll);a.off(r),e(window).off(r+" "+s+" "+o)},n.prototype._positionDropdown=function(){var t=e(window),n=this.$dropdown.hasClass("pumselect2-dropdown--above"),i=this.$dropdown.hasClass("pumselect2-dropdown--below"),r=null,s=this.$container.offset();s.bottom=s.top+this.$container.outerHeight(!1);var o={height:this.$container.outerHeight(!1)};o.top=s.top,o.bottom=s.top+o.height;var a={height:this.$dropdown.outerHeight(!1)},l={top:t.scrollTop(),bottom:t.scrollTop()+t.height()},u=l.top<s.top-a.height,c=l.bottom>s.bottom+a.height,d={left:s.left,top:o.bottom},p=this.$dropdownParent;"static"===p.css("position")&&(p=p.offsetParent());var h=p.offset();d.top-=h.top,d.left-=h.left,n||i||(r="below"),c||!u||n?!u&&c&&n&&(r="below"):r="above",("above"==r||n&&"below"!==r)&&(d.top=o.top-a.height),null!=r&&(this.$dropdown.removeClass("pumselect2-dropdown--below pumselect2-dropdown--above").addClass("pumselect2-dropdown--"+r),this.$container.removeClass("pumselect2-container--below pumselect2-container--above").addClass("pumselect2-container--"+r)),this.$dropdownContainer.css(d)},n.prototype._resizeDropdown=function(){var e={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(e.minWidth=e.width,e.width="auto"),this.$dropdown.css(e)},n.prototype._showDropdown=function(e){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},n}),t.define("pumselect2/dropdown/minimumResultsForSearch",[],function(){function e(t){for(var n=0,i=0;i<t.length;i++){var r=t[i];r.children?n+=e(r.children):n++}return n}function t(e,t,n,i){this.minimumResultsForSearch=n.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),e.call(this,t,n,i)}return t.prototype.showSearch=function(t,n){return!(e(n.data.results)<this.minimumResultsForSearch)&&t.call(this,n)},t}),t.define("pumselect2/dropdown/selectOnClose",[],function(){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("close",function(){i._handleSelectOnClose()})},e.prototype._handleSelectOnClose=function(){var e=this.getHighlightedResults();if(!(e.length<1)){var t=e.data("data");null!=t.element&&t.element.selected||null==t.element&&t.selected||this.trigger("select",{data:t})}},e}),t.define("pumselect2/dropdown/closeOnSelect",[],function(){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("select",function(e){i._selectTriggered(e)}),t.on("unselect",function(e){i._selectTriggered(e)})},e.prototype._selectTriggered=function(e,t){var n=t.originalEvent;n&&n.ctrlKey||this.trigger("close",{})},e}),t.define("pumselect2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return 1!=t&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return 1!=e.maximum&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),t.define("pumselect2/defaults",["jquery","require","./results","./selection/single","./selection/multiple","./selection/placeholder","./selection/allowClear","./selection/search","./selection/eventRelay","./utils","./translation","./diacritics","./data/select","./data/array","./data/ajax","./data/tags","./data/tokenizer","./data/minimumInputLength","./data/maximumInputLength","./data/maximumSelectionLength","./dropdown","./dropdown/search","./dropdown/hidePlaceholder","./dropdown/infiniteScroll","./dropdown/attachBody","./dropdown/minimumResultsForSearch","./dropdown/selectOnClose","./dropdown/closeOnSelect","./i18n/en"],function(e,t,n,i,r,s,o,a,l,u,c,d,p,h,f,m,g,v,y,b,_,w,A,$,x,j,k,C,P){function O(){this.reset()}O.prototype.apply=function(d){if(d=e.extend(!0,{},this.defaults,d),null==d.dataAdapter){if(null!=d.ajax?d.dataAdapter=f:null!=d.data?d.dataAdapter=h:d.dataAdapter=p,d.minimumInputLength>0&&(d.dataAdapter=u.Decorate(d.dataAdapter,v)),d.maximumInputLength>0&&(d.dataAdapter=u.Decorate(d.dataAdapter,y)),d.maximumSelectionLength>0&&(d.dataAdapter=u.Decorate(d.dataAdapter,b)),d.tags&&(d.dataAdapter=u.Decorate(d.dataAdapter,m)),null==d.tokenSeparators&&null==d.tokenizer||(d.dataAdapter=u.Decorate(d.dataAdapter,g)),null!=d.query){var P=t(d.amdBase+"compat/query");d.dataAdapter=u.Decorate(d.dataAdapter,P)}if(null!=d.initSelection){var O=t(d.amdBase+"compat/initSelection");d.dataAdapter=u.Decorate(d.dataAdapter,O)}}if(null==d.resultsAdapter&&(d.resultsAdapter=n,null!=d.ajax&&(d.resultsAdapter=u.Decorate(d.resultsAdapter,$)),null!=d.placeholder&&(d.resultsAdapter=u.Decorate(d.resultsAdapter,A)),d.selectOnClose&&(d.resultsAdapter=u.Decorate(d.resultsAdapter,k))),null==d.dropdownAdapter){if(d.multiple)d.dropdownAdapter=_;else{var M=u.Decorate(_,w);d.dropdownAdapter=M}if(0!==d.minimumResultsForSearch&&(d.dropdownAdapter=u.Decorate(d.dropdownAdapter,j)),d.closeOnSelect&&(d.dropdownAdapter=u.Decorate(d.dropdownAdapter,C)),null!=d.dropdownCssClass||null!=d.dropdownCss||null!=d.adaptDropdownCssClass){var S=t(d.amdBase+"compat/dropdownCss");d.dropdownAdapter=u.Decorate(d.dropdownAdapter,S)}d.dropdownAdapter=u.Decorate(d.dropdownAdapter,x)}if(null==d.selectionAdapter){if(d.multiple?d.selectionAdapter=r:d.selectionAdapter=i,null!=d.placeholder&&(d.selectionAdapter=u.Decorate(d.selectionAdapter,s)),d.allowClear&&(d.selectionAdapter=u.Decorate(d.selectionAdapter,o)),d.multiple&&(d.selectionAdapter=u.Decorate(d.selectionAdapter,a)),null!=d.containerCssClass||null!=d.containerCss||null!=d.adaptContainerCssClass){var E=t(d.amdBase+"compat/containerCss");d.selectionAdapter=u.Decorate(d.selectionAdapter,E)}d.selectionAdapter=u.Decorate(d.selectionAdapter,l)}if("string"==typeof d.language)if(d.language.indexOf("-")>0){var U=d.language.split("-"),D=U[0];d.language=[d.language,D]}else d.language=[d.language];if(e.isArray(d.language)){var T=new c;d.language.push("en");for(var q=d.language,I=0;I<q.length;I++){var z=q[I],L={};try{L=c.loadPath(z)}catch(H){try{z=this.defaults.amdLanguageBase+z,L=c.loadPath(z)}catch(R){d.debug&&window.console&&console.warn&&console.warn('Select2: The language file for "'+z+'" could not be automatically loaded. A fallback will be used instead.');continue}}T.extend(L)}d.translations=T}else{var N=c.loadPath(this.defaults.amdLanguageBase+"en"),F=new c(d.language);F.extend(N),d.translations=F}return d},O.prototype.reset=function(){function t(e){function t(e){return d[e]||e}return e.replace(/[^\u0000-\u007E]/g,t)}function n(i,r){if(""===e.trim(i.term))return r;if(r.children&&r.children.length>0){for(var s=e.extend(!0,{},r),o=r.children.length-1;o>=0;o--){var a=r.children[o],l=n(i,a);null==l&&s.children.splice(o,1)}return s.children.length>0?s:n(i,s)}var u=t(r.text).toUpperCase(),c=t(i.term).toUpperCase();return u.indexOf(c)>-1?r:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:u.escapeMarkup,language:P,matcher:n,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(e){return e},templateResult:function(e){return e.text},templateSelection:function(e){return e.text},theme:"default",width:"resolve"}},O.prototype.set=function(t,n){var i=e.camelCase(t),r={};r[i]=n;var s=u._convertData(r);e.extend(this.defaults,s)};var M=new O;return M}),t.define("pumselect2/options",["require","jquery","./defaults","./utils"],function(e,t,n,i){function r(t,r){if(this.options=t,null!=r&&this.fromElement(r),this.options=n.apply(this.options),r&&r.is("input")){var s=e(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=i.Decorate(this.options.dataAdapter,s)}}return r.prototype.fromElement=function(e){var n=["pumselect2"];null==this.options.multiple&&(this.options.multiple=e.prop("multiple")),null==this.options.disabled&&(this.options.disabled=e.prop("disabled")),null==this.options.language&&(e.prop("lang")?this.options.language=e.prop("lang").toLowerCase():e.closest("[lang]").prop("lang")&&(this.options.language=e.closest("[lang]").prop("lang"))),null==this.options.dir&&(e.prop("dir")?this.options.dir=e.prop("dir"):e.closest("[dir]").prop("dir")?this.options.dir=e.closest("[dir]").prop("dir"):this.options.dir="ltr"),e.prop("disabled",this.options.disabled),e.prop("multiple",this.options.multiple),e.data("pumselect2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-pumselect2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),e.data("data",e.data("pumselect2Tags")),e.data("tags",!0)),e.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),e.attr("ajax--url",e.data("ajaxUrl")),e.data("ajax--url",e.data("ajaxUrl")));var r={};r=t.fn.jquery&&"1."==t.fn.jquery.substr(0,2)&&e[0].dataset?t.extend(!0,{},e[0].dataset,e.data()):e.data();var s=t.extend(!0,{},r);s=i._convertData(s);for(var o in s)t.inArray(o,n)>-1||(t.isPlainObject(this.options[o])?t.extend(this.options[o],s[o]):this.options[o]=s[o]);return this},r.prototype.get=function(e){return this.options[e]},r.prototype.set=function(e,t){this.options[e]=t},r}),t.define("pumselect2/core",["jquery","./options","./utils","./keys"],function(e,t,n,i){var r=function(e,n){null!=e.data("pumselect2")&&e.data("pumselect2").destroy(),this.$element=e,this.id=this._generateId(e),n=n||{},this.options=new t(n,e),r.__super__.constructor.call(this);var i=e.attr("tabindex")||0;e.data("old-tabindex",i),e.attr("tabindex","-1");var s=this.options.get("dataAdapter");this.dataAdapter=new s(e,this.options);var o=this.render();this._placeContainer(o);var a=this.options.get("selectionAdapter");this.selection=new a(e,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,o);var l=this.options.get("dropdownAdapter");this.dropdown=new l(e,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,o);var u=this.options.get("resultsAdapter");this.results=new u(e,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var c=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(e){c.trigger("selection:update",{data:e})}),e.addClass("pumselect2-hidden-accessible"),e.attr("aria-hidden","true"),this._syncAttributes(),e.data("pumselect2",this)};return n.Extend(r,n.Observable),r.prototype._generateId=function(e){var t="";return t=null!=e.attr("id")?e.attr("id"):null!=e.attr("name")?e.attr("name")+"-"+n.generateChars(2):n.generateChars(4),t=t.replace(/(:|\.|\[|\]|,)/g,""),t="pumselect2-"+t},r.prototype._placeContainer=function(e){e.insertAfter(this.$element);var t=this._resolveWidth(this.$element,this.options.get("width"));null!=t&&e.css("width",t)},r.prototype._resolveWidth=function(e,t){var n=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==t){var i=this._resolveWidth(e,"style");return null!=i?i:this._resolveWidth(e,"element")}if("element"==t){var r=e.outerWidth(!1);return r<=0?"auto":r+"px"}if("style"==t){var s=e.attr("style");if("string"!=typeof s)return null;for(var o=s.split(";"),a=0,l=o.length;a<l;a+=1){var u=o[a].replace(/\s/g,""),c=u.match(n);if(null!==c&&c.length>=1)return c[1]}return null}return t},r.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},r.prototype._registerDomEvents=function(){var t=this;this.$element.on("change.pumselect2",function(){t.dataAdapter.current(function(e){t.trigger("selection:update",{data:e})})}),this._sync=n.bind(this._syncAttributes,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._sync);var i=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=i?(this._observer=new i(function(n){e.each(n,t._sync)}),this._observer.observe(this.$element[0],{attributes:!0,subtree:!1})):this.$element[0].addEventListener&&this.$element[0].addEventListener("DOMAttrModified",t._sync,!1)},r.prototype._registerDataEvents=function(){var e=this;this.dataAdapter.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerSelectionEvents=function(){var t=this,n=["toggle","focus"];this.selection.on("toggle",function(){t.toggleDropdown()}),this.selection.on("focus",function(e){t.focus(e)}),this.selection.on("*",function(i,r){e.inArray(i,n)===-1&&t.trigger(i,r)})},r.prototype._registerDropdownEvents=function(){var e=this;this.dropdown.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerResultsEvents=function(){var e=this;this.results.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerEvents=function(){var e=this;this.on("open",function(){e.$container.addClass("pumselect2-container--open")}),this.on("close",function(){e.$container.removeClass("pumselect2-container--open")}),this.on("enable",function(){e.$container.removeClass("pumselect2-container--disabled")}),this.on("disable",function(){e.$container.addClass("pumselect2-container--disabled")}),this.on("blur",function(){e.$container.removeClass("pumselect2-container--focus")}),this.on("query",function(t){e.isOpen()||e.trigger("open",{}),this.dataAdapter.query(t,function(n){e.trigger("results:all",{data:n,query:t})})}),this.on("query:append",function(t){this.dataAdapter.query(t,function(n){e.trigger("results:append",{data:n,query:t})})}),this.on("keypress",function(t){var n=t.which;e.isOpen()?n===i.ESC||n===i.TAB||n===i.UP&&t.altKey?(e.close(),t.preventDefault()):n===i.ENTER?(e.trigger("results:select",{}),t.preventDefault()):n===i.SPACE&&t.ctrlKey?(e.trigger("results:toggle",{}),t.preventDefault()):n===i.UP?(e.trigger("results:previous",{}),t.preventDefault()):n===i.DOWN&&(e.trigger("results:next",{}),t.preventDefault()):(n===i.ENTER||n===i.SPACE||n===i.DOWN&&t.altKey)&&(e.open(),t.preventDefault())})},r.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},r.prototype.trigger=function(e,t){var n=r.__super__.trigger,i={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===t&&(t={}),e in i){var s=i[e],o={prevented:!1,name:e,args:t};if(n.call(this,s,o),o.prevented)return void(t.prevented=!0)}n.call(this,e,t)},r.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},r.prototype.open=function(){this.isOpen()||this.trigger("query",{})},r.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},r.prototype.isOpen=function(){return this.$container.hasClass("pumselect2-container--open")},r.prototype.hasFocus=function(){return this.$container.hasClass("pumselect2-container--focus")},r.prototype.focus=function(e){this.hasFocus()||(this.$container.addClass("pumselect2-container--focus"),this.trigger("focus",{}))},r.prototype.enable=function(e){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `pumselect2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),null!=e&&0!==e.length||(e=[!0]);var t=!e[0];this.$element.prop("disabled",t)},r.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `pumselect2("data")`. You should consider setting the value instead using `$element.val()`.');var e=[];return this.dataAdapter.current(function(t){e=t}),e},r.prototype.val=function(t){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `pumselect2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==t||0===t.length)return this.$element.val();var n=t[0];e.isArray(n)&&(n=e.map(n,function(e){return e.toString()})),this.$element.val(n).trigger("change")},r.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._sync),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&this.$element[0].removeEventListener("DOMAttrModified",this._sync,!1),this._sync=null,this.$element.off(".pumselect2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("pumselect2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("pumselect2"),this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null},r.prototype.render=function(){var t=e('<span class="pumselect2 pumselect2-container"><span class="selection"></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>');return t.attr("dir",this.options.get("dir")),this.$container=t,this.$container.addClass("pumselect2-container--"+this.options.get("theme")),t.data("element",this.$element),t},r}),t.define("pumselect2/compat/utils",["jquery"],function(e){function t(t,n,i){var r,s,o=[];r=e.trim(t.attr("class")),r&&(r=""+r,e(r.split(/\s+/)).each(function(){0===this.indexOf("pumselect2-")&&o.push(this)})),r=e.trim(n.attr("class")),r&&(r=""+r,e(r.split(/\s+/)).each(function(){0!==this.indexOf("pumselect2-")&&(s=i(this),null!=s&&o.push(s))})),t.attr("class",o.join(" "));
|
3 |
+
}return{syncCssClasses:t}}),t.define("pumselect2/compat/containerCss",["jquery","./utils"],function(e,t){function n(e){return null}function i(){}return i.prototype.render=function(i){var r=i.call(this),s=this.options.get("containerCssClass")||"";e.isFunction(s)&&(s=s(this.$element));var o=this.options.get("adaptContainerCssClass");if(o=o||n,s.indexOf(":all:")!==-1){s=s.replace(":all:","");var a=o;o=function(e){var t=a(e);return null!=t?t+" "+e:e}}var l=this.options.get("containerCss")||{};return e.isFunction(l)&&(l=l(this.$element)),t.syncCssClasses(r,this.$element,o),r.css(l),r.addClass(s),r},i}),t.define("pumselect2/compat/dropdownCss",["jquery","./utils"],function(e,t){function n(e){return null}function i(){}return i.prototype.render=function(i){var r=i.call(this),s=this.options.get("dropdownCssClass")||"";e.isFunction(s)&&(s=s(this.$element));var o=this.options.get("adaptDropdownCssClass");if(o=o||n,s.indexOf(":all:")!==-1){s=s.replace(":all:","");var a=o;o=function(e){var t=a(e);return null!=t?t+" "+e:e}}var l=this.options.get("dropdownCss")||{};return e.isFunction(l)&&(l=l(this.$element)),t.syncCssClasses(r,this.$element,o),r.css(l),r.addClass(s),r},i}),t.define("pumselect2/compat/initSelection",["jquery"],function(e){function t(e,t,n){n.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `initSelection` option has been deprecated in favor of a custom data adapter that overrides the `current` method. This method is now called multiple times instead of a single time when the instance is initialized. Support will be removed for the `initSelection` option in future versions of Select2"),this.initSelection=n.get("initSelection"),this._isInitialized=!1,e.call(this,t,n)}return t.prototype.current=function(t,n){var i=this;return this._isInitialized?void t.call(this,n):void this.initSelection.call(null,this.$element,function(t){i._isInitialized=!0,e.isArray(t)||(t=[t]),n(t)})},t}),t.define("pumselect2/compat/inputData",["jquery"],function(e){function t(e,t,n){this._currentData=[],this._valueSeparator=n.get("valueSeparator")||",","hidden"===t.prop("type")&&n.get("debug")&&console&&console.warn&&console.warn("Select2: Using a hidden input with Select2 is no longer supported and may stop working in the future. It is recommended to use a `<select>` element instead."),e.call(this,t,n)}return t.prototype.current=function(t,n){function i(t,n){var r=[];return t.selected||e.inArray(t.id,n)!==-1?(t.selected=!0,r.push(t)):t.selected=!1,t.children&&r.push.apply(r,i(t.children,n)),r}for(var r=[],s=0;s<this._currentData.length;s++){var o=this._currentData[s];r.push.apply(r,i(o,this.$element.val().split(this._valueSeparator)))}n(r)},t.prototype.select=function(t,n){if(this.options.get("multiple")){var i=this.$element.val();i+=this._valueSeparator+n.id,this.$element.val(i),this.$element.trigger("change")}else this.current(function(t){e.map(t,function(e){e.selected=!1})}),this.$element.val(n.id),this.$element.trigger("change")},t.prototype.unselect=function(e,t){var n=this;t.selected=!1,this.current(function(e){for(var i=[],r=0;r<e.length;r++){var s=e[r];t.id!=s.id&&i.push(s.id)}n.$element.val(i.join(n._valueSeparator)),n.$element.trigger("change")})},t.prototype.query=function(e,t,n){for(var i=[],r=0;r<this._currentData.length;r++){var s=this._currentData[r],o=this.matches(t,s);null!==o&&i.push(o)}n({results:i})},t.prototype.addOptions=function(t,n){var i=e.map(n,function(t){return e.data(t[0],"data")});this._currentData.push.apply(this._currentData,i)},t}),t.define("pumselect2/compat/matcher",["jquery"],function(e){function t(t){function n(n,i){var r=e.extend(!0,{},i);if(null==n.term||""===e.trim(n.term))return r;if(i.children){for(var s=i.children.length-1;s>=0;s--){var o=i.children[s],a=t(n.term,o.text,o);a||r.children.splice(s,1)}if(r.children.length>0)return r}return t(n.term,i.text,i)?r:null}return n}return t}),t.define("pumselect2/compat/query",[],function(){function e(e,t,n){n.get("debug")&&window.console&&console.warn&&console.warn("Select2: The `query` option has been deprecated in favor of a custom data adapter that overrides the `query` method. Support will be removed for the `query` option in future versions of Select2."),e.call(this,t,n)}return e.prototype.query=function(e,t,n){t.callback=n;var i=this.options.get("query");i.call(null,t)},e}),t.define("pumselect2/dropdown/attachContainer",[],function(){function e(e,t,n){e.call(this,t,n)}return e.prototype.position=function(e,t,n){var i=n.find(".dropdown-wrapper");i.append(t),t.addClass("pumselect2-dropdown--below"),n.addClass("pumselect2-container--below")},e}),t.define("pumselect2/dropdown/stopPropagation",[],function(){function e(){}return e.prototype.bind=function(e,t,n){e.call(this,t,n);var i=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$dropdown.on(i.join(" "),function(e){e.stopPropagation()})},e}),t.define("pumselect2/selection/stopPropagation",[],function(){function e(){}return e.prototype.bind=function(e,t,n){e.call(this,t,n);var i=["blur","change","click","dblclick","focus","focusin","focusout","input","keydown","keyup","keypress","mousedown","mouseenter","mouseleave","mousemove","mouseover","mouseup","search","touchend","touchstart"];this.$selection.on(i.join(" "),function(e){e.stopPropagation()})},e}),function(n){"function"==typeof t.define&&t.define.amd?t.define("jquery-mousewheel",["jquery"],n):"object"==typeof exports?module.exports=n:n(e)}(function(e){function t(t){var o=t||window.event,a=l.call(arguments,1),u=0,d=0,p=0,h=0,f=0,m=0;if(t=e.event.fix(o),t.type="mousewheel","detail"in o&&(p=o.detail*-1),"wheelDelta"in o&&(p=o.wheelDelta),"wheelDeltaY"in o&&(p=o.wheelDeltaY),"wheelDeltaX"in o&&(d=o.wheelDeltaX*-1),"axis"in o&&o.axis===o.HORIZONTAL_AXIS&&(d=p*-1,p=0),u=0===p?d:p,"deltaY"in o&&(p=o.deltaY*-1,u=p),"deltaX"in o&&(d=o.deltaX,0===p&&(u=d*-1)),0!==p||0!==d){if(1===o.deltaMode){var g=e.data(this,"mousewheel-line-height");u*=g,p*=g,d*=g}else if(2===o.deltaMode){var v=e.data(this,"mousewheel-page-height");u*=v,p*=v,d*=v}if(h=Math.max(Math.abs(p),Math.abs(d)),(!s||h<s)&&(s=h,i(o,h)&&(s/=40)),i(o,h)&&(u/=40,d/=40,p/=40),u=Math[u>=1?"floor":"ceil"](u/s),d=Math[d>=1?"floor":"ceil"](d/s),p=Math[p>=1?"floor":"ceil"](p/s),c.settings.normalizeOffset&&this.getBoundingClientRect){var y=this.getBoundingClientRect();f=t.clientX-y.left,m=t.clientY-y.top}return t.deltaX=d,t.deltaY=p,t.deltaFactor=s,t.offsetX=f,t.offsetY=m,t.deltaMode=0,a.unshift(t,u,d,p),r&&clearTimeout(r),r=setTimeout(n,200),(e.event.dispatch||e.event.handle).apply(this,a)}}function n(){s=null}function i(e,t){return c.settings.adjustOldDeltas&&"mousewheel"===e.type&&t%120===0}var r,s,o=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],a="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],l=Array.prototype.slice;if(e.event.fixHooks)for(var u=o.length;u;)e.event.fixHooks[o[--u]]=e.event.mouseHooks;var c=e.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var n=a.length;n;)this.addEventListener(a[--n],t,!1);else this.onmousewheel=t;e.data(this,"mousewheel-line-height",c.getLineHeight(this)),e.data(this,"mousewheel-page-height",c.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var n=a.length;n;)this.removeEventListener(a[--n],t,!1);else this.onmousewheel=null;e.removeData(this,"mousewheel-line-height"),e.removeData(this,"mousewheel-page-height")},getLineHeight:function(t){var n=e(t),i=n["offsetParent"in e.fn?"offsetParent":"parent"]();return i.length||(i=e("body")),parseInt(i.css("fontSize"),10)||parseInt(n.css("fontSize"),10)||16},getPageHeight:function(t){return e(t).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}),t.define("jquery.pumselect2",["jquery","jquery-mousewheel","./pumselect2/core","./pumselect2/defaults"],function(e,t,n,i){if(null==e.fn.pumselect2){var r=["open","close","destroy"];e.fn.pumselect2=function(t){if(t=t||{},"object"==typeof t)return this.each(function(){var i=e.extend(!0,{},t);new n(e(this),i)}),this;if("string"==typeof t){var i;return this.each(function(){var n=e(this).data("pumselect2");null==n&&window.console&&console.error&&console.error("The pumselect2('"+t+"') method was called on an element that is not using Select2.");var r=Array.prototype.slice.call(arguments,1);i=n[t].apply(n,r)}),e.inArray(t,r)>-1?this:i}throw new Error("Invalid arguments for Select2: "+t)}}return null==e.fn.pumselect2.defaults&&(e.fn.pumselect2.defaults=i),n}),{define:t.define,require:t.require}}(),n=t.require("jquery.pumselect2");return e.fn.pumselect2.amd=t,n}),function(e){"use strict";var t={init:function(){e(".pum-color-picker").filter(":not(.pum-color-picker-initialized)").addClass("pum-color-picker-initialized").wpColorPicker({change:function(t,n){e(t.target).trigger("colorchange",n)},clear:function(t){e(t.target).prev().trigger("colorchange").wpColorPicker("close")}})}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.colorpicker=t,e(document).on("click",".iris-palette",function(){e(this).parents(".wp-picker-active").find("input.pum-color-picker").trigger("change"),setTimeout(PopMakeAdmin.update_theme,500)}).on("colorchange",function(t,n){var i=e(t.target),r=i.parents("tr").next("tr.background-opacity"),s="";void 0!==n&&void 0!==n.color&&(s=n.color.toString()),i.hasClass("background-color")&&("string"==typeof s&&s.length?r.show():r.hide()),i.val(s),"popup_theme"===e("form#post input#post_type").val()&&PopMakeAdmin.update_theme()}).on("pum_init",t.init)}(jQuery),function(e){"use strict";var t={init:function(){t.checkDependencies()},checkDependencies:function(t){var n=e(t);t=n.length?n:e("[data-pum-dependencies]:not([data-pum-processed-dependencies])"),t.each(function(){var t,n=e(this),i=n.data("id"),r=n.data("pum-processed-dependencies")||{},s=Object.keys(r).length,o=0,a=n.data("pum-dependent-fields");if(!n.data("pum-processed-dependencies")){r=n.data("pum-dependencies"),"string"==typeof r&&(r=JSON.parse(r));for(t in r)r.hasOwnProperty(t)&&("string"==typeof r[t]?r[t].indexOf(",")!==-1?r[t]=r[t].split(","):r[t]=[r[t]]:"number"==typeof r[t]&&(r[t]=[r[t]]));s=Object.keys(r).length,n.data("pum-processed-dependencies",r).attr("data-pum-processed-dependencies",r)}a||(a=e.map(r,function(t,n){var i=e('.pum-field[data-id="'+n+'"]');return i.length?i.eq(0):null}),n.data("pum-dependent-fields",a)),e(a).each(function(){var t,a=e(this),l=a.find(":input:first"),u=a.data("id"),c=l.val(),d=r[u],p=a.data("pum-field-dependents")||[];if(p.indexOf(i)===-1&&(p.push(i),a.data("pum-field-dependents",p)),"undefined"==typeof d||null===d)return n.removeClass("pum-dependencies-met").hide(0).trigger("pumFormDependencyUnmet"),!1;if(a.hasClass("pum-field-radio")&&(c=a.find(":input:checked").val()),a.hasClass("pum-field-multicheck")&&(c=[],a.find(":checkbox:checked").each(function(t){c[t]=e(this).val(),"string"!=typeof c[t]||isNaN(parseInt(c[t]))||(c[t]=parseInt(c[t]))})),a.hasClass("pum-field-select")||a.hasClass("pum-field-radio"))t=d&&d.indexOf(c)!==-1;else if(a.hasClass("pum-field-checkbox"))t=d===l.is(":checked");else if(a.hasClass("pum-field-multicheck"))if(Array.isArray(d)){t=!1;for(var h=0;h<d.length;h++)c.indexOf(d[h])!==-1&&(t=!0)}else t=c.indexOf(d)!==-1;else t=Array.isArray(d)?d.indexOf(c)!==-1:d==c;return t?(o++,void(o===s&&n.addClass("pum-dependencies-met").show(0).trigger("pumFormDependencyMet"))):(n.removeClass("pum-dependencies-met").hide(0).trigger("pumFormDependencyUnmet"),!1)})})},form_check:function(){e(document).trigger("pum_form_check")},is_field:function(e){if("object"!=typeof e)return!1;var t=[void 0===e.type&&(void 0!==e.label||void 0!==e.desc),void 0!==e.type&&"string"==typeof e.type];return t.indexOf(!0)>=0},flattenFields:function(e){var n={},i=e.tabs||{},r=e.sections||{},s=e.fields||{};return Object.keys(i).length&&Object.keys(r).length?_.each(s,function(e,i){"object"==typeof e&&Object.keys(e).length&&_.each(e,function(e,i){if("object"==typeof e&&Object.keys(e).length){if(t.is_field(e)){var r={};r[i]=e,i="main",e=r}_.each(e,function(e){n[e.id]=e})}})}):Object.keys(i).length?_.each(s,function(e,t){"object"==typeof e&&Object.keys(e).length&&_.each(e,function(e){n[e.id]=e})}):Object.keys(r).length?_.each(s,function(e,t){_.each(e,function(e){n[e.id]=e})}):(s=t.parseFields(s,values),_.each(s,function(e){n[e.id]=e})),n},parseFields:function(e,t){return t=t||{},_.each(e,function(n,i){e[i]=PUM_Admin.models.field(n),"object"!=typeof e[i].meta&&(e[i].meta={}),void 0!==t[i]&&(e[i].value=t[i]),""===e[i].id&&(e[i].id=i)}),e},renderTab:function(){},renderSection:function(){},render:function(n,i,r){var s,o=[],a={},l=e.extend(!0,{id:"",tabs:{},sections:{},fields:{},maintabs:{},subtabs:{}},n),u=e.extend({id:l.id,classes:[],tabs:{},vertical:!0,form:!0,meta:{"data-min-height":250}},l.maintabs),c=e.extend({classes:["link-tabs","sub-tabs"],tabs:{}},l.subtabs),d=["pum-dynamic-form"];return i=i||{},Object.keys(l.tabs).length&&Object.keys(l.sections).length?(d.push("tabbed-content"),_.each(l.fields,function(n,r){"object"==typeof n&&Object.keys(n).length&&(void 0===u.tabs[r]&&(u.tabs[r]={label:l.tabs[r],content:""}),c=e.extend(c,{id:l.id+"-"+r+"-subtabs",tabs:{}}),_.each(n,function(e,n){if("object"==typeof e&&Object.keys(e).length){if(t.is_field(e)){var s={};s[n]=e,n="main",e=s}void 0===c.tabs[n]&&(c.tabs[n]={label:l.sections[r][n],content:""}),e=t.parseFields(e,i),_.each(e,function(e){a[e.id]=e,c.tabs[n].content+=PUM_Admin.templates.field(e)}),""===c.tabs[n].content&&delete c.tabs[n]}}),Object.keys(c.tabs).length?u.tabs[r].content=PUM_Admin.templates.tabs(c):delete u.tabs[r])}),Object.keys(u.tabs).length&&(s=PUM_Admin.templates.tabs(u))):Object.keys(l.tabs).length?(d.push("tabbed-content"),_.each(l.fields,function(e,n){"object"==typeof e&&Object.keys(e).length&&(void 0===u.tabs[n]&&(u.tabs[n]={label:l.tabs[n],content:""}),o=[],e=t.parseFields(e,i),_.each(e,function(e){a[e.id]=e,o.push(PUM_Admin.templates.field(e))}),o.length?u.tabs[n].content=PUM_Admin.templates.section({fields:o}):delete u.tabs[n])}),Object.keys(u.tabs).length&&(s=PUM_Admin.templates.tabs(u))):Object.keys(l.sections).length?_.each(l.fields,function(e,n){o=[],o.push(PUM_Admin.templates.field({type:"heading",desc:l.sections[n]||""})),e=t.parseFields(e,i),_.each(e,function(e){a[e.id]=e,o.push(PUM_Admin.templates.field(e))}),s+=PUM_Admin.templates.section({fields:o})}):(l.fields=t.parseFields(l.fields,i),_.each(l.fields,function(e){a[e.id]=e,o.push(PUM_Admin.templates.field(e))}),s=PUM_Admin.templates.section({fields:o})),void 0!==r&&r.length&&r.addClass(d.join(" ")).data("form_fields",a).html(s).trigger("pum_init"),s},parseValues:function(e,t){if(t=t||!1,!t)return e;for(var n in t)t.hasOwnProperty(n)&&(e.hasOwnProperty(n+"_unit")&&(e[n]+=e[n+"_unit"],delete e[n+"_unit"]),"undefined"!=typeof e[n]?t[n].allow_html&&!PUM_Admin.utils.htmlencoder.hasEncoded(e[n])&&(e[n]=PUM_Admin.utils.htmlencoder.htmlEncode(e[n])):"checkbox"===t[n].type&&(e[n]=!1));return e}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.forms=t,e(document).on("pum_init pum_form_check",function(){PUM_Admin.forms.init()}).on("pumFieldChanged",".pum-field",function(){var t,n=e(this),i=n.data("pum-field-dependents")||[],r=e();if(i&&!(i.length<=0)){for(t=0;t<i.length;t++)r=r.add('.pum-field[data-id="'+i[t]+'"]');PUM_Admin.forms.checkDependencies(r)}}).on("pumFieldChanged",".pum-field-dynamic-desc",function(){var t=e(this),n=t.find(":input"),i=t.parents(".pum-dynamic-form:first"),r=n.val(),s=i.data("form_fields")||{},o=s[t.data("id")]||{},a=t.find(".pum-desc"),l=t.data("pum-dynamic-desc");switch(o.type){case"radio":r=t.find(":input:checked").val()}o.value=r,l&&l.length&&a.html(PUM_Admin.templates.renderInline(l,o))}).on("change",".pum-field-select select",function(){e(this).parents(".pum-field").trigger("pumFieldChanged")}).on("click",".pum-field-checkbox input",function(){e(this).parents(".pum-field").trigger("pumFieldChanged")}).on("click",".pum-field-multicheck input",function(){e(this).parents(".pum-field").trigger("pumFieldChanged")}).on("click",".pum-field-radio input",function(t){var n=e(this),i=n.parents("li"),r=n.parents(".pum-field");r.trigger("pumFieldChanged"),r.find("li.pum-selected").removeClass("pum-selected"),i.addClass("pum-selected")})}(jQuery),function(e){"use strict";var t,n,i=e("html"),r=e(document),s="a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, *[tabindex], *[contenteditable]",o={_current:null,forceFocus:function(e){PUM_Admin.modals._current&&!PUM_Admin.modals._current.contains(e.target)&&(e.stopPropagation(),PUM_Admin.modals._current.focus())},trapEscapeKey:function(e){27===e.keyCode&&(PUM_Admin.modals.closeAll(),e.preventDefault())},trapTabKey:function(t){if(9===t.keyCode){var n=PUM_Admin.modals._current.find("*").filter(s).filter(":visible"),i=e(":focus"),r=n.length,o=n.index(i);t.shiftKey?0===o&&(n.get(r-1).focus(),t.preventDefault()):o===r-1&&(n.get(0).focus(),t.preventDefault())}},setFocusToFirstItem:function(){PUM_Admin.modals._current.find(".pum-modal-content *").filter(s).filter(":visible").first().focus()},closeAll:function(i){e(".pum-modal-background").off("keydown.pum_modal").hide(0,function(){e("html").css({overflow:"visible",width:"auto"}),t&&(t.attr("aria-hidden","false"),t=null),n.length&&n.focus(),PUM_Admin.modals._current=null,r.off("focus.pum_modal"),void 0!==i&&i()}).attr("aria-hidden","true")},show:function(r,s){e(".pum-modal-background").off("keydown.pum_modal").hide(0).attr("aria-hidden","true"),i.data("origwidth",i.innerWidth()).css({overflow:"hidden",width:i.innerWidth()});var o=e(":focus");o.parents(".pum-modal-wrap").length||(n=o),PUM_Admin.modals._current=e(r),PUM_Admin.modals._current.on("keydown.pum_modal",function(e){PUM_Admin.modals.trapEscapeKey(e),PUM_Admin.modals.trapTabKey(e)}).show(0,function(){t=e("body > *").filter(":visible").not(PUM_Admin.modals._current),t.attr("aria-hidden","true"),PUM_Admin.modals._current.trigger("pum_init").on("focus.pum_modal",PUM_Admin.modals.forceFocus),PUM_Admin.modals.setFocusToFirstItem(),void 0!==s&&s()}).attr("aria-hidden","false")},remove:function(t){e(t).remove()},replace:function(t,n){PUM_Admin.modals.remove(e.trim(t)),e("body").append(e.trim(n))},reload:function(t,n,i){PUM_Admin.modals.replace(t,n),PUM_Admin.modals.show(t,i),e(t).trigger("pum_init")}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.modals=o,e(document).on("click",".pum-modal-background, .pum-modal-wrap .cancel, .pum-modal-wrap .pum-modal-close",function(t){var n=e(t.target);(n.hasClass("cancel")||n.hasClass("pum-modal-close")||n.hasClass("submitdelete"))&&(PUM_Admin.modals.closeAll(),t.preventDefault(),t.stopPropagation())})}(jQuery),function(e){"use strict";var t={field:function(t){return e.extend(!0,{},{type:"text",id:"",id_prefix:"",name:"",label:null,placeholder:"",desc:null,dynamic_desc:null,size:"regular",classes:[],dependencies:"",value:null,select2:!1,allow_html:!1,multiple:!1,as_array:!1,options:[],object_type:null,object_key:null,std:null,min:0,max:50,step:1,unit:"px",units:{},required:!1,desc_position:"bottom",meta:{}},t)}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.models=t}(jQuery),function(e){"use strict";var t={cloneables:{slider:e('<input type="range" class="pum-range-slider" />'),plus:e('<button type="button" class="pum-range-plus">+</button>'),minus:e('<button type="button" class="pum-range-minus">-</button>')},init:function(){e(".pum-field-rangeslider:not(.pum-rangeslider-initialized)").each(function(){var n=e(this).addClass("pum-rangeslider-initialized"),i=n.find("input.pum-range-manual"),r=t.cloneables.slider.clone(),s=t.cloneables.plus.clone(),o=t.cloneables.minus.clone(),a={force:i.data("force-minmax"),min:parseInt(i.attr("min"),10)||0,max:parseInt(i.attr("max"),10)||100,step:parseInt(i.attr("step"),10)||1,value:parseInt(i.attr("value"),10)||0};a.force&&a.value>a.max&&(a.value=a.max,i.val(a.value)),r.prop({min:a.min||0,max:a.force||a.max&&a.max>a.value?a.max:1.5*a.value,step:a.step||1.5*a.value/100,value:a.value}).on("change input",function(){i.trigger("input")}),i.next().after(o,s),i.before(r)})}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.rangesliders=t,e(document).on("pum_init",PUM_Admin.rangesliders.init).on("input",".pum-field-rangeslider.pum-rangeslider-initialized .pum-range-slider",function(){var t=e(this);t.siblings(".pum-range-manual").val(t.val())}).on("change",".pum-range-manual",function(){var t=e(this),n=parseInt(t.prop("max"),0),i=parseInt(t.prop("min"),0),r=parseInt(t.prop("step"),0),s=t.data("force-minmax"),o=parseInt(t.val(),0),a=t.prev();isNaN(o)&&(o=a.val()),s&&o>n?o=n:s&&o<i&&(o=i),t.val(o).trigger("input"),a.prop({max:s||n&&n>o?n:1.5*o,step:r||1.5*o/100,value:o})}).on("click",".pum-range-plus",function(t){var n=e(this).siblings(".pum-range-manual"),i=parseInt(n.prop("max"),0),r=parseInt(n.prop("step"),0),s=n.data("force-minmax"),o=parseInt(n.val(),0),a=n.prev();t.preventDefault(),o+=r,isNaN(o)&&(o=a.val()),s&&o>i&&(o=i),n.val(o).trigger("input"),a.val(o)}).on("click",".pum-range-minus",function(t){var n=e(this).siblings(".pum-range-manual"),i=parseInt(n.prop("min"),0),r=parseInt(n.prop("step"),0),s=n.data("force-minmax"),o=parseInt(n.val(),0),a=n.prev();t.preventDefault(),o-=r,isNaN(o)&&(o=a.val()),s&&o<i&&(o=i),n.val(o).trigger("input"),a.val(o)})}(jQuery),function(e){"use strict";e.fn.pumselect2=e.fn.pumselect2||e.fn.select2;var t={init:function(){e(".pum-field-select2 select").filter(":not(.pumselect2-initialized)").each(function(){var t=e(this),n=t.data("current")||t.val(),i=t.data("objecttype"),r=t.data("objectkey"),s=t.data("objectexcludes")||null,o={width:"100%",multiple:!1,dropdownParent:t.parent()};t.attr("multiple")&&(o.multiple=!0),i&&r&&(o=e.extend(o,{ajax:{url:ajaxurl,dataType:"json",delay:250,data:function(e){return{s:e.term,paged:e.page,action:"pum_object_search",object_type:i,object_key:r,exclude:s}},processResults:function(e,t){return t.page=t.page||1,{results:e.items,pagination:{more:10*t.page<e.total_count}}},cache:!0},cache:!0,escapeMarkup:function(e){return e},maximumInputLength:20,closeOnSelect:!o.multiple,templateResult:PUM_Admin.select2.formatObject,templateSelection:PUM_Admin.select2.formatObjectSelection})),t.addClass("pumselect2-initialized").pumselect2(o),null!==n&&void 0!==n?o.multiple&&"object"!=typeof n&&""!==n?n=[n]:o.multiple||""!==n||(n=null):n=null,i&&r&&null!==n&&("number"==typeof n||n.length)?e.ajax({url:ajaxurl,data:{action:"pum_object_search",object_type:i,object_key:r,exclude:s,include:n&&n.length?"string"==typeof n||"number"==typeof n?[n]:n:null},dataType:"json",success:function(i){e.each(i.items,function(e,n){t.find('option[value="'+n.id+'"]').length||t.prepend('<option value="'+n.id+'">'+n.text+"</option>")}),t.val(n).trigger("change")}}):n&&(o.multiple&&n.length||!o.multiple&&""!==n)?t.val(n).trigger("change"):null===n&&t.val(n).trigger("change")})},formatObject:function(e){return e.text},formatObjectSelection:function(e){return e.text||e.text}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.select2=t,e(document).on("pum_init",function(){PUM_Admin.select2.init()})}(jQuery),function(e,t){if("function"!=typeof window.$$){var n,i,r={},s={};window.$$=function(o,a){return a?((n=a.selector)&&(a=n),i=s[a],i===t&&(i=s[a]={}),n=i[o],n!==t?n:i[o]=e(o,$$(a))):(n=r[o],n!==t?n:r[o]=e(o))},window.$$clear=function(e,i){i?((n=i.selector)&&(i=n),e&&(n=s[i])&&(n[e]=t),s[i]=t):e?(r[e]=t,s[e]=t):(r={},s={})},window.$$fresh=function(e,t){return $$clear(e,t),$$(e,t)}}}(jQuery),function(e,t){if("function"==typeof define&&define.amd)define(["exports","jquery"],function(e,n){return t(e,n)});else if("undefined"!=typeof exports){var n=require("jquery");t(exports,n)}else t(e,e.jQuery||e.Zepto||e.ender||e.$)}(this,function(e,t){function n(e,n){function r(e,t,n){return e[t]=n,e}function s(e,t){var n,s=e.match(i.key);try{t=JSON.parse(t)}catch(a){}for(;void 0!==(n=s.pop());)if(i.push.test(n)){var l=o(e.replace(/\[\]$/,""));t=r([],l,t)}else i.fixed.test(n)?t=r([],n,t):i.named.test(n)&&(t=r({},n,t));return t}function o(e){return void 0===h[e]&&(h[e]=0),h[e]++}function a(e){switch(t('[name="'+e.name+'"]',n).attr("type")){case"checkbox":return"1"===e.value||e.value;default:return e.value}}function l(t){if(!i.validate.test(t.name))return this;var n=s(t.name,a(t));return p=e.extend(!0,p,n),this}function u(t){if(!e.isArray(t))throw new Error("formSerializer.addPairs expects an Array");for(var n=0,i=t.length;n<i;n++)this.addPair(t[n]);return this}function c(){return p}function d(){return JSON.stringify(c())}var p={},h={};this.addPair=l,this.addPairs=u,this.serialize=c,this.serializeJSON=d}var i={validate:/^[a-z_][a-z0-9_]*(?:\[(?:\d*|[a-z0-9_]+)\])*$/i,key:/[a-z0-9_]+|(?=\[\])/gi,push:/^$/,fixed:/^\d+$/,named:/^[a-z0-9_]+$/i};return n.patterns=i,n.serializeObject=function(){var e;return e=this.is("form")?this.serializeArray():this.find(":input").serializeArray(),new n(t,this).addPairs(e).serialize()},n.serializeJSON=function(){var e;return e=this.is("form")?this.serializeArray():this.find(":input").serializeArray(),new n(t,this).addPairs(e).serializeJSON()},"undefined"!=typeof t.fn&&(t.fn.pumSerializeObject=n.serializeObject,t.fn.pumSerializeJSON=n.serializeJSON),e.FormSerializer=n,n}),function(e){"use strict";var t={init:function(){e(".pum-tabs-container").filter(":not(.pum-tabs-initialized)").each(function(){var t=e(this).addClass("pum-tabs-initialized"),n=t.find("> ul.tabs"),i=n.find("> li:first"),r=t.data("min-height");if(t.hasClass("vertical-tabs")){var s=r&&r>0?r:n.eq(0).outerHeight(!0);t.css({minHeight:s+"px"}),t.parent().innerHeight<s&&t.parent().css({minHeight:s+"px"})}i.trigger("click")})}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.tabs=t,e(document).on("pum_init",PUM_Admin.tabs.init).on("click",".pum-tabs-initialized li.tab",function(t){var n=e(this),i=n.parents(".pum-tabs-container:first"),r=i.find("> ul.tabs > li.tab"),s=i.find("> div.tab-content"),o=n.find("a").attr("href");r.removeClass("active"),s.removeClass("active"),n.addClass("active"),i.find("> div.tab-content"+o).addClass("active"),t.preventDefault()})}(jQuery),function(e){"use strict";var t=pum_admin_vars.I10n,n={render:function(e,t){var n=wp.template(e);return t=t||{},void 0!==t.classes&&Array.isArray(t.classes)&&(t.classes=t.classes.join(" ")),t=PUM_Admin.templates.prepareMeta(t),n(t)},renderInline:function(e,t){var n={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"},i=_.template(e,null,n);return i(t)},shortcode:function(t){var n=e.extend(!0,{},{tag:"",meta:{},has_content:!1,content:""},t),i=n.has_content?"pum-shortcode-w-content":"pum-shortcode";return PUM_Admin.templates.render(i,n)},modal:function(n){var i=e.extend(!0,{},{id:"",title:"",description:"",classes:"",save_button:t.save,cancel_button:t.cancel,content:""},n);return PUM_Admin.templates.render("pum-modal",i)},tabs:function(t){return t=e.extend(!0,{},{id:"",vertical:!1,form:!1,classes:[],tabs:{},meta:{}},t),"string"==typeof t.classes&&(t.classes=[t.classes]),t.form&&t.classes.push("pum-tabbed-form"),t.meta["data-tab-count"]=Object.keys(t.tabs).length,t.classes.push(t.vertical?"vertical-tabs":"horizontal-tabs"),t.classes=t.classes.join(" "),PUM_Admin.templates.render("pum-tabs",t)},section:function(t){var n=e.extend(!0,{},{classes:[],fields:[]},t);return PUM_Admin.templates.render("pum-field-section",n)},fieldArgs:function(t){var n=[],i=e.extend(!0,{},PUM_Admin.models.field(t));switch(void 0===t.std||"checkbox"===t.type||null!==i.value&&i.value!==!1||(i.value=t.std),"string"==typeof i.classes&&(i.classes=i.classes.split(" ")),void 0!==t["class"]&&i.classes.push(t["class"]),void 0!==t.dependencies&&"object"==typeof t.dependencies&&(i.dependencies=JSON.stringify(t.dependencies)),i.required&&(i.meta.required=!0,i.classes.push("pum-required")),"string"==typeof i.dynamic_desc&&i.dynamic_desc.length&&(i.classes.push("pum-field-dynamic-desc"),i.desc=PUM_Admin.templates.renderInline(i.dynamic_desc,i)),i.allow_html&&(i.classes.push("pum-field-"+i.type+"--html"),"string"==typeof i.value&&""!==i.value&&PUM_Admin.utils.htmlencoder.hasEncoded(i.value)&&(i.value=PUM_Admin.utils.htmlencoder.htmlDecode(i.value))),t.type){case"select":case"objectselect":case"postselect":case"taxonomyselect":void 0!==i.options&&(_.each(i.options,function(e,t){var r,s,o=!1;"object"!=typeof e?(null!==i.value&&(i.multiple&&("string"==typeof i.value&&i.value==t||Array.isArray(i.value)&&i.value.indexOf(t)!==-1||!Array.isArray(i.value)&&"object"==typeof i.value&&Object.keys(i.value).length&&void 0!==i.value[t])?o="selected":i.multiple||i.value!=t||(o="selected")),n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{selected:o}}))):(r=t,s=[],_.each(e,function(e,t){var n=!1;null!==i.value&&(i.multiple&&("string"==typeof i.value&&i.value==t||Array.isArray(i.value)&&i.value.indexOf(t)!==-1||!Array.isArray(i.value)&&"object"==typeof i.value&&Object.keys(i.value).length&&void 0!==i.value[t])?n="selected":i.multiple||i.value!=t||(n="selected")),s.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{selected:n}}))}),n.push({label:r,options:s}))}),i.options=n),i.multiple&&(i.meta.multiple=!0,i.as_array&&(i.name+="[]"),i.value&&i.value.length||(i.value=[]),"string"==typeof i.value&&(i.value=[i.value])),"select"!==t.type&&(i.select2=!0,i.classes.push("pum-field-objectselect"),i.classes.push("postselect"===t.type?"pum-field-postselect":"pum-field-taxonomyselect"),i.meta["data-objecttype"]="postselect"===t.type?"post_type":"taxonomy",i.meta["data-objectkey"]="postselect"===t.type?t.post_type:t.taxonomy,i.meta["data-current"]="object"==typeof i.value||Array.isArray(i.value)?JSON.stringify(i.value):i.value),i.select2&&(i.classes.push("pum-field-select2"),i.placeholder&&(i.meta["data-placeholder"]=i.placeholder));break;case"radio":void 0!==i.options&&(_.each(i.options,function(e,t){n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{checked:i.value===t}}))}),i.options=n);break;case"multicheck":void 0!==i.options&&(i.value!==!1&&null!==i.value||(i.value=[]),"string"==typeof i.value&&i.value.indexOf(",")&&(i.value=i.value.split(",")),i.as_array&&(i.name+="[]"),_.each(i.options,function(e,t){n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{checked:Array.isArray(i.value)&&i.value.indexOf(t)!==-1||!Array.isArray(i.value)&&"object"==typeof i.value&&Object.keys(i.value).length&&void 0!==i.value[t]}}))}),i.options=n);break;case"checkbox":switch(typeof i.value){case"object":Array.isArray(i.value)&&1===i.value.length&&"1"===i.value[0].toString()&&(i.value=!0,i.meta.checked=!0);break;case"boolean":i.value&&(i.meta.checked=!0);break;case"string":"true"!==i.value&&"yes"!==i.value&&"1"!==i.value||(i.meta.checked=!0);break;case"number":(1===parseInt(i.value,10)||parseInt(i.value,10)>0)&&(i.meta.checked=!0)}break;case"rangeslider":i.meta.step=i.step,i.meta.min=i.min,i.meta.max=i.max;break;case"textarea":i.meta.cols=i.cols,i.meta.rows=i.rows;break;case"measure":"string"==typeof i.value&&""!==i.value?(i.number=parseInt(i.value),i.unitValue=i.value.replace(i.number,""),i.value=i.number):i.unitValue=null,void 0!==i.units&&(_.each(i.units,function(e,t){var r=!1;i.unitValue==t&&(r="selected"),n.push(PUM_Admin.templates.prepareMeta({label:e,value:t,meta:{selected:r}}))}),i.units=n);break;case"license_key":i.value=e.extend({key:"",license:{},messages:[],status:"empty",expires:!1,classes:!1},i.value),i.classes.push("pum-license-"+i.value.status+"-notice"),i.value.classes&&i.classes.push(i.value.classes)}return i},field:function(t){var n,i=PUM_Admin.templates.fieldArgs(t);
|
4 |
+
return n="pum-field-"+i.type,"objectselfect"!==i.type&&"postselect"!==i.type&&"taxonomyselect"!==i.type||(n="pum-field-select"),e("#tmpl-"+n).length?(i.field=PUM_Admin.templates.render(n,i),PUM_Admin.templates.render("pum-field-wrapper",i)):(console.warn("No field template found for type:"+i.type+" fieldID: "+i.id),"")},prepareMeta:function(e){var t,n=[];for(t in e.meta)e.meta.hasOwnProperty(t)&&("boolean"==typeof e.meta[t]?e.meta[t]&&n.push(_.escape(t)):n.push(_.escape(t)+'="'+_.escape(e.meta[t])+'"'));return e.meta=n.join(" "),e}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.templates=n}(window.jQuery),function(e){"use strict";function t(t,n){return e.inArray(n,t)!==-1}function n(e,t,i){var r=t[0];t.length>1?(e[r]||(e[r]=t[1]?{}:[]),n(e[r],t.slice(1),i)):(r||(r=e.length),e[r]=i)}String.prototype.capitalize=function(){return this.charAt(0).toUpperCase()+this.slice(1)};var i="color,date,datetime,datetime-local,email,hidden,month,number,password,range,search,tel,text,time,url,week".split(","),r="select,textarea".split(","),s=/\[([^\]]*)\]/g,o={EncodeType:"entity",isEmpty:function(e){return!e||(null===e||0==e.length||/^\s+$/.test(e))},arr1:[" ","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","­","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ý","þ","ÿ",""","&","<",">","Œ","œ","Š","š","Ÿ","ˆ","˜"," "," "," ","‌","‍","‎","‏","–","—","‘","’","‚","“","”","„","†","‡","‰","‹","›","€","ƒ","Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω","ϑ","ϒ","ϖ","•","…","′","″","‾","⁄","℘","ℑ","ℜ","™","ℵ","←","↑","→","↓","↔","↵","⇐","⇑","⇒","⇓","⇔","∀","∂","∃","∅","∇","∈","∉","∋","∏","∑","−","∗","√","∝","∞","∠","∧","∨","∩","∪","∫","∴","∼","≅","≈","≠","≡","≤","≥","⊂","⊃","⊄","⊆","⊇","⊕","⊗","⊥","⋅","⌈","⌉","⌊","⌋","⟨","⟩","◊","♠","♣","♥","♦"],arr2:[" ","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","­","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ý","þ","ÿ",""","&","<",">","Œ","œ","Š","š","Ÿ","ˆ","˜"," "," "," ","‌","‍","‎","‏","–","—","‘","’","‚","“","”","„","†","‡","‰","‹","›","€","ƒ","Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω","ϑ","ϒ","ϖ","•","…","′","″","‾","⁄","℘","ℑ","ℜ","™","ℵ","←","↑","→","↓","↔","↵","⇐","⇑","⇒","⇓","⇔","∀","∂","∃","∅","∇","∈","∉","∋","∏","∑","−","∗","√","∝","∞","∠","∧","∨","∩","∪","∫","∴","∼","≅","≈","≠","≡","≤","≥","⊂","⊃","⊄","⊆","⊇","⊕","⊗","⊥","⋅","⌈","⌉","⌊","⌋","〈","〉","◊","♠","♣","♥","♦"],HTML2Numerical:function(e){return this.swapArrayVals(e,this.arr1,this.arr2)},NumericalToHTML:function(e){return this.swapArrayVals(e,this.arr2,this.arr1)},numEncode:function(e){if(this.isEmpty(e))return"";for(var t=[],n=e.length,i=0;i<n;i++){var r=e.charAt(i);r<" "||r>"~"?(t.push("&#"),t.push(r.charCodeAt()),t.push(";")):t.push(r)}return t.join("")},htmlDecode:function(e){var t,n,i=e;if(this.isEmpty(i))return"";i=this.HTML2Numerical(i);var r=i.match(/&#[0-9]{1,5};/g);if(null!=r)for(var s=0;s<r.length;s++)n=r[s],t=n.substring(2,n.length-1),i=t>=-32768&&t<=65535?i.replace(n,String.fromCharCode(t)):i.replace(n,"");return i},htmlEncode:function(e,t){return this.isEmpty(e)?"":(t=t||!1,t&&(e="numerical"==this.EncodeType?e.replace(/&/g,"&"):e.replace(/&/g,"&")),e=this.XSSEncode(e,!1),"numerical"!=this.EncodeType&&t||(e=this.HTML2Numerical(e)),e=this.numEncode(e),t||(e=e.replace(/&#/g,"##AMPHASH##"),e="numerical"==this.EncodeType?e.replace(/&/g,"&"):e.replace(/&/g,"&"),e=e.replace(/##AMPHASH##/g,"&#")),e=e.replace(/&#\d*([^\d;]|$)/g,"$1"),t||(e=this.correctEncoding(e)),"entity"==this.EncodeType&&(e=this.NumericalToHTML(e)),e)},XSSEncode:function(e,t){return this.isEmpty(e)?"":(t=t||!0,t?(e=e.replace(/\'/g,"'"),e=e.replace(/\"/g,"""),e=e.replace(/</g,"<"),e=e.replace(/>/g,">")):(e=e.replace(/\'/g,"'"),e=e.replace(/\"/g,"""),e=e.replace(/</g,"<"),e=e.replace(/>/g,">")),e)},hasEncoded:function(e){return!!/&#[0-9]{1,5};/g.test(e)||!!/&[A-Z]{2,6};/gi.test(e)},stripUnicode:function(e){return e.replace(/[^\x20-\x7E]/g,"")},correctEncoding:function(e){return e.replace(/(&)(amp;)+/,"$1")},swapArrayVals:function(e,t,n){if(this.isEmpty(e))return"";var i;if(t&&n&&t.length==n.length)for(var r=0,s=t.length;r<s;r++)i=new RegExp(t[r],"g"),e=e.replace(i,n[r]);return e},inArray:function(e,t){for(var n=0,i=t.length;n<i;n++)if(t[n]===e)return n;return-1}};o.EncodeType="entity";var a={htmlencoder:o,convert_meta_to_object:function(e){var t,n,i,r={};for(i in e)e.hasOwnProperty(i)&&(t=i.split(/_(.+)?/)[0],n=i.split(/_(.+)?/)[1],void 0===r[t]&&(r[t]={}),r[t][n]=e[i]);return r},object_to_array:function(e){var t,n=[];if("object"==typeof e){for(t in e)n.push(e[t]);e=n}return e},checked:function(e,t,n){var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t?i=!0:e==t&&(i=!0),void 0!==n&&n?i?' checked="checked"':"":i},selected:function(e,t,n){var i=!1;return"object"==typeof e&&"string"==typeof t&&jQuery.inArray(t,e)!==-1?i=!0:"object"==typeof t&&"string"==typeof e&&jQuery.inArray(e,t)!==-1?i=!0:e===t&&(i=!0),void 0!==n&&n?i?' selected="selected"':"":i},convert_hex:function(e,t){if(void 0===e)return"";void 0===t&&(t=100),e=e.replace("#","");var n=parseInt(e.substring(0,2),16),i=parseInt(e.substring(2,4),16),r=parseInt(e.substring(4,6),16),s="rgba("+n+","+i+","+r+","+t/100+")";return s},debounce:function(e,t){var n;return function(){var i=this,r=arguments;window.clearTimeout(n),n=window.setTimeout(function(){e.apply(i,r)},t)}},throttle:function(e,t){var n=!1,i=function(){n=!1};return function(){n||(e(),window.setTimeout(i,t),n=!0)}},serializeForm:function(o){e.extend({},o);var a={},l=e.extend(!0,{include:[],exclude:[],includeByClass:""},o);return this.find(":input").each(function(){var o;!this.name||this.disabled||t(l.exclude,this.name)||l.include.length&&!t(l.include,this.name)||this.className.indexOf(l.includeByClass)===-1||(o=this.name.replace(s,"[$1").split("["),o[0]&&(this.checked||t(i,this.type)||t(r,this.nodeName.toLowerCase()))&&("checkbox"===this.type&&o.push(""),n(a,o,e(this).val())))}),a}};window.PUM_Admin=window.PUM_Admin||{},window.PUM_Admin.utils=a,window.PUMUtils=a,e.fn.pumSerializeForm=a.serializeForm}(jQuery);
|
classes/AssetCache.php
CHANGED
@@ -309,6 +309,10 @@ class PUM_AssetCache {
|
|
309 |
|
310 |
$popup = pum_get_popup( $query->post->ID );
|
311 |
|
|
|
|
|
|
|
|
|
312 |
ob_start();
|
313 |
|
314 |
if ( $popup->get_setting( 'zindex', false ) ) {
|
@@ -317,7 +321,7 @@ class PUM_AssetCache {
|
|
317 |
}
|
318 |
|
319 |
// Allow per popup CSS additions.
|
320 |
-
do_action( 'pum_generate_popup_css', $
|
321 |
|
322 |
$popup_css .= ob_get_clean();
|
323 |
|
309 |
|
310 |
$popup = pum_get_popup( $query->post->ID );
|
311 |
|
312 |
+
if ( ! pum_is_popup( $popup ) ) {
|
313 |
+
continue;
|
314 |
+
}
|
315 |
+
|
316 |
ob_start();
|
317 |
|
318 |
if ( $popup->get_setting( 'zindex', false ) ) {
|
321 |
}
|
322 |
|
323 |
// Allow per popup CSS additions.
|
324 |
+
do_action( 'pum_generate_popup_css', $popup->ID );
|
325 |
|
326 |
$popup_css .= ob_get_clean();
|
327 |
|
classes/Extension/Updater.php
CHANGED
@@ -472,7 +472,7 @@ class PUM_Extension_Updater {
|
|
472 |
|
473 |
$data = array(
|
474 |
'timeout' => strtotime( '+3 hours', current_time( 'timestamp' ) ),
|
475 |
-
'value' =>
|
476 |
);
|
477 |
|
478 |
update_option( $cache_key, $data );
|
472 |
|
473 |
$data = array(
|
474 |
'timeout' => strtotime( '+3 hours', current_time( 'timestamp' ) ),
|
475 |
+
'value' => json_encode( $value )
|
476 |
);
|
477 |
|
478 |
update_option( $cache_key, $data );
|
classes/Model/Popup.php
CHANGED
@@ -625,7 +625,7 @@ class PUM_Model_Popup extends PUM_Model_Post {
|
|
625 |
'js_only' => null,
|
626 |
) );
|
627 |
|
628 |
-
$cache_key = hash( 'md5',
|
629 |
|
630 |
// Check if these exclusion filters have already been applied and prevent extra processing.
|
631 |
$conditions = isset( $this->conditions_filtered[ $cache_key ] ) ? $this->conditions_filtered[ $cache_key ] : false;
|
625 |
'js_only' => null,
|
626 |
) );
|
627 |
|
628 |
+
$cache_key = hash( 'md5', json_encode( $filters ) );
|
629 |
|
630 |
// Check if these exclusion filters have already been applied and prevent extra processing.
|
631 |
$conditions = isset( $this->conditions_filtered[ $cache_key ] ) ? $this->conditions_filtered[ $cache_key ] : false;
|
classes/Privacy.php
CHANGED
@@ -369,19 +369,33 @@ class PUM_Privacy {
|
|
369 |
* @return array
|
370 |
*/
|
371 |
public static function get_all_cookies() {
|
372 |
-
$popups = PUM_Popups::get_all()
|
373 |
$cookies = array();
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
}
|
383 |
}
|
384 |
-
|
|
|
|
|
|
|
385 |
}
|
386 |
|
387 |
return apply_filters( 'pum_privacy_get_all_cookies', $cookies );
|
369 |
* @return array
|
370 |
*/
|
371 |
public static function get_all_cookies() {
|
372 |
+
$popups = PUM_Popups::get_all();
|
373 |
$cookies = array();
|
374 |
+
|
375 |
+
if ( $popups->have_posts() ) {
|
376 |
+
while ( $popups->have_posts() ) : $popups->next_post();
|
377 |
+
// Set this popup as the global $current.
|
378 |
+
PUM_Site_Popups::current_popup( $popups->post );
|
379 |
+
|
380 |
+
$popup = pum_get_popup( $popups->post->ID );
|
381 |
+
|
382 |
+
if ( ! pum_is_popup( $popup ) ) {
|
383 |
+
continue;
|
384 |
+
}
|
385 |
+
|
386 |
+
$pcookies = $popup->get_setting( 'cookies', array() );
|
387 |
+
|
388 |
+
if ( ! empty( $pcookies ) ) {
|
389 |
+
foreach ( $pcookies as $cookie ) {
|
390 |
+
if ( ! empty ( $cookie['settings']['name'] ) ) {
|
391 |
+
$cookies[ $cookie['settings']['name'] ] = $cookie['settings']['name'];
|
392 |
+
}
|
393 |
}
|
394 |
}
|
395 |
+
endwhile;
|
396 |
+
|
397 |
+
// Clear the global $current.
|
398 |
+
PUM_Site_Popups::current_popup( null );
|
399 |
}
|
400 |
|
401 |
return apply_filters( 'pum_privacy_get_all_cookies', $cookies );
|
classes/Utils/Array.php
CHANGED
@@ -350,11 +350,13 @@ class PUM_Utils_Array {
|
|
350 |
return html_entity_decode( (string) $data, ENT_QUOTES, 'UTF-8' );
|
351 |
}
|
352 |
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
|
|
|
|
358 |
}
|
359 |
}
|
360 |
|
350 |
return html_entity_decode( (string) $data, ENT_QUOTES, 'UTF-8' );
|
351 |
}
|
352 |
|
353 |
+
if ( is_array( $data ) ) {
|
354 |
+
foreach ( (array) $data as $key => $value ) {
|
355 |
+
if ( is_scalar( $value ) ) {
|
356 |
+
$data[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
|
357 |
+
} elseif ( is_array( $value ) ) {
|
358 |
+
$data[ $key ] = self::make_safe_for_json_encode( $value );
|
359 |
+
}
|
360 |
}
|
361 |
}
|
362 |
|
includes/admin/class-pum-admin-upgrades.php
CHANGED
@@ -294,7 +294,7 @@ class PUM_Admin_Upgrades {
|
|
294 |
$this->process_upgrades();
|
295 |
|
296 |
if ( DOING_AJAX ) {
|
297 |
-
echo
|
298 |
'complete' => true,
|
299 |
'status' => sprintf(
|
300 |
'<strong>%s</strong><br/>%s',
|
@@ -659,7 +659,7 @@ class PUM_Admin_Upgrades {
|
|
659 |
|
660 |
$(document).ready(function () {
|
661 |
// Trigger upgrades on page load
|
662 |
-
next_step(<?php echo
|
663 |
update_status('<?php printf( '<strong>%s</strong>', $this->get_upgrade( $this->get_arg( 'pum-upgrade' ) ) ); ?>');
|
664 |
});
|
665 |
}(jQuery, document));
|
294 |
$this->process_upgrades();
|
295 |
|
296 |
if ( DOING_AJAX ) {
|
297 |
+
echo wp_json_encode( array(
|
298 |
'complete' => true,
|
299 |
'status' => sprintf(
|
300 |
'<strong>%s</strong><br/>%s',
|
659 |
|
660 |
$(document).ready(function () {
|
661 |
// Trigger upgrades on page load
|
662 |
+
next_step(<?php echo wp_json_encode( $this->get_args() ); ?>);
|
663 |
update_status('<?php printf( '<strong>%s</strong>', $this->get_upgrade( $this->get_arg( 'pum-upgrade' ) ) ); ?>');
|
664 |
});
|
665 |
}(jQuery, document));
|
includes/admin/upgrades/class-pum-admin-upgrade-routine.php
CHANGED
@@ -56,7 +56,7 @@ class PUM_Admin_Upgrade_Routine {
|
|
56 |
$upgrades->step_up();
|
57 |
|
58 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
59 |
-
echo
|
60 |
'status' => sprintf( __( 'Step %d of approximately %d running', 'popup-maker' ), $upgrades->get_arg( 'step' ), $upgrades->get_arg( 'steps' ) ),
|
61 |
'next' => $upgrades->get_args(),
|
62 |
) );
|
@@ -87,7 +87,7 @@ class PUM_Admin_Upgrade_Routine {
|
|
87 |
$upgrades->set_arg( 'completed', 0 );
|
88 |
$upgrades->set_arg( 'pum-upgrade', $next_routine );
|
89 |
|
90 |
-
echo
|
91 |
'status' => sprintf( '<strong>%s</strong>', $upgrades->get_upgrade( $next_routine ) ),
|
92 |
'next' => $upgrades->get_args(),
|
93 |
) );
|
56 |
$upgrades->step_up();
|
57 |
|
58 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
59 |
+
echo wp_json_encode( array(
|
60 |
'status' => sprintf( __( 'Step %d of approximately %d running', 'popup-maker' ), $upgrades->get_arg( 'step' ), $upgrades->get_arg( 'steps' ) ),
|
61 |
'next' => $upgrades->get_args(),
|
62 |
) );
|
87 |
$upgrades->set_arg( 'completed', 0 );
|
88 |
$upgrades->set_arg( 'pum-upgrade', $next_routine );
|
89 |
|
90 |
+
echo wp_json_encode( array(
|
91 |
'status' => sprintf( '<strong>%s</strong>', $upgrades->get_upgrade( $next_routine ) ),
|
92 |
'next' => $upgrades->get_args(),
|
93 |
) );
|
includes/ajax-calls.php
CHANGED
@@ -19,7 +19,7 @@ function popmake_optin_ajax_call() {
|
|
19 |
$response['success'] = true;
|
20 |
}
|
21 |
$response['new_nonce'] = wp_create_nonce( POPMAKE_NONCE );
|
22 |
-
echo
|
23 |
die();
|
24 |
}
|
25 |
|
@@ -41,7 +41,7 @@ function popmake_popup_preview_content_ajax_call() {
|
|
41 |
header( "Cache-Control: no-cache, must-revalidate" );
|
42 |
header( "Pragma: no-cache" );
|
43 |
header( "Content-type: text/x-json" );
|
44 |
-
echo
|
45 |
die();
|
46 |
}
|
47 |
|
19 |
$response['success'] = true;
|
20 |
}
|
21 |
$response['new_nonce'] = wp_create_nonce( POPMAKE_NONCE );
|
22 |
+
echo wp_json_encode( $response );
|
23 |
die();
|
24 |
}
|
25 |
|
41 |
header( "Cache-Control: no-cache, must-revalidate" );
|
42 |
header( "Pragma: no-cache" );
|
43 |
header( "Content-type: text/x-json" );
|
44 |
+
echo wp_json_encode( $response );
|
45 |
die();
|
46 |
}
|
47 |
|
includes/class-pum.php
CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
7 |
|
8 |
class PUM {
|
9 |
|
10 |
-
const VER = '1.7.
|
11 |
|
12 |
const DB_VER = 8;
|
13 |
|
7 |
|
8 |
class PUM {
|
9 |
|
10 |
+
const VER = '1.7.22';
|
11 |
|
12 |
const DB_VER = 8;
|
13 |
|
includes/general-functions.php
CHANGED
@@ -8,7 +8,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
8 |
if ( ! function_exists( 'maybe_json_attr' ) ) {
|
9 |
function maybe_json_attr( $value, $encode = false ) {
|
10 |
if ( is_object( $value ) || is_array( $value ) ) {
|
11 |
-
return $encode ? htmlspecialchars(
|
12 |
}
|
13 |
return $value;
|
14 |
}
|
8 |
if ( ! function_exists( 'maybe_json_attr' ) ) {
|
9 |
function maybe_json_attr( $value, $encode = false ) {
|
10 |
if ( is_object( $value ) || is_array( $value ) ) {
|
11 |
+
return $encode ? htmlspecialchars( wp_json_encode( $value ) ) : wp_json_encode( $value );
|
12 |
}
|
13 |
return $value;
|
14 |
}
|
includes/integrations/class-pum-cf7.php
CHANGED
@@ -54,7 +54,7 @@ class PUM_CF7_Integration {
|
|
54 |
public static function form_elements( $elements ) {
|
55 |
$form = wpcf7_get_current_contact_form();
|
56 |
|
57 |
-
$settings =
|
58 |
|
59 |
return $elements . "<input type='hidden' class='wpcf7-pum' value='$settings' />";
|
60 |
}
|
54 |
public static function form_elements( $elements ) {
|
55 |
$form = wpcf7_get_current_contact_form();
|
56 |
|
57 |
+
$settings = wp_json_encode( self::form_options( $form->id() ) );
|
58 |
|
59 |
return $elements . "<input type='hidden' class='wpcf7-pum' value='$settings' />";
|
60 |
}
|
includes/integrations/class-pum-gravity-forms.php
CHANGED
@@ -58,7 +58,7 @@ class PUM_Gravity_Forms_Integation {
|
|
58 |
|
59 |
|
60 |
public static function get_form( $form_string, $form ) {
|
61 |
-
$settings =
|
62 |
$field = "<input type='hidden' class='gforms-pum' value='$settings' />";
|
63 |
$form_string = preg_replace( '/(<form.*>)/', "$1 \r\n " . $field, $form_string );
|
64 |
|
58 |
|
59 |
|
60 |
public static function get_form( $form_string, $form ) {
|
61 |
+
$settings = wp_json_encode( self::form_options( $form['id'] ) );
|
62 |
$field = "<input type='hidden' class='gforms-pum' value='$settings' />";
|
63 |
$form_string = preg_replace( '/(<form.*>)/', "$1 \r\n " . $field, $form_string );
|
64 |
|
includes/popup-functions.php
CHANGED
@@ -277,7 +277,7 @@ function popmake_clean_popup_data_attr( $data_attr ) {
|
|
277 |
* @param int $popup_id
|
278 |
*/
|
279 |
function popmake_the_popup_data_attr( $popup_id = null ) {
|
280 |
-
echo 'data-popmake="' . esc_attr(
|
281 |
}
|
282 |
|
283 |
/**
|
277 |
* @param int $popup_id
|
278 |
*/
|
279 |
function popmake_the_popup_data_attr( $popup_id = null ) {
|
280 |
+
echo 'data-popmake="' . esc_attr( wp_json_encode( popmake_get_the_popup_data_attr( $popup_id ) ) ) . '"';
|
281 |
}
|
282 |
|
283 |
/**
|
includes/pum-sdk/freemius/assets/css/admin/connect.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#fs_connect{width:480px;-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.3);box-shadow:0px 1px 2px rgba(0,0,0,0.3);margin:20px 0}@media screen and (max-width: 479px){#fs_connect{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:auto;margin:0 0 0 -10px}}#fs_connect .fs-content{background:#fff;padding:15px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key #sites_list_container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:' \279C'}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#FEFEFE;-moz-transition:background 0.5s ease;-o-transition:background 0.5s ease;-ms-transition:background 0.5s ease;-webkit-transition:background 0.5s ease;transition:background 0.5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions .fs-trigger{font-size:0.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions ul{height:0;overflow:hidden;margin:0}#fs_connect .fs-permissions ul li{margin-bottom:12px}#fs_connect .fs-permissions ul li:last-child{margin-bottom:0}#fs_connect .fs-permissions ul li i.dashicons{float:left;font-size:40px;width:40px;height:40px}#fs_connect .fs-permissions ul li div{margin-left:55px}#fs_connect .fs-permissions ul li div span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li div p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{height:auto;margin:20px 20px 10px 20px}@media screen and (max-width: 479px){#fs_connect .fs-permissions{background:#fff}#fs_connect .fs-permissions .fs-trigger{display:none}#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:#C2EEFF;text-decoration:underline}#fs_connect .fs-visual{padding:12px;line-height:0;background:#fafafa;height:80px;position:relative}#fs_connect .fs-visual .fs-site-icon{position:absolute;left:20px;top:10px}#fs_connect .fs-visual .fs-connect-logo{position:absolute;right:20px;top:10px}#fs_connect .fs-visual .fs-plugin-icon{position:absolute;top:10px;left:50%;margin-left:-40px}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-site-icon,#fs_connect .fs-visual img,#fs_connect .fs-visual object{width:80px;height:80px}#fs_connect .fs-visual .dashicons-wordpress{font-size:64px;background:#01749a;color:#fff;width:64px;height:64px;padding:8px}#fs_connect .fs-visual .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-visual .dashicons-plus.fs-first{left:28%}#fs_connect .fs-visual .dashicons-plus.fs-second{left:65%}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-connect-logo,#fs_connect .fs-visual .fs-site-icon{border:1px solid #ccc;padding:1px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:0.85em;padding:5px;background:rgba(0,0,0,0.05)}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:rgba(0,0,0,0.8);color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,0.8) transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:' \000bb'}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-permissions ul li div{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li i.dashicons{float:right}.rtl #fs_connect .fs-visual .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-visual .fs-connect-logo{right:auto;left:20px}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,0.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:white;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:transparent;top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:52px;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms{background:rgba(140,140,140,0.64)}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa}
|
1 |
+
#fs_connect{width:480px;-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.3);box-shadow:0px 1px 2px rgba(0,0,0,0.3);margin:20px 0}@media screen and (max-width: 479px){#fs_connect{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:auto;margin:0 0 0 -10px}}#fs_connect .fs-content{background:#fff;padding:15px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key #sites_list_container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:' \279C'}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#FEFEFE;-moz-transition:background 0.5s ease;-o-transition:background 0.5s ease;-ms-transition:background 0.5s ease;-webkit-transition:background 0.5s ease;transition:background 0.5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions .fs-trigger{font-size:0.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions ul{height:0;overflow:hidden;margin:0}#fs_connect .fs-permissions ul li{margin-bottom:12px}#fs_connect .fs-permissions ul li:last-child{margin-bottom:0}#fs_connect .fs-permissions ul li i.dashicons{float:left;font-size:40px;width:40px;height:40px}#fs_connect .fs-permissions ul li div{margin-left:55px}#fs_connect .fs-permissions ul li div span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li div p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{height:auto;margin:20px 20px 10px 20px}@media screen and (max-width: 479px){#fs_connect .fs-permissions{background:#fff}#fs_connect .fs-permissions .fs-trigger{display:none}#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:#C2EEFF;text-decoration:underline}#fs_connect .fs-visual{padding:12px;line-height:0;background:#fafafa;height:80px;position:relative}#fs_connect .fs-visual .fs-site-icon{position:absolute;left:20px;top:10px}#fs_connect .fs-visual .fs-connect-logo{position:absolute;right:20px;top:10px}#fs_connect .fs-visual .fs-plugin-icon{position:absolute;top:10px;left:50%;margin-left:-40px}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-site-icon,#fs_connect .fs-visual img,#fs_connect .fs-visual object{width:80px;height:80px}#fs_connect .fs-visual .dashicons-wordpress{font-size:64px;background:#01749a;color:#fff;width:64px;height:64px;padding:8px}#fs_connect .fs-visual .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-visual .dashicons-plus.fs-first{left:28%}#fs_connect .fs-visual .dashicons-plus.fs-second{left:65%}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-connect-logo,#fs_connect .fs-visual .fs-site-icon{border:1px solid #ccc;padding:1px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:0.85em;padding:5px;background:rgba(0,0,0,0.05)}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:rgba(0,0,0,0.8);color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,0.8) transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}#fs_marketing_optin{display:none;margin-top:10px;border:1px solid #ccc;padding:10px;line-height:1.5em}#fs_marketing_optin .fs-message{display:block;margin-bottom:5px;font-size:1.05em;font-weight:600}#fs_marketing_optin.error{border:1px solid #d3135a;background:#fee}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{margin-top:5px;display:block}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:' \000bb'}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-permissions ul li div{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li i.dashicons{float:right}.rtl #fs_connect .fs-visual .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-visual .fs-connect-logo{right:auto;left:20px}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,0.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:white;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:transparent;top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:52px;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms{background:rgba(140,140,140,0.64)}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa}
|
includes/pum-sdk/freemius/assets/css/admin/gdpr-optin-notice.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.fs-notice[data-id^="gdpr_optin_actions"] .underlined{text-decoration:underline}.fs-notice[data-id^="gdpr_optin_actions"] ul .button,.fs-notice[data-id^="gdpr_optin_actions"] ul .action-description{vertical-align:middle}.fs-notice[data-id^="gdpr_optin_actions"] ul .action-description{display:inline-block;margin-left:3px}
|
includes/pum-sdk/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 |
+
}
|
includes/pum-sdk/freemius/assets/scss/admin/connect.scss
CHANGED
@@ -352,6 +352,7 @@ $form_width: 480px;
|
|
352 |
|
353 |
@import "multisite-options";
|
354 |
@import "tooltip";
|
|
|
355 |
|
356 |
.rtl
|
357 |
{
|
352 |
|
353 |
@import "multisite-options";
|
354 |
@import "tooltip";
|
355 |
+
@import "gdpr-consent";
|
356 |
|
357 |
.rtl
|
358 |
{
|
includes/pum-sdk/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 |
+
}
|
includes/pum-sdk/freemius/composer.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "freemius/wordpress-sdk",
|
3 |
+
"description": "Freemius WordPress SDK",
|
4 |
+
"keywords": ["freemius", "wordpress", "plugin", "sdk"],
|
5 |
+
"homepage": "https://freemius.com",
|
6 |
+
"license": "GPL-3.0-only",
|
7 |
+
"require": {
|
8 |
+
"php": ">=5.2"
|
9 |
+
}
|
10 |
+
}
|
includes/pum-sdk/freemius/config.php
CHANGED
@@ -248,6 +248,9 @@
|
|
248 |
if ( ! defined( 'WP_FS__API_CACHE_OPTION_NAME' ) ) {
|
249 |
define( 'WP_FS__API_CACHE_OPTION_NAME', WP_FS___OPTION_PREFIX . 'api_cache' );
|
250 |
}
|
|
|
|
|
|
|
251 |
define( 'WP_FS__OPTIONS_OPTION_NAME', WP_FS___OPTION_PREFIX . 'options' );
|
252 |
|
253 |
/**
|
@@ -282,8 +285,11 @@
|
|
282 |
define( 'WP_FS__TIME_10_MIN_IN_SEC', 600 );
|
283 |
}
|
284 |
// define( 'WP_FS__TIME_15_MIN_IN_SEC', 900 );
|
|
|
|
|
|
|
285 |
if ( ! defined( 'WP_FS__TIME_24_HOURS_IN_SEC' ) ) {
|
286 |
-
define( 'WP_FS__TIME_24_HOURS_IN_SEC',
|
287 |
}
|
288 |
if ( ! defined( 'WP_FS__TIME_WEEK_IN_SEC' ) ) {
|
289 |
define( 'WP_FS__TIME_WEEK_IN_SEC', 7 * WP_FS__TIME_24_HOURS_IN_SEC );
|
@@ -375,4 +381,8 @@
|
|
375 |
define( 'WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED', false );
|
376 |
}
|
377 |
|
378 |
-
#endregion
|
|
|
|
|
|
|
|
248 |
if ( ! defined( 'WP_FS__API_CACHE_OPTION_NAME' ) ) {
|
249 |
define( 'WP_FS__API_CACHE_OPTION_NAME', WP_FS___OPTION_PREFIX . 'api_cache' );
|
250 |
}
|
251 |
+
if ( ! defined( 'WP_FS__GDPR_OPTION_NAME' ) ) {
|
252 |
+
define( 'WP_FS__GDPR_OPTION_NAME', WP_FS___OPTION_PREFIX . 'gdpr' );
|
253 |
+
}
|
254 |
define( 'WP_FS__OPTIONS_OPTION_NAME', WP_FS___OPTION_PREFIX . 'options' );
|
255 |
|
256 |
/**
|
285 |
define( 'WP_FS__TIME_10_MIN_IN_SEC', 600 );
|
286 |
}
|
287 |
// define( 'WP_FS__TIME_15_MIN_IN_SEC', 900 );
|
288 |
+
if ( ! defined( 'WP_FS__TIME_12_HOURS_IN_SEC' ) ) {
|
289 |
+
define( 'WP_FS__TIME_12_HOURS_IN_SEC', 43200 );
|
290 |
+
}
|
291 |
if ( ! defined( 'WP_FS__TIME_24_HOURS_IN_SEC' ) ) {
|
292 |
+
define( 'WP_FS__TIME_24_HOURS_IN_SEC', WP_FS__TIME_12_HOURS_IN_SEC * 2 );
|
293 |
}
|
294 |
if ( ! defined( 'WP_FS__TIME_WEEK_IN_SEC' ) ) {
|
295 |
define( 'WP_FS__TIME_WEEK_IN_SEC', 7 * WP_FS__TIME_24_HOURS_IN_SEC );
|
381 |
define( 'WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED', false );
|
382 |
}
|
383 |
|
384 |
+
#endregion
|
385 |
+
|
386 |
+
if ( ! defined( 'WP_FS__DEMO_MODE' ) ) {
|
387 |
+
define( 'WP_FS__DEMO_MODE', false );
|
388 |
+
}
|
includes/pum-sdk/freemius/includes/class-freemius-abstract.php
CHANGED
@@ -359,7 +359,7 @@
|
|
359 |
#----------------------------------------------------------------------------------
|
360 |
|
361 |
/**
|
362 |
-
* Check if
|
363 |
*
|
364 |
* @since 1.0.4
|
365 |
*
|
359 |
#----------------------------------------------------------------------------------
|
360 |
|
361 |
/**
|
362 |
+
* Check if the user is on the free plan of the product.
|
363 |
*
|
364 |
* @since 1.0.4
|
365 |
*
|
includes/pum-sdk/freemius/includes/class-freemius.php
CHANGED
@@ -533,10 +533,12 @@
|
|
533 |
* @since 1.2.2.7 Even if the menu item was specified to be hidden, when it is the context page, then show the submenu item so the user will have the right context page.
|
534 |
*
|
535 |
* @param string $slug
|
|
|
|
|
536 |
*
|
537 |
* @return bool
|
538 |
*/
|
539 |
-
function is_submenu_item_visible( $slug ) {
|
540 |
if ( $this->is_admin_page( $slug ) ) {
|
541 |
/**
|
542 |
* It is the current context page, so show the submenu item
|
@@ -551,7 +553,7 @@
|
|
551 |
return false;
|
552 |
}
|
553 |
|
554 |
-
if ( $this->is_free_wp_org_theme() ) {
|
555 |
/**
|
556 |
* wp.org themes are limited to a single submenu item, and
|
557 |
* sub-submenu items are most likely not allowed (never verified).
|
@@ -640,7 +642,7 @@
|
|
640 |
* @param string $sdk_prev_version
|
641 |
* @param string $sdk_version
|
642 |
*/
|
643 |
-
function
|
644 |
/**
|
645 |
* @since 1.1.7.3 Fixed unwanted connectivity test cleanup.
|
646 |
*/
|
@@ -648,6 +650,12 @@
|
|
648 |
return;
|
649 |
}
|
650 |
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
if ( version_compare( $sdk_prev_version, '2.0.0', '<' ) &&
|
652 |
version_compare( $sdk_version, '2.0.0', '>=' )
|
653 |
) {
|
@@ -1313,6 +1321,12 @@
|
|
1313 |
add_action( 'init', array( &$this, '_add_default_submenu_items' ), WP_FS__LOWEST_PRIORITY );
|
1314 |
}
|
1315 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1316 |
}
|
1317 |
|
1318 |
if ( $this->is_plugin() ) {
|
@@ -1339,13 +1353,15 @@
|
|
1339 |
add_action( 'customize_register', array( &$this, '_customizer_register' ) );
|
1340 |
}
|
1341 |
|
1342 |
-
add_action( '
|
1343 |
|
1344 |
if ( $this->is_theme() ) {
|
1345 |
add_action( 'admin_init', array( &$this, '_add_tracking_links' ) );
|
1346 |
}
|
1347 |
|
1348 |
add_action( 'admin_init', array( &$this, '_add_license_activation' ) );
|
|
|
|
|
1349 |
$this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) );
|
1350 |
$this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) );
|
1351 |
|
@@ -1362,7 +1378,8 @@
|
|
1362 |
|
1363 |
$this->add_action( 'after_plans_sync', array( &$this, '_check_for_trial_plans' ) );
|
1364 |
|
1365 |
-
$this->add_action( 'sdk_version_update', array( &$this, '
|
|
|
1366 |
$this->add_action(
|
1367 |
'plugin_version_update',
|
1368 |
array( &$this, '_after_version_update' ),
|
@@ -1373,7 +1390,7 @@
|
|
1373 |
|
1374 |
add_action( 'admin_init', array( &$this, '_add_trial_notice' ) );
|
1375 |
add_action( 'admin_init', array( &$this, '_add_affiliate_program_notice' ) );
|
1376 |
-
add_action( '
|
1377 |
|
1378 |
/**
|
1379 |
* Handle request to reset anonymous mode for `get_reconnect_url()`.
|
@@ -1471,6 +1488,13 @@
|
|
1471 |
array( &$this, '_submit_uninstall_reason_action' )
|
1472 |
);
|
1473 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1474 |
if ( ! $this->is_addon() || $this->is_parent_plugin_installed() ) {
|
1475 |
if ( ( $this->is_plugin() && self::is_plugins_page() ) ||
|
1476 |
( $this->is_theme() && self::is_themes_page() )
|
@@ -2025,6 +2049,10 @@
|
|
2025 |
* @since 1.2.2
|
2026 |
*/
|
2027 |
if ( $this->is_theme() ) {
|
|
|
|
|
|
|
|
|
2028 |
$this->_uninstall_plugin_event( false );
|
2029 |
$this->remove_sdk_reference();
|
2030 |
}
|
@@ -2034,6 +2062,14 @@
|
|
2034 |
exit;
|
2035 |
}
|
2036 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2037 |
#endregion
|
2038 |
|
2039 |
#----------------------------------------------------------------------------------
|
@@ -2623,10 +2659,12 @@
|
|
2623 |
|
2624 |
self::$_global_admin_notices = FS_Admin_Notices::instance( 'global' );
|
2625 |
|
2626 |
-
|
2627 |
-
'
|
2628 |
-
|
2629 |
-
|
|
|
|
|
2630 |
|
2631 |
add_action( "wp_ajax_fs_toggle_debug_mode", array( 'Freemius', '_toggle_debug_mode' ) );
|
2632 |
|
@@ -3029,11 +3067,12 @@
|
|
3029 |
* @author Vova Feldman (@svovaf)
|
3030 |
* @since 1.1.7.4
|
3031 |
*
|
3032 |
-
* @param int|null $blog_id
|
|
|
3033 |
*
|
3034 |
* @return object|false
|
3035 |
*/
|
3036 |
-
private function ping( $blog_id = null ) {
|
3037 |
if ( WP_FS__SIMULATE_NO_API_CONNECTIVITY ) {
|
3038 |
return false;
|
3039 |
}
|
@@ -3045,13 +3084,14 @@
|
|
3045 |
return $this->get_api_plugin_scope()->ping(
|
3046 |
$this->get_anonymous_id( $blog_id ),
|
3047 |
array(
|
3048 |
-
'is_update'
|
3049 |
-
'version'
|
3050 |
-
'sdk'
|
3051 |
-
'is_admin'
|
3052 |
-
'is_ajax'
|
3053 |
-
'is_cron'
|
3054 |
-
'
|
|
|
3055 |
)
|
3056 |
);
|
3057 |
}
|
@@ -3102,6 +3142,10 @@
|
|
3102 |
$this->_add_connectivity_issue_message( $pong );
|
3103 |
}
|
3104 |
|
|
|
|
|
|
|
|
|
3105 |
$this->store_connectivity_info( $pong, $is_connected );
|
3106 |
|
3107 |
return $this->_has_api_connection;
|
@@ -3223,6 +3267,18 @@
|
|
3223 |
return wp_get_current_user();
|
3224 |
}
|
3225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3226 |
/**
|
3227 |
* @author Vova Feldman (@svovaf)
|
3228 |
* @since 1.2.1.7
|
@@ -3528,6 +3584,8 @@
|
|
3528 |
$is_connected = $this->get_api_plugin_scope()->is_valid_ping( $pong );
|
3529 |
|
3530 |
if ( $is_connected ) {
|
|
|
|
|
3531 |
$this->store_connectivity_info( $pong, $is_connected );
|
3532 |
|
3533 |
echo $this->get_after_plugin_activation_redirect_url();
|
@@ -3600,6 +3658,8 @@
|
|
3600 |
$is_connected = $this->get_api_plugin_scope()->is_valid_ping( $pong );
|
3601 |
|
3602 |
if ( $is_connected ) {
|
|
|
|
|
3603 |
$this->store_connectivity_info( $pong, $is_connected );
|
3604 |
|
3605 |
echo $this->get_after_plugin_activation_redirect_url();
|
@@ -5993,9 +6053,9 @@
|
|
5993 |
* @return bool
|
5994 |
*/
|
5995 |
function is_plugin_activation() {
|
5996 |
-
|
5997 |
-
|
5998 |
-
|
5999 |
}
|
6000 |
|
6001 |
/**
|
@@ -6012,13 +6072,16 @@
|
|
6012 |
* @since 1.1.7 Do NOT redirect to opt-in when running in network admin mode.
|
6013 |
*/
|
6014 |
if ( $this->is_plugin_activation() ) {
|
6015 |
-
|
6016 |
-
. ( $this->is_plugin() ? '' : $this->_module_type . '_' )
|
6017 |
-
. "{$this->_slug}_activated" );
|
6018 |
|
6019 |
-
$
|
6020 |
-
|
6021 |
-
|
|
|
|
|
|
|
|
|
|
|
6022 |
}
|
6023 |
|
6024 |
if ( fs_request_is_action( $this->get_unique_affix() . '_skip_activation' ) ) {
|
@@ -6039,7 +6102,10 @@
|
|
6039 |
fs_redirect( $this->get_after_activation_url( 'after_delegation_url' ) );
|
6040 |
}
|
6041 |
|
|
|
|
|
6042 |
if ( ! $this->is_addon() &&
|
|
|
6043 |
(
|
6044 |
// Not registered nor anonymous.
|
6045 |
( ! $this->is_registered() && ! $this->is_anonymous() ) ||
|
@@ -6115,8 +6181,6 @@
|
|
6115 |
$this->_show_theme_activation_optin_dialog();
|
6116 |
}
|
6117 |
}
|
6118 |
-
|
6119 |
-
$this->_add_upgrade_action_link();
|
6120 |
}
|
6121 |
|
6122 |
/**
|
@@ -6459,8 +6523,6 @@
|
|
6459 |
/**
|
6460 |
* @author Leo Fajardo (@leorw)
|
6461 |
* @since 1.2.2
|
6462 |
-
*
|
6463 |
-
* @return string
|
6464 |
*/
|
6465 |
private function activate_previous_theme() {
|
6466 |
switch_theme( $this->get_previous_theme_slug() );
|
@@ -6649,9 +6711,7 @@
|
|
6649 |
! $this->_isAutoInstall
|
6650 |
) {
|
6651 |
// Store hint that the plugin was just activated to enable auto-redirection to settings.
|
6652 |
-
|
6653 |
-
. ( $this->is_plugin() ? '' : $this->_module_type . '_' )
|
6654 |
-
. "{$this->_slug}_activated", true );
|
6655 |
}
|
6656 |
|
6657 |
/**
|
@@ -6842,6 +6902,10 @@
|
|
6842 |
$this->clear_install_sync_cron();
|
6843 |
|
6844 |
if ( $this->is_registered() ) {
|
|
|
|
|
|
|
|
|
6845 |
if ( $is_network_deactivation ) {
|
6846 |
// Send deactivation event.
|
6847 |
$this->sync_installs( array(
|
@@ -7102,7 +7166,7 @@
|
|
7102 |
* @param array|null $sites Since 2.0.0. Specific sites.
|
7103 |
* @param bool $skip_all_network Since 2.0.0. If true, skip connection for all sites.
|
7104 |
*/
|
7105 |
-
|
7106 |
$this->_logger->entrance();
|
7107 |
|
7108 |
$this->_admin_notices->remove_sticky( 'connect_account' );
|
@@ -8133,6 +8197,14 @@
|
|
8133 |
} else {
|
8134 |
$theme_data = wp_get_theme();
|
8135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8136 |
$plugin_data = array(
|
8137 |
'Name' => $theme_data->get( 'Name' ),
|
8138 |
'Version' => $theme_data->get( 'Version' ),
|
@@ -9040,7 +9112,7 @@
|
|
9040 |
function is_trial() {
|
9041 |
$this->_logger->entrance();
|
9042 |
|
9043 |
-
if ( ! $this->is_registered() ) {
|
9044 |
return false;
|
9045 |
}
|
9046 |
|
@@ -9199,7 +9271,7 @@
|
|
9199 |
*
|
9200 |
* @return bool
|
9201 |
*/
|
9202 |
-
|
9203 |
return is_array( $this->_licenses ) && ( 0 < count( $this->_licenses ) );
|
9204 |
}
|
9205 |
|
@@ -10362,6 +10434,27 @@
|
|
10362 |
fs_require_template( 'forms/resend-key.php', $vars );
|
10363 |
}
|
10364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10365 |
/**
|
10366 |
* Displays the opt-out dialog box when the user clicks on the "Opt Out" link on the "Plugins"
|
10367 |
* page.
|
@@ -10416,6 +10509,25 @@
|
|
10416 |
$this->add_ajax_action( 'resend_license_key', array( &$this, '_resend_license_key_ajax_action' ) );
|
10417 |
}
|
10418 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10419 |
/**
|
10420 |
* @author Leo Fajardo (@leorw)
|
10421 |
*
|
@@ -10424,7 +10536,7 @@
|
|
10424 |
*/
|
10425 |
function _activate_license_ajax_action() {
|
10426 |
$this->_logger->entrance();
|
10427 |
-
|
10428 |
$this->check_ajax_referer( 'activate_license' );
|
10429 |
|
10430 |
$license_key = trim( fs_request_get( 'license_key' ) );
|
@@ -10535,6 +10647,7 @@
|
|
10535 |
false,
|
10536 |
false,
|
10537 |
false,
|
|
|
10538 |
$sites
|
10539 |
);
|
10540 |
|
@@ -10668,6 +10781,7 @@
|
|
10668 |
false,
|
10669 |
false,
|
10670 |
false,
|
|
|
10671 |
$sites_by_action['allow']
|
10672 |
);
|
10673 |
} else {
|
@@ -10882,6 +10996,16 @@
|
|
10882 |
return ( 'plugins.php' === self::get_current_page() );
|
10883 |
}
|
10884 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10885 |
/**
|
10886 |
* Helper method to check if user in the themes page.
|
10887 |
*
|
@@ -11874,6 +11998,56 @@
|
|
11874 |
return $install_map;
|
11875 |
}
|
11876 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11877 |
/**
|
11878 |
* @author Leo Fajardo (@leorw)
|
11879 |
*
|
@@ -11995,7 +12169,9 @@
|
|
11995 |
static function get_site_blog_id( &$site ) {
|
11996 |
return ( $site instanceof WP_Site ) ?
|
11997 |
$site->blog_id :
|
11998 |
-
$site
|
|
|
|
|
11999 |
}
|
12000 |
|
12001 |
/**
|
@@ -13041,12 +13217,13 @@
|
|
13041 |
* @param string|bool $first
|
13042 |
* @param string|bool $last
|
13043 |
* @param string|bool $license_key
|
13044 |
-
* @param bool $is_uninstall
|
13045 |
-
*
|
13046 |
-
*
|
13047 |
* @param number|bool $trial_plan_id
|
13048 |
-
* @param bool $is_disconnected
|
13049 |
-
* @param
|
|
|
13050 |
*
|
13051 |
* @return string|object
|
13052 |
* @use WP_Error
|
@@ -13059,6 +13236,7 @@
|
|
13059 |
$is_uninstall = false,
|
13060 |
$trial_plan_id = false,
|
13061 |
$is_disconnected = false,
|
|
|
13062 |
$sites = array()
|
13063 |
) {
|
13064 |
$this->_logger->entrance();
|
@@ -13144,8 +13322,12 @@
|
|
13144 |
}
|
13145 |
}
|
13146 |
|
13147 |
-
$
|
13148 |
-
|
|
|
|
|
|
|
|
|
13149 |
|
13150 |
$request = array(
|
13151 |
'method' => 'POST',
|
@@ -13154,42 +13336,7 @@
|
|
13154 |
);
|
13155 |
|
13156 |
$url = WP_FS__ADDRESS . '/action/service/user/install/';
|
13157 |
-
|
13158 |
-
if ( WP_FS__DEBUG_SDK || isset( $_COOKIE['XDEBUG_SESSION'] ) ) {
|
13159 |
-
$url = add_query_arg( 'XDEBUG_SESSION_START', rand( 0, 9999999 ), $url );
|
13160 |
-
$url = add_query_arg( 'XDEBUG_SESSION', 'PHPSTORM', $url );
|
13161 |
-
|
13162 |
-
$request['cookies'] = array(
|
13163 |
-
new WP_Http_Cookie( array(
|
13164 |
-
'name' => 'XDEBUG_SESSION',
|
13165 |
-
'value' => 'PHPSTORM',
|
13166 |
-
) )
|
13167 |
-
);
|
13168 |
-
}
|
13169 |
-
|
13170 |
-
$response = wp_remote_post( $url, $request );
|
13171 |
-
|
13172 |
-
if ( $response instanceof WP_Error ) {
|
13173 |
-
if ( 'https://' === substr( $url, 0, 8 ) &&
|
13174 |
-
isset( $response->errors ) &&
|
13175 |
-
isset( $response->errors['http_request_failed'] )
|
13176 |
-
) {
|
13177 |
-
$http_error = strtolower( $response->errors['http_request_failed'][0] );
|
13178 |
-
|
13179 |
-
if ( false !== strpos( $http_error, 'ssl' ) ||
|
13180 |
-
false !== strpos( $http_error, 'curl error 35' )
|
13181 |
-
) {
|
13182 |
-
// Failed due to old version of cURL or Open SSL (SSLv3 is not supported by CloudFlare).
|
13183 |
-
$url = 'http://' . substr( $url, 8 );
|
13184 |
-
|
13185 |
-
$response = wp_remote_post( $url, array(
|
13186 |
-
'method' => 'POST',
|
13187 |
-
'body' => $params,
|
13188 |
-
'timeout' => 15,
|
13189 |
-
) );
|
13190 |
-
}
|
13191 |
-
}
|
13192 |
-
}
|
13193 |
|
13194 |
if ( is_wp_error( $response ) ) {
|
13195 |
/**
|
@@ -13276,6 +13423,9 @@
|
|
13276 |
$decoded->user_id,
|
13277 |
$decoded->user_public_key,
|
13278 |
$decoded->user_secret_key,
|
|
|
|
|
|
|
13279 |
$decoded->install_id,
|
13280 |
$decoded->install_public_key,
|
13281 |
$decoded->install_secret_key,
|
@@ -13286,6 +13436,9 @@
|
|
13286 |
$decoded->user_id,
|
13287 |
$decoded->user_public_key,
|
13288 |
$decoded->user_secret_key,
|
|
|
|
|
|
|
13289 |
$decoded->installs,
|
13290 |
false
|
13291 |
);
|
@@ -13352,6 +13505,17 @@
|
|
13352 |
|
13353 |
$this->_sync_plans();
|
13354 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13355 |
if ( 1 < count( $installs ) ) {
|
13356 |
// Only network level opt-in can have more than one install.
|
13357 |
$is_network_level_opt_in = true;
|
@@ -13365,6 +13529,8 @@
|
|
13365 |
|
13366 |
$this->do_action( 'after_account_connection', $user, $first_install );
|
13367 |
} else {
|
|
|
|
|
13368 |
// Map site addresses to their blog IDs.
|
13369 |
$address_to_blog_map = $this->get_address_to_blog_map();
|
13370 |
|
@@ -13559,6 +13725,7 @@
|
|
13559 |
fs_request_get( 'user_id' ),
|
13560 |
fs_request_get( 'user_public_key' ),
|
13561 |
fs_request_get( 'user_secret_key' ),
|
|
|
13562 |
$pending_sites_info['blog_ids'],
|
13563 |
$pending_sites_info['license_key'],
|
13564 |
$pending_sites_info['trial_plan_id']
|
@@ -13568,6 +13735,7 @@
|
|
13568 |
fs_request_get( 'user_id' ),
|
13569 |
fs_request_get( 'user_public_key' ),
|
13570 |
fs_request_get( 'user_secret_key' ),
|
|
|
13571 |
fs_request_get( 'install_id' ),
|
13572 |
fs_request_get( 'install_public_key' ),
|
13573 |
fs_request_get( 'install_secret_key' ),
|
@@ -13619,16 +13787,17 @@
|
|
13619 |
* @author Vova Feldman (@svovaf)
|
13620 |
* @since 1.1.7.4
|
13621 |
*
|
13622 |
-
* @param number
|
13623 |
-
* @param string
|
13624 |
-
* @param string
|
13625 |
-
* @param
|
13626 |
-
* @param
|
13627 |
-
* @param string
|
13628 |
-
* @param
|
13629 |
-
* @param bool
|
13630 |
-
*
|
13631 |
-
*
|
|
|
13632 |
*
|
13633 |
* @return string If redirect is `false`, returns the next page the user should be redirected to.
|
13634 |
*/
|
@@ -13636,6 +13805,7 @@
|
|
13636 |
$user_id,
|
13637 |
$user_public_key,
|
13638 |
$user_secret_key,
|
|
|
13639 |
$install_id,
|
13640 |
$install_public_key,
|
13641 |
$install_secret_key,
|
@@ -13673,6 +13843,10 @@
|
|
13673 |
$site = new FS_Site( $site_result );
|
13674 |
$this->_site = $site;
|
13675 |
|
|
|
|
|
|
|
|
|
13676 |
return $this->setup_account(
|
13677 |
$this->_user,
|
13678 |
$this->_site,
|
@@ -13687,13 +13861,14 @@
|
|
13687 |
* @author Leo Fajardo (@leorw)
|
13688 |
* @since 2.0.0
|
13689 |
*
|
13690 |
-
* @param number
|
13691 |
-
* @param string
|
13692 |
-
* @param string
|
13693 |
-
* @param
|
13694 |
-
* @param
|
13695 |
-
* @param bool
|
13696 |
-
* @param bool
|
|
|
13697 |
*
|
13698 |
* @return string If redirect is `false`, returns the next page the user should be redirected to.
|
13699 |
*/
|
@@ -13701,6 +13876,7 @@
|
|
13701 |
$user_id,
|
13702 |
$user_public_key,
|
13703 |
$user_secret_key,
|
|
|
13704 |
$site_ids,
|
13705 |
$license_key = false,
|
13706 |
$trial_plan_id = false,
|
@@ -13708,6 +13884,10 @@
|
|
13708 |
) {
|
13709 |
$user = $this->setup_user( $user_id, $user_public_key, $user_secret_key );
|
13710 |
|
|
|
|
|
|
|
|
|
13711 |
$sites = array();
|
13712 |
foreach ( $site_ids as $site_id ) {
|
13713 |
$sites[] = $this->get_site_info( array( 'blog_id' => $site_id ) );
|
@@ -13722,14 +13902,15 @@
|
|
13722 |
* @author Vova Feldman (@svovaf)
|
13723 |
* @since 2.0.0
|
13724 |
*
|
13725 |
-
* @param number
|
13726 |
-
* @param string
|
13727 |
-
* @param string
|
13728 |
-
* @param
|
13729 |
-
* @param
|
13730 |
-
* @param bool
|
13731 |
-
*
|
13732 |
-
*
|
|
|
13733 |
*
|
13734 |
* @return string If redirect is `false`, returns the next page the user should be redirected to.
|
13735 |
*/
|
@@ -13737,12 +13918,17 @@
|
|
13737 |
$user_id,
|
13738 |
$user_public_key,
|
13739 |
$user_secret_key,
|
|
|
13740 |
array $installs,
|
13741 |
$redirect = true,
|
13742 |
$auto_install = false
|
13743 |
) {
|
13744 |
$this->setup_user( $user_id, $user_public_key, $user_secret_key );
|
13745 |
|
|
|
|
|
|
|
|
|
13746 |
$install_ids = array();
|
13747 |
|
13748 |
foreach ( $installs as $install ) {
|
@@ -14276,7 +14462,8 @@
|
|
14276 |
function _redirect_on_clicked_menu_link() {
|
14277 |
$this->_logger->entrance();
|
14278 |
|
14279 |
-
$page =
|
|
|
14280 |
|
14281 |
$this->_logger->log( 'page = ' . $page );
|
14282 |
|
@@ -14555,7 +14742,7 @@
|
|
14555 |
);
|
14556 |
}
|
14557 |
|
14558 |
-
if ( $this->is_registered() ) {
|
14559 |
$show_account = (
|
14560 |
$this->is_submenu_item_visible( 'account' ) &&
|
14561 |
/**
|
@@ -14602,36 +14789,38 @@
|
|
14602 |
);
|
14603 |
}
|
14604 |
|
14605 |
-
|
14606 |
-
$
|
14607 |
-
|
14608 |
-
|
|
|
14609 |
|
14610 |
-
|
14611 |
-
|
14612 |
-
|
14613 |
-
|
14614 |
-
|
14615 |
-
|
14616 |
-
|
14617 |
-
|
14618 |
-
|
14619 |
-
|
|
|
14620 |
}
|
14621 |
-
}
|
14622 |
|
14623 |
-
|
14624 |
-
|
14625 |
-
|
14626 |
-
|
14627 |
-
|
14628 |
-
|
14629 |
-
|
14630 |
-
|
14631 |
-
|
14632 |
-
|
14633 |
-
|
14634 |
-
|
|
|
14635 |
}
|
14636 |
|
14637 |
if ( 0 < count( $this->_menu_items ) ) {
|
@@ -16512,7 +16701,10 @@
|
|
16512 |
break;
|
16513 |
case 'downgraded':
|
16514 |
$this->_admin_notices->add_sticky(
|
16515 |
-
|
|
|
|
|
|
|
16516 |
'license_expired',
|
16517 |
$hmm_text
|
16518 |
);
|
@@ -16555,7 +16747,10 @@
|
|
16555 |
break;
|
16556 |
case 'trial_expired':
|
16557 |
$this->_admin_notices->add_sticky(
|
16558 |
-
$this->
|
|
|
|
|
|
|
16559 |
'trial_expired',
|
16560 |
$hmm_text
|
16561 |
);
|
@@ -17040,9 +17235,9 @@
|
|
17040 |
|
17041 |
$is_premium = null;
|
17042 |
if ( ! $is_addon ) {
|
17043 |
-
$is_premium = $this->
|
17044 |
} else if ( $this->is_addon_activated( $addon_id ) ) {
|
17045 |
-
$is_premium = self::get_instance_by_id( $addon_id )->
|
17046 |
}
|
17047 |
|
17048 |
// If add-on, then append add-on ID.
|
@@ -18729,26 +18924,24 @@
|
|
18729 |
function _add_upgrade_action_link() {
|
18730 |
$this->_logger->entrance();
|
18731 |
|
18732 |
-
if ( $this->
|
18733 |
-
|
18734 |
-
$this->
|
18735 |
-
|
18736 |
-
|
18737 |
-
|
18738 |
-
|
18739 |
-
|
18740 |
-
|
18741 |
-
}
|
18742 |
|
18743 |
-
|
18744 |
-
|
18745 |
-
|
18746 |
-
|
18747 |
-
|
18748 |
-
|
18749 |
-
|
18750 |
-
|
18751 |
-
}
|
18752 |
}
|
18753 |
}
|
18754 |
|
@@ -18779,6 +18972,18 @@
|
|
18779 |
);
|
18780 |
}
|
18781 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18782 |
/**
|
18783 |
* Adds "Opt in" or "Opt out" link to the main "Plugins" page link actions collection.
|
18784 |
*
|
@@ -19051,6 +19256,90 @@
|
|
19051 |
);
|
19052 |
}
|
19053 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19054 |
/**
|
19055 |
* This method is used to enrich the after upgrade notice instructions when the upgraded
|
19056 |
* license cannot be activated network wide (license quota isn't large enough).
|
@@ -19882,15 +20171,547 @@
|
|
19882 |
'';
|
19883 |
}
|
19884 |
|
19885 |
-
|
19886 |
-
#region
|
19887 |
-
|
19888 |
|
19889 |
/**
|
19890 |
-
*
|
|
|
19891 |
*
|
19892 |
-
* @
|
19893 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19894 |
*
|
19895 |
* @return bool
|
19896 |
*/
|
@@ -19939,4 +20760,4 @@
|
|
19939 |
}
|
19940 |
|
19941 |
#endregion
|
19942 |
-
}
|
533 |
* @since 1.2.2.7 Even if the menu item was specified to be hidden, when it is the context page, then show the submenu item so the user will have the right context page.
|
534 |
*
|
535 |
* @param string $slug
|
536 |
+
* @param bool $ignore_free_wp_org_theme_context This is used to decide if the associated tab should be shown
|
537 |
+
* or hidden.
|
538 |
*
|
539 |
* @return bool
|
540 |
*/
|
541 |
+
function is_submenu_item_visible( $slug, $ignore_free_wp_org_theme_context = false ) {
|
542 |
if ( $this->is_admin_page( $slug ) ) {
|
543 |
/**
|
544 |
* It is the current context page, so show the submenu item
|
553 |
return false;
|
554 |
}
|
555 |
|
556 |
+
if ( ! $ignore_free_wp_org_theme_context && $this->is_free_wp_org_theme() ) {
|
557 |
/**
|
558 |
* wp.org themes are limited to a single submenu item, and
|
559 |
* sub-submenu items are most likely not allowed (never verified).
|
642 |
* @param string $sdk_prev_version
|
643 |
* @param string $sdk_version
|
644 |
*/
|
645 |
+
function _sdk_version_update( $sdk_prev_version, $sdk_version ) {
|
646 |
/**
|
647 |
* @since 1.1.7.3 Fixed unwanted connectivity test cleanup.
|
648 |
*/
|
650 |
return;
|
651 |
}
|
652 |
|
653 |
+
if ( version_compare( $sdk_prev_version, '2.1.0', '<' ) &&
|
654 |
+
version_compare( $sdk_version, '2.1.0', '>=' )
|
655 |
+
) {
|
656 |
+
$this->_storage->handle_gdpr_admin_notice = true;
|
657 |
+
}
|
658 |
+
|
659 |
if ( version_compare( $sdk_prev_version, '2.0.0', '<' ) &&
|
660 |
version_compare( $sdk_version, '2.0.0', '>=' )
|
661 |
) {
|
1321 |
add_action( 'init', array( &$this, '_add_default_submenu_items' ), WP_FS__LOWEST_PRIORITY );
|
1322 |
}
|
1323 |
}
|
1324 |
+
|
1325 |
+
if ( $this->_storage->handle_gdpr_admin_notice ) {
|
1326 |
+
add_action( 'init', array( &$this, '_maybe_show_gdpr_admin_notice' ) );
|
1327 |
+
}
|
1328 |
+
|
1329 |
+
add_action( 'init', array( &$this, '_maybe_add_gdpr_optin_ajax_handler') );
|
1330 |
}
|
1331 |
|
1332 |
if ( $this->is_plugin() ) {
|
1353 |
add_action( 'customize_register', array( &$this, '_customizer_register' ) );
|
1354 |
}
|
1355 |
|
1356 |
+
add_action( 'admin_init', array( &$this, '_redirect_on_clicked_menu_link' ), WP_FS__LOWEST_PRIORITY );
|
1357 |
|
1358 |
if ( $this->is_theme() ) {
|
1359 |
add_action( 'admin_init', array( &$this, '_add_tracking_links' ) );
|
1360 |
}
|
1361 |
|
1362 |
add_action( 'admin_init', array( &$this, '_add_license_activation' ) );
|
1363 |
+
add_action( 'admin_init', array( &$this, '_add_premium_version_upgrade_selection' ) );
|
1364 |
+
|
1365 |
$this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) );
|
1366 |
$this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) );
|
1367 |
|
1378 |
|
1379 |
$this->add_action( 'after_plans_sync', array( &$this, '_check_for_trial_plans' ) );
|
1380 |
|
1381 |
+
$this->add_action( 'sdk_version_update', array( &$this, '_sdk_version_update' ), WP_FS__DEFAULT_PRIORITY, 2 );
|
1382 |
+
|
1383 |
$this->add_action(
|
1384 |
'plugin_version_update',
|
1385 |
array( &$this, '_after_version_update' ),
|
1390 |
|
1391 |
add_action( 'admin_init', array( &$this, '_add_trial_notice' ) );
|
1392 |
add_action( 'admin_init', array( &$this, '_add_affiliate_program_notice' ) );
|
1393 |
+
add_action( 'admin_enqueue_scripts', array( &$this, '_enqueue_common_css' ) );
|
1394 |
|
1395 |
/**
|
1396 |
* Handle request to reset anonymous mode for `get_reconnect_url()`.
|
1488 |
array( &$this, '_submit_uninstall_reason_action' )
|
1489 |
);
|
1490 |
|
1491 |
+
if ( $this->is_theme() && $this->is_premium() && ! $this->has_active_valid_license() ) {
|
1492 |
+
$this->add_ajax_action(
|
1493 |
+
'delete_theme_update_data',
|
1494 |
+
array( &$this, '_delete_theme_update_data_action' )
|
1495 |
+
);
|
1496 |
+
}
|
1497 |
+
|
1498 |
if ( ! $this->is_addon() || $this->is_parent_plugin_installed() ) {
|
1499 |
if ( ( $this->is_plugin() && self::is_plugins_page() ) ||
|
1500 |
( $this->is_theme() && self::is_themes_page() )
|
2049 |
* @since 1.2.2
|
2050 |
*/
|
2051 |
if ( $this->is_theme() ) {
|
2052 |
+
if ( $this->is_premium() && ! $this->has_active_valid_license() ) {
|
2053 |
+
FS_Plugin_Updater::instance( $this )->delete_update_data();
|
2054 |
+
}
|
2055 |
+
|
2056 |
$this->_uninstall_plugin_event( false );
|
2057 |
$this->remove_sdk_reference();
|
2058 |
}
|
2062 |
exit;
|
2063 |
}
|
2064 |
|
2065 |
+
/**
|
2066 |
+
* @author Leo Fajardo (@leorw)
|
2067 |
+
* @since 2.0.2
|
2068 |
+
*/
|
2069 |
+
function _delete_theme_update_data_action() {
|
2070 |
+
FS_Plugin_Updater::instance( $this )->delete_update_data();
|
2071 |
+
}
|
2072 |
+
|
2073 |
#endregion
|
2074 |
|
2075 |
#----------------------------------------------------------------------------------
|
2659 |
|
2660 |
self::$_global_admin_notices = FS_Admin_Notices::instance( 'global' );
|
2661 |
|
2662 |
+
if ( ! WP_FS__DEMO_MODE ) {
|
2663 |
+
add_action( ( fs_is_network_admin() ? 'network_' : '' ) . 'admin_menu', array(
|
2664 |
+
'Freemius',
|
2665 |
+
'_add_debug_section'
|
2666 |
+
) );
|
2667 |
+
}
|
2668 |
|
2669 |
add_action( "wp_ajax_fs_toggle_debug_mode", array( 'Freemius', '_toggle_debug_mode' ) );
|
2670 |
|
3067 |
* @author Vova Feldman (@svovaf)
|
3068 |
* @since 1.1.7.4
|
3069 |
*
|
3070 |
+
* @param int|null $blog_id Since 2.0.0.
|
3071 |
+
* @param bool $is_gdpr_test Since 2.0.2. Perform only the GDPR test.
|
3072 |
*
|
3073 |
* @return object|false
|
3074 |
*/
|
3075 |
+
private function ping( $blog_id = null, $is_gdpr_test = false ) {
|
3076 |
if ( WP_FS__SIMULATE_NO_API_CONNECTIVITY ) {
|
3077 |
return false;
|
3078 |
}
|
3084 |
return $this->get_api_plugin_scope()->ping(
|
3085 |
$this->get_anonymous_id( $blog_id ),
|
3086 |
array(
|
3087 |
+
'is_update' => json_encode( $is_update ),
|
3088 |
+
'version' => $version,
|
3089 |
+
'sdk' => $this->version,
|
3090 |
+
'is_admin' => json_encode( is_admin() ),
|
3091 |
+
'is_ajax' => json_encode( self::is_ajax() ),
|
3092 |
+
'is_cron' => json_encode( self::is_cron() ),
|
3093 |
+
'is_gdpr_test' => $is_gdpr_test,
|
3094 |
+
'is_http' => json_encode( WP_FS__IS_HTTP_REQUEST ),
|
3095 |
)
|
3096 |
);
|
3097 |
}
|
3142 |
$this->_add_connectivity_issue_message( $pong );
|
3143 |
}
|
3144 |
|
3145 |
+
if ( $is_connected ) {
|
3146 |
+
FS_GDPR_Manager::instance()->store_is_required( $pong->is_gdpr_required );
|
3147 |
+
}
|
3148 |
+
|
3149 |
$this->store_connectivity_info( $pong, $is_connected );
|
3150 |
|
3151 |
return $this->_has_api_connection;
|
3267 |
return wp_get_current_user();
|
3268 |
}
|
3269 |
|
3270 |
+
/**
|
3271 |
+
* @author Vova Feldman (@svovaf)
|
3272 |
+
* @since 2.1.0
|
3273 |
+
*
|
3274 |
+
* @return int
|
3275 |
+
*/
|
3276 |
+
static function get_current_wp_user_id() {
|
3277 |
+
$wp_user = self::_get_current_wp_user();
|
3278 |
+
|
3279 |
+
return $wp_user->ID;
|
3280 |
+
}
|
3281 |
+
|
3282 |
/**
|
3283 |
* @author Vova Feldman (@svovaf)
|
3284 |
* @since 1.2.1.7
|
3584 |
$is_connected = $this->get_api_plugin_scope()->is_valid_ping( $pong );
|
3585 |
|
3586 |
if ( $is_connected ) {
|
3587 |
+
FS_GDPR_Manager::instance()->store_is_required( $pong->is_gdpr_required );
|
3588 |
+
|
3589 |
$this->store_connectivity_info( $pong, $is_connected );
|
3590 |
|
3591 |
echo $this->get_after_plugin_activation_redirect_url();
|
3658 |
$is_connected = $this->get_api_plugin_scope()->is_valid_ping( $pong );
|
3659 |
|
3660 |
if ( $is_connected ) {
|
3661 |
+
FS_GDPR_Manager::instance()->store_is_required( $pong->is_gdpr_required );
|
3662 |
+
|
3663 |
$this->store_connectivity_info( $pong, $is_connected );
|
3664 |
|
3665 |
echo $this->get_after_plugin_activation_redirect_url();
|
6053 |
* @return bool
|
6054 |
*/
|
6055 |
function is_plugin_activation() {
|
6056 |
+
$result = get_transient( "fs_{$this->_module_type}_{$this->_slug}_activated" );
|
6057 |
+
|
6058 |
+
return !empty($result);
|
6059 |
}
|
6060 |
|
6061 |
/**
|
6072 |
* @since 1.1.7 Do NOT redirect to opt-in when running in network admin mode.
|
6073 |
*/
|
6074 |
if ( $this->is_plugin_activation() ) {
|
6075 |
+
delete_transient( "fs_{$this->_module_type}_{$this->_slug}_activated" );
|
|
|
|
|
6076 |
|
6077 |
+
if ( isset( $_GET['activate-multi'] ) ) {
|
6078 |
+
/**
|
6079 |
+
* Don't redirect if activating multiple plugins at once (bulk activation).
|
6080 |
+
*/
|
6081 |
+
} else {
|
6082 |
+
$this->_redirect_on_activation_hook();
|
6083 |
+
return;
|
6084 |
+
}
|
6085 |
}
|
6086 |
|
6087 |
if ( fs_request_is_action( $this->get_unique_affix() . '_skip_activation' ) ) {
|
6102 |
fs_redirect( $this->get_after_activation_url( 'after_delegation_url' ) );
|
6103 |
}
|
6104 |
|
6105 |
+
$this->_add_upgrade_action_link();
|
6106 |
+
|
6107 |
if ( ! $this->is_addon() &&
|
6108 |
+
! ( ! $this->_is_network_active && fs_is_network_admin() ) &&
|
6109 |
(
|
6110 |
// Not registered nor anonymous.
|
6111 |
( ! $this->is_registered() && ! $this->is_anonymous() ) ||
|
6181 |
$this->_show_theme_activation_optin_dialog();
|
6182 |
}
|
6183 |
}
|
|
|
|
|
6184 |
}
|
6185 |
|
6186 |
/**
|
6523 |
/**
|
6524 |
* @author Leo Fajardo (@leorw)
|
6525 |
* @since 1.2.2
|
|
|
|
|
6526 |
*/
|
6527 |
private function activate_previous_theme() {
|
6528 |
switch_theme( $this->get_previous_theme_slug() );
|
6711 |
! $this->_isAutoInstall
|
6712 |
) {
|
6713 |
// Store hint that the plugin was just activated to enable auto-redirection to settings.
|
6714 |
+
set_transient( "fs_{$this->_module_type}_{$this->_slug}_activated", true, 60 );
|
|
|
|
|
6715 |
}
|
6716 |
|
6717 |
/**
|
6902 |
$this->clear_install_sync_cron();
|
6903 |
|
6904 |
if ( $this->is_registered() ) {
|
6905 |
+
if ( $this->is_premium() && ! $this->has_active_valid_license() ) {
|
6906 |
+
FS_Plugin_Updater::instance( $this )->delete_update_data();
|
6907 |
+
}
|
6908 |
+
|
6909 |
if ( $is_network_deactivation ) {
|
6910 |
// Send deactivation event.
|
6911 |
$this->sync_installs( array(
|
7166 |
* @param array|null $sites Since 2.0.0. Specific sites.
|
7167 |
* @param bool $skip_all_network Since 2.0.0. If true, skip connection for all sites.
|
7168 |
*/
|
7169 |
+
function skip_connection( $sites = null, $skip_all_network = false ) {
|
7170 |
$this->_logger->entrance();
|
7171 |
|
7172 |
$this->_admin_notices->remove_sticky( 'connect_account' );
|
8197 |
} else {
|
8198 |
$theme_data = wp_get_theme();
|
8199 |
|
8200 |
+
if ( $this->_plugin_basename !== $theme_data->get_stylesheet() && is_child_theme() ) {
|
8201 |
+
$parent_theme = $theme_data->parent();
|
8202 |
+
|
8203 |
+
if ( ( $parent_theme instanceof WP_Theme ) && $this->_plugin_basename === $parent_theme->get_stylesheet() ) {
|
8204 |
+
$theme_data = $parent_theme;
|
8205 |
+
}
|
8206 |
+
}
|
8207 |
+
|
8208 |
$plugin_data = array(
|
8209 |
'Name' => $theme_data->get( 'Name' ),
|
8210 |
'Version' => $theme_data->get( 'Version' ),
|
9112 |
function is_trial() {
|
9113 |
$this->_logger->entrance();
|
9114 |
|
9115 |
+
if ( ! $this->is_registered() || ! is_object( $this->_site ) ) {
|
9116 |
return false;
|
9117 |
}
|
9118 |
|
9271 |
*
|
9272 |
* @return bool
|
9273 |
*/
|
9274 |
+
function has_any_license() {
|
9275 |
return is_array( $this->_licenses ) && ( 0 < count( $this->_licenses ) );
|
9276 |
}
|
9277 |
|
10434 |
fs_require_template( 'forms/resend-key.php', $vars );
|
10435 |
}
|
10436 |
|
10437 |
+
/**
|
10438 |
+
* @author Leo Fajardo (@leorw)
|
10439 |
+
* @since 2.0.2
|
10440 |
+
*/
|
10441 |
+
function _add_premium_version_upgrade_selection_dialog_box() {
|
10442 |
+
$modules_update = get_site_transient( $this->is_theme() ? 'update_themes' : 'update_plugins' );
|
10443 |
+
if ( ! isset( $modules_update->response[ $this->_plugin_basename ] ) ) {
|
10444 |
+
return;
|
10445 |
+
}
|
10446 |
+
|
10447 |
+
$vars = array(
|
10448 |
+
'id' => $this->_module_id,
|
10449 |
+
'new_version' => is_object( $modules_update->response[ $this->_plugin_basename ] ) ?
|
10450 |
+
$modules_update->response[ $this->_plugin_basename ]->new_version :
|
10451 |
+
$modules_update->response[ $this->_plugin_basename ]['new_version']
|
10452 |
+
);
|
10453 |
+
|
10454 |
+
fs_require_template( 'forms/premium-versions-upgrade-metadata.php', $vars );
|
10455 |
+
fs_require_once_template( 'forms/premium-versions-upgrade-handler.php', $vars );
|
10456 |
+
}
|
10457 |
+
|
10458 |
/**
|
10459 |
* Displays the opt-out dialog box when the user clicks on the "Opt Out" link on the "Plugins"
|
10460 |
* page.
|
10509 |
$this->add_ajax_action( 'resend_license_key', array( &$this, '_resend_license_key_ajax_action' ) );
|
10510 |
}
|
10511 |
|
10512 |
+
/**
|
10513 |
+
* @author Leo Fajardo (@leorw)
|
10514 |
+
* @since 2.0.2
|
10515 |
+
*/
|
10516 |
+
function _add_premium_version_upgrade_selection() {
|
10517 |
+
if ( ! $this->is_user_admin() ) {
|
10518 |
+
return;
|
10519 |
+
}
|
10520 |
+
|
10521 |
+
if ( ! $this->is_premium() || $this->has_active_valid_license() ) {
|
10522 |
+
// This is relevant only to the free versions and premium versions without an active license.
|
10523 |
+
return;
|
10524 |
+
}
|
10525 |
+
|
10526 |
+
if ( self::is_updates_page() || ( $this->is_plugin() && self::is_plugins_page() ) ) {
|
10527 |
+
$this->_add_premium_version_upgrade_selection_action();
|
10528 |
+
}
|
10529 |
+
}
|
10530 |
+
|
10531 |
/**
|
10532 |
* @author Leo Fajardo (@leorw)
|
10533 |
*
|
10536 |
*/
|
10537 |
function _activate_license_ajax_action() {
|
10538 |
$this->_logger->entrance();
|
10539 |
+
|
10540 |
$this->check_ajax_referer( 'activate_license' );
|
10541 |
|
10542 |
$license_key = trim( fs_request_get( 'license_key' ) );
|
10647 |
false,
|
10648 |
false,
|
10649 |
false,
|
10650 |
+
fs_request_get_bool( 'is_marketing_allowed', null ),
|
10651 |
$sites
|
10652 |
);
|
10653 |
|
10781 |
false,
|
10782 |
false,
|
10783 |
false,
|
10784 |
+
fs_request_get_bool( 'is_marketing_allowed', null ),
|
10785 |
$sites_by_action['allow']
|
10786 |
);
|
10787 |
} else {
|
10996 |
return ( 'plugins.php' === self::get_current_page() );
|
10997 |
}
|
10998 |
|
10999 |
+
/**
|
11000 |
+
* @author Leo Fajardo (@leorw)
|
11001 |
+
* @since 2.0.2
|
11002 |
+
*
|
11003 |
+
* @return bool
|
11004 |
+
*/
|
11005 |
+
static function is_updates_page() {
|
11006 |
+
return ( 'update-core.php' === self::get_current_page() );
|
11007 |
+
}
|
11008 |
+
|
11009 |
/**
|
11010 |
* Helper method to check if user in the themes page.
|
11011 |
*
|
11998 |
return $install_map;
|
11999 |
}
|
12000 |
|
12001 |
+
/**
|
12002 |
+
* Gets a map of module IDs that the given user has opted-in to.
|
12003 |
+
*
|
12004 |
+
* @author Leo Fajardo (@leorw)
|
12005 |
+
* @since 2.1.0
|
12006 |
+
*
|
12007 |
+
* @param number $fs_user_id
|
12008 |
+
*
|
12009 |
+
* @return array {
|
12010 |
+
* @key number $plugin_id
|
12011 |
+
* @value bool Always true.
|
12012 |
+
* }
|
12013 |
+
*/
|
12014 |
+
private static function get_user_opted_in_module_ids_map( $fs_user_id ) {
|
12015 |
+
self::$_static_logger->entrance();
|
12016 |
+
|
12017 |
+
if ( ! is_multisite() ) {
|
12018 |
+
$installs = array_merge(
|
12019 |
+
self::get_all_sites( WP_FS__MODULE_TYPE_PLUGIN ),
|
12020 |
+
self::get_all_sites( WP_FS__MODULE_TYPE_THEME )
|
12021 |
+
);
|
12022 |
+
} else {
|
12023 |
+
$sites = self::get_sites();
|
12024 |
+
|
12025 |
+
$installs = array();
|
12026 |
+
foreach ( $sites as $site ) {
|
12027 |
+
$blog_id = self::get_site_blog_id( $site );
|
12028 |
+
|
12029 |
+
$installs = array_merge(
|
12030 |
+
$installs,
|
12031 |
+
self::get_all_sites( WP_FS__MODULE_TYPE_PLUGIN, $blog_id ),
|
12032 |
+
self::get_all_sites( WP_FS__MODULE_TYPE_THEME, $blog_id )
|
12033 |
+
);
|
12034 |
+
}
|
12035 |
+
}
|
12036 |
+
|
12037 |
+
$module_ids_map = array();
|
12038 |
+
foreach ( $installs as $install ) {
|
12039 |
+
if ( is_object( $install ) &&
|
12040 |
+
FS_Site::is_valid_id( $install->id ) &&
|
12041 |
+
FS_User::is_valid_id( $install->user_id ) &&
|
12042 |
+
( $install->user_id == $fs_user_id )
|
12043 |
+
) {
|
12044 |
+
$module_ids_map[ $install->plugin_id ] = true;
|
12045 |
+
}
|
12046 |
+
}
|
12047 |
+
|
12048 |
+
return $module_ids_map;
|
12049 |
+
}
|
12050 |
+
|
12051 |
/**
|
12052 |
* @author Leo Fajardo (@leorw)
|
12053 |
*
|
12169 |
static function get_site_blog_id( &$site ) {
|
12170 |
return ( $site instanceof WP_Site ) ?
|
12171 |
$site->blog_id :
|
12172 |
+
( is_object( $site ) && isset( $site->userblog_id ) ?
|
12173 |
+
$site->userblog_id :
|
12174 |
+
$site['blog_id'] );
|
12175 |
}
|
12176 |
|
12177 |
/**
|
13217 |
* @param string|bool $first
|
13218 |
* @param string|bool $last
|
13219 |
* @param string|bool $license_key
|
13220 |
+
* @param bool $is_uninstall If "true", this means that the module is currently being uninstalled.
|
13221 |
+
* In this case, the user and site info will be sent to the server but no
|
13222 |
+
* data will be saved to the WP installation's database.
|
13223 |
* @param number|bool $trial_plan_id
|
13224 |
+
* @param bool $is_disconnected Whether or not to opt in without tracking.
|
13225 |
+
* @param null|bool $is_marketing_allowed
|
13226 |
+
* @param array $sites If network-level opt-in, an array of containing details of sites.
|
13227 |
*
|
13228 |
* @return string|object
|
13229 |
* @use WP_Error
|
13236 |
$is_uninstall = false,
|
13237 |
$trial_plan_id = false,
|
13238 |
$is_disconnected = false,
|
13239 |
+
$is_marketing_allowed = null,
|
13240 |
$sites = array()
|
13241 |
) {
|
13242 |
$this->_logger->entrance();
|
13322 |
}
|
13323 |
}
|
13324 |
|
13325 |
+
if ( is_bool( $is_marketing_allowed ) ) {
|
13326 |
+
$params['is_marketing_allowed'] = $is_marketing_allowed;
|
13327 |
+
}
|
13328 |
+
|
13329 |
+
$params['is_disconnected'] = $is_disconnected;
|
13330 |
+
$params['format'] = 'json';
|
13331 |
|
13332 |
$request = array(
|
13333 |
'method' => 'POST',
|
13336 |
);
|
13337 |
|
13338 |
$url = WP_FS__ADDRESS . '/action/service/user/install/';
|
13339 |
+
$response = self::safe_remote_post( $url, $request );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13340 |
|
13341 |
if ( is_wp_error( $response ) ) {
|
13342 |
/**
|
13423 |
$decoded->user_id,
|
13424 |
$decoded->user_public_key,
|
13425 |
$decoded->user_secret_key,
|
13426 |
+
( isset( $decoded->is_marketing_allowed ) && ! is_null( $decoded->is_marketing_allowed ) ?
|
13427 |
+
$decoded->is_marketing_allowed :
|
13428 |
+
null ),
|
13429 |
$decoded->install_id,
|
13430 |
$decoded->install_public_key,
|
13431 |
$decoded->install_secret_key,
|
13436 |
$decoded->user_id,
|
13437 |
$decoded->user_public_key,
|
13438 |
$decoded->user_secret_key,
|
13439 |
+
( isset( $decoded->is_marketing_allowed ) && ! is_null( $decoded->is_marketing_allowed ) ?
|
13440 |
+
$decoded->is_marketing_allowed :
|
13441 |
+
null ),
|
13442 |
$decoded->installs,
|
13443 |
false
|
13444 |
);
|
13505 |
|
13506 |
$this->_sync_plans();
|
13507 |
|
13508 |
+
if ( $this->_storage->handle_gdpr_admin_notice &&
|
13509 |
+
$this->should_handle_gdpr_admin_notice() &&
|
13510 |
+
FS_GDPR_Manager::instance()->should_show_opt_in_notice()
|
13511 |
+
) {
|
13512 |
+
/**
|
13513 |
+
* Clear user lock after an opt-in.
|
13514 |
+
*/
|
13515 |
+
require_once WP_FS__DIR_INCLUDES . '/class-fs-user-lock.php';
|
13516 |
+
FS_User_Lock::instance()->unlock();
|
13517 |
+
}
|
13518 |
+
|
13519 |
if ( 1 < count( $installs ) ) {
|
13520 |
// Only network level opt-in can have more than one install.
|
13521 |
$is_network_level_opt_in = true;
|
13529 |
|
13530 |
$this->do_action( 'after_account_connection', $user, $first_install );
|
13531 |
} else {
|
13532 |
+
$this->_store_user();
|
13533 |
+
|
13534 |
// Map site addresses to their blog IDs.
|
13535 |
$address_to_blog_map = $this->get_address_to_blog_map();
|
13536 |
|
13725 |
fs_request_get( 'user_id' ),
|
13726 |
fs_request_get( 'user_public_key' ),
|
13727 |
fs_request_get( 'user_secret_key' ),
|
13728 |
+
fs_request_get_bool( 'is_marketing_allowed', null ),
|
13729 |
$pending_sites_info['blog_ids'],
|
13730 |
$pending_sites_info['license_key'],
|
13731 |
$pending_sites_info['trial_plan_id']
|
13735 |
fs_request_get( 'user_id' ),
|
13736 |
fs_request_get( 'user_public_key' ),
|
13737 |
fs_request_get( 'user_secret_key' ),
|
13738 |
+
fs_request_get_bool( 'is_marketing_allowed', null ),
|
13739 |
fs_request_get( 'install_id' ),
|
13740 |
fs_request_get( 'install_public_key' ),
|
13741 |
fs_request_get( 'install_secret_key' ),
|
13787 |
* @author Vova Feldman (@svovaf)
|
13788 |
* @since 1.1.7.4
|
13789 |
*
|
13790 |
+
* @param number $user_id
|
13791 |
+
* @param string $user_public_key
|
13792 |
+
* @param string $user_secret_key
|
13793 |
+
* @param bool|null $is_marketing_allowed
|
13794 |
+
* @param number $install_id
|
13795 |
+
* @param string $install_public_key
|
13796 |
+
* @param string $install_secret_key
|
13797 |
+
* @param bool $redirect
|
13798 |
+
* @param bool $auto_install Since 1.2.1.7 If `true` and setting up an account with a valid license, will
|
13799 |
+
* redirect (or return a URL) to the account page with a special parameter to
|
13800 |
+
* trigger the auto installation processes.
|
13801 |
*
|
13802 |
* @return string If redirect is `false`, returns the next page the user should be redirected to.
|
13803 |
*/
|
13805 |
$user_id,
|
13806 |
$user_public_key,
|
13807 |
$user_secret_key,
|
13808 |
+
$is_marketing_allowed,
|
13809 |
$install_id,
|
13810 |
$install_public_key,
|
13811 |
$install_secret_key,
|
13843 |
$site = new FS_Site( $site_result );
|
13844 |
$this->_site = $site;
|
13845 |
|
13846 |
+
if ( ! is_null( $is_marketing_allowed ) ) {
|
13847 |
+
$this->disable_opt_in_notice_and_lock_user();
|
13848 |
+
}
|
13849 |
+
|
13850 |
return $this->setup_account(
|
13851 |
$this->_user,
|
13852 |
$this->_site,
|
13861 |
* @author Leo Fajardo (@leorw)
|
13862 |
* @since 2.0.0
|
13863 |
*
|
13864 |
+
* @param number $user_id
|
13865 |
+
* @param string $user_public_key
|
13866 |
+
* @param string $user_secret_key
|
13867 |
+
* @param bool|null $is_marketing_allowed
|
13868 |
+
* @param array $site_ids
|
13869 |
+
* @param bool $license_key
|
13870 |
+
* @param bool $trial_plan_id
|
13871 |
+
* @param bool $redirect
|
13872 |
*
|
13873 |
* @return string If redirect is `false`, returns the next page the user should be redirected to.
|
13874 |
*/
|
13876 |
$user_id,
|
13877 |
$user_public_key,
|
13878 |
$user_secret_key,
|
13879 |
+
$is_marketing_allowed,
|
13880 |
$site_ids,
|
13881 |
$license_key = false,
|
13882 |
$trial_plan_id = false,
|
13884 |
) {
|
13885 |
$user = $this->setup_user( $user_id, $user_public_key, $user_secret_key );
|
13886 |
|
13887 |
+
if ( ! is_null( $is_marketing_allowed ) ) {
|
13888 |
+
$this->disable_opt_in_notice_and_lock_user();
|
13889 |
+
}
|
13890 |
+
|
13891 |
$sites = array();
|
13892 |
foreach ( $site_ids as $site_id ) {
|
13893 |
$sites[] = $this->get_site_info( array( 'blog_id' => $site_id ) );
|
13902 |
* @author Vova Feldman (@svovaf)
|
13903 |
* @since 2.0.0
|
13904 |
*
|
13905 |
+
* @param number $user_id
|
13906 |
+
* @param string $user_public_key
|
13907 |
+
* @param string $user_secret_key
|
13908 |
+
* @param bool|null $is_marketing_allowed
|
13909 |
+
* @param object[] $installs
|
13910 |
+
* @param bool $redirect
|
13911 |
+
* @param bool $auto_install Since 1.2.1.7 If `true` and setting up an account with a valid license, will
|
13912 |
+
* redirect (or return a URL) to the account page with a special parameter to
|
13913 |
+
* trigger the auto installation processes.
|
13914 |
*
|
13915 |
* @return string If redirect is `false`, returns the next page the user should be redirected to.
|
13916 |
*/
|
13918 |
$user_id,
|
13919 |
$user_public_key,
|
13920 |
$user_secret_key,
|
13921 |
+
$is_marketing_allowed,
|
13922 |
array $installs,
|
13923 |
$redirect = true,
|
13924 |
$auto_install = false
|
13925 |
) {
|
13926 |
$this->setup_user( $user_id, $user_public_key, $user_secret_key );
|
13927 |
|
13928 |
+
if ( ! is_null( $is_marketing_allowed ) ) {
|
13929 |
+
$this->disable_opt_in_notice_and_lock_user();
|
13930 |
+
}
|
13931 |
+
|
13932 |
$install_ids = array();
|
13933 |
|
13934 |
foreach ( $installs as $install ) {
|
14462 |
function _redirect_on_clicked_menu_link() {
|
14463 |
$this->_logger->entrance();
|
14464 |
|
14465 |
+
$page = fs_request_get('page');
|
14466 |
+
$page = is_string($page) ? strtolower($page) : '';
|
14467 |
|
14468 |
$this->_logger->log( 'page = ' . $page );
|
14469 |
|
14742 |
);
|
14743 |
}
|
14744 |
|
14745 |
+
if ( ! WP_FS__DEMO_MODE && $this->is_registered() ) {
|
14746 |
$show_account = (
|
14747 |
$this->is_submenu_item_visible( 'account' ) &&
|
14748 |
/**
|
14789 |
);
|
14790 |
}
|
14791 |
|
14792 |
+
if ( ! WP_FS__DEMO_MODE ) {
|
14793 |
+
$show_pricing = (
|
14794 |
+
$this->is_submenu_item_visible( 'pricing' ) &&
|
14795 |
+
$this->is_pricing_page_visible()
|
14796 |
+
);
|
14797 |
|
14798 |
+
$pricing_cta_text = $this->get_pricing_cta_label();
|
14799 |
+
$pricing_class = 'upgrade-mode';
|
14800 |
+
if ( $show_pricing ) {
|
14801 |
+
if ( $this->is_in_trial_promotion() &&
|
14802 |
+
! $this->is_paying_or_trial()
|
14803 |
+
) {
|
14804 |
+
// If running a trial promotion, modify the pricing to load the trial.
|
14805 |
+
$pricing_class = 'trial-mode';
|
14806 |
+
} else if ( $this->is_paying() ) {
|
14807 |
+
$pricing_class = '';
|
14808 |
+
}
|
14809 |
}
|
|
|
14810 |
|
14811 |
+
// Add upgrade/pricing page.
|
14812 |
+
$this->add_submenu_item(
|
14813 |
+
$pricing_cta_text . ' ' . ( is_rtl() ? '←' : '➤' ),
|
14814 |
+
array( &$this, '_pricing_page_render' ),
|
14815 |
+
$this->get_plugin_name() . ' – ' . $this->get_text_x_inline( 'Pricing', 'noun', 'pricing' ),
|
14816 |
+
'manage_options',
|
14817 |
+
'pricing',
|
14818 |
+
'Freemius::_clean_admin_content_section',
|
14819 |
+
WP_FS__LOWEST_PRIORITY,
|
14820 |
+
$show_pricing,
|
14821 |
+
$pricing_class
|
14822 |
+
);
|
14823 |
+
}
|
14824 |
}
|
14825 |
|
14826 |
if ( 0 < count( $this->_menu_items ) ) {
|
16701 |
break;
|
16702 |
case 'downgraded':
|
16703 |
$this->_admin_notices->add_sticky(
|
16704 |
+
($this->has_free_plan() ?
|
16705 |
+
sprintf( $this->get_text_inline( 'Your license has expired. You can still continue using the free %s forever.', 'license-expired-blocking-message' ), $this->_module_type ) :
|
16706 |
+
/* translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. */
|
16707 |
+
sprintf( $this->get_text_inline( 'Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions.', 'license-expired-blocking-message_premium-only' ), sprintf('<a href="%s">', $this->pricing_url()), '</a>', $this->get_module_label(true) ) ),
|
16708 |
'license_expired',
|
16709 |
$hmm_text
|
16710 |
);
|
16747 |
break;
|
16748 |
case 'trial_expired':
|
16749 |
$this->_admin_notices->add_sticky(
|
16750 |
+
($this->has_free_plan() ?
|
16751 |
+
$this->get_text_inline( 'Your free trial has expired. You can still continue using all our free features.', 'trial-expired-message' ) :
|
16752 |
+
/* translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. */
|
16753 |
+
sprintf( $this->get_text_inline( 'Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions.', 'trial-expired-message_premium-only' ), sprintf('<a href="%s">', $this->pricing_url()), '</a>', $this->get_module_label(true))),
|
16754 |
'trial_expired',
|
16755 |
$hmm_text
|
16756 |
);
|
17235 |
|
17236 |
$is_premium = null;
|
17237 |
if ( ! $is_addon ) {
|
17238 |
+
$is_premium = $this->is_premium();
|
17239 |
} else if ( $this->is_addon_activated( $addon_id ) ) {
|
17240 |
+
$is_premium = self::get_instance_by_id( $addon_id )->is_premium();
|
17241 |
}
|
17242 |
|
17243 |
// If add-on, then append add-on ID.
|
18924 |
function _add_upgrade_action_link() {
|
18925 |
$this->_logger->entrance();
|
18926 |
|
18927 |
+
if ( ! $this->is_paying() && $this->has_paid_plan() ) {
|
18928 |
+
$this->add_plugin_action_link(
|
18929 |
+
$this->get_text_inline( 'Upgrade', 'upgrade' ),
|
18930 |
+
$this->get_upgrade_url(),
|
18931 |
+
false,
|
18932 |
+
7,
|
18933 |
+
'upgrade'
|
18934 |
+
);
|
18935 |
+
}
|
|
|
18936 |
|
18937 |
+
if ( $this->has_addons() ) {
|
18938 |
+
$this->add_plugin_action_link(
|
18939 |
+
$this->get_text_inline( 'Add-Ons', 'add-ons' ),
|
18940 |
+
$this->_get_admin_page_url( 'addons' ),
|
18941 |
+
false,
|
18942 |
+
9,
|
18943 |
+
'addons'
|
18944 |
+
);
|
|
|
18945 |
}
|
18946 |
}
|
18947 |
|
18972 |
);
|
18973 |
}
|
18974 |
|
18975 |
+
/**
|
18976 |
+
* @author Leo Fajardo (@leorw)
|
18977 |
+
* @since 2.0.2
|
18978 |
+
*/
|
18979 |
+
function _add_premium_version_upgrade_selection_action() {
|
18980 |
+
$this->_logger->entrance();
|
18981 |
+
|
18982 |
+
if ( ! self::is_ajax() ) {
|
18983 |
+
add_action( 'admin_footer', array( &$this, '_add_premium_version_upgrade_selection_dialog_box' ) );
|
18984 |
+
}
|
18985 |
+
}
|
18986 |
+
|
18987 |
/**
|
18988 |
* Adds "Opt in" or "Opt out" link to the main "Plugins" page link actions collection.
|
18989 |
*
|
19256 |
);
|
19257 |
}
|
19258 |
|
19259 |
+
/**
|
19260 |
+
* @author Leo Fajardo (@leorw)
|
19261 |
+
* @since 2.1.0
|
19262 |
+
*
|
19263 |
+
* @param string $url
|
19264 |
+
* @param array $request
|
19265 |
+
*/
|
19266 |
+
private static function enrich_request_for_debug( &$url, &$request ) {
|
19267 |
+
if ( WP_FS__DEBUG_SDK || isset( $_COOKIE['XDEBUG_SESSION'] ) ) {
|
19268 |
+
$url = add_query_arg( 'XDEBUG_SESSION_START', rand( 0, 9999999 ), $url );
|
19269 |
+
$url = add_query_arg( 'XDEBUG_SESSION', 'PHPSTORM', $url );
|
19270 |
+
|
19271 |
+
$request['cookies'] = array(
|
19272 |
+
new WP_Http_Cookie( array(
|
19273 |
+
'name' => 'XDEBUG_SESSION',
|
19274 |
+
'value' => 'PHPSTORM',
|
19275 |
+
) )
|
19276 |
+
);
|
19277 |
+
}
|
19278 |
+
}
|
19279 |
+
|
19280 |
+
/**
|
19281 |
+
* @author Leo Fajardo (@leorw)
|
19282 |
+
* @since 2.1.0
|
19283 |
+
*
|
19284 |
+
* @param string $url
|
19285 |
+
* @param array $request
|
19286 |
+
* @param int $success_cache_expiration
|
19287 |
+
* @param int $failure_cache_expiration
|
19288 |
+
*
|
19289 |
+
* @return WP_Error|array
|
19290 |
+
*/
|
19291 |
+
private static function safe_remote_post(
|
19292 |
+
&$url,
|
19293 |
+
$request,
|
19294 |
+
$success_cache_expiration = 0,
|
19295 |
+
$failure_cache_expiration = 0
|
19296 |
+
) {
|
19297 |
+
$should_cache = ($success_cache_expiration + $failure_cache_expiration > 0);
|
19298 |
+
|
19299 |
+
$cache_key = $should_cache ? md5( fs_strip_url_protocol($url) . json_encode( $request ) ) : false;
|
19300 |
+
|
19301 |
+
$response = (!WP_FS__DEBUG_SDK && ( false !== $cache_key )) ?
|
19302 |
+
get_transient( $cache_key ) :
|
19303 |
+
false;
|
19304 |
+
|
19305 |
+
if ( false === $response ) {
|
19306 |
+
self::enrich_request_for_debug( $url, $request );
|
19307 |
+
|
19308 |
+
$response = wp_remote_post( $url, $request );
|
19309 |
+
|
19310 |
+
if ( $response instanceof WP_Error ) {
|
19311 |
+
if ( 'https://' === substr( $url, 0, 8 ) &&
|
19312 |
+
isset( $response->errors ) &&
|
19313 |
+
isset( $response->errors['http_request_failed'] )
|
19314 |
+
) {
|
19315 |
+
$http_error = strtolower( $response->errors['http_request_failed'][0] );
|
19316 |
+
|
19317 |
+
if ( false !== strpos( $http_error, 'ssl' ) ||
|
19318 |
+
false !== strpos( $http_error, 'curl error 35' )
|
19319 |
+
) {
|
19320 |
+
// Failed due to old version of cURL or Open SSL (SSLv3 is not supported by CloudFlare).
|
19321 |
+
$url = 'http://' . substr( $url, 8 );
|
19322 |
+
|
19323 |
+
$request['timeout'] = 15;
|
19324 |
+
$response = wp_remote_post( $url, $request );
|
19325 |
+
}
|
19326 |
+
}
|
19327 |
+
}
|
19328 |
+
|
19329 |
+
if ( false !== $cache_key ) {
|
19330 |
+
set_transient(
|
19331 |
+
$cache_key,
|
19332 |
+
$response,
|
19333 |
+
( ( $response instanceof WP_Error ) ?
|
19334 |
+
$failure_cache_expiration :
|
19335 |
+
$success_cache_expiration )
|
19336 |
+
);
|
19337 |
+
}
|
19338 |
+
}
|
19339 |
+
|
19340 |
+
return $response;
|
19341 |
+
}
|
19342 |
+
|
19343 |
/**
|
19344 |
* This method is used to enrich the after upgrade notice instructions when the upgraded
|
19345 |
* license cannot be activated network wide (license quota isn't large enough).
|
20171 |
'';
|
20172 |
}
|
20173 |
|
20174 |
+
#--------------------------------------------------------------------------------
|
20175 |
+
#region GDPR
|
20176 |
+
#--------------------------------------------------------------------------------
|
20177 |
|
20178 |
/**
|
20179 |
+
* @author Leo Fajardo (@leorw)
|
20180 |
+
* @since 2.1.0
|
20181 |
*
|
20182 |
+
* @return bool
|
20183 |
+
*/
|
20184 |
+
function fetch_and_store_current_user_gdpr_anonymously() {
|
20185 |
+
$pong = $this->ping( null, true );
|
20186 |
+
|
20187 |
+
if ( ! $this->get_api_plugin_scope()->is_valid_ping( $pong ) ) {
|
20188 |
+
return false;
|
20189 |
+
} else {
|
20190 |
+
FS_GDPR_Manager::instance()->store_is_required( $pong->is_gdpr_required );
|
20191 |
+
|
20192 |
+
return $pong->is_gdpr_required;
|
20193 |
+
}
|
20194 |
+
}
|
20195 |
+
|
20196 |
+
/**
|
20197 |
+
* @author Leo Fajardo (@leorw)
|
20198 |
+
* @since 2.1.0
|
20199 |
+
*
|
20200 |
+
* @param array $user_plugins
|
20201 |
+
*
|
20202 |
+
* @return string
|
20203 |
+
*/
|
20204 |
+
private function get_gdpr_admin_notice_string( $user_plugins ) {
|
20205 |
+
$this->_logger->entrance();
|
20206 |
+
|
20207 |
+
$addons = self::get_all_addons();
|
20208 |
+
|
20209 |
+
foreach ( $user_plugins as $user_plugin ) {
|
20210 |
+
$has_addons = isset( $addons[ $user_plugin->id ] );
|
20211 |
+
|
20212 |
+
if ( WP_FS__MODULE_TYPE_PLUGIN === $user_plugin->type && ! $has_addons ) {
|
20213 |
+
if ( $this->_module_id == $user_plugin->id ) {
|
20214 |
+
$addons = $this->get_addons();
|
20215 |
+
$has_addons = ( ! empty( $addons ) );
|
20216 |
+
} else {
|
20217 |
+
$plugin_api = FS_Api::instance(
|
20218 |
+
$user_plugin->id,
|
20219 |
+
'plugin',
|
20220 |
+
$user_plugin->id,
|
20221 |
+
$user_plugin->public_key,
|
20222 |
+
! $user_plugin->is_live
|
20223 |
+
);
|
20224 |
+
|
20225 |
+
$addons_result = $plugin_api->get( '/addons.json?enriched=true', true );
|
20226 |
+
|
20227 |
+
if ( $this->is_api_result_object( $addons_result, 'plugins' ) &&
|
20228 |
+
is_array( $addons_result->plugins ) &&
|
20229 |
+
! empty( $addons_result->plugins )
|
20230 |
+
) {
|
20231 |
+
$has_addons = true;
|
20232 |
+
}
|
20233 |
+
}
|
20234 |
+
}
|
20235 |
+
|
20236 |
+
$user_plugin->has_addons = $has_addons;
|
20237 |
+
}
|
20238 |
+
|
20239 |
+
$is_single_parent_product = ( 1 === count( $user_plugins ) );
|
20240 |
+
|
20241 |
+
$multiple_products_text = '';
|
20242 |
+
|
20243 |
+
if ( $is_single_parent_product ) {
|
20244 |
+
$single_parent_product = reset( $user_plugins );
|
20245 |
+
|
20246 |
+
$thank_you = sprintf(
|
20247 |
+
"<span data-plugin-id='%d'>%s</span>",
|
20248 |
+
$single_parent_product->id,
|
20249 |
+
sprintf(
|
20250 |
+
$single_parent_product->has_addons ?
|
20251 |
+
$this->get_text_inline( 'Thank you so much for using %s and its add-ons!', 'thank-you-for-using-product-and-its-addons' ) :
|
20252 |
+
$this->get_text_inline( 'Thank you so much for using %s!', 'thank-you-for-using-product' ),
|
20253 |
+
sprintf('<b><i>%s</i></b>', $single_parent_product->title)
|
20254 |
+
)
|
20255 |
+
);
|
20256 |
+
|
20257 |
+
$already_opted_in = sprintf(
|
20258 |
+
$this->get_text_inline( "You've already opted-in to our usage-tracking, which helps us keep improving the %s.", 'already-opted-in-to-product-usage-tracking' ),
|
20259 |
+
( WP_FS__MODULE_TYPE_THEME === $single_parent_product->type ) ? WP_FS__MODULE_TYPE_THEME : WP_FS__MODULE_TYPE_PLUGIN
|
20260 |
+
);
|
20261 |
+
} else {
|
20262 |
+
$thank_you = $this->get_text_inline( 'Thank you so much for using our products!', 'thank-you-for-using-products' );
|
20263 |
+
$already_opted_in = $this->get_text_inline( "You've already opted-in to our usage-tracking, which helps us keep improving them.", 'already-opted-in-to-products-usage-tracking' );
|
20264 |
+
|
20265 |
+
$products_and_add_ons = '';
|
20266 |
+
foreach ( $user_plugins as $user_plugin ) {
|
20267 |
+
if ( ! empty( $products_and_add_ons ) ) {
|
20268 |
+
$products_and_add_ons .= ', ';
|
20269 |
+
}
|
20270 |
+
|
20271 |
+
if ( ! $user_plugin->has_addons ) {
|
20272 |
+
$products_and_add_ons .= sprintf(
|
20273 |
+
"<span data-plugin-id='%d'>%s</span>",
|
20274 |
+
$user_plugin->id,
|
20275 |
+
$user_plugin->title
|
20276 |
+
);
|
20277 |
+
} else {
|
20278 |
+
$products_and_add_ons .= sprintf(
|
20279 |
+
"<span data-plugin-id='%d'>%s</span>",
|
20280 |
+
$user_plugin->id,
|
20281 |
+
sprintf(
|
20282 |
+
$this->get_text_inline( '%s and its add-ons', 'product-and-its-addons' ),
|
20283 |
+
$user_plugin->title
|
20284 |
+
)
|
20285 |
+
);
|
20286 |
+
}
|
20287 |
+
}
|
20288 |
+
|
20289 |
+
$multiple_products_text = sprintf(
|
20290 |
+
"<small class='products'><strong>%s:</strong> %s</small>",
|
20291 |
+
$this->get_text_inline( 'Products', 'products' ),
|
20292 |
+
$products_and_add_ons
|
20293 |
+
);
|
20294 |
+
}
|
20295 |
+
|
20296 |
+
$actions = sprintf(
|
20297 |
+
'<ul><li>%s<span class="action-description"> - %s</span></li><li>%s<span class="action-description"> - %s</span></li></ul>',
|
20298 |
+
sprintf('<button class="button button-primary allow-marketing">%s</button>', $this->get_text_inline( 'Yes', 'yes' ) ),
|
20299 |
+
$this->get_text_inline( 'send me security & feature updates, educational content and offers.', 'send-updates' ),
|
20300 |
+
sprintf('<button class="button button-secondary">%s</button>', $this->get_text_inline( 'No', 'no' ) ),
|
20301 |
+
sprintf(
|
20302 |
+
$this->get_text_inline( 'do %sNOT%s send me security & feature updates, educational content and offers.', 'do-not-send-updates' ),
|
20303 |
+
'<span class="underlined">',
|
20304 |
+
'</span>'
|
20305 |
+
)
|
20306 |
+
);
|
20307 |
+
|
20308 |
+
return sprintf(
|
20309 |
+
'%s %s %s',
|
20310 |
+
$thank_you,
|
20311 |
+
$already_opted_in,
|
20312 |
+
sprintf($this->get_text_inline( 'Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂', 'due-to-gdpr-compliance-requirements' ), '<a href="https://eugdpr.org/" target="_blank" rel="noopener noreferrer">', '</a>') .
|
20313 |
+
'<br><br>' .
|
20314 |
+
'<b>' . $this->get_text_inline( "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:", 'contact-for-updates' ) . '</b>' .
|
20315 |
+
$actions .
|
20316 |
+
( $is_single_parent_product ? '' : $multiple_products_text )
|
20317 |
+
);
|
20318 |
+
}
|
20319 |
+
|
20320 |
+
/**
|
20321 |
+
* This method is called for opted-in users to fetch the is_marketing_allowed flag of the user for all the
|
20322 |
+
* plugins and themes they've opted in to.
|
20323 |
+
*
|
20324 |
+
* @author Leo Fajardo (@leorw)
|
20325 |
+
* @since 2.1.0
|
20326 |
+
*
|
20327 |
+
* @param string $user_email
|
20328 |
+
* @param string $license_key
|
20329 |
+
* @param array $plugin_ids
|
20330 |
+
* @param string|null $license_key
|
20331 |
+
*
|
20332 |
+
* @return array|false
|
20333 |
+
*/
|
20334 |
+
private function fetch_user_marketing_flag_status_by_plugins( $user_email, $license_key, $plugin_ids ) {
|
20335 |
+
$request = array(
|
20336 |
+
'method' => 'POST',
|
20337 |
+
'body' => array(),
|
20338 |
+
'timeout' => WP_FS__DEBUG_SDK ? 60 : 30,
|
20339 |
+
);
|
20340 |
+
|
20341 |
+
if ( is_string( $user_email ) ) {
|
20342 |
+
$request['body']['email'] = $user_email;
|
20343 |
+
} else {
|
20344 |
+
$request['body']['license_key'] = $license_key;
|
20345 |
+
}
|
20346 |
+
|
20347 |
+
$result = array();
|
20348 |
+
|
20349 |
+
$url = WP_FS__ADDRESS . '/action/service/user_plugin/';
|
20350 |
+
$total_plugin_ids = count( $plugin_ids );
|
20351 |
+
|
20352 |
+
$plugin_ids_count_per_request = 10;
|
20353 |
+
for ( $i = 1; $i <= $total_plugin_ids; $i += $plugin_ids_count_per_request ) {
|
20354 |
+
$plugin_ids_set = array_slice( $plugin_ids, $i - 1, $plugin_ids_count_per_request );
|
20355 |
+
|
20356 |
+
$request['body']['plugin_ids'] = $plugin_ids_set;
|
20357 |
+
|
20358 |
+
$response = self::safe_remote_post(
|
20359 |
+
$url,
|
20360 |
+
$request,
|
20361 |
+
WP_FS__TIME_24_HOURS_IN_SEC,
|
20362 |
+
WP_FS__TIME_12_HOURS_IN_SEC
|
20363 |
+
);
|
20364 |
+
|
20365 |
+
if ( ! is_wp_error( $response ) ) {
|
20366 |
+
$decoded = is_string( $response['body'] ) ?
|
20367 |
+
json_decode( $response['body'] ) :
|
20368 |
+
null;
|
20369 |
+
|
20370 |
+
if (
|
20371 |
+
!is_object($decoded) ||
|
20372 |
+
!isset($decoded->success) ||
|
20373 |
+
true !== $decoded->success ||
|
20374 |
+
!isset( $decoded->data ) ||
|
20375 |
+
!is_array( $decoded->data )
|
20376 |
+
) {
|
20377 |
+
return false;
|
20378 |
+
}
|
20379 |
+
|
20380 |
+
$result = array_merge( $result, $decoded->data );
|
20381 |
+
}
|
20382 |
+
}
|
20383 |
+
|
20384 |
+
return $result;
|
20385 |
+
}
|
20386 |
+
|
20387 |
+
/**
|
20388 |
+
* @author Leo Fajardo (@leorw)
|
20389 |
+
* @since 2.1.0
|
20390 |
+
*/
|
20391 |
+
function _maybe_show_gdpr_admin_notice() {
|
20392 |
+
if ( ! $this->is_user_in_admin() ) {
|
20393 |
+
return;
|
20394 |
+
}
|
20395 |
+
|
20396 |
+
if ( ! $this->should_handle_gdpr_admin_notice() ) {
|
20397 |
+
return;
|
20398 |
+
}
|
20399 |
+
|
20400 |
+
if ( ! $this->is_user_admin() ) {
|
20401 |
+
return;
|
20402 |
+
}
|
20403 |
+
|
20404 |
+
require_once WP_FS__DIR_INCLUDES . '/class-fs-user-lock.php';
|
20405 |
+
|
20406 |
+
$lock = FS_User_Lock::instance();
|
20407 |
+
|
20408 |
+
/**
|
20409 |
+
* Try to acquire a 60-sec lock based on the WP user and thread/process ID.
|
20410 |
+
*/
|
20411 |
+
if ( ! $lock->try_lock( 60 ) ) {
|
20412 |
+
return;
|
20413 |
+
}
|
20414 |
+
|
20415 |
+
/**
|
20416 |
+
* @var $current_wp_user WP_User
|
20417 |
+
*/
|
20418 |
+
$current_wp_user = self::_get_current_wp_user();
|
20419 |
+
|
20420 |
+
/**
|
20421 |
+
* @var FS_User $current_fs_user
|
20422 |
+
*/
|
20423 |
+
$current_fs_user = Freemius::_get_user_by_email( $current_wp_user->user_email );
|
20424 |
+
|
20425 |
+
$ten_years_in_sec = 10 * 365 * WP_FS__TIME_24_HOURS_IN_SEC;
|
20426 |
+
|
20427 |
+
if ( ! is_object( $current_fs_user ) ) {
|
20428 |
+
// 10-year lock.
|
20429 |
+
$lock->lock( $ten_years_in_sec );
|
20430 |
+
|
20431 |
+
return;
|
20432 |
+
}
|
20433 |
+
|
20434 |
+
$gdpr = FS_GDPR_Manager::instance();
|
20435 |
+
|
20436 |
+
if ( $gdpr->is_opt_in_notice_shown() ) {
|
20437 |
+
// 30-day lock.
|
20438 |
+
$lock->lock( 30 * WP_FS__TIME_24_HOURS_IN_SEC );
|
20439 |
+
|
20440 |
+
return;
|
20441 |
+
}
|
20442 |
+
|
20443 |
+
if ( ! $gdpr->should_show_opt_in_notice() ) {
|
20444 |
+
// 10-year lock.
|
20445 |
+
$lock->lock( $ten_years_in_sec );
|
20446 |
+
|
20447 |
+
return;
|
20448 |
+
}
|
20449 |
+
|
20450 |
+
$last_time_notice_shown = $gdpr->last_time_notice_was_shown();
|
20451 |
+
$was_notice_shown_before = ( false !== $last_time_notice_shown );
|
20452 |
+
|
20453 |
+
if ( $was_notice_shown_before &&
|
20454 |
+
30 * WP_FS__TIME_24_HOURS_IN_SEC > time() - $last_time_notice_shown
|
20455 |
+
) {
|
20456 |
+
// If the notice was shown before, show it again after 30 days from the last time it was shown.
|
20457 |
+
return;
|
20458 |
+
}
|
20459 |
+
|
20460 |
+
/**
|
20461 |
+
* Find all plugin IDs that were installed by the current admin.
|
20462 |
+
*/
|
20463 |
+
$plugin_ids_map = self::get_user_opted_in_module_ids_map( $current_fs_user->id );
|
20464 |
+
|
20465 |
+
if ( empty( $plugin_ids_map )) {
|
20466 |
+
$lock->lock( $ten_years_in_sec );
|
20467 |
+
|
20468 |
+
return;
|
20469 |
+
}
|
20470 |
+
|
20471 |
+
$user_plugins = $this->fetch_user_marketing_flag_status_by_plugins(
|
20472 |
+
$current_fs_user->email,
|
20473 |
+
null,
|
20474 |
+
array_keys( $plugin_ids_map )
|
20475 |
+
);
|
20476 |
+
|
20477 |
+
if ( empty( $user_plugins ) ) {
|
20478 |
+
$lock->lock(
|
20479 |
+
is_array($user_plugins) ?
|
20480 |
+
$ten_years_in_sec :
|
20481 |
+
// Lock for 24-hours on errors.
|
20482 |
+
WP_FS__TIME_24_HOURS_IN_SEC
|
20483 |
+
);
|
20484 |
+
|
20485 |
+
return;
|
20486 |
+
}
|
20487 |
+
|
20488 |
+
$has_unset_marketing_optin = false;
|
20489 |
+
|
20490 |
+
foreach ( $user_plugins as $user_plugin ) {
|
20491 |
+
if ( true == $user_plugin->is_marketing_allowed ) {
|
20492 |
+
unset( $plugin_ids_map[ $user_plugin->plugin_id ] );
|
20493 |
+
}
|
20494 |
+
|
20495 |
+
if ( ! $has_unset_marketing_optin && is_null( $user_plugin->is_marketing_allowed ) ) {
|
20496 |
+
$has_unset_marketing_optin = true;
|
20497 |
+
}
|
20498 |
+
}
|
20499 |
+
|
20500 |
+
if ( empty( $plugin_ids_map ) ||
|
20501 |
+
( $was_notice_shown_before && ! $has_unset_marketing_optin )
|
20502 |
+
) {
|
20503 |
+
$lock->lock( $ten_years_in_sec );
|
20504 |
+
|
20505 |
+
return;
|
20506 |
+
}
|
20507 |
+
|
20508 |
+
$modules = array_merge(
|
20509 |
+
array_values( self::$_accounts->get_option( 'plugins', array() ) ),
|
20510 |
+
array_values( self::$_accounts->get_option( 'themes', array() ) )
|
20511 |
+
);
|
20512 |
+
|
20513 |
+
foreach ( $modules as $module ) {
|
20514 |
+
if ( ! FS_Plugin::is_valid_id( $module->parent_plugin_id ) && isset( $plugin_ids_map[ $module->id ] ) ) {
|
20515 |
+
$plugin_ids_map[ $module->id ] = $module;
|
20516 |
+
}
|
20517 |
+
}
|
20518 |
+
|
20519 |
+
$plugin_title = null;
|
20520 |
+
if ( 1 === count( $plugin_ids_map ) ) {
|
20521 |
+
$module = reset( $plugin_ids_map );
|
20522 |
+
$plugin_title = $module->title;
|
20523 |
+
}
|
20524 |
+
|
20525 |
+
$gdpr->add_opt_in_sticky_notice(
|
20526 |
+
$this->get_gdpr_admin_notice_string( $plugin_ids_map ),
|
20527 |
+
$plugin_title
|
20528 |
+
);
|
20529 |
+
|
20530 |
+
$this->add_gdpr_optin_ajax_handler_and_style();
|
20531 |
+
|
20532 |
+
$gdpr->notice_was_just_shown();
|
20533 |
+
|
20534 |
+
// 30-day lock.
|
20535 |
+
$lock->lock( 30 * WP_FS__TIME_24_HOURS_IN_SEC );
|
20536 |
+
}
|
20537 |
+
|
20538 |
+
/**
|
20539 |
+
* Prevents the GDPR opt-in admin notice from being added if the user has already chosen to allow or not allow
|
20540 |
+
* marketing.
|
20541 |
+
*
|
20542 |
+
* @author Leo Fajardo (@leorw)
|
20543 |
+
* @since 2.1.0
|
20544 |
+
*/
|
20545 |
+
private function disable_opt_in_notice_and_lock_user() {
|
20546 |
+
FS_GDPR_Manager::instance()->disable_opt_in_notice();
|
20547 |
+
|
20548 |
+
require_once WP_FS__DIR_INCLUDES . '/class-fs-user-lock.php';
|
20549 |
+
|
20550 |
+
// 10-year lock.
|
20551 |
+
FS_User_Lock::instance()->lock( 10 * 365 * WP_FS__TIME_24_HOURS_IN_SEC );
|
20552 |
+
}
|
20553 |
+
|
20554 |
+
/**
|
20555 |
+
* @author Leo Fajardo (@leorw)
|
20556 |
+
* @since 2.1.0
|
20557 |
+
*/
|
20558 |
+
function _add_gdpr_optin_js() {
|
20559 |
+
$vars = array( 'id' => $this->_module_id );
|
20560 |
+
|
20561 |
+
fs_require_once_template( 'gdpr-optin-js.php', $vars );
|
20562 |
+
}
|
20563 |
+
|
20564 |
+
/**
|
20565 |
+
* @author Leo Fajardo (@leorw)
|
20566 |
+
* @since 2.1.0
|
20567 |
+
*/
|
20568 |
+
function enqueue_gdpr_optin_notice_style() {
|
20569 |
+
fs_enqueue_local_style( 'fs_gdpr_optin_notice', '/admin/gdpr-optin-notice.css' );
|
20570 |
+
}
|
20571 |
+
|
20572 |
+
/**
|
20573 |
+
* @author Leo Fajardo (@leorw)
|
20574 |
+
* @since 2.1.0
|
20575 |
+
*/
|
20576 |
+
function _maybe_add_gdpr_optin_ajax_handler() {
|
20577 |
+
if ( $this->is_activation_mode() ) {
|
20578 |
+
$this->add_ajax_action( 'fetch_is_marketing_required_flag_value', array( &$this, '_fetch_is_marketing_required_flag_value_ajax_action' ) );
|
20579 |
+
}
|
20580 |
+
|
20581 |
+
if ( FS_GDPR_Manager::instance()->is_opt_in_notice_shown() ) {
|
20582 |
+
$this->add_gdpr_optin_ajax_handler_and_style();
|
20583 |
+
}
|
20584 |
+
}
|
20585 |
+
|
20586 |
+
/**
|
20587 |
+
* @author Leo Fajardo (@leorw)
|
20588 |
+
* @since 2.1.0
|
20589 |
+
*/
|
20590 |
+
function _fetch_is_marketing_required_flag_value_ajax_action() {
|
20591 |
+
$this->_logger->entrance();
|
20592 |
+
|
20593 |
+
$this->check_ajax_referer( 'fetch_is_marketing_required_flag_value' );
|
20594 |
+
|
20595 |
+
$license_key = fs_request_get( 'license_key' );
|
20596 |
+
|
20597 |
+
if ( empty($license_key) ) {
|
20598 |
+
self::shoot_ajax_failure( $this->get_text_inline( 'License key is empty.', 'empty-license-key' ) );
|
20599 |
+
}
|
20600 |
+
|
20601 |
+
$user_plugins = $this->fetch_user_marketing_flag_status_by_plugins(
|
20602 |
+
null,
|
20603 |
+
$license_key,
|
20604 |
+
array( $this->_module_id )
|
20605 |
+
);
|
20606 |
+
|
20607 |
+
if ( ! is_array( $user_plugins ) ||
|
20608 |
+
empty($user_plugins) ||
|
20609 |
+
!isset($user_plugins[0]->plugin_id) ||
|
20610 |
+
$user_plugins[0]->plugin_id != $this->_module_id
|
20611 |
+
) {
|
20612 |
+
/**
|
20613 |
+
* If faced an error or if the module ID do not match to the current module, ask for GDPR opt-in.
|
20614 |
+
*
|
20615 |
+
* @author Vova Feldman (@svovaf)
|
20616 |
+
*/
|
20617 |
+
self::shoot_ajax_success( array( 'is_marketing_allowed' => null ) );
|
20618 |
+
}
|
20619 |
+
|
20620 |
+
self::shoot_ajax_success( array( 'is_marketing_allowed' => $user_plugins[0]->is_marketing_allowed ) );
|
20621 |
+
}
|
20622 |
+
|
20623 |
+
/**
|
20624 |
+
* @author Leo Fajardo (@leorw)
|
20625 |
+
* @since 2.1.0
|
20626 |
+
*/
|
20627 |
+
private function add_gdpr_optin_ajax_handler_and_style() {
|
20628 |
+
// Add GDPR action AJAX callback.
|
20629 |
+
$this->add_ajax_action( 'gdpr_optin_action', array( &$this, '_gdpr_optin_ajax_action' ) );
|
20630 |
+
|
20631 |
+
add_action( 'admin_footer', array( &$this, '_add_gdpr_optin_js' ) );
|
20632 |
+
add_action( 'admin_enqueue_scripts', array( &$this, 'enqueue_gdpr_optin_notice_style' ) );
|
20633 |
+
}
|
20634 |
+
|
20635 |
+
/**
|
20636 |
+
* @author Leo Fajardo (@leorw)
|
20637 |
+
* @since 2.1.0
|
20638 |
+
*/
|
20639 |
+
function _gdpr_optin_ajax_action() {
|
20640 |
+
$this->_logger->entrance();
|
20641 |
+
|
20642 |
+
$this->check_ajax_referer( 'gdpr_optin_action' );
|
20643 |
+
|
20644 |
+
if ( ! fs_request_has( 'is_marketing_allowed' ) || ! fs_request_has( 'plugin_ids' ) ) {
|
20645 |
+
self::shoot_ajax_failure();
|
20646 |
+
}
|
20647 |
+
|
20648 |
+
$current_wp_user = self::_get_current_wp_user();
|
20649 |
+
|
20650 |
+
$plugin_ids = fs_request_get( 'plugin_ids', array() );
|
20651 |
+
if ( ! is_array( $plugin_ids ) || empty( $plugin_ids ) ) {
|
20652 |
+
self::shoot_ajax_failure();
|
20653 |
+
}
|
20654 |
+
|
20655 |
+
$modules = array_merge(
|
20656 |
+
array_values( self::$_accounts->get_option( 'plugins', array() ) ),
|
20657 |
+
array_values( self::$_accounts->get_option( 'themes', array() ) )
|
20658 |
+
);
|
20659 |
+
|
20660 |
+
foreach ( $modules as $key => $module ) {
|
20661 |
+
if ( ! in_array( $module->id, $plugin_ids ) ) {
|
20662 |
+
unset( $modules[ $key ] );
|
20663 |
+
}
|
20664 |
+
}
|
20665 |
+
|
20666 |
+
if ( empty( $modules ) ) {
|
20667 |
+
self::shoot_ajax_failure();
|
20668 |
+
}
|
20669 |
+
|
20670 |
+
$user_api = $this->get_api_user_scope_by_user( Freemius::_get_user_by_email( $current_wp_user->user_email ) );
|
20671 |
+
|
20672 |
+
foreach ( $modules as $module ) {
|
20673 |
+
$user_api->call( "?plugin_id={$module->id}", 'put', array(
|
20674 |
+
'is_marketing_allowed' => ( true == fs_request_get_bool( 'is_marketing_allowed' ) )
|
20675 |
+
) );
|
20676 |
+
}
|
20677 |
+
|
20678 |
+
FS_GDPR_Manager::instance()->remove_opt_in_notice();
|
20679 |
+
|
20680 |
+
require_once WP_FS__DIR_INCLUDES . '/class-fs-user-lock.php';
|
20681 |
+
|
20682 |
+
// 10-year lock.
|
20683 |
+
FS_User_Lock::instance()->lock( 10 * 365 * WP_FS__TIME_24_HOURS_IN_SEC );
|
20684 |
+
|
20685 |
+
self::shoot_ajax_success();
|
20686 |
+
}
|
20687 |
+
|
20688 |
+
/**
|
20689 |
+
* Checks if the GDPR admin notice should be handled. By default, this logic is off, unless the integrator adds the special 'handle_gdpr_admin_notice' filter.
|
20690 |
+
*
|
20691 |
+
* @author Vova Feldman (@svovaf)
|
20692 |
+
* @since 2.1.0
|
20693 |
+
*
|
20694 |
+
* @return bool
|
20695 |
+
*/
|
20696 |
+
private function should_handle_gdpr_admin_notice() {
|
20697 |
+
return $this->apply_filters(
|
20698 |
+
'handle_gdpr_admin_notice',
|
20699 |
+
// Default to false.
|
20700 |
+
false
|
20701 |
+
);
|
20702 |
+
}
|
20703 |
+
|
20704 |
+
#endregion
|
20705 |
+
|
20706 |
+
#----------------------------------------------------------------------------------
|
20707 |
+
#region Marketing
|
20708 |
+
#----------------------------------------------------------------------------------
|
20709 |
+
|
20710 |
+
/**
|
20711 |
+
* Check if current user purchased any other plugins before.
|
20712 |
+
*
|
20713 |
+
* @author Vova Feldman (@svovaf)
|
20714 |
+
* @since 1.0.9
|
20715 |
*
|
20716 |
* @return bool
|
20717 |
*/
|
20760 |
}
|
20761 |
|
20762 |
#endregion
|
20763 |
+
}
|
includes/pum-sdk/freemius/includes/class-fs-admin-notices.php
CHANGED
@@ -55,18 +55,27 @@
|
|
55 |
* @param string $id
|
56 |
* @param string $title
|
57 |
* @param string $module_unique_affix
|
|
|
|
|
58 |
*
|
59 |
* @return FS_Admin_Notices
|
60 |
*/
|
61 |
-
static function instance( $id, $title = '', $module_unique_affix = '' ) {
|
62 |
if ( ! isset( self::$_instances[ $id ] ) ) {
|
63 |
-
self::$_instances[ $id ] = new FS_Admin_Notices( $id, $title, $module_unique_affix );
|
64 |
}
|
65 |
|
66 |
return self::$_instances[ $id ];
|
67 |
}
|
68 |
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
$this->_id = $id;
|
71 |
$this->_title = $title;
|
72 |
$this->_module_unique_affix = $module_unique_affix;
|
@@ -79,6 +88,7 @@
|
|
79 |
$id,
|
80 |
$title,
|
81 |
$module_unique_affix,
|
|
|
82 |
true
|
83 |
);
|
84 |
}
|
@@ -87,6 +97,7 @@
|
|
87 |
$id,
|
88 |
$title,
|
89 |
$module_unique_affix,
|
|
|
90 |
$this->_blog_id
|
91 |
);
|
92 |
}
|
@@ -180,18 +191,25 @@
|
|
180 |
* @author Vova Feldman (@svovaf)
|
181 |
* @since 1.0.7
|
182 |
*
|
183 |
-
* @param string
|
184 |
-
* @param string
|
185 |
-
* @param string
|
186 |
-
* @param string
|
187 |
-
* @param int|null
|
|
|
|
|
|
|
|
|
188 |
*/
|
189 |
function add_sticky(
|
190 |
$message,
|
191 |
$id,
|
192 |
$title = '',
|
193 |
$type = 'success',
|
194 |
-
$network_level_or_blog_id = null
|
|
|
|
|
|
|
195 |
) {
|
196 |
if ( $this->should_use_network_notices( $id, $network_level_or_blog_id ) ) {
|
197 |
$notices = $this->_network_notices;
|
@@ -199,7 +217,7 @@
|
|
199 |
$notices = $this->get_site_notices( $network_level_or_blog_id );
|
200 |
}
|
201 |
|
202 |
-
$notices->add_sticky( $message, $id, $title, $type );
|
203 |
}
|
204 |
|
205 |
/**
|
@@ -264,6 +282,7 @@
|
|
264 |
$this->_id,
|
265 |
$this->_title,
|
266 |
$this->_module_unique_affix,
|
|
|
267 |
$blog_id
|
268 |
);
|
269 |
}
|
55 |
* @param string $id
|
56 |
* @param string $title
|
57 |
* @param string $module_unique_affix
|
58 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on network and
|
59 |
+
* blog admin pages.
|
60 |
*
|
61 |
* @return FS_Admin_Notices
|
62 |
*/
|
63 |
+
static function instance( $id, $title = '', $module_unique_affix = '', $is_network_and_blog_admins = false ) {
|
64 |
if ( ! isset( self::$_instances[ $id ] ) ) {
|
65 |
+
self::$_instances[ $id ] = new FS_Admin_Notices( $id, $title, $module_unique_affix, $is_network_and_blog_admins );
|
66 |
}
|
67 |
|
68 |
return self::$_instances[ $id ];
|
69 |
}
|
70 |
|
71 |
+
/**
|
72 |
+
* @param string $id
|
73 |
+
* @param string $title
|
74 |
+
* @param string $module_unique_affix
|
75 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on network and
|
76 |
+
* blog admin pages.
|
77 |
+
*/
|
78 |
+
protected function __construct( $id, $title = '', $module_unique_affix = '', $is_network_and_blog_admins = false ) {
|
79 |
$this->_id = $id;
|
80 |
$this->_title = $title;
|
81 |
$this->_module_unique_affix = $module_unique_affix;
|
88 |
$id,
|
89 |
$title,
|
90 |
$module_unique_affix,
|
91 |
+
$is_network_and_blog_admins,
|
92 |
true
|
93 |
);
|
94 |
}
|
97 |
$id,
|
98 |
$title,
|
99 |
$module_unique_affix,
|
100 |
+
false,
|
101 |
$this->_blog_id
|
102 |
);
|
103 |
}
|
191 |
* @author Vova Feldman (@svovaf)
|
192 |
* @since 1.0.7
|
193 |
*
|
194 |
+
* @param string $message
|
195 |
+
* @param string $id Message ID
|
196 |
+
* @param string $title
|
197 |
+
* @param string $type
|
198 |
+
* @param int|null $network_level_or_blog_id
|
199 |
+
* @param number|null $wp_user_id
|
200 |
+
* @param string|null $plugin_title
|
201 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on network and
|
202 |
+
* blog admin pages.
|
203 |
*/
|
204 |
function add_sticky(
|
205 |
$message,
|
206 |
$id,
|
207 |
$title = '',
|
208 |
$type = 'success',
|
209 |
+
$network_level_or_blog_id = null,
|
210 |
+
$wp_user_id = null,
|
211 |
+
$plugin_title = null,
|
212 |
+
$is_network_and_blog_admins = false
|
213 |
) {
|
214 |
if ( $this->should_use_network_notices( $id, $network_level_or_blog_id ) ) {
|
215 |
$notices = $this->_network_notices;
|
217 |
$notices = $this->get_site_notices( $network_level_or_blog_id );
|
218 |
}
|
219 |
|
220 |
+
$notices->add_sticky( $message, $id, $title, $type, $wp_user_id, $plugin_title, $is_network_and_blog_admins );
|
221 |
}
|
222 |
|
223 |
/**
|
282 |
$this->_id,
|
283 |
$this->_title,
|
284 |
$this->_module_unique_affix,
|
285 |
+
false,
|
286 |
$blog_id
|
287 |
);
|
288 |
}
|
includes/pum-sdk/freemius/includes/class-fs-plugin-updater.php
CHANGED
@@ -104,8 +104,14 @@
|
|
104 |
), 10, 3 );
|
105 |
}
|
106 |
|
107 |
-
if ( $this->_fs->is_premium()
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
}
|
111 |
|
@@ -175,7 +181,7 @@
|
|
175 |
$plugin_update_row = preg_replace(
|
176 |
'/(\<div.+>)(.+)(\<a.+\<a.+)\<\/div\>/is',
|
177 |
'$1 $2 ' . sprintf(
|
178 |
-
$this->_fs->get_text_inline( '%sRenew your license now%s to access version %s
|
179 |
'<a href="' . $this->_fs->pricing_url() . '">', '</a>',
|
180 |
$r->new_version ) .
|
181 |
'$4',
|
@@ -185,6 +191,44 @@
|
|
185 |
echo $plugin_update_row;
|
186 |
}
|
187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
/**
|
189 |
* Since WP version 3.6, a new security feature was added that denies access to repository with a local ip.
|
190 |
* During development mode we want to be able updating plugin versions via our localhost repository. This
|
@@ -392,6 +436,38 @@
|
|
392 |
$this->add_transient_filters();
|
393 |
}
|
394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
/**
|
396 |
* Try to fetch plugin's info from .org repository.
|
397 |
*
|
104 |
), 10, 3 );
|
105 |
}
|
106 |
|
107 |
+
if ( $this->_fs->is_premium() ) {
|
108 |
+
if ( $this->is_correct_folder_name() ) {
|
109 |
+
add_filter( 'upgrader_post_install', array( &$this, '_maybe_update_folder_name' ), 10, 3 );
|
110 |
+
}
|
111 |
+
|
112 |
+
if ( ! $this->_fs->has_active_valid_license() ) {
|
113 |
+
add_filter( 'wp_prepare_themes_for_js', array( &$this, 'change_theme_update_info_html' ), 10, 1 );
|
114 |
+
}
|
115 |
}
|
116 |
}
|
117 |
|
181 |
$plugin_update_row = preg_replace(
|
182 |
'/(\<div.+>)(.+)(\<a.+\<a.+)\<\/div\>/is',
|
183 |
'$1 $2 ' . sprintf(
|
184 |
+
$this->_fs->get_text_inline( '%sRenew your license now%s to access version %s security & feature updates, and support.', 'renew-license-now' ),
|
185 |
'<a href="' . $this->_fs->pricing_url() . '">', '</a>',
|
186 |
$r->new_version ) .
|
187 |
'$4',
|
191 |
echo $plugin_update_row;
|
192 |
}
|
193 |
|
194 |
+
/**
|
195 |
+
* @author Leo Fajardo (@leorw)
|
196 |
+
* @since 2.0.2
|
197 |
+
*
|
198 |
+
* @param array $prepared_themes
|
199 |
+
*
|
200 |
+
* @return array
|
201 |
+
*/
|
202 |
+
function change_theme_update_info_html( $prepared_themes ) {
|
203 |
+
$theme_basename = $this->_fs->get_plugin_basename();
|
204 |
+
|
205 |
+
if ( ! isset( $prepared_themes[ $theme_basename ] ) ) {
|
206 |
+
return $prepared_themes;
|
207 |
+
}
|
208 |
+
|
209 |
+
$themes_update = get_site_transient( 'update_themes' );
|
210 |
+
if ( ! isset( $themes_update->response[ $theme_basename ] ) ||
|
211 |
+
empty( $themes_update->response[ $theme_basename ]['package'] )
|
212 |
+
) {
|
213 |
+
return $prepared_themes;
|
214 |
+
}
|
215 |
+
|
216 |
+
$prepared_themes[ $theme_basename ]['update'] = preg_replace(
|
217 |
+
'/(\<p.+>)(.+)(\<a.+\<a.+)\.(.+\<\/p\>)/is',
|
218 |
+
'$1 $2 ' . sprintf(
|
219 |
+
$this->_fs->get_text_inline( '%sRenew your license now%s to access version %s security & feature updates, and support.', 'renew-license-now' ),
|
220 |
+
'<a href="' . $this->_fs->pricing_url() . '">', '</a>',
|
221 |
+
$themes_update->response[ $theme_basename ]['new_version'] ) .
|
222 |
+
'$4',
|
223 |
+
$prepared_themes[ $theme_basename ]['update']
|
224 |
+
);
|
225 |
+
|
226 |
+
// Set to false to prevent the "Update now" link for the context theme from being shown on the "Themes" page.
|
227 |
+
$prepared_themes[ $theme_basename ]['hasPackage'] = false;
|
228 |
+
|
229 |
+
return $prepared_themes;
|
230 |
+
}
|
231 |
+
|
232 |
/**
|
233 |
* Since WP version 3.6, a new security feature was added that denies access to repository with a local ip.
|
234 |
* During development mode we want to be able updating plugin versions via our localhost repository. This
|
436 |
$this->add_transient_filters();
|
437 |
}
|
438 |
|
439 |
+
/**
|
440 |
+
* @author Leo Fajardo (@leorw)
|
441 |
+
* @since 2.0.2
|
442 |
+
*/
|
443 |
+
function delete_update_data() {
|
444 |
+
$this->_logger->entrance();
|
445 |
+
|
446 |
+
$transient_key = "update_{$this->_fs->get_module_type()}s";
|
447 |
+
|
448 |
+
$transient_data = get_site_transient( $transient_key );
|
449 |
+
|
450 |
+
// Alias
|
451 |
+
$basename = $this->_fs->get_plugin_basename();
|
452 |
+
|
453 |
+
if ( ! is_object( $transient_data ) ||
|
454 |
+
! isset( $transient_data->response ) ||
|
455 |
+
! is_array( $transient_data->response ) ||
|
456 |
+
empty( $transient_data->response[ $basename ] )
|
457 |
+
) {
|
458 |
+
return;
|
459 |
+
}
|
460 |
+
|
461 |
+
unset( $transient_data->response[ $basename ] );
|
462 |
+
|
463 |
+
// Remove the added filters.
|
464 |
+
$this->remove_transient_filters();
|
465 |
+
|
466 |
+
set_site_transient( $transient_key, $transient_data );
|
467 |
+
|
468 |
+
$this->add_transient_filters();
|
469 |
+
}
|
470 |
+
|
471 |
/**
|
472 |
* Try to fetch plugin's info from .org repository.
|
473 |
*
|
includes/pum-sdk/freemius/includes/class-fs-storage.php
CHANGED
@@ -339,6 +339,7 @@
|
|
339 |
// Network level options.
|
340 |
'affiliate_application_data' => 0,
|
341 |
'connectivity_test' => 0,
|
|
|
342 |
'has_trial_plan' => 0,
|
343 |
'install_sync_timestamp' => 0,
|
344 |
'install_sync_cron' => 0,
|
339 |
// Network level options.
|
340 |
'affiliate_application_data' => 0,
|
341 |
'connectivity_test' => 0,
|
342 |
+
'handle_gdpr_admin_notice' => 0,
|
343 |
'has_trial_plan' => 0,
|
344 |
'install_sync_timestamp' => 0,
|
345 |
'install_sync_cron' => 0,
|
includes/pum-sdk/freemius/includes/class-fs-user-lock.php
ADDED
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @package Freemius
|
4 |
+
* @copyright Copyright (c) 2015, Freemius, Inc.
|
5 |
+
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
|
6 |
+
* @since 2.1.0
|
7 |
+
*/
|
8 |
+
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
+
exit;
|
11 |
+
}
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Class FS_User_Lock
|
15 |
+
*/
|
16 |
+
class FS_User_Lock {
|
17 |
+
/**
|
18 |
+
* @var int
|
19 |
+
*/
|
20 |
+
private $_wp_user_id;
|
21 |
+
/**
|
22 |
+
* @var int
|
23 |
+
*/
|
24 |
+
private $_thread_id;
|
25 |
+
|
26 |
+
#--------------------------------------------------------------------------------
|
27 |
+
#region Singleton
|
28 |
+
#--------------------------------------------------------------------------------
|
29 |
+
|
30 |
+
/**
|
31 |
+
* @var FS_User_Lock
|
32 |
+
*/
|
33 |
+
private static $_instance;
|
34 |
+
|
35 |
+
/**
|
36 |
+
* @author Vova Feldman (@svovaf)
|
37 |
+
* @since 2.1.0
|
38 |
+
*
|
39 |
+
* @return FS_User_Lock
|
40 |
+
*/
|
41 |
+
static function instance() {
|
42 |
+
if ( ! isset( self::$_instance ) ) {
|
43 |
+
self::$_instance = new self();
|
44 |
+
}
|
45 |
+
|
46 |
+
return self::$_instance;
|
47 |
+
}
|
48 |
+
|
49 |
+
#endregion
|
50 |
+
|
51 |
+
private function __construct() {
|
52 |
+
$this->_wp_user_id = Freemius::get_current_wp_user_id();
|
53 |
+
$this->_thread_id = mt_rand( 0, 32000 );
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
/**
|
58 |
+
* Try to acquire lock. If the lock is already set or is being acquired by another locker, don't do anything.
|
59 |
+
*
|
60 |
+
* @author Vova Feldman (@svovaf)
|
61 |
+
* @since 2.1.0
|
62 |
+
*
|
63 |
+
* @param int $expiration
|
64 |
+
*
|
65 |
+
* @return bool TRUE if successfully acquired lock.
|
66 |
+
*/
|
67 |
+
function try_lock( $expiration = 0 ) {
|
68 |
+
if ( $this->is_locked() ) {
|
69 |
+
// Already locked.
|
70 |
+
return false;
|
71 |
+
}
|
72 |
+
|
73 |
+
set_site_transient( "locked_{$this->_wp_user_id}", $this->_thread_id, $expiration );
|
74 |
+
|
75 |
+
if ( $this->has_lock() ) {
|
76 |
+
set_site_transient( "locked_{$this->_wp_user_id}", true, $expiration );
|
77 |
+
|
78 |
+
return true;
|
79 |
+
}
|
80 |
+
|
81 |
+
return false;
|
82 |
+
}
|
83 |
+
|
84 |
+
/**
|
85 |
+
* Acquire lock regardless if it's already acquired by another locker or not.
|
86 |
+
*
|
87 |
+
* @author Vova Feldman (@svovaf)
|
88 |
+
* @since 2.1.0
|
89 |
+
*
|
90 |
+
* @param int $expiration
|
91 |
+
*/
|
92 |
+
function lock( $expiration = 0 ) {
|
93 |
+
set_site_transient( "locked_{$this->_wp_user_id}", true, $expiration );
|
94 |
+
}
|
95 |
+
|
96 |
+
/**
|
97 |
+
* Checks if lock is currently acquired.
|
98 |
+
*
|
99 |
+
* @author Vova Feldman (@svovaf)
|
100 |
+
* @since 2.1.0
|
101 |
+
*
|
102 |
+
* @return bool
|
103 |
+
*/
|
104 |
+
function is_locked() {
|
105 |
+
return ( false !== get_site_transient( "locked_{$this->_wp_user_id}" ) );
|
106 |
+
}
|
107 |
+
|
108 |
+
/**
|
109 |
+
* Unlock the lock.
|
110 |
+
*
|
111 |
+
* @author Vova Feldman (@svovaf)
|
112 |
+
* @since 2.1.0
|
113 |
+
*/
|
114 |
+
function unlock() {
|
115 |
+
delete_site_transient( "locked_{$this->_wp_user_id}" );
|
116 |
+
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Checks if lock is currently acquired by the current locker.
|
120 |
+
*
|
121 |
+
* @return bool
|
122 |
+
*/
|
123 |
+
private function has_lock() {
|
124 |
+
return ( $this->_thread_id == get_site_transient( "locked_{$this->_wp_user_id}" ) );
|
125 |
+
}
|
126 |
+
}
|
includes/pum-sdk/freemius/includes/entities/class-fs-payment.php
CHANGED
@@ -1,94 +1,110 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
|
13 |
-
|
14 |
|
15 |
-
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
|
|
71 |
|
72 |
-
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* @package Freemius
|
4 |
+
* @copyright Copyright (c) 2016, Freemius, Inc.
|
5 |
+
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
|
6 |
+
* @since 1.0.0
|
7 |
+
*/
|
8 |
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
+
exit;
|
11 |
+
}
|
12 |
|
13 |
+
class FS_Payment extends FS_Entity {
|
14 |
|
15 |
+
#region Properties
|
16 |
|
17 |
+
/**
|
18 |
+
* @var number
|
19 |
+
*/
|
20 |
+
public $plugin_id;
|
21 |
+
/**
|
22 |
+
* @var number
|
23 |
+
*/
|
24 |
+
public $user_id;
|
25 |
+
/**
|
26 |
+
* @var number
|
27 |
+
*/
|
28 |
+
public $install_id;
|
29 |
+
/**
|
30 |
+
* @var number
|
31 |
+
*/
|
32 |
+
public $subscription_id;
|
33 |
+
/**
|
34 |
+
* @var number
|
35 |
+
*/
|
36 |
+
public $plan_id;
|
37 |
+
/**
|
38 |
+
* @var number
|
39 |
+
*/
|
40 |
+
public $license_id;
|
41 |
+
/**
|
42 |
+
* @var float
|
43 |
+
*/
|
44 |
+
public $gross;
|
45 |
+
/**
|
46 |
+
* @var number
|
47 |
+
*/
|
48 |
+
public $bound_payment_id;
|
49 |
+
/**
|
50 |
+
* @var string
|
51 |
+
*/
|
52 |
+
public $external_id;
|
53 |
+
/**
|
54 |
+
* @var string
|
55 |
+
*/
|
56 |
+
public $gateway;
|
57 |
+
/**
|
58 |
+
* @var string ISO 3166-1 alpha-2 - two-letter country code.
|
59 |
+
*
|
60 |
+
* @link http://www.wikiwand.com/en/ISO_3166-1_alpha-2
|
61 |
+
*/
|
62 |
+
public $country_code;
|
63 |
+
/**
|
64 |
+
* @var string
|
65 |
+
*/
|
66 |
+
public $vat_id;
|
67 |
+
/**
|
68 |
+
* @var float Actual Tax / VAT in $$$
|
69 |
+
*/
|
70 |
+
public $vat;
|
71 |
+
/**
|
72 |
+
* @var int Payment source.
|
73 |
+
*/
|
74 |
+
public $source = 0;
|
75 |
|
76 |
+
#endregion Properties
|
77 |
|
78 |
+
/**
|
79 |
+
* @param object|bool $payment
|
80 |
+
*/
|
81 |
+
function __construct( $payment = false ) {
|
82 |
+
parent::__construct( $payment );
|
83 |
+
}
|
84 |
|
85 |
+
static function get_type() {
|
86 |
+
return 'payment';
|
87 |
+
}
|
88 |
|
89 |
+
/**
|
90 |
+
* @author Vova Feldman (@svovaf)
|
91 |
+
* @since 1.0.0
|
92 |
+
*
|
93 |
+
* @return bool
|
94 |
+
*/
|
95 |
+
function is_refund() {
|
96 |
+
return ( parent::is_valid_id( $this->bound_payment_id ) && 0 > $this->gross );
|
97 |
+
}
|
98 |
+
|
99 |
+
/**
|
100 |
+
* Checks if the payment was migrated from another platform.
|
101 |
+
*
|
102 |
+
* @author Vova Feldman (@svovaf)
|
103 |
+
* @since 2.0.2
|
104 |
+
*
|
105 |
+
* @return bool
|
106 |
+
*/
|
107 |
+
function is_migrated() {
|
108 |
+
return ( 0 != $this->source );
|
109 |
+
}
|
110 |
+
}
|
includes/pum-sdk/freemius/includes/entities/class-fs-site.php
CHANGED
@@ -169,7 +169,9 @@
|
|
169 |
fs_ends_with( $subdomain, '.staging.wpengine.com' ) ||
|
170 |
// Pantheon
|
171 |
( fs_ends_with($subdomain, 'pantheonsite.io') &&
|
172 |
-
(fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-')))
|
|
|
|
|
173 |
);
|
174 |
}
|
175 |
|
169 |
fs_ends_with( $subdomain, '.staging.wpengine.com' ) ||
|
170 |
// Pantheon
|
171 |
( fs_ends_with($subdomain, 'pantheonsite.io') &&
|
172 |
+
(fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-'))) ||
|
173 |
+
// Cloudways
|
174 |
+
fs_ends_with( $subdomain, '.cloudwaysapps.com' )
|
175 |
);
|
176 |
}
|
177 |
|
includes/pum-sdk/freemius/includes/i18n.php
CHANGED
@@ -87,7 +87,7 @@
|
|
87 |
'license-single-site' => _fs_text( 'Single Site License' ),
|
88 |
'license-unlimited' => _fs_text( 'Unlimited Licenses' ),
|
89 |
'license-x-sites' => _fs_text( 'Up to %s Sites' ),
|
90 |
-
'renew-license-now' => _fs_text( '%sRenew your license now%s to access version %s
|
91 |
'ask-for-upgrade-email-address' => _fs_text( "Enter the email address you've used for the upgrade below and we will resend you the license key." ),
|
92 |
'x-plan' => _fs_x( '%s Plan', 'e.g. Professional Plan' ),
|
93 |
'you-are-step-away' => _fs_text( 'You are just one step away - %s' ),
|
87 |
'license-single-site' => _fs_text( 'Single Site License' ),
|
88 |
'license-unlimited' => _fs_text( 'Unlimited Licenses' ),
|
89 |
'license-x-sites' => _fs_text( 'Up to %s Sites' ),
|
90 |
+
'renew-license-now' => _fs_text( '%sRenew your license now%s to access version %s security & feature updates, and support.' ),
|
91 |
'ask-for-upgrade-email-address' => _fs_text( "Enter the email address you've used for the upgrade below and we will resend you the license key." ),
|
92 |
'x-plan' => _fs_x( '%s Plan', 'e.g. Professional Plan' ),
|
93 |
'you-are-step-away' => _fs_text( 'You are just one step away - %s' ),
|
includes/pum-sdk/freemius/includes/managers/class-fs-admin-notice-manager.php
CHANGED
@@ -57,6 +57,8 @@
|
|
57 |
* @param string $id
|
58 |
* @param string $title
|
59 |
* @param string $module_unique_affix
|
|
|
|
|
60 |
* @param bool $network_level_or_blog_id Since 2.0.0
|
61 |
*
|
62 |
* @return \FS_Admin_Notice_Manager
|
@@ -65,8 +67,13 @@
|
|
65 |
$id,
|
66 |
$title = '',
|
67 |
$module_unique_affix = '',
|
|
|
68 |
$network_level_or_blog_id = false
|
69 |
) {
|
|
|
|
|
|
|
|
|
70 |
$key = strtolower( $id );
|
71 |
|
72 |
if ( is_multisite() ) {
|
@@ -86,6 +93,7 @@
|
|
86 |
$id,
|
87 |
$title,
|
88 |
$module_unique_affix,
|
|
|
89 |
$network_level_or_blog_id
|
90 |
);
|
91 |
}
|
@@ -93,10 +101,19 @@
|
|
93 |
return self::$_instances[ $key ];
|
94 |
}
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
protected function __construct(
|
97 |
$id,
|
98 |
$title = '',
|
99 |
$module_unique_affix = '',
|
|
|
100 |
$network_level_or_blog_id = false
|
101 |
) {
|
102 |
$this->_id = $id;
|
@@ -115,8 +132,12 @@
|
|
115 |
$this->_is_network_notices = false;
|
116 |
}
|
117 |
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
120 |
) {
|
121 |
if ( 0 < count( $this->_sticky_storage ) ) {
|
122 |
$ajax_action_suffix = str_replace( ':', '-', $this->_id );
|
@@ -136,7 +157,10 @@
|
|
136 |
$msg['type'],
|
137 |
true,
|
138 |
$msg['id'],
|
139 |
-
false
|
|
|
|
|
|
|
140 |
);
|
141 |
}
|
142 |
}
|
@@ -196,6 +220,12 @@
|
|
196 |
}
|
197 |
|
198 |
foreach ( $this->_notices as $id => $msg ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
fs_require_template( 'admin-notice.php', $msg );
|
200 |
|
201 |
if ( $msg['sticky'] ) {
|
@@ -220,20 +250,40 @@
|
|
220 |
* @author Vova Feldman (@svovaf)
|
221 |
* @since 1.0.4
|
222 |
*
|
223 |
-
* @param string
|
224 |
-
* @param string
|
225 |
-
* @param string
|
226 |
-
* @param bool
|
227 |
-
* @param string
|
228 |
-
* @param bool
|
|
|
|
|
|
|
|
|
229 |
*
|
230 |
* @uses add_action()
|
231 |
*/
|
232 |
-
function add(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
$notices_type = $this->get_notices_type();
|
234 |
|
235 |
if ( empty( $this->_notices ) ) {
|
236 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
add_action( 'admin_enqueue_scripts', array( &$this, '_enqueue_styles' ) );
|
238 |
}
|
239 |
|
@@ -248,7 +298,8 @@
|
|
248 |
'sticky' => $is_sticky,
|
249 |
'id' => $id,
|
250 |
'manager_id' => $this->_id,
|
251 |
-
'plugin' => $this->_title,
|
|
|
252 |
);
|
253 |
|
254 |
if ( $is_sticky && $store_if_sticky ) {
|
@@ -299,18 +350,22 @@
|
|
299 |
* @author Vova Feldman (@svovaf)
|
300 |
* @since 1.0.7
|
301 |
*
|
302 |
-
* @param string
|
303 |
-
* @param string
|
304 |
-
* @param string
|
305 |
-
* @param string
|
|
|
|
|
|
|
|
|
306 |
*/
|
307 |
-
function add_sticky( $message, $id, $title = '', $type = 'success' ) {
|
308 |
if ( ! empty( $this->_module_unique_affix ) ) {
|
309 |
$message = fs_apply_filter( $this->_module_unique_affix, "sticky_message_{$id}", $message );
|
310 |
$title = fs_apply_filter( $this->_module_unique_affix, "sticky_title_{$id}", $title );
|
311 |
}
|
312 |
|
313 |
-
$this->add( $message, $title, $type, true, $id );
|
314 |
}
|
315 |
|
316 |
/**
|
57 |
* @param string $id
|
58 |
* @param string $title
|
59 |
* @param string $module_unique_affix
|
60 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on
|
61 |
+
* network and blog admin pages.
|
62 |
* @param bool $network_level_or_blog_id Since 2.0.0
|
63 |
*
|
64 |
* @return \FS_Admin_Notice_Manager
|
67 |
$id,
|
68 |
$title = '',
|
69 |
$module_unique_affix = '',
|
70 |
+
$is_network_and_blog_admins = false,
|
71 |
$network_level_or_blog_id = false
|
72 |
) {
|
73 |
+
if ( $is_network_and_blog_admins ) {
|
74 |
+
$network_level_or_blog_id = true;
|
75 |
+
}
|
76 |
+
|
77 |
$key = strtolower( $id );
|
78 |
|
79 |
if ( is_multisite() ) {
|
93 |
$id,
|
94 |
$title,
|
95 |
$module_unique_affix,
|
96 |
+
$is_network_and_blog_admins,
|
97 |
$network_level_or_blog_id
|
98 |
);
|
99 |
}
|
101 |
return self::$_instances[ $key ];
|
102 |
}
|
103 |
|
104 |
+
/**
|
105 |
+
* @param string $id
|
106 |
+
* @param string $title
|
107 |
+
* @param string $module_unique_affix
|
108 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on network and
|
109 |
+
* blog admin pages.
|
110 |
+
* @param bool|int $network_level_or_blog_id
|
111 |
+
*/
|
112 |
protected function __construct(
|
113 |
$id,
|
114 |
$title = '',
|
115 |
$module_unique_affix = '',
|
116 |
+
$is_network_and_blog_admins = false,
|
117 |
$network_level_or_blog_id = false
|
118 |
) {
|
119 |
$this->_id = $id;
|
132 |
$this->_is_network_notices = false;
|
133 |
}
|
134 |
|
135 |
+
$is_network_admin = fs_is_network_admin();
|
136 |
+
$is_blog_admin = fs_is_blog_admin();
|
137 |
+
|
138 |
+
if ( ( $this->_is_network_notices && $is_network_admin ) ||
|
139 |
+
( ! $this->_is_network_notices && $is_blog_admin ) ||
|
140 |
+
( $is_network_and_blog_admins && ( $is_network_admin || $is_blog_admin ) )
|
141 |
) {
|
142 |
if ( 0 < count( $this->_sticky_storage ) ) {
|
143 |
$ajax_action_suffix = str_replace( ':', '-', $this->_id );
|
157 |
$msg['type'],
|
158 |
true,
|
159 |
$msg['id'],
|
160 |
+
false,
|
161 |
+
isset( $msg['wp_user_id'] ) ? $msg['wp_user_id'] : null,
|
162 |
+
! empty( $msg['plugin'] ) ? $msg['plugin'] : null,
|
163 |
+
$is_network_and_blog_admins
|
164 |
);
|
165 |
}
|
166 |
}
|
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'] ) {
|
225 |
+
continue;
|
226 |
+
}
|
227 |
+
}
|
228 |
+
|
229 |
fs_require_template( 'admin-notice.php', $msg );
|
230 |
|
231 |
if ( $msg['sticky'] ) {
|
250 |
* @author Vova Feldman (@svovaf)
|
251 |
* @since 1.0.4
|
252 |
*
|
253 |
+
* @param string $message
|
254 |
+
* @param string $title
|
255 |
+
* @param string $type
|
256 |
+
* @param bool $is_sticky
|
257 |
+
* @param string $id Message ID
|
258 |
+
* @param bool $store_if_sticky
|
259 |
+
* @param number|null $wp_user_id
|
260 |
+
* @param string|null $plugin_title
|
261 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on network
|
262 |
+
* and blog admin pages.
|
263 |
*
|
264 |
* @uses add_action()
|
265 |
*/
|
266 |
+
function add(
|
267 |
+
$message,
|
268 |
+
$title = '',
|
269 |
+
$type = 'success',
|
270 |
+
$is_sticky = false,
|
271 |
+
$id = '',
|
272 |
+
$store_if_sticky = true,
|
273 |
+
$wp_user_id = null,
|
274 |
+
$plugin_title = null,
|
275 |
+
$is_network_and_blog_admins = false
|
276 |
+
) {
|
277 |
$notices_type = $this->get_notices_type();
|
278 |
|
279 |
if ( empty( $this->_notices ) ) {
|
280 |
+
if ( ! $is_network_and_blog_admins ) {
|
281 |
+
add_action( $notices_type, array( &$this, "_admin_notices_hook" ) );
|
282 |
+
} else {
|
283 |
+
add_action( 'network_admin_notices', array( &$this, "_admin_notices_hook" ) );
|
284 |
+
add_action( 'admin_notices', array( &$this, "_admin_notices_hook" ) );
|
285 |
+
}
|
286 |
+
|
287 |
add_action( 'admin_enqueue_scripts', array( &$this, '_enqueue_styles' ) );
|
288 |
}
|
289 |
|
298 |
'sticky' => $is_sticky,
|
299 |
'id' => $id,
|
300 |
'manager_id' => $this->_id,
|
301 |
+
'plugin' => ( ! is_null( $plugin_title ) ? $plugin_title : $this->_title ),
|
302 |
+
'wp_user_id' => $wp_user_id,
|
303 |
);
|
304 |
|
305 |
if ( $is_sticky && $store_if_sticky ) {
|
350 |
* @author Vova Feldman (@svovaf)
|
351 |
* @since 1.0.7
|
352 |
*
|
353 |
+
* @param string $message
|
354 |
+
* @param string $id Message ID
|
355 |
+
* @param string $title
|
356 |
+
* @param string $type
|
357 |
+
* @param number|null $wp_user_id
|
358 |
+
* @param string|null $plugin_title
|
359 |
+
* @param bool $is_network_and_blog_admins Whether or not the message should be shown both on network
|
360 |
+
* and blog admin pages.
|
361 |
*/
|
362 |
+
function add_sticky( $message, $id, $title = '', $type = 'success', $wp_user_id = null, $plugin_title = null, $is_network_and_blog_admins = false ) {
|
363 |
if ( ! empty( $this->_module_unique_affix ) ) {
|
364 |
$message = fs_apply_filter( $this->_module_unique_affix, "sticky_message_{$id}", $message );
|
365 |
$title = fs_apply_filter( $this->_module_unique_affix, "sticky_title_{$id}", $title );
|
366 |
}
|
367 |
|
368 |
+
$this->add( $message, $title, $type, true, $id, true, $wp_user_id, $plugin_title, $is_network_and_blog_admins );
|
369 |
}
|
370 |
|
371 |
/**
|
includes/pum-sdk/freemius/includes/managers/class-fs-gdpr-manager.php
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @package Freemius
|
4 |
+
* @copyright Copyright (c) 2015, Freemius, Inc.
|
5 |
+
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
|
6 |
+
* @since 2.1.0
|
7 |
+
*/
|
8 |
+
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
+
exit;
|
11 |
+
}
|
12 |
+
|
13 |
+
class FS_GDPR_Manager {
|
14 |
+
/**
|
15 |
+
* @var FS_Option_Manager
|
16 |
+
*/
|
17 |
+
private $_storage;
|
18 |
+
/**
|
19 |
+
* @var array {
|
20 |
+
* @type bool $required Are GDPR rules apply on the current context admin.
|
21 |
+
* @type bool $show_opt_in_notice Should the marketing and offers opt-in message be shown to the admin or not. If not set, defaults to `true`.
|
22 |
+
* @type int $notice_shown_at Last time the special GDPR opt-in message was shown to the current admin.
|
23 |
+
* }
|
24 |
+
*/
|
25 |
+
private $_data;
|
26 |
+
/**
|
27 |
+
* @var int
|
28 |
+
*/
|
29 |
+
private $_wp_user_id;
|
30 |
+
/**
|
31 |
+
* @var string
|
32 |
+
*/
|
33 |
+
private $_option_name;
|
34 |
+
/**
|
35 |
+
* @var FS_Admin_Notices
|
36 |
+
*/
|
37 |
+
private $_notices;
|
38 |
+
|
39 |
+
#--------------------------------------------------------------------------------
|
40 |
+
#region Singleton
|
41 |
+
#--------------------------------------------------------------------------------
|
42 |
+
|
43 |
+
/**
|
44 |
+
* @var FS_GDPR_Manager
|
45 |
+
*/
|
46 |
+
private static $_instance;
|
47 |
+
|
48 |
+
/**
|
49 |
+
* @return FS_GDPR_Manager
|
50 |
+
*/
|
51 |
+
public static function instance() {
|
52 |
+
if ( ! isset( self::$_instance ) ) {
|
53 |
+
self::$_instance = new self();
|
54 |
+
}
|
55 |
+
|
56 |
+
return self::$_instance;
|
57 |
+
}
|
58 |
+
|
59 |
+
#endregion
|
60 |
+
|
61 |
+
private function __construct() {
|
62 |
+
$this->_storage = FS_Option_Manager::get_manager( WP_FS__GDPR_OPTION_NAME, true, true );
|
63 |
+
$this->_wp_user_id = Freemius::get_current_wp_user_id();
|
64 |
+
$this->_option_name = "u{$this->_wp_user_id}";
|
65 |
+
$this->_data = $this->_storage->get_option( $this->_option_name, array() );
|
66 |
+
$this->_notices = FS_Admin_Notices::instance( 'all_admins', '', '', true );
|
67 |
+
|
68 |
+
if ( ! is_array( $this->_data ) ) {
|
69 |
+
$this->_data = array();
|
70 |
+
}
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Update a GDPR option for the current admin and store it.
|
75 |
+
*
|
76 |
+
* @author Vova Feldman (@svovaf)
|
77 |
+
* @since 2.1.0
|
78 |
+
*
|
79 |
+
* @param string $name
|
80 |
+
* @param mixed $value
|
81 |
+
*/
|
82 |
+
private function update_option( $name, $value ) {
|
83 |
+
$this->_data[ $name ] = $value;
|
84 |
+
|
85 |
+
$this->_storage->set_option( $this->_option_name, $this->_data, true );
|
86 |
+
}
|
87 |
+
|
88 |
+
/**
|
89 |
+
* @author Leo Fajardo (@leorw)
|
90 |
+
* @since 2.1.0
|
91 |
+
*
|
92 |
+
* @return bool|null
|
93 |
+
*/
|
94 |
+
public function is_required() {
|
95 |
+
return isset( $this->_data['required'] ) ?
|
96 |
+
$this->_data['required'] :
|
97 |
+
null;
|
98 |
+
}
|
99 |
+
|
100 |
+
/**
|
101 |
+
* @author Leo Fajardo (@leorw)
|
102 |
+
* @since 2.1.0
|
103 |
+
*
|
104 |
+
* @param bool $is_required
|
105 |
+
*/
|
106 |
+
public function store_is_required( $is_required ) {
|
107 |
+
$this->update_option( 'required', $is_required );
|
108 |
+
}
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Checks if the GDPR opt-in sticky notice is currently shown.
|
112 |
+
*
|
113 |
+
* @author Vova Feldman (@svovaf)
|
114 |
+
* @since 2.1.0
|
115 |
+
*
|
116 |
+
* @return bool
|
117 |
+
*/
|
118 |
+
public function is_opt_in_notice_shown() {
|
119 |
+
return $this->_notices->has_sticky( "gdpr_optin_actions_{$this->_wp_user_id}", true );
|
120 |
+
}
|
121 |
+
|
122 |
+
/**
|
123 |
+
* Remove the GDPR opt-in sticky notice.
|
124 |
+
*
|
125 |
+
* @author Vova Feldman (@svovaf)
|
126 |
+
* @since 2.1.0
|
127 |
+
*/
|
128 |
+
public function remove_opt_in_notice() {
|
129 |
+
$this->_notices->remove_sticky( "gdpr_optin_actions_{$this->_wp_user_id}", true );
|
130 |
+
|
131 |
+
$this->disable_opt_in_notice();
|
132 |
+
}
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Prevents the opt-in message from being added/shown.
|
136 |
+
*
|
137 |
+
* @author Leo Fajardo (@leorw)
|
138 |
+
* @since 2.1.0
|
139 |
+
*/
|
140 |
+
public function disable_opt_in_notice() {
|
141 |
+
$this->update_option( 'show_opt_in_notice', false );
|
142 |
+
}
|
143 |
+
|
144 |
+
/**
|
145 |
+
* Checks if a GDPR opt-in message needs to be shown to the current admin.
|
146 |
+
*
|
147 |
+
* @author Vova Feldman (@svovaf)
|
148 |
+
* @since 2.1.0
|
149 |
+
*
|
150 |
+
* @return bool
|
151 |
+
*/
|
152 |
+
public function should_show_opt_in_notice() {
|
153 |
+
return (
|
154 |
+
! isset( $this->_data['show_opt_in_notice'] ) ||
|
155 |
+
true === $this->_data['show_opt_in_notice']
|
156 |
+
);
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* Get the last time the GDPR opt-in notice was shown.
|
161 |
+
*
|
162 |
+
* @author Vova Feldman (@svovaf)
|
163 |
+
* @since 2.1.0
|
164 |
+
*
|
165 |
+
* @return false|int
|
166 |
+
*/
|
167 |
+
public function last_time_notice_was_shown() {
|
168 |
+
return isset( $this->_data['notice_shown_at'] ) ?
|
169 |
+
$this->_data['notice_shown_at'] :
|
170 |
+
false;
|
171 |
+
}
|
172 |
+
|
173 |
+
/**
|
174 |
+
* Update the timestamp of the last time the GDPR opt-in message was shown to now.
|
175 |
+
*
|
176 |
+
* @author Vova Feldman (@svovaf)
|
177 |
+
* @since 2.1.0
|
178 |
+
*/
|
179 |
+
public function notice_was_just_shown() {
|
180 |
+
$this->update_option( 'notice_shown_at', WP_FS__SCRIPT_START_TIME );
|
181 |
+
}
|
182 |
+
|
183 |
+
/**
|
184 |
+
* @param string $message
|
185 |
+
* @param string|null $plugin_title
|
186 |
+
*
|
187 |
+
* @author Vova Feldman (@svovaf)
|
188 |
+
* @since 2.1.0
|
189 |
+
*/
|
190 |
+
public function add_opt_in_sticky_notice( $message, $plugin_title = null ) {
|
191 |
+
$this->_notices->add_sticky(
|
192 |
+
$message,
|
193 |
+
"gdpr_optin_actions_{$this->_wp_user_id}",
|
194 |
+
'',
|
195 |
+
'promotion',
|
196 |
+
true,
|
197 |
+
$this->_wp_user_id,
|
198 |
+
$plugin_title,
|
199 |
+
true
|
200 |
+
);
|
201 |
+
}
|
202 |
+
}
|
includes/pum-sdk/freemius/languages/freemius-da_DK.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-da_DK.po
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
-
# Joachim Jensen
|
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:
|
11 |
-
"Last-Translator:
|
12 |
"Language: da_DK\n"
|
13 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -16,1811 +16,2284 @@ msgstr ""
|
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
-
"X-Poedit-KeywordsList:
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
-
#: includes/
|
25 |
-
msgid "
|
26 |
-
msgstr "
|
27 |
-
|
28 |
-
#: includes/i18n.php:38
|
29 |
-
msgid "Add-On"
|
30 |
-
msgstr "Add-On"
|
31 |
|
32 |
-
#: includes/
|
33 |
-
msgid "
|
34 |
-
msgstr "
|
35 |
|
36 |
-
#: includes/
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
|
40 |
-
#: includes/
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
43 |
|
44 |
-
#: includes/
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: includes/
|
49 |
-
msgid "
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: includes/
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#: includes/
|
57 |
-
|
58 |
-
|
59 |
-
msgstr "Opgrader"
|
60 |
|
61 |
-
#: includes/
|
62 |
-
msgid "
|
63 |
-
msgstr "
|
64 |
|
65 |
-
#: includes/
|
66 |
-
|
67 |
-
|
68 |
-
msgstr "Priser"
|
69 |
|
70 |
-
#: includes/
|
71 |
-
|
72 |
-
|
73 |
-
msgstr "Pris"
|
74 |
|
75 |
-
#: includes/
|
76 |
-
msgid "
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: includes/
|
80 |
-
|
81 |
-
|
82 |
-
msgstr "Nedgrader"
|
83 |
|
84 |
-
#: includes/
|
85 |
-
|
86 |
-
|
87 |
-
msgstr "Annuller abonnement"
|
88 |
|
89 |
-
#: includes/
|
90 |
-
msgid "
|
91 |
-
msgstr "
|
92 |
|
93 |
-
#: includes/
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#: includes/
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: includes/
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: includes/
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: includes/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: includes/
|
114 |
-
msgid "
|
115 |
-
msgstr "
|
116 |
|
117 |
-
#: includes/
|
118 |
-
|
119 |
-
|
120 |
-
msgstr "Slet"
|
121 |
|
122 |
-
#: includes/
|
123 |
-
|
124 |
-
|
125 |
-
msgstr "Vis"
|
126 |
|
127 |
-
#: includes/
|
128 |
-
|
129 |
-
|
130 |
-
msgstr "Skjul"
|
131 |
|
132 |
-
#: includes/
|
133 |
-
|
134 |
-
|
135 |
-
msgstr "Rediger"
|
136 |
|
137 |
-
#: includes/
|
138 |
-
|
139 |
-
|
140 |
-
msgstr "Opdater"
|
141 |
|
142 |
-
#: includes/
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
|
146 |
-
#: includes/
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
|
150 |
-
#: includes/
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: includes/
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
|
158 |
-
#: includes/
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
|
162 |
-
#: includes/
|
163 |
-
|
164 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
|
166 |
-
#: includes/
|
167 |
-
|
168 |
-
|
169 |
-
msgstr "Fjern"
|
170 |
|
171 |
-
#: includes/
|
172 |
-
msgctxt "
|
173 |
-
msgid "
|
174 |
-
msgstr "
|
175 |
|
176 |
-
#: includes/
|
177 |
-
|
178 |
-
|
|
|
179 |
|
180 |
-
#: includes/
|
181 |
-
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#: includes/
|
186 |
-
|
187 |
-
|
188 |
-
msgstr "Download %s version now"
|
189 |
|
190 |
-
#: includes/
|
191 |
-
msgctxt "
|
192 |
-
msgid "
|
193 |
-
msgstr "
|
194 |
|
195 |
-
#: includes/
|
196 |
-
msgctxt "E.g. you have a professional license."
|
197 |
msgid "You have a %s license."
|
198 |
msgstr "Du har en %s licens."
|
199 |
|
200 |
-
#: includes/
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#: includes/
|
209 |
-
|
210 |
-
|
211 |
-
msgstr "Prøveperiode"
|
212 |
|
213 |
-
#: includes/
|
214 |
-
|
215 |
-
|
216 |
-
msgstr "Start prøveperiode"
|
217 |
|
218 |
-
#: includes/
|
219 |
-
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: includes/
|
224 |
msgid "Purchase License"
|
225 |
msgstr "Køb licens"
|
226 |
|
227 |
-
#: includes/
|
228 |
-
|
229 |
-
|
230 |
-
msgstr "Køb"
|
231 |
-
|
232 |
-
#: includes/i18n.php:84
|
233 |
-
msgid "Buy License"
|
234 |
-
msgstr "Køb licens"
|
235 |
-
|
236 |
-
#: includes/i18n.php:85
|
237 |
-
msgid "Single Site License"
|
238 |
-
msgstr "Single Site License"
|
239 |
-
|
240 |
-
#: includes/i18n.php:86
|
241 |
-
msgid "Unlimited Licenses"
|
242 |
-
msgstr "Ubegrænsede licenser"
|
243 |
-
|
244 |
-
#: includes/i18n.php:87
|
245 |
-
msgid "Up to %s Sites"
|
246 |
-
msgstr "Op til %s websteder"
|
247 |
-
|
248 |
-
#: includes/i18n.php:88
|
249 |
-
msgid "%sRenew your license now%s to access version %s features and support."
|
250 |
-
msgstr "%sRenew your license now%s to access version %s features and support."
|
251 |
|
252 |
-
#: includes/
|
253 |
-
msgid "
|
254 |
-
msgstr "
|
255 |
|
256 |
-
#: includes/
|
257 |
-
|
258 |
-
|
259 |
-
msgstr "%s Plan"
|
260 |
|
261 |
-
#: includes/
|
262 |
msgid "You are just one step away - %s"
|
263 |
msgstr "Du mangler kun ét skridt - %s"
|
264 |
|
265 |
-
#: includes/
|
266 |
-
msgctxt "%s - plugin name. As complete \"
|
267 |
msgid "Complete \"%s\" Activation Now"
|
268 |
msgstr "Færdiggør aktivering af \"%s\" nu"
|
269 |
|
270 |
-
#: includes/
|
271 |
msgid "We made a few tweaks to the %s, %s"
|
272 |
msgstr "We made a few tweaks to the %s, %s"
|
273 |
|
274 |
-
#: includes/
|
275 |
-
msgid "Opt
|
276 |
-
msgstr "
|
277 |
|
278 |
-
#: includes/
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: includes/
|
283 |
-
|
284 |
-
|
|
|
|
|
285 |
|
286 |
-
#: includes/
|
287 |
-
|
288 |
-
msgid "
|
289 |
-
msgstr "
|
290 |
|
291 |
-
#: includes/
|
292 |
-
|
293 |
-
msgid "
|
294 |
-
msgstr "
|
295 |
|
296 |
-
#: includes/
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#: includes/
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
303 |
|
304 |
-
#: includes/
|
305 |
-
|
306 |
-
|
307 |
-
msgstr "Udløber om %s"
|
308 |
|
309 |
-
#: includes/
|
310 |
-
|
311 |
-
|
312 |
-
msgstr "Auto-fornyer om %s"
|
313 |
|
314 |
-
#: includes/
|
315 |
-
msgid "
|
316 |
-
msgstr "
|
317 |
|
318 |
-
#: includes/
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#: includes/
|
323 |
-
msgid "
|
324 |
-
msgstr "
|
325 |
|
326 |
-
#: includes/
|
327 |
-
|
328 |
-
msgid "
|
329 |
-
msgstr "
|
330 |
|
331 |
-
#: includes/
|
332 |
-
|
333 |
-
msgid "
|
334 |
-
msgstr "
|
335 |
|
336 |
-
#: includes/
|
337 |
-
msgid "
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#: includes/
|
341 |
-
|
342 |
-
|
343 |
-
msgstr "Version"
|
344 |
|
345 |
-
#: includes/
|
346 |
-
msgid "
|
347 |
-
msgstr "
|
348 |
|
349 |
-
#: includes/
|
350 |
-
msgid "
|
351 |
-
msgstr "
|
352 |
|
353 |
-
#: includes/
|
354 |
-
|
355 |
-
|
|
|
356 |
|
357 |
-
#: includes/
|
358 |
-
|
359 |
-
|
|
|
360 |
|
361 |
-
#: includes/
|
362 |
-
|
363 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
|
365 |
-
#: includes/
|
366 |
-
msgid "
|
367 |
-
msgstr "
|
368 |
|
369 |
-
#: includes/
|
370 |
-
msgid "
|
371 |
-
msgstr "
|
372 |
|
373 |
-
#: includes/
|
374 |
-
msgid "
|
375 |
-
msgstr "
|
376 |
|
377 |
-
#: includes/
|
378 |
-
msgid "
|
379 |
-
msgstr "
|
380 |
|
381 |
-
#: includes/
|
382 |
-
msgid "
|
383 |
-
msgstr "
|
384 |
|
385 |
-
#: includes/
|
386 |
-
|
387 |
-
|
388 |
-
msgstr "Sti"
|
389 |
|
390 |
-
#: includes/
|
391 |
-
msgid "
|
392 |
-
msgstr "
|
393 |
|
394 |
-
#: includes/
|
395 |
-
msgid "
|
396 |
-
msgstr "
|
397 |
|
398 |
-
#: includes/
|
399 |
-
|
400 |
-
|
|
|
401 |
|
402 |
-
#: includes/
|
403 |
-
|
404 |
-
|
405 |
-
msgstr "Kortnavn"
|
406 |
|
407 |
-
#: includes/
|
408 |
-
msgid "
|
409 |
-
msgstr "
|
410 |
|
411 |
-
#: includes/
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
|
415 |
-
#: includes/
|
416 |
-
msgid "
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#:
|
420 |
-
|
421 |
-
msgid "
|
422 |
-
msgstr "
|
423 |
|
424 |
-
#:
|
425 |
-
msgid "
|
426 |
-
msgstr "
|
427 |
|
428 |
-
#:
|
429 |
-
|
430 |
-
|
|
|
431 |
|
432 |
-
#:
|
433 |
-
|
434 |
-
|
|
|
435 |
|
436 |
-
|
437 |
-
|
438 |
-
|
|
|
|
|
|
|
439 |
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
|
|
444 |
|
445 |
-
|
446 |
-
|
447 |
-
|
|
|
|
|
448 |
|
449 |
-
#:
|
450 |
msgctxt "as synchronize license"
|
451 |
msgid "Sync License"
|
452 |
msgstr "Synkroniser licens"
|
453 |
|
454 |
-
#:
|
455 |
-
|
456 |
-
|
457 |
-
msgstr "Synkroniser"
|
458 |
-
|
459 |
-
#: includes/i18n.php:141
|
460 |
-
msgid "Activate License"
|
461 |
-
msgstr "Aktiver licens"
|
462 |
-
|
463 |
-
#: includes/i18n.php:142
|
464 |
-
msgid "Activate Free Version"
|
465 |
-
msgstr "Aktiver gratis version"
|
466 |
-
|
467 |
-
#: includes/i18n.php:143
|
468 |
-
msgid "Please enter the license key that you received in the email right after the purchase:"
|
469 |
-
msgstr "Please enter the license key that you received in the email right after the purchase:"
|
470 |
|
471 |
-
#:
|
472 |
-
msgid "
|
473 |
-
msgstr "
|
474 |
|
475 |
-
#:
|
476 |
-
|
477 |
-
|
|
|
478 |
|
479 |
-
#:
|
480 |
-
|
481 |
-
|
|
|
|
|
482 |
|
483 |
-
#:
|
484 |
-
|
485 |
-
|
|
|
|
|
|
|
486 |
|
487 |
-
#:
|
488 |
msgid "Activate"
|
489 |
msgstr "Aktiver"
|
490 |
|
491 |
-
#:
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
msgstr "Spring over & deaktiver"
|
498 |
-
|
499 |
-
#: includes/i18n.php:151
|
500 |
-
msgid "Skip & %s"
|
501 |
-
msgstr "Spring over & %s"
|
502 |
-
|
503 |
-
#: includes/i18n.php:152
|
504 |
-
msgid "No - just deactivate"
|
505 |
-
msgstr "Nej - bare deaktiver"
|
506 |
|
507 |
-
#:
|
508 |
-
msgid "
|
509 |
-
msgstr "
|
510 |
|
511 |
-
#:
|
512 |
-
|
513 |
-
|
514 |
-
msgstr "Aktiv"
|
515 |
|
516 |
-
#:
|
517 |
-
|
518 |
-
|
519 |
-
msgstr "Er aktiv"
|
520 |
|
521 |
-
#:
|
522 |
-
msgid "
|
523 |
-
msgstr "
|
524 |
|
525 |
-
#:
|
526 |
-
msgid "
|
527 |
-
msgstr "
|
528 |
|
529 |
-
#:
|
530 |
-
|
531 |
-
|
|
|
532 |
|
533 |
-
#:
|
534 |
-
msgid "
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#:
|
538 |
-
|
539 |
-
|
540 |
-
msgstr "Aktiver %s plan"
|
541 |
|
542 |
-
#:
|
543 |
-
msgctxt "as
|
544 |
-
msgid "
|
545 |
-
msgstr "
|
546 |
|
547 |
-
#:
|
548 |
-
msgid "
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#:
|
552 |
-
msgid "
|
553 |
-
msgstr "
|
554 |
|
555 |
-
#:
|
556 |
-
msgid "
|
557 |
-
msgstr "
|
558 |
|
559 |
-
#:
|
560 |
-
msgid "
|
561 |
-
msgstr "
|
562 |
|
563 |
-
#:
|
564 |
-
msgid "
|
565 |
-
msgstr "
|
566 |
|
567 |
-
#:
|
568 |
-
|
569 |
-
|
|
|
|
|
570 |
|
571 |
-
#:
|
572 |
-
|
573 |
-
|
|
|
574 |
|
575 |
-
#:
|
576 |
-
|
577 |
-
|
|
|
578 |
|
579 |
-
#:
|
580 |
-
|
581 |
-
|
|
|
582 |
|
583 |
-
#:
|
584 |
-
|
585 |
-
|
|
|
586 |
|
587 |
-
#:
|
588 |
-
msgid "
|
589 |
-
msgstr "
|
590 |
|
591 |
-
#:
|
592 |
-
msgid "
|
593 |
-
msgstr "
|
594 |
|
595 |
-
#:
|
596 |
-
msgid "
|
597 |
-
msgstr "
|
598 |
|
599 |
-
#:
|
600 |
-
msgid "
|
601 |
-
msgstr "
|
602 |
|
603 |
-
#:
|
604 |
-
msgid "
|
605 |
-
msgstr "
|
606 |
|
607 |
-
#:
|
608 |
-
|
609 |
-
|
|
|
|
|
|
|
610 |
|
611 |
-
#:
|
612 |
-
msgid "
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#:
|
616 |
-
|
617 |
-
|
|
|
618 |
|
619 |
-
#:
|
620 |
-
msgid "
|
621 |
-
msgstr "
|
622 |
|
623 |
-
#:
|
624 |
-
msgid "
|
625 |
-
msgstr "
|
626 |
|
627 |
-
#:
|
628 |
-
|
629 |
-
|
|
|
|
|
|
|
630 |
|
631 |
-
#:
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
|
635 |
-
#:
|
636 |
-
msgid "
|
637 |
-
msgstr "
|
638 |
|
639 |
-
#:
|
640 |
-
msgid "
|
641 |
-
msgstr "
|
642 |
|
643 |
-
#:
|
644 |
-
|
645 |
-
|
|
|
646 |
|
647 |
-
#:
|
648 |
-
|
649 |
-
|
|
|
650 |
|
651 |
-
#:
|
652 |
-
msgid "
|
653 |
-
msgstr "
|
654 |
|
655 |
-
#:
|
656 |
-
msgid "
|
657 |
-
msgstr "
|
658 |
|
659 |
-
#:
|
660 |
-
msgid "
|
661 |
-
msgstr "
|
662 |
|
663 |
-
#:
|
664 |
-
msgid "
|
665 |
-
msgstr "
|
666 |
|
667 |
-
#:
|
668 |
-
|
669 |
-
|
|
|
|
|
670 |
|
671 |
-
#:
|
672 |
-
msgid "
|
673 |
-
msgstr "
|
674 |
|
675 |
-
#:
|
676 |
-
msgid "
|
677 |
-
msgstr "
|
678 |
|
679 |
-
#:
|
680 |
-
|
681 |
-
|
682 |
-
msgstr "Other"
|
683 |
|
684 |
-
#:
|
685 |
-
msgid "
|
686 |
-
msgstr "
|
687 |
|
688 |
-
#:
|
689 |
-
msgid "
|
690 |
-
msgstr "
|
691 |
|
692 |
-
#:
|
693 |
-
msgid "
|
694 |
-
msgstr "
|
695 |
|
696 |
-
#:
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
|
700 |
-
|
701 |
-
|
702 |
-
|
|
|
|
|
703 |
|
704 |
-
#:
|
705 |
-
msgid "
|
706 |
-
msgstr "
|
707 |
|
708 |
-
#:
|
709 |
-
msgid "
|
710 |
-
msgstr "
|
711 |
|
712 |
-
#:
|
713 |
-
msgid "
|
714 |
-
msgstr "
|
715 |
|
716 |
-
#:
|
717 |
-
msgid "
|
718 |
-
msgstr "
|
719 |
|
720 |
-
#:
|
721 |
-
msgid "
|
722 |
-
msgstr "
|
723 |
|
724 |
-
#:
|
725 |
-
msgid "
|
726 |
-
msgstr "
|
727 |
|
728 |
-
#:
|
729 |
-
msgid "
|
730 |
-
msgstr "
|
731 |
|
732 |
-
#:
|
733 |
-
msgid "
|
734 |
-
msgstr "
|
735 |
|
736 |
-
#:
|
737 |
-
msgid "
|
738 |
-
msgstr "
|
739 |
|
740 |
-
#:
|
741 |
-
msgid "
|
742 |
-
msgstr "
|
743 |
|
744 |
-
#:
|
745 |
-
|
746 |
-
|
747 |
-
msgstr "Hey %s,"
|
748 |
|
749 |
-
#:
|
750 |
-
|
751 |
-
|
752 |
-
msgstr "Tak %s!"
|
753 |
|
754 |
-
#:
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#:
|
759 |
-
msgid "
|
760 |
-
msgstr "
|
761 |
|
762 |
-
#:
|
763 |
-
msgid "
|
764 |
-
msgstr "
|
765 |
|
766 |
-
#:
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
|
770 |
-
#:
|
771 |
-
msgid "
|
772 |
-
msgstr "
|
773 |
|
774 |
-
#:
|
775 |
-
|
776 |
-
|
|
|
|
|
777 |
|
778 |
-
#:
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#:
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
#:
|
787 |
msgid "Your Profile Overview"
|
788 |
msgstr "Overblik af din profil"
|
789 |
|
790 |
-
#:
|
791 |
msgid "Name and email address"
|
792 |
msgstr "Navn og e-mailadresse"
|
793 |
|
794 |
-
#:
|
795 |
msgid "Your Site Overview"
|
796 |
msgstr "Overblik af dit websted"
|
797 |
|
798 |
-
#:
|
799 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
800 |
msgstr "Websteds-URL, WP version, PHP info, plugins og temaer"
|
801 |
|
802 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
msgid "Current %s Events"
|
804 |
msgstr "Current %s Events"
|
805 |
|
806 |
-
#:
|
807 |
msgid "Activation, deactivation and uninstall"
|
808 |
msgstr "Aktivering, deaktivering og afinstallering"
|
809 |
|
810 |
-
#:
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#:
|
815 |
-
msgid "
|
816 |
-
msgstr "
|
817 |
|
818 |
-
#:
|
819 |
-
msgid "
|
820 |
-
msgstr "
|
821 |
|
822 |
-
#:
|
823 |
-
msgid "
|
824 |
-
msgstr "
|
825 |
|
826 |
-
#:
|
827 |
-
msgid "
|
828 |
-
msgstr "
|
|
|
|
|
|
|
|
|
829 |
|
830 |
-
#:
|
831 |
msgid "Privacy Policy"
|
832 |
msgstr "Privatlivspolitik"
|
833 |
|
834 |
-
#:
|
835 |
msgid "Terms of Service"
|
836 |
msgstr "Servicevilkår"
|
837 |
|
838 |
-
#:
|
839 |
-
msgctxt "as activating plugin"
|
840 |
-
msgid "Activating"
|
841 |
-
msgstr "Aktiverer"
|
842 |
-
|
843 |
-
#: includes/i18n.php:242
|
844 |
msgctxt "as in the process of sending an email"
|
845 |
msgid "Sending email"
|
846 |
msgstr "Sender e-mail"
|
847 |
|
848 |
-
#:
|
849 |
-
msgctxt "
|
850 |
-
msgid "
|
851 |
-
msgstr "
|
852 |
-
|
853 |
-
#: includes/i18n.php:244
|
854 |
-
msgctxt "button label"
|
855 |
-
msgid "Agree & Activate License"
|
856 |
-
msgstr "Accepter & aktiver licens"
|
857 |
-
|
858 |
-
#: includes/i18n.php:245
|
859 |
-
msgctxt "verb"
|
860 |
-
msgid "Skip"
|
861 |
-
msgstr "Spring over"
|
862 |
-
|
863 |
-
#: includes/i18n.php:246
|
864 |
-
msgid "Click here to use the plugin anonymously"
|
865 |
-
msgstr "Klik her for at benytte pluginnet anonymt"
|
866 |
-
|
867 |
-
#: includes/i18n.php:247
|
868 |
-
msgid "Re-send activation email"
|
869 |
-
msgstr "Gensend e-mail om aktivering"
|
870 |
-
|
871 |
-
#: includes/i18n.php:248
|
872 |
-
msgid "License key"
|
873 |
-
msgstr "Licensnøgle"
|
874 |
-
|
875 |
-
#: includes/i18n.php:249
|
876 |
-
msgid "Send License Key"
|
877 |
-
msgstr "Send licensnøgle"
|
878 |
-
|
879 |
-
#: includes/i18n.php:250
|
880 |
-
msgid "Sending license key"
|
881 |
-
msgstr "Sender licensnøgle"
|
882 |
-
|
883 |
-
#: includes/i18n.php:251
|
884 |
-
msgid "Have a license key?"
|
885 |
-
msgstr "Har du en licensnøgle?"
|
886 |
-
|
887 |
-
#: includes/i18n.php:252
|
888 |
-
msgid "Don't have a license key?"
|
889 |
-
msgstr "Har du ikke en licensnøgle?"
|
890 |
-
|
891 |
-
#: includes/i18n.php:253
|
892 |
-
msgid "Can't find your license key?"
|
893 |
-
msgstr "Kan du ikke finde din licensnøgle?"
|
894 |
-
|
895 |
-
#: includes/i18n.php:254
|
896 |
-
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
897 |
-
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
898 |
-
|
899 |
-
#: includes/i18n.php:255
|
900 |
-
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
901 |
-
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
902 |
-
|
903 |
-
#: includes/i18n.php:256
|
904 |
-
msgid "Opt In"
|
905 |
-
msgstr "Tilmeld"
|
906 |
-
|
907 |
-
#: includes/i18n.php:257
|
908 |
-
msgid "Opt Out"
|
909 |
-
msgstr "Frameld"
|
910 |
-
|
911 |
-
#: includes/i18n.php:258
|
912 |
-
msgid "On second thought - I want to continue helping"
|
913 |
-
msgstr "Ved nærmere eftertanke - Jeg vil fortsætte med at hjælpe"
|
914 |
-
|
915 |
-
#: includes/i18n.php:259
|
916 |
-
msgid "Opting out..."
|
917 |
-
msgstr "Framelder..."
|
918 |
-
|
919 |
-
#: includes/i18n.php:260
|
920 |
-
msgid "Opting in..."
|
921 |
-
msgstr "Tilmelder..."
|
922 |
-
|
923 |
-
#: includes/i18n.php:261
|
924 |
-
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
925 |
-
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
926 |
-
|
927 |
-
#: includes/i18n.php:262
|
928 |
-
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."
|
929 |
-
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."
|
930 |
-
|
931 |
-
#: includes/i18n.php:263
|
932 |
-
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
933 |
-
msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
|
934 |
-
|
935 |
-
#: includes/i18n.php:267
|
936 |
-
msgid "Screenshots"
|
937 |
-
msgstr "Skærmbilleder"
|
938 |
|
939 |
-
#:
|
940 |
-
msgid "
|
941 |
-
msgstr "
|
942 |
|
943 |
-
#:
|
944 |
-
|
945 |
-
|
|
|
946 |
|
947 |
-
#:
|
948 |
msgctxt "as turned on"
|
949 |
msgid "On"
|
950 |
msgstr "Til"
|
951 |
|
952 |
-
#:
|
953 |
-
|
954 |
-
|
955 |
-
msgstr "Fra"
|
956 |
|
957 |
-
#:
|
958 |
msgctxt "as code debugging"
|
959 |
msgid "Debugging"
|
960 |
msgstr "Fejlfinding"
|
961 |
|
962 |
-
#:
|
963 |
-
|
964 |
-
msgstr "Freemius tilstand"
|
965 |
-
|
966 |
-
#: includes/i18n.php:277
|
967 |
-
msgctxt "as connection was successful"
|
968 |
-
msgid "Connected"
|
969 |
-
msgstr "Forbundet"
|
970 |
-
|
971 |
-
#: includes/i18n.php:278
|
972 |
-
msgctxt "as connection blocked"
|
973 |
-
msgid "Blocked"
|
974 |
-
msgstr "Blokeret"
|
975 |
-
|
976 |
-
#: includes/i18n.php:279
|
977 |
-
msgctxt "as application program interface"
|
978 |
-
msgid "API"
|
979 |
-
msgstr "API"
|
980 |
-
|
981 |
-
#: includes/i18n.php:280
|
982 |
-
msgctxt "as software development kit versions"
|
983 |
-
msgid "SDK"
|
984 |
-
msgstr "SDK"
|
985 |
-
|
986 |
-
#: includes/i18n.php:281
|
987 |
-
msgctxt "as software development kit versions"
|
988 |
-
msgid "SDK Versions"
|
989 |
-
msgstr "SDK-versioner"
|
990 |
-
|
991 |
-
#: includes/i18n.php:282
|
992 |
-
msgctxt "as plugin folder path"
|
993 |
-
msgid "Plugin Path"
|
994 |
-
msgstr "Plugin-sti"
|
995 |
-
|
996 |
-
#: includes/i18n.php:283
|
997 |
-
msgctxt "as sdk path"
|
998 |
-
msgid "SDK Path"
|
999 |
-
msgstr "SDK-sti"
|
1000 |
-
|
1001 |
-
#: includes/i18n.php:284
|
1002 |
-
msgid "Add Ons of Plugin %s"
|
1003 |
-
msgstr "Tilføjelser til plugin %s"
|
1004 |
-
|
1005 |
-
#: includes/i18n.php:285
|
1006 |
-
msgid "Are you sure you want to delete all Freemius data?"
|
1007 |
-
msgstr "Er du sikker på, du vil slette al Freemius data?"
|
1008 |
-
|
1009 |
-
#: includes/i18n.php:286
|
1010 |
msgid "Actions"
|
1011 |
msgstr "Handlinger"
|
1012 |
|
1013 |
-
#:
|
1014 |
-
msgid "
|
1015 |
-
msgstr "
|
1016 |
-
|
1017 |
-
#: includes/i18n.php:288
|
1018 |
-
msgid "Start Fresh"
|
1019 |
-
msgstr "Start forfra"
|
1020 |
-
|
1021 |
-
#: includes/i18n.php:289
|
1022 |
-
msgid "Clear API Cache"
|
1023 |
-
msgstr "Ryd API-cache"
|
1024 |
-
|
1025 |
-
#: includes/i18n.php:290
|
1026 |
-
msgid "Sync Data From Server"
|
1027 |
-
msgstr "Synkroniser data fra server"
|
1028 |
-
|
1029 |
-
#: includes/i18n.php:291
|
1030 |
-
msgid "Scheduled Crons"
|
1031 |
-
msgstr "Planlagte cron jobs"
|
1032 |
-
|
1033 |
-
#: includes/i18n.php:292
|
1034 |
-
msgid "Cron Type"
|
1035 |
-
msgstr "Cron Type"
|
1036 |
-
|
1037 |
-
#: includes/i18n.php:293
|
1038 |
-
msgid "Plugins & Themes Sync"
|
1039 |
-
msgstr "Synkronisering af plugins og temaer"
|
1040 |
-
|
1041 |
-
#: includes/i18n.php:294
|
1042 |
-
msgid "%s Licenses"
|
1043 |
-
msgstr "%s Licenses"
|
1044 |
-
|
1045 |
-
#: includes/i18n.php:295
|
1046 |
-
msgid "Debug Log"
|
1047 |
-
msgstr "Fejlfindingslog"
|
1048 |
-
|
1049 |
-
#: includes/i18n.php:296
|
1050 |
-
msgid "All"
|
1051 |
-
msgstr "Alle"
|
1052 |
-
|
1053 |
-
#: includes/i18n.php:297
|
1054 |
-
msgid "File"
|
1055 |
-
msgstr "Fil"
|
1056 |
-
|
1057 |
-
#: includes/i18n.php:298
|
1058 |
-
msgid "Function"
|
1059 |
-
msgstr "Funktion"
|
1060 |
-
|
1061 |
-
#: includes/i18n.php:299
|
1062 |
-
msgid "Process ID"
|
1063 |
-
msgstr "Proces-ID"
|
1064 |
-
|
1065 |
-
#: includes/i18n.php:300
|
1066 |
-
msgid "Logger"
|
1067 |
-
msgstr "Logger"
|
1068 |
-
|
1069 |
-
#: includes/i18n.php:301
|
1070 |
-
msgid "Message"
|
1071 |
-
msgstr "Besked"
|
1072 |
-
|
1073 |
-
#: includes/i18n.php:302
|
1074 |
-
msgid "Download"
|
1075 |
-
msgstr "Download"
|
1076 |
-
|
1077 |
-
#: includes/i18n.php:303
|
1078 |
-
msgid "Filter"
|
1079 |
-
msgstr "Filter"
|
1080 |
-
|
1081 |
-
#: includes/i18n.php:304
|
1082 |
-
msgid "Type"
|
1083 |
-
msgstr "Type"
|
1084 |
|
1085 |
-
#:
|
1086 |
-
msgid "All
|
1087 |
-
msgstr "
|
1088 |
|
1089 |
-
#:
|
1090 |
-
msgid "
|
1091 |
-
msgstr "
|
1092 |
|
1093 |
-
#:
|
1094 |
-
|
1095 |
-
|
1096 |
-
msgstr "Tillykke"
|
1097 |
|
1098 |
-
#:
|
1099 |
-
|
1100 |
-
|
1101 |
-
msgstr "Ups"
|
1102 |
|
1103 |
-
#:
|
1104 |
-
|
1105 |
-
|
1106 |
-
msgstr "Yee-haw"
|
1107 |
|
1108 |
-
#:
|
1109 |
-
|
1110 |
-
|
1111 |
-
msgstr "W00t"
|
1112 |
|
1113 |
-
#:
|
1114 |
-
|
1115 |
-
|
1116 |
-
msgstr "Sådan"
|
1117 |
|
1118 |
-
#:
|
1119 |
-
|
1120 |
-
|
1121 |
-
msgstr "Hmm"
|
1122 |
|
1123 |
-
#:
|
1124 |
-
|
1125 |
-
|
|
|
1126 |
|
1127 |
-
#:
|
1128 |
-
|
1129 |
-
|
1130 |
-
msgstr "Hey"
|
1131 |
|
1132 |
-
#:
|
1133 |
-
|
1134 |
-
|
1135 |
-
msgstr "Se her"
|
1136 |
|
1137 |
-
#:
|
1138 |
-
msgid "
|
1139 |
-
msgstr "
|
1140 |
|
1141 |
-
#:
|
1142 |
-
msgid "
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
-
#:
|
1146 |
-
msgid "
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
-
#:
|
1150 |
-
|
1151 |
-
|
|
|
1152 |
|
1153 |
-
#:
|
1154 |
-
msgid "
|
1155 |
-
msgstr "
|
1156 |
|
1157 |
-
#:
|
1158 |
-
|
1159 |
-
|
|
|
1160 |
|
1161 |
-
#:
|
1162 |
-
msgid "
|
1163 |
-
msgstr "
|
1164 |
|
1165 |
-
#:
|
1166 |
-
msgid "
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
-
#:
|
1170 |
-
msgid "
|
1171 |
-
msgstr "
|
1172 |
|
1173 |
-
#:
|
1174 |
-
|
1175 |
-
|
|
|
1176 |
|
1177 |
-
#:
|
1178 |
-
|
1179 |
-
|
|
|
1180 |
|
1181 |
-
#:
|
1182 |
-
msgid "
|
1183 |
-
msgstr "
|
1184 |
|
1185 |
-
#:
|
1186 |
-
msgid "
|
1187 |
-
msgstr "
|
1188 |
|
1189 |
-
#:
|
1190 |
-
msgid "
|
1191 |
-
msgstr "
|
1192 |
|
1193 |
-
#:
|
1194 |
-
|
1195 |
-
|
|
|
1196 |
|
1197 |
-
#:
|
1198 |
-
msgid "
|
1199 |
-
msgstr "
|
1200 |
|
1201 |
-
#:
|
1202 |
-
|
1203 |
-
|
|
|
|
|
1204 |
|
1205 |
-
#:
|
1206 |
-
msgid "
|
1207 |
-
msgstr "
|
1208 |
|
1209 |
-
#:
|
1210 |
-
msgid "
|
1211 |
-
msgstr "
|
1212 |
|
1213 |
-
#:
|
1214 |
-
msgid "
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
-
#:
|
1218 |
-
msgid "
|
1219 |
-
msgstr "
|
1220 |
|
1221 |
-
#:
|
1222 |
-
|
1223 |
-
|
1224 |
-
msgstr "Betalingen for tilføjelsen %s blev gennemført."
|
1225 |
|
1226 |
-
#:
|
1227 |
-
msgid "
|
1228 |
-
msgstr "
|
1229 |
|
1230 |
-
#:
|
1231 |
-
msgid "
|
1232 |
-
msgstr "
|
1233 |
|
1234 |
-
#:
|
1235 |
-
msgid "
|
1236 |
-
msgstr "
|
1237 |
|
1238 |
-
#:
|
1239 |
-
msgid "
|
1240 |
-
msgstr "
|
1241 |
|
1242 |
-
#:
|
1243 |
-
|
1244 |
-
|
|
|
1245 |
|
1246 |
-
#:
|
1247 |
-
msgid "
|
1248 |
-
msgstr "
|
1249 |
|
1250 |
-
#:
|
1251 |
-
msgid "
|
1252 |
-
msgstr "
|
1253 |
|
1254 |
-
#:
|
1255 |
-
msgid "
|
1256 |
-
msgstr "
|
1257 |
|
1258 |
-
#:
|
1259 |
-
|
1260 |
-
|
|
|
1261 |
|
1262 |
-
#:
|
1263 |
-
|
1264 |
-
|
|
|
1265 |
|
1266 |
-
#:
|
1267 |
-
msgid "
|
1268 |
-
msgstr "
|
1269 |
|
1270 |
-
#:
|
1271 |
-
msgid "
|
1272 |
-
msgstr "
|
1273 |
|
1274 |
-
#:
|
1275 |
-
|
1276 |
-
|
|
|
1277 |
|
1278 |
-
#:
|
1279 |
-
msgid "
|
1280 |
-
msgstr "
|
1281 |
|
1282 |
-
#:
|
1283 |
-
msgid "
|
1284 |
-
msgstr "
|
1285 |
|
1286 |
-
#:
|
1287 |
-
msgid "
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
-
#:
|
1291 |
-
msgid "
|
1292 |
-
msgstr "
|
1293 |
|
1294 |
-
#:
|
1295 |
-
msgid "
|
1296 |
-
msgstr "
|
1297 |
|
1298 |
-
#: includes/
|
1299 |
-
|
1300 |
-
msgid "
|
1301 |
-
msgstr "
|
1302 |
|
1303 |
-
#: includes/
|
1304 |
-
|
1305 |
-
|
|
|
|
|
1306 |
|
1307 |
-
#: includes/
|
1308 |
-
|
1309 |
-
|
1310 |
-
msgstr "den seneste version af %s her"
|
1311 |
|
1312 |
-
#: includes/
|
1313 |
-
msgid "
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#:
|
1317 |
-
msgctxt "
|
1318 |
-
msgid "
|
1319 |
-
msgstr "
|
1320 |
|
1321 |
-
#:
|
1322 |
-
msgid "
|
1323 |
-
msgstr "
|
1324 |
|
1325 |
-
#:
|
1326 |
-
msgid "
|
1327 |
-
msgstr "
|
1328 |
|
1329 |
-
#:
|
1330 |
-
msgid "
|
1331 |
-
msgstr "
|
1332 |
|
1333 |
-
#:
|
1334 |
-
|
1335 |
-
|
|
|
1336 |
|
1337 |
-
#:
|
1338 |
-
msgid "
|
1339 |
-
msgstr "
|
1340 |
|
1341 |
-
#:
|
1342 |
-
msgid "
|
1343 |
-
msgstr "
|
1344 |
|
1345 |
-
#:
|
1346 |
-
msgid "
|
1347 |
-
msgstr "
|
1348 |
|
1349 |
-
#:
|
1350 |
-
msgid "
|
1351 |
-
msgstr "
|
1352 |
|
1353 |
-
#:
|
1354 |
-
msgid "
|
1355 |
-
msgstr "
|
1356 |
|
1357 |
-
#:
|
1358 |
-
msgid "
|
1359 |
-
msgstr "
|
1360 |
|
1361 |
-
#:
|
1362 |
-
msgid "
|
1363 |
-
msgstr "
|
1364 |
|
1365 |
-
#:
|
1366 |
-
msgid "
|
1367 |
-
msgstr "
|
1368 |
|
1369 |
-
#:
|
1370 |
-
msgid "
|
1371 |
-
msgstr "
|
1372 |
|
1373 |
-
#:
|
1374 |
-
msgid "
|
1375 |
-
msgstr "
|
1376 |
|
1377 |
-
#:
|
1378 |
-
msgid "
|
1379 |
-
msgstr "
|
1380 |
|
1381 |
-
#:
|
1382 |
-
msgid "
|
1383 |
-
msgstr "
|
1384 |
|
1385 |
-
#:
|
1386 |
-
msgid "
|
1387 |
-
msgstr "
|
1388 |
|
1389 |
-
#:
|
1390 |
-
msgid "
|
1391 |
-
msgstr "
|
1392 |
|
1393 |
-
#:
|
1394 |
-
msgid "
|
1395 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
1396 |
|
1397 |
-
#:
|
1398 |
-
msgid "
|
1399 |
-
msgstr "
|
1400 |
|
1401 |
-
#:
|
1402 |
-
msgid "
|
1403 |
-
msgstr "
|
1404 |
|
1405 |
-
#:
|
1406 |
-
|
1407 |
-
|
1408 |
-
msgstr "%s påkræver adgang til vores API."
|
1409 |
|
1410 |
-
#:
|
1411 |
-
msgid "
|
1412 |
-
msgstr "
|
1413 |
|
1414 |
-
#:
|
1415 |
-
msgid "
|
1416 |
-
msgstr "
|
1417 |
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
|
|
|
|
1421 |
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
|
|
|
|
1425 |
|
1426 |
-
#:
|
1427 |
-
|
1428 |
-
|
|
|
|
|
1429 |
|
1430 |
-
#:
|
1431 |
-
msgid "
|
1432 |
-
msgstr "
|
1433 |
|
1434 |
-
#:
|
1435 |
-
msgid "
|
1436 |
-
msgstr "
|
1437 |
|
1438 |
-
#:
|
1439 |
-
|
1440 |
-
|
|
|
1441 |
|
1442 |
-
#:
|
1443 |
-
msgid "
|
1444 |
-
msgstr "
|
1445 |
|
1446 |
-
#:
|
1447 |
-
msgid "
|
1448 |
-
msgstr "
|
1449 |
|
1450 |
-
#:
|
1451 |
-
msgid "
|
1452 |
-
msgstr "
|
1453 |
|
1454 |
-
#:
|
1455 |
-
msgid "
|
1456 |
-
msgstr "
|
1457 |
|
1458 |
-
#:
|
1459 |
-
msgid "
|
1460 |
-
msgstr "
|
1461 |
|
1462 |
-
#:
|
1463 |
-
msgid "
|
1464 |
-
msgstr "
|
1465 |
|
1466 |
-
#:
|
1467 |
-
msgid "
|
1468 |
-
msgstr "
|
1469 |
|
1470 |
-
#:
|
1471 |
-
msgid "
|
1472 |
-
msgstr "
|
1473 |
|
1474 |
-
#:
|
1475 |
-
|
1476 |
-
|
1477 |
-
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
1478 |
|
1479 |
-
#:
|
1480 |
-
msgid "
|
1481 |
-
msgstr "
|
1482 |
|
1483 |
-
#:
|
1484 |
-
msgid "
|
1485 |
-
msgstr "
|
1486 |
|
1487 |
-
#:
|
1488 |
-
msgid "
|
1489 |
-
msgstr "
|
1490 |
|
1491 |
-
#:
|
1492 |
-
msgid "%s
|
1493 |
-
msgstr "%s
|
1494 |
|
1495 |
-
#:
|
1496 |
-
|
1497 |
-
|
1498 |
-
msgstr "%s virker ikke uden %s."
|
1499 |
|
1500 |
-
#:
|
1501 |
-
|
1502 |
-
|
1503 |
-
msgstr "%s virker ikke uden pluginnet."
|
1504 |
|
1505 |
-
#:
|
1506 |
-
|
1507 |
-
|
1508 |
-
msgstr "Aktivering af %s blev gennemført."
|
1509 |
|
1510 |
-
#:
|
1511 |
-
|
1512 |
-
|
1513 |
-
msgstr "Funktioner og priser"
|
1514 |
|
1515 |
-
#:
|
1516 |
-
msgid "
|
1517 |
-
msgstr "
|
1518 |
|
1519 |
-
#:
|
1520 |
-
msgid "
|
1521 |
-
msgstr "
|
1522 |
|
1523 |
-
#:
|
1524 |
-
msgid "%s
|
1525 |
-
msgstr "%s
|
1526 |
|
1527 |
-
#:
|
1528 |
-
msgid "
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
-
#:
|
1532 |
-
|
1533 |
-
|
1534 |
-
msgstr "Månedligt"
|
1535 |
|
1536 |
-
#:
|
1537 |
-
|
1538 |
-
|
1539 |
-
msgstr "md"
|
1540 |
|
1541 |
-
#:
|
1542 |
-
|
1543 |
-
|
1544 |
-
msgstr "Årligt"
|
1545 |
|
1546 |
-
#:
|
1547 |
-
|
1548 |
-
|
1549 |
-
msgstr "Årligt"
|
1550 |
|
1551 |
-
#:
|
1552 |
-
|
1553 |
-
|
1554 |
-
msgstr "Engangsbeløb"
|
1555 |
|
1556 |
-
#:
|
1557 |
-
|
1558 |
-
|
1559 |
-
msgstr "år"
|
1560 |
|
1561 |
-
#:
|
1562 |
-
msgid "
|
1563 |
-
msgstr "
|
1564 |
|
1565 |
-
#:
|
1566 |
-
|
1567 |
-
|
1568 |
-
msgstr "Bedste"
|
1569 |
|
1570 |
-
#:
|
1571 |
-
|
1572 |
-
|
1573 |
-
msgstr "Faktureret %s"
|
1574 |
|
1575 |
-
#:
|
1576 |
-
|
1577 |
-
|
1578 |
-
msgstr "Spar %s"
|
1579 |
|
1580 |
-
#:
|
1581 |
-
msgid "
|
1582 |
-
msgstr "
|
1583 |
|
1584 |
-
#:
|
1585 |
-
|
1586 |
-
|
1587 |
-
msgstr "Godkend & start prøveperiode"
|
1588 |
|
1589 |
-
#:
|
1590 |
-
msgid "
|
1591 |
-
msgstr "
|
1592 |
|
1593 |
-
#:
|
1594 |
-
msgid "
|
1595 |
-
msgstr "
|
1596 |
|
1597 |
-
#:
|
1598 |
-
msgid "
|
1599 |
-
msgstr "
|
1600 |
|
1601 |
-
#:
|
1602 |
-
msgid "
|
1603 |
-
msgstr "
|
1604 |
|
1605 |
-
#:
|
1606 |
-
msgid "
|
1607 |
-
msgstr "
|
1608 |
|
1609 |
-
#:
|
1610 |
-
msgid "
|
1611 |
-
msgstr "
|
1612 |
|
1613 |
-
#:
|
1614 |
-
msgid "
|
1615 |
-
msgstr "
|
1616 |
|
1617 |
-
#:
|
1618 |
-
msgid "
|
1619 |
-
msgstr "
|
1620 |
|
1621 |
-
#:
|
1622 |
-
msgid "
|
1623 |
-
msgstr "
|
1624 |
|
1625 |
-
#:
|
1626 |
-
|
1627 |
-
|
|
|
1628 |
|
1629 |
-
#:
|
1630 |
-
|
1631 |
-
|
|
|
1632 |
|
1633 |
-
#:
|
1634 |
-
msgid "
|
1635 |
-
msgstr "
|
1636 |
|
1637 |
-
#:
|
1638 |
-
msgid "
|
1639 |
-
msgstr "
|
1640 |
|
1641 |
-
#:
|
1642 |
-
msgid "
|
1643 |
-
msgstr "
|
1644 |
|
1645 |
-
#:
|
1646 |
-
msgid "%s
|
1647 |
-
msgstr "%s
|
1648 |
|
1649 |
-
#:
|
1650 |
-
msgid "
|
1651 |
-
msgstr "
|
1652 |
|
1653 |
-
#:
|
1654 |
-
msgid "
|
1655 |
-
msgstr "
|
1656 |
|
1657 |
-
#:
|
1658 |
-
|
1659 |
-
|
|
|
1660 |
|
1661 |
-
#:
|
1662 |
-
msgid "
|
1663 |
-
msgstr "
|
1664 |
|
1665 |
-
#:
|
1666 |
-
msgid "
|
1667 |
-
msgstr "
|
1668 |
|
1669 |
-
#:
|
1670 |
-
msgid "
|
1671 |
-
msgstr "
|
1672 |
|
1673 |
-
#:
|
1674 |
-
msgid "
|
1675 |
-
msgstr "
|
1676 |
|
1677 |
-
#:
|
1678 |
-
msgid "Premium
|
1679 |
-
msgstr "Premium
|
1680 |
|
1681 |
-
#:
|
1682 |
-
msgid "
|
1683 |
-
msgstr "
|
1684 |
|
1685 |
-
#:
|
1686 |
-
msgid "
|
1687 |
-
msgstr "
|
1688 |
|
1689 |
-
#:
|
1690 |
-
msgid "
|
1691 |
-
msgstr "
|
1692 |
|
1693 |
-
#:
|
1694 |
-
msgid "
|
1695 |
-
msgstr "
|
1696 |
|
1697 |
-
#:
|
1698 |
-
|
1699 |
-
|
|
|
1700 |
|
1701 |
-
#:
|
1702 |
-
|
1703 |
-
msgid "
|
1704 |
-
msgstr "
|
1705 |
|
1706 |
-
#:
|
1707 |
-
|
1708 |
-
msgid "
|
1709 |
-
msgstr "
|
1710 |
|
1711 |
-
#:
|
1712 |
-
|
1713 |
-
msgid "
|
1714 |
-
msgstr "
|
1715 |
|
1716 |
-
#:
|
1717 |
-
|
1718 |
-
|
1719 |
-
msgstr "Ændringslog"
|
1720 |
|
1721 |
-
#:
|
1722 |
-
|
1723 |
-
|
1724 |
-
msgstr "Anmeldelser"
|
1725 |
|
1726 |
-
#:
|
1727 |
-
msgctxt "
|
1728 |
-
msgid "
|
1729 |
-
msgstr "
|
1730 |
|
1731 |
-
#:
|
1732 |
-
msgid "
|
1733 |
-
msgstr "
|
1734 |
|
1735 |
-
#:
|
1736 |
-
msgid "
|
1737 |
-
msgstr "
|
1738 |
|
1739 |
-
#:
|
1740 |
-
msgid "
|
1741 |
-
msgstr "
|
1742 |
|
1743 |
-
#:
|
1744 |
-
msgid "
|
1745 |
-
msgstr "
|
1746 |
|
1747 |
-
#:
|
1748 |
-
|
1749 |
-
|
|
|
1750 |
|
1751 |
-
#:
|
1752 |
-
msgid "
|
1753 |
-
msgstr "
|
1754 |
|
1755 |
-
#:
|
1756 |
-
msgid "
|
1757 |
-
msgstr "
|
1758 |
|
1759 |
-
#:
|
1760 |
-
msgid "
|
1761 |
-
msgstr "
|
1762 |
|
1763 |
-
#:
|
1764 |
-
msgid "
|
1765 |
-
msgstr "
|
1766 |
|
1767 |
-
#:
|
1768 |
-
|
1769 |
-
|
1770 |
-
msgstr "Forfatter:"
|
1771 |
|
1772 |
-
#:
|
1773 |
-
msgid "
|
1774 |
-
msgstr "
|
1775 |
|
1776 |
-
#:
|
1777 |
-
msgid "
|
1778 |
-
msgstr "
|
1779 |
|
1780 |
-
#:
|
1781 |
-
msgid "
|
1782 |
-
msgstr "
|
1783 |
|
1784 |
-
#:
|
1785 |
-
msgid "
|
1786 |
-
msgstr "
|
1787 |
|
1788 |
-
#:
|
1789 |
-
msgid "
|
1790 |
-
msgstr "
|
1791 |
|
1792 |
-
#:
|
1793 |
-
msgid "
|
1794 |
-
msgstr "
|
1795 |
|
1796 |
-
#:
|
1797 |
-
msgid "
|
1798 |
-
msgstr "
|
1799 |
|
1800 |
-
#:
|
1801 |
-
msgid "
|
1802 |
-
msgstr "
|
1803 |
|
1804 |
-
#:
|
1805 |
-
msgid "
|
1806 |
-
msgstr "
|
1807 |
|
1808 |
-
#:
|
1809 |
-
msgid "
|
1810 |
-
msgstr "
|
1811 |
|
1812 |
-
#:
|
1813 |
-
msgid "
|
1814 |
-
msgstr "
|
1815 |
|
1816 |
-
#:
|
1817 |
-
msgid "
|
1818 |
-
msgstr "
|
1819 |
|
1820 |
-
#:
|
1821 |
-
msgid "
|
1822 |
-
msgstr "
|
1823 |
|
1824 |
-
#:
|
1825 |
-
msgid "
|
1826 |
-
msgstr "
|
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
|
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: 2018-05-24 11:59+0000\n"
|
11 |
+
"Last-Translator: Joachim Jensen\n"
|
12 |
"Language: da_DK\n"
|
13 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\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:1551
|
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:1553
|
29 |
+
msgid "Error"
|
30 |
+
msgstr "Fejl"
|
31 |
|
32 |
+
#: includes/class-freemius.php:1871
|
33 |
+
msgid "I found a better %s"
|
34 |
+
msgstr "Jeg fandt et bedre %s"
|
35 |
|
36 |
+
#: includes/class-freemius.php:1873
|
37 |
+
msgid "What's the %s's name?"
|
38 |
+
msgstr "What's the %s's name?"
|
39 |
|
40 |
+
#: includes/class-freemius.php:1879
|
41 |
+
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
+
msgstr "It's a temporary %s. I'm just debugging an issue."
|
43 |
|
44 |
+
#: includes/class-freemius.php:1881
|
45 |
+
msgid "Deactivation"
|
46 |
+
msgstr "Deaktivering"
|
47 |
|
48 |
+
#: includes/class-freemius.php:1882
|
49 |
+
msgid "Theme Switch"
|
50 |
+
msgstr "Temaskift"
|
51 |
|
52 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
53 |
+
msgid "Other"
|
54 |
+
msgstr "Andet"
|
|
|
55 |
|
56 |
+
#: includes/class-freemius.php:1899
|
57 |
+
msgid "I no longer need the %s"
|
58 |
+
msgstr "Jeg har ikke længere brug for %s"
|
59 |
|
60 |
+
#: includes/class-freemius.php:1906
|
61 |
+
msgid "I only needed the %s for a short period"
|
62 |
+
msgstr "Jeg behøvede kun %s i en kort periode"
|
|
|
63 |
|
64 |
+
#: includes/class-freemius.php:1912
|
65 |
+
msgid "The %s broke my site"
|
66 |
+
msgstr "%s ødelagde min webside"
|
|
|
67 |
|
68 |
+
#: includes/class-freemius.php:1919
|
69 |
+
msgid "The %s suddenly stopped working"
|
70 |
+
msgstr "%s stoppede pludseligt med at virke"
|
71 |
|
72 |
+
#: includes/class-freemius.php:1929
|
73 |
+
msgid "I can't pay for it anymore"
|
74 |
+
msgstr "Jeg kan ikke længere betale for det"
|
|
|
75 |
|
76 |
+
#: includes/class-freemius.php:1931
|
77 |
+
msgid "What price would you feel comfortable paying?"
|
78 |
+
msgstr "Hvilken pris ville du foretrække at betale?"
|
|
|
79 |
|
80 |
+
#: includes/class-freemius.php:1937
|
81 |
+
msgid "I don't like to share my information with you"
|
82 |
+
msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
|
83 |
|
84 |
+
#: includes/class-freemius.php:1958
|
85 |
+
msgid "The %s didn't work"
|
86 |
+
msgstr "%s virkede ikke"
|
87 |
|
88 |
+
#: includes/class-freemius.php:1968
|
89 |
+
msgid "I couldn't understand how to make it work"
|
90 |
+
msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
|
91 |
|
92 |
+
#: includes/class-freemius.php:1976
|
93 |
+
msgid "The %s is great, but I need specific feature that you don't support"
|
94 |
+
msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
|
95 |
|
96 |
+
#: includes/class-freemius.php:1978
|
97 |
+
msgid "What feature?"
|
98 |
+
msgstr "Hvilken feature?"
|
99 |
|
100 |
+
#: includes/class-freemius.php:1982
|
101 |
+
msgid "The %s is not working"
|
102 |
+
msgstr "%s virker ikke"
|
103 |
|
104 |
+
#: includes/class-freemius.php:1984
|
105 |
+
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
+
msgstr "Kindly share what didn't work so we can fix it for future users..."
|
107 |
|
108 |
+
#: includes/class-freemius.php:1988
|
109 |
+
msgid "It's not what I was looking for"
|
110 |
+
msgstr "Det er ikke, hvad jeg søgte"
|
|
|
111 |
|
112 |
+
#: includes/class-freemius.php:1990
|
113 |
+
msgid "What you've been looking for?"
|
114 |
+
msgstr "What you've been looking for?"
|
|
|
115 |
|
116 |
+
#: includes/class-freemius.php:1994
|
117 |
+
msgid "The %s didn't work as expected"
|
118 |
+
msgstr "%s virkede ikke som forventet"
|
|
|
119 |
|
120 |
+
#: includes/class-freemius.php:1996
|
121 |
+
msgid "What did you expect?"
|
122 |
+
msgstr "Hvad forventede du?"
|
|
|
123 |
|
124 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
125 |
+
msgid "Freemius Debug"
|
126 |
+
msgstr "Freemius Debug"
|
|
|
127 |
|
128 |
+
#: includes/class-freemius.php:3402
|
129 |
+
msgid "I don't know what is cURL or how to install it, help me!"
|
130 |
+
msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
|
131 |
|
132 |
+
#: includes/class-freemius.php:3404
|
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 "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."
|
135 |
|
136 |
+
#: includes/class-freemius.php:3411
|
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:3516
|
141 |
+
msgid "Yes - do your thing"
|
142 |
+
msgstr "Yes - do your thing"
|
143 |
|
144 |
+
#: includes/class-freemius.php:3521
|
145 |
+
msgid "No - just deactivate"
|
146 |
+
msgstr "Nej - bare deaktiver"
|
147 |
|
148 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
149 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
150 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
151 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
152 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
153 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
154 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
155 |
+
msgctxt "exclamation"
|
156 |
+
msgid "Oops"
|
157 |
+
msgstr "Ups"
|
158 |
|
159 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
164 |
+
msgctxt "addonX cannot run without pluginY"
|
165 |
+
msgid "%s cannot run without %s."
|
166 |
+
msgstr "%s virker ikke uden %s."
|
167 |
|
168 |
+
#: includes/class-freemius.php:4064
|
169 |
+
msgctxt "addonX cannot run..."
|
170 |
+
msgid "%s cannot run without the plugin."
|
171 |
+
msgstr "%s virker ikke uden pluginnet."
|
172 |
|
173 |
+
#: includes/class-freemius.php4176, includes/class-freemius.php4201,
|
174 |
+
#: includes/class-freemius.php:17103
|
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:4815
|
179 |
+
msgid "Premium %s version was successfully activated."
|
180 |
+
msgstr "Premium %s version was successfully activated."
|
|
|
181 |
|
182 |
+
#: includes/class-freemius.php4827, includes/class-freemius.php:6660
|
183 |
+
msgctxt ""
|
184 |
+
msgid "W00t"
|
185 |
+
msgstr "W00t"
|
186 |
|
187 |
+
#: includes/class-freemius.php:4842
|
|
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Du har en %s licens."
|
190 |
|
191 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
192 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
193 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
194 |
+
#: includes/class-freemius.php:16891
|
195 |
+
msgctxt "interjection expressing joy or exuberance"
|
196 |
+
msgid "Yee-haw"
|
197 |
+
msgstr "Yee-haw"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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.php5123, templates/add-ons.php99,
|
208 |
+
#: templates/account/partials/addon.php:283
|
209 |
+
msgid "More information about %s"
|
210 |
+
msgstr "Mere information om %s"
|
211 |
|
212 |
+
#: includes/class-freemius.php:5124
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Køb licens"
|
215 |
|
216 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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 "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 |
|
220 |
+
#: includes/class-freemius.php:6039
|
221 |
+
msgid "start the trial"
|
222 |
+
msgstr "start prøveperioden"
|
223 |
|
224 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
225 |
+
msgid "complete the install"
|
226 |
+
msgstr "færdiggør installeringen"
|
|
|
227 |
|
228 |
+
#: includes/class-freemius.php:6147
|
229 |
msgid "You are just one step away - %s"
|
230 |
msgstr "Du mangler kun ét skridt - %s"
|
231 |
|
232 |
+
#: includes/class-freemius.php:6150
|
233 |
+
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
234 |
msgid "Complete \"%s\" Activation Now"
|
235 |
msgstr "Færdiggør aktivering af \"%s\" nu"
|
236 |
|
237 |
+
#: includes/class-freemius.php:6227
|
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:6231
|
242 |
+
msgid "Opt in to make \"%s\" Better!"
|
243 |
+
msgstr "Opt in to make \"%s\" Better!"
|
244 |
|
245 |
+
#: includes/class-freemius.php:6659
|
246 |
+
msgid "The upgrade of %s was successfully completed."
|
247 |
+
msgstr "Opgraderingen af %s blev fuldendt."
|
248 |
|
249 |
+
#: includes/class-freemius.php8384, includes/class-fs-plugin-updater.php581,
|
250 |
+
#: includes/class-fs-plugin-updater.php733,
|
251 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
252 |
+
msgid "Add-On"
|
253 |
+
msgstr "Tilføjelse"
|
254 |
|
255 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
256 |
+
#: templates/debug.php:510
|
257 |
+
msgid "Plugin"
|
258 |
+
msgstr "Plugin"
|
259 |
|
260 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
261 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
262 |
+
msgid "Theme"
|
263 |
+
msgstr "Tema"
|
264 |
|
265 |
+
#: includes/class-freemius.php:10808
|
266 |
+
msgid "invalid_site_details_collection"
|
267 |
+
msgstr "invalid_site_details_collection"
|
268 |
|
269 |
+
#: includes/class-freemius.php:10928
|
270 |
+
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
271 |
+
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
|
273 |
+
#: includes/class-freemius.php:10930
|
274 |
+
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
275 |
+
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
|
|
276 |
|
277 |
+
#: includes/class-freemius.php:11166
|
278 |
+
msgid "Account is pending activation."
|
279 |
+
msgstr "Account is pending activation."
|
|
|
280 |
|
281 |
+
#: includes/class-freemius.php:13608
|
282 |
+
msgid "%s activation was successfully completed."
|
283 |
+
msgstr "Aktivering af %s blev gennemført."
|
284 |
|
285 |
+
#: includes/class-freemius.php:13622
|
286 |
+
msgid "Your account was successfully activated with the %s plan."
|
287 |
+
msgstr "Din konto blev aktiveret med planen %s."
|
288 |
|
289 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
290 |
+
msgid "Your trial has been successfully started."
|
291 |
+
msgstr "Din prøveperiode er begyndt."
|
292 |
|
293 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
294 |
+
#: includes/class-freemius.php:14317
|
295 |
+
msgid "Couldn't activate %s."
|
296 |
+
msgstr "Kunne ikke aktivere %s."
|
297 |
|
298 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
299 |
+
#: includes/class-freemius.php:14318
|
300 |
+
msgid "Please contact us with the following message:"
|
301 |
+
msgstr "Kontakt os venligst med følgende besked:"
|
302 |
|
303 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
304 |
+
msgid "Upgrade"
|
305 |
+
msgstr "Opgrader"
|
306 |
|
307 |
+
#: includes/class-freemius.php:14672
|
308 |
+
msgid "Start Trial"
|
309 |
+
msgstr "Start prøveperiode"
|
|
|
310 |
|
311 |
+
#: includes/class-freemius.php:14674
|
312 |
+
msgid "Pricing"
|
313 |
+
msgstr "Priser"
|
314 |
|
315 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
316 |
+
msgid "Affiliation"
|
317 |
+
msgstr "Affiliation"
|
318 |
|
319 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
320 |
+
#: templates/account.php146, templates/debug.php:314
|
321 |
+
msgid "Account"
|
322 |
+
msgstr "Konto"
|
323 |
|
324 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
325 |
+
#: includes/customizer/class-fs-customizer-support-section.php:60
|
326 |
+
msgid "Contact Us"
|
327 |
+
msgstr "Kontakt os"
|
328 |
|
329 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
330 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
331 |
+
#: templates/account/partials/addon.php:37
|
332 |
+
msgid "Add-Ons"
|
333 |
+
msgstr "Tilføjelser"
|
334 |
+
|
335 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
336 |
+
msgctxt "noun"
|
337 |
+
msgid "Pricing"
|
338 |
+
msgstr "Priser"
|
339 |
+
|
340 |
+
#: includes/class-freemius.php15009,
|
341 |
+
#: includes/customizer/class-fs-customizer-support-section.php:67
|
342 |
+
msgid "Support Forum"
|
343 |
+
msgstr "Supportforum"
|
344 |
+
|
345 |
+
#: includes/class-freemius.php:15794
|
346 |
+
msgid "Your email has been successfully verified - you are AWESOME!"
|
347 |
+
msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
|
348 |
+
|
349 |
+
#: includes/class-freemius.php:15795
|
350 |
+
msgctxt "a positive response"
|
351 |
+
msgid "Right on"
|
352 |
+
msgstr "Sådan"
|
353 |
+
|
354 |
+
#: includes/class-freemius.php:16367
|
355 |
+
msgid "Your %s Add-on plan was successfully upgraded."
|
356 |
+
msgstr "Your %s Add-on plan was successfully upgraded."
|
357 |
+
|
358 |
+
#: includes/class-freemius.php:16369
|
359 |
+
msgid "%s Add-on was successfully purchased."
|
360 |
+
msgstr "Betalingen for tilføjelsen %s blev gennemført."
|
361 |
+
|
362 |
+
#: includes/class-freemius.php:16372
|
363 |
+
msgid "Download the latest version"
|
364 |
+
msgstr "Download den seneste version"
|
365 |
+
|
366 |
+
#: includes/class-freemius.php:16444
|
367 |
+
msgctxt "%1s - plugin title, %2s - API domain"
|
368 |
+
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
369 |
+
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
370 |
+
|
371 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
372 |
+
#: includes/class-freemius.php:16927
|
373 |
+
msgid "Error received from the server:"
|
374 |
+
msgstr "Fejl modtager fra serveren:"
|
375 |
+
|
376 |
+
#: includes/class-freemius.php:16457
|
377 |
+
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
378 |
+
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
379 |
+
|
380 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
381 |
+
#: includes/class-freemius.php:16910
|
382 |
+
msgctxt ""
|
383 |
+
msgid "Hmm"
|
384 |
+
msgstr "Hmm"
|
385 |
+
|
386 |
+
#: includes/class-freemius.php:16652
|
387 |
+
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."
|
388 |
+
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."
|
389 |
+
|
390 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
391 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
392 |
+
msgctxt "trial period"
|
393 |
+
msgid "Trial"
|
394 |
+
msgstr "Prøveperiode"
|
395 |
+
|
396 |
+
#: includes/class-freemius.php:16658
|
397 |
+
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
398 |
+
msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
399 |
+
|
400 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
401 |
+
msgid "Please contact us here"
|
402 |
+
msgstr "Kontakt os her"
|
403 |
+
|
404 |
+
#: includes/class-freemius.php:16672
|
405 |
+
msgid "Your plan was successfully upgraded."
|
406 |
+
msgstr "Din plan er blevet opgraderet."
|
407 |
+
|
408 |
+
#: includes/class-freemius.php:16689
|
409 |
+
msgid "Your plan was successfully changed to %s."
|
410 |
+
msgstr "Din plan er blevet ændret til %s."
|
411 |
+
|
412 |
+
#: includes/class-freemius.php:16705
|
413 |
+
msgid "Your license has expired. You can still continue using the free %s forever."
|
414 |
+
msgstr "Your license has expired. You can still continue using the free %s forever."
|
415 |
+
|
416 |
+
#: includes/class-freemius.php:16707
|
417 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
418 |
+
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
419 |
+
|
420 |
+
#: includes/class-freemius.php:16715
|
421 |
+
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
422 |
+
msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
|
423 |
+
|
424 |
+
#: includes/class-freemius.php:16728
|
425 |
+
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."
|
426 |
+
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."
|
427 |
+
|
428 |
+
#: includes/class-freemius.php:16751
|
429 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
430 |
+
msgstr "Your free trial has expired. You can still continue using all our free features."
|
431 |
+
|
432 |
+
#: includes/class-freemius.php:16753
|
433 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
434 |
+
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
435 |
+
|
436 |
+
#: includes/class-freemius.php:16858
|
437 |
+
msgid "It looks like the license could not be activated."
|
438 |
+
msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
|
439 |
+
|
440 |
+
#: includes/class-freemius.php:16888
|
441 |
+
msgid "Your license was successfully activated."
|
442 |
+
msgstr "Din licens er blevet aktiveret."
|
443 |
+
|
444 |
+
#: includes/class-freemius.php:16914
|
445 |
+
msgid "It looks like your site currently doesn't have an active license."
|
446 |
+
msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
|
447 |
+
|
448 |
+
#: includes/class-freemius.php:16926
|
449 |
+
msgid "It looks like the license deactivation failed."
|
450 |
+
msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
|
451 |
+
|
452 |
+
#: includes/class-freemius.php:16954
|
453 |
+
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
454 |
+
msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
|
455 |
+
|
456 |
+
#: includes/class-freemius.php:16955
|
457 |
+
msgid "O.K"
|
458 |
+
msgstr "O.K"
|
459 |
+
|
460 |
+
#: includes/class-freemius.php:17003
|
461 |
+
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
462 |
+
msgstr "Din plan blev nedgraderet. Licensen til din %s plan vil udløbe om %s."
|
463 |
+
|
464 |
+
#: includes/class-freemius.php:17013
|
465 |
+
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
466 |
+
msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
467 |
+
|
468 |
+
#: includes/class-freemius.php:17037
|
469 |
+
msgid "You are already running the %s in a trial mode."
|
470 |
+
msgstr "You are already running the %s in a trial mode."
|
471 |
+
|
472 |
+
#: includes/class-freemius.php:17048
|
473 |
+
msgid "You already utilized a trial before."
|
474 |
+
msgstr "Du har allerede brugt din prøveperiode."
|
475 |
+
|
476 |
+
#: includes/class-freemius.php:17062
|
477 |
+
msgid "Plan %s do not exist, therefore, can't start a trial."
|
478 |
+
msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
|
479 |
+
|
480 |
+
#: includes/class-freemius.php:17073
|
481 |
+
msgid "Plan %s does not support a trial period."
|
482 |
+
msgstr "Plan %s understøtter ikke en prøveperiode."
|
483 |
+
|
484 |
+
#: includes/class-freemius.php:17084
|
485 |
+
msgid "None of the %s's plans supports a trial period."
|
486 |
+
msgstr "None of the %s's plans supports a trial period."
|
487 |
+
|
488 |
+
#: includes/class-freemius.php:17134
|
489 |
+
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
490 |
+
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
491 |
+
|
492 |
+
#: includes/class-freemius.php:17185
|
493 |
+
msgid "Your %s free trial was successfully cancelled."
|
494 |
+
msgstr "Din gratis prøveperiode for %s er blevet annulleret."
|
495 |
+
|
496 |
+
#: includes/class-freemius.php:17190
|
497 |
+
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
498 |
+
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
499 |
+
|
500 |
+
#: includes/class-freemius.php:17474
|
501 |
+
msgid "Version %s was released."
|
502 |
+
msgstr "Version %s er blevet udgivet."
|
503 |
+
|
504 |
+
#: includes/class-freemius.php:17474
|
505 |
+
msgid "Please download %s."
|
506 |
+
msgstr "Download venligst %s."
|
507 |
+
|
508 |
+
#: includes/class-freemius.php:17481
|
509 |
+
msgid "the latest %s version here"
|
510 |
+
msgstr "den seneste version af %s her"
|
511 |
+
|
512 |
+
#: includes/class-freemius.php:17486
|
513 |
+
msgid "New"
|
514 |
+
msgstr "Ny"
|
515 |
+
|
516 |
+
#: includes/class-freemius.php:17491
|
517 |
+
msgid "Seems like you got the latest release."
|
518 |
+
msgstr "Det ser ud til, at du har den seneste udgivelse."
|
519 |
+
|
520 |
+
#: includes/class-freemius.php:17492
|
521 |
+
msgid "You are all good!"
|
522 |
+
msgstr "Det var det!"
|
523 |
+
|
524 |
+
#: includes/class-freemius.php:17758
|
525 |
+
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
526 |
+
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
527 |
+
|
528 |
+
#: includes/class-freemius.php:17893
|
529 |
+
msgid "Site successfully opted in."
|
530 |
+
msgstr "Site successfully opted in."
|
531 |
+
|
532 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
533 |
+
msgid "Awesome"
|
534 |
+
msgstr "Sejt"
|
535 |
+
|
536 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
537 |
+
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
538 |
+
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
539 |
+
|
540 |
+
#: includes/class-freemius.php:17911
|
541 |
+
msgid "Thank you!"
|
542 |
+
msgstr "Thank you!"
|
543 |
+
|
544 |
+
#: includes/class-freemius.php:17918
|
545 |
+
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
546 |
+
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
547 |
+
|
548 |
+
#: includes/class-freemius.php:18033
|
549 |
+
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."
|
550 |
+
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."
|
551 |
+
|
552 |
+
#: includes/class-freemius.php:18039
|
553 |
+
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
554 |
+
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
555 |
+
|
556 |
+
#: includes/class-freemius.php:18044
|
557 |
+
msgid "%s is the new owner of the account."
|
558 |
+
msgstr "%s er den nye ejer af kontoen."
|
559 |
+
|
560 |
+
#: includes/class-freemius.php:18046
|
561 |
+
msgctxt "as congratulations"
|
562 |
+
msgid "Congrats"
|
563 |
+
msgstr "Tillykke"
|
564 |
+
|
565 |
+
#: includes/class-freemius.php:18066
|
566 |
+
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
567 |
+
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
568 |
+
|
569 |
+
#: includes/class-freemius.php:18067
|
570 |
+
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
571 |
+
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
572 |
+
|
573 |
+
#: includes/class-freemius.php:18074
|
574 |
+
msgid "Change Ownership"
|
575 |
+
msgstr "Skift ejerskab"
|
576 |
+
|
577 |
+
#: includes/class-freemius.php:18082
|
578 |
+
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
579 |
+
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
580 |
+
|
581 |
+
#: includes/class-freemius.php:18094
|
582 |
+
msgid "Please provide your full name."
|
583 |
+
msgstr "Indtast venligst dit fulde navn."
|
584 |
+
|
585 |
+
#: includes/class-freemius.php:18099
|
586 |
+
msgid "Your name was successfully updated."
|
587 |
+
msgstr "Dit navn er blevet opdateret."
|
588 |
+
|
589 |
+
#: includes/class-freemius.php:18160
|
590 |
+
msgid "You have successfully updated your %s."
|
591 |
+
msgstr "Opdatering af %s blev gennemført."
|
592 |
+
|
593 |
+
#: includes/class-freemius.php:18300
|
594 |
+
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
595 |
+
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
596 |
+
|
597 |
+
#: includes/class-freemius.php:18301
|
598 |
+
msgctxt "advance notice of something that will need attention."
|
599 |
+
msgid "Heads up"
|
600 |
+
msgstr "Se her"
|
601 |
+
|
602 |
+
#: includes/class-freemius.php:18711
|
603 |
+
msgctxt "exclamation"
|
604 |
+
msgid "Hey"
|
605 |
+
msgstr "Hey"
|
606 |
+
|
607 |
+
#: includes/class-freemius.php:18711
|
608 |
+
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
609 |
+
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
610 |
+
|
611 |
+
#: includes/class-freemius.php:18719
|
612 |
+
msgid "No commitment for %s days - cancel anytime!"
|
613 |
+
msgstr "Ingen bindinger i %s dage - annuller når som helst!"
|
614 |
+
|
615 |
+
#: includes/class-freemius.php:18720
|
616 |
+
msgid "No credit card required"
|
617 |
+
msgstr "Betalingskort ikke påkrævet"
|
618 |
+
|
619 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
620 |
+
msgctxt "call to action"
|
621 |
+
msgid "Start free trial"
|
622 |
+
msgstr "Start gratis prøveperiode"
|
623 |
+
|
624 |
+
#: includes/class-freemius.php:18804
|
625 |
+
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!"
|
626 |
+
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!"
|
627 |
+
|
628 |
+
#: includes/class-freemius.php:18813
|
629 |
+
msgid "Learn more"
|
630 |
+
msgstr "Læs mere"
|
631 |
+
|
632 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
633 |
+
#: templates/account.php497, templates/connect.php169,
|
634 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
635 |
+
#: templates/account/partials/addon.php:230
|
636 |
+
msgid "Activate License"
|
637 |
+
msgstr "Aktiver licens"
|
638 |
+
|
639 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
640 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
641 |
+
msgid "Change License"
|
642 |
+
msgstr "Skift licens"
|
643 |
+
|
644 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
645 |
+
msgid "Opt Out"
|
646 |
+
msgstr "Frameld"
|
647 |
+
|
648 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
649 |
+
#: templates/account/partials/site.php43,
|
650 |
+
#: templates/account/partials/site.php:161
|
651 |
+
msgid "Opt In"
|
652 |
+
msgstr "Tilmeld"
|
653 |
+
|
654 |
+
#: includes/class-freemius.php:19245
|
655 |
+
msgid "Please follow these steps to complete the upgrade"
|
656 |
+
msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
|
657 |
+
|
658 |
+
#: includes/class-freemius.php:19249
|
659 |
+
msgid "Download the latest %s version"
|
660 |
+
msgstr "Download den seneste version af %s"
|
661 |
+
|
662 |
+
#: includes/class-freemius.php:19253
|
663 |
+
msgid "Upload and activate the downloaded version"
|
664 |
+
msgstr "Upload og aktiver den downloadede version"
|
665 |
+
|
666 |
+
#: includes/class-freemius.php:19255
|
667 |
+
msgid "How to upload and activate?"
|
668 |
+
msgstr "Upload og aktivering, hvordan?"
|
669 |
+
|
670 |
+
#: includes/class-freemius.php:19384
|
671 |
+
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
672 |
+
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
673 |
+
|
674 |
+
#: includes/class-freemius.php:19545
|
675 |
+
msgid "Auto installation only works for opted-in users."
|
676 |
+
msgstr "Auto installation only works for opted-in users."
|
677 |
+
|
678 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
679 |
+
#: includes/class-fs-plugin-updater.php713,
|
680 |
+
#: includes/class-fs-plugin-updater.php:727
|
681 |
+
msgid "Invalid module ID."
|
682 |
+
msgstr "Ugyldigt modul-ID."
|
683 |
+
|
684 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
685 |
+
msgid "Premium version already active."
|
686 |
+
msgstr "Premium version allerede aktiv."
|
687 |
+
|
688 |
+
#: includes/class-freemius.php:19571
|
689 |
+
msgid "You do not have a valid license to access the premium version."
|
690 |
+
msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
|
691 |
+
|
692 |
+
#: includes/class-freemius.php:19578
|
693 |
+
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
694 |
+
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
695 |
+
|
696 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
697 |
+
msgid "Premium add-on version already installed."
|
698 |
+
msgstr "Premium tilføjelse er allerede installeret."
|
699 |
+
|
700 |
+
#: includes/class-freemius.php:19941
|
701 |
+
msgid "View paid features"
|
702 |
+
msgstr "Vis betalte features"
|
703 |
+
|
704 |
+
#: includes/class-freemius.php:20251
|
705 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
706 |
+
msgstr "Thank you so much for using %s and its add-ons!"
|
707 |
+
|
708 |
+
#: includes/class-freemius.php:20252
|
709 |
+
msgid "Thank you so much for using %s!"
|
710 |
+
msgstr "Thank you so much for using %s!"
|
711 |
+
|
712 |
+
#: includes/class-freemius.php:20258
|
713 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
714 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
715 |
+
|
716 |
+
#: includes/class-freemius.php:20262
|
717 |
+
msgid "Thank you so much for using our products!"
|
718 |
+
msgstr "Thank you so much for using our products!"
|
719 |
+
|
720 |
+
#: includes/class-freemius.php:20263
|
721 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
722 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
723 |
+
|
724 |
+
#: includes/class-freemius.php:20282
|
725 |
+
msgid "%s and its add-ons"
|
726 |
+
msgstr "%s and its add-ons"
|
727 |
+
|
728 |
+
#: includes/class-freemius.php:20291
|
729 |
+
msgid "Products"
|
730 |
+
msgstr "Products"
|
731 |
+
|
732 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
733 |
+
msgid "Yes"
|
734 |
+
msgstr "Yes"
|
735 |
+
|
736 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
737 |
+
msgid "send me security & feature updates, educational content and offers."
|
738 |
+
msgstr "send me security & feature updates, educational content and offers."
|
739 |
+
|
740 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
741 |
+
msgid "No"
|
742 |
+
msgstr "No"
|
743 |
+
|
744 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
745 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
746 |
+
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
747 |
+
|
748 |
+
#: includes/class-freemius.php:20312
|
749 |
+
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 🙂"
|
750 |
+
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 🙂"
|
751 |
+
|
752 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
753 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
754 |
+
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
755 |
+
|
756 |
+
#: includes/class-freemius.php:20598
|
757 |
+
msgid "License key is empty."
|
758 |
+
msgstr "License key is empty."
|
759 |
+
|
760 |
+
#: includes/class-fs-plugin-updater.php184,
|
761 |
+
#: includes/class-fs-plugin-updater.php:219
|
762 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
763 |
+
msgstr "%sRenew your license now%s to access version %s security & feature updates, and support."
|
764 |
+
|
765 |
+
#: includes/class-fs-plugin-updater.php:776
|
766 |
+
msgid "Installing plugin: %s"
|
767 |
+
msgstr "Installerer plugin: %s"
|
768 |
+
|
769 |
+
#: includes/class-fs-plugin-updater.php:817
|
770 |
+
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
771 |
+
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
772 |
+
|
773 |
+
#: includes/class-fs-plugin-updater.php:923
|
774 |
+
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
775 |
+
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
776 |
+
|
777 |
+
#: includes/fs-plugin-info-dialog.php336,
|
778 |
+
#: templates/account/partials/addon.php:287
|
779 |
+
msgctxt "verb"
|
780 |
+
msgid "Purchase"
|
781 |
+
msgstr "Køb"
|
782 |
+
|
783 |
+
#: includes/fs-plugin-info-dialog.php:339
|
784 |
+
msgid "Start my free %s"
|
785 |
+
msgstr "Start min gratis %s"
|
786 |
+
|
787 |
+
#: includes/fs-plugin-info-dialog.php:380
|
788 |
+
msgid "Install Free Version Now"
|
789 |
+
msgstr "Install Free Version Now"
|
790 |
+
|
791 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
792 |
+
#: templates/account/partials/addon.php267,
|
793 |
+
#: templates/account/partials/addon.php:317
|
794 |
+
msgid "Install Now"
|
795 |
+
msgstr "Installer nu"
|
796 |
+
|
797 |
+
#: includes/fs-plugin-info-dialog.php:392
|
798 |
+
msgctxt "as download latest version"
|
799 |
+
msgid "Download Latest Free Version"
|
800 |
+
msgstr "Download Latest Free Version"
|
801 |
+
|
802 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
803 |
+
#: templates/account/partials/addon.php:21
|
804 |
+
msgctxt "as download latest version"
|
805 |
+
msgid "Download Latest"
|
806 |
+
msgstr "Download seneste"
|
807 |
+
|
808 |
+
#: includes/fs-plugin-info-dialog.php:403
|
809 |
+
msgid "Install Free Version Update Now"
|
810 |
+
msgstr "Install Free Version Update Now"
|
811 |
+
|
812 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
813 |
+
msgid "Install Update Now"
|
814 |
+
msgstr "Installer opdatering nu"
|
815 |
+
|
816 |
+
#: includes/fs-plugin-info-dialog.php:415
|
817 |
+
msgid "Newer Free Version (%s) Installed"
|
818 |
+
msgstr "Newer Free Version (%s) Installed"
|
819 |
+
|
820 |
+
#: includes/fs-plugin-info-dialog.php:416
|
821 |
+
msgid "Newer Version (%s) Installed"
|
822 |
+
msgstr "Nyere version (%s) installeret"
|
823 |
+
|
824 |
+
#: includes/fs-plugin-info-dialog.php:424
|
825 |
+
msgid "Latest Free Version Installed"
|
826 |
+
msgstr "Latest Free Version Installed"
|
827 |
+
|
828 |
+
#: includes/fs-plugin-info-dialog.php:425
|
829 |
+
msgid "Latest Version Installed"
|
830 |
+
msgstr "Seneste version installeret"
|
831 |
+
|
832 |
+
#: includes/fs-plugin-info-dialog.php:580
|
833 |
+
msgctxt "Plugin installer section title"
|
834 |
+
msgid "Description"
|
835 |
+
msgstr "Beskrivelse"
|
836 |
+
|
837 |
+
#: includes/fs-plugin-info-dialog.php:581
|
838 |
+
msgctxt "Plugin installer section title"
|
839 |
+
msgid "Installation"
|
840 |
+
msgstr "Installering"
|
841 |
+
|
842 |
+
#: includes/fs-plugin-info-dialog.php:582
|
843 |
+
msgctxt "Plugin installer section title"
|
844 |
+
msgid "FAQ"
|
845 |
+
msgstr "FAQ"
|
846 |
+
|
847 |
+
#: includes/fs-plugin-info-dialog.php583,
|
848 |
+
#: templates/plugin-info/description.php:55
|
849 |
+
msgid "Screenshots"
|
850 |
+
msgstr "Skærmbilleder"
|
851 |
+
|
852 |
+
#: includes/fs-plugin-info-dialog.php:584
|
853 |
+
msgctxt "Plugin installer section title"
|
854 |
+
msgid "Changelog"
|
855 |
+
msgstr "Ændringslog"
|
856 |
+
|
857 |
+
#: includes/fs-plugin-info-dialog.php:585
|
858 |
+
msgctxt "Plugin installer section title"
|
859 |
+
msgid "Reviews"
|
860 |
+
msgstr "Anmeldelser"
|
861 |
+
|
862 |
+
#: includes/fs-plugin-info-dialog.php:586
|
863 |
+
msgctxt "Plugin installer section title"
|
864 |
+
msgid "Other Notes"
|
865 |
+
msgstr "Andre noter"
|
866 |
+
|
867 |
+
#: includes/fs-plugin-info-dialog.php:601
|
868 |
+
msgctxt "Plugin installer section title"
|
869 |
+
msgid "Features & Pricing"
|
870 |
+
msgstr "Funktioner og priser"
|
871 |
+
|
872 |
+
#: includes/fs-plugin-info-dialog.php:611
|
873 |
+
msgid "Plugin Install"
|
874 |
+
msgstr "Plugin-installering"
|
875 |
+
|
876 |
+
#: includes/fs-plugin-info-dialog.php:683
|
877 |
+
msgctxt "e.g. Professional Plan"
|
878 |
+
msgid "%s Plan"
|
879 |
+
msgstr "%s Plan"
|
880 |
+
|
881 |
+
#: includes/fs-plugin-info-dialog.php:709
|
882 |
+
msgctxt "e.g. the best product"
|
883 |
+
msgid "Best"
|
884 |
+
msgstr "Bedste"
|
885 |
+
|
886 |
+
#: includes/fs-plugin-info-dialog.php715,
|
887 |
+
#: includes/fs-plugin-info-dialog.php:735
|
888 |
+
msgctxt "as every month"
|
889 |
+
msgid "Monthly"
|
890 |
+
msgstr "Månedligt"
|
891 |
+
|
892 |
+
#: includes/fs-plugin-info-dialog.php:718
|
893 |
+
msgctxt "as once a year"
|
894 |
+
msgid "Annual"
|
895 |
+
msgstr "Årligt"
|
896 |
+
|
897 |
+
#: includes/fs-plugin-info-dialog.php:721
|
898 |
+
msgid "Lifetime"
|
899 |
+
msgstr "Livstid"
|
900 |
+
|
901 |
+
#: includes/fs-plugin-info-dialog.php735,
|
902 |
+
#: includes/fs-plugin-info-dialog.php737,
|
903 |
+
#: includes/fs-plugin-info-dialog.php:739
|
904 |
+
msgctxt "e.g. billed monthly"
|
905 |
+
msgid "Billed %s"
|
906 |
+
msgstr "Faktureret %s"
|
907 |
+
|
908 |
+
#: includes/fs-plugin-info-dialog.php:737
|
909 |
+
msgctxt "as once a year"
|
910 |
+
msgid "Annually"
|
911 |
+
msgstr "Årligt"
|
912 |
+
|
913 |
+
#: includes/fs-plugin-info-dialog.php:739
|
914 |
+
msgctxt "as once a year"
|
915 |
+
msgid "Once"
|
916 |
+
msgstr "Engangsbeløb"
|
917 |
+
|
918 |
+
#: includes/fs-plugin-info-dialog.php:745
|
919 |
+
msgid "Single Site License"
|
920 |
+
msgstr "Single Site License"
|
921 |
+
|
922 |
+
#: includes/fs-plugin-info-dialog.php:747
|
923 |
+
msgid "Unlimited Licenses"
|
924 |
+
msgstr "Ubegrænsede licenser"
|
925 |
+
|
926 |
+
#: includes/fs-plugin-info-dialog.php:749
|
927 |
+
msgid "Up to %s Sites"
|
928 |
+
msgstr "Op til %s websteder"
|
929 |
+
|
930 |
+
#: includes/fs-plugin-info-dialog.php759,
|
931 |
+
#: templates/plugin-info/features.php:82
|
932 |
+
msgctxt "as monthly period"
|
933 |
+
msgid "mo"
|
934 |
+
msgstr "md"
|
935 |
+
|
936 |
+
#: includes/fs-plugin-info-dialog.php766,
|
937 |
+
#: templates/plugin-info/features.php:80
|
938 |
+
msgctxt "as annual period"
|
939 |
+
msgid "year"
|
940 |
+
msgstr "år"
|
941 |
+
|
942 |
+
#: includes/fs-plugin-info-dialog.php:820
|
943 |
+
msgctxt "noun"
|
944 |
+
msgid "Price"
|
945 |
+
msgstr "Pris"
|
946 |
+
|
947 |
+
#: includes/fs-plugin-info-dialog.php:868
|
948 |
+
msgid "Save %s"
|
949 |
+
msgstr "Spar %s"
|
950 |
+
|
951 |
+
#: includes/fs-plugin-info-dialog.php:878
|
952 |
+
msgid "No commitment for %s - cancel anytime"
|
953 |
+
msgstr "Ingen bindinger ved %s - annuller når som helst"
|
954 |
+
|
955 |
+
#: includes/fs-plugin-info-dialog.php:881
|
956 |
+
msgid "After your free %s, pay as little as %s"
|
957 |
+
msgstr "Efter din gratis %s er prisen kun %s"
|
958 |
+
|
959 |
+
#: includes/fs-plugin-info-dialog.php:892
|
960 |
+
msgid "Details"
|
961 |
+
msgstr "Detaljer"
|
962 |
+
|
963 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
964 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
965 |
+
#: templates/account/partials/addon.php:28
|
966 |
+
msgctxt "product version"
|
967 |
+
msgid "Version"
|
968 |
+
msgstr "Version"
|
969 |
+
|
970 |
+
#: includes/fs-plugin-info-dialog.php:903
|
971 |
+
msgctxt "as the plugin author"
|
972 |
+
msgid "Author"
|
973 |
+
msgstr "Forfatter"
|
974 |
+
|
975 |
+
#: includes/fs-plugin-info-dialog.php:910
|
976 |
+
msgid "Last Updated"
|
977 |
+
msgstr "Senest opdateret"
|
978 |
+
|
979 |
+
#: includes/fs-plugin-info-dialog.php:915
|
980 |
+
msgctxt "x-ago"
|
981 |
+
msgid "%s ago"
|
982 |
+
msgstr "%s siden"
|
983 |
+
|
984 |
+
#: includes/fs-plugin-info-dialog.php:924
|
985 |
+
msgid "Requires WordPress Version"
|
986 |
+
msgstr "Kræver WordPress-version"
|
987 |
+
|
988 |
+
#: includes/fs-plugin-info-dialog.php:925
|
989 |
+
msgid "%s or higher"
|
990 |
+
msgstr "%s eller højere"
|
991 |
+
|
992 |
+
#: includes/fs-plugin-info-dialog.php:932
|
993 |
+
msgid "Compatible up to"
|
994 |
+
msgstr "Kompatibel op til"
|
995 |
+
|
996 |
+
#: includes/fs-plugin-info-dialog.php:940
|
997 |
+
msgid "Downloaded"
|
998 |
+
msgstr "Downloadet"
|
999 |
+
|
1000 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1001 |
+
msgid "%s time"
|
1002 |
+
msgstr "%s gang"
|
1003 |
+
|
1004 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1005 |
+
msgid "%s times"
|
1006 |
+
msgstr "%s gange"
|
1007 |
+
|
1008 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1009 |
+
msgid "WordPress.org Plugin Page"
|
1010 |
+
msgstr "WordPress.org Plugin-side"
|
1011 |
+
|
1012 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1013 |
+
msgid "Plugin Homepage"
|
1014 |
+
msgstr "Plugin-websted"
|
1015 |
+
|
1016 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1017 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1018 |
+
msgid "Donate to this plugin"
|
1019 |
+
msgstr "Donér til dette plugin"
|
1020 |
|
1021 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1022 |
+
msgid "Average Rating"
|
1023 |
+
msgstr "Gennemsnitlig vurdering"
|
1024 |
|
1025 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1026 |
+
msgid "based on %s"
|
1027 |
+
msgstr "baseret på %s"
|
1028 |
|
1029 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1030 |
+
msgid "%s rating"
|
1031 |
+
msgstr "%s vurdering"
|
1032 |
|
1033 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1034 |
+
msgid "%s ratings"
|
1035 |
+
msgstr "%s vurderinger"
|
1036 |
|
1037 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1038 |
+
msgid "%s star"
|
1039 |
+
msgstr "%s stjerne"
|
1040 |
|
1041 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1042 |
+
msgid "%s stars"
|
1043 |
+
msgstr "%s stjerner"
|
|
|
1044 |
|
1045 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1046 |
+
msgid "Click to see reviews that provided a rating of %s"
|
1047 |
+
msgstr "Click to see reviews that provided a rating of %s"
|
1048 |
|
1049 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1050 |
+
msgid "Contributors"
|
1051 |
+
msgstr "Bidragsydere"
|
1052 |
|
1053 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1054 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1055 |
+
msgid "Warning"
|
1056 |
+
msgstr "Advarsel"
|
1057 |
|
1058 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1059 |
+
msgid "This plugin has not been tested with your current version of WordPress."
|
1060 |
+
msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
|
|
|
1061 |
|
1062 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1063 |
+
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1064 |
+
msgstr "This plugin has not been marked as compatible with your version of WordPress."
|
1065 |
|
1066 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1067 |
+
msgid "Paid add-on must be deployed to Freemius."
|
1068 |
+
msgstr "Paid add-on must be deployed to Freemius."
|
1069 |
|
1070 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1071 |
+
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1072 |
+
msgstr "Add-on must be deployed to WordPress.org or Freemius."
|
1073 |
|
1074 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1075 |
+
#: templates/account/partials/site.php:295
|
1076 |
+
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1077 |
+
msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1078 |
|
1079 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1080 |
+
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1081 |
+
msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1082 |
|
1083 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1084 |
+
#: templates/account/partials/site.php:296
|
1085 |
+
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1086 |
+
msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1087 |
|
1088 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1089 |
+
#: templates/account/partials/site.php:297
|
1090 |
+
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1091 |
+
msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1092 |
|
1093 |
+
#. translators: %s: Plan title (e.g. "Professional")
|
1094 |
+
#: templates/account.php86,
|
1095 |
+
#: templates/account/partials/activate-license-button.php31,
|
1096 |
+
#: templates/account/partials/addon.php:27
|
1097 |
+
msgid "Activate %s Plan"
|
1098 |
+
msgstr "Aktiver %s plan"
|
1099 |
|
1100 |
+
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1101 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1102 |
+
#: templates/account/partials/site.php:275
|
1103 |
+
msgid "Auto renews in %s"
|
1104 |
+
msgstr "Auto-fornyer om %s"
|
1105 |
|
1106 |
+
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1107 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1108 |
+
#: templates/account/partials/site.php:277
|
1109 |
+
msgid "Expires in %s"
|
1110 |
+
msgstr "Udløber om %s"
|
1111 |
|
1112 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1113 |
msgctxt "as synchronize license"
|
1114 |
msgid "Sync License"
|
1115 |
msgstr "Synkroniser licens"
|
1116 |
|
1117 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1118 |
+
msgid "Cancel Trial"
|
1119 |
+
msgstr "Annuller prøveperiode"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1120 |
|
1121 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1122 |
+
msgid "Change Plan"
|
1123 |
+
msgstr "Skift plan"
|
1124 |
|
1125 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1126 |
+
msgctxt "verb"
|
1127 |
+
msgid "Upgrade"
|
1128 |
+
msgstr "Opgrader"
|
1129 |
|
1130 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1131 |
+
#: templates/account/partials/site.php:298
|
1132 |
+
msgctxt "verb"
|
1133 |
+
msgid "Downgrade"
|
1134 |
+
msgstr "Nedgrader"
|
1135 |
|
1136 |
+
#: templates/account.php99, templates/add-ons.php126,
|
1137 |
+
#: templates/plugin-info/features.php72,
|
1138 |
+
#: templates/account/partials/addon.php40,
|
1139 |
+
#: templates/account/partials/site.php:31
|
1140 |
+
msgid "Free"
|
1141 |
+
msgstr "Gratis"
|
1142 |
|
1143 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1144 |
msgid "Activate"
|
1145 |
msgstr "Aktiver"
|
1146 |
|
1147 |
+
#: templates/account.php101, templates/debug.php361,
|
1148 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1149 |
+
#: templates/account/partials/addon.php:42
|
1150 |
+
msgctxt "as product pricing plan"
|
1151 |
+
msgid "Plan"
|
1152 |
+
msgstr "Plan"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1153 |
|
1154 |
+
#: templates/account.php:154
|
1155 |
+
msgid "Free Trial"
|
1156 |
+
msgstr "Gratis prøveperiode"
|
1157 |
|
1158 |
+
#: templates/account.php:165
|
1159 |
+
msgid "Account Details"
|
1160 |
+
msgstr "Kontodetaljer"
|
|
|
1161 |
|
1162 |
+
#: templates/account.php:175
|
1163 |
+
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?"
|
1164 |
+
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?"
|
|
|
1165 |
|
1166 |
+
#: templates/account.php:177
|
1167 |
+
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?"
|
1168 |
+
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?"
|
1169 |
|
1170 |
+
#: templates/account.php:180
|
1171 |
+
msgid "Delete Account"
|
1172 |
+
msgstr "Slet konto"
|
1173 |
|
1174 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1175 |
+
#: templates/account/partials/deactivate-license-button.php:35
|
1176 |
+
msgid "Deactivate License"
|
1177 |
+
msgstr "Deaktiver licens"
|
1178 |
|
1179 |
+
#: templates/account.php:210
|
1180 |
+
msgid "Are you sure you want to proceed?"
|
1181 |
+
msgstr "Er du sikker på, du vil fortsætte?"
|
1182 |
|
1183 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1184 |
+
msgid "Cancel Subscription"
|
1185 |
+
msgstr "Annuller abonnement"
|
|
|
1186 |
|
1187 |
+
#: templates/account.php:239
|
1188 |
+
msgctxt "as synchronize"
|
1189 |
+
msgid "Sync"
|
1190 |
+
msgstr "Synkroniser"
|
1191 |
|
1192 |
+
#: templates/account.php253, templates/debug.php:477
|
1193 |
+
msgid "Name"
|
1194 |
+
msgstr "Navn"
|
1195 |
|
1196 |
+
#: templates/account.php259, templates/debug.php:478
|
1197 |
+
msgid "Email"
|
1198 |
+
msgstr "E-mail"
|
1199 |
|
1200 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1201 |
+
msgid "User ID"
|
1202 |
+
msgstr "Bruger-ID"
|
1203 |
|
1204 |
+
#: templates/account.php:274
|
1205 |
+
msgid "Site ID"
|
1206 |
+
msgstr "Websteds-ID"
|
1207 |
|
1208 |
+
#: templates/account.php:277
|
1209 |
+
msgid "No ID"
|
1210 |
+
msgstr "Intet ID"
|
1211 |
|
1212 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1213 |
+
#: templates/debug.php443, templates/debug.php480,
|
1214 |
+
#: templates/account/partials/site.php:219
|
1215 |
+
msgid "Public Key"
|
1216 |
+
msgstr "Offentlig nøgle"
|
1217 |
|
1218 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1219 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1220 |
+
msgid "Secret Key"
|
1221 |
+
msgstr "Privat nøgle"
|
1222 |
|
1223 |
+
#: templates/account.php:291
|
1224 |
+
msgctxt "as secret encryption key missing"
|
1225 |
+
msgid "No Secret"
|
1226 |
+
msgstr "Ingen privat nøgle"
|
1227 |
|
1228 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1229 |
+
#: templates/account/partials/site.php:114
|
1230 |
+
msgid "Trial"
|
1231 |
+
msgstr "Prøveperiode"
|
1232 |
|
1233 |
+
#: templates/account.php329, templates/debug.php521,
|
1234 |
+
#: templates/account/partials/site.php:248
|
1235 |
+
msgid "License Key"
|
1236 |
+
msgstr "Licensnøgle"
|
1237 |
|
1238 |
+
#: templates/account.php:359
|
1239 |
+
msgid "not verified"
|
1240 |
+
msgstr "ikke verificeret"
|
1241 |
|
1242 |
+
#: templates/account.php:416
|
1243 |
+
msgid "Premium version"
|
1244 |
+
msgstr "Premium version"
|
1245 |
|
1246 |
+
#: templates/account.php:418
|
1247 |
+
msgid "Free version"
|
1248 |
+
msgstr "Gratis version"
|
1249 |
|
1250 |
+
#: templates/account.php:430
|
1251 |
+
msgid "Verify Email"
|
1252 |
+
msgstr "Verificer e-mail"
|
1253 |
|
1254 |
+
#: templates/account.php:441
|
1255 |
+
msgid "Download %s Version"
|
1256 |
+
msgstr "Download 1%s version"
|
1257 |
|
1258 |
+
#: templates/account.php455, templates/account.php636,
|
1259 |
+
#: templates/account/partials/site.php237,
|
1260 |
+
#: templates/account/partials/site.php:255
|
1261 |
+
msgctxt "verb"
|
1262 |
+
msgid "Show"
|
1263 |
+
msgstr "Vis"
|
1264 |
|
1265 |
+
#: templates/account.php:469
|
1266 |
+
msgid "What is your %s?"
|
1267 |
+
msgstr "Angiv venligst %s?"
|
1268 |
|
1269 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1270 |
+
msgctxt "verb"
|
1271 |
+
msgid "Edit"
|
1272 |
+
msgstr "Rediger"
|
1273 |
|
1274 |
+
#: templates/account.php:490
|
1275 |
+
msgid "Sites"
|
1276 |
+
msgstr "Websteder"
|
1277 |
|
1278 |
+
#: templates/account.php:501
|
1279 |
+
msgid "Search by address"
|
1280 |
+
msgstr "Search by address"
|
1281 |
|
1282 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1283 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1284 |
+
#: templates/debug.php514, templates/debug.php587,
|
1285 |
+
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1286 |
+
msgid "ID"
|
1287 |
+
msgstr "ID"
|
1288 |
|
1289 |
+
#: templates/account.php511, templates/debug.php:357
|
1290 |
+
msgid "Address"
|
1291 |
+
msgstr "Address"
|
1292 |
|
1293 |
+
#: templates/account.php:512
|
1294 |
+
msgid "License"
|
1295 |
+
msgstr "Licens"
|
1296 |
|
1297 |
+
#: templates/account.php:513
|
1298 |
+
msgid "Plan"
|
1299 |
+
msgstr "Plan"
|
1300 |
|
1301 |
+
#: templates/account.php:561
|
1302 |
+
msgctxt "as software license"
|
1303 |
+
msgid "License"
|
1304 |
+
msgstr "Licens"
|
1305 |
|
1306 |
+
#: templates/account.php:630
|
1307 |
+
msgctxt "verb"
|
1308 |
+
msgid "Hide"
|
1309 |
+
msgstr "Skjul"
|
1310 |
|
1311 |
+
#: templates/account.php:665
|
1312 |
+
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?"
|
1313 |
+
msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1314 |
|
1315 |
+
#: templates/add-ons.php:36
|
1316 |
+
msgid "Add Ons for %s"
|
1317 |
+
msgstr "Tilføjelser til %s"
|
1318 |
|
1319 |
+
#: templates/add-ons.php:44
|
1320 |
+
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."
|
1321 |
+
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."
|
1322 |
|
1323 |
+
#: templates/add-ons.php:135
|
1324 |
+
msgid "View details"
|
1325 |
+
msgstr "Vis detaljer"
|
1326 |
|
1327 |
+
#: templates/admin-notice.php13, templates/forms/license-activation.php208,
|
1328 |
+
#: templates/forms/resend-key.php:77
|
1329 |
+
msgctxt "as close a window"
|
1330 |
+
msgid "Dismiss"
|
1331 |
+
msgstr "Fjern"
|
1332 |
|
1333 |
+
#: templates/auto-installation.php:45
|
1334 |
+
msgid "%s sec"
|
1335 |
+
msgstr "1%s sek"
|
1336 |
|
1337 |
+
#: templates/auto-installation.php:83
|
1338 |
+
msgid "Automatic Installation"
|
1339 |
+
msgstr "Automatisk installering"
|
1340 |
|
1341 |
+
#: templates/auto-installation.php:93
|
1342 |
+
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."
|
1343 |
+
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."
|
|
|
1344 |
|
1345 |
+
#: templates/auto-installation.php:104
|
1346 |
+
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."
|
1347 |
+
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."
|
1348 |
|
1349 |
+
#: templates/auto-installation.php:109
|
1350 |
+
msgid "Cancel Installation"
|
1351 |
+
msgstr "Annuller installering"
|
1352 |
|
1353 |
+
#: templates/checkout.php:172
|
1354 |
+
msgid "Checkout"
|
1355 |
+
msgstr "Udtjekning"
|
1356 |
|
1357 |
+
#: templates/checkout.php:172
|
1358 |
+
msgid "PCI compliant"
|
1359 |
+
msgstr "PCI compliant"
|
1360 |
|
1361 |
+
#. translators: %s: name (e.g. Hey John,)
|
1362 |
+
#: templates/connect.php:110
|
1363 |
+
msgctxt "greeting"
|
1364 |
+
msgid "Hey %s,"
|
1365 |
+
msgstr "Hey %s,"
|
1366 |
|
1367 |
+
#: templates/connect.php:152
|
1368 |
+
msgid "Allow & Continue"
|
1369 |
+
msgstr "Tillad & Fortsæt"
|
1370 |
|
1371 |
+
#: templates/connect.php:156
|
1372 |
+
msgid "Re-send activation email"
|
1373 |
+
msgstr "Gensend e-mail om aktivering"
|
1374 |
|
1375 |
+
#: templates/connect.php:160
|
1376 |
+
msgid "Thanks %s!"
|
1377 |
+
msgstr "Tak %s!"
|
1378 |
|
1379 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1380 |
+
msgid "Agree & Activate License"
|
1381 |
+
msgstr "Accepter & aktiver licens"
|
1382 |
|
1383 |
+
#: templates/connect.php:179
|
1384 |
+
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1385 |
+
msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
|
1386 |
|
1387 |
+
#: templates/connect.php:186
|
1388 |
+
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."
|
1389 |
+
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."
|
1390 |
|
1391 |
+
#: templates/connect.php:187
|
1392 |
+
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1393 |
+
msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1394 |
|
1395 |
+
#: templates/connect.php:193
|
1396 |
+
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."
|
1397 |
+
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."
|
1398 |
|
1399 |
+
#: templates/connect.php:194
|
1400 |
+
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."
|
1401 |
+
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."
|
1402 |
|
1403 |
+
#: templates/connect.php:228
|
1404 |
+
msgid "We're excited to introduce the Freemius network-level integration."
|
1405 |
+
msgstr "We're excited to introduce the Freemius network-level integration."
|
1406 |
|
1407 |
+
#: templates/connect.php:231
|
1408 |
+
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1409 |
+
msgstr "During the update process we detected %d site(s) that are still pending license activation."
|
|
|
1410 |
|
1411 |
+
#: templates/connect.php:233
|
1412 |
+
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1413 |
+
msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
|
|
1414 |
|
1415 |
+
#: templates/connect.php:235
|
1416 |
+
msgid "%s's paid features"
|
1417 |
+
msgstr "%s's paid features"
|
1418 |
|
1419 |
+
#: templates/connect.php:240
|
1420 |
+
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1421 |
+
msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1422 |
|
1423 |
+
#: templates/connect.php:242
|
1424 |
+
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1425 |
+
msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1426 |
|
1427 |
+
#: templates/connect.php251, templates/forms/license-activation.php:46
|
1428 |
+
msgid "License key"
|
1429 |
+
msgstr "Licensnøgle"
|
1430 |
|
1431 |
+
#: templates/connect.php254, templates/forms/license-activation.php:19
|
1432 |
+
msgid "Can't find your license key?"
|
1433 |
+
msgstr "Kan du ikke finde din licensnøgle?"
|
1434 |
|
1435 |
+
#: templates/connect.php302, templates/connect.php617,
|
1436 |
+
#: templates/forms/deactivation/retry-skip.php:20
|
1437 |
+
msgctxt "verb"
|
1438 |
+
msgid "Skip"
|
1439 |
+
msgstr "Spring over"
|
1440 |
|
1441 |
+
#: templates/connect.php:305
|
1442 |
+
msgid "Delegate to Site Admins"
|
1443 |
+
msgstr "Delegate to Site Admins"
|
1444 |
|
1445 |
+
#: templates/connect.php:305
|
1446 |
+
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1447 |
+
msgstr "If you click it, this decision will be delegated to the sites administrators."
|
1448 |
|
1449 |
+
#: templates/connect.php:333
|
1450 |
msgid "Your Profile Overview"
|
1451 |
msgstr "Overblik af din profil"
|
1452 |
|
1453 |
+
#: templates/connect.php:334
|
1454 |
msgid "Name and email address"
|
1455 |
msgstr "Navn og e-mailadresse"
|
1456 |
|
1457 |
+
#: templates/connect.php:339
|
1458 |
msgid "Your Site Overview"
|
1459 |
msgstr "Overblik af dit websted"
|
1460 |
|
1461 |
+
#: templates/connect.php:340
|
1462 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1463 |
msgstr "Websteds-URL, WP version, PHP info, plugins og temaer"
|
1464 |
|
1465 |
+
#: templates/connect.php:345
|
1466 |
+
msgid "Admin Notices"
|
1467 |
+
msgstr "Admin-meddelelser"
|
1468 |
+
|
1469 |
+
#: templates/connect.php346, templates/connect.php:362
|
1470 |
+
msgid "Updates, announcements, marketing, no spam"
|
1471 |
+
msgstr "Updates, announcements, marketing, no spam"
|
1472 |
+
|
1473 |
+
#: templates/connect.php:351
|
1474 |
msgid "Current %s Events"
|
1475 |
msgstr "Current %s Events"
|
1476 |
|
1477 |
+
#: templates/connect.php:352
|
1478 |
msgid "Activation, deactivation and uninstall"
|
1479 |
msgstr "Aktivering, deaktivering og afinstallering"
|
1480 |
|
1481 |
+
#: templates/connect.php:361
|
1482 |
+
msgid "Newsletter"
|
1483 |
+
msgstr "Nyhedsbrev"
|
1484 |
|
1485 |
+
#: templates/connect.php378, templates/forms/license-activation.php:38
|
1486 |
+
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."
|
1487 |
+
msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1488 |
|
1489 |
+
#: templates/connect.php:383
|
1490 |
+
msgid "What permissions are being granted?"
|
1491 |
+
msgstr "Hvilke tilladelser bliver givet?"
|
1492 |
|
1493 |
+
#: templates/connect.php:404
|
1494 |
+
msgid "Don't have a license key?"
|
1495 |
+
msgstr "Har du ikke en licensnøgle?"
|
1496 |
|
1497 |
+
#: templates/connect.php:405
|
1498 |
+
msgid "Activate Free Version"
|
1499 |
+
msgstr "Aktiver gratis version"
|
1500 |
+
|
1501 |
+
#: templates/connect.php:407
|
1502 |
+
msgid "Have a license key?"
|
1503 |
+
msgstr "Har du en licensnøgle?"
|
1504 |
|
1505 |
+
#: templates/connect.php:415
|
1506 |
msgid "Privacy Policy"
|
1507 |
msgstr "Privatlivspolitik"
|
1508 |
|
1509 |
+
#: templates/connect.php:417
|
1510 |
msgid "Terms of Service"
|
1511 |
msgstr "Servicevilkår"
|
1512 |
|
1513 |
+
#: templates/connect.php:750
|
|
|
|
|
|
|
|
|
|
|
1514 |
msgctxt "as in the process of sending an email"
|
1515 |
msgid "Sending email"
|
1516 |
msgstr "Sender e-mail"
|
1517 |
|
1518 |
+
#: templates/connect.php:751
|
1519 |
+
msgctxt "as activating plugin"
|
1520 |
+
msgid "Activating"
|
1521 |
+
msgstr "Aktiverer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
|
1523 |
+
#: templates/contact.php:78
|
1524 |
+
msgid "Contact"
|
1525 |
+
msgstr "Kontakt"
|
1526 |
|
1527 |
+
#: templates/debug.php:17
|
1528 |
+
msgctxt "as turned off"
|
1529 |
+
msgid "Off"
|
1530 |
+
msgstr "Fra"
|
1531 |
|
1532 |
+
#: templates/debug.php:18
|
1533 |
msgctxt "as turned on"
|
1534 |
msgid "On"
|
1535 |
msgstr "Til"
|
1536 |
|
1537 |
+
#: templates/debug.php:20
|
1538 |
+
msgid "SDK"
|
1539 |
+
msgstr "SDK"
|
|
|
1540 |
|
1541 |
+
#: templates/debug.php:24
|
1542 |
msgctxt "as code debugging"
|
1543 |
msgid "Debugging"
|
1544 |
msgstr "Fejlfinding"
|
1545 |
|
1546 |
+
#: templates/debug.php54, templates/debug.php238, templates/debug.php364,
|
1547 |
+
#: templates/debug.php:482
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1548 |
msgid "Actions"
|
1549 |
msgstr "Handlinger"
|
1550 |
|
1551 |
+
#: templates/debug.php:64
|
1552 |
+
msgid "Are you sure you want to delete all Freemius data?"
|
1553 |
+
msgstr "Er du sikker på, du vil slette al Freemius data?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1554 |
|
1555 |
+
#: templates/debug.php:64
|
1556 |
+
msgid "Delete All Accounts"
|
1557 |
+
msgstr "Slet alle konti"
|
1558 |
|
1559 |
+
#: templates/debug.php:71
|
1560 |
+
msgid "Clear API Cache"
|
1561 |
+
msgstr "Ryd API-cache"
|
1562 |
|
1563 |
+
#: templates/debug.php:79
|
1564 |
+
msgid "Clear Updates Transients"
|
1565 |
+
msgstr "Clear Updates Transients"
|
|
|
1566 |
|
1567 |
+
#: templates/debug.php:86
|
1568 |
+
msgid "Sync Data From Server"
|
1569 |
+
msgstr "Synkroniser data fra server"
|
|
|
1570 |
|
1571 |
+
#: templates/debug.php:90
|
1572 |
+
msgid "Load DB Option"
|
1573 |
+
msgstr "Hent DB-indstilling"
|
|
|
1574 |
|
1575 |
+
#: templates/debug.php:93
|
1576 |
+
msgid "Set DB Option"
|
1577 |
+
msgstr "Sæt DB-indstilling"
|
|
|
1578 |
|
1579 |
+
#: templates/debug.php:170
|
1580 |
+
msgid "Key"
|
1581 |
+
msgstr "Nøgle"
|
|
|
1582 |
|
1583 |
+
#: templates/debug.php:171
|
1584 |
+
msgid "Value"
|
1585 |
+
msgstr "Værdi"
|
|
|
1586 |
|
1587 |
+
#: templates/debug.php:187
|
1588 |
+
msgctxt "as software development kit versions"
|
1589 |
+
msgid "SDK Versions"
|
1590 |
+
msgstr "SDK-versioner"
|
1591 |
|
1592 |
+
#: templates/debug.php:192
|
1593 |
+
msgid "SDK Path"
|
1594 |
+
msgstr "SDK-sti"
|
|
|
1595 |
|
1596 |
+
#: templates/debug.php193, templates/debug.php:232
|
1597 |
+
msgid "Module Path"
|
1598 |
+
msgstr "Modul-sti"
|
|
|
1599 |
|
1600 |
+
#: templates/debug.php:194
|
1601 |
+
msgid "Is Active"
|
1602 |
+
msgstr "Er aktiv"
|
1603 |
|
1604 |
+
#: templates/debug.php222, templates/debug/plugins-themes-sync.php:35
|
1605 |
+
msgid "Plugins"
|
1606 |
+
msgstr "Plugins"
|
1607 |
|
1608 |
+
#: templates/debug.php222, templates/debug/plugins-themes-sync.php:56
|
1609 |
+
msgid "Themes"
|
1610 |
+
msgstr "Temaer"
|
1611 |
|
1612 |
+
#: templates/debug.php227, templates/debug.php359, templates/debug.php441,
|
1613 |
+
#: templates/debug/scheduled-crons.php:80
|
1614 |
+
msgid "Slug"
|
1615 |
+
msgstr "Kortnavn"
|
1616 |
|
1617 |
+
#: templates/debug.php229, templates/debug.php:440
|
1618 |
+
msgid "Title"
|
1619 |
+
msgstr "Titel"
|
1620 |
|
1621 |
+
#: templates/debug.php:230
|
1622 |
+
msgctxt "as application program interface"
|
1623 |
+
msgid "API"
|
1624 |
+
msgstr "API"
|
1625 |
|
1626 |
+
#: templates/debug.php:231
|
1627 |
+
msgid "Freemius State"
|
1628 |
+
msgstr "Freemius tilstand"
|
1629 |
|
1630 |
+
#: templates/debug.php:235
|
1631 |
+
msgid "Network Blog"
|
1632 |
+
msgstr "Network Blog"
|
1633 |
|
1634 |
+
#: templates/debug.php:236
|
1635 |
+
msgid "Network User"
|
1636 |
+
msgstr "Network User"
|
1637 |
|
1638 |
+
#: templates/debug.php:273
|
1639 |
+
msgctxt "as connection was successful"
|
1640 |
+
msgid "Connected"
|
1641 |
+
msgstr "Forbundet"
|
1642 |
|
1643 |
+
#: templates/debug.php:274
|
1644 |
+
msgctxt "as connection blocked"
|
1645 |
+
msgid "Blocked"
|
1646 |
+
msgstr "Blokeret"
|
1647 |
|
1648 |
+
#: templates/debug.php:310
|
1649 |
+
msgid "Simulate Trial"
|
1650 |
+
msgstr "Simuler prøveperiode"
|
1651 |
|
1652 |
+
#: templates/debug.php:322
|
1653 |
+
msgid "Simulate Network Upgrade"
|
1654 |
+
msgstr "Simulate Network Upgrade"
|
1655 |
|
1656 |
+
#: templates/debug.php:348
|
1657 |
+
msgid "%s Installs"
|
1658 |
+
msgstr "%s installeringer"
|
1659 |
|
1660 |
+
#: templates/debug.php:350
|
1661 |
+
msgctxt "like websites"
|
1662 |
+
msgid "Sites"
|
1663 |
+
msgstr "Websteder"
|
1664 |
|
1665 |
+
#: templates/debug.php356, templates/account/partials/site.php:148
|
1666 |
+
msgid "Blog ID"
|
1667 |
+
msgstr "Blog ID"
|
1668 |
|
1669 |
+
#: templates/debug.php421, templates/debug.php499,
|
1670 |
+
#: templates/account/partials/addon.php:334
|
1671 |
+
msgctxt "verb"
|
1672 |
+
msgid "Delete"
|
1673 |
+
msgstr "Slet"
|
1674 |
|
1675 |
+
#: templates/debug.php:435
|
1676 |
+
msgid "Add Ons of module %s"
|
1677 |
+
msgstr "Tilføjelser til modul %s"
|
1678 |
|
1679 |
+
#: templates/debug.php:472
|
1680 |
+
msgid "Users"
|
1681 |
+
msgstr "Brugere"
|
1682 |
|
1683 |
+
#: templates/debug.php:479
|
1684 |
+
msgid "Verified"
|
1685 |
+
msgstr "Verificeret"
|
1686 |
|
1687 |
+
#: templates/debug.php:510
|
1688 |
+
msgid "%s Licenses"
|
1689 |
+
msgstr "1%s licenser"
|
1690 |
|
1691 |
+
#: templates/debug.php:515
|
1692 |
+
msgid "Plugin ID"
|
1693 |
+
msgstr "Plugin-ID"
|
|
|
1694 |
|
1695 |
+
#: templates/debug.php:517
|
1696 |
+
msgid "Plan ID"
|
1697 |
+
msgstr "Plan-ID"
|
1698 |
|
1699 |
+
#: templates/debug.php:518
|
1700 |
+
msgid "Quota"
|
1701 |
+
msgstr "Kvote"
|
1702 |
|
1703 |
+
#: templates/debug.php:519
|
1704 |
+
msgid "Activated"
|
1705 |
+
msgstr "Aktiveret"
|
1706 |
|
1707 |
+
#: templates/debug.php:520
|
1708 |
+
msgid "Blocking"
|
1709 |
+
msgstr "Blokerer"
|
1710 |
|
1711 |
+
#: templates/debug.php:522
|
1712 |
+
msgctxt "as expiration date"
|
1713 |
+
msgid "Expiration"
|
1714 |
+
msgstr "Udløber"
|
1715 |
|
1716 |
+
#: templates/debug.php:545
|
1717 |
+
msgid "Debug Log"
|
1718 |
+
msgstr "Fejlfindingslog"
|
1719 |
|
1720 |
+
#: templates/debug.php:549
|
1721 |
+
msgid "All Types"
|
1722 |
+
msgstr "Alle typer"
|
1723 |
|
1724 |
+
#: templates/debug.php:556
|
1725 |
+
msgid "All Requests"
|
1726 |
+
msgstr "Alle forespørgsler"
|
1727 |
|
1728 |
+
#: templates/debug.php561, templates/debug.php590,
|
1729 |
+
#: templates/debug/logger.php:25
|
1730 |
+
msgid "File"
|
1731 |
+
msgstr "Fil"
|
1732 |
|
1733 |
+
#: templates/debug.php562, templates/debug.php588,
|
1734 |
+
#: templates/debug/logger.php:23
|
1735 |
+
msgid "Function"
|
1736 |
+
msgstr "Funktion"
|
1737 |
|
1738 |
+
#: templates/debug.php:563
|
1739 |
+
msgid "Process ID"
|
1740 |
+
msgstr "Proces-ID"
|
1741 |
|
1742 |
+
#: templates/debug.php:564
|
1743 |
+
msgid "Logger"
|
1744 |
+
msgstr "Logger"
|
1745 |
|
1746 |
+
#: templates/debug.php565, templates/debug.php589,
|
1747 |
+
#: templates/debug/logger.php:24
|
1748 |
+
msgid "Message"
|
1749 |
+
msgstr "Besked"
|
1750 |
|
1751 |
+
#: templates/debug.php:567
|
1752 |
+
msgid "Filter"
|
1753 |
+
msgstr "Filter"
|
1754 |
|
1755 |
+
#: templates/debug.php:575
|
1756 |
+
msgid "Download"
|
1757 |
+
msgstr "Download"
|
1758 |
|
1759 |
+
#: templates/debug.php586, templates/debug/logger.php:22
|
1760 |
+
msgid "Type"
|
1761 |
+
msgstr "Type"
|
1762 |
|
1763 |
+
#: templates/debug.php591, templates/debug/logger.php:26
|
1764 |
+
msgid "Timestamp"
|
1765 |
+
msgstr "Timestamp"
|
1766 |
|
1767 |
+
#: templates/secure-https-header.php:28
|
1768 |
+
msgid "Secure HTTPS %s page, running from an external domain"
|
1769 |
+
msgstr "Secure HTTPS %s page, running from an external domain"
|
1770 |
|
1771 |
+
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1772 |
+
#: templates/plugin-info/features.php:43
|
1773 |
+
msgid "Support"
|
1774 |
+
msgstr "Support"
|
1775 |
|
1776 |
+
#: includes/debug/class-fs-debug-bar-panel.php48,
|
1777 |
+
#: templates/debug/api-calls.php54, templates/debug/logger.php:62
|
1778 |
+
msgctxt "milliseconds"
|
1779 |
+
msgid "ms"
|
1780 |
+
msgstr "ms"
|
1781 |
|
1782 |
+
#: includes/debug/debug-bar-start.php:41
|
1783 |
+
msgid "Freemius API"
|
1784 |
+
msgstr "Freemius API"
|
|
|
1785 |
|
1786 |
+
#: includes/debug/debug-bar-start.php:42
|
1787 |
+
msgid "Requests"
|
1788 |
+
msgstr "Requests"
|
1789 |
|
1790 |
+
#: templates/account/billing.php:28
|
1791 |
+
msgctxt "verb"
|
1792 |
+
msgid "Update"
|
1793 |
+
msgstr "Opdater"
|
1794 |
|
1795 |
+
#: templates/account/billing.php:39
|
1796 |
+
msgid "Billing"
|
1797 |
+
msgstr "Betaling"
|
1798 |
|
1799 |
+
#: templates/account/billing.php44, templates/account/billing.php:44
|
1800 |
+
msgid "Business name"
|
1801 |
+
msgstr "Firmanavn"
|
1802 |
|
1803 |
+
#: templates/account/billing.php45, templates/account/billing.php:45
|
1804 |
+
msgid "Tax / VAT ID"
|
1805 |
+
msgstr "Moms / VAT ID"
|
1806 |
|
1807 |
+
#: templates/account/billing.php48, templates/account/billing.php48,
|
1808 |
+
#: templates/account/billing.php49, templates/account/billing.php:49
|
1809 |
+
msgid "Address Line %d"
|
1810 |
+
msgstr "Adresselinje %d"
|
1811 |
|
1812 |
+
#: templates/account/billing.php52, templates/account/billing.php:52
|
1813 |
+
msgid "City"
|
1814 |
+
msgstr "By"
|
1815 |
|
1816 |
+
#: templates/account/billing.php52, templates/account/billing.php:52
|
1817 |
+
msgid "Town"
|
1818 |
+
msgstr "By"
|
1819 |
|
1820 |
+
#: templates/account/billing.php53, templates/account/billing.php:53
|
1821 |
+
msgid "ZIP / Postal Code"
|
1822 |
+
msgstr "ZIP / Postnummer"
|
1823 |
|
1824 |
+
#: templates/account/billing.php:308
|
1825 |
+
msgid "Country"
|
1826 |
+
msgstr "Land"
|
1827 |
|
1828 |
+
#: templates/account/billing.php:310
|
1829 |
+
msgid "Select Country"
|
1830 |
+
msgstr "Vælg land"
|
1831 |
|
1832 |
+
#: templates/account/billing.php317, templates/account/billing.php:318
|
1833 |
+
msgid "State"
|
1834 |
+
msgstr "Stat"
|
1835 |
|
1836 |
+
#: templates/account/billing.php317, templates/account/billing.php:318
|
1837 |
+
msgid "Province"
|
1838 |
+
msgstr "Provins"
|
1839 |
|
1840 |
+
#: templates/account/payments.php:29
|
1841 |
+
msgid "Payments"
|
1842 |
+
msgstr "Betalinger"
|
1843 |
|
1844 |
+
#: templates/account/payments.php:36
|
1845 |
+
msgid "Date"
|
1846 |
+
msgstr "Dato"
|
1847 |
|
1848 |
+
#: templates/account/payments.php:37
|
1849 |
+
msgid "Amount"
|
1850 |
+
msgstr "Beløb"
|
1851 |
|
1852 |
+
#: templates/account/payments.php38, templates/account/payments.php:50
|
1853 |
+
msgid "Invoice"
|
1854 |
+
msgstr "Faktura"
|
1855 |
|
1856 |
+
#: templates/debug/api-calls.php:56
|
1857 |
+
msgid "API"
|
1858 |
+
msgstr "API"
|
1859 |
|
1860 |
+
#: templates/debug/api-calls.php:68
|
1861 |
+
msgid "Method"
|
1862 |
+
msgstr "Metode"
|
1863 |
|
1864 |
+
#: templates/debug/api-calls.php:69
|
1865 |
+
msgid "Code"
|
1866 |
+
msgstr "Kode"
|
1867 |
|
1868 |
+
#: templates/debug/api-calls.php:70
|
1869 |
+
msgid "Length"
|
1870 |
+
msgstr "Længde"
|
1871 |
+
|
1872 |
+
#: templates/debug/api-calls.php:71
|
1873 |
+
msgctxt "as file/folder path"
|
1874 |
+
msgid "Path"
|
1875 |
+
msgstr "Sti"
|
1876 |
|
1877 |
+
#: templates/debug/api-calls.php:73
|
1878 |
+
msgid "Body"
|
1879 |
+
msgstr "Body"
|
1880 |
|
1881 |
+
#: templates/debug/api-calls.php:75
|
1882 |
+
msgid "Result"
|
1883 |
+
msgstr "Resultat"
|
1884 |
|
1885 |
+
#: templates/debug/api-calls.php:76
|
1886 |
+
msgid "Start"
|
1887 |
+
msgstr "Start"
|
|
|
1888 |
|
1889 |
+
#: templates/debug/api-calls.php:77
|
1890 |
+
msgid "End"
|
1891 |
+
msgstr "Slut"
|
1892 |
|
1893 |
+
#: templates/debug/logger.php:15
|
1894 |
+
msgid "Log"
|
1895 |
+
msgstr "Log"
|
1896 |
|
1897 |
+
#. translators: %s: time period (e.g. In "2 hours")
|
1898 |
+
#: templates/debug/plugins-themes-sync.php18,
|
1899 |
+
#: templates/debug/scheduled-crons.php:91
|
1900 |
+
msgid "In %s"
|
1901 |
+
msgstr "Om %s"
|
1902 |
|
1903 |
+
#. translators: %s: time period (e.g. "2 hours" ago)
|
1904 |
+
#: templates/debug/plugins-themes-sync.php20,
|
1905 |
+
#: templates/debug/scheduled-crons.php:93
|
1906 |
+
msgid "%s ago"
|
1907 |
+
msgstr "%s siden"
|
1908 |
|
1909 |
+
#: templates/debug/plugins-themes-sync.php21,
|
1910 |
+
#: templates/debug/scheduled-crons.php:74
|
1911 |
+
msgctxt "seconds"
|
1912 |
+
msgid "sec"
|
1913 |
+
msgstr "sek"
|
1914 |
|
1915 |
+
#: templates/debug/plugins-themes-sync.php:23
|
1916 |
+
msgid "Plugins & Themes Sync"
|
1917 |
+
msgstr "Synkronisering af plugins og temaer"
|
1918 |
|
1919 |
+
#: templates/debug/plugins-themes-sync.php:28
|
1920 |
+
msgid "Total"
|
1921 |
+
msgstr "Total"
|
1922 |
|
1923 |
+
#: templates/debug/plugins-themes-sync.php29,
|
1924 |
+
#: templates/debug/scheduled-crons.php:84
|
1925 |
+
msgid "Last"
|
1926 |
+
msgstr "Sidste"
|
1927 |
|
1928 |
+
#: templates/debug/scheduled-crons.php:76
|
1929 |
+
msgid "Scheduled Crons"
|
1930 |
+
msgstr "Planlagte cron jobs"
|
1931 |
|
1932 |
+
#: templates/debug/scheduled-crons.php:81
|
1933 |
+
msgid "Module"
|
1934 |
+
msgstr "Modul"
|
1935 |
|
1936 |
+
#: templates/debug/scheduled-crons.php:82
|
1937 |
+
msgid "Module Type"
|
1938 |
+
msgstr "Modultype"
|
1939 |
|
1940 |
+
#: templates/debug/scheduled-crons.php:83
|
1941 |
+
msgid "Cron Type"
|
1942 |
+
msgstr "Cron Type"
|
1943 |
|
1944 |
+
#: templates/debug/scheduled-crons.php:85
|
1945 |
+
msgid "Next"
|
1946 |
+
msgstr "Næste"
|
1947 |
|
1948 |
+
#: templates/forms/affiliation.php:82
|
1949 |
+
msgid "Non-expiring"
|
1950 |
+
msgstr "Udløber ikke"
|
1951 |
|
1952 |
+
#: templates/forms/affiliation.php:85
|
1953 |
+
msgid "Apply to become an affiliate"
|
1954 |
+
msgstr "Apply to become an affiliate"
|
1955 |
|
1956 |
+
#: templates/forms/affiliation.php:104
|
1957 |
+
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1958 |
+
msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1959 |
|
1960 |
+
#: templates/forms/affiliation.php:119
|
1961 |
+
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."
|
1962 |
+
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."
|
|
|
1963 |
|
1964 |
+
#: templates/forms/affiliation.php:122
|
1965 |
+
msgid "Your affiliation account was temporarily suspended."
|
1966 |
+
msgstr "Your affiliation account was temporarily suspended."
|
1967 |
|
1968 |
+
#: templates/forms/affiliation.php:125
|
1969 |
+
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."
|
1970 |
+
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."
|
1971 |
|
1972 |
+
#: templates/forms/affiliation.php:128
|
1973 |
+
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1974 |
+
msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1975 |
|
1976 |
+
#: templates/forms/affiliation.php:141
|
1977 |
+
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1978 |
+
msgstr "Like the %s? Become our ambassador and earn cash ;-)"
|
1979 |
|
1980 |
+
#: templates/forms/affiliation.php:142
|
1981 |
+
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1982 |
+
msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
|
|
1983 |
|
1984 |
+
#: templates/forms/affiliation.php:145
|
1985 |
+
msgid "Program Summary"
|
1986 |
+
msgstr "Program Summary"
|
|
|
1987 |
|
1988 |
+
#: templates/forms/affiliation.php:147
|
1989 |
+
msgid "%s commission when a customer purchases a new license."
|
1990 |
+
msgstr "%s commission when a customer purchases a new license."
|
|
|
1991 |
|
1992 |
+
#: templates/forms/affiliation.php:149
|
1993 |
+
msgid "Get commission for automated subscription renewals."
|
1994 |
+
msgstr "Get commission for automated subscription renewals."
|
|
|
1995 |
|
1996 |
+
#: templates/forms/affiliation.php:152
|
1997 |
+
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
1998 |
+
msgstr "%s tracking cookie after the first visit to maximize earnings potential."
|
1999 |
|
2000 |
+
#: templates/forms/affiliation.php:155
|
2001 |
+
msgid "Unlimited commissions."
|
2002 |
+
msgstr "Unlimited commissions."
|
2003 |
|
2004 |
+
#: templates/forms/affiliation.php:157
|
2005 |
+
msgid "%s minimum payout amount."
|
2006 |
+
msgstr "%s minimum payout amount."
|
2007 |
|
2008 |
+
#: templates/forms/affiliation.php:158
|
2009 |
+
msgid "Payouts are in USD and processed monthly via PayPal."
|
2010 |
+
msgstr "Payouts are in USD and processed monthly via PayPal."
|
2011 |
|
2012 |
+
#: templates/forms/affiliation.php:159
|
2013 |
+
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2014 |
+
msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
|
|
2015 |
|
2016 |
+
#: templates/forms/affiliation.php:162
|
2017 |
+
msgid "Affiliate"
|
2018 |
+
msgstr "Affiliate"
|
|
|
2019 |
|
2020 |
+
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
2021 |
+
msgid "Email address"
|
2022 |
+
msgstr "E-mailadresse"
|
|
|
2023 |
|
2024 |
+
#: templates/forms/affiliation.php:169
|
2025 |
+
msgid "Full name"
|
2026 |
+
msgstr "Fulde navn"
|
|
|
2027 |
|
2028 |
+
#: templates/forms/affiliation.php:173
|
2029 |
+
msgid "PayPal account email address"
|
2030 |
+
msgstr "E-mailadresse til PayPal-konto"
|
|
|
2031 |
|
2032 |
+
#: templates/forms/affiliation.php:177
|
2033 |
+
msgid "Where are you going to promote the %s?"
|
2034 |
+
msgstr "Where are you going to promote the %s?"
|
|
|
2035 |
|
2036 |
+
#: templates/forms/affiliation.php:179
|
2037 |
+
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2038 |
+
msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2039 |
|
2040 |
+
#: templates/forms/affiliation.php:181
|
2041 |
+
msgid "Add another domain"
|
2042 |
+
msgstr "Tilføj andet domæne"
|
|
|
2043 |
|
2044 |
+
#: templates/forms/affiliation.php:185
|
2045 |
+
msgid "Extra Domains"
|
2046 |
+
msgstr "Ekstra domæner"
|
|
|
2047 |
|
2048 |
+
#: templates/forms/affiliation.php:186
|
2049 |
+
msgid "Extra domains where you will be marketing the product from."
|
2050 |
+
msgstr "Extra domains where you will be marketing the product from."
|
|
|
2051 |
|
2052 |
+
#: templates/forms/affiliation.php:196
|
2053 |
+
msgid "Promotion methods"
|
2054 |
+
msgstr "Promotion methods"
|
2055 |
|
2056 |
+
#: templates/forms/affiliation.php:199
|
2057 |
+
msgid "Social media (Facebook, Twitter, etc.)"
|
2058 |
+
msgstr "Social media (Facebook, Twitter, etc.)"
|
|
|
2059 |
|
2060 |
+
#: templates/forms/affiliation.php:203
|
2061 |
+
msgid "Mobile apps"
|
2062 |
+
msgstr "Mobile apps"
|
2063 |
|
2064 |
+
#: templates/forms/affiliation.php:207
|
2065 |
+
msgid "Website, email, and social media statistics (optional)"
|
2066 |
+
msgstr "Website, email, and social media statistics (optional)"
|
2067 |
|
2068 |
+
#: templates/forms/affiliation.php:210
|
2069 |
+
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)."
|
2070 |
+
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)."
|
2071 |
|
2072 |
+
#: templates/forms/affiliation.php:214
|
2073 |
+
msgid "How will you promote us?"
|
2074 |
+
msgstr "How will you promote us?"
|
2075 |
|
2076 |
+
#: templates/forms/affiliation.php:217
|
2077 |
+
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2078 |
+
msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2079 |
|
2080 |
+
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
2081 |
+
msgid "Cancel"
|
2082 |
+
msgstr "Annuller"
|
2083 |
|
2084 |
+
#: templates/forms/affiliation.php:225
|
2085 |
+
msgid "Become an affiliate"
|
2086 |
+
msgstr "Become an affiliate"
|
2087 |
|
2088 |
+
#: templates/forms/license-activation.php:20
|
2089 |
+
msgid "Please enter the license key that you received in the email right after the purchase:"
|
2090 |
+
msgstr "Please enter the license key that you received in the email right after the purchase:"
|
2091 |
|
2092 |
+
#: templates/forms/license-activation.php:25
|
2093 |
+
msgid "Update License"
|
2094 |
+
msgstr "Opdater licens"
|
2095 |
|
2096 |
+
#: templates/forms/optout.php:30
|
2097 |
+
msgctxt "verb"
|
2098 |
+
msgid "Opt Out"
|
2099 |
+
msgstr "Frameld"
|
2100 |
|
2101 |
+
#: templates/forms/optout.php:31
|
2102 |
+
msgctxt "verb"
|
2103 |
+
msgid "Opt In"
|
2104 |
+
msgstr "Tilmeld"
|
2105 |
|
2106 |
+
#: templates/forms/optout.php:33
|
2107 |
+
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."
|
2108 |
+
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."
|
2109 |
|
2110 |
+
#: templates/forms/optout.php:35
|
2111 |
+
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2112 |
+
msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
|
2113 |
|
2114 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2115 |
+
msgid "There is a new version of %s available."
|
2116 |
+
msgstr "There is a new version of %s available."
|
2117 |
|
2118 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2119 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2120 |
+
msgstr " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2121 |
|
2122 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2123 |
+
msgid "New Version Available"
|
2124 |
+
msgstr "New Version Available"
|
2125 |
|
2126 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2127 |
+
msgid "Renew license"
|
2128 |
+
msgstr "Renew license"
|
2129 |
|
2130 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2131 |
+
msgctxt "close a window"
|
2132 |
+
msgid "Dismiss"
|
2133 |
+
msgstr "Fjern"
|
2134 |
|
2135 |
+
#: templates/forms/resend-key.php:21
|
2136 |
+
msgid "Send License Key"
|
2137 |
+
msgstr "Send licensnøgle"
|
2138 |
|
2139 |
+
#: templates/forms/resend-key.php:57
|
2140 |
+
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
2141 |
+
msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
2142 |
|
2143 |
+
#: templates/forms/trial-start.php:22
|
2144 |
+
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
2145 |
+
msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
|
2146 |
|
2147 |
+
#: templates/forms/trial-start.php:28
|
2148 |
+
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."
|
2149 |
+
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."
|
2150 |
|
2151 |
+
#: templates/js/style-premium-theme.php:37
|
2152 |
+
msgid "Premium"
|
2153 |
+
msgstr "Premium"
|
2154 |
|
2155 |
+
#: templates/partials/network-activation.php:23
|
2156 |
+
msgid "Activate license on all sites in the network."
|
2157 |
+
msgstr "Activate license on all sites in the network."
|
2158 |
|
2159 |
+
#: templates/partials/network-activation.php:24
|
2160 |
+
msgid "Apply on all sites in the network."
|
2161 |
+
msgstr "Apply on all sites in the network."
|
2162 |
|
2163 |
+
#: templates/partials/network-activation.php:27
|
2164 |
+
msgid "Activate license on all pending sites."
|
2165 |
+
msgstr "Activate license on all pending sites."
|
2166 |
|
2167 |
+
#: templates/partials/network-activation.php:28
|
2168 |
+
msgid "Apply on all pending sites."
|
2169 |
+
msgstr "Apply on all pending sites."
|
2170 |
|
2171 |
+
#: templates/partials/network-activation.php36,
|
2172 |
+
#: templates/partials/network-activation.php:68
|
2173 |
+
msgid "allow"
|
2174 |
+
msgstr "allow"
|
2175 |
|
2176 |
+
#: templates/partials/network-activation.php38,
|
2177 |
+
#: templates/partials/network-activation.php:70
|
2178 |
+
msgid "delegate"
|
2179 |
+
msgstr "delegate"
|
2180 |
|
2181 |
+
#: templates/partials/network-activation.php41,
|
2182 |
+
#: templates/partials/network-activation.php:73
|
2183 |
+
msgid "skip"
|
2184 |
+
msgstr "skip"
|
2185 |
|
2186 |
+
#: templates/plugin-info/description.php72,
|
2187 |
+
#: templates/plugin-info/screenshots.php:31
|
2188 |
+
msgid "Click to view full-size screenshot %d"
|
2189 |
+
msgstr "Click to view full-size screenshot %d"
|
2190 |
|
2191 |
+
#: templates/plugin-info/features.php:56
|
2192 |
+
msgid "Unlimited Updates"
|
2193 |
+
msgstr "Ubegrænsede opdateringer"
|
|
|
2194 |
|
2195 |
+
#: templates/account/partials/activate-license-button.php:46
|
2196 |
+
msgid "Localhost"
|
2197 |
+
msgstr "Localhost"
|
|
|
2198 |
|
2199 |
+
#: templates/account/partials/activate-license-button.php:50
|
2200 |
+
msgctxt "as 5 licenses left"
|
2201 |
+
msgid "%s left"
|
2202 |
+
msgstr "%s tilbage"
|
2203 |
|
2204 |
+
#: templates/account/partials/activate-license-button.php:51
|
2205 |
+
msgid "Last license"
|
2206 |
+
msgstr "Seneste license"
|
2207 |
|
2208 |
+
#: templates/account/partials/addon.php:111
|
2209 |
+
msgid "Cancelled"
|
2210 |
+
msgstr "Annulleret"
|
2211 |
|
2212 |
+
#: templates/account/partials/addon.php:116
|
2213 |
+
msgid "Expired"
|
2214 |
+
msgstr "Udløbet"
|
2215 |
|
2216 |
+
#: templates/account/partials/addon.php:121
|
2217 |
+
msgid "No expiration"
|
2218 |
+
msgstr "Udløber ikke"
|
2219 |
|
2220 |
+
#: templates/account/partials/addon.php259,
|
2221 |
+
#: templates/account/partials/addon.php:312
|
2222 |
+
msgid "Activate this add-on"
|
2223 |
+
msgstr "Aktiver denne tilføjelse"
|
2224 |
|
2225 |
+
#: templates/account/partials/site.php:181
|
2226 |
+
msgid "Owner Name"
|
2227 |
+
msgstr "Owner Name"
|
2228 |
|
2229 |
+
#: templates/account/partials/site.php:193
|
2230 |
+
msgid "Owner Email"
|
2231 |
+
msgstr "Owner Email"
|
2232 |
|
2233 |
+
#: templates/account/partials/site.php:205
|
2234 |
+
msgid "Owner ID"
|
2235 |
+
msgstr "Owner ID"
|
2236 |
|
2237 |
+
#: templates/account/partials/site.php:270
|
2238 |
+
msgid "Subscription"
|
2239 |
+
msgstr "Subscription"
|
2240 |
|
2241 |
+
#: templates/forms/deactivation/contact.php:19
|
2242 |
+
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2243 |
+
msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
|
|
|
2244 |
|
2245 |
+
#: templates/forms/deactivation/contact.php:22
|
2246 |
+
msgid "Contact Support"
|
2247 |
+
msgstr "Kontakt support"
|
2248 |
|
2249 |
+
#: templates/forms/deactivation/form.php:56
|
2250 |
+
msgid "Anonymous feedback"
|
2251 |
+
msgstr "Anonym feedback"
|
2252 |
|
2253 |
+
#: templates/forms/deactivation/form.php:63
|
2254 |
+
msgid "Deactivate"
|
2255 |
+
msgstr "Deaktiver"
|
2256 |
|
2257 |
+
#: templates/forms/deactivation/form.php:65
|
2258 |
+
msgid "Activate %s"
|
2259 |
+
msgstr "Aktiver %s"
|
2260 |
|
2261 |
+
#: templates/forms/deactivation/form.php:76
|
2262 |
+
msgid "Quick feedback"
|
2263 |
+
msgstr "Hurtig feedback"
|
2264 |
|
2265 |
+
#: templates/forms/deactivation/form.php:80
|
2266 |
+
msgid "If you have a moment, please let us know why you are %s"
|
2267 |
+
msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
|
2268 |
|
2269 |
+
#: templates/forms/deactivation/form.php:80
|
2270 |
+
msgid "deactivating"
|
2271 |
+
msgstr "deaktiverer"
|
2272 |
|
2273 |
+
#: templates/forms/deactivation/form.php:80
|
2274 |
+
msgid "switching"
|
2275 |
+
msgstr "skifter"
|
2276 |
|
2277 |
+
#: templates/forms/deactivation/form.php:269
|
2278 |
+
msgid "Submit & %s"
|
2279 |
+
msgstr "Send & %s"
|
2280 |
|
2281 |
+
#: templates/forms/deactivation/form.php:290
|
2282 |
+
msgid "Kindly tell us the reason so we can improve."
|
2283 |
+
msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
|
2284 |
|
2285 |
+
#: templates/forms/deactivation/form.php:411
|
2286 |
+
msgid "Yes - %s"
|
2287 |
+
msgstr "Ja - %s"
|
2288 |
|
2289 |
+
#: templates/forms/deactivation/form.php:418
|
2290 |
+
msgid "Skip & %s"
|
2291 |
+
msgstr "Spring over & %s"
|
2292 |
|
2293 |
+
#: templates/forms/deactivation/retry-skip.php:21
|
2294 |
+
msgid "Click here to use the plugin anonymously"
|
2295 |
+
msgstr "Klik her for at benytte pluginnet anonymt"
|
2296 |
|
2297 |
+
#: templates/forms/deactivation/retry-skip.php:23
|
2298 |
+
msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
|
2299 |
+
msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in."
|
includes/pum-sdk/freemius/languages/freemius-en.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-en.po
CHANGED
@@ -19,1158 +19,1222 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
|
22 |
-
#: includes/class-freemius.php:
|
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:
|
27 |
msgid "Error"
|
28 |
msgstr "Error"
|
29 |
|
30 |
-
#: includes/class-freemius.php:
|
31 |
msgid "I found a better %s"
|
32 |
msgstr "I found a better %s"
|
33 |
|
34 |
-
#: includes/class-freemius.php:
|
35 |
msgid "What's the %s's name?"
|
36 |
msgstr "What's the %s's name?"
|
37 |
|
38 |
-
#: includes/class-freemius.php:
|
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:
|
43 |
msgid "Deactivation"
|
44 |
msgstr "Deactivation"
|
45 |
|
46 |
-
#: includes/class-freemius.php:
|
47 |
msgid "Theme Switch"
|
48 |
msgstr "Theme Switch"
|
49 |
|
50 |
-
#: includes/class-freemius.php:
|
51 |
msgid "Other"
|
52 |
msgstr "Other"
|
53 |
|
54 |
-
#: includes/class-freemius.php:
|
55 |
msgid "I no longer need the %s"
|
56 |
msgstr "I no longer need the %s"
|
57 |
|
58 |
-
#: includes/class-freemius.php:
|
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:
|
63 |
msgid "The %s broke my site"
|
64 |
msgstr "The %s broke my site"
|
65 |
|
66 |
-
#: includes/class-freemius.php:
|
67 |
msgid "The %s suddenly stopped working"
|
68 |
msgstr "The %s suddenly stopped working"
|
69 |
|
70 |
-
#: includes/class-freemius.php:
|
71 |
msgid "I can't pay for it anymore"
|
72 |
msgstr "I can't pay for it anymore"
|
73 |
|
74 |
-
#: includes/class-freemius.php:
|
75 |
msgid "What price would you feel comfortable paying?"
|
76 |
msgstr "What price would you feel comfortable paying?"
|
77 |
|
78 |
-
#: includes/class-freemius.php:
|
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:
|
83 |
msgid "The %s didn't work"
|
84 |
msgstr "The %s didn't work"
|
85 |
|
86 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
95 |
msgid "What feature?"
|
96 |
msgstr "What feature?"
|
97 |
|
98 |
-
#: includes/class-freemius.php:
|
99 |
msgid "The %s is not working"
|
100 |
msgstr "The %s is not working"
|
101 |
|
102 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
111 |
msgid "What you've been looking for?"
|
112 |
msgstr "What you've been looking for?"
|
113 |
|
114 |
-
#: includes/class-freemius.php:
|
115 |
msgid "The %s didn't work as expected"
|
116 |
msgstr "The %s didn't work as expected"
|
117 |
|
118 |
-
#: includes/class-freemius.php:
|
119 |
msgid "What did you expect?"
|
120 |
msgstr "What did you expect?"
|
121 |
|
122 |
-
#: includes/class-freemius.php:
|
123 |
msgid "Freemius Debug"
|
124 |
msgstr "Freemius Debug"
|
125 |
|
126 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
139 |
msgid "Yes - do your thing"
|
140 |
msgstr "Yes - do your thing"
|
141 |
|
142 |
-
#: includes/class-freemius.php:
|
143 |
msgid "No - just deactivate"
|
144 |
msgstr "No - just deactivate"
|
145 |
|
146 |
-
#: includes/class-freemius.php:
|
147 |
msgctxt "exclamation"
|
148 |
msgid "Oops"
|
149 |
msgstr "Oops"
|
150 |
|
151 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
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:
|
170 |
msgid "Premium %s version was successfully activated."
|
171 |
msgstr "Premium %s version was successfully activated."
|
172 |
|
173 |
-
#: includes/class-freemius.php:
|
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:
|
179 |
msgid "You have a %s license."
|
180 |
msgstr "You have a %s license."
|
181 |
|
182 |
-
#: includes/class-freemius.php:
|
183 |
msgctxt "interjection expressing joy or exuberance"
|
184 |
msgid "Yee-haw"
|
185 |
msgstr "Yee-haw"
|
186 |
|
187 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
196 |
msgid "More information about %s"
|
197 |
msgstr "More information about %s"
|
198 |
|
199 |
-
#: includes/class-freemius.php:
|
200 |
msgid "Purchase License"
|
201 |
msgstr "Purchase License"
|
202 |
|
203 |
-
#: includes/class-freemius.php:
|
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:
|
208 |
msgid "start the trial"
|
209 |
msgstr "start the trial"
|
210 |
|
211 |
-
#: includes/class-freemius.php:
|
212 |
msgid "complete the install"
|
213 |
msgstr "complete the install"
|
214 |
|
215 |
-
#: includes/class-freemius.php:
|
216 |
msgid "You are just one step away - %s"
|
217 |
msgstr "You are just one step away - %s"
|
218 |
|
219 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
229 |
msgid "Opt in to make \"%s\" Better!"
|
230 |
msgstr "Opt in to make \"%s\" Better!"
|
231 |
|
232 |
-
#: includes/class-freemius.php:
|
233 |
msgid "The upgrade of %s was successfully completed."
|
234 |
msgstr "The upgrade of %s was successfully completed."
|
235 |
|
236 |
-
#: includes/class-freemius.php:
|
237 |
msgid "Add-On"
|
238 |
msgstr "Add-On"
|
239 |
|
240 |
-
#: includes/class-freemius.php:
|
241 |
msgid "Plugin"
|
242 |
msgstr "Plugin"
|
243 |
|
244 |
-
#: includes/class-freemius.php:
|
245 |
msgid "Theme"
|
246 |
msgstr "Theme"
|
247 |
|
248 |
-
#: includes/class-freemius.php:
|
249 |
msgid "invalid_site_details_collection"
|
250 |
msgstr "invalid_site_details_collection"
|
251 |
|
252 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
261 |
msgid "Account is pending activation."
|
262 |
msgstr "Account is pending activation."
|
263 |
|
264 |
-
#: includes/class-freemius.php:
|
265 |
msgid "%s activation was successfully completed."
|
266 |
msgstr "%s activation was successfully completed."
|
267 |
|
268 |
-
#: includes/class-freemius.php:
|
269 |
msgid "Your account was successfully activated with the %s plan."
|
270 |
msgstr "Your account was successfully activated with the %s plan."
|
271 |
|
272 |
-
#: includes/class-freemius.php:
|
273 |
msgid "Your trial has been successfully started."
|
274 |
msgstr "Your trial has been successfully started."
|
275 |
|
276 |
-
#: includes/class-freemius.php:
|
277 |
msgid "Couldn't activate %s."
|
278 |
msgstr "Couldn't activate %s."
|
279 |
|
280 |
-
#: includes/class-freemius.php:
|
281 |
msgid "Please contact us with the following message:"
|
282 |
msgstr "Please contact us with the following message:"
|
283 |
|
284 |
-
#: includes/class-freemius.php:
|
285 |
msgid "Upgrade"
|
286 |
msgstr "Upgrade"
|
287 |
|
288 |
-
#: includes/class-freemius.php:
|
289 |
msgid "Start Trial"
|
290 |
msgstr "Start Trial"
|
291 |
|
292 |
-
#: includes/class-freemius.php:
|
293 |
msgid "Pricing"
|
294 |
msgstr "Pricing"
|
295 |
|
296 |
-
#: includes/class-freemius.php:
|
297 |
msgid "Affiliation"
|
298 |
msgstr "Affiliation"
|
299 |
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Account"
|
302 |
msgstr "Account"
|
303 |
|
304 |
-
#: includes/class-freemius.php:
|
305 |
msgid "Contact Us"
|
306 |
msgstr "Contact Us"
|
307 |
|
308 |
-
#: includes/class-freemius.php:
|
309 |
msgid "Add-Ons"
|
310 |
msgstr "Add-Ons"
|
311 |
|
312 |
-
#: includes/class-freemius.php:
|
313 |
msgctxt "noun"
|
314 |
msgid "Pricing"
|
315 |
msgstr "Pricing"
|
316 |
|
317 |
-
#: includes/class-freemius.php:
|
318 |
msgid "Support Forum"
|
319 |
msgstr "Support Forum"
|
320 |
|
321 |
-
#: includes/class-freemius.php:
|
322 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
323 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
324 |
|
325 |
-
#: includes/class-freemius.php:
|
326 |
msgctxt "a positive response"
|
327 |
msgid "Right on"
|
328 |
msgstr "Right on"
|
329 |
|
330 |
-
#: includes/class-freemius.php:
|
331 |
msgid "Your %s Add-on plan was successfully upgraded."
|
332 |
msgstr "Your %s Add-on plan was successfully upgraded."
|
333 |
|
334 |
-
#: includes/class-freemius.php:
|
335 |
msgid "%s Add-on was successfully purchased."
|
336 |
msgstr "%s Add-on was successfully purchased."
|
337 |
|
338 |
-
#: includes/class-freemius.php:
|
339 |
msgid "Download the latest version"
|
340 |
msgstr "Download the latest version"
|
341 |
|
342 |
-
#: includes/class-freemius.php:
|
343 |
msgctxt "%1s - plugin title, %2s - API domain"
|
344 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
345 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
346 |
|
347 |
-
#: includes/class-freemius.php:
|
348 |
msgid "Error received from the server:"
|
349 |
msgstr "Error received from the server:"
|
350 |
|
351 |
-
#: includes/class-freemius.php:
|
352 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
353 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
354 |
|
355 |
-
#: includes/class-freemius.php:
|
356 |
msgctxt "something somebody says when they are thinking about what you have just said."
|
357 |
msgid "Hmm"
|
358 |
msgstr "Hmm"
|
359 |
|
360 |
-
#: includes/class-freemius.php:
|
361 |
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."
|
362 |
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."
|
363 |
|
364 |
-
#: includes/class-freemius.php:
|
365 |
msgctxt "trial period"
|
366 |
msgid "Trial"
|
367 |
msgstr "Trial"
|
368 |
|
369 |
-
#: includes/class-freemius.php:
|
370 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
371 |
msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
372 |
|
373 |
-
#: includes/class-freemius.php:
|
374 |
msgid "Please contact us here"
|
375 |
msgstr "Please contact us here"
|
376 |
|
377 |
-
#: includes/class-freemius.php:
|
378 |
msgid "Your plan was successfully upgraded."
|
379 |
msgstr "Your plan was successfully upgraded."
|
380 |
|
381 |
-
#: includes/class-freemius.php:
|
382 |
msgid "Your plan was successfully changed to %s."
|
383 |
msgstr "Your plan was successfully changed to %s."
|
384 |
|
385 |
-
#: includes/class-freemius.php:
|
386 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
387 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
388 |
|
389 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
390 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
391 |
msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
|
392 |
|
393 |
-
#: includes/class-freemius.php:
|
394 |
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."
|
395 |
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."
|
396 |
|
397 |
-
#: includes/class-freemius.php:
|
398 |
-
msgid "Your trial has expired. You can still continue using all our free features."
|
399 |
-
msgstr "Your trial has expired. You can still continue using all our free features."
|
|
|
|
|
|
|
|
|
400 |
|
401 |
-
#: includes/class-freemius.php:
|
402 |
msgid "It looks like the license could not be activated."
|
403 |
msgstr "It looks like the license could not be activated."
|
404 |
|
405 |
-
#: includes/class-freemius.php:
|
406 |
msgid "Your license was successfully activated."
|
407 |
msgstr "Your license was successfully activated."
|
408 |
|
409 |
-
#: includes/class-freemius.php:
|
410 |
msgid "It looks like your site currently doesn't have an active license."
|
411 |
msgstr "It looks like your site currently doesn't have an active license."
|
412 |
|
413 |
-
#: includes/class-freemius.php:
|
414 |
msgid "It looks like the license deactivation failed."
|
415 |
msgstr "It looks like the license deactivation failed."
|
416 |
|
417 |
-
#: includes/class-freemius.php:
|
418 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
419 |
msgstr "Your license was successfully deactivated, you are back to the %s plan."
|
420 |
|
421 |
-
#: includes/class-freemius.php:
|
422 |
msgid "O.K"
|
423 |
msgstr "O.K"
|
424 |
|
425 |
-
#: includes/class-freemius.php:
|
426 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
427 |
msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
428 |
|
429 |
-
#: includes/class-freemius.php:
|
430 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
431 |
msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
432 |
|
433 |
-
#: includes/class-freemius.php:
|
434 |
msgid "You are already running the %s in a trial mode."
|
435 |
msgstr "You are already running the %s in a trial mode."
|
436 |
|
437 |
-
#: includes/class-freemius.php:
|
438 |
msgid "You already utilized a trial before."
|
439 |
msgstr "You already utilized a trial before."
|
440 |
|
441 |
-
#: includes/class-freemius.php:
|
442 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
443 |
msgstr "Plan %s do not exist, therefore, can't start a trial."
|
444 |
|
445 |
-
#: includes/class-freemius.php:
|
446 |
msgid "Plan %s does not support a trial period."
|
447 |
msgstr "Plan %s does not support a trial period."
|
448 |
|
449 |
-
#: includes/class-freemius.php:
|
450 |
msgid "None of the %s's plans supports a trial period."
|
451 |
msgstr "None of the %s's plans supports a trial period."
|
452 |
|
453 |
-
#: includes/class-freemius.php:
|
454 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
455 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
456 |
|
457 |
-
#: includes/class-freemius.php:
|
458 |
msgid "Your %s free trial was successfully cancelled."
|
459 |
msgstr "Your %s free trial was successfully cancelled."
|
460 |
|
461 |
-
#: includes/class-freemius.php:
|
462 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
463 |
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
464 |
|
465 |
-
#: includes/class-freemius.php:
|
466 |
msgid "Version %s was released."
|
467 |
msgstr "Version %s was released."
|
468 |
|
469 |
-
#: includes/class-freemius.php:
|
470 |
msgid "Please download %s."
|
471 |
msgstr "Please download %s."
|
472 |
|
473 |
-
#: includes/class-freemius.php:
|
474 |
msgid "the latest %s version here"
|
475 |
msgstr "the latest %s version here"
|
476 |
|
477 |
-
#: includes/class-freemius.php:
|
478 |
msgid "New"
|
479 |
msgstr "New"
|
480 |
|
481 |
-
#: includes/class-freemius.php:
|
482 |
msgid "Seems like you got the latest release."
|
483 |
msgstr "Seems like you got the latest release."
|
484 |
|
485 |
-
#: includes/class-freemius.php:
|
486 |
msgid "You are all good!"
|
487 |
msgstr "You are all good!"
|
488 |
|
489 |
-
#: includes/class-freemius.php:
|
490 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
491 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
492 |
|
493 |
-
#: includes/class-freemius.php:
|
494 |
msgid "Site successfully opted in."
|
495 |
msgstr "Site successfully opted in."
|
496 |
|
497 |
-
#: includes/class-freemius.php:
|
498 |
msgid "Awesome"
|
499 |
msgstr "Awesome"
|
500 |
|
501 |
-
#: includes/class-freemius.php:
|
502 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
503 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
504 |
|
505 |
-
#: includes/class-freemius.php:
|
506 |
msgid "Thank you!"
|
507 |
msgstr "Thank you!"
|
508 |
|
509 |
-
#: includes/class-freemius.php:
|
510 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
511 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
512 |
|
513 |
-
#: includes/class-freemius.php:
|
514 |
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."
|
515 |
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."
|
516 |
|
517 |
-
#: includes/class-freemius.php:
|
518 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
519 |
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
520 |
|
521 |
-
#: includes/class-freemius.php:
|
522 |
msgid "%s is the new owner of the account."
|
523 |
msgstr "%s is the new owner of the account."
|
524 |
|
525 |
-
#: includes/class-freemius.php:
|
526 |
msgctxt "as congratulations"
|
527 |
msgid "Congrats"
|
528 |
msgstr "Congrats"
|
529 |
|
530 |
-
#: includes/class-freemius.php:
|
531 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
532 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
533 |
|
534 |
-
#: includes/class-freemius.php:
|
535 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
536 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
537 |
|
538 |
-
#: includes/class-freemius.php:
|
539 |
msgid "Change Ownership"
|
540 |
msgstr "Change Ownership"
|
541 |
|
542 |
-
#: includes/class-freemius.php:
|
543 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
544 |
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
545 |
|
546 |
-
#: includes/class-freemius.php:
|
547 |
msgid "Please provide your full name."
|
548 |
msgstr "Please provide your full name."
|
549 |
|
550 |
-
#: includes/class-freemius.php:
|
551 |
msgid "Your name was successfully updated."
|
552 |
msgstr "Your name was successfully updated."
|
553 |
|
554 |
-
#: includes/class-freemius.php:
|
555 |
msgid "You have successfully updated your %s."
|
556 |
msgstr "You have successfully updated your %s."
|
557 |
|
558 |
-
#: includes/class-freemius.php:
|
559 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
560 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
561 |
|
562 |
-
#: includes/class-freemius.php:
|
563 |
msgctxt "advance notice of something that will need attention."
|
564 |
msgid "Heads up"
|
565 |
msgstr "Heads up"
|
566 |
|
567 |
-
#: includes/class-freemius.php:
|
568 |
msgctxt "exclamation"
|
569 |
msgid "Hey"
|
570 |
msgstr "Hey"
|
571 |
|
572 |
-
#: includes/class-freemius.php:
|
573 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
574 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
575 |
|
576 |
-
#: includes/class-freemius.php:
|
577 |
msgid "No commitment for %s days - cancel anytime!"
|
578 |
msgstr "No commitment for %s days - cancel anytime!"
|
579 |
|
580 |
-
#: includes/class-freemius.php:
|
581 |
msgid "No credit card required"
|
582 |
msgstr "No credit card required"
|
583 |
|
584 |
-
#: includes/class-freemius.php:
|
585 |
msgctxt "call to action"
|
586 |
msgid "Start free trial"
|
587 |
msgstr "Start free trial"
|
588 |
|
589 |
-
#: includes/class-freemius.php:
|
590 |
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!"
|
591 |
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!"
|
592 |
|
593 |
-
#: includes/class-freemius.php:
|
594 |
msgid "Learn more"
|
595 |
msgstr "Learn more"
|
596 |
|
597 |
-
#: includes/class-freemius.php:
|
598 |
msgid "Activate License"
|
599 |
msgstr "Activate License"
|
600 |
|
601 |
-
#: includes/class-freemius.php:
|
602 |
msgid "Change License"
|
603 |
msgstr "Change License"
|
604 |
|
605 |
-
#: includes/class-freemius.php:
|
606 |
msgid "Opt Out"
|
607 |
msgstr "Opt Out"
|
608 |
|
609 |
-
#: includes/class-freemius.php:
|
610 |
msgid "Opt In"
|
611 |
msgstr "Opt In"
|
612 |
|
613 |
-
#: includes/class-freemius.php:
|
614 |
msgid "Please follow these steps to complete the upgrade"
|
615 |
msgstr "Please follow these steps to complete the upgrade"
|
616 |
|
617 |
-
#: includes/class-freemius.php:
|
618 |
msgid "Download the latest %s version"
|
619 |
msgstr "Download the latest %s version"
|
620 |
|
621 |
-
#: includes/class-freemius.php:
|
622 |
msgid "Upload and activate the downloaded version"
|
623 |
msgstr "Upload and activate the downloaded version"
|
624 |
|
625 |
-
#: includes/class-freemius.php:
|
626 |
msgid "How to upload and activate?"
|
627 |
msgstr "How to upload and activate?"
|
628 |
|
629 |
-
#: includes/class-freemius.php:
|
630 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
631 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
632 |
|
633 |
-
#: includes/class-freemius.php:
|
634 |
msgid "Auto installation only works for opted-in users."
|
635 |
msgstr "Auto installation only works for opted-in users."
|
636 |
|
637 |
-
#: includes/class-freemius.php:
|
638 |
msgid "Invalid module ID."
|
639 |
msgstr "Invalid module ID."
|
640 |
|
641 |
-
#: includes/class-freemius.php:
|
642 |
msgid "Premium version already active."
|
643 |
msgstr "Premium version already active."
|
644 |
|
645 |
-
#: includes/class-freemius.php:
|
646 |
msgid "You do not have a valid license to access the premium version."
|
647 |
msgstr "You do not have a valid license to access the premium version."
|
648 |
|
649 |
-
#: includes/class-freemius.php:
|
650 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
651 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
652 |
|
653 |
-
#: includes/class-freemius.php:
|
654 |
msgid "Premium add-on version already installed."
|
655 |
msgstr "Premium add-on version already installed."
|
656 |
|
657 |
-
#: includes/class-freemius.php:
|
658 |
msgid "View paid features"
|
659 |
msgstr "View paid features"
|
660 |
|
661 |
-
#: includes/class-
|
662 |
-
msgid "
|
663 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
|
665 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
msgid "Installing plugin: %s"
|
667 |
msgstr "Installing plugin: %s"
|
668 |
|
669 |
-
#: includes/class-fs-plugin-updater.php:
|
670 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
671 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
672 |
|
673 |
-
#: includes/class-fs-plugin-updater.php:
|
674 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
675 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
676 |
|
677 |
-
#: includes/fs-plugin-info-dialog.php:
|
678 |
msgctxt "verb"
|
679 |
msgid "Purchase"
|
680 |
msgstr "Purchase"
|
681 |
|
682 |
-
#: includes/fs-plugin-info-dialog.php:
|
683 |
msgid "Start my free %s"
|
684 |
msgstr "Start my free %s"
|
685 |
|
686 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
msgctxt "as download latest version"
|
688 |
msgid "Download Latest"
|
689 |
msgstr "Download Latest"
|
690 |
|
691 |
-
#: includes/fs-plugin-info-dialog.php:
|
692 |
-
msgid "Install Now"
|
693 |
-
msgstr "Install Now"
|
694 |
|
695 |
-
#: includes/fs-plugin-info-dialog.php:
|
696 |
msgid "Install Update Now"
|
697 |
msgstr "Install Update Now"
|
698 |
|
699 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
700 |
msgid "Newer Version (%s) Installed"
|
701 |
msgstr "Newer Version (%s) Installed"
|
702 |
|
703 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
704 |
msgid "Latest Version Installed"
|
705 |
msgstr "Latest Version Installed"
|
706 |
|
707 |
-
#: includes/fs-plugin-info-dialog.php:
|
708 |
msgctxt "Plugin installer section title"
|
709 |
msgid "Description"
|
710 |
msgstr "Description"
|
711 |
|
712 |
-
#: includes/fs-plugin-info-dialog.php:
|
713 |
msgctxt "Plugin installer section title"
|
714 |
msgid "Installation"
|
715 |
msgstr "Installation"
|
716 |
|
717 |
-
#: includes/fs-plugin-info-dialog.php:
|
718 |
msgctxt "Plugin installer section title"
|
719 |
msgid "FAQ"
|
720 |
msgstr "FAQ"
|
721 |
|
722 |
-
#: includes/fs-plugin-info-dialog.php:
|
723 |
msgid "Screenshots"
|
724 |
msgstr "Screenshots"
|
725 |
|
726 |
-
#: includes/fs-plugin-info-dialog.php:
|
727 |
msgctxt "Plugin installer section title"
|
728 |
msgid "Changelog"
|
729 |
msgstr "Changelog"
|
730 |
|
731 |
-
#: includes/fs-plugin-info-dialog.php:
|
732 |
msgctxt "Plugin installer section title"
|
733 |
msgid "Reviews"
|
734 |
msgstr "Reviews"
|
735 |
|
736 |
-
#: includes/fs-plugin-info-dialog.php:
|
737 |
msgctxt "Plugin installer section title"
|
738 |
msgid "Other Notes"
|
739 |
msgstr "Other Notes"
|
740 |
|
741 |
-
#: includes/fs-plugin-info-dialog.php:
|
742 |
msgctxt "Plugin installer section title"
|
743 |
msgid "Features & Pricing"
|
744 |
msgstr "Features & Pricing"
|
745 |
|
746 |
-
#: includes/fs-plugin-info-dialog.php:
|
747 |
msgid "Plugin Install"
|
748 |
msgstr "Plugin Install"
|
749 |
|
750 |
-
#: includes/fs-plugin-info-dialog.php:
|
751 |
msgctxt "e.g. Professional Plan"
|
752 |
msgid "%s Plan"
|
753 |
msgstr "%s Plan"
|
754 |
|
755 |
-
#: includes/fs-plugin-info-dialog.php:
|
756 |
msgctxt "e.g. the best product"
|
757 |
msgid "Best"
|
758 |
msgstr "Best"
|
759 |
|
760 |
-
#: includes/fs-plugin-info-dialog.php:
|
761 |
msgctxt "as every month"
|
762 |
msgid "Monthly"
|
763 |
msgstr "Monthly"
|
764 |
|
765 |
-
#: includes/fs-plugin-info-dialog.php:
|
766 |
msgctxt "as once a year"
|
767 |
msgid "Annual"
|
768 |
msgstr "Annual"
|
769 |
|
770 |
-
#: includes/fs-plugin-info-dialog.php:
|
771 |
msgid "Lifetime"
|
772 |
msgstr "Lifetime"
|
773 |
|
774 |
-
#: includes/fs-plugin-info-dialog.php:
|
775 |
msgctxt "e.g. billed monthly"
|
776 |
msgid "Billed %s"
|
777 |
msgstr "Billed %s"
|
778 |
|
779 |
-
#: includes/fs-plugin-info-dialog.php:
|
780 |
msgctxt "as once a year"
|
781 |
msgid "Annually"
|
782 |
msgstr "Annually"
|
783 |
|
784 |
-
#: includes/fs-plugin-info-dialog.php:
|
785 |
msgctxt "as once a year"
|
786 |
msgid "Once"
|
787 |
msgstr "Once"
|
788 |
|
789 |
-
#: includes/fs-plugin-info-dialog.php:
|
790 |
msgid "Single Site License"
|
791 |
msgstr "Single Site License"
|
792 |
|
793 |
-
#: includes/fs-plugin-info-dialog.php:
|
794 |
msgid "Unlimited Licenses"
|
795 |
msgstr "Unlimited Licenses"
|
796 |
|
797 |
-
#: includes/fs-plugin-info-dialog.php:
|
798 |
msgid "Up to %s Sites"
|
799 |
msgstr "Up to %s Sites"
|
800 |
|
801 |
-
#: includes/fs-plugin-info-dialog.php:
|
802 |
msgctxt "as monthly period"
|
803 |
msgid "mo"
|
804 |
msgstr "mo"
|
805 |
|
806 |
-
#: includes/fs-plugin-info-dialog.php:
|
807 |
msgctxt "as annual period"
|
808 |
msgid "year"
|
809 |
msgstr "year"
|
810 |
|
811 |
-
#: includes/fs-plugin-info-dialog.php:
|
812 |
msgctxt "noun"
|
813 |
msgid "Price"
|
814 |
msgstr "Price"
|
815 |
|
816 |
-
#: includes/fs-plugin-info-dialog.php:
|
817 |
msgid "Save %s"
|
818 |
msgstr "Save %s"
|
819 |
|
820 |
-
#: includes/fs-plugin-info-dialog.php:
|
821 |
msgid "No commitment for %s - cancel anytime"
|
822 |
msgstr "No commitment for %s - cancel anytime"
|
823 |
|
824 |
-
#: includes/fs-plugin-info-dialog.php:
|
825 |
msgid "After your free %s, pay as little as %s"
|
826 |
msgstr "After your free %s, pay as little as %s"
|
827 |
|
828 |
-
#: includes/fs-plugin-info-dialog.php:
|
829 |
msgid "Details"
|
830 |
msgstr "Details"
|
831 |
|
832 |
-
#: includes/fs-plugin-info-dialog.php:
|
833 |
msgctxt "product version"
|
834 |
msgid "Version"
|
835 |
msgstr "Version"
|
836 |
|
837 |
-
#: includes/fs-plugin-info-dialog.php:
|
838 |
msgctxt "as the plugin author"
|
839 |
msgid "Author"
|
840 |
msgstr "Author"
|
841 |
|
842 |
-
#: includes/fs-plugin-info-dialog.php:
|
843 |
msgid "Last Updated"
|
844 |
msgstr "Last Updated"
|
845 |
|
846 |
-
#: includes/fs-plugin-info-dialog.php:
|
847 |
msgctxt "x-ago"
|
848 |
msgid "%s ago"
|
849 |
msgstr "%s ago"
|
850 |
|
851 |
-
#: includes/fs-plugin-info-dialog.php:
|
852 |
msgid "Requires WordPress Version"
|
853 |
msgstr "Requires WordPress Version"
|
854 |
|
855 |
-
#: includes/fs-plugin-info-dialog.php:
|
856 |
msgid "%s or higher"
|
857 |
msgstr "%s or higher"
|
858 |
|
859 |
-
#: includes/fs-plugin-info-dialog.php:
|
860 |
msgid "Compatible up to"
|
861 |
msgstr "Compatible up to"
|
862 |
|
863 |
-
#: includes/fs-plugin-info-dialog.php:
|
864 |
msgid "Downloaded"
|
865 |
msgstr "Downloaded"
|
866 |
|
867 |
-
#: includes/fs-plugin-info-dialog.php:
|
868 |
msgid "%s time"
|
869 |
msgstr "%s time"
|
870 |
|
871 |
-
#: includes/fs-plugin-info-dialog.php:
|
872 |
msgid "%s times"
|
873 |
msgstr "%s times"
|
874 |
|
875 |
-
#: includes/fs-plugin-info-dialog.php:
|
876 |
msgid "WordPress.org Plugin Page"
|
877 |
msgstr "WordPress.org Plugin Page"
|
878 |
|
879 |
-
#: includes/fs-plugin-info-dialog.php:
|
880 |
msgid "Plugin Homepage"
|
881 |
msgstr "Plugin Homepage"
|
882 |
|
883 |
-
#: includes/fs-plugin-info-dialog.php:
|
884 |
msgid "Donate to this plugin"
|
885 |
msgstr "Donate to this plugin"
|
886 |
|
887 |
-
#: includes/fs-plugin-info-dialog.php:
|
888 |
msgid "Average Rating"
|
889 |
msgstr "Average Rating"
|
890 |
|
891 |
-
#: includes/fs-plugin-info-dialog.php:
|
892 |
msgid "based on %s"
|
893 |
msgstr "based on %s"
|
894 |
|
895 |
-
#: includes/fs-plugin-info-dialog.php:
|
896 |
msgid "%s rating"
|
897 |
msgstr "%s rating"
|
898 |
|
899 |
-
#: includes/fs-plugin-info-dialog.php:
|
900 |
msgid "%s ratings"
|
901 |
msgstr "%s ratings"
|
902 |
|
903 |
-
#: includes/fs-plugin-info-dialog.php:
|
904 |
msgid "%s star"
|
905 |
msgstr "%s star"
|
906 |
|
907 |
-
#: includes/fs-plugin-info-dialog.php:
|
908 |
msgid "%s stars"
|
909 |
msgstr "%s stars"
|
910 |
|
911 |
-
#: includes/fs-plugin-info-dialog.php:
|
912 |
msgid "Click to see reviews that provided a rating of %s"
|
913 |
msgstr "Click to see reviews that provided a rating of %s"
|
914 |
|
915 |
-
#: includes/fs-plugin-info-dialog.php:
|
916 |
msgid "Contributors"
|
917 |
msgstr "Contributors"
|
918 |
|
919 |
-
#: includes/fs-plugin-info-dialog.php:
|
920 |
msgid "Warning"
|
921 |
msgstr "Warning"
|
922 |
|
923 |
-
#: includes/fs-plugin-info-dialog.php:
|
924 |
msgid "This plugin has not been tested with your current version of WordPress."
|
925 |
msgstr "This plugin has not been tested with your current version of WordPress."
|
926 |
|
927 |
-
#: includes/fs-plugin-info-dialog.php:
|
928 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
929 |
msgstr "This plugin has not been marked as compatible with your version of WordPress."
|
930 |
|
931 |
-
#: includes/fs-plugin-info-dialog.php:
|
932 |
msgid "Paid add-on must be deployed to Freemius."
|
933 |
msgstr "Paid add-on must be deployed to Freemius."
|
934 |
|
935 |
-
#: includes/fs-plugin-info-dialog.php:
|
936 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
937 |
msgstr "Add-on must be deployed to WordPress.org or Freemius."
|
938 |
|
939 |
-
#: templates/account.php:81, templates/account/partials/site.php:295
|
940 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
941 |
msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
942 |
|
943 |
-
#: templates/account.php:82
|
944 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
945 |
msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
946 |
|
947 |
-
#: templates/account.php:83, templates/account/partials/site.php:296
|
948 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
949 |
msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
|
950 |
|
951 |
-
#: templates/account.php:84, templates/account/partials/site.php:297
|
952 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
953 |
msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
954 |
|
955 |
#. translators: %s: Plan title (e.g. "Professional")
|
956 |
-
#: templates/account.php:86, templates/account/partials/activate-license-button.php:31
|
957 |
msgid "Activate %s Plan"
|
958 |
msgstr "Activate %s Plan"
|
959 |
|
960 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
961 |
-
#: templates/account.php:89, templates/account/partials/site.php:275
|
962 |
msgid "Auto renews in %s"
|
963 |
msgstr "Auto renews in %s"
|
964 |
|
965 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
966 |
-
#: templates/account.php:91, templates/account/partials/site.php:277
|
967 |
msgid "Expires in %s"
|
968 |
msgstr "Expires in %s"
|
969 |
|
970 |
-
#: templates/account.php:92
|
971 |
msgctxt "as synchronize license"
|
972 |
msgid "Sync License"
|
973 |
msgstr "Sync License"
|
974 |
|
975 |
-
#: templates/account.php:93
|
976 |
msgid "Cancel Trial"
|
977 |
msgstr "Cancel Trial"
|
978 |
|
979 |
-
#: templates/account.php:94
|
980 |
msgid "Change Plan"
|
981 |
msgstr "Change Plan"
|
982 |
|
983 |
-
#: templates/account.php:95
|
984 |
msgctxt "verb"
|
985 |
msgid "Upgrade"
|
986 |
msgstr "Upgrade"
|
987 |
|
988 |
-
#: templates/account.php:97, templates/account/partials/site.php:298
|
989 |
msgctxt "verb"
|
990 |
msgid "Downgrade"
|
991 |
msgstr "Downgrade"
|
992 |
|
993 |
-
#: templates/account.php:99, templates/add-ons.php:126, templates/plugin-info/features.php:72, templates/account/partials/site.php:31
|
994 |
msgid "Free"
|
995 |
msgstr "Free"
|
996 |
|
997 |
-
#: templates/account.php:100
|
998 |
msgid "Activate"
|
999 |
msgstr "Activate"
|
1000 |
|
1001 |
-
#: templates/account.php:101, templates/debug.php:
|
1002 |
msgctxt "as product pricing plan"
|
1003 |
msgid "Plan"
|
1004 |
msgstr "Plan"
|
1005 |
|
1006 |
-
#: templates/account.php:
|
1007 |
msgid "Free Trial"
|
1008 |
msgstr "Free Trial"
|
1009 |
|
1010 |
-
#: templates/account.php:
|
1011 |
msgid "Account Details"
|
1012 |
msgstr "Account Details"
|
1013 |
|
1014 |
-
#: templates/account.php:
|
1015 |
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?"
|
1016 |
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?"
|
1017 |
|
1018 |
-
#: templates/account.php:
|
1019 |
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?"
|
1020 |
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?"
|
1021 |
|
1022 |
-
#: templates/account.php:
|
1023 |
msgid "Delete Account"
|
1024 |
msgstr "Delete Account"
|
1025 |
|
1026 |
-
#: templates/account.php:
|
1027 |
msgid "Deactivate License"
|
1028 |
msgstr "Deactivate License"
|
1029 |
|
1030 |
-
#: templates/account.php:
|
1031 |
msgid "Are you sure you want to proceed?"
|
1032 |
msgstr "Are you sure you want to proceed?"
|
1033 |
|
1034 |
-
#: templates/account.php:
|
1035 |
msgid "Cancel Subscription"
|
1036 |
msgstr "Cancel Subscription"
|
1037 |
|
1038 |
-
#: templates/account.php:
|
1039 |
msgctxt "as synchronize"
|
1040 |
msgid "Sync"
|
1041 |
msgstr "Sync"
|
1042 |
|
1043 |
-
#: templates/account.php:
|
1044 |
msgid "Name"
|
1045 |
msgstr "Name"
|
1046 |
|
1047 |
-
#: templates/account.php:
|
1048 |
msgid "Email"
|
1049 |
msgstr "Email"
|
1050 |
|
1051 |
-
#: templates/account.php:
|
1052 |
msgid "User ID"
|
1053 |
msgstr "User ID"
|
1054 |
|
1055 |
-
#: templates/account.php:
|
1056 |
msgid "Site ID"
|
1057 |
msgstr "Site ID"
|
1058 |
|
1059 |
-
#: templates/account.php:
|
1060 |
msgid "No ID"
|
1061 |
msgstr "No ID"
|
1062 |
|
1063 |
-
#: templates/account.php:
|
1064 |
msgid "Public Key"
|
1065 |
msgstr "Public Key"
|
1066 |
|
1067 |
-
#: templates/account.php:
|
1068 |
msgid "Secret Key"
|
1069 |
msgstr "Secret Key"
|
1070 |
|
1071 |
-
#: templates/account.php:
|
1072 |
msgctxt "as secret encryption key missing"
|
1073 |
msgid "No Secret"
|
1074 |
msgstr "No Secret"
|
1075 |
|
1076 |
-
#: templates/account.php:
|
1077 |
msgid "Trial"
|
1078 |
msgstr "Trial"
|
1079 |
|
1080 |
-
#: templates/account.php:
|
1081 |
msgid "License Key"
|
1082 |
msgstr "License Key"
|
1083 |
|
1084 |
-
#: templates/account.php:
|
1085 |
msgid "not verified"
|
1086 |
msgstr "not verified"
|
1087 |
|
1088 |
-
#: templates/account.php:
|
1089 |
msgid "Premium version"
|
1090 |
msgstr "Premium version"
|
1091 |
|
1092 |
-
#: templates/account.php:
|
1093 |
msgid "Free version"
|
1094 |
msgstr "Free version"
|
1095 |
|
1096 |
-
#: templates/account.php:
|
1097 |
msgid "Verify Email"
|
1098 |
msgstr "Verify Email"
|
1099 |
|
1100 |
-
#: templates/account.php:
|
1101 |
msgid "Download %s Version"
|
1102 |
msgstr "Download %s Version"
|
1103 |
|
1104 |
-
#: templates/account.php:
|
1105 |
msgctxt "verb"
|
1106 |
msgid "Show"
|
1107 |
msgstr "Show"
|
1108 |
|
1109 |
-
#: templates/account.php:
|
1110 |
msgid "What is your %s?"
|
1111 |
msgstr "What is your %s?"
|
1112 |
|
1113 |
-
#: templates/account.php:
|
1114 |
msgctxt "verb"
|
1115 |
msgid "Edit"
|
1116 |
msgstr "Edit"
|
1117 |
|
1118 |
-
#: templates/account.php:
|
1119 |
msgid "Sites"
|
1120 |
msgstr "Sites"
|
1121 |
|
1122 |
-
#: templates/account.php:
|
1123 |
msgid "Search by address"
|
1124 |
msgstr "Search by address"
|
1125 |
|
1126 |
-
#: templates/account.php:
|
1127 |
msgid "ID"
|
1128 |
msgstr "ID"
|
1129 |
|
1130 |
-
#: templates/account.php:
|
1131 |
msgid "Address"
|
1132 |
msgstr "Address"
|
1133 |
|
1134 |
-
#: templates/account.php:
|
1135 |
msgid "License"
|
1136 |
msgstr "License"
|
1137 |
|
1138 |
-
#: templates/account.php:
|
1139 |
msgid "Plan"
|
1140 |
msgstr "Plan"
|
1141 |
|
1142 |
-
#: templates/account.php:
|
1143 |
msgctxt "as software license"
|
1144 |
msgid "License"
|
1145 |
msgstr "License"
|
1146 |
|
1147 |
-
#: templates/account.php:
|
1148 |
-
msgid "Cancelled"
|
1149 |
-
msgstr "Cancelled"
|
1150 |
-
|
1151 |
-
#: templates/account.php:640
|
1152 |
-
msgid "Expired"
|
1153 |
-
msgstr "Expired"
|
1154 |
-
|
1155 |
-
#: templates/account.php:645
|
1156 |
-
msgid "No expiration"
|
1157 |
-
msgstr "No expiration"
|
1158 |
-
|
1159 |
-
#: templates/account.php:756, templates/account.php:812
|
1160 |
-
msgid "Activate this add-on"
|
1161 |
-
msgstr "Activate this add-on"
|
1162 |
-
|
1163 |
-
#: templates/account.php:833, templates/debug.php:408, templates/debug.php:486
|
1164 |
-
msgctxt "verb"
|
1165 |
-
msgid "Delete"
|
1166 |
-
msgstr "Delete"
|
1167 |
-
|
1168 |
-
#: templates/account.php:890
|
1169 |
msgctxt "verb"
|
1170 |
msgid "Hide"
|
1171 |
msgstr "Hide"
|
1172 |
|
1173 |
-
#: templates/account.php:
|
1174 |
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?"
|
1175 |
msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1176 |
|
@@ -1225,149 +1289,157 @@ msgctxt "greeting"
|
|
1225 |
msgid "Hey %s,"
|
1226 |
msgstr "Hey %s,"
|
1227 |
|
1228 |
-
#: templates/connect.php:
|
1229 |
msgid "Allow & Continue"
|
1230 |
msgstr "Allow & Continue"
|
1231 |
|
1232 |
-
#: templates/connect.php:
|
1233 |
msgid "Re-send activation email"
|
1234 |
msgstr "Re-send activation email"
|
1235 |
|
1236 |
-
#: templates/connect.php:
|
1237 |
msgid "Thanks %s!"
|
1238 |
msgstr "Thanks %s!"
|
1239 |
|
1240 |
-
#: templates/connect.php:
|
1241 |
msgid "Agree & Activate License"
|
1242 |
msgstr "Agree & Activate License"
|
1243 |
|
1244 |
-
#: templates/connect.php:
|
1245 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1246 |
msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
|
1247 |
|
1248 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1249 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1250 |
msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1251 |
|
1252 |
-
#: templates/connect.php:
|
1253 |
-
msgid "
|
1254 |
-
msgstr "
|
1255 |
|
1256 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1257 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1258 |
msgstr "We're excited to introduce the Freemius network-level integration."
|
1259 |
|
1260 |
-
#: templates/connect.php:
|
1261 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1262 |
msgstr "During the update process we detected %d site(s) that are still pending license activation."
|
1263 |
|
1264 |
-
#: templates/connect.php:
|
1265 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1266 |
msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1267 |
|
1268 |
-
#: templates/connect.php:
|
1269 |
msgid "%s's paid features"
|
1270 |
msgstr "%s's paid features"
|
1271 |
|
1272 |
-
#: templates/connect.php:
|
1273 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1274 |
msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1275 |
|
1276 |
-
#: templates/connect.php:
|
1277 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1278 |
msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1279 |
|
1280 |
-
#: templates/connect.php:
|
1281 |
msgid "License key"
|
1282 |
msgstr "License key"
|
1283 |
|
1284 |
-
#: templates/connect.php:
|
1285 |
msgid "Can't find your license key?"
|
1286 |
msgstr "Can't find your license key?"
|
1287 |
|
1288 |
-
#: templates/connect.php:
|
1289 |
msgctxt "verb"
|
1290 |
msgid "Skip"
|
1291 |
msgstr "Skip"
|
1292 |
|
1293 |
-
#: templates/connect.php:
|
1294 |
msgid "Delegate to Site Admins"
|
1295 |
msgstr "Delegate to Site Admins"
|
1296 |
|
1297 |
-
#: templates/connect.php:
|
1298 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1299 |
msgstr "If you click it, this decision will be delegated to the sites administrators."
|
1300 |
|
1301 |
-
#: templates/connect.php:
|
1302 |
msgid "Your Profile Overview"
|
1303 |
msgstr "Your Profile Overview"
|
1304 |
|
1305 |
-
#: templates/connect.php:
|
1306 |
msgid "Name and email address"
|
1307 |
msgstr "Name and email address"
|
1308 |
|
1309 |
-
#: templates/connect.php:
|
1310 |
msgid "Your Site Overview"
|
1311 |
msgstr "Your Site Overview"
|
1312 |
|
1313 |
-
#: templates/connect.php:
|
1314 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1315 |
msgstr "Site URL, WP version, PHP info, plugins & themes"
|
1316 |
|
1317 |
-
#: templates/connect.php:
|
1318 |
msgid "Admin Notices"
|
1319 |
msgstr "Admin Notices"
|
1320 |
|
1321 |
-
#: templates/connect.php:
|
1322 |
msgid "Updates, announcements, marketing, no spam"
|
1323 |
msgstr "Updates, announcements, marketing, no spam"
|
1324 |
|
1325 |
-
#: templates/connect.php:
|
1326 |
msgid "Current %s Events"
|
1327 |
msgstr "Current %s Events"
|
1328 |
|
1329 |
-
#: templates/connect.php:
|
1330 |
msgid "Activation, deactivation and uninstall"
|
1331 |
msgstr "Activation, deactivation and uninstall"
|
1332 |
|
1333 |
-
#: templates/connect.php:
|
1334 |
msgid "Newsletter"
|
1335 |
msgstr "Newsletter"
|
1336 |
|
1337 |
-
#: templates/connect.php:
|
1338 |
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."
|
1339 |
msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1340 |
|
1341 |
-
#: templates/connect.php:
|
1342 |
msgid "What permissions are being granted?"
|
1343 |
msgstr "What permissions are being granted?"
|
1344 |
|
1345 |
-
#: templates/connect.php:
|
1346 |
msgid "Don't have a license key?"
|
1347 |
msgstr "Don't have a license key?"
|
1348 |
|
1349 |
-
#: templates/connect.php:
|
1350 |
msgid "Activate Free Version"
|
1351 |
msgstr "Activate Free Version"
|
1352 |
|
1353 |
-
#: templates/connect.php:
|
1354 |
msgid "Have a license key?"
|
1355 |
msgstr "Have a license key?"
|
1356 |
|
1357 |
-
#: templates/connect.php:
|
1358 |
msgid "Privacy Policy"
|
1359 |
msgstr "Privacy Policy"
|
1360 |
|
1361 |
-
#: templates/connect.php:
|
1362 |
msgid "Terms of Service"
|
1363 |
msgstr "Terms of Service"
|
1364 |
|
1365 |
-
#: templates/connect.php:
|
1366 |
msgctxt "as in the process of sending an email"
|
1367 |
msgid "Sending email"
|
1368 |
msgstr "Sending email"
|
1369 |
|
1370 |
-
#: templates/connect.php:
|
1371 |
msgctxt "as activating plugin"
|
1372 |
msgid "Activating"
|
1373 |
msgstr "Activating"
|
@@ -1395,7 +1467,7 @@ msgctxt "as code debugging"
|
|
1395 |
msgid "Debugging"
|
1396 |
msgstr "Debugging"
|
1397 |
|
1398 |
-
#: templates/debug.php:54, templates/debug.php:238, templates/debug.php:
|
1399 |
msgid "Actions"
|
1400 |
msgstr "Actions"
|
1401 |
|
@@ -1460,11 +1532,11 @@ msgstr "Plugins"
|
|
1460 |
msgid "Themes"
|
1461 |
msgstr "Themes"
|
1462 |
|
1463 |
-
#: templates/debug.php:227, templates/debug.php:
|
1464 |
msgid "Slug"
|
1465 |
msgstr "Slug"
|
1466 |
|
1467 |
-
#: templates/debug.php:229, templates/debug.php:
|
1468 |
msgid "Title"
|
1469 |
msgstr "Title"
|
1470 |
|
@@ -1485,123 +1557,128 @@ msgstr "Network Blog"
|
|
1485 |
msgid "Network User"
|
1486 |
msgstr "Network User"
|
1487 |
|
1488 |
-
#: templates/debug.php:
|
1489 |
msgctxt "as connection was successful"
|
1490 |
msgid "Connected"
|
1491 |
msgstr "Connected"
|
1492 |
|
1493 |
-
#: templates/debug.php:
|
1494 |
msgctxt "as connection blocked"
|
1495 |
msgid "Blocked"
|
1496 |
msgstr "Blocked"
|
1497 |
|
1498 |
-
#: templates/debug.php:
|
1499 |
msgid "Simulate Trial"
|
1500 |
msgstr "Simulate Trial"
|
1501 |
|
1502 |
-
#: templates/debug.php:
|
1503 |
msgid "Simulate Network Upgrade"
|
1504 |
msgstr "Simulate Network Upgrade"
|
1505 |
|
1506 |
-
#: templates/debug.php:
|
1507 |
msgid "%s Installs"
|
1508 |
msgstr "%s Installs"
|
1509 |
|
1510 |
-
#: templates/debug.php:
|
1511 |
msgctxt "like websites"
|
1512 |
msgid "Sites"
|
1513 |
msgstr "Sites"
|
1514 |
|
1515 |
-
#: templates/debug.php:
|
1516 |
msgid "Blog ID"
|
1517 |
msgstr "Blog ID"
|
1518 |
|
1519 |
-
#: templates/debug.php:
|
|
|
|
|
|
|
|
|
|
|
1520 |
msgid "Add Ons of module %s"
|
1521 |
msgstr "Add Ons of module %s"
|
1522 |
|
1523 |
-
#: templates/debug.php:
|
1524 |
msgid "Users"
|
1525 |
msgstr "Users"
|
1526 |
|
1527 |
-
#: templates/debug.php:
|
1528 |
msgid "Verified"
|
1529 |
msgstr "Verified"
|
1530 |
|
1531 |
-
#: templates/debug.php:
|
1532 |
msgid "%s Licenses"
|
1533 |
msgstr "%s Licenses"
|
1534 |
|
1535 |
-
#: templates/debug.php:
|
1536 |
msgid "Plugin ID"
|
1537 |
msgstr "Plugin ID"
|
1538 |
|
1539 |
-
#: templates/debug.php:
|
1540 |
msgid "Plan ID"
|
1541 |
msgstr "Plan ID"
|
1542 |
|
1543 |
-
#: templates/debug.php:
|
1544 |
msgid "Quota"
|
1545 |
msgstr "Quota"
|
1546 |
|
1547 |
-
#: templates/debug.php:
|
1548 |
msgid "Activated"
|
1549 |
msgstr "Activated"
|
1550 |
|
1551 |
-
#: templates/debug.php:
|
1552 |
msgid "Blocking"
|
1553 |
msgstr "Blocking"
|
1554 |
|
1555 |
-
#: templates/debug.php:
|
1556 |
msgctxt "as expiration date"
|
1557 |
msgid "Expiration"
|
1558 |
msgstr "Expiration"
|
1559 |
|
1560 |
-
#: templates/debug.php:
|
1561 |
msgid "Debug Log"
|
1562 |
msgstr "Debug Log"
|
1563 |
|
1564 |
-
#: templates/debug.php:
|
1565 |
msgid "All Types"
|
1566 |
msgstr "All Types"
|
1567 |
|
1568 |
-
#: templates/debug.php:
|
1569 |
msgid "All Requests"
|
1570 |
msgstr "All Requests"
|
1571 |
|
1572 |
-
#: templates/debug.php:
|
1573 |
msgid "File"
|
1574 |
msgstr "File"
|
1575 |
|
1576 |
-
#: templates/debug.php:
|
1577 |
msgid "Function"
|
1578 |
msgstr "Function"
|
1579 |
|
1580 |
-
#: templates/debug.php:
|
1581 |
msgid "Process ID"
|
1582 |
msgstr "Process ID"
|
1583 |
|
1584 |
-
#: templates/debug.php:
|
1585 |
msgid "Logger"
|
1586 |
msgstr "Logger"
|
1587 |
|
1588 |
-
#: templates/debug.php:
|
1589 |
msgid "Message"
|
1590 |
msgstr "Message"
|
1591 |
|
1592 |
-
#: templates/debug.php:
|
1593 |
msgid "Filter"
|
1594 |
msgstr "Filter"
|
1595 |
|
1596 |
-
#: templates/debug.php:
|
1597 |
msgid "Download"
|
1598 |
msgstr "Download"
|
1599 |
|
1600 |
-
#: templates/debug.php:
|
1601 |
msgid "Type"
|
1602 |
msgstr "Type"
|
1603 |
|
1604 |
-
#: templates/debug.php:
|
1605 |
msgid "Timestamp"
|
1606 |
msgstr "Timestamp"
|
1607 |
|
@@ -1945,6 +2022,27 @@ msgstr "Usage tracking is done in the name of making %s better. Making a better
|
|
1945 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
1946 |
msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
1947 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1948 |
#: templates/forms/resend-key.php:21
|
1949 |
msgid "Send License Key"
|
1950 |
msgstr "Send License Key"
|
@@ -2014,6 +2112,22 @@ msgstr "%s left"
|
|
2014 |
msgid "Last license"
|
2015 |
msgstr "Last license"
|
2016 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017 |
#: templates/account/partials/site.php:181
|
2018 |
msgid "Owner Name"
|
2019 |
msgstr "Owner Name"
|
@@ -2066,19 +2180,19 @@ msgstr "deactivating"
|
|
2066 |
msgid "switching"
|
2067 |
msgstr "switching"
|
2068 |
|
2069 |
-
#: templates/forms/deactivation/form.php:
|
2070 |
msgid "Submit & %s"
|
2071 |
msgstr "Submit & %s"
|
2072 |
|
2073 |
-
#: templates/forms/deactivation/form.php:
|
2074 |
msgid "Kindly tell us the reason so we can improve."
|
2075 |
msgstr "Kindly tell us the reason so we can improve."
|
2076 |
|
2077 |
-
#: templates/forms/deactivation/form.php:
|
2078 |
msgid "Yes - %s"
|
2079 |
msgstr "Yes - %s"
|
2080 |
|
2081 |
-
#: templates/forms/deactivation/form.php:
|
2082 |
msgid "Skip & %s"
|
2083 |
msgstr "Skip & %s"
|
2084 |
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
|
22 |
+
#: includes/class-freemius.php:1551
|
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:1553
|
27 |
msgid "Error"
|
28 |
msgstr "Error"
|
29 |
|
30 |
+
#: includes/class-freemius.php:1871
|
31 |
msgid "I found a better %s"
|
32 |
msgstr "I found a better %s"
|
33 |
|
34 |
+
#: includes/class-freemius.php:1873
|
35 |
msgid "What's the %s's name?"
|
36 |
msgstr "What's the %s's name?"
|
37 |
|
38 |
+
#: includes/class-freemius.php:1879
|
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:1881
|
43 |
msgid "Deactivation"
|
44 |
msgstr "Deactivation"
|
45 |
|
46 |
+
#: includes/class-freemius.php:1882
|
47 |
msgid "Theme Switch"
|
48 |
msgstr "Theme Switch"
|
49 |
|
50 |
+
#: includes/class-freemius.php:1891, templates/forms/resend-key.php:24
|
51 |
msgid "Other"
|
52 |
msgstr "Other"
|
53 |
|
54 |
+
#: includes/class-freemius.php:1899
|
55 |
msgid "I no longer need the %s"
|
56 |
msgstr "I no longer need the %s"
|
57 |
|
58 |
+
#: includes/class-freemius.php:1906
|
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:1912
|
63 |
msgid "The %s broke my site"
|
64 |
msgstr "The %s broke my site"
|
65 |
|
66 |
+
#: includes/class-freemius.php:1919
|
67 |
msgid "The %s suddenly stopped working"
|
68 |
msgstr "The %s suddenly stopped working"
|
69 |
|
70 |
+
#: includes/class-freemius.php:1929
|
71 |
msgid "I can't pay for it anymore"
|
72 |
msgstr "I can't pay for it anymore"
|
73 |
|
74 |
+
#: includes/class-freemius.php:1931
|
75 |
msgid "What price would you feel comfortable paying?"
|
76 |
msgstr "What price would you feel comfortable paying?"
|
77 |
|
78 |
+
#: includes/class-freemius.php:1937
|
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:1958
|
83 |
msgid "The %s didn't work"
|
84 |
msgstr "The %s didn't work"
|
85 |
|
86 |
+
#: includes/class-freemius.php:1968
|
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:1976
|
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:1978
|
95 |
msgid "What feature?"
|
96 |
msgstr "What feature?"
|
97 |
|
98 |
+
#: includes/class-freemius.php:1982
|
99 |
msgid "The %s is not working"
|
100 |
msgstr "The %s is not working"
|
101 |
|
102 |
+
#: includes/class-freemius.php:1984
|
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:1988
|
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:1990
|
111 |
msgid "What you've been looking for?"
|
112 |
msgstr "What you've been looking for?"
|
113 |
|
114 |
+
#: includes/class-freemius.php:1994
|
115 |
msgid "The %s didn't work as expected"
|
116 |
msgstr "The %s didn't work as expected"
|
117 |
|
118 |
+
#: includes/class-freemius.php:1996
|
119 |
msgid "What did you expect?"
|
120 |
msgstr "What did you expect?"
|
121 |
|
122 |
+
#: includes/class-freemius.php:2729, templates/debug.php:20
|
123 |
msgid "Freemius Debug"
|
124 |
msgstr "Freemius Debug"
|
125 |
|
126 |
+
#: includes/class-freemius.php:3402
|
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:3404
|
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:3411
|
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:3516
|
139 |
msgid "Yes - do your thing"
|
140 |
msgstr "Yes - do your thing"
|
141 |
|
142 |
+
#: includes/class-freemius.php:3521
|
143 |
msgid "No - just deactivate"
|
144 |
msgstr "No - just deactivate"
|
145 |
|
146 |
+
#: includes/class-freemius.php:3566, includes/class-freemius.php:4066, includes/class-freemius.php:5127, includes/class-freemius.php:10941, includes/class-freemius.php:14205, includes/class-freemius.php:14257, includes/class-freemius.php:14319, includes/class-freemius.php:16448, includes/class-freemius.php:16458, includes/class-freemius.php:17014, includes/class-freemius.php:17032, includes/class-freemius.php:17130, includes/class-freemius.php:17866, templates/add-ons.php:43
|
147 |
msgctxt "exclamation"
|
148 |
msgid "Oops"
|
149 |
msgstr "Oops"
|
150 |
|
151 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
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:4064
|
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:4176, includes/class-freemius.php:4201, includes/class-freemius.php:17103
|
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:4815
|
170 |
msgid "Premium %s version was successfully activated."
|
171 |
msgstr "Premium %s version was successfully activated."
|
172 |
|
173 |
+
#: includes/class-freemius.php:4827, includes/class-freemius.php:6660
|
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:4842
|
179 |
msgid "You have a %s license."
|
180 |
msgstr "You have a %s license."
|
181 |
|
182 |
+
#: includes/class-freemius.php:4846, includes/class-freemius.php:13626, includes/class-freemius.php:13637, includes/class-freemius.php:16376, includes/class-freemius.php:16676, includes/class-freemius.php:16741, includes/class-freemius.php:16891
|
183 |
msgctxt "interjection expressing joy or exuberance"
|
184 |
msgid "Yee-haw"
|
185 |
msgstr "Yee-haw"
|
186 |
|
187 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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:5123, templates/add-ons.php:99, templates/account/partials/addon.php:283
|
196 |
msgid "More information about %s"
|
197 |
msgstr "More information about %s"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5124
|
200 |
msgid "Purchase License"
|
201 |
msgstr "Purchase License"
|
202 |
|
203 |
+
#: includes/class-freemius.php:6035, templates/connect.php:161
|
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:6039
|
208 |
msgid "start the trial"
|
209 |
msgstr "start the trial"
|
210 |
|
211 |
+
#: includes/class-freemius.php:6040, templates/connect.php:165
|
212 |
msgid "complete the install"
|
213 |
msgstr "complete the install"
|
214 |
|
215 |
+
#: includes/class-freemius.php:6147
|
216 |
msgid "You are just one step away - %s"
|
217 |
msgstr "You are just one step away - %s"
|
218 |
|
219 |
+
#: includes/class-freemius.php:6150
|
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:6227
|
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:6231
|
229 |
msgid "Opt in to make \"%s\" Better!"
|
230 |
msgstr "Opt in to make \"%s\" Better!"
|
231 |
|
232 |
+
#: includes/class-freemius.php:6659
|
233 |
msgid "The upgrade of %s was successfully completed."
|
234 |
msgstr "The upgrade of %s was successfully completed."
|
235 |
|
236 |
+
#: includes/class-freemius.php:8384, includes/class-fs-plugin-updater.php:581, includes/class-fs-plugin-updater.php:733, includes/class-fs-plugin-updater.php:739, templates/auto-installation.php:32
|
237 |
msgid "Add-On"
|
238 |
msgstr "Add-On"
|
239 |
|
240 |
+
#: includes/class-freemius.php:8386, templates/debug.php:349, templates/debug.php:510
|
241 |
msgid "Plugin"
|
242 |
msgstr "Plugin"
|
243 |
|
244 |
+
#: includes/class-freemius.php:8387, templates/debug.php:349, templates/debug.php:510, templates/forms/deactivation/form.php:64
|
245 |
msgid "Theme"
|
246 |
msgstr "Theme"
|
247 |
|
248 |
+
#: includes/class-freemius.php:10808
|
249 |
msgid "invalid_site_details_collection"
|
250 |
msgstr "invalid_site_details_collection"
|
251 |
|
252 |
+
#: includes/class-freemius.php:10928
|
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:10930
|
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:11166
|
261 |
msgid "Account is pending activation."
|
262 |
msgstr "Account is pending activation."
|
263 |
|
264 |
+
#: includes/class-freemius.php:13608
|
265 |
msgid "%s activation was successfully completed."
|
266 |
msgstr "%s activation was successfully completed."
|
267 |
|
268 |
+
#: includes/class-freemius.php:13622
|
269 |
msgid "Your account was successfully activated with the %s plan."
|
270 |
msgstr "Your account was successfully activated with the %s plan."
|
271 |
|
272 |
+
#: includes/class-freemius.php:13633, includes/class-freemius.php:16737
|
273 |
msgid "Your trial has been successfully started."
|
274 |
msgstr "Your trial has been successfully started."
|
275 |
|
276 |
+
#: includes/class-freemius.php:14203, includes/class-freemius.php:14255, includes/class-freemius.php:14317
|
277 |
msgid "Couldn't activate %s."
|
278 |
msgstr "Couldn't activate %s."
|
279 |
|
280 |
+
#: includes/class-freemius.php:14204, includes/class-freemius.php:14256, includes/class-freemius.php:14318
|
281 |
msgid "Please contact us with the following message:"
|
282 |
msgstr "Please contact us with the following message:"
|
283 |
|
284 |
+
#: includes/class-freemius.php:14666, includes/class-freemius.php:18929
|
285 |
msgid "Upgrade"
|
286 |
msgstr "Upgrade"
|
287 |
|
288 |
+
#: includes/class-freemius.php:14672
|
289 |
msgid "Start Trial"
|
290 |
msgstr "Start Trial"
|
291 |
|
292 |
+
#: includes/class-freemius.php:14674
|
293 |
msgid "Pricing"
|
294 |
msgstr "Pricing"
|
295 |
|
296 |
+
#: includes/class-freemius.php:14734, includes/class-freemius.php:14736
|
297 |
msgid "Affiliation"
|
298 |
msgstr "Affiliation"
|
299 |
|
300 |
+
#: includes/class-freemius.php:14756, includes/class-freemius.php:14758, templates/account.php:146, templates/debug.php:314
|
301 |
msgid "Account"
|
302 |
msgstr "Account"
|
303 |
|
304 |
+
#: includes/class-freemius.php:14769, includes/class-freemius.php:14771, includes/customizer/class-fs-customizer-support-section.php:60
|
305 |
msgid "Contact Us"
|
306 |
msgstr "Contact Us"
|
307 |
|
308 |
+
#: includes/class-freemius.php:14781, includes/class-freemius.php:14783, includes/class-freemius.php:18939, templates/account.php:96, templates/account/partials/addon.php:37
|
309 |
msgid "Add-Ons"
|
310 |
msgstr "Add-Ons"
|
311 |
|
312 |
+
#: includes/class-freemius.php:14815, templates/pricing.php:97
|
313 |
msgctxt "noun"
|
314 |
msgid "Pricing"
|
315 |
msgstr "Pricing"
|
316 |
|
317 |
+
#: includes/class-freemius.php:15009, includes/customizer/class-fs-customizer-support-section.php:67
|
318 |
msgid "Support Forum"
|
319 |
msgstr "Support Forum"
|
320 |
|
321 |
+
#: includes/class-freemius.php:15794
|
322 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
323 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
324 |
|
325 |
+
#: includes/class-freemius.php:15795
|
326 |
msgctxt "a positive response"
|
327 |
msgid "Right on"
|
328 |
msgstr "Right on"
|
329 |
|
330 |
+
#: includes/class-freemius.php:16367
|
331 |
msgid "Your %s Add-on plan was successfully upgraded."
|
332 |
msgstr "Your %s Add-on plan was successfully upgraded."
|
333 |
|
334 |
+
#: includes/class-freemius.php:16369
|
335 |
msgid "%s Add-on was successfully purchased."
|
336 |
msgstr "%s Add-on was successfully purchased."
|
337 |
|
338 |
+
#: includes/class-freemius.php:16372
|
339 |
msgid "Download the latest version"
|
340 |
msgstr "Download the latest version"
|
341 |
|
342 |
+
#: includes/class-freemius.php:16444
|
343 |
msgctxt "%1s - plugin title, %2s - API domain"
|
344 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
345 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
346 |
|
347 |
+
#: includes/class-freemius.php:16447, includes/class-freemius.php:16862, includes/class-freemius.php:16927
|
348 |
msgid "Error received from the server:"
|
349 |
msgstr "Error received from the server:"
|
350 |
|
351 |
+
#: includes/class-freemius.php:16457
|
352 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
353 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
354 |
|
355 |
+
#: includes/class-freemius.php:16639, includes/class-freemius.php:16867, includes/class-freemius.php:16910
|
356 |
msgctxt "something somebody says when they are thinking about what you have just said."
|
357 |
msgid "Hmm"
|
358 |
msgstr "Hmm"
|
359 |
|
360 |
+
#: includes/class-freemius.php:16652
|
361 |
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."
|
362 |
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."
|
363 |
|
364 |
+
#: includes/class-freemius.php:16653, templates/account.php:98, templates/add-ons.php:130, templates/account/partials/addon.php:39
|
365 |
msgctxt "trial period"
|
366 |
msgid "Trial"
|
367 |
msgstr "Trial"
|
368 |
|
369 |
+
#: includes/class-freemius.php:16658
|
370 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
371 |
msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
372 |
|
373 |
+
#: includes/class-freemius.php:16662, includes/class-freemius.php:16719
|
374 |
msgid "Please contact us here"
|
375 |
msgstr "Please contact us here"
|
376 |
|
377 |
+
#: includes/class-freemius.php:16672
|
378 |
msgid "Your plan was successfully upgraded."
|
379 |
msgstr "Your plan was successfully upgraded."
|
380 |
|
381 |
+
#: includes/class-freemius.php:16689
|
382 |
msgid "Your plan was successfully changed to %s."
|
383 |
msgstr "Your plan was successfully changed to %s."
|
384 |
|
385 |
+
#: includes/class-freemius.php:16705
|
386 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
387 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
388 |
|
389 |
+
#: includes/class-freemius.php:16707
|
390 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
391 |
+
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
392 |
+
|
393 |
+
#: includes/class-freemius.php:16715
|
394 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
395 |
msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
|
396 |
|
397 |
+
#: includes/class-freemius.php:16728
|
398 |
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."
|
399 |
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."
|
400 |
|
401 |
+
#: includes/class-freemius.php:16751
|
402 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
403 |
+
msgstr "Your free trial has expired. You can still continue using all our free features."
|
404 |
+
|
405 |
+
#: includes/class-freemius.php:16753
|
406 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
407 |
+
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
408 |
|
409 |
+
#: includes/class-freemius.php:16858
|
410 |
msgid "It looks like the license could not be activated."
|
411 |
msgstr "It looks like the license could not be activated."
|
412 |
|
413 |
+
#: includes/class-freemius.php:16888
|
414 |
msgid "Your license was successfully activated."
|
415 |
msgstr "Your license was successfully activated."
|
416 |
|
417 |
+
#: includes/class-freemius.php:16914
|
418 |
msgid "It looks like your site currently doesn't have an active license."
|
419 |
msgstr "It looks like your site currently doesn't have an active license."
|
420 |
|
421 |
+
#: includes/class-freemius.php:16926
|
422 |
msgid "It looks like the license deactivation failed."
|
423 |
msgstr "It looks like the license deactivation failed."
|
424 |
|
425 |
+
#: includes/class-freemius.php:16954
|
426 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
427 |
msgstr "Your license was successfully deactivated, you are back to the %s plan."
|
428 |
|
429 |
+
#: includes/class-freemius.php:16955
|
430 |
msgid "O.K"
|
431 |
msgstr "O.K"
|
432 |
|
433 |
+
#: includes/class-freemius.php:17003
|
434 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
435 |
msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
436 |
|
437 |
+
#: includes/class-freemius.php:17013
|
438 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
439 |
msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
440 |
|
441 |
+
#: includes/class-freemius.php:17037
|
442 |
msgid "You are already running the %s in a trial mode."
|
443 |
msgstr "You are already running the %s in a trial mode."
|
444 |
|
445 |
+
#: includes/class-freemius.php:17048
|
446 |
msgid "You already utilized a trial before."
|
447 |
msgstr "You already utilized a trial before."
|
448 |
|
449 |
+
#: includes/class-freemius.php:17062
|
450 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
451 |
msgstr "Plan %s do not exist, therefore, can't start a trial."
|
452 |
|
453 |
+
#: includes/class-freemius.php:17073
|
454 |
msgid "Plan %s does not support a trial period."
|
455 |
msgstr "Plan %s does not support a trial period."
|
456 |
|
457 |
+
#: includes/class-freemius.php:17084
|
458 |
msgid "None of the %s's plans supports a trial period."
|
459 |
msgstr "None of the %s's plans supports a trial period."
|
460 |
|
461 |
+
#: includes/class-freemius.php:17134
|
462 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
463 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
464 |
|
465 |
+
#: includes/class-freemius.php:17185
|
466 |
msgid "Your %s free trial was successfully cancelled."
|
467 |
msgstr "Your %s free trial was successfully cancelled."
|
468 |
|
469 |
+
#: includes/class-freemius.php:17190
|
470 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
471 |
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
472 |
|
473 |
+
#: includes/class-freemius.php:17474
|
474 |
msgid "Version %s was released."
|
475 |
msgstr "Version %s was released."
|
476 |
|
477 |
+
#: includes/class-freemius.php:17474
|
478 |
msgid "Please download %s."
|
479 |
msgstr "Please download %s."
|
480 |
|
481 |
+
#: includes/class-freemius.php:17481
|
482 |
msgid "the latest %s version here"
|
483 |
msgstr "the latest %s version here"
|
484 |
|
485 |
+
#: includes/class-freemius.php:17486
|
486 |
msgid "New"
|
487 |
msgstr "New"
|
488 |
|
489 |
+
#: includes/class-freemius.php:17491
|
490 |
msgid "Seems like you got the latest release."
|
491 |
msgstr "Seems like you got the latest release."
|
492 |
|
493 |
+
#: includes/class-freemius.php:17492
|
494 |
msgid "You are all good!"
|
495 |
msgstr "You are all good!"
|
496 |
|
497 |
+
#: includes/class-freemius.php:17758
|
498 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
499 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
500 |
|
501 |
+
#: includes/class-freemius.php:17893
|
502 |
msgid "Site successfully opted in."
|
503 |
msgstr "Site successfully opted in."
|
504 |
|
505 |
+
#: includes/class-freemius.php:17894, includes/class-freemius.php:18671
|
506 |
msgid "Awesome"
|
507 |
msgstr "Awesome"
|
508 |
|
509 |
+
#: includes/class-freemius.php:17910, templates/forms/optout.php:32
|
510 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
511 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
512 |
|
513 |
+
#: includes/class-freemius.php:17911
|
514 |
msgid "Thank you!"
|
515 |
msgstr "Thank you!"
|
516 |
|
517 |
+
#: includes/class-freemius.php:17918
|
518 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
519 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
520 |
|
521 |
+
#: includes/class-freemius.php:18033
|
522 |
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."
|
523 |
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."
|
524 |
|
525 |
+
#: includes/class-freemius.php:18039
|
526 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
527 |
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
528 |
|
529 |
+
#: includes/class-freemius.php:18044
|
530 |
msgid "%s is the new owner of the account."
|
531 |
msgstr "%s is the new owner of the account."
|
532 |
|
533 |
+
#: includes/class-freemius.php:18046
|
534 |
msgctxt "as congratulations"
|
535 |
msgid "Congrats"
|
536 |
msgstr "Congrats"
|
537 |
|
538 |
+
#: includes/class-freemius.php:18066
|
539 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
540 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
541 |
|
542 |
+
#: includes/class-freemius.php:18067
|
543 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
544 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
545 |
|
546 |
+
#: includes/class-freemius.php:18074
|
547 |
msgid "Change Ownership"
|
548 |
msgstr "Change Ownership"
|
549 |
|
550 |
+
#: includes/class-freemius.php:18082
|
551 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
552 |
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
553 |
|
554 |
+
#: includes/class-freemius.php:18094
|
555 |
msgid "Please provide your full name."
|
556 |
msgstr "Please provide your full name."
|
557 |
|
558 |
+
#: includes/class-freemius.php:18099
|
559 |
msgid "Your name was successfully updated."
|
560 |
msgstr "Your name was successfully updated."
|
561 |
|
562 |
+
#: includes/class-freemius.php:18160
|
563 |
msgid "You have successfully updated your %s."
|
564 |
msgstr "You have successfully updated your %s."
|
565 |
|
566 |
+
#: includes/class-freemius.php:18300
|
567 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
568 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
569 |
|
570 |
+
#: includes/class-freemius.php:18301
|
571 |
msgctxt "advance notice of something that will need attention."
|
572 |
msgid "Heads up"
|
573 |
msgstr "Heads up"
|
574 |
|
575 |
+
#: includes/class-freemius.php:18711
|
576 |
msgctxt "exclamation"
|
577 |
msgid "Hey"
|
578 |
msgstr "Hey"
|
579 |
|
580 |
+
#: includes/class-freemius.php:18711
|
581 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
582 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
583 |
|
584 |
+
#: includes/class-freemius.php:18719
|
585 |
msgid "No commitment for %s days - cancel anytime!"
|
586 |
msgstr "No commitment for %s days - cancel anytime!"
|
587 |
|
588 |
+
#: includes/class-freemius.php:18720
|
589 |
msgid "No credit card required"
|
590 |
msgstr "No credit card required"
|
591 |
|
592 |
+
#: includes/class-freemius.php:18727, templates/forms/trial-start.php:53
|
593 |
msgctxt "call to action"
|
594 |
msgid "Start free trial"
|
595 |
msgstr "Start free trial"
|
596 |
|
597 |
+
#: includes/class-freemius.php:18804
|
598 |
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!"
|
599 |
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!"
|
600 |
|
601 |
+
#: includes/class-freemius.php:18813
|
602 |
msgid "Learn more"
|
603 |
msgstr "Learn more"
|
604 |
|
605 |
+
#: includes/class-freemius.php:18963, templates/account.php:394, templates/account.php:497, templates/connect.php:169, templates/connect.php:408, templates/forms/license-activation.php:24, templates/account/partials/addon.php:230
|
606 |
msgid "Activate License"
|
607 |
msgstr "Activate License"
|
608 |
|
609 |
+
#: includes/class-freemius.php:18964, templates/account.php:457, templates/account.php:496, templates/account/partials/site.php:256
|
610 |
msgid "Change License"
|
611 |
msgstr "Change License"
|
612 |
|
613 |
+
#: includes/class-freemius.php:19046, templates/account/partials/site.php:161
|
614 |
msgid "Opt Out"
|
615 |
msgstr "Opt Out"
|
616 |
|
617 |
+
#: includes/class-freemius.php:19048, includes/class-freemius.php:19053, templates/account/partials/site.php:43, templates/account/partials/site.php:161
|
618 |
msgid "Opt In"
|
619 |
msgstr "Opt In"
|
620 |
|
621 |
+
#: includes/class-freemius.php:19245
|
622 |
msgid "Please follow these steps to complete the upgrade"
|
623 |
msgstr "Please follow these steps to complete the upgrade"
|
624 |
|
625 |
+
#: includes/class-freemius.php:19249
|
626 |
msgid "Download the latest %s version"
|
627 |
msgstr "Download the latest %s version"
|
628 |
|
629 |
+
#: includes/class-freemius.php:19253
|
630 |
msgid "Upload and activate the downloaded version"
|
631 |
msgstr "Upload and activate the downloaded version"
|
632 |
|
633 |
+
#: includes/class-freemius.php:19255
|
634 |
msgid "How to upload and activate?"
|
635 |
msgstr "How to upload and activate?"
|
636 |
|
637 |
+
#: includes/class-freemius.php:19384
|
638 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
639 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
640 |
|
641 |
+
#: includes/class-freemius.php:19545
|
642 |
msgid "Auto installation only works for opted-in users."
|
643 |
msgstr "Auto installation only works for opted-in users."
|
644 |
|
645 |
+
#: includes/class-freemius.php:19555, includes/class-freemius.php:19588, includes/class-fs-plugin-updater.php:713, includes/class-fs-plugin-updater.php:727
|
646 |
msgid "Invalid module ID."
|
647 |
msgstr "Invalid module ID."
|
648 |
|
649 |
+
#: includes/class-freemius.php:19564, includes/class-fs-plugin-updater.php:747
|
650 |
msgid "Premium version already active."
|
651 |
msgstr "Premium version already active."
|
652 |
|
653 |
+
#: includes/class-freemius.php:19571
|
654 |
msgid "You do not have a valid license to access the premium version."
|
655 |
msgstr "You do not have a valid license to access the premium version."
|
656 |
|
657 |
+
#: includes/class-freemius.php:19578
|
658 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
659 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
660 |
|
661 |
+
#: includes/class-freemius.php:19596, includes/class-fs-plugin-updater.php:746
|
662 |
msgid "Premium add-on version already installed."
|
663 |
msgstr "Premium add-on version already installed."
|
664 |
|
665 |
+
#: includes/class-freemius.php:19941
|
666 |
msgid "View paid features"
|
667 |
msgstr "View paid features"
|
668 |
|
669 |
+
#: includes/class-freemius.php:20251
|
670 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
671 |
+
msgstr "Thank you so much for using %s and its add-ons!"
|
672 |
+
|
673 |
+
#: includes/class-freemius.php:20252
|
674 |
+
msgid "Thank you so much for using %s!"
|
675 |
+
msgstr "Thank you so much for using %s!"
|
676 |
+
|
677 |
+
#: includes/class-freemius.php:20258
|
678 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
679 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
680 |
+
|
681 |
+
#: includes/class-freemius.php:20262
|
682 |
+
msgid "Thank you so much for using our products!"
|
683 |
+
msgstr "Thank you so much for using our products!"
|
684 |
+
|
685 |
+
#: includes/class-freemius.php:20263
|
686 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
687 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
688 |
+
|
689 |
+
#: includes/class-freemius.php:20282
|
690 |
+
msgid "%s and its add-ons"
|
691 |
+
msgstr "%s and its add-ons"
|
692 |
|
693 |
+
#: includes/class-freemius.php:20291
|
694 |
+
msgid "Products"
|
695 |
+
msgstr "Products"
|
696 |
+
|
697 |
+
#: includes/class-freemius.php:20298, templates/connect.php:259
|
698 |
+
msgid "Yes"
|
699 |
+
msgstr "Yes"
|
700 |
+
|
701 |
+
#: includes/class-freemius.php:20299, templates/connect.php:260
|
702 |
+
msgid "send me security & feature updates, educational content and offers."
|
703 |
+
msgstr "send me security & feature updates, educational content and offers."
|
704 |
+
|
705 |
+
#: includes/class-freemius.php:20300, templates/connect.php:265
|
706 |
+
msgid "No"
|
707 |
+
msgstr "No"
|
708 |
+
|
709 |
+
#: includes/class-freemius.php:20302, templates/connect.php:267
|
710 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
711 |
+
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
712 |
+
|
713 |
+
#: includes/class-freemius.php:20312
|
714 |
+
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 🙂"
|
715 |
+
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 🙂"
|
716 |
+
|
717 |
+
#: includes/class-freemius.php:20314, templates/connect.php:274
|
718 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
719 |
+
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
720 |
+
|
721 |
+
#: includes/class-freemius.php:20598
|
722 |
+
msgid "License key is empty."
|
723 |
+
msgstr "License key is empty."
|
724 |
+
|
725 |
+
#: includes/class-fs-plugin-updater.php:184, includes/class-fs-plugin-updater.php:219
|
726 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
727 |
+
msgstr "%sRenew your license now%s to access version %s security & feature updates, and support."
|
728 |
+
|
729 |
+
#: includes/class-fs-plugin-updater.php:776
|
730 |
msgid "Installing plugin: %s"
|
731 |
msgstr "Installing plugin: %s"
|
732 |
|
733 |
+
#: includes/class-fs-plugin-updater.php:817
|
734 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
735 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
736 |
|
737 |
+
#: includes/class-fs-plugin-updater.php:923
|
738 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
739 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
740 |
|
741 |
+
#: includes/fs-plugin-info-dialog.php:336, templates/account/partials/addon.php:287
|
742 |
msgctxt "verb"
|
743 |
msgid "Purchase"
|
744 |
msgstr "Purchase"
|
745 |
|
746 |
+
#: includes/fs-plugin-info-dialog.php:339
|
747 |
msgid "Start my free %s"
|
748 |
msgstr "Start my free %s"
|
749 |
|
750 |
+
#: includes/fs-plugin-info-dialog.php:380
|
751 |
+
msgid "Install Free Version Now"
|
752 |
+
msgstr "Install Free Version Now"
|
753 |
+
|
754 |
+
#: includes/fs-plugin-info-dialog.php:381, templates/auto-installation.php:111, templates/account/partials/addon.php:267, templates/account/partials/addon.php:317
|
755 |
+
msgid "Install Now"
|
756 |
+
msgstr "Install Now"
|
757 |
+
|
758 |
+
#: includes/fs-plugin-info-dialog.php:392
|
759 |
+
msgctxt "as download latest version"
|
760 |
+
msgid "Download Latest Free Version"
|
761 |
+
msgstr "Download Latest Free Version"
|
762 |
+
|
763 |
+
#: includes/fs-plugin-info-dialog.php:393, templates/account.php:80, templates/account/partials/addon.php:21
|
764 |
msgctxt "as download latest version"
|
765 |
msgid "Download Latest"
|
766 |
msgstr "Download Latest"
|
767 |
|
768 |
+
#: includes/fs-plugin-info-dialog.php:403
|
769 |
+
msgid "Install Free Version Update Now"
|
770 |
+
msgstr "Install Free Version Update Now"
|
771 |
|
772 |
+
#: includes/fs-plugin-info-dialog.php:404, templates/account.php:448
|
773 |
msgid "Install Update Now"
|
774 |
msgstr "Install Update Now"
|
775 |
|
776 |
+
#: includes/fs-plugin-info-dialog.php:415
|
777 |
+
msgid "Newer Free Version (%s) Installed"
|
778 |
+
msgstr "Newer Free Version (%s) Installed"
|
779 |
+
|
780 |
+
#: includes/fs-plugin-info-dialog.php:416
|
781 |
msgid "Newer Version (%s) Installed"
|
782 |
msgstr "Newer Version (%s) Installed"
|
783 |
|
784 |
+
#: includes/fs-plugin-info-dialog.php:424
|
785 |
+
msgid "Latest Free Version Installed"
|
786 |
+
msgstr "Latest Free Version Installed"
|
787 |
+
|
788 |
+
#: includes/fs-plugin-info-dialog.php:425
|
789 |
msgid "Latest Version Installed"
|
790 |
msgstr "Latest Version Installed"
|
791 |
|
792 |
+
#: includes/fs-plugin-info-dialog.php:580
|
793 |
msgctxt "Plugin installer section title"
|
794 |
msgid "Description"
|
795 |
msgstr "Description"
|
796 |
|
797 |
+
#: includes/fs-plugin-info-dialog.php:581
|
798 |
msgctxt "Plugin installer section title"
|
799 |
msgid "Installation"
|
800 |
msgstr "Installation"
|
801 |
|
802 |
+
#: includes/fs-plugin-info-dialog.php:582
|
803 |
msgctxt "Plugin installer section title"
|
804 |
msgid "FAQ"
|
805 |
msgstr "FAQ"
|
806 |
|
807 |
+
#: includes/fs-plugin-info-dialog.php:583, templates/plugin-info/description.php:55
|
808 |
msgid "Screenshots"
|
809 |
msgstr "Screenshots"
|
810 |
|
811 |
+
#: includes/fs-plugin-info-dialog.php:584
|
812 |
msgctxt "Plugin installer section title"
|
813 |
msgid "Changelog"
|
814 |
msgstr "Changelog"
|
815 |
|
816 |
+
#: includes/fs-plugin-info-dialog.php:585
|
817 |
msgctxt "Plugin installer section title"
|
818 |
msgid "Reviews"
|
819 |
msgstr "Reviews"
|
820 |
|
821 |
+
#: includes/fs-plugin-info-dialog.php:586
|
822 |
msgctxt "Plugin installer section title"
|
823 |
msgid "Other Notes"
|
824 |
msgstr "Other Notes"
|
825 |
|
826 |
+
#: includes/fs-plugin-info-dialog.php:601
|
827 |
msgctxt "Plugin installer section title"
|
828 |
msgid "Features & Pricing"
|
829 |
msgstr "Features & Pricing"
|
830 |
|
831 |
+
#: includes/fs-plugin-info-dialog.php:611
|
832 |
msgid "Plugin Install"
|
833 |
msgstr "Plugin Install"
|
834 |
|
835 |
+
#: includes/fs-plugin-info-dialog.php:683
|
836 |
msgctxt "e.g. Professional Plan"
|
837 |
msgid "%s Plan"
|
838 |
msgstr "%s Plan"
|
839 |
|
840 |
+
#: includes/fs-plugin-info-dialog.php:709
|
841 |
msgctxt "e.g. the best product"
|
842 |
msgid "Best"
|
843 |
msgstr "Best"
|
844 |
|
845 |
+
#: includes/fs-plugin-info-dialog.php:715, includes/fs-plugin-info-dialog.php:735
|
846 |
msgctxt "as every month"
|
847 |
msgid "Monthly"
|
848 |
msgstr "Monthly"
|
849 |
|
850 |
+
#: includes/fs-plugin-info-dialog.php:718
|
851 |
msgctxt "as once a year"
|
852 |
msgid "Annual"
|
853 |
msgstr "Annual"
|
854 |
|
855 |
+
#: includes/fs-plugin-info-dialog.php:721
|
856 |
msgid "Lifetime"
|
857 |
msgstr "Lifetime"
|
858 |
|
859 |
+
#: includes/fs-plugin-info-dialog.php:735, includes/fs-plugin-info-dialog.php:737, includes/fs-plugin-info-dialog.php:739
|
860 |
msgctxt "e.g. billed monthly"
|
861 |
msgid "Billed %s"
|
862 |
msgstr "Billed %s"
|
863 |
|
864 |
+
#: includes/fs-plugin-info-dialog.php:737
|
865 |
msgctxt "as once a year"
|
866 |
msgid "Annually"
|
867 |
msgstr "Annually"
|
868 |
|
869 |
+
#: includes/fs-plugin-info-dialog.php:739
|
870 |
msgctxt "as once a year"
|
871 |
msgid "Once"
|
872 |
msgstr "Once"
|
873 |
|
874 |
+
#: includes/fs-plugin-info-dialog.php:745
|
875 |
msgid "Single Site License"
|
876 |
msgstr "Single Site License"
|
877 |
|
878 |
+
#: includes/fs-plugin-info-dialog.php:747
|
879 |
msgid "Unlimited Licenses"
|
880 |
msgstr "Unlimited Licenses"
|
881 |
|
882 |
+
#: includes/fs-plugin-info-dialog.php:749
|
883 |
msgid "Up to %s Sites"
|
884 |
msgstr "Up to %s Sites"
|
885 |
|
886 |
+
#: includes/fs-plugin-info-dialog.php:759, templates/plugin-info/features.php:82
|
887 |
msgctxt "as monthly period"
|
888 |
msgid "mo"
|
889 |
msgstr "mo"
|
890 |
|
891 |
+
#: includes/fs-plugin-info-dialog.php:766, templates/plugin-info/features.php:80
|
892 |
msgctxt "as annual period"
|
893 |
msgid "year"
|
894 |
msgstr "year"
|
895 |
|
896 |
+
#: includes/fs-plugin-info-dialog.php:820
|
897 |
msgctxt "noun"
|
898 |
msgid "Price"
|
899 |
msgstr "Price"
|
900 |
|
901 |
+
#: includes/fs-plugin-info-dialog.php:868
|
902 |
msgid "Save %s"
|
903 |
msgstr "Save %s"
|
904 |
|
905 |
+
#: includes/fs-plugin-info-dialog.php:878
|
906 |
msgid "No commitment for %s - cancel anytime"
|
907 |
msgstr "No commitment for %s - cancel anytime"
|
908 |
|
909 |
+
#: includes/fs-plugin-info-dialog.php:881
|
910 |
msgid "After your free %s, pay as little as %s"
|
911 |
msgstr "After your free %s, pay as little as %s"
|
912 |
|
913 |
+
#: includes/fs-plugin-info-dialog.php:892
|
914 |
msgid "Details"
|
915 |
msgstr "Details"
|
916 |
|
917 |
+
#: includes/fs-plugin-info-dialog.php:896, templates/account.php:87, templates/debug.php:191, templates/debug.php:228, templates/debug.php:442, templates/account/partials/addon.php:28
|
918 |
msgctxt "product version"
|
919 |
msgid "Version"
|
920 |
msgstr "Version"
|
921 |
|
922 |
+
#: includes/fs-plugin-info-dialog.php:903
|
923 |
msgctxt "as the plugin author"
|
924 |
msgid "Author"
|
925 |
msgstr "Author"
|
926 |
|
927 |
+
#: includes/fs-plugin-info-dialog.php:910
|
928 |
msgid "Last Updated"
|
929 |
msgstr "Last Updated"
|
930 |
|
931 |
+
#: includes/fs-plugin-info-dialog.php:915
|
932 |
msgctxt "x-ago"
|
933 |
msgid "%s ago"
|
934 |
msgstr "%s ago"
|
935 |
|
936 |
+
#: includes/fs-plugin-info-dialog.php:924
|
937 |
msgid "Requires WordPress Version"
|
938 |
msgstr "Requires WordPress Version"
|
939 |
|
940 |
+
#: includes/fs-plugin-info-dialog.php:925
|
941 |
msgid "%s or higher"
|
942 |
msgstr "%s or higher"
|
943 |
|
944 |
+
#: includes/fs-plugin-info-dialog.php:932
|
945 |
msgid "Compatible up to"
|
946 |
msgstr "Compatible up to"
|
947 |
|
948 |
+
#: includes/fs-plugin-info-dialog.php:940
|
949 |
msgid "Downloaded"
|
950 |
msgstr "Downloaded"
|
951 |
|
952 |
+
#: includes/fs-plugin-info-dialog.php:944
|
953 |
msgid "%s time"
|
954 |
msgstr "%s time"
|
955 |
|
956 |
+
#: includes/fs-plugin-info-dialog.php:946
|
957 |
msgid "%s times"
|
958 |
msgstr "%s times"
|
959 |
|
960 |
+
#: includes/fs-plugin-info-dialog.php:956
|
961 |
msgid "WordPress.org Plugin Page"
|
962 |
msgstr "WordPress.org Plugin Page"
|
963 |
|
964 |
+
#: includes/fs-plugin-info-dialog.php:964
|
965 |
msgid "Plugin Homepage"
|
966 |
msgstr "Plugin Homepage"
|
967 |
|
968 |
+
#: includes/fs-plugin-info-dialog.php:972, includes/fs-plugin-info-dialog.php:1054
|
969 |
msgid "Donate to this plugin"
|
970 |
msgstr "Donate to this plugin"
|
971 |
|
972 |
+
#: includes/fs-plugin-info-dialog.php:979
|
973 |
msgid "Average Rating"
|
974 |
msgstr "Average Rating"
|
975 |
|
976 |
+
#: includes/fs-plugin-info-dialog.php:986
|
977 |
msgid "based on %s"
|
978 |
msgstr "based on %s"
|
979 |
|
980 |
+
#: includes/fs-plugin-info-dialog.php:990
|
981 |
msgid "%s rating"
|
982 |
msgstr "%s rating"
|
983 |
|
984 |
+
#: includes/fs-plugin-info-dialog.php:992
|
985 |
msgid "%s ratings"
|
986 |
msgstr "%s ratings"
|
987 |
|
988 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
989 |
msgid "%s star"
|
990 |
msgstr "%s star"
|
991 |
|
992 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
993 |
msgid "%s stars"
|
994 |
msgstr "%s stars"
|
995 |
|
996 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
997 |
msgid "Click to see reviews that provided a rating of %s"
|
998 |
msgstr "Click to see reviews that provided a rating of %s"
|
999 |
|
1000 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1001 |
msgid "Contributors"
|
1002 |
msgstr "Contributors"
|
1003 |
|
1004 |
+
#: includes/fs-plugin-info-dialog.php:1062, includes/fs-plugin-info-dialog.php:1064
|
1005 |
msgid "Warning"
|
1006 |
msgstr "Warning"
|
1007 |
|
1008 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1009 |
msgid "This plugin has not been tested with your current version of WordPress."
|
1010 |
msgstr "This plugin has not been tested with your current version of WordPress."
|
1011 |
|
1012 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1013 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1014 |
msgstr "This plugin has not been marked as compatible with your version of WordPress."
|
1015 |
|
1016 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1017 |
msgid "Paid add-on must be deployed to Freemius."
|
1018 |
msgstr "Paid add-on must be deployed to Freemius."
|
1019 |
|
1020 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1021 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1022 |
msgstr "Add-on must be deployed to WordPress.org or Freemius."
|
1023 |
|
1024 |
+
#: templates/account.php:81, templates/account/partials/addon.php:22, templates/account/partials/site.php:295
|
1025 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1026 |
msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1027 |
|
1028 |
+
#: templates/account.php:82, templates/account/partials/addon.php:23
|
1029 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1030 |
msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1031 |
|
1032 |
+
#: templates/account.php:83, templates/account/partials/addon.php:24, templates/account/partials/site.php:296
|
1033 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1034 |
msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1035 |
|
1036 |
+
#: templates/account.php:84, templates/account/partials/addon.php:25, templates/account/partials/site.php:297
|
1037 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1038 |
msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1039 |
|
1040 |
#. translators: %s: Plan title (e.g. "Professional")
|
1041 |
+
#: templates/account.php:86, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:27
|
1042 |
msgid "Activate %s Plan"
|
1043 |
msgstr "Activate %s Plan"
|
1044 |
|
1045 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1046 |
+
#: templates/account.php:89, templates/account/partials/addon.php:30, templates/account/partials/site.php:275
|
1047 |
msgid "Auto renews in %s"
|
1048 |
msgstr "Auto renews in %s"
|
1049 |
|
1050 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1051 |
+
#: templates/account.php:91, templates/account/partials/addon.php:32, templates/account/partials/site.php:277
|
1052 |
msgid "Expires in %s"
|
1053 |
msgstr "Expires in %s"
|
1054 |
|
1055 |
+
#: templates/account.php:92, templates/account/partials/addon.php:33
|
1056 |
msgctxt "as synchronize license"
|
1057 |
msgid "Sync License"
|
1058 |
msgstr "Sync License"
|
1059 |
|
1060 |
+
#: templates/account.php:93, templates/account/partials/addon.php:34
|
1061 |
msgid "Cancel Trial"
|
1062 |
msgstr "Cancel Trial"
|
1063 |
|
1064 |
+
#: templates/account.php:94, templates/account/partials/addon.php:35
|
1065 |
msgid "Change Plan"
|
1066 |
msgstr "Change Plan"
|
1067 |
|
1068 |
+
#: templates/account.php:95, templates/account/partials/addon.php:36
|
1069 |
msgctxt "verb"
|
1070 |
msgid "Upgrade"
|
1071 |
msgstr "Upgrade"
|
1072 |
|
1073 |
+
#: templates/account.php:97, templates/account/partials/addon.php:38, templates/account/partials/site.php:298
|
1074 |
msgctxt "verb"
|
1075 |
msgid "Downgrade"
|
1076 |
msgstr "Downgrade"
|
1077 |
|
1078 |
+
#: templates/account.php:99, templates/add-ons.php:126, templates/plugin-info/features.php:72, templates/account/partials/addon.php:40, templates/account/partials/site.php:31
|
1079 |
msgid "Free"
|
1080 |
msgstr "Free"
|
1081 |
|
1082 |
+
#: templates/account.php:100, templates/account/partials/addon.php:41
|
1083 |
msgid "Activate"
|
1084 |
msgstr "Activate"
|
1085 |
|
1086 |
+
#: templates/account.php:101, templates/debug.php:361, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:42
|
1087 |
msgctxt "as product pricing plan"
|
1088 |
msgid "Plan"
|
1089 |
msgstr "Plan"
|
1090 |
|
1091 |
+
#: templates/account.php:154
|
1092 |
msgid "Free Trial"
|
1093 |
msgstr "Free Trial"
|
1094 |
|
1095 |
+
#: templates/account.php:165
|
1096 |
msgid "Account Details"
|
1097 |
msgstr "Account Details"
|
1098 |
|
1099 |
+
#: templates/account.php:175
|
1100 |
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?"
|
1101 |
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?"
|
1102 |
|
1103 |
+
#: templates/account.php:177
|
1104 |
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?"
|
1105 |
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?"
|
1106 |
|
1107 |
+
#: templates/account.php:180
|
1108 |
msgid "Delete Account"
|
1109 |
msgstr "Delete Account"
|
1110 |
|
1111 |
+
#: templates/account.php:192, templates/account/partials/addon.php:155, templates/account/partials/deactivate-license-button.php:35
|
1112 |
msgid "Deactivate License"
|
1113 |
msgstr "Deactivate License"
|
1114 |
|
1115 |
+
#: templates/account.php:210
|
1116 |
msgid "Are you sure you want to proceed?"
|
1117 |
msgstr "Are you sure you want to proceed?"
|
1118 |
|
1119 |
+
#: templates/account.php:210, templates/account/partials/addon.php:177
|
1120 |
msgid "Cancel Subscription"
|
1121 |
msgstr "Cancel Subscription"
|
1122 |
|
1123 |
+
#: templates/account.php:239
|
1124 |
msgctxt "as synchronize"
|
1125 |
msgid "Sync"
|
1126 |
msgstr "Sync"
|
1127 |
|
1128 |
+
#: templates/account.php:253, templates/debug.php:477
|
1129 |
msgid "Name"
|
1130 |
msgstr "Name"
|
1131 |
|
1132 |
+
#: templates/account.php:259, templates/debug.php:478
|
1133 |
msgid "Email"
|
1134 |
msgstr "Email"
|
1135 |
|
1136 |
+
#: templates/account.php:266, templates/debug.php:360, templates/debug.php:516
|
1137 |
msgid "User ID"
|
1138 |
msgstr "User ID"
|
1139 |
|
1140 |
+
#: templates/account.php:274
|
1141 |
msgid "Site ID"
|
1142 |
msgstr "Site ID"
|
1143 |
|
1144 |
+
#: templates/account.php:277
|
1145 |
msgid "No ID"
|
1146 |
msgstr "No ID"
|
1147 |
|
1148 |
+
#: templates/account.php:282, templates/debug.php:233, templates/debug.php:362, templates/debug.php:443, templates/debug.php:480, templates/account/partials/site.php:219
|
1149 |
msgid "Public Key"
|
1150 |
msgstr "Public Key"
|
1151 |
|
1152 |
+
#: templates/account.php:288, templates/debug.php:363, templates/debug.php:444, templates/debug.php:481, templates/account/partials/site.php:231
|
1153 |
msgid "Secret Key"
|
1154 |
msgstr "Secret Key"
|
1155 |
|
1156 |
+
#: templates/account.php:291
|
1157 |
msgctxt "as secret encryption key missing"
|
1158 |
msgid "No Secret"
|
1159 |
msgstr "No Secret"
|
1160 |
|
1161 |
+
#: templates/account.php:310, templates/account/partials/site.php:112, templates/account/partials/site.php:114
|
1162 |
msgid "Trial"
|
1163 |
msgstr "Trial"
|
1164 |
|
1165 |
+
#: templates/account.php:329, templates/debug.php:521, templates/account/partials/site.php:248
|
1166 |
msgid "License Key"
|
1167 |
msgstr "License Key"
|
1168 |
|
1169 |
+
#: templates/account.php:359
|
1170 |
msgid "not verified"
|
1171 |
msgstr "not verified"
|
1172 |
|
1173 |
+
#: templates/account.php:416
|
1174 |
msgid "Premium version"
|
1175 |
msgstr "Premium version"
|
1176 |
|
1177 |
+
#: templates/account.php:418
|
1178 |
msgid "Free version"
|
1179 |
msgstr "Free version"
|
1180 |
|
1181 |
+
#: templates/account.php:430
|
1182 |
msgid "Verify Email"
|
1183 |
msgstr "Verify Email"
|
1184 |
|
1185 |
+
#: templates/account.php:441
|
1186 |
msgid "Download %s Version"
|
1187 |
msgstr "Download %s Version"
|
1188 |
|
1189 |
+
#: templates/account.php:455, templates/account.php:636, templates/account/partials/site.php:237, templates/account/partials/site.php:255
|
1190 |
msgctxt "verb"
|
1191 |
msgid "Show"
|
1192 |
msgstr "Show"
|
1193 |
|
1194 |
+
#: templates/account.php:469
|
1195 |
msgid "What is your %s?"
|
1196 |
msgstr "What is your %s?"
|
1197 |
|
1198 |
+
#: templates/account.php:477, templates/account/billing.php:27
|
1199 |
msgctxt "verb"
|
1200 |
msgid "Edit"
|
1201 |
msgstr "Edit"
|
1202 |
|
1203 |
+
#: templates/account.php:490
|
1204 |
msgid "Sites"
|
1205 |
msgstr "Sites"
|
1206 |
|
1207 |
+
#: templates/account.php:501
|
1208 |
msgid "Search by address"
|
1209 |
msgstr "Search by address"
|
1210 |
|
1211 |
+
#: templates/account.php:510, templates/account.php:558, templates/debug.php:226, templates/debug.php:354, templates/debug.php:439, templates/debug.php:476, templates/debug.php:514, templates/debug.php:587, templates/account/payments.php:35, templates/debug/logger.php:21
|
1212 |
msgid "ID"
|
1213 |
msgstr "ID"
|
1214 |
|
1215 |
+
#: templates/account.php:511, templates/debug.php:357
|
1216 |
msgid "Address"
|
1217 |
msgstr "Address"
|
1218 |
|
1219 |
+
#: templates/account.php:512
|
1220 |
msgid "License"
|
1221 |
msgstr "License"
|
1222 |
|
1223 |
+
#: templates/account.php:513
|
1224 |
msgid "Plan"
|
1225 |
msgstr "Plan"
|
1226 |
|
1227 |
+
#: templates/account.php:561
|
1228 |
msgctxt "as software license"
|
1229 |
msgid "License"
|
1230 |
msgstr "License"
|
1231 |
|
1232 |
+
#: templates/account.php:630
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1233 |
msgctxt "verb"
|
1234 |
msgid "Hide"
|
1235 |
msgstr "Hide"
|
1236 |
|
1237 |
+
#: templates/account.php:665
|
1238 |
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?"
|
1239 |
msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1240 |
|
1289 |
msgid "Hey %s,"
|
1290 |
msgstr "Hey %s,"
|
1291 |
|
1292 |
+
#: templates/connect.php:152
|
1293 |
msgid "Allow & Continue"
|
1294 |
msgstr "Allow & Continue"
|
1295 |
|
1296 |
+
#: templates/connect.php:156
|
1297 |
msgid "Re-send activation email"
|
1298 |
msgstr "Re-send activation email"
|
1299 |
|
1300 |
+
#: templates/connect.php:160
|
1301 |
msgid "Thanks %s!"
|
1302 |
msgstr "Thanks %s!"
|
1303 |
|
1304 |
+
#: templates/connect.php:170, templates/forms/license-activation.php:43
|
1305 |
msgid "Agree & Activate License"
|
1306 |
msgstr "Agree & Activate License"
|
1307 |
|
1308 |
+
#: templates/connect.php:179
|
1309 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1310 |
msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
|
1311 |
|
1312 |
+
#: templates/connect.php:186
|
1313 |
+
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."
|
1314 |
+
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."
|
1315 |
+
|
1316 |
+
#: templates/connect.php:187
|
1317 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1318 |
msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1319 |
|
1320 |
+
#: templates/connect.php:193
|
1321 |
+
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."
|
1322 |
+
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."
|
1323 |
|
1324 |
+
#: templates/connect.php:194
|
1325 |
+
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."
|
1326 |
+
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."
|
1327 |
+
|
1328 |
+
#: templates/connect.php:228
|
1329 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1330 |
msgstr "We're excited to introduce the Freemius network-level integration."
|
1331 |
|
1332 |
+
#: templates/connect.php:231
|
1333 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1334 |
msgstr "During the update process we detected %d site(s) that are still pending license activation."
|
1335 |
|
1336 |
+
#: templates/connect.php:233
|
1337 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1338 |
msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1339 |
|
1340 |
+
#: templates/connect.php:235
|
1341 |
msgid "%s's paid features"
|
1342 |
msgstr "%s's paid features"
|
1343 |
|
1344 |
+
#: templates/connect.php:240
|
1345 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1346 |
msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1347 |
|
1348 |
+
#: templates/connect.php:242
|
1349 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1350 |
msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1351 |
|
1352 |
+
#: templates/connect.php:251, templates/forms/license-activation.php:46
|
1353 |
msgid "License key"
|
1354 |
msgstr "License key"
|
1355 |
|
1356 |
+
#: templates/connect.php:254, templates/forms/license-activation.php:19
|
1357 |
msgid "Can't find your license key?"
|
1358 |
msgstr "Can't find your license key?"
|
1359 |
|
1360 |
+
#: templates/connect.php:302, templates/connect.php:617, templates/forms/deactivation/retry-skip.php:20
|
1361 |
msgctxt "verb"
|
1362 |
msgid "Skip"
|
1363 |
msgstr "Skip"
|
1364 |
|
1365 |
+
#: templates/connect.php:305
|
1366 |
msgid "Delegate to Site Admins"
|
1367 |
msgstr "Delegate to Site Admins"
|
1368 |
|
1369 |
+
#: templates/connect.php:305
|
1370 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1371 |
msgstr "If you click it, this decision will be delegated to the sites administrators."
|
1372 |
|
1373 |
+
#: templates/connect.php:333
|
1374 |
msgid "Your Profile Overview"
|
1375 |
msgstr "Your Profile Overview"
|
1376 |
|
1377 |
+
#: templates/connect.php:334
|
1378 |
msgid "Name and email address"
|
1379 |
msgstr "Name and email address"
|
1380 |
|
1381 |
+
#: templates/connect.php:339
|
1382 |
msgid "Your Site Overview"
|
1383 |
msgstr "Your Site Overview"
|
1384 |
|
1385 |
+
#: templates/connect.php:340
|
1386 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1387 |
msgstr "Site URL, WP version, PHP info, plugins & themes"
|
1388 |
|
1389 |
+
#: templates/connect.php:345
|
1390 |
msgid "Admin Notices"
|
1391 |
msgstr "Admin Notices"
|
1392 |
|
1393 |
+
#: templates/connect.php:346, templates/connect.php:362
|
1394 |
msgid "Updates, announcements, marketing, no spam"
|
1395 |
msgstr "Updates, announcements, marketing, no spam"
|
1396 |
|
1397 |
+
#: templates/connect.php:351
|
1398 |
msgid "Current %s Events"
|
1399 |
msgstr "Current %s Events"
|
1400 |
|
1401 |
+
#: templates/connect.php:352
|
1402 |
msgid "Activation, deactivation and uninstall"
|
1403 |
msgstr "Activation, deactivation and uninstall"
|
1404 |
|
1405 |
+
#: templates/connect.php:361
|
1406 |
msgid "Newsletter"
|
1407 |
msgstr "Newsletter"
|
1408 |
|
1409 |
+
#: templates/connect.php:378, templates/forms/license-activation.php:38
|
1410 |
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."
|
1411 |
msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1412 |
|
1413 |
+
#: templates/connect.php:383
|
1414 |
msgid "What permissions are being granted?"
|
1415 |
msgstr "What permissions are being granted?"
|
1416 |
|
1417 |
+
#: templates/connect.php:404
|
1418 |
msgid "Don't have a license key?"
|
1419 |
msgstr "Don't have a license key?"
|
1420 |
|
1421 |
+
#: templates/connect.php:405
|
1422 |
msgid "Activate Free Version"
|
1423 |
msgstr "Activate Free Version"
|
1424 |
|
1425 |
+
#: templates/connect.php:407
|
1426 |
msgid "Have a license key?"
|
1427 |
msgstr "Have a license key?"
|
1428 |
|
1429 |
+
#: templates/connect.php:415
|
1430 |
msgid "Privacy Policy"
|
1431 |
msgstr "Privacy Policy"
|
1432 |
|
1433 |
+
#: templates/connect.php:417
|
1434 |
msgid "Terms of Service"
|
1435 |
msgstr "Terms of Service"
|
1436 |
|
1437 |
+
#: templates/connect.php:750
|
1438 |
msgctxt "as in the process of sending an email"
|
1439 |
msgid "Sending email"
|
1440 |
msgstr "Sending email"
|
1441 |
|
1442 |
+
#: templates/connect.php:751
|
1443 |
msgctxt "as activating plugin"
|
1444 |
msgid "Activating"
|
1445 |
msgstr "Activating"
|
1467 |
msgid "Debugging"
|
1468 |
msgstr "Debugging"
|
1469 |
|
1470 |
+
#: templates/debug.php:54, templates/debug.php:238, templates/debug.php:364, templates/debug.php:482
|
1471 |
msgid "Actions"
|
1472 |
msgstr "Actions"
|
1473 |
|
1532 |
msgid "Themes"
|
1533 |
msgstr "Themes"
|
1534 |
|
1535 |
+
#: templates/debug.php:227, templates/debug.php:359, templates/debug.php:441, templates/debug/scheduled-crons.php:80
|
1536 |
msgid "Slug"
|
1537 |
msgstr "Slug"
|
1538 |
|
1539 |
+
#: templates/debug.php:229, templates/debug.php:440
|
1540 |
msgid "Title"
|
1541 |
msgstr "Title"
|
1542 |
|
1557 |
msgid "Network User"
|
1558 |
msgstr "Network User"
|
1559 |
|
1560 |
+
#: templates/debug.php:273
|
1561 |
msgctxt "as connection was successful"
|
1562 |
msgid "Connected"
|
1563 |
msgstr "Connected"
|
1564 |
|
1565 |
+
#: templates/debug.php:274
|
1566 |
msgctxt "as connection blocked"
|
1567 |
msgid "Blocked"
|
1568 |
msgstr "Blocked"
|
1569 |
|
1570 |
+
#: templates/debug.php:310
|
1571 |
msgid "Simulate Trial"
|
1572 |
msgstr "Simulate Trial"
|
1573 |
|
1574 |
+
#: templates/debug.php:322
|
1575 |
msgid "Simulate Network Upgrade"
|
1576 |
msgstr "Simulate Network Upgrade"
|
1577 |
|
1578 |
+
#: templates/debug.php:348
|
1579 |
msgid "%s Installs"
|
1580 |
msgstr "%s Installs"
|
1581 |
|
1582 |
+
#: templates/debug.php:350
|
1583 |
msgctxt "like websites"
|
1584 |
msgid "Sites"
|
1585 |
msgstr "Sites"
|
1586 |
|
1587 |
+
#: templates/debug.php:356, templates/account/partials/site.php:148
|
1588 |
msgid "Blog ID"
|
1589 |
msgstr "Blog ID"
|
1590 |
|
1591 |
+
#: templates/debug.php:421, templates/debug.php:499, templates/account/partials/addon.php:334
|
1592 |
+
msgctxt "verb"
|
1593 |
+
msgid "Delete"
|
1594 |
+
msgstr "Delete"
|
1595 |
+
|
1596 |
+
#: templates/debug.php:435
|
1597 |
msgid "Add Ons of module %s"
|
1598 |
msgstr "Add Ons of module %s"
|
1599 |
|
1600 |
+
#: templates/debug.php:472
|
1601 |
msgid "Users"
|
1602 |
msgstr "Users"
|
1603 |
|
1604 |
+
#: templates/debug.php:479
|
1605 |
msgid "Verified"
|
1606 |
msgstr "Verified"
|
1607 |
|
1608 |
+
#: templates/debug.php:510
|
1609 |
msgid "%s Licenses"
|
1610 |
msgstr "%s Licenses"
|
1611 |
|
1612 |
+
#: templates/debug.php:515
|
1613 |
msgid "Plugin ID"
|
1614 |
msgstr "Plugin ID"
|
1615 |
|
1616 |
+
#: templates/debug.php:517
|
1617 |
msgid "Plan ID"
|
1618 |
msgstr "Plan ID"
|
1619 |
|
1620 |
+
#: templates/debug.php:518
|
1621 |
msgid "Quota"
|
1622 |
msgstr "Quota"
|
1623 |
|
1624 |
+
#: templates/debug.php:519
|
1625 |
msgid "Activated"
|
1626 |
msgstr "Activated"
|
1627 |
|
1628 |
+
#: templates/debug.php:520
|
1629 |
msgid "Blocking"
|
1630 |
msgstr "Blocking"
|
1631 |
|
1632 |
+
#: templates/debug.php:522
|
1633 |
msgctxt "as expiration date"
|
1634 |
msgid "Expiration"
|
1635 |
msgstr "Expiration"
|
1636 |
|
1637 |
+
#: templates/debug.php:545
|
1638 |
msgid "Debug Log"
|
1639 |
msgstr "Debug Log"
|
1640 |
|
1641 |
+
#: templates/debug.php:549
|
1642 |
msgid "All Types"
|
1643 |
msgstr "All Types"
|
1644 |
|
1645 |
+
#: templates/debug.php:556
|
1646 |
msgid "All Requests"
|
1647 |
msgstr "All Requests"
|
1648 |
|
1649 |
+
#: templates/debug.php:561, templates/debug.php:590, templates/debug/logger.php:25
|
1650 |
msgid "File"
|
1651 |
msgstr "File"
|
1652 |
|
1653 |
+
#: templates/debug.php:562, templates/debug.php:588, templates/debug/logger.php:23
|
1654 |
msgid "Function"
|
1655 |
msgstr "Function"
|
1656 |
|
1657 |
+
#: templates/debug.php:563
|
1658 |
msgid "Process ID"
|
1659 |
msgstr "Process ID"
|
1660 |
|
1661 |
+
#: templates/debug.php:564
|
1662 |
msgid "Logger"
|
1663 |
msgstr "Logger"
|
1664 |
|
1665 |
+
#: templates/debug.php:565, templates/debug.php:589, templates/debug/logger.php:24
|
1666 |
msgid "Message"
|
1667 |
msgstr "Message"
|
1668 |
|
1669 |
+
#: templates/debug.php:567
|
1670 |
msgid "Filter"
|
1671 |
msgstr "Filter"
|
1672 |
|
1673 |
+
#: templates/debug.php:575
|
1674 |
msgid "Download"
|
1675 |
msgstr "Download"
|
1676 |
|
1677 |
+
#: templates/debug.php:586, templates/debug/logger.php:22
|
1678 |
msgid "Type"
|
1679 |
msgstr "Type"
|
1680 |
|
1681 |
+
#: templates/debug.php:591, templates/debug/logger.php:26
|
1682 |
msgid "Timestamp"
|
1683 |
msgstr "Timestamp"
|
1684 |
|
2022 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2023 |
msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2024 |
|
2025 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2026 |
+
msgid "There is a new version of %s available."
|
2027 |
+
msgstr "There is a new version of %s available."
|
2028 |
+
|
2029 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2030 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2031 |
+
msgstr " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2032 |
+
|
2033 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2034 |
+
msgid "New Version Available"
|
2035 |
+
msgstr "New Version Available"
|
2036 |
+
|
2037 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2038 |
+
msgid "Renew license"
|
2039 |
+
msgstr "Renew license"
|
2040 |
+
|
2041 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2042 |
+
msgctxt "close a window"
|
2043 |
+
msgid "Dismiss"
|
2044 |
+
msgstr "Dismiss"
|
2045 |
+
|
2046 |
#: templates/forms/resend-key.php:21
|
2047 |
msgid "Send License Key"
|
2048 |
msgstr "Send License Key"
|
2112 |
msgid "Last license"
|
2113 |
msgstr "Last license"
|
2114 |
|
2115 |
+
#: templates/account/partials/addon.php:111
|
2116 |
+
msgid "Cancelled"
|
2117 |
+
msgstr "Cancelled"
|
2118 |
+
|
2119 |
+
#: templates/account/partials/addon.php:116
|
2120 |
+
msgid "Expired"
|
2121 |
+
msgstr "Expired"
|
2122 |
+
|
2123 |
+
#: templates/account/partials/addon.php:121
|
2124 |
+
msgid "No expiration"
|
2125 |
+
msgstr "No expiration"
|
2126 |
+
|
2127 |
+
#: templates/account/partials/addon.php:259, templates/account/partials/addon.php:312
|
2128 |
+
msgid "Activate this add-on"
|
2129 |
+
msgstr "Activate this add-on"
|
2130 |
+
|
2131 |
#: templates/account/partials/site.php:181
|
2132 |
msgid "Owner Name"
|
2133 |
msgstr "Owner Name"
|
2180 |
msgid "switching"
|
2181 |
msgstr "switching"
|
2182 |
|
2183 |
+
#: templates/forms/deactivation/form.php:269
|
2184 |
msgid "Submit & %s"
|
2185 |
msgstr "Submit & %s"
|
2186 |
|
2187 |
+
#: templates/forms/deactivation/form.php:290
|
2188 |
msgid "Kindly tell us the reason so we can improve."
|
2189 |
msgstr "Kindly tell us the reason so we can improve."
|
2190 |
|
2191 |
+
#: templates/forms/deactivation/form.php:411
|
2192 |
msgid "Yes - %s"
|
2193 |
msgstr "Yes - %s"
|
2194 |
|
2195 |
+
#: templates/forms/deactivation/form.php:418
|
2196 |
msgid "Skip & %s"
|
2197 |
msgstr "Skip & %s"
|
2198 |
|
includes/pum-sdk/freemius/languages/freemius-es_ES.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-es_ES.po
CHANGED
@@ -1,13 +1,13 @@
|
|
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
|
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: 2018-
|
11 |
"Last-Translator: Carlos Longarela <carlos@longarela.eu>\n"
|
12 |
"Language: es_ES\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
|
@@ -21,1216 +21,1296 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
-
#: includes/class-freemius.php:
|
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:
|
29 |
msgid "Error"
|
30 |
msgstr "Error"
|
31 |
|
32 |
-
#: includes/class-freemius.php:
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "He encontrado un mejor %s"
|
35 |
|
36 |
-
#: includes/class-freemius.php:
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "¿Cuál es el nombre de %s?"
|
39 |
|
40 |
-
#: includes/class-freemius.php:
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "Es temporal %s. Sólo estoy depurando un problema."
|
43 |
|
44 |
-
#: includes/class-freemius.php:
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Desactivación"
|
47 |
|
48 |
-
#: includes/class-freemius.php:
|
49 |
msgid "Theme Switch"
|
50 |
-
msgstr "Cambiar
|
51 |
|
52 |
-
#: includes/class-freemius.
|
53 |
msgid "Other"
|
54 |
msgstr "Otra"
|
55 |
|
56 |
-
#: includes/class-freemius.php:
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "Ya no necesito el %s"
|
59 |
|
60 |
-
#: includes/class-freemius.php:
|
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:
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "%s ha roto mi sitio"
|
67 |
|
68 |
-
#: includes/class-freemius.php:
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "%s de repente ha dejado de funcionar"
|
71 |
|
72 |
-
#: includes/class-freemius.php:
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "No puedo pagarlo durante más tiempo"
|
75 |
|
76 |
-
#: includes/class-freemius.php:
|
77 |
msgid "What price would you feel comfortable paying?"
|
78 |
-
msgstr "¿
|
79 |
|
80 |
-
#: includes/class-freemius.php:
|
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:
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "%s no funcionaba"
|
87 |
|
88 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
97 |
msgid "What feature?"
|
98 |
msgstr "¿Qué característica?"
|
99 |
|
100 |
-
#: includes/class-freemius.php:
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "%s no funciona"
|
103 |
|
104 |
-
#: includes/class-freemius.php:
|
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:
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "No es lo que estaba buscando"
|
111 |
|
112 |
-
#: includes/class-freemius.php:
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "¿Que has estado buscando?"
|
115 |
|
116 |
-
#: includes/class-freemius.php:
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "%s no funciona como esperaba"
|
119 |
|
120 |
-
#: includes/class-freemius.php:
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "¿Qué esperas?"
|
123 |
|
124 |
-
#: includes/class-freemius.
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Debug Freemius"
|
127 |
|
128 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Vamos, adelante"
|
143 |
|
144 |
-
#: includes/class-freemius.php:
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "No - sólo desactivar"
|
147 |
|
148 |
-
#: includes/class-freemius.
|
149 |
-
#: includes/class-freemius.
|
150 |
-
#: includes/class-freemius.
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
msgctxt "exclamation"
|
156 |
msgid "Oops"
|
157 |
msgstr "Oops"
|
158 |
|
159 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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.
|
174 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "W00t"
|
186 |
|
187 |
-
#: includes/class-freemius.php:
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Tienes una licencia %s."
|
190 |
|
191 |
-
#: includes/class-freemius.
|
192 |
-
#: includes/class-freemius.
|
193 |
-
#: includes/class-freemius.
|
194 |
-
#: includes/class-freemius.php:
|
195 |
msgctxt "interjection expressing joy or exuberance"
|
196 |
msgid "Yee-haw"
|
197 |
msgstr "Vaya"
|
198 |
|
199 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
208 |
-
#: templates/
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Más información sobre %s"
|
211 |
|
212 |
-
#: includes/class-freemius.php:
|
213 |
msgid "Purchase License"
|
214 |
-
msgstr "Comprar
|
215 |
|
216 |
-
#: includes/class-freemius.
|
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:
|
221 |
msgid "start the trial"
|
222 |
msgstr "comenzar el período de prueba"
|
223 |
|
224 |
-
#: includes/class-freemius.
|
225 |
msgid "complete the install"
|
226 |
msgstr "completar la instalación"
|
227 |
|
228 |
-
#: includes/class-freemius.php:
|
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:
|
233 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
234 |
msgid "Complete \"%s\" Activation Now"
|
235 |
-
msgstr "Completar la
|
236 |
|
237 |
-
#: includes/class-freemius.php:
|
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:
|
242 |
msgid "Opt in to make \"%s\" Better!"
|
243 |
msgstr "¡Inscribirte para hacer \"%s\" Mejor!"
|
244 |
|
245 |
-
#: includes/class-freemius.php:
|
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.
|
250 |
-
#: includes/class-fs-plugin-updater.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
msgid "Add-On"
|
253 |
msgstr "Complemento"
|
254 |
|
255 |
-
#: includes/class-freemius.
|
256 |
-
#: templates/debug.php:
|
257 |
msgid "Plugin"
|
258 |
msgstr "Plugin"
|
259 |
|
260 |
-
#: includes/class-freemius.
|
261 |
-
#: templates/debug.
|
262 |
msgid "Theme"
|
263 |
msgstr "Tema"
|
264 |
|
265 |
-
#: includes/class-freemius.php:
|
266 |
msgid "invalid_site_details_collection"
|
267 |
msgstr "invalid_site_details_collection"
|
268 |
|
269 |
-
#: includes/class-freemius.php:
|
270 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
271 |
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?"
|
272 |
|
273 |
-
#: includes/class-freemius.php:
|
274 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
275 |
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?"
|
276 |
|
277 |
-
#: includes/class-freemius.php:
|
278 |
msgid "Account is pending activation."
|
279 |
msgstr "La cuenta está pendiente de activación"
|
280 |
|
281 |
-
#: includes/class-freemius.php:
|
282 |
msgid "%s activation was successfully completed."
|
283 |
msgstr "%s activación se completó con éxito."
|
284 |
|
285 |
-
#: includes/class-freemius.php:
|
286 |
msgid "Your account was successfully activated with the %s plan."
|
287 |
msgstr "Tu cuenta se ha activado correctamente con el plan %s."
|
288 |
|
289 |
-
#: includes/class-freemius.
|
290 |
msgid "Your trial has been successfully started."
|
291 |
msgstr "Tu versión de prueba se ha iniciado con éxito."
|
292 |
|
293 |
-
#: includes/class-freemius.
|
294 |
-
#: includes/class-freemius.php:
|
295 |
msgid "Couldn't activate %s."
|
296 |
msgstr "No se puede activar %s."
|
297 |
|
298 |
-
#: includes/class-freemius.
|
299 |
-
#: includes/class-freemius.php:
|
300 |
msgid "Please contact us with the following message:"
|
301 |
msgstr "Por favor contáctanos con el siguiente mensaje:"
|
302 |
|
303 |
-
#: includes/class-freemius.
|
304 |
msgid "Upgrade"
|
305 |
msgstr "Actualizar"
|
306 |
|
307 |
-
#: includes/class-freemius.php:
|
308 |
msgid "Start Trial"
|
309 |
-
msgstr "Comenzar el
|
310 |
|
311 |
-
#: includes/class-freemius.php:
|
312 |
msgid "Pricing"
|
313 |
msgstr "Precio"
|
314 |
|
315 |
-
#: includes/class-freemius.
|
316 |
msgid "Affiliation"
|
317 |
msgstr "Afiliación"
|
318 |
|
319 |
-
#: includes/class-freemius.
|
320 |
-
#: templates/account.
|
321 |
msgid "Account"
|
322 |
msgstr "Cuenta"
|
323 |
|
324 |
-
#: includes/class-freemius.
|
325 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
326 |
msgid "Contact Us"
|
327 |
msgstr "Contáctanos"
|
328 |
|
329 |
-
#: includes/class-freemius.
|
330 |
-
#: includes/class-freemius.
|
|
|
331 |
msgid "Add-Ons"
|
332 |
msgstr "Complementos"
|
333 |
|
334 |
-
#: includes/class-freemius.
|
335 |
msgctxt "noun"
|
336 |
msgid "Pricing"
|
337 |
msgstr "Precio"
|
338 |
|
339 |
-
#: includes/class-freemius.
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
341 |
msgid "Support Forum"
|
342 |
-
msgstr "Foro de
|
343 |
|
344 |
-
#: includes/class-freemius.php:
|
345 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
346 |
-
msgstr "Tu email ha sido verificado correctamente -
|
347 |
|
348 |
-
#: includes/class-freemius.php:
|
349 |
msgctxt "a positive response"
|
350 |
msgid "Right on"
|
351 |
msgstr "Bien hecho"
|
352 |
|
353 |
-
#: includes/class-freemius.php:
|
354 |
msgid "Your %s Add-on plan was successfully upgraded."
|
355 |
msgstr "Tu complemento %s del plan se actualizó con éxito."
|
356 |
|
357 |
-
#: includes/class-freemius.php:
|
358 |
msgid "%s Add-on was successfully purchased."
|
359 |
msgstr "El complemento %s ha sido comprado correctamente."
|
360 |
|
361 |
-
#: includes/class-freemius.php:
|
362 |
msgid "Download the latest version"
|
363 |
msgstr "Descargar la última versión"
|
364 |
|
365 |
-
#: includes/class-freemius.php:
|
366 |
msgctxt "%1s - plugin title, %2s - API domain"
|
367 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
368 |
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"
|
369 |
|
370 |
-
#: includes/class-freemius.
|
371 |
-
#: includes/class-freemius.php:
|
372 |
msgid "Error received from the server:"
|
373 |
msgstr "Error recibido del servidor:"
|
374 |
|
375 |
-
#: includes/class-freemius.php:
|
376 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
377 |
-
msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu
|
378 |
|
379 |
-
#: includes/class-freemius.
|
380 |
-
#: includes/class-freemius.php:
|
381 |
msgctxt ""
|
382 |
msgid "Hmm"
|
383 |
msgstr "Hmm"
|
384 |
|
385 |
-
#: includes/class-freemius.php:
|
386 |
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."
|
387 |
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."
|
388 |
|
389 |
-
#: includes/class-freemius.
|
390 |
-
#: templates/add-ons.php:
|
391 |
msgctxt "trial period"
|
392 |
msgid "Trial"
|
393 |
msgstr "Período de Prueba Gratuito"
|
394 |
|
395 |
-
#: includes/class-freemius.php:
|
396 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
397 |
msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
|
398 |
|
399 |
-
#: includes/class-freemius.
|
400 |
msgid "Please contact us here"
|
401 |
msgstr "Contacta aquí con nosotros"
|
402 |
|
403 |
-
#: includes/class-freemius.php:
|
404 |
msgid "Your plan was successfully upgraded."
|
405 |
msgstr "Tu plan se actualizó con éxito."
|
406 |
|
407 |
-
#: includes/class-freemius.php:
|
408 |
msgid "Your plan was successfully changed to %s."
|
409 |
msgstr "Tu plan se cambió correctamente a %s."
|
410 |
|
411 |
-
#: includes/class-freemius.php:
|
412 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
413 |
msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
|
414 |
|
415 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
416 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
417 |
msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
|
418 |
|
419 |
-
#: includes/class-freemius.php:
|
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 "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."
|
422 |
|
423 |
-
#: includes/class-freemius.php:
|
424 |
-
msgid "Your trial has expired. You can still continue using all our free features."
|
425 |
msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
|
426 |
|
427 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
428 |
msgid "It looks like the license could not be activated."
|
429 |
msgstr "Parece que la licencia no se pudo activar."
|
430 |
|
431 |
-
#: includes/class-freemius.php:
|
432 |
msgid "Your license was successfully activated."
|
433 |
msgstr "Tu licencia fue activada correctamente."
|
434 |
|
435 |
-
#: includes/class-freemius.php:
|
436 |
msgid "It looks like your site currently doesn't have an active license."
|
437 |
msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
|
438 |
|
439 |
-
#: includes/class-freemius.php:
|
440 |
msgid "It looks like the license deactivation failed."
|
441 |
msgstr "Parece que la desactivación de licencia ha fallado."
|
442 |
|
443 |
-
#: includes/class-freemius.php:
|
444 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
445 |
msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
|
446 |
|
447 |
-
#: includes/class-freemius.php:
|
448 |
msgid "O.K"
|
449 |
msgstr "O.K"
|
450 |
|
451 |
-
#: includes/class-freemius.php:
|
452 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
453 |
msgstr "Tu plan fue degradado con éxito. Tu licencia %s plan caducará en %s."
|
454 |
|
455 |
-
#: includes/class-freemius.php:
|
456 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
457 |
msgstr "Parece que estamos teniendo algún problema temporal con tu degradación de plan. Vuelve a intentarlo en unos minutos."
|
458 |
|
459 |
-
#: includes/class-freemius.php:
|
460 |
msgid "You are already running the %s in a trial mode."
|
461 |
msgstr "Estás ejecutando %s en modo de prueba."
|
462 |
|
463 |
-
#: includes/class-freemius.php:
|
464 |
msgid "You already utilized a trial before."
|
465 |
msgstr "Ya utilizaste un período de prueba antes."
|
466 |
|
467 |
-
#: includes/class-freemius.php:
|
468 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
469 |
msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
|
470 |
|
471 |
-
#: includes/class-freemius.php:
|
472 |
msgid "Plan %s does not support a trial period."
|
473 |
msgstr "El plan %s no admite un período de prueba."
|
474 |
|
475 |
-
#: includes/class-freemius.php:
|
476 |
msgid "None of the %s's plans supports a trial period."
|
477 |
msgstr "Ninguno de los planes de %s soportan un período de prueba."
|
478 |
|
479 |
-
#: includes/class-freemius.php:
|
480 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
481 |
msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
|
482 |
|
483 |
-
#: includes/class-freemius.php:
|
484 |
msgid "Your %s free trial was successfully cancelled."
|
485 |
msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
|
486 |
|
487 |
-
#: includes/class-freemius.php:
|
488 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
489 |
msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
|
490 |
|
491 |
-
#: includes/class-freemius.php:
|
492 |
msgid "Version %s was released."
|
493 |
msgstr "La versión %s se ha lanzado."
|
494 |
|
495 |
-
#: includes/class-freemius.php:
|
496 |
msgid "Please download %s."
|
497 |
msgstr "Por favor descarga %s."
|
498 |
|
499 |
-
#: includes/class-freemius.php:
|
500 |
msgid "the latest %s version here"
|
501 |
msgstr "la última versión %s aquí"
|
502 |
|
503 |
-
#: includes/class-freemius.php:
|
504 |
msgid "New"
|
505 |
msgstr "Nuevo"
|
506 |
|
507 |
-
#: includes/class-freemius.php:
|
508 |
msgid "Seems like you got the latest release."
|
509 |
msgstr "Parece que tienes la última versión."
|
510 |
|
511 |
-
#: includes/class-freemius.php:
|
512 |
msgid "You are all good!"
|
513 |
msgstr "¡Está todo listo!"
|
514 |
|
515 |
-
#: includes/class-freemius.php:
|
516 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
517 |
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."
|
518 |
|
519 |
-
#: includes/class-freemius.php:
|
520 |
msgid "Site successfully opted in."
|
521 |
-
msgstr "
|
522 |
|
523 |
-
#: includes/class-freemius.
|
524 |
msgid "Awesome"
|
525 |
msgstr "Increíble"
|
526 |
|
527 |
-
#: includes/class-freemius.
|
528 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
529 |
msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
|
530 |
|
531 |
-
#: includes/class-freemius.php:
|
532 |
msgid "Thank you!"
|
533 |
-
msgstr "
|
534 |
|
535 |
-
#: includes/class-freemius.php:
|
536 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
537 |
-
msgstr "
|
538 |
|
539 |
-
#: includes/class-freemius.php:
|
540 |
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."
|
541 |
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."
|
542 |
|
543 |
-
#: includes/class-freemius.php:
|
544 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
545 |
msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
|
546 |
|
547 |
-
#: includes/class-freemius.php:
|
548 |
msgid "%s is the new owner of the account."
|
549 |
msgstr "%s es el nuevo dueño de la cuenta."
|
550 |
|
551 |
-
#: includes/class-freemius.php:
|
552 |
msgctxt "as congratulations"
|
553 |
msgid "Congrats"
|
554 |
msgstr "Felicidades"
|
555 |
|
556 |
-
#: includes/class-freemius.php:
|
557 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
558 |
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."
|
559 |
|
560 |
-
#: includes/class-freemius.php:
|
561 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
562 |
-
msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de
|
563 |
|
564 |
-
#: includes/class-freemius.php:
|
565 |
msgid "Change Ownership"
|
566 |
-
msgstr "Cambiar
|
567 |
|
568 |
-
#: includes/class-freemius.php:
|
569 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
570 |
msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
|
571 |
|
572 |
-
#: includes/class-freemius.php:
|
573 |
msgid "Please provide your full name."
|
574 |
msgstr "Por favor, dinos tu nombre completo."
|
575 |
|
576 |
-
#: includes/class-freemius.php:
|
577 |
msgid "Your name was successfully updated."
|
578 |
msgstr "Tu nombre fue actualizado correctamente."
|
579 |
|
580 |
-
#: includes/class-freemius.php:
|
581 |
msgid "You have successfully updated your %s."
|
582 |
msgstr "Has actualizado correctamente tu %s."
|
583 |
|
584 |
-
#: includes/class-freemius.php:
|
585 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
586 |
msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
|
587 |
|
588 |
-
#: includes/class-freemius.php:
|
589 |
msgctxt "advance notice of something that will need attention."
|
590 |
msgid "Heads up"
|
591 |
msgstr "Atención"
|
592 |
|
593 |
-
#: includes/class-freemius.php:
|
594 |
msgctxt "exclamation"
|
595 |
msgid "Hey"
|
596 |
msgstr "Hey"
|
597 |
|
598 |
-
#: includes/class-freemius.php:
|
599 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
600 |
msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
|
601 |
|
602 |
-
#: includes/class-freemius.php:
|
603 |
msgid "No commitment for %s days - cancel anytime!"
|
604 |
msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
|
605 |
|
606 |
-
#: includes/class-freemius.php:
|
607 |
msgid "No credit card required"
|
608 |
msgstr "No se necesita tarjeta de crédito"
|
609 |
|
610 |
-
#: includes/class-freemius.
|
611 |
msgctxt "call to action"
|
612 |
msgid "Start free trial"
|
613 |
msgstr "Comenzar el período de prueba gratuito"
|
614 |
|
615 |
-
#: includes/class-freemius.php:
|
616 |
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!"
|
617 |
msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
|
618 |
|
619 |
-
#: includes/class-freemius.php:
|
620 |
msgid "Learn more"
|
621 |
msgstr "Saber más"
|
622 |
|
623 |
-
#: includes/class-freemius.
|
624 |
-
#: templates/account.
|
625 |
-
#: templates/connect.
|
|
|
626 |
msgid "Activate License"
|
627 |
-
msgstr "Activar
|
628 |
|
629 |
-
#: includes/class-freemius.
|
630 |
-
#: templates/account.
|
631 |
msgid "Change License"
|
632 |
-
msgstr "Cambiar
|
633 |
|
634 |
-
#: includes/class-freemius.
|
635 |
msgid "Opt Out"
|
636 |
msgstr "Darse de baja"
|
637 |
|
638 |
-
#: includes/class-freemius.
|
639 |
#: templates/account/partials/site.php43,
|
640 |
#: templates/account/partials/site.php:161
|
641 |
msgid "Opt In"
|
642 |
msgstr "Inscribirse"
|
643 |
|
644 |
-
#: includes/class-freemius.php:
|
645 |
msgid "Please follow these steps to complete the upgrade"
|
646 |
msgstr "Por favor, sigue estos pasos para completar la actualización"
|
647 |
|
648 |
-
#: includes/class-freemius.php:
|
649 |
msgid "Download the latest %s version"
|
650 |
msgstr "Descargar la última versión %s"
|
651 |
|
652 |
-
#: includes/class-freemius.php:
|
653 |
msgid "Upload and activate the downloaded version"
|
654 |
msgstr "Cargar y activar la versión descargada"
|
655 |
|
656 |
-
#: includes/class-freemius.php:
|
657 |
msgid "How to upload and activate?"
|
658 |
msgstr "¿Cómo subirlo y activarlo?"
|
659 |
|
660 |
-
#: includes/class-freemius.php:
|
661 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
662 |
-
msgstr "%sClick
|
663 |
|
664 |
-
#: includes/class-freemius.php:
|
665 |
msgid "Auto installation only works for opted-in users."
|
666 |
msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
|
667 |
|
668 |
-
#: includes/class-freemius.
|
669 |
-
#: includes/class-fs-plugin-updater.
|
670 |
-
#: includes/class-fs-plugin-updater.php:
|
671 |
msgid "Invalid module ID."
|
672 |
-
msgstr "Id de
|
673 |
|
674 |
-
#: includes/class-freemius.
|
675 |
msgid "Premium version already active."
|
676 |
-
msgstr "Versión
|
677 |
|
678 |
-
#: includes/class-freemius.php:
|
679 |
msgid "You do not have a valid license to access the premium version."
|
680 |
msgstr "No tienes una licencia válida para acceder a la versión premium."
|
681 |
|
682 |
-
#: includes/class-freemius.php:
|
683 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
684 |
msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
|
685 |
|
686 |
-
#: includes/class-freemius.
|
687 |
msgid "Premium add-on version already installed."
|
688 |
-
msgstr "Versión del complemento
|
689 |
|
690 |
-
#: includes/class-freemius.php:
|
691 |
msgid "View paid features"
|
692 |
msgstr "Ver las funciones de pago"
|
693 |
|
694 |
-
#: includes/class-
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
|
698 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
msgid "Installing plugin: %s"
|
700 |
msgstr "Instalando plugin: %s"
|
701 |
|
702 |
-
#: includes/class-fs-plugin-updater.php:
|
703 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
704 |
msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
|
705 |
|
706 |
-
#: includes/class-fs-plugin-updater.php:
|
707 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
708 |
msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
|
709 |
|
710 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
711 |
msgctxt "verb"
|
712 |
msgid "Purchase"
|
713 |
msgstr "Comprar"
|
714 |
|
715 |
-
#: includes/fs-plugin-info-dialog.php:
|
716 |
msgid "Start my free %s"
|
717 |
msgstr "Comenzar mi período gratuito de %s"
|
718 |
|
719 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
msgctxt "as download latest version"
|
721 |
msgid "Download Latest"
|
722 |
msgstr "Descargar la última"
|
723 |
|
724 |
-
#: includes/fs-plugin-info-dialog.
|
725 |
-
|
726 |
-
|
727 |
-
msgstr "Instalar Ahora"
|
728 |
|
729 |
-
#: includes/fs-plugin-info-dialog.
|
730 |
msgid "Install Update Now"
|
731 |
-
msgstr "Instalar
|
|
|
|
|
|
|
|
|
732 |
|
733 |
-
#: includes/fs-plugin-info-dialog.php:
|
734 |
msgid "Newer Version (%s) Installed"
|
735 |
-
msgstr "Versión más
|
736 |
|
737 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
738 |
msgid "Latest Version Installed"
|
739 |
-
msgstr "Última
|
740 |
|
741 |
-
#: includes/fs-plugin-info-dialog.php:
|
742 |
msgctxt "Plugin installer section title"
|
743 |
msgid "Description"
|
744 |
msgstr "Descripción"
|
745 |
|
746 |
-
#: includes/fs-plugin-info-dialog.php:
|
747 |
msgctxt "Plugin installer section title"
|
748 |
msgid "Installation"
|
749 |
msgstr "Instalación"
|
750 |
|
751 |
-
#: includes/fs-plugin-info-dialog.php:
|
752 |
msgctxt "Plugin installer section title"
|
753 |
msgid "FAQ"
|
754 |
msgstr "FAQ"
|
755 |
|
756 |
-
#: includes/fs-plugin-info-dialog.
|
757 |
#: templates/plugin-info/description.php:55
|
758 |
msgid "Screenshots"
|
759 |
msgstr "Capturas de pantalla"
|
760 |
|
761 |
-
#: includes/fs-plugin-info-dialog.php:
|
762 |
msgctxt "Plugin installer section title"
|
763 |
msgid "Changelog"
|
764 |
msgstr "Registro de cambios"
|
765 |
|
766 |
-
#: includes/fs-plugin-info-dialog.php:
|
767 |
msgctxt "Plugin installer section title"
|
768 |
msgid "Reviews"
|
769 |
msgstr "Valoraciones"
|
770 |
|
771 |
-
#: includes/fs-plugin-info-dialog.php:
|
772 |
msgctxt "Plugin installer section title"
|
773 |
msgid "Other Notes"
|
774 |
-
msgstr "Otras
|
775 |
|
776 |
-
#: includes/fs-plugin-info-dialog.php:
|
777 |
msgctxt "Plugin installer section title"
|
778 |
msgid "Features & Pricing"
|
779 |
-
msgstr "Características y
|
780 |
|
781 |
-
#: includes/fs-plugin-info-dialog.php:
|
782 |
msgid "Plugin Install"
|
783 |
-
msgstr "Instalar
|
784 |
|
785 |
-
#: includes/fs-plugin-info-dialog.php:
|
786 |
msgctxt "e.g. Professional Plan"
|
787 |
msgid "%s Plan"
|
788 |
msgstr "Plan %s"
|
789 |
|
790 |
-
#: includes/fs-plugin-info-dialog.php:
|
791 |
msgctxt "e.g. the best product"
|
792 |
msgid "Best"
|
793 |
msgstr "El mejor"
|
794 |
|
795 |
-
#: includes/fs-plugin-info-dialog.
|
796 |
-
#: includes/fs-plugin-info-dialog.php:
|
797 |
msgctxt "as every month"
|
798 |
msgid "Monthly"
|
799 |
msgstr "Mensual"
|
800 |
|
801 |
-
#: includes/fs-plugin-info-dialog.php:
|
802 |
msgctxt "as once a year"
|
803 |
msgid "Annual"
|
804 |
msgstr "Anual"
|
805 |
|
806 |
-
#: includes/fs-plugin-info-dialog.php:
|
807 |
msgid "Lifetime"
|
808 |
msgstr "Permanente"
|
809 |
|
810 |
-
#: includes/fs-plugin-info-dialog.
|
811 |
-
#: includes/fs-plugin-info-dialog.
|
812 |
-
#: includes/fs-plugin-info-dialog.php:
|
813 |
msgctxt "e.g. billed monthly"
|
814 |
msgid "Billed %s"
|
815 |
msgstr "Facturado %s"
|
816 |
|
817 |
-
#: includes/fs-plugin-info-dialog.php:
|
818 |
msgctxt "as once a year"
|
819 |
msgid "Annually"
|
820 |
msgstr "Anualmente"
|
821 |
|
822 |
-
#: includes/fs-plugin-info-dialog.php:
|
823 |
msgctxt "as once a year"
|
824 |
msgid "Once"
|
825 |
msgstr "Una vez"
|
826 |
|
827 |
-
#: includes/fs-plugin-info-dialog.php:
|
828 |
msgid "Single Site License"
|
829 |
-
msgstr "Licencia para un
|
830 |
|
831 |
-
#: includes/fs-plugin-info-dialog.php:
|
832 |
msgid "Unlimited Licenses"
|
833 |
-
msgstr "Licencias
|
834 |
|
835 |
-
#: includes/fs-plugin-info-dialog.php:
|
836 |
msgid "Up to %s Sites"
|
837 |
-
msgstr "Hasta %s
|
838 |
|
839 |
-
#: includes/fs-plugin-info-dialog.
|
840 |
#: templates/plugin-info/features.php:82
|
841 |
msgctxt "as monthly period"
|
842 |
msgid "mo"
|
843 |
msgstr "me"
|
844 |
|
845 |
-
#: includes/fs-plugin-info-dialog.
|
846 |
#: templates/plugin-info/features.php:80
|
847 |
msgctxt "as annual period"
|
848 |
msgid "year"
|
849 |
msgstr "año"
|
850 |
|
851 |
-
#: includes/fs-plugin-info-dialog.php:
|
852 |
msgctxt "noun"
|
853 |
msgid "Price"
|
854 |
msgstr "Precio"
|
855 |
|
856 |
-
#: includes/fs-plugin-info-dialog.php:
|
857 |
msgid "Save %s"
|
858 |
msgstr "Guardar %s"
|
859 |
|
860 |
-
#: includes/fs-plugin-info-dialog.php:
|
861 |
msgid "No commitment for %s - cancel anytime"
|
862 |
msgstr "Sin compromiso para %s - cancelar en cualquier momento"
|
863 |
|
864 |
-
#: includes/fs-plugin-info-dialog.php:
|
865 |
msgid "After your free %s, pay as little as %s"
|
866 |
msgstr "Después de su período gratuito %s, pague sólo %s"
|
867 |
|
868 |
-
#: includes/fs-plugin-info-dialog.php:
|
869 |
msgid "Details"
|
870 |
msgstr "Detalles"
|
871 |
|
872 |
-
#: includes/fs-plugin-info-dialog.
|
873 |
-
#: templates/debug.php191, templates/debug.php228, templates/debug.
|
|
|
874 |
msgctxt "product version"
|
875 |
msgid "Version"
|
876 |
msgstr "Versión"
|
877 |
|
878 |
-
#: includes/fs-plugin-info-dialog.php:
|
879 |
msgctxt "as the plugin author"
|
880 |
msgid "Author"
|
881 |
msgstr "Autor"
|
882 |
|
883 |
-
#: includes/fs-plugin-info-dialog.php:
|
884 |
msgid "Last Updated"
|
885 |
-
msgstr "Última
|
886 |
|
887 |
-
#: includes/fs-plugin-info-dialog.php:
|
888 |
msgctxt "x-ago"
|
889 |
msgid "%s ago"
|
890 |
msgstr "hace %s"
|
891 |
|
892 |
-
#: includes/fs-plugin-info-dialog.php:
|
893 |
msgid "Requires WordPress Version"
|
894 |
msgstr "Necesita la versión de WordPress"
|
895 |
|
896 |
-
#: includes/fs-plugin-info-dialog.php:
|
897 |
msgid "%s or higher"
|
898 |
msgstr "%s o mayor"
|
899 |
|
900 |
-
#: includes/fs-plugin-info-dialog.php:
|
901 |
msgid "Compatible up to"
|
902 |
msgstr "Compatible hasta"
|
903 |
|
904 |
-
#: includes/fs-plugin-info-dialog.php:
|
905 |
msgid "Downloaded"
|
906 |
msgstr "Descargado"
|
907 |
|
908 |
-
#: includes/fs-plugin-info-dialog.php:
|
909 |
msgid "%s time"
|
910 |
msgstr "% vez"
|
911 |
|
912 |
-
#: includes/fs-plugin-info-dialog.php:
|
913 |
msgid "%s times"
|
914 |
msgstr "%s veces"
|
915 |
|
916 |
-
#: includes/fs-plugin-info-dialog.php:
|
917 |
msgid "WordPress.org Plugin Page"
|
918 |
-
msgstr "Página del
|
919 |
|
920 |
-
#: includes/fs-plugin-info-dialog.php:
|
921 |
msgid "Plugin Homepage"
|
922 |
-
msgstr "Página web del
|
923 |
|
924 |
-
#: includes/fs-plugin-info-dialog.
|
925 |
-
#: includes/fs-plugin-info-dialog.php:
|
926 |
msgid "Donate to this plugin"
|
927 |
msgstr "Donar a este plugin"
|
928 |
|
929 |
-
#: includes/fs-plugin-info-dialog.php:
|
930 |
msgid "Average Rating"
|
931 |
-
msgstr "Calificación
|
932 |
|
933 |
-
#: includes/fs-plugin-info-dialog.php:
|
934 |
msgid "based on %s"
|
935 |
msgstr "basado en %s"
|
936 |
|
937 |
-
#: includes/fs-plugin-info-dialog.php:
|
938 |
msgid "%s rating"
|
939 |
msgstr "%s calificación"
|
940 |
|
941 |
-
#: includes/fs-plugin-info-dialog.php:
|
942 |
msgid "%s ratings"
|
943 |
msgstr "%s calificaciones"
|
944 |
|
945 |
-
#: includes/fs-plugin-info-dialog.php:
|
946 |
msgid "%s star"
|
947 |
msgstr "%s estrella"
|
948 |
|
949 |
-
#: includes/fs-plugin-info-dialog.php:
|
950 |
msgid "%s stars"
|
951 |
msgstr "%s estrellas"
|
952 |
|
953 |
-
#: includes/fs-plugin-info-dialog.php:
|
954 |
msgid "Click to see reviews that provided a rating of %s"
|
955 |
msgstr "Haz clic para ver los comentarios con una valoración de %s"
|
956 |
|
957 |
-
#: includes/fs-plugin-info-dialog.php:
|
958 |
msgid "Contributors"
|
959 |
msgstr "Colaboradores"
|
960 |
|
961 |
-
#: includes/fs-plugin-info-dialog.
|
962 |
-
#: includes/fs-plugin-info-dialog.php:
|
963 |
msgid "Warning"
|
964 |
msgstr "Atencion"
|
965 |
|
966 |
-
#: includes/fs-plugin-info-dialog.php:
|
967 |
msgid "This plugin has not been tested with your current version of WordPress."
|
968 |
msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
|
969 |
|
970 |
-
#: includes/fs-plugin-info-dialog.php:
|
971 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
972 |
msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
|
973 |
|
974 |
-
#: includes/fs-plugin-info-dialog.php:
|
975 |
msgid "Paid add-on must be deployed to Freemius."
|
976 |
msgstr "El complemento de pago se debe implementar en Freemius."
|
977 |
|
978 |
-
#: includes/fs-plugin-info-dialog.php:
|
979 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
980 |
msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
|
981 |
|
982 |
-
#: templates/account.php81, templates/account/partials/
|
|
|
983 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
984 |
msgstr "Degradando tu plan detendrás inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %s expirará en %s."
|
985 |
|
986 |
-
#: templates/account.php:
|
987 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
988 |
msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
|
989 |
|
990 |
-
#: templates/account.php83, templates/account/partials/
|
|
|
991 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
992 |
msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tienes acceso a soporte y actualizaciones de %s."
|
993 |
|
994 |
-
#: templates/account.php84, templates/account/partials/
|
|
|
995 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
996 |
msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
|
997 |
|
998 |
#. translators: %s: Plan title (e.g. "Professional")
|
999 |
#: templates/account.php86,
|
1000 |
-
#: templates/account/partials/activate-license-button.
|
|
|
1001 |
msgid "Activate %s Plan"
|
1002 |
-
msgstr "Activar
|
1003 |
|
1004 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1005 |
-
#: templates/account.php89, templates/account/partials/
|
|
|
1006 |
msgid "Auto renews in %s"
|
1007 |
msgstr "Auto renovaciones en %s"
|
1008 |
|
1009 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1010 |
-
#: templates/account.php91, templates/account/partials/
|
|
|
1011 |
msgid "Expires in %s"
|
1012 |
msgstr "Caduca en %s"
|
1013 |
|
1014 |
-
#: templates/account.php:
|
1015 |
msgctxt "as synchronize license"
|
1016 |
msgid "Sync License"
|
1017 |
-
msgstr "Sincronizar
|
1018 |
|
1019 |
-
#: templates/account.php:
|
1020 |
msgid "Cancel Trial"
|
1021 |
-
msgstr "Cancelar
|
1022 |
|
1023 |
-
#: templates/account.php:
|
1024 |
msgid "Change Plan"
|
1025 |
msgstr "Cambiar Plan"
|
1026 |
|
1027 |
-
#: templates/account.php:
|
1028 |
msgctxt "verb"
|
1029 |
msgid "Upgrade"
|
1030 |
msgstr "Actualizar"
|
1031 |
|
1032 |
-
#: templates/account.php97, templates/account/partials/
|
|
|
1033 |
msgctxt "verb"
|
1034 |
msgid "Downgrade"
|
1035 |
msgstr "Degradar"
|
1036 |
|
1037 |
#: templates/account.php99, templates/add-ons.php126,
|
1038 |
#: templates/plugin-info/features.php72,
|
|
|
1039 |
#: templates/account/partials/site.php:31
|
1040 |
msgid "Free"
|
1041 |
msgstr "Gratis"
|
1042 |
|
1043 |
-
#: templates/account.php:
|
1044 |
msgid "Activate"
|
1045 |
msgstr "Activar"
|
1046 |
|
1047 |
-
#: templates/account.php101, templates/debug.
|
1048 |
-
#: includes/customizer/class-fs-customizer-upsell-control.
|
|
|
1049 |
msgctxt "as product pricing plan"
|
1050 |
msgid "Plan"
|
1051 |
msgstr "Plan"
|
1052 |
|
1053 |
-
#: templates/account.php:
|
1054 |
msgid "Free Trial"
|
1055 |
-
msgstr "Período de
|
1056 |
|
1057 |
-
#: templates/account.php:
|
1058 |
msgid "Account Details"
|
1059 |
-
msgstr "Detalles de la
|
1060 |
|
1061 |
-
#: templates/account.php:
|
1062 |
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?"
|
1063 |
msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
|
1064 |
|
1065 |
-
#: templates/account.php:
|
1066 |
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?"
|
1067 |
msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
|
1068 |
|
1069 |
-
#: templates/account.php:
|
1070 |
msgid "Delete Account"
|
1071 |
-
msgstr "Borrar
|
1072 |
|
1073 |
-
#: templates/account.
|
1074 |
#: templates/account/partials/deactivate-license-button.php:35
|
1075 |
msgid "Deactivate License"
|
1076 |
-
msgstr "Desactivar
|
1077 |
|
1078 |
-
#: templates/account.php:
|
1079 |
msgid "Are you sure you want to proceed?"
|
1080 |
msgstr "¿Estás seguro que quieres proceder?"
|
1081 |
|
1082 |
-
#: templates/account.php:
|
1083 |
msgid "Cancel Subscription"
|
1084 |
-
msgstr "Cancelar
|
1085 |
|
1086 |
-
#: templates/account.php:
|
1087 |
msgctxt "as synchronize"
|
1088 |
msgid "Sync"
|
1089 |
msgstr "Sincronizar"
|
1090 |
|
1091 |
-
#: templates/account.
|
1092 |
msgid "Name"
|
1093 |
msgstr "Nombre"
|
1094 |
|
1095 |
-
#: templates/account.
|
1096 |
msgid "Email"
|
1097 |
-
msgstr "Correo
|
1098 |
|
1099 |
-
#: templates/account.
|
1100 |
msgid "User ID"
|
1101 |
-
msgstr "ID de
|
1102 |
|
1103 |
-
#: templates/account.php:
|
1104 |
msgid "Site ID"
|
1105 |
-
msgstr "ID del
|
1106 |
|
1107 |
-
#: templates/account.php:
|
1108 |
msgid "No ID"
|
1109 |
msgstr "Sin ID"
|
1110 |
|
1111 |
-
#: templates/account.
|
1112 |
-
#: templates/debug.
|
1113 |
#: templates/account/partials/site.php:219
|
1114 |
msgid "Public Key"
|
1115 |
-
msgstr "Clave
|
1116 |
|
1117 |
-
#: templates/account.
|
1118 |
-
#: templates/debug.
|
1119 |
msgid "Secret Key"
|
1120 |
-
msgstr "Clave
|
1121 |
|
1122 |
-
#: templates/account.php:
|
1123 |
msgctxt "as secret encryption key missing"
|
1124 |
msgid "No Secret"
|
1125 |
msgstr "Sin clave secreta"
|
1126 |
|
1127 |
-
#: templates/account.
|
1128 |
#: templates/account/partials/site.php:114
|
1129 |
msgid "Trial"
|
1130 |
-
msgstr "Período de
|
1131 |
|
1132 |
-
#: templates/account.
|
1133 |
#: templates/account/partials/site.php:248
|
1134 |
msgid "License Key"
|
1135 |
msgstr "Clave de licencia"
|
1136 |
|
1137 |
-
#: templates/account.php:
|
1138 |
msgid "not verified"
|
1139 |
msgstr "no verificado"
|
1140 |
|
1141 |
-
#: templates/account.php:
|
1142 |
msgid "Premium version"
|
1143 |
-
msgstr "Versión
|
1144 |
|
1145 |
-
#: templates/account.php:
|
1146 |
msgid "Free version"
|
1147 |
-
msgstr "Versión
|
1148 |
|
1149 |
-
#: templates/account.php:
|
1150 |
msgid "Verify Email"
|
1151 |
-
msgstr "Verificar
|
1152 |
|
1153 |
-
#: templates/account.php:
|
1154 |
msgid "Download %s Version"
|
1155 |
-
msgstr "Descargar
|
1156 |
|
1157 |
-
#: templates/account.
|
1158 |
#: templates/account/partials/site.php237,
|
1159 |
#: templates/account/partials/site.php:255
|
1160 |
msgctxt "verb"
|
1161 |
msgid "Show"
|
1162 |
msgstr "Mostrar"
|
1163 |
|
1164 |
-
#: templates/account.php:
|
1165 |
msgid "What is your %s?"
|
1166 |
msgstr "¿Cual es tú %s?"
|
1167 |
|
1168 |
-
#: templates/account.
|
1169 |
msgctxt "verb"
|
1170 |
msgid "Edit"
|
1171 |
msgstr "Editar"
|
1172 |
|
1173 |
-
#: templates/account.php:
|
1174 |
msgid "Sites"
|
1175 |
msgstr "Sitios"
|
1176 |
|
1177 |
-
#: templates/account.php:
|
1178 |
msgid "Search by address"
|
1179 |
-
msgstr "
|
1180 |
|
1181 |
-
#: templates/account.
|
1182 |
-
#: templates/debug.
|
1183 |
-
#: templates/debug.
|
1184 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1185 |
msgid "ID"
|
1186 |
msgstr "ID"
|
1187 |
|
1188 |
-
#: templates/account.
|
1189 |
msgid "Address"
|
1190 |
-
msgstr "
|
1191 |
|
1192 |
-
#: templates/account.php:
|
1193 |
msgid "License"
|
1194 |
msgstr "Licencia"
|
1195 |
|
1196 |
-
#: templates/account.php:
|
1197 |
msgid "Plan"
|
1198 |
msgstr "Plan"
|
1199 |
|
1200 |
-
#: templates/account.php:
|
1201 |
msgctxt "as software license"
|
1202 |
msgid "License"
|
1203 |
msgstr "Licencia"
|
1204 |
|
1205 |
-
#: templates/account.php:
|
1206 |
-
msgid "Cancelled"
|
1207 |
-
msgstr "Cancelado"
|
1208 |
-
|
1209 |
-
#: templates/account.php:640
|
1210 |
-
msgid "Expired"
|
1211 |
-
msgstr "Caducado"
|
1212 |
-
|
1213 |
-
#: templates/account.php:645
|
1214 |
-
msgid "No expiration"
|
1215 |
-
msgstr "Sin caducidad"
|
1216 |
-
|
1217 |
-
#: templates/account.php756, templates/account.php:812
|
1218 |
-
msgid "Activate this add-on"
|
1219 |
-
msgstr "Activar este complemento"
|
1220 |
-
|
1221 |
-
#: templates/account.php833, templates/debug.php408, templates/debug.php:486
|
1222 |
-
msgctxt "verb"
|
1223 |
-
msgid "Delete"
|
1224 |
-
msgstr "Borrar"
|
1225 |
-
|
1226 |
-
#: templates/account.php:890
|
1227 |
msgctxt "verb"
|
1228 |
msgid "Hide"
|
1229 |
msgstr "Ocultar"
|
1230 |
|
1231 |
-
#: templates/account.php:
|
1232 |
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?"
|
1233 |
-
msgstr "
|
1234 |
|
1235 |
#: templates/add-ons.php:36
|
1236 |
msgid "Add Ons for %s"
|
@@ -1256,7 +1336,7 @@ msgstr "%s seg"
|
|
1256 |
|
1257 |
#: templates/auto-installation.php:83
|
1258 |
msgid "Automatic Installation"
|
1259 |
-
msgstr "Instalación
|
1260 |
|
1261 |
#: templates/auto-installation.php:93
|
1262 |
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."
|
@@ -1284,150 +1364,158 @@ msgctxt "greeting"
|
|
1284 |
msgid "Hey %s,"
|
1285 |
msgstr "Hey %s,"
|
1286 |
|
1287 |
-
#: templates/connect.php:
|
1288 |
msgid "Allow & Continue"
|
1289 |
-
msgstr "Permitir y
|
1290 |
|
1291 |
-
#: templates/connect.php:
|
1292 |
msgid "Re-send activation email"
|
1293 |
msgstr "Reenviar correo electrónico de activación"
|
1294 |
|
1295 |
-
#: templates/connect.php:
|
1296 |
msgid "Thanks %s!"
|
1297 |
msgstr "¡Gracias %s!"
|
1298 |
|
1299 |
-
#: templates/connect.
|
1300 |
msgid "Agree & Activate License"
|
1301 |
-
msgstr "De
|
1302 |
|
1303 |
-
#: templates/connect.php:
|
1304 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1305 |
msgstr "¡Gracias por comprar %s! Para empezar, escribe tu clave de licencia:"
|
1306 |
|
1307 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1308 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1309 |
msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s."
|
1310 |
|
1311 |
-
#: templates/connect.php:
|
1312 |
-
msgid "
|
1313 |
-
msgstr "
|
1314 |
|
1315 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1316 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1317 |
-
msgstr "
|
1318 |
|
1319 |
-
#: templates/connect.php:
|
1320 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1321 |
-
msgstr "
|
1322 |
|
1323 |
-
#: templates/connect.php:
|
1324 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1325 |
-
msgstr "
|
1326 |
|
1327 |
-
#: templates/connect.php:
|
1328 |
msgid "%s's paid features"
|
1329 |
-
msgstr "%s
|
1330 |
|
1331 |
-
#: templates/connect.php:
|
1332 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1333 |
-
msgstr "
|
1334 |
|
1335 |
-
#: templates/connect.php:
|
1336 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1337 |
-
msgstr "
|
1338 |
|
1339 |
-
#: templates/connect.
|
1340 |
msgid "License key"
|
1341 |
msgstr "Clave de licencia"
|
1342 |
|
1343 |
-
#: templates/connect.
|
1344 |
msgid "Can't find your license key?"
|
1345 |
msgstr "¿No puedes encontrar tu clave de licencia?"
|
1346 |
|
1347 |
-
#: templates/connect.
|
1348 |
#: templates/forms/deactivation/retry-skip.php:20
|
1349 |
msgctxt "verb"
|
1350 |
msgid "Skip"
|
1351 |
msgstr "Saltar"
|
1352 |
|
1353 |
-
#: templates/connect.php:
|
1354 |
msgid "Delegate to Site Admins"
|
1355 |
-
msgstr "
|
1356 |
|
1357 |
-
#: templates/connect.php:
|
1358 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1359 |
-
msgstr "
|
1360 |
|
1361 |
-
#: templates/connect.php:
|
1362 |
msgid "Your Profile Overview"
|
1363 |
-
msgstr "Resumen del
|
1364 |
|
1365 |
-
#: templates/connect.php:
|
1366 |
msgid "Name and email address"
|
1367 |
msgstr "Nombre y dirección de correo electrónico"
|
1368 |
|
1369 |
-
#: templates/connect.php:
|
1370 |
msgid "Your Site Overview"
|
1371 |
-
msgstr "Resumen del
|
1372 |
|
1373 |
-
#: templates/connect.php:
|
1374 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1375 |
-
msgstr "URL del sitio web,
|
1376 |
|
1377 |
-
#: templates/connect.php:
|
1378 |
msgid "Admin Notices"
|
1379 |
-
msgstr "Avisos de
|
1380 |
|
1381 |
-
#: templates/connect.
|
1382 |
msgid "Updates, announcements, marketing, no spam"
|
1383 |
msgstr "Actualizaciones, anuncios, marketing, sin spam"
|
1384 |
|
1385 |
-
#: templates/connect.php:
|
1386 |
msgid "Current %s Events"
|
1387 |
-
msgstr "Eventos de %s
|
1388 |
|
1389 |
-
#: templates/connect.php:
|
1390 |
msgid "Activation, deactivation and uninstall"
|
1391 |
msgstr "Activación, desactivación y desinstalación"
|
1392 |
|
1393 |
-
#: templates/connect.php:
|
1394 |
msgid "Newsletter"
|
1395 |
msgstr "Boletín"
|
1396 |
|
1397 |
-
#: templates/connect.
|
1398 |
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."
|
1399 |
msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
|
1400 |
|
1401 |
-
#: templates/connect.php:
|
1402 |
msgid "What permissions are being granted?"
|
1403 |
msgstr "¿Qué permisos se otorgan?"
|
1404 |
|
1405 |
-
#: templates/connect.php:
|
1406 |
msgid "Don't have a license key?"
|
1407 |
msgstr "¿No tienes una clave de licencia?"
|
1408 |
|
1409 |
-
#: templates/connect.php:
|
1410 |
msgid "Activate Free Version"
|
1411 |
-
msgstr "Activar
|
1412 |
|
1413 |
-
#: templates/connect.php:
|
1414 |
msgid "Have a license key?"
|
1415 |
-
msgstr "¿Tienes una
|
1416 |
|
1417 |
-
#: templates/connect.php:
|
1418 |
msgid "Privacy Policy"
|
1419 |
-
msgstr "Política de
|
1420 |
|
1421 |
-
#: templates/connect.php:
|
1422 |
msgid "Terms of Service"
|
1423 |
-
msgstr "Términos de
|
1424 |
|
1425 |
-
#: templates/connect.php:
|
1426 |
msgctxt "as in the process of sending an email"
|
1427 |
msgid "Sending email"
|
1428 |
msgstr "Enviando correo electrónico"
|
1429 |
|
1430 |
-
#: templates/connect.php:
|
1431 |
msgctxt "as activating plugin"
|
1432 |
msgid "Activating"
|
1433 |
msgstr "Activando"
|
@@ -1455,8 +1543,8 @@ msgctxt "as code debugging"
|
|
1455 |
msgid "Debugging"
|
1456 |
msgstr "Depurando"
|
1457 |
|
1458 |
-
#: templates/debug.php54, templates/debug.php238, templates/debug.
|
1459 |
-
#: templates/debug.php:
|
1460 |
msgid "Actions"
|
1461 |
msgstr "Acciones"
|
1462 |
|
@@ -1466,19 +1554,19 @@ msgstr "¿Está seguro que desea eliminar todos los datos de Freemius?"
|
|
1466 |
|
1467 |
#: templates/debug.php:64
|
1468 |
msgid "Delete All Accounts"
|
1469 |
-
msgstr "Borrar
|
1470 |
|
1471 |
#: templates/debug.php:71
|
1472 |
msgid "Clear API Cache"
|
1473 |
-
msgstr "Borrar
|
1474 |
|
1475 |
#: templates/debug.php:79
|
1476 |
msgid "Clear Updates Transients"
|
1477 |
-
msgstr "
|
1478 |
|
1479 |
#: templates/debug.php:86
|
1480 |
msgid "Sync Data From Server"
|
1481 |
-
msgstr "Sincronizar
|
1482 |
|
1483 |
#: templates/debug.php:90
|
1484 |
msgid "Load DB Option"
|
@@ -1511,7 +1599,7 @@ msgstr "Ruta del módulo"
|
|
1511 |
|
1512 |
#: templates/debug.php:194
|
1513 |
msgid "Is Active"
|
1514 |
-
msgstr "Está
|
1515 |
|
1516 |
#: templates/debug.php222, templates/debug/plugins-themes-sync.php:35
|
1517 |
msgid "Plugins"
|
@@ -1521,12 +1609,12 @@ msgstr "Plugins"
|
|
1521 |
msgid "Themes"
|
1522 |
msgstr "Temas"
|
1523 |
|
1524 |
-
#: templates/debug.php227, templates/debug.
|
1525 |
#: templates/debug/scheduled-crons.php:80
|
1526 |
msgid "Slug"
|
1527 |
msgstr "Ruta"
|
1528 |
|
1529 |
-
#: templates/debug.php229, templates/debug.php:
|
1530 |
msgid "Title"
|
1531 |
msgstr "Título"
|
1532 |
|
@@ -1541,132 +1629,138 @@ msgstr "Estado Freemius"
|
|
1541 |
|
1542 |
#: templates/debug.php:235
|
1543 |
msgid "Network Blog"
|
1544 |
-
msgstr "
|
1545 |
|
1546 |
#: templates/debug.php:236
|
1547 |
msgid "Network User"
|
1548 |
-
msgstr "
|
1549 |
|
1550 |
-
#: templates/debug.php:
|
1551 |
msgctxt "as connection was successful"
|
1552 |
msgid "Connected"
|
1553 |
msgstr "Conectado"
|
1554 |
|
1555 |
-
#: templates/debug.php:
|
1556 |
msgctxt "as connection blocked"
|
1557 |
msgid "Blocked"
|
1558 |
msgstr "Bloqueado"
|
1559 |
|
1560 |
-
#: templates/debug.php:
|
1561 |
msgid "Simulate Trial"
|
1562 |
msgstr "Simular período de prueba"
|
1563 |
|
1564 |
-
#: templates/debug.php:
|
1565 |
msgid "Simulate Network Upgrade"
|
1566 |
-
msgstr "
|
1567 |
|
1568 |
-
#: templates/debug.php:
|
1569 |
msgid "%s Installs"
|
1570 |
msgstr "%s Instalaciones"
|
1571 |
|
1572 |
-
#: templates/debug.php:
|
1573 |
msgctxt "like websites"
|
1574 |
msgid "Sites"
|
1575 |
msgstr "Sitios"
|
1576 |
|
1577 |
-
#: templates/debug.
|
1578 |
msgid "Blog ID"
|
1579 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
1580 |
|
1581 |
-
#: templates/debug.php:
|
1582 |
msgid "Add Ons of module %s"
|
1583 |
msgstr "Complementos del módulo %s"
|
1584 |
|
1585 |
-
#: templates/debug.php:
|
1586 |
msgid "Users"
|
1587 |
msgstr "Usuarios"
|
1588 |
|
1589 |
-
#: templates/debug.php:
|
1590 |
msgid "Verified"
|
1591 |
msgstr "Verificado"
|
1592 |
|
1593 |
-
#: templates/debug.php:
|
1594 |
msgid "%s Licenses"
|
1595 |
msgstr "%s Licencias"
|
1596 |
|
1597 |
-
#: templates/debug.php:
|
1598 |
msgid "Plugin ID"
|
1599 |
msgstr "ID del plugin"
|
1600 |
|
1601 |
-
#: templates/debug.php:
|
1602 |
msgid "Plan ID"
|
1603 |
msgstr "ID del plan"
|
1604 |
|
1605 |
-
#: templates/debug.php:
|
1606 |
msgid "Quota"
|
1607 |
msgstr "Cuota"
|
1608 |
|
1609 |
-
#: templates/debug.php:
|
1610 |
msgid "Activated"
|
1611 |
msgstr "Activado"
|
1612 |
|
1613 |
-
#: templates/debug.php:
|
1614 |
msgid "Blocking"
|
1615 |
msgstr "Bloqueando"
|
1616 |
|
1617 |
-
#: templates/debug.php:
|
1618 |
msgctxt "as expiration date"
|
1619 |
msgid "Expiration"
|
1620 |
msgstr "Caducidad"
|
1621 |
|
1622 |
-
#: templates/debug.php:
|
1623 |
msgid "Debug Log"
|
1624 |
msgstr "Log de Debug"
|
1625 |
|
1626 |
-
#: templates/debug.php:
|
1627 |
msgid "All Types"
|
1628 |
msgstr "Todos los Tipos"
|
1629 |
|
1630 |
-
#: templates/debug.php:
|
1631 |
msgid "All Requests"
|
1632 |
-
msgstr "Todas las
|
1633 |
|
1634 |
-
#: templates/debug.
|
1635 |
#: templates/debug/logger.php:25
|
1636 |
msgid "File"
|
1637 |
msgstr "Archivo"
|
1638 |
|
1639 |
-
#: templates/debug.
|
1640 |
#: templates/debug/logger.php:23
|
1641 |
msgid "Function"
|
1642 |
msgstr "Función"
|
1643 |
|
1644 |
-
#: templates/debug.php:
|
1645 |
msgid "Process ID"
|
1646 |
-
msgstr "ID del
|
1647 |
|
1648 |
-
#: templates/debug.php:
|
1649 |
msgid "Logger"
|
1650 |
msgstr "Logger"
|
1651 |
|
1652 |
-
#: templates/debug.
|
1653 |
#: templates/debug/logger.php:24
|
1654 |
msgid "Message"
|
1655 |
msgstr "Mensaje"
|
1656 |
|
1657 |
-
#: templates/debug.php:
|
1658 |
msgid "Filter"
|
1659 |
msgstr "Filtro"
|
1660 |
|
1661 |
-
#: templates/debug.php:
|
1662 |
msgid "Download"
|
1663 |
msgstr "Descarga"
|
1664 |
|
1665 |
-
#: templates/debug.
|
1666 |
msgid "Type"
|
1667 |
msgstr "Tipo"
|
1668 |
|
1669 |
-
#: templates/debug.
|
1670 |
msgid "Timestamp"
|
1671 |
msgstr "Timestamp"
|
1672 |
|
@@ -1725,7 +1819,7 @@ msgstr "Municipio"
|
|
1725 |
|
1726 |
#: templates/account/billing.php53, templates/account/billing.php:53
|
1727 |
msgid "ZIP / Postal Code"
|
1728 |
-
msgstr "Código
|
1729 |
|
1730 |
#: templates/account/billing.php:308
|
1731 |
msgid "Country"
|
@@ -1733,7 +1827,7 @@ msgstr "País"
|
|
1733 |
|
1734 |
#: templates/account/billing.php:310
|
1735 |
msgid "Select Country"
|
1736 |
-
msgstr "Seleccionar
|
1737 |
|
1738 |
#: templates/account/billing.php317, templates/account/billing.php:318
|
1739 |
msgid "State"
|
@@ -1820,7 +1914,7 @@ msgstr "seg"
|
|
1820 |
|
1821 |
#: templates/debug/plugins-themes-sync.php:23
|
1822 |
msgid "Plugins & Themes Sync"
|
1823 |
-
msgstr "Sincronizar
|
1824 |
|
1825 |
#: templates/debug/plugins-themes-sync.php:28
|
1826 |
msgid "Total"
|
@@ -1833,7 +1927,7 @@ msgstr "Último"
|
|
1833 |
|
1834 |
#: templates/debug/scheduled-crons.php:76
|
1835 |
msgid "Scheduled Crons"
|
1836 |
-
msgstr "Crons
|
1837 |
|
1838 |
#: templates/debug/scheduled-crons.php:81
|
1839 |
msgid "Module"
|
@@ -1841,11 +1935,11 @@ msgstr "Módulo"
|
|
1841 |
|
1842 |
#: templates/debug/scheduled-crons.php:82
|
1843 |
msgid "Module Type"
|
1844 |
-
msgstr "Tipo de
|
1845 |
|
1846 |
#: templates/debug/scheduled-crons.php:83
|
1847 |
msgid "Cron Type"
|
1848 |
-
msgstr "Tipo de
|
1849 |
|
1850 |
#: templates/debug/scheduled-crons.php:85
|
1851 |
msgid "Next"
|
@@ -1997,7 +2091,7 @@ msgstr "Por favor, introduce la clave de licencia que recibiste en el correo ele
|
|
1997 |
|
1998 |
#: templates/forms/license-activation.php:25
|
1999 |
msgid "Update License"
|
2000 |
-
msgstr "Activar
|
2001 |
|
2002 |
#: templates/forms/optout.php:30
|
2003 |
msgctxt "verb"
|
@@ -2017,9 +2111,30 @@ msgstr "El uso del seguimiento se hace con la intención de mejorar %s. Crear un
|
|
2017 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2018 |
msgstr "Haciendo clic en \"Desistir\", ya no enviaremos los datos de %s a %s."
|
2019 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020 |
#: templates/forms/resend-key.php:21
|
2021 |
msgid "Send License Key"
|
2022 |
-
msgstr "Enviar
|
2023 |
|
2024 |
#: templates/forms/resend-key.php:57
|
2025 |
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
@@ -2039,29 +2154,29 @@ msgstr "Premium"
|
|
2039 |
|
2040 |
#: templates/partials/network-activation.php:23
|
2041 |
msgid "Activate license on all sites in the network."
|
2042 |
-
msgstr "
|
2043 |
|
2044 |
#: templates/partials/network-activation.php:24
|
2045 |
msgid "Apply on all sites in the network."
|
2046 |
-
msgstr "
|
2047 |
|
2048 |
#: templates/partials/network-activation.php:27
|
2049 |
msgid "Activate license on all pending sites."
|
2050 |
-
msgstr "
|
2051 |
|
2052 |
#: templates/partials/network-activation.php:28
|
2053 |
msgid "Apply on all pending sites."
|
2054 |
-
msgstr "
|
2055 |
|
2056 |
#: templates/partials/network-activation.php36,
|
2057 |
#: templates/partials/network-activation.php:68
|
2058 |
msgid "allow"
|
2059 |
-
msgstr "
|
2060 |
|
2061 |
#: templates/partials/network-activation.php38,
|
2062 |
#: templates/partials/network-activation.php:70
|
2063 |
msgid "delegate"
|
2064 |
-
msgstr "
|
2065 |
|
2066 |
#: templates/partials/network-activation.php41,
|
2067 |
#: templates/partials/network-activation.php:73
|
@@ -2090,21 +2205,38 @@ msgstr "quedan %s"
|
|
2090 |
msgid "Last license"
|
2091 |
msgstr "Última licencia"
|
2092 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2093 |
#: templates/account/partials/site.php:181
|
2094 |
msgid "Owner Name"
|
2095 |
-
msgstr "
|
2096 |
|
2097 |
#: templates/account/partials/site.php:193
|
2098 |
msgid "Owner Email"
|
2099 |
-
msgstr "
|
2100 |
|
2101 |
#: templates/account/partials/site.php:205
|
2102 |
msgid "Owner ID"
|
2103 |
-
msgstr "
|
2104 |
|
2105 |
#: templates/account/partials/site.php:270
|
2106 |
msgid "Subscription"
|
2107 |
-
msgstr "
|
2108 |
|
2109 |
#: templates/forms/deactivation/contact.php:19
|
2110 |
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
@@ -2112,7 +2244,7 @@ msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una opor
|
|
2112 |
|
2113 |
#: templates/forms/deactivation/contact.php:22
|
2114 |
msgid "Contact Support"
|
2115 |
-
msgstr "Contactar
|
2116 |
|
2117 |
#: templates/forms/deactivation/form.php:56
|
2118 |
msgid "Anonymous feedback"
|
@@ -2142,25 +2274,25 @@ msgstr "desactivando"
|
|
2142 |
msgid "switching"
|
2143 |
msgstr "cambiando"
|
2144 |
|
2145 |
-
#: templates/forms/deactivation/form.php:
|
2146 |
msgid "Submit & %s"
|
2147 |
msgstr "Enviar y %s"
|
2148 |
|
2149 |
-
#: templates/forms/deactivation/form.php:
|
2150 |
msgid "Kindly tell us the reason so we can improve."
|
2151 |
msgstr "Por favor, dínos la razón para que podamos mejorar."
|
2152 |
|
2153 |
-
#: templates/forms/deactivation/form.php:
|
2154 |
msgid "Yes - %s"
|
2155 |
msgstr "Si - %s"
|
2156 |
|
2157 |
-
#: templates/forms/deactivation/form.php:
|
2158 |
msgid "Skip & %s"
|
2159 |
msgstr "Saltar y %s"
|
2160 |
|
2161 |
#: templates/forms/deactivation/retry-skip.php:21
|
2162 |
msgid "Click here to use the plugin anonymously"
|
2163 |
-
msgstr "Haz
|
2164 |
|
2165 |
#: templates/forms/deactivation/retry-skip.php:23
|
2166 |
msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
|
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
|
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: 2018-05-24 18:11+0000\n"
|
11 |
"Last-Translator: Carlos Longarela <carlos@longarela.eu>\n"
|
12 |
"Language: es_ES\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
+
#: includes/class-freemius.php:1551
|
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:1553
|
29 |
msgid "Error"
|
30 |
msgstr "Error"
|
31 |
|
32 |
+
#: includes/class-freemius.php:1871
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "He encontrado un mejor %s"
|
35 |
|
36 |
+
#: includes/class-freemius.php:1873
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "¿Cuál es el nombre de %s?"
|
39 |
|
40 |
+
#: includes/class-freemius.php:1879
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "Es temporal %s. Sólo estoy depurando un problema."
|
43 |
|
44 |
+
#: includes/class-freemius.php:1881
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Desactivación"
|
47 |
|
48 |
+
#: includes/class-freemius.php:1882
|
49 |
msgid "Theme Switch"
|
50 |
+
msgstr "Cambiar tema"
|
51 |
|
52 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
53 |
msgid "Other"
|
54 |
msgstr "Otra"
|
55 |
|
56 |
+
#: includes/class-freemius.php:1899
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "Ya no necesito el %s"
|
59 |
|
60 |
+
#: includes/class-freemius.php:1906
|
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:1912
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "%s ha roto mi sitio"
|
67 |
|
68 |
+
#: includes/class-freemius.php:1919
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "%s de repente ha dejado de funcionar"
|
71 |
|
72 |
+
#: includes/class-freemius.php:1929
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "No puedo pagarlo durante más tiempo"
|
75 |
|
76 |
+
#: includes/class-freemius.php:1931
|
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:1937
|
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:1958
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "%s no funcionaba"
|
87 |
|
88 |
+
#: includes/class-freemius.php:1968
|
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:1976
|
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:1978
|
97 |
msgid "What feature?"
|
98 |
msgstr "¿Qué característica?"
|
99 |
|
100 |
+
#: includes/class-freemius.php:1982
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "%s no funciona"
|
103 |
|
104 |
+
#: includes/class-freemius.php:1984
|
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:1988
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "No es lo que estaba buscando"
|
111 |
|
112 |
+
#: includes/class-freemius.php:1990
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "¿Que has estado buscando?"
|
115 |
|
116 |
+
#: includes/class-freemius.php:1994
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "%s no funciona como esperaba"
|
119 |
|
120 |
+
#: includes/class-freemius.php:1996
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "¿Qué esperas?"
|
123 |
|
124 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Debug Freemius"
|
127 |
|
128 |
+
#: includes/class-freemius.php:3402
|
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:3404
|
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:3411
|
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:3516
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Vamos, adelante"
|
143 |
|
144 |
+
#: includes/class-freemius.php:3521
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "No - sólo desactivar"
|
147 |
|
148 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
149 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
150 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
151 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
152 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
153 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
154 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
155 |
msgctxt "exclamation"
|
156 |
msgid "Oops"
|
157 |
msgstr "Oops"
|
158 |
|
159 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
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:4064
|
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.php4176, includes/class-freemius.php4201,
|
174 |
+
#: includes/class-freemius.php:17103
|
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:4815
|
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.php4827, includes/class-freemius.php:6660
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "W00t"
|
186 |
|
187 |
+
#: includes/class-freemius.php:4842
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Tienes una licencia %s."
|
190 |
|
191 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
192 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
193 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
194 |
+
#: includes/class-freemius.php:16891
|
195 |
msgctxt "interjection expressing joy or exuberance"
|
196 |
msgid "Yee-haw"
|
197 |
msgstr "Vaya"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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.php5123, templates/add-ons.php99,
|
208 |
+
#: templates/account/partials/addon.php:283
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Más información sobre %s"
|
211 |
|
212 |
+
#: includes/class-freemius.php:5124
|
213 |
msgid "Purchase License"
|
214 |
+
msgstr "Comprar licencia"
|
215 |
|
216 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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:6039
|
221 |
msgid "start the trial"
|
222 |
msgstr "comenzar el período de prueba"
|
223 |
|
224 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
225 |
msgid "complete the install"
|
226 |
msgstr "completar la instalación"
|
227 |
|
228 |
+
#: includes/class-freemius.php:6147
|
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:6150
|
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:6227
|
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:6231
|
242 |
msgid "Opt in to make \"%s\" Better!"
|
243 |
msgstr "¡Inscribirte para hacer \"%s\" Mejor!"
|
244 |
|
245 |
+
#: includes/class-freemius.php:6659
|
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.php8384, includes/class-fs-plugin-updater.php581,
|
250 |
+
#: includes/class-fs-plugin-updater.php733,
|
251 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
252 |
msgid "Add-On"
|
253 |
msgstr "Complemento"
|
254 |
|
255 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
256 |
+
#: templates/debug.php:510
|
257 |
msgid "Plugin"
|
258 |
msgstr "Plugin"
|
259 |
|
260 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
261 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
262 |
msgid "Theme"
|
263 |
msgstr "Tema"
|
264 |
|
265 |
+
#: includes/class-freemius.php:10808
|
266 |
msgid "invalid_site_details_collection"
|
267 |
msgstr "invalid_site_details_collection"
|
268 |
|
269 |
+
#: includes/class-freemius.php:10928
|
270 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
271 |
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?"
|
272 |
|
273 |
+
#: includes/class-freemius.php:10930
|
274 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
275 |
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?"
|
276 |
|
277 |
+
#: includes/class-freemius.php:11166
|
278 |
msgid "Account is pending activation."
|
279 |
msgstr "La cuenta está pendiente de activación"
|
280 |
|
281 |
+
#: includes/class-freemius.php:13608
|
282 |
msgid "%s activation was successfully completed."
|
283 |
msgstr "%s activación se completó con éxito."
|
284 |
|
285 |
+
#: includes/class-freemius.php:13622
|
286 |
msgid "Your account was successfully activated with the %s plan."
|
287 |
msgstr "Tu cuenta se ha activado correctamente con el plan %s."
|
288 |
|
289 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
290 |
msgid "Your trial has been successfully started."
|
291 |
msgstr "Tu versión de prueba se ha iniciado con éxito."
|
292 |
|
293 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
294 |
+
#: includes/class-freemius.php:14317
|
295 |
msgid "Couldn't activate %s."
|
296 |
msgstr "No se puede activar %s."
|
297 |
|
298 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
299 |
+
#: includes/class-freemius.php:14318
|
300 |
msgid "Please contact us with the following message:"
|
301 |
msgstr "Por favor contáctanos con el siguiente mensaje:"
|
302 |
|
303 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
304 |
msgid "Upgrade"
|
305 |
msgstr "Actualizar"
|
306 |
|
307 |
+
#: includes/class-freemius.php:14672
|
308 |
msgid "Start Trial"
|
309 |
+
msgstr "Comenzar el período de prueba"
|
310 |
|
311 |
+
#: includes/class-freemius.php:14674
|
312 |
msgid "Pricing"
|
313 |
msgstr "Precio"
|
314 |
|
315 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
316 |
msgid "Affiliation"
|
317 |
msgstr "Afiliación"
|
318 |
|
319 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
320 |
+
#: templates/account.php146, templates/debug.php:314
|
321 |
msgid "Account"
|
322 |
msgstr "Cuenta"
|
323 |
|
324 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
325 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
326 |
msgid "Contact Us"
|
327 |
msgstr "Contáctanos"
|
328 |
|
329 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
330 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
331 |
+
#: templates/account/partials/addon.php:37
|
332 |
msgid "Add-Ons"
|
333 |
msgstr "Complementos"
|
334 |
|
335 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
336 |
msgctxt "noun"
|
337 |
msgid "Pricing"
|
338 |
msgstr "Precio"
|
339 |
|
340 |
+
#: includes/class-freemius.php15009,
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
342 |
msgid "Support Forum"
|
343 |
+
msgstr "Foro de soporte"
|
344 |
|
345 |
+
#: includes/class-freemius.php:15794
|
346 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
347 |
+
msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
|
348 |
|
349 |
+
#: includes/class-freemius.php:15795
|
350 |
msgctxt "a positive response"
|
351 |
msgid "Right on"
|
352 |
msgstr "Bien hecho"
|
353 |
|
354 |
+
#: includes/class-freemius.php:16367
|
355 |
msgid "Your %s Add-on plan was successfully upgraded."
|
356 |
msgstr "Tu complemento %s del plan se actualizó con éxito."
|
357 |
|
358 |
+
#: includes/class-freemius.php:16369
|
359 |
msgid "%s Add-on was successfully purchased."
|
360 |
msgstr "El complemento %s ha sido comprado correctamente."
|
361 |
|
362 |
+
#: includes/class-freemius.php:16372
|
363 |
msgid "Download the latest version"
|
364 |
msgstr "Descargar la última versión"
|
365 |
|
366 |
+
#: includes/class-freemius.php:16444
|
367 |
msgctxt "%1s - plugin title, %2s - API domain"
|
368 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
369 |
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"
|
370 |
|
371 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
372 |
+
#: includes/class-freemius.php:16927
|
373 |
msgid "Error received from the server:"
|
374 |
msgstr "Error recibido del servidor:"
|
375 |
|
376 |
+
#: includes/class-freemius.php:16457
|
377 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
378 |
+
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."
|
379 |
|
380 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
381 |
+
#: includes/class-freemius.php:16910
|
382 |
msgctxt ""
|
383 |
msgid "Hmm"
|
384 |
msgstr "Hmm"
|
385 |
|
386 |
+
#: includes/class-freemius.php:16652
|
387 |
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."
|
388 |
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."
|
389 |
|
390 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
391 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
392 |
msgctxt "trial period"
|
393 |
msgid "Trial"
|
394 |
msgstr "Período de Prueba Gratuito"
|
395 |
|
396 |
+
#: includes/class-freemius.php:16658
|
397 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
398 |
msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
|
399 |
|
400 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
401 |
msgid "Please contact us here"
|
402 |
msgstr "Contacta aquí con nosotros"
|
403 |
|
404 |
+
#: includes/class-freemius.php:16672
|
405 |
msgid "Your plan was successfully upgraded."
|
406 |
msgstr "Tu plan se actualizó con éxito."
|
407 |
|
408 |
+
#: includes/class-freemius.php:16689
|
409 |
msgid "Your plan was successfully changed to %s."
|
410 |
msgstr "Tu plan se cambió correctamente a %s."
|
411 |
|
412 |
+
#: includes/class-freemius.php:16705
|
413 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
414 |
msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
|
415 |
|
416 |
+
#: includes/class-freemius.php:16707
|
417 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
418 |
+
msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
|
419 |
+
|
420 |
+
#: includes/class-freemius.php:16715
|
421 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
422 |
msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
|
423 |
|
424 |
+
#: includes/class-freemius.php:16728
|
425 |
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."
|
426 |
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."
|
427 |
|
428 |
+
#: includes/class-freemius.php:16751
|
429 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
430 |
msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
|
431 |
|
432 |
+
#: includes/class-freemius.php:16753
|
433 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
434 |
+
msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
|
435 |
+
|
436 |
+
#: includes/class-freemius.php:16858
|
437 |
msgid "It looks like the license could not be activated."
|
438 |
msgstr "Parece que la licencia no se pudo activar."
|
439 |
|
440 |
+
#: includes/class-freemius.php:16888
|
441 |
msgid "Your license was successfully activated."
|
442 |
msgstr "Tu licencia fue activada correctamente."
|
443 |
|
444 |
+
#: includes/class-freemius.php:16914
|
445 |
msgid "It looks like your site currently doesn't have an active license."
|
446 |
msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
|
447 |
|
448 |
+
#: includes/class-freemius.php:16926
|
449 |
msgid "It looks like the license deactivation failed."
|
450 |
msgstr "Parece que la desactivación de licencia ha fallado."
|
451 |
|
452 |
+
#: includes/class-freemius.php:16954
|
453 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
454 |
msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
|
455 |
|
456 |
+
#: includes/class-freemius.php:16955
|
457 |
msgid "O.K"
|
458 |
msgstr "O.K"
|
459 |
|
460 |
+
#: includes/class-freemius.php:17003
|
461 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
462 |
msgstr "Tu plan fue degradado con éxito. Tu licencia %s plan caducará en %s."
|
463 |
|
464 |
+
#: includes/class-freemius.php:17013
|
465 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
466 |
msgstr "Parece que estamos teniendo algún problema temporal con tu degradación de plan. Vuelve a intentarlo en unos minutos."
|
467 |
|
468 |
+
#: includes/class-freemius.php:17037
|
469 |
msgid "You are already running the %s in a trial mode."
|
470 |
msgstr "Estás ejecutando %s en modo de prueba."
|
471 |
|
472 |
+
#: includes/class-freemius.php:17048
|
473 |
msgid "You already utilized a trial before."
|
474 |
msgstr "Ya utilizaste un período de prueba antes."
|
475 |
|
476 |
+
#: includes/class-freemius.php:17062
|
477 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
478 |
msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
|
479 |
|
480 |
+
#: includes/class-freemius.php:17073
|
481 |
msgid "Plan %s does not support a trial period."
|
482 |
msgstr "El plan %s no admite un período de prueba."
|
483 |
|
484 |
+
#: includes/class-freemius.php:17084
|
485 |
msgid "None of the %s's plans supports a trial period."
|
486 |
msgstr "Ninguno de los planes de %s soportan un período de prueba."
|
487 |
|
488 |
+
#: includes/class-freemius.php:17134
|
489 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
490 |
msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
|
491 |
|
492 |
+
#: includes/class-freemius.php:17185
|
493 |
msgid "Your %s free trial was successfully cancelled."
|
494 |
msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
|
495 |
|
496 |
+
#: includes/class-freemius.php:17190
|
497 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
498 |
msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
|
499 |
|
500 |
+
#: includes/class-freemius.php:17474
|
501 |
msgid "Version %s was released."
|
502 |
msgstr "La versión %s se ha lanzado."
|
503 |
|
504 |
+
#: includes/class-freemius.php:17474
|
505 |
msgid "Please download %s."
|
506 |
msgstr "Por favor descarga %s."
|
507 |
|
508 |
+
#: includes/class-freemius.php:17481
|
509 |
msgid "the latest %s version here"
|
510 |
msgstr "la última versión %s aquí"
|
511 |
|
512 |
+
#: includes/class-freemius.php:17486
|
513 |
msgid "New"
|
514 |
msgstr "Nuevo"
|
515 |
|
516 |
+
#: includes/class-freemius.php:17491
|
517 |
msgid "Seems like you got the latest release."
|
518 |
msgstr "Parece que tienes la última versión."
|
519 |
|
520 |
+
#: includes/class-freemius.php:17492
|
521 |
msgid "You are all good!"
|
522 |
msgstr "¡Está todo listo!"
|
523 |
|
524 |
+
#: includes/class-freemius.php:17758
|
525 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
526 |
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."
|
527 |
|
528 |
+
#: includes/class-freemius.php:17893
|
529 |
msgid "Site successfully opted in."
|
530 |
+
msgstr "Sitio dado de alta correctamente."
|
531 |
|
532 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
533 |
msgid "Awesome"
|
534 |
msgstr "Increíble"
|
535 |
|
536 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
537 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
538 |
msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
|
539 |
|
540 |
+
#: includes/class-freemius.php:17911
|
541 |
msgid "Thank you!"
|
542 |
+
msgstr "¡Gracias!"
|
543 |
|
544 |
+
#: includes/class-freemius.php:17918
|
545 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
546 |
+
msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
|
547 |
|
548 |
+
#: includes/class-freemius.php:18033
|
549 |
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."
|
550 |
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."
|
551 |
|
552 |
+
#: includes/class-freemius.php:18039
|
553 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
554 |
msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
|
555 |
|
556 |
+
#: includes/class-freemius.php:18044
|
557 |
msgid "%s is the new owner of the account."
|
558 |
msgstr "%s es el nuevo dueño de la cuenta."
|
559 |
|
560 |
+
#: includes/class-freemius.php:18046
|
561 |
msgctxt "as congratulations"
|
562 |
msgid "Congrats"
|
563 |
msgstr "Felicidades"
|
564 |
|
565 |
+
#: includes/class-freemius.php:18066
|
566 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
567 |
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."
|
568 |
|
569 |
+
#: includes/class-freemius.php:18067
|
570 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
571 |
+
msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
|
572 |
|
573 |
+
#: includes/class-freemius.php:18074
|
574 |
msgid "Change Ownership"
|
575 |
+
msgstr "Cambiar propietario"
|
576 |
|
577 |
+
#: includes/class-freemius.php:18082
|
578 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
579 |
msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
|
580 |
|
581 |
+
#: includes/class-freemius.php:18094
|
582 |
msgid "Please provide your full name."
|
583 |
msgstr "Por favor, dinos tu nombre completo."
|
584 |
|
585 |
+
#: includes/class-freemius.php:18099
|
586 |
msgid "Your name was successfully updated."
|
587 |
msgstr "Tu nombre fue actualizado correctamente."
|
588 |
|
589 |
+
#: includes/class-freemius.php:18160
|
590 |
msgid "You have successfully updated your %s."
|
591 |
msgstr "Has actualizado correctamente tu %s."
|
592 |
|
593 |
+
#: includes/class-freemius.php:18300
|
594 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
595 |
msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
|
596 |
|
597 |
+
#: includes/class-freemius.php:18301
|
598 |
msgctxt "advance notice of something that will need attention."
|
599 |
msgid "Heads up"
|
600 |
msgstr "Atención"
|
601 |
|
602 |
+
#: includes/class-freemius.php:18711
|
603 |
msgctxt "exclamation"
|
604 |
msgid "Hey"
|
605 |
msgstr "Hey"
|
606 |
|
607 |
+
#: includes/class-freemius.php:18711
|
608 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
609 |
msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
|
610 |
|
611 |
+
#: includes/class-freemius.php:18719
|
612 |
msgid "No commitment for %s days - cancel anytime!"
|
613 |
msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
|
614 |
|
615 |
+
#: includes/class-freemius.php:18720
|
616 |
msgid "No credit card required"
|
617 |
msgstr "No se necesita tarjeta de crédito"
|
618 |
|
619 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
620 |
msgctxt "call to action"
|
621 |
msgid "Start free trial"
|
622 |
msgstr "Comenzar el período de prueba gratuito"
|
623 |
|
624 |
+
#: includes/class-freemius.php:18804
|
625 |
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!"
|
626 |
msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
|
627 |
|
628 |
+
#: includes/class-freemius.php:18813
|
629 |
msgid "Learn more"
|
630 |
msgstr "Saber más"
|
631 |
|
632 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
633 |
+
#: templates/account.php497, templates/connect.php169,
|
634 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
635 |
+
#: templates/account/partials/addon.php:230
|
636 |
msgid "Activate License"
|
637 |
+
msgstr "Activar licencia"
|
638 |
|
639 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
640 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
641 |
msgid "Change License"
|
642 |
+
msgstr "Cambiar licencia"
|
643 |
|
644 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
645 |
msgid "Opt Out"
|
646 |
msgstr "Darse de baja"
|
647 |
|
648 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
649 |
#: templates/account/partials/site.php43,
|
650 |
#: templates/account/partials/site.php:161
|
651 |
msgid "Opt In"
|
652 |
msgstr "Inscribirse"
|
653 |
|
654 |
+
#: includes/class-freemius.php:19245
|
655 |
msgid "Please follow these steps to complete the upgrade"
|
656 |
msgstr "Por favor, sigue estos pasos para completar la actualización"
|
657 |
|
658 |
+
#: includes/class-freemius.php:19249
|
659 |
msgid "Download the latest %s version"
|
660 |
msgstr "Descargar la última versión %s"
|
661 |
|
662 |
+
#: includes/class-freemius.php:19253
|
663 |
msgid "Upload and activate the downloaded version"
|
664 |
msgstr "Cargar y activar la versión descargada"
|
665 |
|
666 |
+
#: includes/class-freemius.php:19255
|
667 |
msgid "How to upload and activate?"
|
668 |
msgstr "¿Cómo subirlo y activarlo?"
|
669 |
|
670 |
+
#: includes/class-freemius.php:19384
|
671 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
672 |
+
msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
|
673 |
|
674 |
+
#: includes/class-freemius.php:19545
|
675 |
msgid "Auto installation only works for opted-in users."
|
676 |
msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
|
677 |
|
678 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
679 |
+
#: includes/class-fs-plugin-updater.php713,
|
680 |
+
#: includes/class-fs-plugin-updater.php:727
|
681 |
msgid "Invalid module ID."
|
682 |
+
msgstr "Id de módulo no válido."
|
683 |
|
684 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
685 |
msgid "Premium version already active."
|
686 |
+
msgstr "Versión premium ya activa."
|
687 |
|
688 |
+
#: includes/class-freemius.php:19571
|
689 |
msgid "You do not have a valid license to access the premium version."
|
690 |
msgstr "No tienes una licencia válida para acceder a la versión premium."
|
691 |
|
692 |
+
#: includes/class-freemius.php:19578
|
693 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
694 |
msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
|
695 |
|
696 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
697 |
msgid "Premium add-on version already installed."
|
698 |
+
msgstr "Versión del complemento premium ya instalada."
|
699 |
|
700 |
+
#: includes/class-freemius.php:19941
|
701 |
msgid "View paid features"
|
702 |
msgstr "Ver las funciones de pago"
|
703 |
|
704 |
+
#: includes/class-freemius.php:20251
|
705 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
706 |
+
msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
|
707 |
+
|
708 |
+
#: includes/class-freemius.php:20252
|
709 |
+
msgid "Thank you so much for using %s!"
|
710 |
+
msgstr "¡Muchas gracias por utilizar %s!"
|
711 |
+
|
712 |
+
#: includes/class-freemius.php:20258
|
713 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
714 |
+
msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
|
715 |
+
|
716 |
+
#: includes/class-freemius.php:20262
|
717 |
+
msgid "Thank you so much for using our products!"
|
718 |
+
msgstr "¡Muchas gracias por utilizar nuestros productos!"
|
719 |
+
|
720 |
+
#: includes/class-freemius.php:20263
|
721 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
722 |
+
msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
|
723 |
+
|
724 |
+
#: includes/class-freemius.php:20282
|
725 |
+
msgid "%s and its add-ons"
|
726 |
+
msgstr "%s y sus complementos"
|
727 |
|
728 |
+
#: includes/class-freemius.php:20291
|
729 |
+
msgid "Products"
|
730 |
+
msgstr "Productos"
|
731 |
+
|
732 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
733 |
+
msgid "Yes"
|
734 |
+
msgstr "Si"
|
735 |
+
|
736 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
737 |
+
msgid "send me security & feature updates, educational content and offers."
|
738 |
+
msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
|
739 |
+
|
740 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
741 |
+
msgid "No"
|
742 |
+
msgstr "No"
|
743 |
+
|
744 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
745 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
746 |
+
msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
|
747 |
+
|
748 |
+
#: includes/class-freemius.php:20312
|
749 |
+
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 🙂"
|
750 |
+
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 🙂"
|
751 |
+
|
752 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
753 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
754 |
+
msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
|
755 |
+
|
756 |
+
#: includes/class-freemius.php:20598
|
757 |
+
msgid "License key is empty."
|
758 |
+
msgstr "La clave de licencia está vacía."
|
759 |
+
|
760 |
+
#: includes/class-fs-plugin-updater.php184,
|
761 |
+
#: includes/class-fs-plugin-updater.php:219
|
762 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
763 |
+
msgstr "%s Renueva tu licencia ahora %s para acceder a la versión %s seguridad y nuevas características y soporte."
|
764 |
+
|
765 |
+
#: includes/class-fs-plugin-updater.php:776
|
766 |
msgid "Installing plugin: %s"
|
767 |
msgstr "Instalando plugin: %s"
|
768 |
|
769 |
+
#: includes/class-fs-plugin-updater.php:817
|
770 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
771 |
msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
|
772 |
|
773 |
+
#: includes/class-fs-plugin-updater.php:923
|
774 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
775 |
msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
|
776 |
|
777 |
+
#: includes/fs-plugin-info-dialog.php336,
|
778 |
+
#: templates/account/partials/addon.php:287
|
779 |
msgctxt "verb"
|
780 |
msgid "Purchase"
|
781 |
msgstr "Comprar"
|
782 |
|
783 |
+
#: includes/fs-plugin-info-dialog.php:339
|
784 |
msgid "Start my free %s"
|
785 |
msgstr "Comenzar mi período gratuito de %s"
|
786 |
|
787 |
+
#: includes/fs-plugin-info-dialog.php:380
|
788 |
+
msgid "Install Free Version Now"
|
789 |
+
msgstr "Instalar la versión gratuita ahora"
|
790 |
+
|
791 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
792 |
+
#: templates/account/partials/addon.php267,
|
793 |
+
#: templates/account/partials/addon.php:317
|
794 |
+
msgid "Install Now"
|
795 |
+
msgstr "Instalar ahora"
|
796 |
+
|
797 |
+
#: includes/fs-plugin-info-dialog.php:392
|
798 |
+
msgctxt "as download latest version"
|
799 |
+
msgid "Download Latest Free Version"
|
800 |
+
msgstr "Descargar la última versión gratuita"
|
801 |
+
|
802 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
803 |
+
#: templates/account/partials/addon.php:21
|
804 |
msgctxt "as download latest version"
|
805 |
msgid "Download Latest"
|
806 |
msgstr "Descargar la última"
|
807 |
|
808 |
+
#: includes/fs-plugin-info-dialog.php:403
|
809 |
+
msgid "Install Free Version Update Now"
|
810 |
+
msgstr "Instalar la actualización gratuita ahora"
|
|
|
811 |
|
812 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
813 |
msgid "Install Update Now"
|
814 |
+
msgstr "Instalar actualización ahora"
|
815 |
+
|
816 |
+
#: includes/fs-plugin-info-dialog.php:415
|
817 |
+
msgid "Newer Free Version (%s) Installed"
|
818 |
+
msgstr "Versión gratuita más reciente (%s) instalada"
|
819 |
|
820 |
+
#: includes/fs-plugin-info-dialog.php:416
|
821 |
msgid "Newer Version (%s) Installed"
|
822 |
+
msgstr "Versión más reciente (%s) instalada"
|
823 |
|
824 |
+
#: includes/fs-plugin-info-dialog.php:424
|
825 |
+
msgid "Latest Free Version Installed"
|
826 |
+
msgstr "Última versión gratuita instalada"
|
827 |
+
|
828 |
+
#: includes/fs-plugin-info-dialog.php:425
|
829 |
msgid "Latest Version Installed"
|
830 |
+
msgstr "Última versión instalada"
|
831 |
|
832 |
+
#: includes/fs-plugin-info-dialog.php:580
|
833 |
msgctxt "Plugin installer section title"
|
834 |
msgid "Description"
|
835 |
msgstr "Descripción"
|
836 |
|
837 |
+
#: includes/fs-plugin-info-dialog.php:581
|
838 |
msgctxt "Plugin installer section title"
|
839 |
msgid "Installation"
|
840 |
msgstr "Instalación"
|
841 |
|
842 |
+
#: includes/fs-plugin-info-dialog.php:582
|
843 |
msgctxt "Plugin installer section title"
|
844 |
msgid "FAQ"
|
845 |
msgstr "FAQ"
|
846 |
|
847 |
+
#: includes/fs-plugin-info-dialog.php583,
|
848 |
#: templates/plugin-info/description.php:55
|
849 |
msgid "Screenshots"
|
850 |
msgstr "Capturas de pantalla"
|
851 |
|
852 |
+
#: includes/fs-plugin-info-dialog.php:584
|
853 |
msgctxt "Plugin installer section title"
|
854 |
msgid "Changelog"
|
855 |
msgstr "Registro de cambios"
|
856 |
|
857 |
+
#: includes/fs-plugin-info-dialog.php:585
|
858 |
msgctxt "Plugin installer section title"
|
859 |
msgid "Reviews"
|
860 |
msgstr "Valoraciones"
|
861 |
|
862 |
+
#: includes/fs-plugin-info-dialog.php:586
|
863 |
msgctxt "Plugin installer section title"
|
864 |
msgid "Other Notes"
|
865 |
+
msgstr "Otras notas"
|
866 |
|
867 |
+
#: includes/fs-plugin-info-dialog.php:601
|
868 |
msgctxt "Plugin installer section title"
|
869 |
msgid "Features & Pricing"
|
870 |
+
msgstr "Características y precios"
|
871 |
|
872 |
+
#: includes/fs-plugin-info-dialog.php:611
|
873 |
msgid "Plugin Install"
|
874 |
+
msgstr "Instalar plugin"
|
875 |
|
876 |
+
#: includes/fs-plugin-info-dialog.php:683
|
877 |
msgctxt "e.g. Professional Plan"
|
878 |
msgid "%s Plan"
|
879 |
msgstr "Plan %s"
|
880 |
|
881 |
+
#: includes/fs-plugin-info-dialog.php:709
|
882 |
msgctxt "e.g. the best product"
|
883 |
msgid "Best"
|
884 |
msgstr "El mejor"
|
885 |
|
886 |
+
#: includes/fs-plugin-info-dialog.php715,
|
887 |
+
#: includes/fs-plugin-info-dialog.php:735
|
888 |
msgctxt "as every month"
|
889 |
msgid "Monthly"
|
890 |
msgstr "Mensual"
|
891 |
|
892 |
+
#: includes/fs-plugin-info-dialog.php:718
|
893 |
msgctxt "as once a year"
|
894 |
msgid "Annual"
|
895 |
msgstr "Anual"
|
896 |
|
897 |
+
#: includes/fs-plugin-info-dialog.php:721
|
898 |
msgid "Lifetime"
|
899 |
msgstr "Permanente"
|
900 |
|
901 |
+
#: includes/fs-plugin-info-dialog.php735,
|
902 |
+
#: includes/fs-plugin-info-dialog.php737,
|
903 |
+
#: includes/fs-plugin-info-dialog.php:739
|
904 |
msgctxt "e.g. billed monthly"
|
905 |
msgid "Billed %s"
|
906 |
msgstr "Facturado %s"
|
907 |
|
908 |
+
#: includes/fs-plugin-info-dialog.php:737
|
909 |
msgctxt "as once a year"
|
910 |
msgid "Annually"
|
911 |
msgstr "Anualmente"
|
912 |
|
913 |
+
#: includes/fs-plugin-info-dialog.php:739
|
914 |
msgctxt "as once a year"
|
915 |
msgid "Once"
|
916 |
msgstr "Una vez"
|
917 |
|
918 |
+
#: includes/fs-plugin-info-dialog.php:745
|
919 |
msgid "Single Site License"
|
920 |
+
msgstr "Licencia para un único sitio"
|
921 |
|
922 |
+
#: includes/fs-plugin-info-dialog.php:747
|
923 |
msgid "Unlimited Licenses"
|
924 |
+
msgstr "Licencias ilimitadas"
|
925 |
|
926 |
+
#: includes/fs-plugin-info-dialog.php:749
|
927 |
msgid "Up to %s Sites"
|
928 |
+
msgstr "Hasta %s sitios"
|
929 |
|
930 |
+
#: includes/fs-plugin-info-dialog.php759,
|
931 |
#: templates/plugin-info/features.php:82
|
932 |
msgctxt "as monthly period"
|
933 |
msgid "mo"
|
934 |
msgstr "me"
|
935 |
|
936 |
+
#: includes/fs-plugin-info-dialog.php766,
|
937 |
#: templates/plugin-info/features.php:80
|
938 |
msgctxt "as annual period"
|
939 |
msgid "year"
|
940 |
msgstr "año"
|
941 |
|
942 |
+
#: includes/fs-plugin-info-dialog.php:820
|
943 |
msgctxt "noun"
|
944 |
msgid "Price"
|
945 |
msgstr "Precio"
|
946 |
|
947 |
+
#: includes/fs-plugin-info-dialog.php:868
|
948 |
msgid "Save %s"
|
949 |
msgstr "Guardar %s"
|
950 |
|
951 |
+
#: includes/fs-plugin-info-dialog.php:878
|
952 |
msgid "No commitment for %s - cancel anytime"
|
953 |
msgstr "Sin compromiso para %s - cancelar en cualquier momento"
|
954 |
|
955 |
+
#: includes/fs-plugin-info-dialog.php:881
|
956 |
msgid "After your free %s, pay as little as %s"
|
957 |
msgstr "Después de su período gratuito %s, pague sólo %s"
|
958 |
|
959 |
+
#: includes/fs-plugin-info-dialog.php:892
|
960 |
msgid "Details"
|
961 |
msgstr "Detalles"
|
962 |
|
963 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
964 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
965 |
+
#: templates/account/partials/addon.php:28
|
966 |
msgctxt "product version"
|
967 |
msgid "Version"
|
968 |
msgstr "Versión"
|
969 |
|
970 |
+
#: includes/fs-plugin-info-dialog.php:903
|
971 |
msgctxt "as the plugin author"
|
972 |
msgid "Author"
|
973 |
msgstr "Autor"
|
974 |
|
975 |
+
#: includes/fs-plugin-info-dialog.php:910
|
976 |
msgid "Last Updated"
|
977 |
+
msgstr "Última actualización"
|
978 |
|
979 |
+
#: includes/fs-plugin-info-dialog.php:915
|
980 |
msgctxt "x-ago"
|
981 |
msgid "%s ago"
|
982 |
msgstr "hace %s"
|
983 |
|
984 |
+
#: includes/fs-plugin-info-dialog.php:924
|
985 |
msgid "Requires WordPress Version"
|
986 |
msgstr "Necesita la versión de WordPress"
|
987 |
|
988 |
+
#: includes/fs-plugin-info-dialog.php:925
|
989 |
msgid "%s or higher"
|
990 |
msgstr "%s o mayor"
|
991 |
|
992 |
+
#: includes/fs-plugin-info-dialog.php:932
|
993 |
msgid "Compatible up to"
|
994 |
msgstr "Compatible hasta"
|
995 |
|
996 |
+
#: includes/fs-plugin-info-dialog.php:940
|
997 |
msgid "Downloaded"
|
998 |
msgstr "Descargado"
|
999 |
|
1000 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1001 |
msgid "%s time"
|
1002 |
msgstr "% vez"
|
1003 |
|
1004 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1005 |
msgid "%s times"
|
1006 |
msgstr "%s veces"
|
1007 |
|
1008 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1009 |
msgid "WordPress.org Plugin Page"
|
1010 |
+
msgstr "Página del plugin en WordPress.org"
|
1011 |
|
1012 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1013 |
msgid "Plugin Homepage"
|
1014 |
+
msgstr "Página web del plugin"
|
1015 |
|
1016 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1017 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1018 |
msgid "Donate to this plugin"
|
1019 |
msgstr "Donar a este plugin"
|
1020 |
|
1021 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1022 |
msgid "Average Rating"
|
1023 |
+
msgstr "Calificación media"
|
1024 |
|
1025 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1026 |
msgid "based on %s"
|
1027 |
msgstr "basado en %s"
|
1028 |
|
1029 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1030 |
msgid "%s rating"
|
1031 |
msgstr "%s calificación"
|
1032 |
|
1033 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1034 |
msgid "%s ratings"
|
1035 |
msgstr "%s calificaciones"
|
1036 |
|
1037 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1038 |
msgid "%s star"
|
1039 |
msgstr "%s estrella"
|
1040 |
|
1041 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1042 |
msgid "%s stars"
|
1043 |
msgstr "%s estrellas"
|
1044 |
|
1045 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1046 |
msgid "Click to see reviews that provided a rating of %s"
|
1047 |
msgstr "Haz clic para ver los comentarios con una valoración de %s"
|
1048 |
|
1049 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1050 |
msgid "Contributors"
|
1051 |
msgstr "Colaboradores"
|
1052 |
|
1053 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1054 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1055 |
msgid "Warning"
|
1056 |
msgstr "Atencion"
|
1057 |
|
1058 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1059 |
msgid "This plugin has not been tested with your current version of WordPress."
|
1060 |
msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
|
1061 |
|
1062 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1063 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1064 |
msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
|
1065 |
|
1066 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1067 |
msgid "Paid add-on must be deployed to Freemius."
|
1068 |
msgstr "El complemento de pago se debe implementar en Freemius."
|
1069 |
|
1070 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1071 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1072 |
msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
|
1073 |
|
1074 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1075 |
+
#: templates/account/partials/site.php:295
|
1076 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1077 |
msgstr "Degradando tu plan detendrás inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %s expirará en %s."
|
1078 |
|
1079 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1080 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1081 |
msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
|
1082 |
|
1083 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1084 |
+
#: templates/account/partials/site.php:296
|
1085 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1086 |
msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tienes acceso a soporte y actualizaciones de %s."
|
1087 |
|
1088 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1089 |
+
#: templates/account/partials/site.php:297
|
1090 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1091 |
msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
|
1092 |
|
1093 |
#. translators: %s: Plan title (e.g. "Professional")
|
1094 |
#: templates/account.php86,
|
1095 |
+
#: templates/account/partials/activate-license-button.php31,
|
1096 |
+
#: templates/account/partials/addon.php:27
|
1097 |
msgid "Activate %s Plan"
|
1098 |
+
msgstr "Activar plan %s"
|
1099 |
|
1100 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1101 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1102 |
+
#: templates/account/partials/site.php:275
|
1103 |
msgid "Auto renews in %s"
|
1104 |
msgstr "Auto renovaciones en %s"
|
1105 |
|
1106 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1107 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1108 |
+
#: templates/account/partials/site.php:277
|
1109 |
msgid "Expires in %s"
|
1110 |
msgstr "Caduca en %s"
|
1111 |
|
1112 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1113 |
msgctxt "as synchronize license"
|
1114 |
msgid "Sync License"
|
1115 |
+
msgstr "Sincronizar licencia"
|
1116 |
|
1117 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1118 |
msgid "Cancel Trial"
|
1119 |
+
msgstr "Cancelar período de prueba"
|
1120 |
|
1121 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1122 |
msgid "Change Plan"
|
1123 |
msgstr "Cambiar Plan"
|
1124 |
|
1125 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1126 |
msgctxt "verb"
|
1127 |
msgid "Upgrade"
|
1128 |
msgstr "Actualizar"
|
1129 |
|
1130 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1131 |
+
#: templates/account/partials/site.php:298
|
1132 |
msgctxt "verb"
|
1133 |
msgid "Downgrade"
|
1134 |
msgstr "Degradar"
|
1135 |
|
1136 |
#: templates/account.php99, templates/add-ons.php126,
|
1137 |
#: templates/plugin-info/features.php72,
|
1138 |
+
#: templates/account/partials/addon.php40,
|
1139 |
#: templates/account/partials/site.php:31
|
1140 |
msgid "Free"
|
1141 |
msgstr "Gratis"
|
1142 |
|
1143 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1144 |
msgid "Activate"
|
1145 |
msgstr "Activar"
|
1146 |
|
1147 |
+
#: templates/account.php101, templates/debug.php361,
|
1148 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1149 |
+
#: templates/account/partials/addon.php:42
|
1150 |
msgctxt "as product pricing plan"
|
1151 |
msgid "Plan"
|
1152 |
msgstr "Plan"
|
1153 |
|
1154 |
+
#: templates/account.php:154
|
1155 |
msgid "Free Trial"
|
1156 |
+
msgstr "Período de prueba gratuito"
|
1157 |
|
1158 |
+
#: templates/account.php:165
|
1159 |
msgid "Account Details"
|
1160 |
+
msgstr "Detalles de la cuenta"
|
1161 |
|
1162 |
+
#: templates/account.php:175
|
1163 |
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?"
|
1164 |
msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
|
1165 |
|
1166 |
+
#: templates/account.php:177
|
1167 |
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?"
|
1168 |
msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
|
1169 |
|
1170 |
+
#: templates/account.php:180
|
1171 |
msgid "Delete Account"
|
1172 |
+
msgstr "Borrar cuenta"
|
1173 |
|
1174 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1175 |
#: templates/account/partials/deactivate-license-button.php:35
|
1176 |
msgid "Deactivate License"
|
1177 |
+
msgstr "Desactivar licencia"
|
1178 |
|
1179 |
+
#: templates/account.php:210
|
1180 |
msgid "Are you sure you want to proceed?"
|
1181 |
msgstr "¿Estás seguro que quieres proceder?"
|
1182 |
|
1183 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1184 |
msgid "Cancel Subscription"
|
1185 |
+
msgstr "Cancelar suscripción"
|
1186 |
|
1187 |
+
#: templates/account.php:239
|
1188 |
msgctxt "as synchronize"
|
1189 |
msgid "Sync"
|
1190 |
msgstr "Sincronizar"
|
1191 |
|
1192 |
+
#: templates/account.php253, templates/debug.php:477
|
1193 |
msgid "Name"
|
1194 |
msgstr "Nombre"
|
1195 |
|
1196 |
+
#: templates/account.php259, templates/debug.php:478
|
1197 |
msgid "Email"
|
1198 |
+
msgstr "Correo electrónico"
|
1199 |
|
1200 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1201 |
msgid "User ID"
|
1202 |
+
msgstr "ID de usuario"
|
1203 |
|
1204 |
+
#: templates/account.php:274
|
1205 |
msgid "Site ID"
|
1206 |
+
msgstr "ID del sitio"
|
1207 |
|
1208 |
+
#: templates/account.php:277
|
1209 |
msgid "No ID"
|
1210 |
msgstr "Sin ID"
|
1211 |
|
1212 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1213 |
+
#: templates/debug.php443, templates/debug.php480,
|
1214 |
#: templates/account/partials/site.php:219
|
1215 |
msgid "Public Key"
|
1216 |
+
msgstr "Clave pública"
|
1217 |
|
1218 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1219 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1220 |
msgid "Secret Key"
|
1221 |
+
msgstr "Clave secreta"
|
1222 |
|
1223 |
+
#: templates/account.php:291
|
1224 |
msgctxt "as secret encryption key missing"
|
1225 |
msgid "No Secret"
|
1226 |
msgstr "Sin clave secreta"
|
1227 |
|
1228 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1229 |
#: templates/account/partials/site.php:114
|
1230 |
msgid "Trial"
|
1231 |
+
msgstr "Período de prueba gratuito"
|
1232 |
|
1233 |
+
#: templates/account.php329, templates/debug.php521,
|
1234 |
#: templates/account/partials/site.php:248
|
1235 |
msgid "License Key"
|
1236 |
msgstr "Clave de licencia"
|
1237 |
|
1238 |
+
#: templates/account.php:359
|
1239 |
msgid "not verified"
|
1240 |
msgstr "no verificado"
|
1241 |
|
1242 |
+
#: templates/account.php:416
|
1243 |
msgid "Premium version"
|
1244 |
+
msgstr "Versión premium"
|
1245 |
|
1246 |
+
#: templates/account.php:418
|
1247 |
msgid "Free version"
|
1248 |
+
msgstr "Versión gratuita"
|
1249 |
|
1250 |
+
#: templates/account.php:430
|
1251 |
msgid "Verify Email"
|
1252 |
+
msgstr "Verificar correo electrónico"
|
1253 |
|
1254 |
+
#: templates/account.php:441
|
1255 |
msgid "Download %s Version"
|
1256 |
+
msgstr "Descargar versión %s"
|
1257 |
|
1258 |
+
#: templates/account.php455, templates/account.php636,
|
1259 |
#: templates/account/partials/site.php237,
|
1260 |
#: templates/account/partials/site.php:255
|
1261 |
msgctxt "verb"
|
1262 |
msgid "Show"
|
1263 |
msgstr "Mostrar"
|
1264 |
|
1265 |
+
#: templates/account.php:469
|
1266 |
msgid "What is your %s?"
|
1267 |
msgstr "¿Cual es tú %s?"
|
1268 |
|
1269 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1270 |
msgctxt "verb"
|
1271 |
msgid "Edit"
|
1272 |
msgstr "Editar"
|
1273 |
|
1274 |
+
#: templates/account.php:490
|
1275 |
msgid "Sites"
|
1276 |
msgstr "Sitios"
|
1277 |
|
1278 |
+
#: templates/account.php:501
|
1279 |
msgid "Search by address"
|
1280 |
+
msgstr "Buscar por dirección"
|
1281 |
|
1282 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1283 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1284 |
+
#: templates/debug.php514, templates/debug.php587,
|
1285 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1286 |
msgid "ID"
|
1287 |
msgstr "ID"
|
1288 |
|
1289 |
+
#: templates/account.php511, templates/debug.php:357
|
1290 |
msgid "Address"
|
1291 |
+
msgstr "Dirección"
|
1292 |
|
1293 |
+
#: templates/account.php:512
|
1294 |
msgid "License"
|
1295 |
msgstr "Licencia"
|
1296 |
|
1297 |
+
#: templates/account.php:513
|
1298 |
msgid "Plan"
|
1299 |
msgstr "Plan"
|
1300 |
|
1301 |
+
#: templates/account.php:561
|
1302 |
msgctxt "as software license"
|
1303 |
msgid "License"
|
1304 |
msgstr "Licencia"
|
1305 |
|
1306 |
+
#: templates/account.php:630
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1307 |
msgctxt "verb"
|
1308 |
msgid "Hide"
|
1309 |
msgstr "Ocultar"
|
1310 |
|
1311 |
+
#: templates/account.php:665
|
1312 |
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?"
|
1313 |
+
msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?"
|
1314 |
|
1315 |
#: templates/add-ons.php:36
|
1316 |
msgid "Add Ons for %s"
|
1336 |
|
1337 |
#: templates/auto-installation.php:83
|
1338 |
msgid "Automatic Installation"
|
1339 |
+
msgstr "Instalación automática"
|
1340 |
|
1341 |
#: templates/auto-installation.php:93
|
1342 |
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."
|
1364 |
msgid "Hey %s,"
|
1365 |
msgstr "Hey %s,"
|
1366 |
|
1367 |
+
#: templates/connect.php:152
|
1368 |
msgid "Allow & Continue"
|
1369 |
+
msgstr "Permitir y continuar"
|
1370 |
|
1371 |
+
#: templates/connect.php:156
|
1372 |
msgid "Re-send activation email"
|
1373 |
msgstr "Reenviar correo electrónico de activación"
|
1374 |
|
1375 |
+
#: templates/connect.php:160
|
1376 |
msgid "Thanks %s!"
|
1377 |
msgstr "¡Gracias %s!"
|
1378 |
|
1379 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1380 |
msgid "Agree & Activate License"
|
1381 |
+
msgstr "De acuerdo y activar licencia"
|
1382 |
|
1383 |
+
#: templates/connect.php:179
|
1384 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1385 |
msgstr "¡Gracias por comprar %s! Para empezar, escribe tu clave de licencia:"
|
1386 |
|
1387 |
+
#: templates/connect.php:186
|
1388 |
+
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."
|
1389 |
+
msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s."
|
1390 |
+
|
1391 |
+
#: templates/connect.php:187
|
1392 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1393 |
msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s."
|
1394 |
|
1395 |
+
#: templates/connect.php:193
|
1396 |
+
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."
|
1397 |
+
msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones, contenido educacional, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
|
1398 |
|
1399 |
+
#: templates/connect.php:194
|
1400 |
+
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."
|
1401 |
+
msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
|
1402 |
+
|
1403 |
+
#: templates/connect.php:228
|
1404 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1405 |
+
msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red."
|
1406 |
|
1407 |
+
#: templates/connect.php:231
|
1408 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1409 |
+
msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia."
|
1410 |
|
1411 |
+
#: templates/connect.php:233
|
1412 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1413 |
+
msgstr "Si quieres utilizar %s en estos sitios, introduce por favor tu clave de licencia abajo y haz click en el botón de activación."
|
1414 |
|
1415 |
+
#: templates/connect.php:235
|
1416 |
msgid "%s's paid features"
|
1417 |
+
msgstr "%s características de pago"
|
1418 |
|
1419 |
+
#: templates/connect.php:240
|
1420 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1421 |
+
msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red."
|
1422 |
|
1423 |
+
#: templates/connect.php:242
|
1424 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1425 |
+
msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
|
1426 |
|
1427 |
+
#: templates/connect.php251, templates/forms/license-activation.php:46
|
1428 |
msgid "License key"
|
1429 |
msgstr "Clave de licencia"
|
1430 |
|
1431 |
+
#: templates/connect.php254, templates/forms/license-activation.php:19
|
1432 |
msgid "Can't find your license key?"
|
1433 |
msgstr "¿No puedes encontrar tu clave de licencia?"
|
1434 |
|
1435 |
+
#: templates/connect.php302, templates/connect.php617,
|
1436 |
#: templates/forms/deactivation/retry-skip.php:20
|
1437 |
msgctxt "verb"
|
1438 |
msgid "Skip"
|
1439 |
msgstr "Saltar"
|
1440 |
|
1441 |
+
#: templates/connect.php:305
|
1442 |
msgid "Delegate to Site Admins"
|
1443 |
+
msgstr "Delegar a administradores del sitio"
|
1444 |
|
1445 |
+
#: templates/connect.php:305
|
1446 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1447 |
+
msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios."
|
1448 |
|
1449 |
+
#: templates/connect.php:333
|
1450 |
msgid "Your Profile Overview"
|
1451 |
+
msgstr "Resumen del perfil"
|
1452 |
|
1453 |
+
#: templates/connect.php:334
|
1454 |
msgid "Name and email address"
|
1455 |
msgstr "Nombre y dirección de correo electrónico"
|
1456 |
|
1457 |
+
#: templates/connect.php:339
|
1458 |
msgid "Your Site Overview"
|
1459 |
+
msgstr "Resumen del sitio"
|
1460 |
|
1461 |
+
#: templates/connect.php:340
|
1462 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1463 |
+
msgstr "URL del sitio web, versión de WP, PHP info, plugins y temas"
|
1464 |
|
1465 |
+
#: templates/connect.php:345
|
1466 |
msgid "Admin Notices"
|
1467 |
+
msgstr "Avisos de administración"
|
1468 |
|
1469 |
+
#: templates/connect.php346, templates/connect.php:362
|
1470 |
msgid "Updates, announcements, marketing, no spam"
|
1471 |
msgstr "Actualizaciones, anuncios, marketing, sin spam"
|
1472 |
|
1473 |
+
#: templates/connect.php:351
|
1474 |
msgid "Current %s Events"
|
1475 |
+
msgstr "Eventos de %s actuales"
|
1476 |
|
1477 |
+
#: templates/connect.php:352
|
1478 |
msgid "Activation, deactivation and uninstall"
|
1479 |
msgstr "Activación, desactivación y desinstalación"
|
1480 |
|
1481 |
+
#: templates/connect.php:361
|
1482 |
msgid "Newsletter"
|
1483 |
msgstr "Boletín"
|
1484 |
|
1485 |
+
#: templates/connect.php378, templates/forms/license-activation.php:38
|
1486 |
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."
|
1487 |
msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
|
1488 |
|
1489 |
+
#: templates/connect.php:383
|
1490 |
msgid "What permissions are being granted?"
|
1491 |
msgstr "¿Qué permisos se otorgan?"
|
1492 |
|
1493 |
+
#: templates/connect.php:404
|
1494 |
msgid "Don't have a license key?"
|
1495 |
msgstr "¿No tienes una clave de licencia?"
|
1496 |
|
1497 |
+
#: templates/connect.php:405
|
1498 |
msgid "Activate Free Version"
|
1499 |
+
msgstr "Activar versión gratuita"
|
1500 |
|
1501 |
+
#: templates/connect.php:407
|
1502 |
msgid "Have a license key?"
|
1503 |
+
msgstr "¿Tienes una clave de licencia?"
|
1504 |
|
1505 |
+
#: templates/connect.php:415
|
1506 |
msgid "Privacy Policy"
|
1507 |
+
msgstr "Política de privacidad"
|
1508 |
|
1509 |
+
#: templates/connect.php:417
|
1510 |
msgid "Terms of Service"
|
1511 |
+
msgstr "Términos de servicio"
|
1512 |
|
1513 |
+
#: templates/connect.php:750
|
1514 |
msgctxt "as in the process of sending an email"
|
1515 |
msgid "Sending email"
|
1516 |
msgstr "Enviando correo electrónico"
|
1517 |
|
1518 |
+
#: templates/connect.php:751
|
1519 |
msgctxt "as activating plugin"
|
1520 |
msgid "Activating"
|
1521 |
msgstr "Activando"
|
1543 |
msgid "Debugging"
|
1544 |
msgstr "Depurando"
|
1545 |
|
1546 |
+
#: templates/debug.php54, templates/debug.php238, templates/debug.php364,
|
1547 |
+
#: templates/debug.php:482
|
1548 |
msgid "Actions"
|
1549 |
msgstr "Acciones"
|
1550 |
|
1554 |
|
1555 |
#: templates/debug.php:64
|
1556 |
msgid "Delete All Accounts"
|
1557 |
+
msgstr "Borrar todas las cuentas"
|
1558 |
|
1559 |
#: templates/debug.php:71
|
1560 |
msgid "Clear API Cache"
|
1561 |
+
msgstr "Borrar caché de la API"
|
1562 |
|
1563 |
#: templates/debug.php:79
|
1564 |
msgid "Clear Updates Transients"
|
1565 |
+
msgstr "Borrar transients de actualizaciones"
|
1566 |
|
1567 |
#: templates/debug.php:86
|
1568 |
msgid "Sync Data From Server"
|
1569 |
+
msgstr "Sincronizar datos desde el servidor"
|
1570 |
|
1571 |
#: templates/debug.php:90
|
1572 |
msgid "Load DB Option"
|
1599 |
|
1600 |
#: templates/debug.php:194
|
1601 |
msgid "Is Active"
|
1602 |
+
msgstr "Está activo"
|
1603 |
|
1604 |
#: templates/debug.php222, templates/debug/plugins-themes-sync.php:35
|
1605 |
msgid "Plugins"
|
1609 |
msgid "Themes"
|
1610 |
msgstr "Temas"
|
1611 |
|
1612 |
+
#: templates/debug.php227, templates/debug.php359, templates/debug.php441,
|
1613 |
#: templates/debug/scheduled-crons.php:80
|
1614 |
msgid "Slug"
|
1615 |
msgstr "Ruta"
|
1616 |
|
1617 |
+
#: templates/debug.php229, templates/debug.php:440
|
1618 |
msgid "Title"
|
1619 |
msgstr "Título"
|
1620 |
|
1629 |
|
1630 |
#: templates/debug.php:235
|
1631 |
msgid "Network Blog"
|
1632 |
+
msgstr "Blog de red"
|
1633 |
|
1634 |
#: templates/debug.php:236
|
1635 |
msgid "Network User"
|
1636 |
+
msgstr "Usuario de red"
|
1637 |
|
1638 |
+
#: templates/debug.php:273
|
1639 |
msgctxt "as connection was successful"
|
1640 |
msgid "Connected"
|
1641 |
msgstr "Conectado"
|
1642 |
|
1643 |
+
#: templates/debug.php:274
|
1644 |
msgctxt "as connection blocked"
|
1645 |
msgid "Blocked"
|
1646 |
msgstr "Bloqueado"
|
1647 |
|
1648 |
+
#: templates/debug.php:310
|
1649 |
msgid "Simulate Trial"
|
1650 |
msgstr "Simular período de prueba"
|
1651 |
|
1652 |
+
#: templates/debug.php:322
|
1653 |
msgid "Simulate Network Upgrade"
|
1654 |
+
msgstr "Simular actualización de red"
|
1655 |
|
1656 |
+
#: templates/debug.php:348
|
1657 |
msgid "%s Installs"
|
1658 |
msgstr "%s Instalaciones"
|
1659 |
|
1660 |
+
#: templates/debug.php:350
|
1661 |
msgctxt "like websites"
|
1662 |
msgid "Sites"
|
1663 |
msgstr "Sitios"
|
1664 |
|
1665 |
+
#: templates/debug.php356, templates/account/partials/site.php:148
|
1666 |
msgid "Blog ID"
|
1667 |
+
msgstr "ID del blog"
|
1668 |
+
|
1669 |
+
#: templates/debug.php421, templates/debug.php499,
|
1670 |
+
#: templates/account/partials/addon.php:334
|
1671 |
+
msgctxt "verb"
|
1672 |
+
msgid "Delete"
|
1673 |
+
msgstr "Borrar"
|
1674 |
|
1675 |
+
#: templates/debug.php:435
|
1676 |
msgid "Add Ons of module %s"
|
1677 |
msgstr "Complementos del módulo %s"
|
1678 |
|
1679 |
+
#: templates/debug.php:472
|
1680 |
msgid "Users"
|
1681 |
msgstr "Usuarios"
|
1682 |
|
1683 |
+
#: templates/debug.php:479
|
1684 |
msgid "Verified"
|
1685 |
msgstr "Verificado"
|
1686 |
|
1687 |
+
#: templates/debug.php:510
|
1688 |
msgid "%s Licenses"
|
1689 |
msgstr "%s Licencias"
|
1690 |
|
1691 |
+
#: templates/debug.php:515
|
1692 |
msgid "Plugin ID"
|
1693 |
msgstr "ID del plugin"
|
1694 |
|
1695 |
+
#: templates/debug.php:517
|
1696 |
msgid "Plan ID"
|
1697 |
msgstr "ID del plan"
|
1698 |
|
1699 |
+
#: templates/debug.php:518
|
1700 |
msgid "Quota"
|
1701 |
msgstr "Cuota"
|
1702 |
|
1703 |
+
#: templates/debug.php:519
|
1704 |
msgid "Activated"
|
1705 |
msgstr "Activado"
|
1706 |
|
1707 |
+
#: templates/debug.php:520
|
1708 |
msgid "Blocking"
|
1709 |
msgstr "Bloqueando"
|
1710 |
|
1711 |
+
#: templates/debug.php:522
|
1712 |
msgctxt "as expiration date"
|
1713 |
msgid "Expiration"
|
1714 |
msgstr "Caducidad"
|
1715 |
|
1716 |
+
#: templates/debug.php:545
|
1717 |
msgid "Debug Log"
|
1718 |
msgstr "Log de Debug"
|
1719 |
|
1720 |
+
#: templates/debug.php:549
|
1721 |
msgid "All Types"
|
1722 |
msgstr "Todos los Tipos"
|
1723 |
|
1724 |
+
#: templates/debug.php:556
|
1725 |
msgid "All Requests"
|
1726 |
+
msgstr "Todas las peticiones"
|
1727 |
|
1728 |
+
#: templates/debug.php561, templates/debug.php590,
|
1729 |
#: templates/debug/logger.php:25
|
1730 |
msgid "File"
|
1731 |
msgstr "Archivo"
|
1732 |
|
1733 |
+
#: templates/debug.php562, templates/debug.php588,
|
1734 |
#: templates/debug/logger.php:23
|
1735 |
msgid "Function"
|
1736 |
msgstr "Función"
|
1737 |
|
1738 |
+
#: templates/debug.php:563
|
1739 |
msgid "Process ID"
|
1740 |
+
msgstr "ID del proceso"
|
1741 |
|
1742 |
+
#: templates/debug.php:564
|
1743 |
msgid "Logger"
|
1744 |
msgstr "Logger"
|
1745 |
|
1746 |
+
#: templates/debug.php565, templates/debug.php589,
|
1747 |
#: templates/debug/logger.php:24
|
1748 |
msgid "Message"
|
1749 |
msgstr "Mensaje"
|
1750 |
|
1751 |
+
#: templates/debug.php:567
|
1752 |
msgid "Filter"
|
1753 |
msgstr "Filtro"
|
1754 |
|
1755 |
+
#: templates/debug.php:575
|
1756 |
msgid "Download"
|
1757 |
msgstr "Descarga"
|
1758 |
|
1759 |
+
#: templates/debug.php586, templates/debug/logger.php:22
|
1760 |
msgid "Type"
|
1761 |
msgstr "Tipo"
|
1762 |
|
1763 |
+
#: templates/debug.php591, templates/debug/logger.php:26
|
1764 |
msgid "Timestamp"
|
1765 |
msgstr "Timestamp"
|
1766 |
|
1819 |
|
1820 |
#: templates/account/billing.php53, templates/account/billing.php:53
|
1821 |
msgid "ZIP / Postal Code"
|
1822 |
+
msgstr "Código postal"
|
1823 |
|
1824 |
#: templates/account/billing.php:308
|
1825 |
msgid "Country"
|
1827 |
|
1828 |
#: templates/account/billing.php:310
|
1829 |
msgid "Select Country"
|
1830 |
+
msgstr "Seleccionar país"
|
1831 |
|
1832 |
#: templates/account/billing.php317, templates/account/billing.php:318
|
1833 |
msgid "State"
|
1914 |
|
1915 |
#: templates/debug/plugins-themes-sync.php:23
|
1916 |
msgid "Plugins & Themes Sync"
|
1917 |
+
msgstr "Sincronizar plugins y temas"
|
1918 |
|
1919 |
#: templates/debug/plugins-themes-sync.php:28
|
1920 |
msgid "Total"
|
1927 |
|
1928 |
#: templates/debug/scheduled-crons.php:76
|
1929 |
msgid "Scheduled Crons"
|
1930 |
+
msgstr "Crons programados"
|
1931 |
|
1932 |
#: templates/debug/scheduled-crons.php:81
|
1933 |
msgid "Module"
|
1935 |
|
1936 |
#: templates/debug/scheduled-crons.php:82
|
1937 |
msgid "Module Type"
|
1938 |
+
msgstr "Tipo de módulo"
|
1939 |
|
1940 |
#: templates/debug/scheduled-crons.php:83
|
1941 |
msgid "Cron Type"
|
1942 |
+
msgstr "Tipo de cron"
|
1943 |
|
1944 |
#: templates/debug/scheduled-crons.php:85
|
1945 |
msgid "Next"
|
2091 |
|
2092 |
#: templates/forms/license-activation.php:25
|
2093 |
msgid "Update License"
|
2094 |
+
msgstr "Activar licencia"
|
2095 |
|
2096 |
#: templates/forms/optout.php:30
|
2097 |
msgctxt "verb"
|
2111 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2112 |
msgstr "Haciendo clic en \"Desistir\", ya no enviaremos los datos de %s a %s."
|
2113 |
|
2114 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2115 |
+
msgid "There is a new version of %s available."
|
2116 |
+
msgstr "Hay una nueva versión de %s disponible."
|
2117 |
+
|
2118 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2119 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2120 |
+
msgstr "%s Renueva tu licencia ahora %s para acceder a la versión %s seguridad y nuevas características y soporte."
|
2121 |
+
|
2122 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2123 |
+
msgid "New Version Available"
|
2124 |
+
msgstr "Nueva versión disponible"
|
2125 |
+
|
2126 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2127 |
+
msgid "Renew license"
|
2128 |
+
msgstr "Renovar la licencia"
|
2129 |
+
|
2130 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2131 |
+
msgctxt "close a window"
|
2132 |
+
msgid "Dismiss"
|
2133 |
+
msgstr "Descartar"
|
2134 |
+
|
2135 |
#: templates/forms/resend-key.php:21
|
2136 |
msgid "Send License Key"
|
2137 |
+
msgstr "Enviar clave de licencia"
|
2138 |
|
2139 |
#: templates/forms/resend-key.php:57
|
2140 |
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
2154 |
|
2155 |
#: templates/partials/network-activation.php:23
|
2156 |
msgid "Activate license on all sites in the network."
|
2157 |
+
msgstr "Activar licencia en todos los sitios de la red"
|
2158 |
|
2159 |
#: templates/partials/network-activation.php:24
|
2160 |
msgid "Apply on all sites in the network."
|
2161 |
+
msgstr "Aplicar en todos los sitios de la red"
|
2162 |
|
2163 |
#: templates/partials/network-activation.php:27
|
2164 |
msgid "Activate license on all pending sites."
|
2165 |
+
msgstr "Aplicar licencia en todos los sitios pendientes"
|
2166 |
|
2167 |
#: templates/partials/network-activation.php:28
|
2168 |
msgid "Apply on all pending sites."
|
2169 |
+
msgstr "Aplicar en todos los sitios pendientes"
|
2170 |
|
2171 |
#: templates/partials/network-activation.php36,
|
2172 |
#: templates/partials/network-activation.php:68
|
2173 |
msgid "allow"
|
2174 |
+
msgstr "permitir"
|
2175 |
|
2176 |
#: templates/partials/network-activation.php38,
|
2177 |
#: templates/partials/network-activation.php:70
|
2178 |
msgid "delegate"
|
2179 |
+
msgstr "delegar"
|
2180 |
|
2181 |
#: templates/partials/network-activation.php41,
|
2182 |
#: templates/partials/network-activation.php:73
|
2205 |
msgid "Last license"
|
2206 |
msgstr "Última licencia"
|
2207 |
|
2208 |
+
#: templates/account/partials/addon.php:111
|
2209 |
+
msgid "Cancelled"
|
2210 |
+
msgstr "Cancelado"
|
2211 |
+
|
2212 |
+
#: templates/account/partials/addon.php:116
|
2213 |
+
msgid "Expired"
|
2214 |
+
msgstr "Caducado"
|
2215 |
+
|
2216 |
+
#: templates/account/partials/addon.php:121
|
2217 |
+
msgid "No expiration"
|
2218 |
+
msgstr "Sin caducidad"
|
2219 |
+
|
2220 |
+
#: templates/account/partials/addon.php259,
|
2221 |
+
#: templates/account/partials/addon.php:312
|
2222 |
+
msgid "Activate this add-on"
|
2223 |
+
msgstr "Activar este complemento"
|
2224 |
+
|
2225 |
#: templates/account/partials/site.php:181
|
2226 |
msgid "Owner Name"
|
2227 |
+
msgstr "Nombre del propietario"
|
2228 |
|
2229 |
#: templates/account/partials/site.php:193
|
2230 |
msgid "Owner Email"
|
2231 |
+
msgstr "Correo electrónico del propietario"
|
2232 |
|
2233 |
#: templates/account/partials/site.php:205
|
2234 |
msgid "Owner ID"
|
2235 |
+
msgstr "ID del propietario"
|
2236 |
|
2237 |
#: templates/account/partials/site.php:270
|
2238 |
msgid "Subscription"
|
2239 |
+
msgstr "Suscripción"
|
2240 |
|
2241 |
#: templates/forms/deactivation/contact.php:19
|
2242 |
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2244 |
|
2245 |
#: templates/forms/deactivation/contact.php:22
|
2246 |
msgid "Contact Support"
|
2247 |
+
msgstr "Contactar soporte"
|
2248 |
|
2249 |
#: templates/forms/deactivation/form.php:56
|
2250 |
msgid "Anonymous feedback"
|
2274 |
msgid "switching"
|
2275 |
msgstr "cambiando"
|
2276 |
|
2277 |
+
#: templates/forms/deactivation/form.php:269
|
2278 |
msgid "Submit & %s"
|
2279 |
msgstr "Enviar y %s"
|
2280 |
|
2281 |
+
#: templates/forms/deactivation/form.php:290
|
2282 |
msgid "Kindly tell us the reason so we can improve."
|
2283 |
msgstr "Por favor, dínos la razón para que podamos mejorar."
|
2284 |
|
2285 |
+
#: templates/forms/deactivation/form.php:411
|
2286 |
msgid "Yes - %s"
|
2287 |
msgstr "Si - %s"
|
2288 |
|
2289 |
+
#: templates/forms/deactivation/form.php:418
|
2290 |
msgid "Skip & %s"
|
2291 |
msgstr "Saltar y %s"
|
2292 |
|
2293 |
#: templates/forms/deactivation/retry-skip.php:21
|
2294 |
msgid "Click here to use the plugin anonymously"
|
2295 |
+
msgstr "Haz click aquí para utilizar el plugin de forma anónima"
|
2296 |
|
2297 |
#: templates/forms/deactivation/retry-skip.php:23
|
2298 |
msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
|
includes/pum-sdk/freemius/languages/freemius-fr_FR.mo
ADDED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-fr_FR.po
ADDED
@@ -0,0 +1,2299 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
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: 2018-05-24 15:20+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"
|
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:1551
|
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:1553
|
29 |
+
msgid "Error"
|
30 |
+
msgstr "Erreur"
|
31 |
+
|
32 |
+
#: includes/class-freemius.php:1871
|
33 |
+
msgid "I found a better %s"
|
34 |
+
msgstr "J'ai trouvé un meilleur %s"
|
35 |
+
|
36 |
+
#: includes/class-freemius.php:1873
|
37 |
+
msgid "What's the %s's name?"
|
38 |
+
msgstr "Quel est le nom du %s ?"
|
39 |
+
|
40 |
+
#: includes/class-freemius.php:1879
|
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:1881
|
45 |
+
msgid "Deactivation"
|
46 |
+
msgstr "Désactivation"
|
47 |
+
|
48 |
+
#: includes/class-freemius.php:1882
|
49 |
+
msgid "Theme Switch"
|
50 |
+
msgstr "Changement de Thème"
|
51 |
+
|
52 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
53 |
+
msgid "Other"
|
54 |
+
msgstr "Autre"
|
55 |
+
|
56 |
+
#: includes/class-freemius.php:1899
|
57 |
+
msgid "I no longer need the %s"
|
58 |
+
msgstr "Je n'ai plus besoin du %s"
|
59 |
+
|
60 |
+
#: includes/class-freemius.php:1906
|
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:1912
|
65 |
+
msgid "The %s broke my site"
|
66 |
+
msgstr "Le %s a cassé mon site"
|
67 |
+
|
68 |
+
#: includes/class-freemius.php:1919
|
69 |
+
msgid "The %s suddenly stopped working"
|
70 |
+
msgstr "Le %s a soudainement arrêté de fonctionner"
|
71 |
+
|
72 |
+
#: includes/class-freemius.php:1929
|
73 |
+
msgid "I can't pay for it anymore"
|
74 |
+
msgstr "Je ne peux plus payer pour ça"
|
75 |
+
|
76 |
+
#: includes/class-freemius.php:1931
|
77 |
+
msgid "What price would you feel comfortable paying?"
|
78 |
+
msgstr "Quel prix seriez-vous prêt à payer ?"
|
79 |
+
|
80 |
+
#: includes/class-freemius.php:1937
|
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:1958
|
85 |
+
msgid "The %s didn't work"
|
86 |
+
msgstr "Le %s n'a pas fonctionné"
|
87 |
+
|
88 |
+
#: includes/class-freemius.php:1968
|
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:1976
|
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:1978
|
97 |
+
msgid "What feature?"
|
98 |
+
msgstr "Quelle fonctionnalité ?"
|
99 |
+
|
100 |
+
#: includes/class-freemius.php:1982
|
101 |
+
msgid "The %s is not working"
|
102 |
+
msgstr "Le %s ne fonctionne pas"
|
103 |
+
|
104 |
+
#: includes/class-freemius.php:1984
|
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:1988
|
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:1990
|
113 |
+
msgid "What you've been looking for?"
|
114 |
+
msgstr "Que recherchez-vous ?"
|
115 |
+
|
116 |
+
#: includes/class-freemius.php:1994
|
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:1996
|
121 |
+
msgid "What did you expect?"
|
122 |
+
msgstr "À quoi vous attendiez-vous ?"
|
123 |
+
|
124 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
125 |
+
msgid "Freemius Debug"
|
126 |
+
msgstr "Débuggage Freemius"
|
127 |
+
|
128 |
+
#: includes/class-freemius.php:3402
|
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:3404
|
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:3411
|
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:3516
|
141 |
+
msgid "Yes - do your thing"
|
142 |
+
msgstr "Oui - allez-y"
|
143 |
+
|
144 |
+
#: includes/class-freemius.php:3521
|
145 |
+
msgid "No - just deactivate"
|
146 |
+
msgstr "Non - désactivation seulement"
|
147 |
+
|
148 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
149 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
150 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
151 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
152 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
153 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
154 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
155 |
+
msgctxt "exclamation"
|
156 |
+
msgid "Oops"
|
157 |
+
msgstr "Oups"
|
158 |
+
|
159 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
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:4064
|
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.php4176, includes/class-freemius.php4201,
|
174 |
+
#: includes/class-freemius.php:17103
|
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:4815
|
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.php4827, includes/class-freemius.php:6660
|
183 |
+
msgctxt ""
|
184 |
+
msgid "W00t"
|
185 |
+
msgstr "Génial"
|
186 |
+
|
187 |
+
#: includes/class-freemius.php:4842
|
188 |
+
msgid "You have a %s license."
|
189 |
+
msgstr "Vous avez une license pour %s."
|
190 |
+
|
191 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
192 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
193 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
194 |
+
#: includes/class-freemius.php:16891
|
195 |
+
msgctxt "interjection expressing joy or exuberance"
|
196 |
+
msgid "Yee-haw"
|
197 |
+
msgstr "Youpi"
|
198 |
+
|
199 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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.php5123, templates/add-ons.php99,
|
208 |
+
#: templates/account/partials/addon.php:283
|
209 |
+
msgid "More information about %s"
|
210 |
+
msgstr "Plus d'informations à propos de %s"
|
211 |
+
|
212 |
+
#: includes/class-freemius.php:5124
|
213 |
+
msgid "Purchase License"
|
214 |
+
msgstr "Acheter une licence"
|
215 |
+
|
216 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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:6039
|
221 |
+
msgid "start the trial"
|
222 |
+
msgstr "commencer la période d'essai"
|
223 |
+
|
224 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
225 |
+
msgid "complete the install"
|
226 |
+
msgstr "compléter l'installation"
|
227 |
+
|
228 |
+
#: includes/class-freemius.php:6147
|
229 |
+
msgid "You are just one step away - %s"
|
230 |
+
msgstr "Il ne reste qu'une étape - %s"
|
231 |
+
|
232 |
+
#: includes/class-freemius.php:6150
|
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:6227
|
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:6231
|
242 |
+
msgid "Opt in to make \"%s\" Better!"
|
243 |
+
msgstr "Cochez la case pour améliorer \"%s\""
|
244 |
+
|
245 |
+
#: includes/class-freemius.php:6659
|
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.php8384, includes/class-fs-plugin-updater.php581,
|
250 |
+
#: includes/class-fs-plugin-updater.php733,
|
251 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
252 |
+
msgid "Add-On"
|
253 |
+
msgstr "Add-On"
|
254 |
+
|
255 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
256 |
+
#: templates/debug.php:510
|
257 |
+
msgid "Plugin"
|
258 |
+
msgstr "Plugin"
|
259 |
+
|
260 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
261 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
262 |
+
msgid "Theme"
|
263 |
+
msgstr "Thème"
|
264 |
+
|
265 |
+
#: includes/class-freemius.php:10808
|
266 |
+
msgid "invalid_site_details_collection"
|
267 |
+
msgstr "invalid_site_details_collection"
|
268 |
+
|
269 |
+
#: includes/class-freemius.php:10928
|
270 |
+
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
271 |
+
msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
|
272 |
+
|
273 |
+
#: includes/class-freemius.php:10930
|
274 |
+
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
275 |
+
msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
|
276 |
+
|
277 |
+
#: includes/class-freemius.php:11166
|
278 |
+
msgid "Account is pending activation."
|
279 |
+
msgstr "Compte en cours d'activation."
|
280 |
+
|
281 |
+
#: includes/class-freemius.php:13608
|
282 |
+
msgid "%s activation was successfully completed."
|
283 |
+
msgstr "L'activation de %s s'est terminée avec succès."
|
284 |
+
|
285 |
+
#: includes/class-freemius.php:13622
|
286 |
+
msgid "Your account was successfully activated with the %s plan."
|
287 |
+
msgstr "Votre compte a été activé avec succès avec la formule %s."
|
288 |
+
|
289 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
290 |
+
msgid "Your trial has been successfully started."
|
291 |
+
msgstr "Votre période d'essai a bien démarré."
|
292 |
+
|
293 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
294 |
+
#: includes/class-freemius.php:14317
|
295 |
+
msgid "Couldn't activate %s."
|
296 |
+
msgstr "Impossible d'activer %s."
|
297 |
+
|
298 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
299 |
+
#: includes/class-freemius.php:14318
|
300 |
+
msgid "Please contact us with the following message:"
|
301 |
+
msgstr "Merci de nous contacter avec le message suivant :"
|
302 |
+
|
303 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
304 |
+
msgid "Upgrade"
|
305 |
+
msgstr "Mise à jour"
|
306 |
+
|
307 |
+
#: includes/class-freemius.php:14672
|
308 |
+
msgid "Start Trial"
|
309 |
+
msgstr "Essai gratuit"
|
310 |
+
|
311 |
+
#: includes/class-freemius.php:14674
|
312 |
+
msgid "Pricing"
|
313 |
+
msgstr "Tarifs"
|
314 |
+
|
315 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
316 |
+
msgid "Affiliation"
|
317 |
+
msgstr "Affiliation"
|
318 |
+
|
319 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
320 |
+
#: templates/account.php146, templates/debug.php:314
|
321 |
+
msgid "Account"
|
322 |
+
msgstr "Compte"
|
323 |
+
|
324 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
325 |
+
#: includes/customizer/class-fs-customizer-support-section.php:60
|
326 |
+
msgid "Contact Us"
|
327 |
+
msgstr "Contactez Nous"
|
328 |
+
|
329 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
330 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
331 |
+
#: templates/account/partials/addon.php:37
|
332 |
+
msgid "Add-Ons"
|
333 |
+
msgstr "Add-Ons"
|
334 |
+
|
335 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
336 |
+
msgctxt "noun"
|
337 |
+
msgid "Pricing"
|
338 |
+
msgstr "Tarifs"
|
339 |
+
|
340 |
+
#: includes/class-freemius.php15009,
|
341 |
+
#: includes/customizer/class-fs-customizer-support-section.php:67
|
342 |
+
msgid "Support Forum"
|
343 |
+
msgstr "Forum de Support"
|
344 |
+
|
345 |
+
#: includes/class-freemius.php:15794
|
346 |
+
msgid "Your email has been successfully verified - you are AWESOME!"
|
347 |
+
msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
|
348 |
+
|
349 |
+
#: includes/class-freemius.php:15795
|
350 |
+
msgctxt "a positive response"
|
351 |
+
msgid "Right on"
|
352 |
+
msgstr "Directement"
|
353 |
+
|
354 |
+
#: includes/class-freemius.php:16367
|
355 |
+
msgid "Your %s Add-on plan was successfully upgraded."
|
356 |
+
msgstr "Votre Add-on %s a bien été mis à jour."
|
357 |
+
|
358 |
+
#: includes/class-freemius.php:16369
|
359 |
+
msgid "%s Add-on was successfully purchased."
|
360 |
+
msgstr "L'Add-on %s a bien été acheté."
|
361 |
+
|
362 |
+
#: includes/class-freemius.php:16372
|
363 |
+
msgid "Download the latest version"
|
364 |
+
msgstr "Télécharger la dernière version"
|
365 |
+
|
366 |
+
#: includes/class-freemius.php:16444
|
367 |
+
msgctxt "%1s - plugin title, %2s - API domain"
|
368 |
+
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
369 |
+
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 "
|
370 |
+
|
371 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
372 |
+
#: includes/class-freemius.php:16927
|
373 |
+
msgid "Error received from the server:"
|
374 |
+
msgstr "Une erreur a été reçu depuis le serveur :"
|
375 |
+
|
376 |
+
#: includes/class-freemius.php:16457
|
377 |
+
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
378 |
+
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."
|
379 |
+
|
380 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
381 |
+
#: includes/class-freemius.php:16910
|
382 |
+
msgctxt ""
|
383 |
+
msgid "Hmm"
|
384 |
+
msgstr "Hmm"
|
385 |
+
|
386 |
+
#: includes/class-freemius.php:16652
|
387 |
+
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."
|
388 |
+
msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer vote formule, le problème est probablement de votre côté - désolé."
|
389 |
+
|
390 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
391 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
392 |
+
msgctxt "trial period"
|
393 |
+
msgid "Trial"
|
394 |
+
msgstr "Période d'essai"
|
395 |
+
|
396 |
+
#: includes/class-freemius.php:16658
|
397 |
+
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
398 |
+
msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
|
399 |
+
|
400 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
401 |
+
msgid "Please contact us here"
|
402 |
+
msgstr "Merci de nous contacter ici"
|
403 |
+
|
404 |
+
#: includes/class-freemius.php:16672
|
405 |
+
msgid "Your plan was successfully upgraded."
|
406 |
+
msgstr "Votre formule a bien été mise à jour."
|
407 |
+
|
408 |
+
#: includes/class-freemius.php:16689
|
409 |
+
msgid "Your plan was successfully changed to %s."
|
410 |
+
msgstr "Votre formule a bien été modifié vers %s. "
|
411 |
+
|
412 |
+
#: includes/class-freemius.php:16705
|
413 |
+
msgid "Your license has expired. You can still continue using the free %s forever."
|
414 |
+
msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
|
415 |
+
|
416 |
+
#: includes/class-freemius.php:16707
|
417 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
418 |
+
msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
|
419 |
+
|
420 |
+
#: includes/class-freemius.php:16715
|
421 |
+
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
422 |
+
msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
|
423 |
+
|
424 |
+
#: includes/class-freemius.php:16728
|
425 |
+
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."
|
426 |
+
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."
|
427 |
+
|
428 |
+
#: includes/class-freemius.php:16751
|
429 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
430 |
+
msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
|
431 |
+
|
432 |
+
#: includes/class-freemius.php:16753
|
433 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
434 |
+
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."
|
435 |
+
|
436 |
+
#: includes/class-freemius.php:16858
|
437 |
+
msgid "It looks like the license could not be activated."
|
438 |
+
msgstr "Il semble que la licence ne puisse être activée."
|
439 |
+
|
440 |
+
#: includes/class-freemius.php:16888
|
441 |
+
msgid "Your license was successfully activated."
|
442 |
+
msgstr "Votre licence a bien été activée."
|
443 |
+
|
444 |
+
#: includes/class-freemius.php:16914
|
445 |
+
msgid "It looks like your site currently doesn't have an active license."
|
446 |
+
msgstr "Il semble que votre site n'ait pas de licence active."
|
447 |
+
|
448 |
+
#: includes/class-freemius.php:16926
|
449 |
+
msgid "It looks like the license deactivation failed."
|
450 |
+
msgstr "Il semble que la désactivation de la licence a échoué."
|
451 |
+
|
452 |
+
#: includes/class-freemius.php:16954
|
453 |
+
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
454 |
+
msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
|
455 |
+
|
456 |
+
#: includes/class-freemius.php:16955
|
457 |
+
msgid "O.K"
|
458 |
+
msgstr "O.K"
|
459 |
+
|
460 |
+
#: includes/class-freemius.php:17003
|
461 |
+
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
462 |
+
msgstr "La formule a bien été rétrogradé. La licence de votre formule expirera dans %s."
|
463 |
+
|
464 |
+
#: includes/class-freemius.php:17013
|
465 |
+
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
466 |
+
msgstr "Il semble que nous ayons un problème temporaire pour rétrograder votre formule. Merci de réessayer dans quelques minutes."
|
467 |
+
|
468 |
+
#: includes/class-freemius.php:17037
|
469 |
+
msgid "You are already running the %s in a trial mode."
|
470 |
+
msgstr "Vous utilisez déjà le %s en période d'essai. "
|
471 |
+
|
472 |
+
#: includes/class-freemius.php:17048
|
473 |
+
msgid "You already utilized a trial before."
|
474 |
+
msgstr "Vous avez déjà utilisé la période d'essai."
|
475 |
+
|
476 |
+
#: includes/class-freemius.php:17062
|
477 |
+
msgid "Plan %s do not exist, therefore, can't start a trial."
|
478 |
+
msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
|
479 |
+
|
480 |
+
#: includes/class-freemius.php:17073
|
481 |
+
msgid "Plan %s does not support a trial period."
|
482 |
+
msgstr "La formule %s ne propose pas de période d'essai."
|
483 |
+
|
484 |
+
#: includes/class-freemius.php:17084
|
485 |
+
msgid "None of the %s's plans supports a trial period."
|
486 |
+
msgstr "Aucune formule du %s ne propose de période d'essai."
|
487 |
+
|
488 |
+
#: includes/class-freemius.php:17134
|
489 |
+
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
490 |
+
msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
|
491 |
+
|
492 |
+
#: includes/class-freemius.php:17185
|
493 |
+
msgid "Your %s free trial was successfully cancelled."
|
494 |
+
msgstr "Votre période d'essai %s a bien été annulé."
|
495 |
+
|
496 |
+
#: includes/class-freemius.php:17190
|
497 |
+
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
498 |
+
msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
|
499 |
+
|
500 |
+
#: includes/class-freemius.php:17474
|
501 |
+
msgid "Version %s was released."
|
502 |
+
msgstr "La version %s vient d'être publiée."
|
503 |
+
|
504 |
+
#: includes/class-freemius.php:17474
|
505 |
+
msgid "Please download %s."
|
506 |
+
msgstr "Merci de télécharger %s."
|
507 |
+
|
508 |
+
#: includes/class-freemius.php:17481
|
509 |
+
msgid "the latest %s version here"
|
510 |
+
msgstr "la dernière version de %s ici"
|
511 |
+
|
512 |
+
#: includes/class-freemius.php:17486
|
513 |
+
msgid "New"
|
514 |
+
msgstr "Nouveau"
|
515 |
+
|
516 |
+
#: includes/class-freemius.php:17491
|
517 |
+
msgid "Seems like you got the latest release."
|
518 |
+
msgstr "Il semble que vous ayez la dernière version."
|
519 |
+
|
520 |
+
#: includes/class-freemius.php:17492
|
521 |
+
msgid "You are all good!"
|
522 |
+
msgstr "Vous êtes tout bon !"
|
523 |
+
|
524 |
+
#: includes/class-freemius.php:17758
|
525 |
+
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
526 |
+
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."
|
527 |
+
|
528 |
+
#: includes/class-freemius.php:17893
|
529 |
+
msgid "Site successfully opted in."
|
530 |
+
msgstr "Site ajouté avec succès."
|
531 |
+
|
532 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
533 |
+
msgid "Awesome"
|
534 |
+
msgstr "Formidable"
|
535 |
+
|
536 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
537 |
+
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
538 |
+
msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
|
539 |
+
|
540 |
+
#: includes/class-freemius.php:17911
|
541 |
+
msgid "Thank you!"
|
542 |
+
msgstr "Merci !"
|
543 |
+
|
544 |
+
#: includes/class-freemius.php:17918
|
545 |
+
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
546 |
+
msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
|
547 |
+
|
548 |
+
#: includes/class-freemius.php:18033
|
549 |
+
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."
|
550 |
+
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."
|
551 |
+
|
552 |
+
#: includes/class-freemius.php:18039
|
553 |
+
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
554 |
+
msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
|
555 |
+
|
556 |
+
#: includes/class-freemius.php:18044
|
557 |
+
msgid "%s is the new owner of the account."
|
558 |
+
msgstr "%s est le nouveau propriétaire du compte."
|
559 |
+
|
560 |
+
#: includes/class-freemius.php:18046
|
561 |
+
msgctxt "as congratulations"
|
562 |
+
msgid "Congrats"
|
563 |
+
msgstr "Félicitations"
|
564 |
+
|
565 |
+
#: includes/class-freemius.php:18066
|
566 |
+
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
567 |
+
msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
|
568 |
+
|
569 |
+
#: includes/class-freemius.php:18067
|
570 |
+
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
571 |
+
msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
|
572 |
+
|
573 |
+
#: includes/class-freemius.php:18074
|
574 |
+
msgid "Change Ownership"
|
575 |
+
msgstr "Changement De Propriétaire"
|
576 |
+
|
577 |
+
#: includes/class-freemius.php:18082
|
578 |
+
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
579 |
+
msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
|
580 |
+
|
581 |
+
#: includes/class-freemius.php:18094
|
582 |
+
msgid "Please provide your full name."
|
583 |
+
msgstr "Merci d'indiquer vos prénom et nom."
|
584 |
+
|
585 |
+
#: includes/class-freemius.php:18099
|
586 |
+
msgid "Your name was successfully updated."
|
587 |
+
msgstr "Votre nom a été mis à jour."
|
588 |
+
|
589 |
+
#: includes/class-freemius.php:18160
|
590 |
+
msgid "You have successfully updated your %s."
|
591 |
+
msgstr "Votre %s a bien été mis à jour."
|
592 |
+
|
593 |
+
#: includes/class-freemius.php:18300
|
594 |
+
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
595 |
+
msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
|
596 |
+
|
597 |
+
#: includes/class-freemius.php:18301
|
598 |
+
msgctxt "advance notice of something that will need attention."
|
599 |
+
msgid "Heads up"
|
600 |
+
msgstr "Avertissement"
|
601 |
+
|
602 |
+
#: includes/class-freemius.php:18711
|
603 |
+
msgctxt "exclamation"
|
604 |
+
msgid "Hey"
|
605 |
+
msgstr "Hey"
|
606 |
+
|
607 |
+
#: includes/class-freemius.php:18711
|
608 |
+
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
609 |
+
msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
|
610 |
+
|
611 |
+
#: includes/class-freemius.php:18719
|
612 |
+
msgid "No commitment for %s days - cancel anytime!"
|
613 |
+
msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
|
614 |
+
|
615 |
+
#: includes/class-freemius.php:18720
|
616 |
+
msgid "No credit card required"
|
617 |
+
msgstr "Pas besoin de carte bancaire"
|
618 |
+
|
619 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
620 |
+
msgctxt "call to action"
|
621 |
+
msgid "Start free trial"
|
622 |
+
msgstr "Commencer l'essai gratuit"
|
623 |
+
|
624 |
+
#: includes/class-freemius.php:18804
|
625 |
+
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!"
|
626 |
+
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 !"
|
627 |
+
|
628 |
+
#: includes/class-freemius.php:18813
|
629 |
+
msgid "Learn more"
|
630 |
+
msgstr "En savoir plus"
|
631 |
+
|
632 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
633 |
+
#: templates/account.php497, templates/connect.php169,
|
634 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
635 |
+
#: templates/account/partials/addon.php:230
|
636 |
+
msgid "Activate License"
|
637 |
+
msgstr "Activer la licence"
|
638 |
+
|
639 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
640 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
641 |
+
msgid "Change License"
|
642 |
+
msgstr "Changer la licence"
|
643 |
+
|
644 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
645 |
+
msgid "Opt Out"
|
646 |
+
msgstr "Désinscription"
|
647 |
+
|
648 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
649 |
+
#: templates/account/partials/site.php43,
|
650 |
+
#: templates/account/partials/site.php:161
|
651 |
+
msgid "Opt In"
|
652 |
+
msgstr "Inscription"
|
653 |
+
|
654 |
+
#: includes/class-freemius.php:19245
|
655 |
+
msgid "Please follow these steps to complete the upgrade"
|
656 |
+
msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
|
657 |
+
|
658 |
+
#: includes/class-freemius.php:19249
|
659 |
+
msgid "Download the latest %s version"
|
660 |
+
msgstr "Télécharger la dernière version %s"
|
661 |
+
|
662 |
+
#: includes/class-freemius.php:19253
|
663 |
+
msgid "Upload and activate the downloaded version"
|
664 |
+
msgstr "Téléverser et activer la version téléchargée"
|
665 |
+
|
666 |
+
#: includes/class-freemius.php:19255
|
667 |
+
msgid "How to upload and activate?"
|
668 |
+
msgstr "Comment téléverser et activer ?"
|
669 |
+
|
670 |
+
#: includes/class-freemius.php:19384
|
671 |
+
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
672 |
+
msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
|
673 |
+
|
674 |
+
#: includes/class-freemius.php:19545
|
675 |
+
msgid "Auto installation only works for opted-in users."
|
676 |
+
msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
|
677 |
+
|
678 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
679 |
+
#: includes/class-fs-plugin-updater.php713,
|
680 |
+
#: includes/class-fs-plugin-updater.php:727
|
681 |
+
msgid "Invalid module ID."
|
682 |
+
msgstr "ID du module non valide."
|
683 |
+
|
684 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
685 |
+
msgid "Premium version already active."
|
686 |
+
msgstr "Version premium déjà active."
|
687 |
+
|
688 |
+
#: includes/class-freemius.php:19571
|
689 |
+
msgid "You do not have a valid license to access the premium version."
|
690 |
+
msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
|
691 |
+
|
692 |
+
#: includes/class-freemius.php:19578
|
693 |
+
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
694 |
+
msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
|
695 |
+
|
696 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
697 |
+
msgid "Premium add-on version already installed."
|
698 |
+
msgstr "La version premium de l'add-on est déjà installée."
|
699 |
+
|
700 |
+
#: includes/class-freemius.php:19941
|
701 |
+
msgid "View paid features"
|
702 |
+
msgstr "Voir les fonctionnalités payantes"
|
703 |
+
|
704 |
+
#: includes/class-freemius.php:20251
|
705 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
706 |
+
msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
|
707 |
+
|
708 |
+
#: includes/class-freemius.php:20252
|
709 |
+
msgid "Thank you so much for using %s!"
|
710 |
+
msgstr "Merci beaucoup d'utiliser %s !"
|
711 |
+
|
712 |
+
#: includes/class-freemius.php:20258
|
713 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
714 |
+
msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
|
715 |
+
|
716 |
+
#: includes/class-freemius.php:20262
|
717 |
+
msgid "Thank you so much for using our products!"
|
718 |
+
msgstr "Merci beaucoup d'utiliser nos produits !"
|
719 |
+
|
720 |
+
#: includes/class-freemius.php:20263
|
721 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
722 |
+
msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
|
723 |
+
|
724 |
+
#: includes/class-freemius.php:20282
|
725 |
+
msgid "%s and its add-ons"
|
726 |
+
msgstr "%s et ses add-ons"
|
727 |
+
|
728 |
+
#: includes/class-freemius.php:20291
|
729 |
+
msgid "Products"
|
730 |
+
msgstr "Produits"
|
731 |
+
|
732 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
733 |
+
msgid "Yes"
|
734 |
+
msgstr "Oui"
|
735 |
+
|
736 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
737 |
+
msgid "send me security & feature updates, educational content and offers."
|
738 |
+
msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
|
739 |
+
|
740 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
741 |
+
msgid "No"
|
742 |
+
msgstr "Non"
|
743 |
+
|
744 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
745 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
746 |
+
msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
|
747 |
+
|
748 |
+
#: includes/class-freemius.php:20312
|
749 |
+
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 🙂"
|
750 |
+
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 🙂"
|
751 |
+
|
752 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
753 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
754 |
+
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 :"
|
755 |
+
|
756 |
+
#: includes/class-freemius.php:20598
|
757 |
+
msgid "License key is empty."
|
758 |
+
msgstr "La clé de licence est vide."
|
759 |
+
|
760 |
+
#: includes/class-fs-plugin-updater.php184,
|
761 |
+
#: includes/class-fs-plugin-updater.php:219
|
762 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
763 |
+
msgstr "%s Renouveler votre licence maintenant %s pour accéder aux mise à jour de sécurité et de fonctionnalités de la version %s ainsi qu'au support."
|
764 |
+
|
765 |
+
#: includes/class-fs-plugin-updater.php:776
|
766 |
+
msgid "Installing plugin: %s"
|
767 |
+
msgstr "Installation du plugin : %s"
|
768 |
+
|
769 |
+
#: includes/class-fs-plugin-updater.php:817
|
770 |
+
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
771 |
+
msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
|
772 |
+
|
773 |
+
#: includes/class-fs-plugin-updater.php:923
|
774 |
+
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
775 |
+
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."
|
776 |
+
|
777 |
+
#: includes/fs-plugin-info-dialog.php336,
|
778 |
+
#: templates/account/partials/addon.php:287
|
779 |
+
msgctxt "verb"
|
780 |
+
msgid "Purchase"
|
781 |
+
msgstr "Acheter"
|
782 |
+
|
783 |
+
#: includes/fs-plugin-info-dialog.php:339
|
784 |
+
msgid "Start my free %s"
|
785 |
+
msgstr "Commencer ma %s gratuite"
|
786 |
+
|
787 |
+
#: includes/fs-plugin-info-dialog.php:380
|
788 |
+
msgid "Install Free Version Now"
|
789 |
+
msgstr "Installer la version gratuite maintenant"
|
790 |
+
|
791 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
792 |
+
#: templates/account/partials/addon.php267,
|
793 |
+
#: templates/account/partials/addon.php:317
|
794 |
+
msgid "Install Now"
|
795 |
+
msgstr "Installer maintenant"
|
796 |
+
|
797 |
+
#: includes/fs-plugin-info-dialog.php:392
|
798 |
+
msgctxt "as download latest version"
|
799 |
+
msgid "Download Latest Free Version"
|
800 |
+
msgstr "Télécharger la dernière version gratuite"
|
801 |
+
|
802 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
803 |
+
#: templates/account/partials/addon.php:21
|
804 |
+
msgctxt "as download latest version"
|
805 |
+
msgid "Download Latest"
|
806 |
+
msgstr "Télécharger la dernière version"
|
807 |
+
|
808 |
+
#: includes/fs-plugin-info-dialog.php:403
|
809 |
+
msgid "Install Free Version Update Now"
|
810 |
+
msgstr "Installer la dernière mise à jour gratuite maintenant"
|
811 |
+
|
812 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
813 |
+
msgid "Install Update Now"
|
814 |
+
msgstr "Installer la mise à jour maintenant"
|
815 |
+
|
816 |
+
#: includes/fs-plugin-info-dialog.php:415
|
817 |
+
msgid "Newer Free Version (%s) Installed"
|
818 |
+
msgstr "La nouvelle version gratuite ( %s ) a été installé"
|
819 |
+
|
820 |
+
#: includes/fs-plugin-info-dialog.php:416
|
821 |
+
msgid "Newer Version (%s) Installed"
|
822 |
+
msgstr "Nouvelle Version (%s) Installée"
|
823 |
+
|
824 |
+
#: includes/fs-plugin-info-dialog.php:424
|
825 |
+
msgid "Latest Free Version Installed"
|
826 |
+
msgstr "La dernière version gratuite a été installé"
|
827 |
+
|
828 |
+
#: includes/fs-plugin-info-dialog.php:425
|
829 |
+
msgid "Latest Version Installed"
|
830 |
+
msgstr "Dernière Version Installée"
|
831 |
+
|
832 |
+
#: includes/fs-plugin-info-dialog.php:580
|
833 |
+
msgctxt "Plugin installer section title"
|
834 |
+
msgid "Description"
|
835 |
+
msgstr "Description"
|
836 |
+
|
837 |
+
#: includes/fs-plugin-info-dialog.php:581
|
838 |
+
msgctxt "Plugin installer section title"
|
839 |
+
msgid "Installation"
|
840 |
+
msgstr "Installation"
|
841 |
+
|
842 |
+
#: includes/fs-plugin-info-dialog.php:582
|
843 |
+
msgctxt "Plugin installer section title"
|
844 |
+
msgid "FAQ"
|
845 |
+
msgstr "FAQ"
|
846 |
+
|
847 |
+
#: includes/fs-plugin-info-dialog.php583,
|
848 |
+
#: templates/plugin-info/description.php:55
|
849 |
+
msgid "Screenshots"
|
850 |
+
msgstr "Captures d'écran"
|
851 |
+
|
852 |
+
#: includes/fs-plugin-info-dialog.php:584
|
853 |
+
msgctxt "Plugin installer section title"
|
854 |
+
msgid "Changelog"
|
855 |
+
msgstr "Changelog"
|
856 |
+
|
857 |
+
#: includes/fs-plugin-info-dialog.php:585
|
858 |
+
msgctxt "Plugin installer section title"
|
859 |
+
msgid "Reviews"
|
860 |
+
msgstr "Commentaires"
|
861 |
+
|
862 |
+
#: includes/fs-plugin-info-dialog.php:586
|
863 |
+
msgctxt "Plugin installer section title"
|
864 |
+
msgid "Other Notes"
|
865 |
+
msgstr "Autres Informations"
|
866 |
+
|
867 |
+
#: includes/fs-plugin-info-dialog.php:601
|
868 |
+
msgctxt "Plugin installer section title"
|
869 |
+
msgid "Features & Pricing"
|
870 |
+
msgstr "Fonctionnalités & Tarifs"
|
871 |
+
|
872 |
+
#: includes/fs-plugin-info-dialog.php:611
|
873 |
+
msgid "Plugin Install"
|
874 |
+
msgstr "Installation du Plugin"
|
875 |
+
|
876 |
+
#: includes/fs-plugin-info-dialog.php:683
|
877 |
+
msgctxt "e.g. Professional Plan"
|
878 |
+
msgid "%s Plan"
|
879 |
+
msgstr "Formule %s"
|
880 |
+
|
881 |
+
#: includes/fs-plugin-info-dialog.php:709
|
882 |
+
msgctxt "e.g. the best product"
|
883 |
+
msgid "Best"
|
884 |
+
msgstr "Best"
|
885 |
+
|
886 |
+
#: includes/fs-plugin-info-dialog.php715,
|
887 |
+
#: includes/fs-plugin-info-dialog.php:735
|
888 |
+
msgctxt "as every month"
|
889 |
+
msgid "Monthly"
|
890 |
+
msgstr "Mensuel"
|
891 |
+
|
892 |
+
#: includes/fs-plugin-info-dialog.php:718
|
893 |
+
msgctxt "as once a year"
|
894 |
+
msgid "Annual"
|
895 |
+
msgstr "Annuel"
|
896 |
+
|
897 |
+
#: includes/fs-plugin-info-dialog.php:721
|
898 |
+
msgid "Lifetime"
|
899 |
+
msgstr "À vie"
|
900 |
+
|
901 |
+
#: includes/fs-plugin-info-dialog.php735,
|
902 |
+
#: includes/fs-plugin-info-dialog.php737,
|
903 |
+
#: includes/fs-plugin-info-dialog.php:739
|
904 |
+
msgctxt "e.g. billed monthly"
|
905 |
+
msgid "Billed %s"
|
906 |
+
msgstr "%s Facturé"
|
907 |
+
|
908 |
+
#: includes/fs-plugin-info-dialog.php:737
|
909 |
+
msgctxt "as once a year"
|
910 |
+
msgid "Annually"
|
911 |
+
msgstr "Annuel"
|
912 |
+
|
913 |
+
#: includes/fs-plugin-info-dialog.php:739
|
914 |
+
msgctxt "as once a year"
|
915 |
+
msgid "Once"
|
916 |
+
msgstr "Une fois"
|
917 |
+
|
918 |
+
#: includes/fs-plugin-info-dialog.php:745
|
919 |
+
msgid "Single Site License"
|
920 |
+
msgstr "Licence 1 site"
|
921 |
+
|
922 |
+
#: includes/fs-plugin-info-dialog.php:747
|
923 |
+
msgid "Unlimited Licenses"
|
924 |
+
msgstr "Licences sites illimités"
|
925 |
+
|
926 |
+
#: includes/fs-plugin-info-dialog.php:749
|
927 |
+
msgid "Up to %s Sites"
|
928 |
+
msgstr "Jusqu'à %s Sites"
|
929 |
+
|
930 |
+
#: includes/fs-plugin-info-dialog.php759,
|
931 |
+
#: templates/plugin-info/features.php:82
|
932 |
+
msgctxt "as monthly period"
|
933 |
+
msgid "mo"
|
934 |
+
msgstr "mois"
|
935 |
+
|
936 |
+
#: includes/fs-plugin-info-dialog.php766,
|
937 |
+
#: templates/plugin-info/features.php:80
|
938 |
+
msgctxt "as annual period"
|
939 |
+
msgid "year"
|
940 |
+
msgstr "année"
|
941 |
+
|
942 |
+
#: includes/fs-plugin-info-dialog.php:820
|
943 |
+
msgctxt "noun"
|
944 |
+
msgid "Price"
|
945 |
+
msgstr "Tarif"
|
946 |
+
|
947 |
+
#: includes/fs-plugin-info-dialog.php:868
|
948 |
+
msgid "Save %s"
|
949 |
+
msgstr "Économisez %s"
|
950 |
+
|
951 |
+
#: includes/fs-plugin-info-dialog.php:878
|
952 |
+
msgid "No commitment for %s - cancel anytime"
|
953 |
+
msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
|
954 |
+
|
955 |
+
#: includes/fs-plugin-info-dialog.php:881
|
956 |
+
msgid "After your free %s, pay as little as %s"
|
957 |
+
msgstr "Après vos %s gratuits, payez seulement %s"
|
958 |
+
|
959 |
+
#: includes/fs-plugin-info-dialog.php:892
|
960 |
+
msgid "Details"
|
961 |
+
msgstr "Détails"
|
962 |
+
|
963 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
964 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
965 |
+
#: templates/account/partials/addon.php:28
|
966 |
+
msgctxt "product version"
|
967 |
+
msgid "Version"
|
968 |
+
msgstr "Version"
|
969 |
+
|
970 |
+
#: includes/fs-plugin-info-dialog.php:903
|
971 |
+
msgctxt "as the plugin author"
|
972 |
+
msgid "Author"
|
973 |
+
msgstr "Auteur"
|
974 |
+
|
975 |
+
#: includes/fs-plugin-info-dialog.php:910
|
976 |
+
msgid "Last Updated"
|
977 |
+
msgstr "Dernière mise à jour"
|
978 |
+
|
979 |
+
#: includes/fs-plugin-info-dialog.php:915
|
980 |
+
msgctxt "x-ago"
|
981 |
+
msgid "%s ago"
|
982 |
+
msgstr "Il y a %s"
|
983 |
+
|
984 |
+
#: includes/fs-plugin-info-dialog.php:924
|
985 |
+
msgid "Requires WordPress Version"
|
986 |
+
msgstr "Version de WordPress requise"
|
987 |
+
|
988 |
+
#: includes/fs-plugin-info-dialog.php:925
|
989 |
+
msgid "%s or higher"
|
990 |
+
msgstr "%s ou plus"
|
991 |
+
|
992 |
+
#: includes/fs-plugin-info-dialog.php:932
|
993 |
+
msgid "Compatible up to"
|
994 |
+
msgstr "Compatible jusqu'à"
|
995 |
+
|
996 |
+
#: includes/fs-plugin-info-dialog.php:940
|
997 |
+
msgid "Downloaded"
|
998 |
+
msgstr "Téléchargé"
|
999 |
+
|
1000 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1001 |
+
msgid "%s time"
|
1002 |
+
msgstr "%s fois"
|
1003 |
+
|
1004 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1005 |
+
msgid "%s times"
|
1006 |
+
msgstr "%s fois"
|
1007 |
+
|
1008 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1009 |
+
msgid "WordPress.org Plugin Page"
|
1010 |
+
msgstr "Page WordPress.org du plugin"
|
1011 |
+
|
1012 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1013 |
+
msgid "Plugin Homepage"
|
1014 |
+
msgstr "Site Web du plugin"
|
1015 |
+
|
1016 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1017 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1018 |
+
msgid "Donate to this plugin"
|
1019 |
+
msgstr "Faire une donation pour ce plugin"
|
1020 |
+
|
1021 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1022 |
+
msgid "Average Rating"
|
1023 |
+
msgstr "Note moyenne"
|
1024 |
+
|
1025 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1026 |
+
msgid "based on %s"
|
1027 |
+
msgstr "Basé sur %s"
|
1028 |
+
|
1029 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1030 |
+
msgid "%s rating"
|
1031 |
+
msgstr "%s notation"
|
1032 |
+
|
1033 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1034 |
+
msgid "%s ratings"
|
1035 |
+
msgstr "%snotations "
|
1036 |
+
|
1037 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1038 |
+
msgid "%s star"
|
1039 |
+
msgstr "%s étoile"
|
1040 |
+
|
1041 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1042 |
+
msgid "%s stars"
|
1043 |
+
msgstr "%s étoiles"
|
1044 |
+
|
1045 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1046 |
+
msgid "Click to see reviews that provided a rating of %s"
|
1047 |
+
msgstr "Cliquez pour voir les avis avec une notation de %s"
|
1048 |
+
|
1049 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1050 |
+
msgid "Contributors"
|
1051 |
+
msgstr "Contributeurs"
|
1052 |
+
|
1053 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1054 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1055 |
+
msgid "Warning"
|
1056 |
+
msgstr "Attention"
|
1057 |
+
|
1058 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1059 |
+
msgid "This plugin has not been tested with your current version of WordPress."
|
1060 |
+
msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
|
1061 |
+
|
1062 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1063 |
+
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1064 |
+
msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
|
1065 |
+
|
1066 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1067 |
+
msgid "Paid add-on must be deployed to Freemius."
|
1068 |
+
msgstr "Les add-ons payant doivent être déposés sur Freemius"
|
1069 |
+
|
1070 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1071 |
+
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1072 |
+
msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
|
1073 |
+
|
1074 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1075 |
+
#: templates/account/partials/site.php:295
|
1076 |
+
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1077 |
+
msgstr "Rétrograder votre formule arrêtera immédiatement tous les futurs paiements récurrents et votre licence de la formule %s expirera dans %s."
|
1078 |
+
|
1079 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1080 |
+
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1081 |
+
msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
|
1082 |
+
|
1083 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1084 |
+
#: templates/account/partials/site.php:296
|
1085 |
+
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1086 |
+
msgstr "Vous pouvez toujours bénéficier de toutes les fonctionnalités %s mais vous n'aurez pas accès aux mises à jour et au support %s."
|
1087 |
+
|
1088 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1089 |
+
#: templates/account/partials/site.php:297
|
1090 |
+
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1091 |
+
msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s."
|
1092 |
+
|
1093 |
+
#. translators: %s: Plan title (e.g. "Professional")
|
1094 |
+
#: templates/account.php86,
|
1095 |
+
#: templates/account/partials/activate-license-button.php31,
|
1096 |
+
#: templates/account/partials/addon.php:27
|
1097 |
+
msgid "Activate %s Plan"
|
1098 |
+
msgstr "Activer la formule %s"
|
1099 |
+
|
1100 |
+
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1101 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1102 |
+
#: templates/account/partials/site.php:275
|
1103 |
+
msgid "Auto renews in %s"
|
1104 |
+
msgstr "Renouvellements automatique dans %s"
|
1105 |
+
|
1106 |
+
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1107 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1108 |
+
#: templates/account/partials/site.php:277
|
1109 |
+
msgid "Expires in %s"
|
1110 |
+
msgstr "Expire dans %s"
|
1111 |
+
|
1112 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1113 |
+
msgctxt "as synchronize license"
|
1114 |
+
msgid "Sync License"
|
1115 |
+
msgstr "Synchroniser la licence"
|
1116 |
+
|
1117 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1118 |
+
msgid "Cancel Trial"
|
1119 |
+
msgstr "Annuler la période d'essai"
|
1120 |
+
|
1121 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1122 |
+
msgid "Change Plan"
|
1123 |
+
msgstr "Changer de formule"
|
1124 |
+
|
1125 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1126 |
+
msgctxt "verb"
|
1127 |
+
msgid "Upgrade"
|
1128 |
+
msgstr "Mise à jour"
|
1129 |
+
|
1130 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1131 |
+
#: templates/account/partials/site.php:298
|
1132 |
+
msgctxt "verb"
|
1133 |
+
msgid "Downgrade"
|
1134 |
+
msgstr "Rétrograder"
|
1135 |
+
|
1136 |
+
#: templates/account.php99, templates/add-ons.php126,
|
1137 |
+
#: templates/plugin-info/features.php72,
|
1138 |
+
#: templates/account/partials/addon.php40,
|
1139 |
+
#: templates/account/partials/site.php:31
|
1140 |
+
msgid "Free"
|
1141 |
+
msgstr "Gratuit"
|
1142 |
+
|
1143 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1144 |
+
msgid "Activate"
|
1145 |
+
msgstr "Activer"
|
1146 |
+
|
1147 |
+
#: templates/account.php101, templates/debug.php361,
|
1148 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1149 |
+
#: templates/account/partials/addon.php:42
|
1150 |
+
msgctxt "as product pricing plan"
|
1151 |
+
msgid "Plan"
|
1152 |
+
msgstr "Formule"
|
1153 |
+
|
1154 |
+
#: templates/account.php:154
|
1155 |
+
msgid "Free Trial"
|
1156 |
+
msgstr "Essai gratuit"
|
1157 |
+
|
1158 |
+
#: templates/account.php:165
|
1159 |
+
msgid "Account Details"
|
1160 |
+
msgstr "Détails du compte"
|
1161 |
+
|
1162 |
+
#: templates/account.php:175
|
1163 |
+
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?"
|
1164 |
+
msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? "
|
1165 |
+
|
1166 |
+
#: templates/account.php:177
|
1167 |
+
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?"
|
1168 |
+
msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?"
|
1169 |
+
|
1170 |
+
#: templates/account.php:180
|
1171 |
+
msgid "Delete Account"
|
1172 |
+
msgstr "Supprimer le compte"
|
1173 |
+
|
1174 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1175 |
+
#: templates/account/partials/deactivate-license-button.php:35
|
1176 |
+
msgid "Deactivate License"
|
1177 |
+
msgstr "Désactiver la licence"
|
1178 |
+
|
1179 |
+
#: templates/account.php:210
|
1180 |
+
msgid "Are you sure you want to proceed?"
|
1181 |
+
msgstr "Êtes-vous de vouloir continuer ?"
|
1182 |
+
|
1183 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1184 |
+
msgid "Cancel Subscription"
|
1185 |
+
msgstr "Annuler l'abonnement"
|
1186 |
+
|
1187 |
+
#: templates/account.php:239
|
1188 |
+
msgctxt "as synchronize"
|
1189 |
+
msgid "Sync"
|
1190 |
+
msgstr "Synchroniser"
|
1191 |
+
|
1192 |
+
#: templates/account.php253, templates/debug.php:477
|
1193 |
+
msgid "Name"
|
1194 |
+
msgstr "Nom"
|
1195 |
+
|
1196 |
+
#: templates/account.php259, templates/debug.php:478
|
1197 |
+
msgid "Email"
|
1198 |
+
msgstr "Email"
|
1199 |
+
|
1200 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1201 |
+
msgid "User ID"
|
1202 |
+
msgstr "User ID"
|
1203 |
+
|
1204 |
+
#: templates/account.php:274
|
1205 |
+
msgid "Site ID"
|
1206 |
+
msgstr "Site ID"
|
1207 |
+
|
1208 |
+
#: templates/account.php:277
|
1209 |
+
msgid "No ID"
|
1210 |
+
msgstr "ID manquant"
|
1211 |
+
|
1212 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1213 |
+
#: templates/debug.php443, templates/debug.php480,
|
1214 |
+
#: templates/account/partials/site.php:219
|
1215 |
+
msgid "Public Key"
|
1216 |
+
msgstr "Clef publique"
|
1217 |
+
|
1218 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1219 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1220 |
+
msgid "Secret Key"
|
1221 |
+
msgstr "Clef secrête"
|
1222 |
+
|
1223 |
+
#: templates/account.php:291
|
1224 |
+
msgctxt "as secret encryption key missing"
|
1225 |
+
msgid "No Secret"
|
1226 |
+
msgstr "Clef secrète manquante"
|
1227 |
+
|
1228 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1229 |
+
#: templates/account/partials/site.php:114
|
1230 |
+
msgid "Trial"
|
1231 |
+
msgstr "Période d'essai"
|
1232 |
+
|
1233 |
+
#: templates/account.php329, templates/debug.php521,
|
1234 |
+
#: templates/account/partials/site.php:248
|
1235 |
+
msgid "License Key"
|
1236 |
+
msgstr "Clef de licence"
|
1237 |
+
|
1238 |
+
#: templates/account.php:359
|
1239 |
+
msgid "not verified"
|
1240 |
+
msgstr "Non vérifié"
|
1241 |
+
|
1242 |
+
#: templates/account.php:416
|
1243 |
+
msgid "Premium version"
|
1244 |
+
msgstr "Version premium"
|
1245 |
+
|
1246 |
+
#: templates/account.php:418
|
1247 |
+
msgid "Free version"
|
1248 |
+
msgstr "Version gratuite"
|
1249 |
+
|
1250 |
+
#: templates/account.php:430
|
1251 |
+
msgid "Verify Email"
|
1252 |
+
msgstr "Vérifier l'email"
|
1253 |
+
|
1254 |
+
#: templates/account.php:441
|
1255 |
+
msgid "Download %s Version"
|
1256 |
+
msgstr "Télécharger la version %s"
|
1257 |
+
|
1258 |
+
#: templates/account.php455, templates/account.php636,
|
1259 |
+
#: templates/account/partials/site.php237,
|
1260 |
+
#: templates/account/partials/site.php:255
|
1261 |
+
msgctxt "verb"
|
1262 |
+
msgid "Show"
|
1263 |
+
msgstr "Afficher"
|
1264 |
+
|
1265 |
+
#: templates/account.php:469
|
1266 |
+
msgid "What is your %s?"
|
1267 |
+
msgstr "Quel est votre %s ?"
|
1268 |
+
|
1269 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1270 |
+
msgctxt "verb"
|
1271 |
+
msgid "Edit"
|
1272 |
+
msgstr "Éditer"
|
1273 |
+
|
1274 |
+
#: templates/account.php:490
|
1275 |
+
msgid "Sites"
|
1276 |
+
msgstr "Sites"
|
1277 |
+
|
1278 |
+
#: templates/account.php:501
|
1279 |
+
msgid "Search by address"
|
1280 |
+
msgstr "Recherche par adresse"
|
1281 |
+
|
1282 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1283 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1284 |
+
#: templates/debug.php514, templates/debug.php587,
|
1285 |
+
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1286 |
+
msgid "ID"
|
1287 |
+
msgstr "ID"
|
1288 |
+
|
1289 |
+
#: templates/account.php511, templates/debug.php:357
|
1290 |
+
msgid "Address"
|
1291 |
+
msgstr "Adresse"
|
1292 |
+
|
1293 |
+
#: templates/account.php:512
|
1294 |
+
msgid "License"
|
1295 |
+
msgstr "Licence"
|
1296 |
+
|
1297 |
+
#: templates/account.php:513
|
1298 |
+
msgid "Plan"
|
1299 |
+
msgstr "Formule"
|
1300 |
+
|
1301 |
+
#: templates/account.php:561
|
1302 |
+
msgctxt "as software license"
|
1303 |
+
msgid "License"
|
1304 |
+
msgstr "Licence"
|
1305 |
+
|
1306 |
+
#: templates/account.php:630
|
1307 |
+
msgctxt "verb"
|
1308 |
+
msgid "Hide"
|
1309 |
+
msgstr "Cacher"
|
1310 |
+
|
1311 |
+
#: templates/account.php:665
|
1312 |
+
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?"
|
1313 |
+
msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?"
|
1314 |
+
|
1315 |
+
#: templates/add-ons.php:36
|
1316 |
+
msgid "Add Ons for %s"
|
1317 |
+
msgstr "Add Ons pour %s"
|
1318 |
+
|
1319 |
+
#: templates/add-ons.php:44
|
1320 |
+
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."
|
1321 |
+
msgstr "Nous n'avons pas pu charger la liste des add-ons. C'est probablement une difficulté de notre côté, merci de d'essayer à nouveau dans quelques minutes."
|
1322 |
+
|
1323 |
+
#: templates/add-ons.php:135
|
1324 |
+
msgid "View details"
|
1325 |
+
msgstr "Voir les détails"
|
1326 |
+
|
1327 |
+
#: templates/admin-notice.php13, templates/forms/license-activation.php208,
|
1328 |
+
#: templates/forms/resend-key.php:77
|
1329 |
+
msgctxt "as close a window"
|
1330 |
+
msgid "Dismiss"
|
1331 |
+
msgstr "Fermer"
|
1332 |
+
|
1333 |
+
#: templates/auto-installation.php:45
|
1334 |
+
msgid "%s sec"
|
1335 |
+
msgstr "%s sec"
|
1336 |
+
|
1337 |
+
#: templates/auto-installation.php:83
|
1338 |
+
msgid "Automatic Installation"
|
1339 |
+
msgstr "Installation automatique"
|
1340 |
+
|
1341 |
+
#: templates/auto-installation.php:93
|
1342 |
+
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."
|
1343 |
+
msgstr "Un téléchargement et une installation automatique de %s (version premium) de %s va commencer dans %s. Si vous voulez le faire manuellement, cliquez sur le bouton d'annulation maintenant."
|
1344 |
+
|
1345 |
+
#: templates/auto-installation.php:104
|
1346 |
+
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."
|
1347 |
+
msgstr "L'installation a commencé et peut prendre quelques minutes pour se finir. Merci de patienter jusqu'à ce qu'elle soit terminée - veuillez ne pas rafraichir cette page."
|
1348 |
+
|
1349 |
+
#: templates/auto-installation.php:109
|
1350 |
+
msgid "Cancel Installation"
|
1351 |
+
msgstr "Annuler l'installation"
|
1352 |
+
|
1353 |
+
#: templates/checkout.php:172
|
1354 |
+
msgid "Checkout"
|
1355 |
+
msgstr "Paiement"
|
1356 |
+
|
1357 |
+
#: templates/checkout.php:172
|
1358 |
+
msgid "PCI compliant"
|
1359 |
+
msgstr "Compatible PCI"
|
1360 |
+
|
1361 |
+
#. translators: %s: name (e.g. Hey John,)
|
1362 |
+
#: templates/connect.php:110
|
1363 |
+
msgctxt "greeting"
|
1364 |
+
msgid "Hey %s,"
|
1365 |
+
msgstr "Hey %s,"
|
1366 |
+
|
1367 |
+
#: templates/connect.php:152
|
1368 |
+
msgid "Allow & Continue"
|
1369 |
+
msgstr "Autoriser & Continuer"
|
1370 |
+
|
1371 |
+
#: templates/connect.php:156
|
1372 |
+
msgid "Re-send activation email"
|
1373 |
+
msgstr "Renvoyer l'email d'activation"
|
1374 |
+
|
1375 |
+
#: templates/connect.php:160
|
1376 |
+
msgid "Thanks %s!"
|
1377 |
+
msgstr "Merci %s !"
|
1378 |
+
|
1379 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1380 |
+
msgid "Agree & Activate License"
|
1381 |
+
msgstr "Valider & Activer la licence"
|
1382 |
+
|
1383 |
+
#: templates/connect.php:179
|
1384 |
+
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1385 |
+
msgstr "Merci d'avoir acheté %s ! Pour commencer, veuillez indiquer votre clef de licence :"
|
1386 |
+
|
1387 |
+
#: templates/connect.php:186
|
1388 |
+
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."
|
1389 |
+
msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s."
|
1390 |
+
|
1391 |
+
#: templates/connect.php:187
|
1392 |
+
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1393 |
+
msgstr "Ne manquez jamais une mise à jour importante - optez pour nos notifications de mises à jour de sécurité et de fonctionnalités, et un suivi diagnostique non sensible avec %4$s."
|
1394 |
+
|
1395 |
+
#: templates/connect.php:193
|
1396 |
+
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."
|
1397 |
+
msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
|
1398 |
+
|
1399 |
+
#: templates/connect.php:194
|
1400 |
+
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."
|
1401 |
+
msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
|
1402 |
+
|
1403 |
+
#: templates/connect.php:228
|
1404 |
+
msgid "We're excited to introduce the Freemius network-level integration."
|
1405 |
+
msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau."
|
1406 |
+
|
1407 |
+
#: templates/connect.php:231
|
1408 |
+
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1409 |
+
msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence."
|
1410 |
+
|
1411 |
+
#: templates/connect.php:233
|
1412 |
+
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1413 |
+
msgstr "Si vous voulez utiliser le %s sur ces sites, merci d'indiquer votre clé de licence ci-dessous et de cliquer sur le bouton d'activation."
|
1414 |
+
|
1415 |
+
#: templates/connect.php:235
|
1416 |
+
msgid "%s's paid features"
|
1417 |
+
msgstr "Fonctionnalités payantes de %s"
|
1418 |
+
|
1419 |
+
#: templates/connect.php:240
|
1420 |
+
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1421 |
+
msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s."
|
1422 |
+
|
1423 |
+
#: templates/connect.php:242
|
1424 |
+
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1425 |
+
msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
|
1426 |
+
|
1427 |
+
#: templates/connect.php251, templates/forms/license-activation.php:46
|
1428 |
+
msgid "License key"
|
1429 |
+
msgstr "Clef de licence"
|
1430 |
+
|
1431 |
+
#: templates/connect.php254, templates/forms/license-activation.php:19
|
1432 |
+
msgid "Can't find your license key?"
|
1433 |
+
msgstr "Vous ne trouvez pas votre clef de licence ?"
|
1434 |
+
|
1435 |
+
#: templates/connect.php302, templates/connect.php617,
|
1436 |
+
#: templates/forms/deactivation/retry-skip.php:20
|
1437 |
+
msgctxt "verb"
|
1438 |
+
msgid "Skip"
|
1439 |
+
msgstr "Passer"
|
1440 |
+
|
1441 |
+
#: templates/connect.php:305
|
1442 |
+
msgid "Delegate to Site Admins"
|
1443 |
+
msgstr "Déléguer aux administrateurs du site"
|
1444 |
+
|
1445 |
+
#: templates/connect.php:305
|
1446 |
+
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1447 |
+
msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites."
|
1448 |
+
|
1449 |
+
#: templates/connect.php:333
|
1450 |
+
msgid "Your Profile Overview"
|
1451 |
+
msgstr "Résumé de votre profil"
|
1452 |
+
|
1453 |
+
#: templates/connect.php:334
|
1454 |
+
msgid "Name and email address"
|
1455 |
+
msgstr "Nom et adresse email"
|
1456 |
+
|
1457 |
+
#: templates/connect.php:339
|
1458 |
+
msgid "Your Site Overview"
|
1459 |
+
msgstr "Résumé de votre site"
|
1460 |
+
|
1461 |
+
#: templates/connect.php:340
|
1462 |
+
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1463 |
+
msgstr "Site URL, WP version, PHP info, plugins & themes"
|
1464 |
+
|
1465 |
+
#: templates/connect.php:345
|
1466 |
+
msgid "Admin Notices"
|
1467 |
+
msgstr "Notifications Administrateur"
|
1468 |
+
|
1469 |
+
#: templates/connect.php346, templates/connect.php:362
|
1470 |
+
msgid "Updates, announcements, marketing, no spam"
|
1471 |
+
msgstr "Mises à jour, annonces, marketing, pas de spam"
|
1472 |
+
|
1473 |
+
#: templates/connect.php:351
|
1474 |
+
msgid "Current %s Events"
|
1475 |
+
msgstr "Évènements du %s actuel"
|
1476 |
+
|
1477 |
+
#: templates/connect.php:352
|
1478 |
+
msgid "Activation, deactivation and uninstall"
|
1479 |
+
msgstr "Activation, désactivation et désintallation"
|
1480 |
+
|
1481 |
+
#: templates/connect.php:361
|
1482 |
+
msgid "Newsletter"
|
1483 |
+
msgstr "Newsletter"
|
1484 |
+
|
1485 |
+
#: templates/connect.php378, templates/forms/license-activation.php:38
|
1486 |
+
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."
|
1487 |
+
msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence."
|
1488 |
+
|
1489 |
+
#: templates/connect.php:383
|
1490 |
+
msgid "What permissions are being granted?"
|
1491 |
+
msgstr "Quelles autorisations sont accordées ?"
|
1492 |
+
|
1493 |
+
#: templates/connect.php:404
|
1494 |
+
msgid "Don't have a license key?"
|
1495 |
+
msgstr "Vous n'avez pas de clef de licence ?"
|
1496 |
+
|
1497 |
+
#: templates/connect.php:405
|
1498 |
+
msgid "Activate Free Version"
|
1499 |
+
msgstr "Activez la version gratuite"
|
1500 |
+
|
1501 |
+
#: templates/connect.php:407
|
1502 |
+
msgid "Have a license key?"
|
1503 |
+
msgstr "Vous avez une clef de licence ?"
|
1504 |
+
|
1505 |
+
#: templates/connect.php:415
|
1506 |
+
msgid "Privacy Policy"
|
1507 |
+
msgstr "Politique de confidentialité"
|
1508 |
+
|
1509 |
+
#: templates/connect.php:417
|
1510 |
+
msgid "Terms of Service"
|
1511 |
+
msgstr "Conditions générales de service"
|
1512 |
+
|
1513 |
+
#: templates/connect.php:750
|
1514 |
+
msgctxt "as in the process of sending an email"
|
1515 |
+
msgid "Sending email"
|
1516 |
+
msgstr "Email en cours d'envoi"
|
1517 |
+
|
1518 |
+
#: templates/connect.php:751
|
1519 |
+
msgctxt "as activating plugin"
|
1520 |
+
msgid "Activating"
|
1521 |
+
msgstr "Activation en cours"
|
1522 |
+
|
1523 |
+
#: templates/contact.php:78
|
1524 |
+
msgid "Contact"
|
1525 |
+
msgstr "Contact"
|
1526 |
+
|
1527 |
+
#: templates/debug.php:17
|
1528 |
+
msgctxt "as turned off"
|
1529 |
+
msgid "Off"
|
1530 |
+
msgstr "Off"
|
1531 |
+
|
1532 |
+
#: templates/debug.php:18
|
1533 |
+
msgctxt "as turned on"
|
1534 |
+
msgid "On"
|
1535 |
+
msgstr "On"
|
1536 |
+
|
1537 |
+
#: templates/debug.php:20
|
1538 |
+
msgid "SDK"
|
1539 |
+
msgstr "SDK"
|
1540 |
+
|
1541 |
+
#: templates/debug.php:24
|
1542 |
+
msgctxt "as code debugging"
|
1543 |
+
msgid "Debugging"
|
1544 |
+
msgstr "Debuggage"
|
1545 |
+
|
1546 |
+
#: templates/debug.php54, templates/debug.php238, templates/debug.php364,
|
1547 |
+
#: templates/debug.php:482
|
1548 |
+
msgid "Actions"
|
1549 |
+
msgstr "Actions"
|
1550 |
+
|
1551 |
+
#: templates/debug.php:64
|
1552 |
+
msgid "Are you sure you want to delete all Freemius data?"
|
1553 |
+
msgstr "Êtes-vous sûr de vouloir supprimer toutes les données de Freemius ?"
|
1554 |
+
|
1555 |
+
#: templates/debug.php:64
|
1556 |
+
msgid "Delete All Accounts"
|
1557 |
+
msgstr "Supprimer tous les comptes"
|
1558 |
+
|
1559 |
+
#: templates/debug.php:71
|
1560 |
+
msgid "Clear API Cache"
|
1561 |
+
msgstr "Vider le cache API"
|
1562 |
+
|
1563 |
+
#: templates/debug.php:79
|
1564 |
+
msgid "Clear Updates Transients"
|
1565 |
+
msgstr "Vider les transients de mise à jour"
|
1566 |
+
|
1567 |
+
#: templates/debug.php:86
|
1568 |
+
msgid "Sync Data From Server"
|
1569 |
+
msgstr "Synchronisation des données depuis le serveur"
|
1570 |
+
|
1571 |
+
#: templates/debug.php:90
|
1572 |
+
msgid "Load DB Option"
|
1573 |
+
msgstr "Chargement des options de la base de données"
|
1574 |
+
|
1575 |
+
#: templates/debug.php:93
|
1576 |
+
msgid "Set DB Option"
|
1577 |
+
msgstr "Mise en place des options de la base de données"
|
1578 |
+
|
1579 |
+
#: templates/debug.php:170
|
1580 |
+
msgid "Key"
|
1581 |
+
msgstr "Clef"
|
1582 |
+
|
1583 |
+
#: templates/debug.php:171
|
1584 |
+
msgid "Value"
|
1585 |
+
msgstr "Valeur"
|
1586 |
+
|
1587 |
+
#: templates/debug.php:187
|
1588 |
+
msgctxt "as software development kit versions"
|
1589 |
+
msgid "SDK Versions"
|
1590 |
+
msgstr "Versions du SDK"
|
1591 |
+
|
1592 |
+
#: templates/debug.php:192
|
1593 |
+
msgid "SDK Path"
|
1594 |
+
msgstr "Chemin d'accès du SDK"
|
1595 |
+
|
1596 |
+
#: templates/debug.php193, templates/debug.php:232
|
1597 |
+
msgid "Module Path"
|
1598 |
+
msgstr "Chemin d'accès du module"
|
1599 |
+
|
1600 |
+
#: templates/debug.php:194
|
1601 |
+
msgid "Is Active"
|
1602 |
+
msgstr "Est actif"
|
1603 |
+
|
1604 |
+
#: templates/debug.php222, templates/debug/plugins-themes-sync.php:35
|
1605 |
+
msgid "Plugins"
|
1606 |
+
msgstr "Plugins"
|
1607 |
+
|
1608 |
+
#: templates/debug.php222, templates/debug/plugins-themes-sync.php:56
|
1609 |
+
msgid "Themes"
|
1610 |
+
msgstr "Thèmes"
|
1611 |
+
|
1612 |
+
#: templates/debug.php227, templates/debug.php359, templates/debug.php441,
|
1613 |
+
#: templates/debug/scheduled-crons.php:80
|
1614 |
+
msgid "Slug"
|
1615 |
+
msgstr "Slug"
|
1616 |
+
|
1617 |
+
#: templates/debug.php229, templates/debug.php:440
|
1618 |
+
msgid "Title"
|
1619 |
+
msgstr "Titre"
|
1620 |
+
|
1621 |
+
#: templates/debug.php:230
|
1622 |
+
msgctxt "as application program interface"
|
1623 |
+
msgid "API"
|
1624 |
+
msgstr "API"
|
1625 |
+
|
1626 |
+
#: templates/debug.php:231
|
1627 |
+
msgid "Freemius State"
|
1628 |
+
msgstr "État de Freemius"
|
1629 |
+
|
1630 |
+
#: templates/debug.php:235
|
1631 |
+
msgid "Network Blog"
|
1632 |
+
msgstr "Réseau de Blog"
|
1633 |
+
|
1634 |
+
#: templates/debug.php:236
|
1635 |
+
msgid "Network User"
|
1636 |
+
msgstr "Réseau d'Utilisateur"
|
1637 |
+
|
1638 |
+
#: templates/debug.php:273
|
1639 |
+
msgctxt "as connection was successful"
|
1640 |
+
msgid "Connected"
|
1641 |
+
msgstr "Connecté"
|
1642 |
+
|
1643 |
+
#: templates/debug.php:274
|
1644 |
+
msgctxt "as connection blocked"
|
1645 |
+
msgid "Blocked"
|
1646 |
+
msgstr "Bloqué"
|
1647 |
+
|
1648 |
+
#: templates/debug.php:310
|
1649 |
+
msgid "Simulate Trial"
|
1650 |
+
msgstr "Simuler l'essai"
|
1651 |
+
|
1652 |
+
#: templates/debug.php:322
|
1653 |
+
msgid "Simulate Network Upgrade"
|
1654 |
+
msgstr "Simuler la mise à jour du réseau"
|
1655 |
+
|
1656 |
+
#: templates/debug.php:348
|
1657 |
+
msgid "%s Installs"
|
1658 |
+
msgstr "%s Installations"
|
1659 |
+
|
1660 |
+
#: templates/debug.php:350
|
1661 |
+
msgctxt "like websites"
|
1662 |
+
msgid "Sites"
|
1663 |
+
msgstr "Sites"
|
1664 |
+
|
1665 |
+
#: templates/debug.php356, templates/account/partials/site.php:148
|
1666 |
+
msgid "Blog ID"
|
1667 |
+
msgstr "Blog ID"
|
1668 |
+
|
1669 |
+
#: templates/debug.php421, templates/debug.php499,
|
1670 |
+
#: templates/account/partials/addon.php:334
|
1671 |
+
msgctxt "verb"
|
1672 |
+
msgid "Delete"
|
1673 |
+
msgstr "Supprimer"
|
1674 |
+
|
1675 |
+
#: templates/debug.php:435
|
1676 |
+
msgid "Add Ons of module %s"
|
1677 |
+
msgstr "Add Ons du module %s"
|
1678 |
+
|
1679 |
+
#: templates/debug.php:472
|
1680 |
+
msgid "Users"
|
1681 |
+
msgstr "Utilisateurs"
|
1682 |
+
|
1683 |
+
#: templates/debug.php:479
|
1684 |
+
msgid "Verified"
|
1685 |
+
msgstr "Vérifié"
|
1686 |
+
|
1687 |
+
#: templates/debug.php:510
|
1688 |
+
msgid "%s Licenses"
|
1689 |
+
msgstr "%s Licences"
|
1690 |
+
|
1691 |
+
#: templates/debug.php:515
|
1692 |
+
msgid "Plugin ID"
|
1693 |
+
msgstr "ID du plugin"
|
1694 |
+
|
1695 |
+
#: templates/debug.php:517
|
1696 |
+
msgid "Plan ID"
|
1697 |
+
msgstr "ID de la formule"
|
1698 |
+
|
1699 |
+
#: templates/debug.php:518
|
1700 |
+
msgid "Quota"
|
1701 |
+
msgstr "Quota"
|
1702 |
+
|
1703 |
+
#: templates/debug.php:519
|
1704 |
+
msgid "Activated"
|
1705 |
+
msgstr "Activé"
|
1706 |
+
|
1707 |
+
#: templates/debug.php:520
|
1708 |
+
msgid "Blocking"
|
1709 |
+
msgstr "Bloquant"
|
1710 |
+
|
1711 |
+
#: templates/debug.php:522
|
1712 |
+
msgctxt "as expiration date"
|
1713 |
+
msgid "Expiration"
|
1714 |
+
msgstr "Expiration"
|
1715 |
+
|
1716 |
+
#: templates/debug.php:545
|
1717 |
+
msgid "Debug Log"
|
1718 |
+
msgstr "Debug Log"
|
1719 |
+
|
1720 |
+
#: templates/debug.php:549
|
1721 |
+
msgid "All Types"
|
1722 |
+
msgstr "Tous les types"
|
1723 |
+
|
1724 |
+
#: templates/debug.php:556
|
1725 |
+
msgid "All Requests"
|
1726 |
+
msgstr "Toutes les demandes"
|
1727 |
+
|
1728 |
+
#: templates/debug.php561, templates/debug.php590,
|
1729 |
+
#: templates/debug/logger.php:25
|
1730 |
+
msgid "File"
|
1731 |
+
msgstr "Fichier"
|
1732 |
+
|
1733 |
+
#: templates/debug.php562, templates/debug.php588,
|
1734 |
+
#: templates/debug/logger.php:23
|
1735 |
+
msgid "Function"
|
1736 |
+
msgstr "Fonction"
|
1737 |
+
|
1738 |
+
#: templates/debug.php:563
|
1739 |
+
msgid "Process ID"
|
1740 |
+
msgstr "ID du processus"
|
1741 |
+
|
1742 |
+
#: templates/debug.php:564
|
1743 |
+
msgid "Logger"
|
1744 |
+
msgstr "Logger"
|
1745 |
+
|
1746 |
+
#: templates/debug.php565, templates/debug.php589,
|
1747 |
+
#: templates/debug/logger.php:24
|
1748 |
+
msgid "Message"
|
1749 |
+
msgstr "Message"
|
1750 |
+
|
1751 |
+
#: templates/debug.php:567
|
1752 |
+
msgid "Filter"
|
1753 |
+
msgstr "Filter"
|
1754 |
+
|
1755 |
+
#: templates/debug.php:575
|
1756 |
+
msgid "Download"
|
1757 |
+
msgstr "Téléchargement"
|
1758 |
+
|
1759 |
+
#: templates/debug.php586, templates/debug/logger.php:22
|
1760 |
+
msgid "Type"
|
1761 |
+
msgstr "Type"
|
1762 |
+
|
1763 |
+
#: templates/debug.php591, templates/debug/logger.php:26
|
1764 |
+
msgid "Timestamp"
|
1765 |
+
msgstr "Timestamp"
|
1766 |
+
|
1767 |
+
#: templates/secure-https-header.php:28
|
1768 |
+
msgid "Secure HTTPS %s page, running from an external domain"
|
1769 |
+
msgstr "Page %s sécurisée HTTPS, s'exécutant sur un domaine externe"
|
1770 |
+
|
1771 |
+
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1772 |
+
#: templates/plugin-info/features.php:43
|
1773 |
+
msgid "Support"
|
1774 |
+
msgstr "Support"
|
1775 |
+
|
1776 |
+
#: includes/debug/class-fs-debug-bar-panel.php48,
|
1777 |
+
#: templates/debug/api-calls.php54, templates/debug/logger.php:62
|
1778 |
+
msgctxt "milliseconds"
|
1779 |
+
msgid "ms"
|
1780 |
+
msgstr "ms"
|
1781 |
+
|
1782 |
+
#: includes/debug/debug-bar-start.php:41
|
1783 |
+
msgid "Freemius API"
|
1784 |
+
msgstr "API Freemius"
|
1785 |
+
|
1786 |
+
#: includes/debug/debug-bar-start.php:42
|
1787 |
+
msgid "Requests"
|
1788 |
+
msgstr "Demandes"
|
1789 |
+
|
1790 |
+
#: templates/account/billing.php:28
|
1791 |
+
msgctxt "verb"
|
1792 |
+
msgid "Update"
|
1793 |
+
msgstr "Mise à jour"
|
1794 |
+
|
1795 |
+
#: templates/account/billing.php:39
|
1796 |
+
msgid "Billing"
|
1797 |
+
msgstr "Facturation"
|
1798 |
+
|
1799 |
+
#: templates/account/billing.php44, templates/account/billing.php:44
|
1800 |
+
msgid "Business name"
|
1801 |
+
msgstr "Raison sociale"
|
1802 |
+
|
1803 |
+
#: templates/account/billing.php45, templates/account/billing.php:45
|
1804 |
+
msgid "Tax / VAT ID"
|
1805 |
+
msgstr "Code TVA"
|
1806 |
+
|
1807 |
+
#: templates/account/billing.php48, templates/account/billing.php48,
|
1808 |
+
#: templates/account/billing.php49, templates/account/billing.php:49
|
1809 |
+
msgid "Address Line %d"
|
1810 |
+
msgstr "Adresse ligne %d"
|
1811 |
+
|
1812 |
+
#: templates/account/billing.php52, templates/account/billing.php:52
|
1813 |
+
msgid "City"
|
1814 |
+
msgstr "Ville"
|
1815 |
+
|
1816 |
+
#: templates/account/billing.php52, templates/account/billing.php:52
|
1817 |
+
msgid "Town"
|
1818 |
+
msgstr "Ville"
|
1819 |
+
|
1820 |
+
#: templates/account/billing.php53, templates/account/billing.php:53
|
1821 |
+
msgid "ZIP / Postal Code"
|
1822 |
+
msgstr "Code postal"
|
1823 |
+
|
1824 |
+
#: templates/account/billing.php:308
|
1825 |
+
msgid "Country"
|
1826 |
+
msgstr "Pays"
|
1827 |
+
|
1828 |
+
#: templates/account/billing.php:310
|
1829 |
+
msgid "Select Country"
|
1830 |
+
msgstr "Choisir le pays"
|
1831 |
+
|
1832 |
+
#: templates/account/billing.php317, templates/account/billing.php:318
|
1833 |
+
msgid "State"
|
1834 |
+
msgstr "État"
|
1835 |
+
|
1836 |
+
#: templates/account/billing.php317, templates/account/billing.php:318
|
1837 |
+
msgid "Province"
|
1838 |
+
msgstr "Région"
|
1839 |
+
|
1840 |
+
#: templates/account/payments.php:29
|
1841 |
+
msgid "Payments"
|
1842 |
+
msgstr "Paiements"
|
1843 |
+
|
1844 |
+
#: templates/account/payments.php:36
|
1845 |
+
msgid "Date"
|
1846 |
+
msgstr "Date"
|
1847 |
+
|
1848 |
+
#: templates/account/payments.php:37
|
1849 |
+
msgid "Amount"
|
1850 |
+
msgstr "Montant"
|
1851 |
+
|
1852 |
+
#: templates/account/payments.php38, templates/account/payments.php:50
|
1853 |
+
msgid "Invoice"
|
1854 |
+
msgstr "Facture"
|
1855 |
+
|
1856 |
+
#: templates/debug/api-calls.php:56
|
1857 |
+
msgid "API"
|
1858 |
+
msgstr "API"
|
1859 |
+
|
1860 |
+
#: templates/debug/api-calls.php:68
|
1861 |
+
msgid "Method"
|
1862 |
+
msgstr "Méthode"
|
1863 |
+
|
1864 |
+
#: templates/debug/api-calls.php:69
|
1865 |
+
msgid "Code"
|
1866 |
+
msgstr "Code"
|
1867 |
+
|
1868 |
+
#: templates/debug/api-calls.php:70
|
1869 |
+
msgid "Length"
|
1870 |
+
msgstr "Longueur"
|
1871 |
+
|
1872 |
+
#: templates/debug/api-calls.php:71
|
1873 |
+
msgctxt "as file/folder path"
|
1874 |
+
msgid "Path"
|
1875 |
+
msgstr "Chemin"
|
1876 |
+
|
1877 |
+
#: templates/debug/api-calls.php:73
|
1878 |
+
msgid "Body"
|
1879 |
+
msgstr "Body"
|
1880 |
+
|
1881 |
+
#: templates/debug/api-calls.php:75
|
1882 |
+
msgid "Result"
|
1883 |
+
msgstr "Résultat"
|
1884 |
+
|
1885 |
+
#: templates/debug/api-calls.php:76
|
1886 |
+
msgid "Start"
|
1887 |
+
msgstr "Début"
|
1888 |
+
|
1889 |
+
#: templates/debug/api-calls.php:77
|
1890 |
+
msgid "End"
|
1891 |
+
msgstr "Fin"
|
1892 |
+
|
1893 |
+
#: templates/debug/logger.php:15
|
1894 |
+
msgid "Log"
|
1895 |
+
msgstr "Log"
|
1896 |
+
|
1897 |
+
#. translators: %s: time period (e.g. In "2 hours")
|
1898 |
+
#: templates/debug/plugins-themes-sync.php18,
|
1899 |
+
#: templates/debug/scheduled-crons.php:91
|
1900 |
+
msgid "In %s"
|
1901 |
+
msgstr "Dans %s"
|
1902 |
+
|
1903 |
+
#. translators: %s: time period (e.g. "2 hours" ago)
|
1904 |
+
#: templates/debug/plugins-themes-sync.php20,
|
1905 |
+
#: templates/debug/scheduled-crons.php:93
|
1906 |
+
msgid "%s ago"
|
1907 |
+
msgstr "Il y a %s"
|
1908 |
+
|
1909 |
+
#: templates/debug/plugins-themes-sync.php21,
|
1910 |
+
#: templates/debug/scheduled-crons.php:74
|
1911 |
+
msgctxt "seconds"
|
1912 |
+
msgid "sec"
|
1913 |
+
msgstr "sec"
|
1914 |
+
|
1915 |
+
#: templates/debug/plugins-themes-sync.php:23
|
1916 |
+
msgid "Plugins & Themes Sync"
|
1917 |
+
msgstr "Synchronisation des plugin et des thèmes"
|
1918 |
+
|
1919 |
+
#: templates/debug/plugins-themes-sync.php:28
|
1920 |
+
msgid "Total"
|
1921 |
+
msgstr "Total"
|
1922 |
+
|
1923 |
+
#: templates/debug/plugins-themes-sync.php29,
|
1924 |
+
#: templates/debug/scheduled-crons.php:84
|
1925 |
+
msgid "Last"
|
1926 |
+
msgstr "Dernier"
|
1927 |
+
|
1928 |
+
#: templates/debug/scheduled-crons.php:76
|
1929 |
+
msgid "Scheduled Crons"
|
1930 |
+
msgstr "Crons programmés"
|
1931 |
+
|
1932 |
+
#: templates/debug/scheduled-crons.php:81
|
1933 |
+
msgid "Module"
|
1934 |
+
msgstr "Module"
|
1935 |
+
|
1936 |
+
#: templates/debug/scheduled-crons.php:82
|
1937 |
+
msgid "Module Type"
|
1938 |
+
msgstr "Type de module"
|
1939 |
+
|
1940 |
+
#: templates/debug/scheduled-crons.php:83
|
1941 |
+
msgid "Cron Type"
|
1942 |
+
msgstr "Type de Cron"
|
1943 |
+
|
1944 |
+
#: templates/debug/scheduled-crons.php:85
|
1945 |
+
msgid "Next"
|
1946 |
+
msgstr "Suivant"
|
1947 |
+
|
1948 |
+
#: templates/forms/affiliation.php:82
|
1949 |
+
msgid "Non-expiring"
|
1950 |
+
msgstr "Sans expiration"
|
1951 |
+
|
1952 |
+
#: templates/forms/affiliation.php:85
|
1953 |
+
msgid "Apply to become an affiliate"
|
1954 |
+
msgstr "Postuler pour devenir un affilié"
|
1955 |
+
|
1956 |
+
#: templates/forms/affiliation.php:104
|
1957 |
+
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1958 |
+
msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s."
|
1959 |
+
|
1960 |
+
#: templates/forms/affiliation.php:119
|
1961 |
+
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."
|
1962 |
+
msgstr "Merci d'avoir postulé à notre programme d'affiliation, nous regarderons votre dossier durant les 14 prochains jours et nous reviendrons vers vous avec d'autres informations."
|
1963 |
+
|
1964 |
+
#: templates/forms/affiliation.php:122
|
1965 |
+
msgid "Your affiliation account was temporarily suspended."
|
1966 |
+
msgstr "Votre compte affilié a été suspendu temporairement."
|
1967 |
+
|
1968 |
+
#: templates/forms/affiliation.php:125
|
1969 |
+
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."
|
1970 |
+
msgstr "Merci d'avoir postulé à notre programme d'affiliation, malheureusement, nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer à nouveau d'ici 30 jours."
|
1971 |
+
|
1972 |
+
#: templates/forms/affiliation.php:128
|
1973 |
+
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1974 |
+
msgstr "Suite à une violation de nos conditions d'affiliation, nous avons décidé de bloquer temporairement votre compte d'affilié. Si vous avez la moindre question, merci de contacter le support."
|
1975 |
+
|
1976 |
+
#: templates/forms/affiliation.php:141
|
1977 |
+
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1978 |
+
msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)"
|
1979 |
+
|
1980 |
+
#: templates/forms/affiliation.php:142
|
1981 |
+
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1982 |
+
msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez."
|
1983 |
+
|
1984 |
+
#: templates/forms/affiliation.php:145
|
1985 |
+
msgid "Program Summary"
|
1986 |
+
msgstr "Sommaire du programme"
|
1987 |
+
|
1988 |
+
#: templates/forms/affiliation.php:147
|
1989 |
+
msgid "%s commission when a customer purchases a new license."
|
1990 |
+
msgstr "Commission de %s quand un client achète une nouvelle licence."
|
1991 |
+
|
1992 |
+
#: templates/forms/affiliation.php:149
|
1993 |
+
msgid "Get commission for automated subscription renewals."
|
1994 |
+
msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement."
|
1995 |
+
|
1996 |
+
#: templates/forms/affiliation.php:152
|
1997 |
+
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
1998 |
+
msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain."
|
1999 |
+
|
2000 |
+
#: templates/forms/affiliation.php:155
|
2001 |
+
msgid "Unlimited commissions."
|
2002 |
+
msgstr "Commissions illimitées."
|
2003 |
+
|
2004 |
+
#: templates/forms/affiliation.php:157
|
2005 |
+
msgid "%s minimum payout amount."
|
2006 |
+
msgstr "Montant de paiement minimum %s."
|
2007 |
+
|
2008 |
+
#: templates/forms/affiliation.php:158
|
2009 |
+
msgid "Payouts are in USD and processed monthly via PayPal."
|
2010 |
+
msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal."
|
2011 |
+
|
2012 |
+
#: templates/forms/affiliation.php:159
|
2013 |
+
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2014 |
+
msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours."
|
2015 |
+
|
2016 |
+
#: templates/forms/affiliation.php:162
|
2017 |
+
msgid "Affiliate"
|
2018 |
+
msgstr "Affiliation"
|
2019 |
+
|
2020 |
+
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
2021 |
+
msgid "Email address"
|
2022 |
+
msgstr "Adresse email"
|
2023 |
+
|
2024 |
+
#: templates/forms/affiliation.php:169
|
2025 |
+
msgid "Full name"
|
2026 |
+
msgstr "Nom complet"
|
2027 |
+
|
2028 |
+
#: templates/forms/affiliation.php:173
|
2029 |
+
msgid "PayPal account email address"
|
2030 |
+
msgstr "Adresse email du compte PayPal"
|
2031 |
+
|
2032 |
+
#: templates/forms/affiliation.php:177
|
2033 |
+
msgid "Where are you going to promote the %s?"
|
2034 |
+
msgstr "Où allez-vous faire la promotion du %s ? "
|
2035 |
+
|
2036 |
+
#: templates/forms/affiliation.php:179
|
2037 |
+
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2038 |
+
msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s"
|
2039 |
+
|
2040 |
+
#: templates/forms/affiliation.php:181
|
2041 |
+
msgid "Add another domain"
|
2042 |
+
msgstr "Ajouter une autre adresse"
|
2043 |
+
|
2044 |
+
#: templates/forms/affiliation.php:185
|
2045 |
+
msgid "Extra Domains"
|
2046 |
+
msgstr "Adresses supplémentaires"
|
2047 |
+
|
2048 |
+
#: templates/forms/affiliation.php:186
|
2049 |
+
msgid "Extra domains where you will be marketing the product from."
|
2050 |
+
msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit."
|
2051 |
+
|
2052 |
+
#: templates/forms/affiliation.php:196
|
2053 |
+
msgid "Promotion methods"
|
2054 |
+
msgstr "Méthodes de promotion"
|
2055 |
+
|
2056 |
+
#: templates/forms/affiliation.php:199
|
2057 |
+
msgid "Social media (Facebook, Twitter, etc.)"
|
2058 |
+
msgstr "Réseaux sociaux (Facebook, Twitter, etc.)"
|
2059 |
+
|
2060 |
+
#: templates/forms/affiliation.php:203
|
2061 |
+
msgid "Mobile apps"
|
2062 |
+
msgstr "Applications mobiles"
|
2063 |
+
|
2064 |
+
#: templates/forms/affiliation.php:207
|
2065 |
+
msgid "Website, email, and social media statistics (optional)"
|
2066 |
+
msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)"
|
2067 |
+
|
2068 |
+
#: templates/forms/affiliation.php:210
|
2069 |
+
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)."
|
2070 |
+
msgstr "N'hésitez pas à indiquer des statistiques pertinentes concernant votre site ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre d'abonnés, de followers, etc... (C'est informations resteront confidentielles)"
|
2071 |
+
|
2072 |
+
#: templates/forms/affiliation.php:214
|
2073 |
+
msgid "How will you promote us?"
|
2074 |
+
msgstr "Comment allez-vous faire de la promotion ?"
|
2075 |
+
|
2076 |
+
#: templates/forms/affiliation.php:217
|
2077 |
+
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2078 |
+
msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)"
|
2079 |
+
|
2080 |
+
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
2081 |
+
msgid "Cancel"
|
2082 |
+
msgstr "Annuler"
|
2083 |
+
|
2084 |
+
#: templates/forms/affiliation.php:225
|
2085 |
+
msgid "Become an affiliate"
|
2086 |
+
msgstr "Devenir un affilié"
|
2087 |
+
|
2088 |
+
#: templates/forms/license-activation.php:20
|
2089 |
+
msgid "Please enter the license key that you received in the email right after the purchase:"
|
2090 |
+
msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :"
|
2091 |
+
|
2092 |
+
#: templates/forms/license-activation.php:25
|
2093 |
+
msgid "Update License"
|
2094 |
+
msgstr "Mettre à jour la licence"
|
2095 |
+
|
2096 |
+
#: templates/forms/optout.php:30
|
2097 |
+
msgctxt "verb"
|
2098 |
+
msgid "Opt Out"
|
2099 |
+
msgstr "Désinscription"
|
2100 |
+
|
2101 |
+
#: templates/forms/optout.php:31
|
2102 |
+
msgctxt "verb"
|
2103 |
+
msgid "Opt In"
|
2104 |
+
msgstr "Inscription"
|
2105 |
+
|
2106 |
+
#: templates/forms/optout.php:33
|
2107 |
+
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."
|
2108 |
+
msgstr "Le suivi d'utilisation de %s nous permet de l'améliorer. Apporter une meilleure expérience pour l'utilisateur, définir quelles seront les nouvelles fonctionnalités, ce genre de choses. Aussi nous vous serions reconnaissant si vous acceptiez de nous permettre de continuer à récupérer des informations."
|
2109 |
+
|
2110 |
+
#: templates/forms/optout.php:35
|
2111 |
+
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2112 |
+
msgstr "En cliquant \"Désincription\", nous n'enverrons plus d'informations de %s à %s."
|
2113 |
+
|
2114 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2115 |
+
msgid "There is a new version of %s available."
|
2116 |
+
msgstr "Il y a une nouvelle version disponible de %s. "
|
2117 |
+
|
2118 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2119 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2120 |
+
msgstr "%sRenouveler votre licence maintenant%s pour accéder aux mise à jour de sécurité et de fonctionnalités de la version %s ainsi qu'au support."
|
2121 |
+
|
2122 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2123 |
+
msgid "New Version Available"
|
2124 |
+
msgstr "Une nouvelle version est disponible"
|
2125 |
+
|
2126 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2127 |
+
msgid "Renew license"
|
2128 |
+
msgstr "Renouvelez votre licence"
|
2129 |
+
|
2130 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2131 |
+
msgctxt "close a window"
|
2132 |
+
msgid "Dismiss"
|
2133 |
+
msgstr "Fermer"
|
2134 |
+
|
2135 |
+
#: templates/forms/resend-key.php:21
|
2136 |
+
msgid "Send License Key"
|
2137 |
+
msgstr "Envoyer le code de la licence"
|
2138 |
+
|
2139 |
+
#: templates/forms/resend-key.php:57
|
2140 |
+
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
2141 |
+
msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à jour et nous allons vous renvoyer le code de la licence."
|
2142 |
+
|
2143 |
+
#: templates/forms/trial-start.php:22
|
2144 |
+
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
2145 |
+
msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s jours de la formule %2$s."
|
2146 |
+
|
2147 |
+
#: templates/forms/trial-start.php:28
|
2148 |
+
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."
|
2149 |
+
msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai."
|
2150 |
+
|
2151 |
+
#: templates/js/style-premium-theme.php:37
|
2152 |
+
msgid "Premium"
|
2153 |
+
msgstr "Premium"
|
2154 |
+
|
2155 |
+
#: templates/partials/network-activation.php:23
|
2156 |
+
msgid "Activate license on all sites in the network."
|
2157 |
+
msgstr "Activer la licence sur tous les sites du réseau."
|
2158 |
+
|
2159 |
+
#: templates/partials/network-activation.php:24
|
2160 |
+
msgid "Apply on all sites in the network."
|
2161 |
+
msgstr "Effectuer sur tous les sites dans le réseau."
|
2162 |
+
|
2163 |
+
#: templates/partials/network-activation.php:27
|
2164 |
+
msgid "Activate license on all pending sites."
|
2165 |
+
msgstr "Activer la licence sur tous les sites en attente."
|
2166 |
+
|
2167 |
+
#: templates/partials/network-activation.php:28
|
2168 |
+
msgid "Apply on all pending sites."
|
2169 |
+
msgstr "Activer sur tous les sites en attente."
|
2170 |
+
|
2171 |
+
#: templates/partials/network-activation.php36,
|
2172 |
+
#: templates/partials/network-activation.php:68
|
2173 |
+
msgid "allow"
|
2174 |
+
msgstr "autoriser"
|
2175 |
+
|
2176 |
+
#: templates/partials/network-activation.php38,
|
2177 |
+
#: templates/partials/network-activation.php:70
|
2178 |
+
msgid "delegate"
|
2179 |
+
msgstr "déléguer"
|
2180 |
+
|
2181 |
+
#: templates/partials/network-activation.php41,
|
2182 |
+
#: templates/partials/network-activation.php:73
|
2183 |
+
msgid "skip"
|
2184 |
+
msgstr "passer"
|
2185 |
+
|
2186 |
+
#: templates/plugin-info/description.php72,
|
2187 |
+
#: templates/plugin-info/screenshots.php:31
|
2188 |
+
msgid "Click to view full-size screenshot %d"
|
2189 |
+
msgstr "Cliquez pour voir la capture d'écran %d en pleine taille"
|
2190 |
+
|
2191 |
+
#: templates/plugin-info/features.php:56
|
2192 |
+
msgid "Unlimited Updates"
|
2193 |
+
msgstr "Mises à jour illimitées"
|
2194 |
+
|
2195 |
+
#: templates/account/partials/activate-license-button.php:46
|
2196 |
+
msgid "Localhost"
|
2197 |
+
msgstr "Localhost"
|
2198 |
+
|
2199 |
+
#: templates/account/partials/activate-license-button.php:50
|
2200 |
+
msgctxt "as 5 licenses left"
|
2201 |
+
msgid "%s left"
|
2202 |
+
msgstr "%s restante(s)"
|
2203 |
+
|
2204 |
+
#: templates/account/partials/activate-license-button.php:51
|
2205 |
+
msgid "Last license"
|
2206 |
+
msgstr "Dernière licence"
|
2207 |
+
|
2208 |
+
#: templates/account/partials/addon.php:111
|
2209 |
+
msgid "Cancelled"
|
2210 |
+
msgstr "Annulé"
|
2211 |
+
|
2212 |
+
#: templates/account/partials/addon.php:116
|
2213 |
+
msgid "Expired"
|
2214 |
+
msgstr "Expiré"
|
2215 |
+
|
2216 |
+
#: templates/account/partials/addon.php:121
|
2217 |
+
msgid "No expiration"
|
2218 |
+
msgstr "Pas d'expiration"
|
2219 |
+
|
2220 |
+
#: templates/account/partials/addon.php259,
|
2221 |
+
#: templates/account/partials/addon.php:312
|
2222 |
+
msgid "Activate this add-on"
|
2223 |
+
msgstr "Activer cet add-on"
|
2224 |
+
|
2225 |
+
#: templates/account/partials/site.php:181
|
2226 |
+
msgid "Owner Name"
|
2227 |
+
msgstr "Nom du propriétaire"
|
2228 |
+
|
2229 |
+
#: templates/account/partials/site.php:193
|
2230 |
+
msgid "Owner Email"
|
2231 |
+
msgstr "Email du propriétaire"
|
2232 |
+
|
2233 |
+
#: templates/account/partials/site.php:205
|
2234 |
+
msgid "Owner ID"
|
2235 |
+
msgstr "ID du propriétaire"
|
2236 |
+
|
2237 |
+
#: templates/account/partials/site.php:270
|
2238 |
+
msgid "Subscription"
|
2239 |
+
msgstr "Inscription"
|
2240 |
+
|
2241 |
+
#: templates/forms/deactivation/contact.php:19
|
2242 |
+
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2243 |
+
msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous nous le permettez."
|
2244 |
+
|
2245 |
+
#: templates/forms/deactivation/contact.php:22
|
2246 |
+
msgid "Contact Support"
|
2247 |
+
msgstr "Contacter l'Assistance"
|
2248 |
+
|
2249 |
+
#: templates/forms/deactivation/form.php:56
|
2250 |
+
msgid "Anonymous feedback"
|
2251 |
+
msgstr "Commentaire anonyme"
|
2252 |
+
|
2253 |
+
#: templates/forms/deactivation/form.php:63
|
2254 |
+
msgid "Deactivate"
|
2255 |
+
msgstr "Désactiver"
|
2256 |
+
|
2257 |
+
#: templates/forms/deactivation/form.php:65
|
2258 |
+
msgid "Activate %s"
|
2259 |
+
msgstr "Activer %s"
|
2260 |
+
|
2261 |
+
#: templates/forms/deactivation/form.php:76
|
2262 |
+
msgid "Quick feedback"
|
2263 |
+
msgstr "Commentaire rapide"
|
2264 |
+
|
2265 |
+
#: templates/forms/deactivation/form.php:80
|
2266 |
+
msgid "If you have a moment, please let us know why you are %s"
|
2267 |
+
msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s"
|
2268 |
+
|
2269 |
+
#: templates/forms/deactivation/form.php:80
|
2270 |
+
msgid "deactivating"
|
2271 |
+
msgstr "Désactivation"
|
2272 |
+
|
2273 |
+
#: templates/forms/deactivation/form.php:80
|
2274 |
+
msgid "switching"
|
2275 |
+
msgstr "Changement"
|
2276 |
+
|
2277 |
+
#: templates/forms/deactivation/form.php:269
|
2278 |
+
msgid "Submit & %s"
|
2279 |
+
msgstr "Envoyer & %s"
|
2280 |
+
|
2281 |
+
#: templates/forms/deactivation/form.php:290
|
2282 |
+
msgid "Kindly tell us the reason so we can improve."
|
2283 |
+
msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
|
2284 |
+
|
2285 |
+
#: templates/forms/deactivation/form.php:411
|
2286 |
+
msgid "Yes - %s"
|
2287 |
+
msgstr "Oui - %s"
|
2288 |
+
|
2289 |
+
#: templates/forms/deactivation/form.php:418
|
2290 |
+
msgid "Skip & %s"
|
2291 |
+
msgstr "Zapper & %s"
|
2292 |
+
|
2293 |
+
#: templates/forms/deactivation/retry-skip.php:21
|
2294 |
+
msgid "Click here to use the plugin anonymously"
|
2295 |
+
msgstr "Cliquer ici pour utiliser le plugin anonymement"
|
2296 |
+
|
2297 |
+
#: templates/forms/deactivation/retry-skip.php:23
|
2298 |
+
msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
|
2299 |
+
msgstr "Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager la moindre information et vous pouvez juste %s l'enregistrement."
|
includes/pum-sdk/freemius/languages/freemius-he_IL.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-he_IL.po
CHANGED
@@ -8,13 +8,13 @@ msgstr ""
|
|
8 |
"Project-Id-Version: WordPress SDK\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
|
10 |
"POT-Creation-Date: \n"
|
11 |
-
"PO-Revision-Date: 2018-
|
12 |
"Last-Translator: Vova Feldman <vova@freemius.com>\n"
|
13 |
"Language: he_IL\n"
|
14 |
"Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"Plural-Forms: nplurals=
|
18 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
|
@@ -22,1214 +22,1294 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
-
#: includes/class-freemius.php:
|
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:
|
30 |
msgid "Error"
|
31 |
msgstr "שגיאה"
|
32 |
|
33 |
-
#: includes/class-freemius.php:
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "I found a better %s"
|
36 |
|
37 |
-
#: includes/class-freemius.php:
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "What's the %s's name?"
|
40 |
|
41 |
-
#: includes/class-freemius.php:
|
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:
|
46 |
msgid "Deactivation"
|
47 |
msgstr "דיאקטיבציה"
|
48 |
|
49 |
-
#: includes/class-freemius.php:
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "החלפת תֵמָה"
|
52 |
|
53 |
-
#: includes/class-freemius.
|
54 |
msgid "Other"
|
55 |
msgstr "אחר"
|
56 |
|
57 |
-
#: includes/class-freemius.php:
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "I no longer need the %s"
|
60 |
|
61 |
-
#: includes/class-freemius.php:
|
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:
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "ה%s הרס לי את האתר"
|
68 |
|
69 |
-
#: includes/class-freemius.php:
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "ה%s הפסיק פתאום לעבוד"
|
72 |
|
73 |
-
#: includes/class-freemius.php:
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "אני לא יכול/ה להמשיך לשלם על זה"
|
76 |
|
77 |
-
#: includes/class-freemius.php:
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
|
80 |
|
81 |
-
#: includes/class-freemius.php:
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
|
84 |
|
85 |
-
#: includes/class-freemius.php:
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "ה%s לא עבד"
|
88 |
|
89 |
-
#: includes/class-freemius.php:
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
|
92 |
|
93 |
-
#: includes/class-freemius.php:
|
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:
|
98 |
msgid "What feature?"
|
99 |
msgstr "איזה פיטצ'ר?"
|
100 |
|
101 |
-
#: includes/class-freemius.php:
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "ה%s לא עובד"
|
104 |
|
105 |
-
#: includes/class-freemius.php:
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
|
108 |
|
109 |
-
#: includes/class-freemius.php:
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "חיפשתי משהו אחר"
|
112 |
|
113 |
-
#: includes/class-freemius.php:
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "מה חיפשת?"
|
116 |
|
117 |
-
#: includes/class-freemius.php:
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "ה%s לא עבד כמצופה"
|
120 |
|
121 |
-
#: includes/class-freemius.php:
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "למה ציפית?"
|
124 |
|
125 |
-
#: includes/class-freemius.
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "ניפוי תקלות פרימיוס"
|
128 |
|
129 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "כן - בצעו את מה שצריך"
|
144 |
|
145 |
-
#: includes/class-freemius.php:
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "לא - פשוט כבה"
|
148 |
|
149 |
-
#: includes/class-freemius.
|
150 |
-
#: includes/class-freemius.
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
-
#: includes/class-freemius.
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "אופס"
|
159 |
|
160 |
-
#: includes/class-freemius.php:
|
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:
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s לא יכול לעבוד ללא %s."
|
168 |
|
169 |
-
#: includes/class-freemius.php:
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
|
173 |
|
174 |
-
#: includes/class-freemius.
|
175 |
-
#: includes/class-freemius.php:
|
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:
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium %s version was successfully activated."
|
182 |
|
183 |
-
#: includes/class-freemius.
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "W00t"
|
187 |
|
188 |
-
#: includes/class-freemius.php:
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "יש לך רישיון %s."
|
191 |
|
192 |
-
#: includes/class-freemius.
|
193 |
-
#: includes/class-freemius.
|
194 |
-
#: includes/class-freemius.
|
195 |
-
#: includes/class-freemius.php:
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "יששש"
|
199 |
|
200 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
209 |
-
#: templates/
|
210 |
msgid "More information about %s"
|
211 |
msgstr "מידע נוסף אודות %s"
|
212 |
|
213 |
-
#: includes/class-freemius.php:
|
214 |
msgid "Purchase License"
|
215 |
msgstr "קניית רישיון"
|
216 |
|
217 |
-
#: includes/class-freemius.
|
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:
|
222 |
msgid "start the trial"
|
223 |
msgstr "התחל תקופת ניסיון"
|
224 |
|
225 |
-
#: includes/class-freemius.
|
226 |
msgid "complete the install"
|
227 |
msgstr "השלם התקנה"
|
228 |
|
229 |
-
#: includes/class-freemius.php:
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "You are just one step away - %s"
|
232 |
|
233 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
243 |
msgid "Opt in to make \"%s\" Better!"
|
244 |
msgstr "Opt in to make \"%s\" Better!"
|
245 |
|
246 |
-
#: includes/class-freemius.php:
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "The upgrade of %s was successfully completed."
|
249 |
|
250 |
-
#: includes/class-freemius.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
-
#: includes/class-fs-plugin-updater.
|
253 |
msgid "Add-On"
|
254 |
msgstr "Add-On"
|
255 |
|
256 |
-
#: includes/class-freemius.
|
257 |
-
#: templates/debug.php:
|
258 |
msgid "Plugin"
|
259 |
msgstr "תוסף"
|
260 |
|
261 |
-
#: includes/class-freemius.
|
262 |
-
#: templates/debug.
|
263 |
msgid "Theme"
|
264 |
msgstr "תבנית"
|
265 |
|
266 |
-
#: includes/class-freemius.php:
|
267 |
msgid "invalid_site_details_collection"
|
268 |
msgstr "invalid_site_details_collection"
|
269 |
|
270 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "Account is pending activation."
|
281 |
|
282 |
-
#: includes/class-freemius.php:
|
283 |
msgid "%s activation was successfully completed."
|
284 |
msgstr "הפעלת %s הושלמה בהצלחה."
|
285 |
|
286 |
-
#: includes/class-freemius.php:
|
287 |
msgid "Your account was successfully activated with the %s plan."
|
288 |
msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
|
289 |
|
290 |
-
#: includes/class-freemius.
|
291 |
msgid "Your trial has been successfully started."
|
292 |
msgstr "הניסיון שלך הופעל בהצלחה."
|
293 |
|
294 |
-
#: includes/class-freemius.
|
295 |
-
#: includes/class-freemius.php:
|
296 |
msgid "Couldn't activate %s."
|
297 |
msgstr "לא ניתן להפעיל את %s."
|
298 |
|
299 |
-
#: includes/class-freemius.
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Please contact us with the following message:"
|
302 |
msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
|
303 |
|
304 |
-
#: includes/class-freemius.
|
305 |
msgid "Upgrade"
|
306 |
msgstr "שדרג"
|
307 |
|
308 |
-
#: includes/class-freemius.php:
|
309 |
msgid "Start Trial"
|
310 |
msgstr "התחל תקופת ניסיון"
|
311 |
|
312 |
-
#: includes/class-freemius.php:
|
313 |
msgid "Pricing"
|
314 |
msgstr "מחירון"
|
315 |
|
316 |
-
#: includes/class-freemius.
|
317 |
msgid "Affiliation"
|
318 |
msgstr "אפיליאציה"
|
319 |
|
320 |
-
#: includes/class-freemius.
|
321 |
-
#: templates/account.
|
322 |
msgid "Account"
|
323 |
msgstr "חשבון"
|
324 |
|
325 |
-
#: includes/class-freemius.
|
326 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
327 |
msgid "Contact Us"
|
328 |
msgstr "יצירת קשר"
|
329 |
|
330 |
-
#: includes/class-freemius.
|
331 |
-
#: includes/class-freemius.
|
|
|
332 |
msgid "Add-Ons"
|
333 |
msgstr "Add-Ons"
|
334 |
|
335 |
-
#: includes/class-freemius.
|
336 |
msgctxt "noun"
|
337 |
msgid "Pricing"
|
338 |
msgstr "מחירון"
|
339 |
|
340 |
-
#: includes/class-freemius.
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
342 |
msgid "Support Forum"
|
343 |
msgstr "פורום תמיכה"
|
344 |
|
345 |
-
#: includes/class-freemius.php:
|
346 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
347 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
348 |
|
349 |
-
#: includes/class-freemius.php:
|
350 |
msgctxt "a positive response"
|
351 |
msgid "Right on"
|
352 |
msgstr "מעולה"
|
353 |
|
354 |
-
#: includes/class-freemius.php:
|
355 |
msgid "Your %s Add-on plan was successfully upgraded."
|
356 |
msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
|
357 |
|
358 |
-
#: includes/class-freemius.php:
|
359 |
msgid "%s Add-on was successfully purchased."
|
360 |
msgstr "ההרחבה %s נרכשה בהצלחה."
|
361 |
|
362 |
-
#: includes/class-freemius.php:
|
363 |
msgid "Download the latest version"
|
364 |
msgstr "הורד את הגרסה האחרונה"
|
365 |
|
366 |
-
#: includes/class-freemius.php:
|
367 |
msgctxt "%1s - plugin title, %2s - API domain"
|
368 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
369 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
370 |
|
371 |
-
#: includes/class-freemius.
|
372 |
-
#: includes/class-freemius.php:
|
373 |
msgid "Error received from the server:"
|
374 |
msgstr "הוחזרה שגיאה מהשרת:"
|
375 |
|
376 |
-
#: includes/class-freemius.php:
|
377 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
378 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
379 |
|
380 |
-
#: includes/class-freemius.
|
381 |
-
#: includes/class-freemius.php:
|
382 |
msgctxt ""
|
383 |
msgid "Hmm"
|
384 |
msgstr "Hmm"
|
385 |
|
386 |
-
#: includes/class-freemius.php:
|
387 |
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."
|
388 |
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."
|
389 |
|
390 |
-
#: includes/class-freemius.
|
391 |
-
#: templates/add-ons.php:
|
392 |
msgctxt "trial period"
|
393 |
msgid "Trial"
|
394 |
msgstr "ניסיון"
|
395 |
|
396 |
-
#: includes/class-freemius.php:
|
397 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
398 |
msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
|
399 |
|
400 |
-
#: includes/class-freemius.
|
401 |
msgid "Please contact us here"
|
402 |
msgstr "אנא צור איתנו קשר כאן"
|
403 |
|
404 |
-
#: includes/class-freemius.php:
|
405 |
msgid "Your plan was successfully upgraded."
|
406 |
msgstr "החבילה שודרגה בהצלחה."
|
407 |
|
408 |
-
#: includes/class-freemius.php:
|
409 |
msgid "Your plan was successfully changed to %s."
|
410 |
msgstr "החבילה עודכנה בהצלחה אל %s."
|
411 |
|
412 |
-
#: includes/class-freemius.php:
|
413 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
414 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
415 |
|
416 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
417 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
418 |
msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
|
419 |
|
420 |
-
#: includes/class-freemius.php:
|
421 |
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."
|
422 |
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."
|
423 |
|
424 |
-
#: includes/class-freemius.php:
|
425 |
-
msgid "Your trial has expired. You can still continue using all our free features."
|
426 |
-
msgstr "
|
|
|
|
|
|
|
|
|
427 |
|
428 |
-
#: includes/class-freemius.php:
|
429 |
msgid "It looks like the license could not be activated."
|
430 |
msgstr "נראה שלא ניתן להפעיל את הרישיון."
|
431 |
|
432 |
-
#: includes/class-freemius.php:
|
433 |
msgid "Your license was successfully activated."
|
434 |
msgstr "הרישיון הופעל בהצלחה."
|
435 |
|
436 |
-
#: includes/class-freemius.php:
|
437 |
msgid "It looks like your site currently doesn't have an active license."
|
438 |
msgstr "נראה לאתר עדיין אין רישיון פעיל."
|
439 |
|
440 |
-
#: includes/class-freemius.php:
|
441 |
msgid "It looks like the license deactivation failed."
|
442 |
msgstr "נראה שניתוק הרישיון נכשל."
|
443 |
|
444 |
-
#: includes/class-freemius.php:
|
445 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
446 |
msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
|
447 |
|
448 |
-
#: includes/class-freemius.php:
|
449 |
msgid "O.K"
|
450 |
msgstr "אוקיי"
|
451 |
|
452 |
-
#: includes/class-freemius.php:
|
453 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
454 |
msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
455 |
|
456 |
-
#: includes/class-freemius.php:
|
457 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
458 |
msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
459 |
|
460 |
-
#: includes/class-freemius.php:
|
461 |
msgid "You are already running the %s in a trial mode."
|
462 |
msgstr "You are already running the %s in a trial mode."
|
463 |
|
464 |
-
#: includes/class-freemius.php:
|
465 |
msgid "You already utilized a trial before."
|
466 |
msgstr "הניסיון כבר נוצל בעבר."
|
467 |
|
468 |
-
#: includes/class-freemius.php:
|
469 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
470 |
msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
|
471 |
|
472 |
-
#: includes/class-freemius.php:
|
473 |
msgid "Plan %s does not support a trial period."
|
474 |
msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
|
475 |
|
476 |
-
#: includes/class-freemius.php:
|
477 |
msgid "None of the %s's plans supports a trial period."
|
478 |
msgstr "None of the %s's plans supports a trial period."
|
479 |
|
480 |
-
#: includes/class-freemius.php:
|
481 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
482 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
483 |
|
484 |
-
#: includes/class-freemius.php:
|
485 |
msgid "Your %s free trial was successfully cancelled."
|
486 |
msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
|
487 |
|
488 |
-
#: includes/class-freemius.php:
|
489 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
490 |
msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
|
491 |
|
492 |
-
#: includes/class-freemius.php:
|
493 |
msgid "Version %s was released."
|
494 |
msgstr "גרסה %s הושקה."
|
495 |
|
496 |
-
#: includes/class-freemius.php:
|
497 |
msgid "Please download %s."
|
498 |
msgstr "נא להוריד את %s."
|
499 |
|
500 |
-
#: includes/class-freemius.php:
|
501 |
msgid "the latest %s version here"
|
502 |
msgstr "גרסת ה-%s האחרונה כאן"
|
503 |
|
504 |
-
#: includes/class-freemius.php:
|
505 |
msgid "New"
|
506 |
msgstr "חדש"
|
507 |
|
508 |
-
#: includes/class-freemius.php:
|
509 |
msgid "Seems like you got the latest release."
|
510 |
msgstr "נראה שיש לך את הגרסה האחרונה."
|
511 |
|
512 |
-
#: includes/class-freemius.php:
|
513 |
msgid "You are all good!"
|
514 |
msgstr "את\\ה מסודר!"
|
515 |
|
516 |
-
#: includes/class-freemius.php:
|
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 "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
519 |
|
520 |
-
#: includes/class-freemius.php:
|
521 |
msgid "Site successfully opted in."
|
522 |
msgstr "Site successfully opted in."
|
523 |
|
524 |
-
#: includes/class-freemius.
|
525 |
msgid "Awesome"
|
526 |
msgstr "אדיר"
|
527 |
|
528 |
-
#: includes/class-freemius.
|
529 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
530 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
531 |
|
532 |
-
#: includes/class-freemius.php:
|
533 |
msgid "Thank you!"
|
534 |
msgstr "Thank you!"
|
535 |
|
536 |
-
#: includes/class-freemius.php:
|
537 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
538 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
539 |
|
540 |
-
#: includes/class-freemius.php:
|
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 "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."
|
543 |
|
544 |
-
#: includes/class-freemius.php:
|
545 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
546 |
msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
|
547 |
|
548 |
-
#: includes/class-freemius.php:
|
549 |
msgid "%s is the new owner of the account."
|
550 |
msgstr "%s הינו הבעלים החד של חשבון זה."
|
551 |
|
552 |
-
#: includes/class-freemius.php:
|
553 |
msgctxt "as congratulations"
|
554 |
msgid "Congrats"
|
555 |
msgstr "מזל טוב"
|
556 |
|
557 |
-
#: includes/class-freemius.php:
|
558 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
559 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
560 |
|
561 |
-
#: includes/class-freemius.php:
|
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 "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
564 |
|
565 |
-
#: includes/class-freemius.php:
|
566 |
msgid "Change Ownership"
|
567 |
msgstr "עדכון בעלות"
|
568 |
|
569 |
-
#: includes/class-freemius.php:
|
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:
|
574 |
msgid "Please provide your full name."
|
575 |
msgstr "נא למלא את שמך המלא."
|
576 |
|
577 |
-
#: includes/class-freemius.php:
|
578 |
msgid "Your name was successfully updated."
|
579 |
msgstr "שמך עודכן בהצלחה."
|
580 |
|
581 |
-
#: includes/class-freemius.php:
|
582 |
msgid "You have successfully updated your %s."
|
583 |
msgstr "עידכנת בהצלחה את ה%s."
|
584 |
|
585 |
-
#: includes/class-freemius.php:
|
586 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
587 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
588 |
|
589 |
-
#: includes/class-freemius.php:
|
590 |
msgctxt "advance notice of something that will need attention."
|
591 |
msgid "Heads up"
|
592 |
msgstr "לתשמות לבך"
|
593 |
|
594 |
-
#: includes/class-freemius.php:
|
595 |
msgctxt "exclamation"
|
596 |
msgid "Hey"
|
597 |
msgstr "היי"
|
598 |
|
599 |
-
#: includes/class-freemius.php:
|
600 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
601 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
602 |
|
603 |
-
#: includes/class-freemius.php:
|
604 |
msgid "No commitment for %s days - cancel anytime!"
|
605 |
msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
|
606 |
|
607 |
-
#: includes/class-freemius.php:
|
608 |
msgid "No credit card required"
|
609 |
msgstr "לא נדרש כרטיס אשראי"
|
610 |
|
611 |
-
#: includes/class-freemius.
|
612 |
msgctxt "call to action"
|
613 |
msgid "Start free trial"
|
614 |
msgstr "התחלת ניסיון חינם"
|
615 |
|
616 |
-
#: includes/class-freemius.php:
|
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 "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!"
|
619 |
|
620 |
-
#: includes/class-freemius.php:
|
621 |
msgid "Learn more"
|
622 |
msgstr "Learn more"
|
623 |
|
624 |
-
#: includes/class-freemius.
|
625 |
-
#: templates/account.
|
626 |
-
#: templates/connect.
|
|
|
627 |
msgid "Activate License"
|
628 |
msgstr "הפעלת רישיון"
|
629 |
|
630 |
-
#: includes/class-freemius.
|
631 |
-
#: templates/account.
|
632 |
msgid "Change License"
|
633 |
msgstr "שינוי רישיון"
|
634 |
|
635 |
-
#: includes/class-freemius.
|
636 |
msgid "Opt Out"
|
637 |
msgstr "Opt Out"
|
638 |
|
639 |
-
#: includes/class-freemius.
|
640 |
#: templates/account/partials/site.php43,
|
641 |
#: templates/account/partials/site.php:161
|
642 |
msgid "Opt In"
|
643 |
msgstr "Opt In"
|
644 |
|
645 |
-
#: includes/class-freemius.php:
|
646 |
msgid "Please follow these steps to complete the upgrade"
|
647 |
msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
|
648 |
|
649 |
-
#: includes/class-freemius.php:
|
650 |
msgid "Download the latest %s version"
|
651 |
msgstr "הורד\\י את גרסת ה-%s העדכנית"
|
652 |
|
653 |
-
#: includes/class-freemius.php:
|
654 |
msgid "Upload and activate the downloaded version"
|
655 |
msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
|
656 |
|
657 |
-
#: includes/class-freemius.php:
|
658 |
msgid "How to upload and activate?"
|
659 |
msgstr "איך להעלות ולהפעיל?"
|
660 |
|
661 |
-
#: includes/class-freemius.php:
|
662 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
663 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
664 |
|
665 |
-
#: includes/class-freemius.php:
|
666 |
msgid "Auto installation only works for opted-in users."
|
667 |
msgstr "Auto installation only works for opted-in users."
|
668 |
|
669 |
-
#: includes/class-freemius.
|
670 |
-
#: includes/class-fs-plugin-updater.
|
671 |
-
#: includes/class-fs-plugin-updater.php:
|
672 |
msgid "Invalid module ID."
|
673 |
msgstr "Invalid module ID."
|
674 |
|
675 |
-
#: includes/class-freemius.
|
676 |
msgid "Premium version already active."
|
677 |
msgstr "Premium version already active."
|
678 |
|
679 |
-
#: includes/class-freemius.php:
|
680 |
msgid "You do not have a valid license to access the premium version."
|
681 |
msgstr "You do not have a valid license to access the premium version."
|
682 |
|
683 |
-
#: includes/class-freemius.php:
|
684 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
685 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
686 |
|
687 |
-
#: includes/class-freemius.
|
688 |
msgid "Premium add-on version already installed."
|
689 |
msgstr "Premium add-on version already installed."
|
690 |
|
691 |
-
#: includes/class-freemius.php:
|
692 |
msgid "View paid features"
|
693 |
msgstr "View paid features"
|
694 |
|
695 |
-
#: includes/class-
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
698 |
|
699 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
700 |
msgid "Installing plugin: %s"
|
701 |
msgstr "Installing plugin: %s"
|
702 |
|
703 |
-
#: includes/class-fs-plugin-updater.php:
|
704 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
705 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
706 |
|
707 |
-
#: includes/class-fs-plugin-updater.php:
|
708 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
709 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
710 |
|
711 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
712 |
msgctxt "verb"
|
713 |
msgid "Purchase"
|
714 |
msgstr "רכישה"
|
715 |
|
716 |
-
#: includes/fs-plugin-info-dialog.php:
|
717 |
msgid "Start my free %s"
|
718 |
msgstr "התחל את %s הניסיון שלי"
|
719 |
|
720 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
msgctxt "as download latest version"
|
722 |
msgid "Download Latest"
|
723 |
msgstr "הורד גרסה אחרונה"
|
724 |
|
725 |
-
#: includes/fs-plugin-info-dialog.
|
726 |
-
|
727 |
-
|
728 |
-
msgstr "התקן עכשיו"
|
729 |
|
730 |
-
#: includes/fs-plugin-info-dialog.
|
731 |
msgid "Install Update Now"
|
732 |
msgstr "התקן עדכון במיידי"
|
733 |
|
734 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
735 |
msgid "Newer Version (%s) Installed"
|
736 |
msgstr "גרסה חדשה (%s) הותקנה"
|
737 |
|
738 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
739 |
msgid "Latest Version Installed"
|
740 |
msgstr "הגרסה האחרונה הותקנה"
|
741 |
|
742 |
-
#: includes/fs-plugin-info-dialog.php:
|
743 |
msgctxt "Plugin installer section title"
|
744 |
msgid "Description"
|
745 |
msgstr "תיאור"
|
746 |
|
747 |
-
#: includes/fs-plugin-info-dialog.php:
|
748 |
msgctxt "Plugin installer section title"
|
749 |
msgid "Installation"
|
750 |
msgstr "התקנה"
|
751 |
|
752 |
-
#: includes/fs-plugin-info-dialog.php:
|
753 |
msgctxt "Plugin installer section title"
|
754 |
msgid "FAQ"
|
755 |
msgstr "שאלות נפוצות"
|
756 |
|
757 |
-
#: includes/fs-plugin-info-dialog.
|
758 |
#: templates/plugin-info/description.php:55
|
759 |
msgid "Screenshots"
|
760 |
msgstr "צילומי מסך"
|
761 |
|
762 |
-
#: includes/fs-plugin-info-dialog.php:
|
763 |
msgctxt "Plugin installer section title"
|
764 |
msgid "Changelog"
|
765 |
msgstr "לוג שינויים"
|
766 |
|
767 |
-
#: includes/fs-plugin-info-dialog.php:
|
768 |
msgctxt "Plugin installer section title"
|
769 |
msgid "Reviews"
|
770 |
msgstr "ביקורות"
|
771 |
|
772 |
-
#: includes/fs-plugin-info-dialog.php:
|
773 |
msgctxt "Plugin installer section title"
|
774 |
msgid "Other Notes"
|
775 |
msgstr "היערות נוספות"
|
776 |
|
777 |
-
#: includes/fs-plugin-info-dialog.php:
|
778 |
msgctxt "Plugin installer section title"
|
779 |
msgid "Features & Pricing"
|
780 |
msgstr "פיטצ'רים ומחירים"
|
781 |
|
782 |
-
#: includes/fs-plugin-info-dialog.php:
|
783 |
msgid "Plugin Install"
|
784 |
msgstr "התקנת תוסף"
|
785 |
|
786 |
-
#: includes/fs-plugin-info-dialog.php:
|
787 |
msgctxt "e.g. Professional Plan"
|
788 |
msgid "%s Plan"
|
789 |
msgstr "חבילה %s"
|
790 |
|
791 |
-
#: includes/fs-plugin-info-dialog.php:
|
792 |
msgctxt "e.g. the best product"
|
793 |
msgid "Best"
|
794 |
msgstr "הכי טוב"
|
795 |
|
796 |
-
#: includes/fs-plugin-info-dialog.
|
797 |
-
#: includes/fs-plugin-info-dialog.php:
|
798 |
msgctxt "as every month"
|
799 |
msgid "Monthly"
|
800 |
msgstr "חודשי"
|
801 |
|
802 |
-
#: includes/fs-plugin-info-dialog.php:
|
803 |
msgctxt "as once a year"
|
804 |
msgid "Annual"
|
805 |
msgstr "שנתי"
|
806 |
|
807 |
-
#: includes/fs-plugin-info-dialog.php:
|
808 |
msgid "Lifetime"
|
809 |
msgstr "לכל החיים"
|
810 |
|
811 |
-
#: includes/fs-plugin-info-dialog.
|
812 |
-
#: includes/fs-plugin-info-dialog.
|
813 |
-
#: includes/fs-plugin-info-dialog.php:
|
814 |
msgctxt "e.g. billed monthly"
|
815 |
msgid "Billed %s"
|
816 |
msgstr "מחוייב על בסיס %s"
|
817 |
|
818 |
-
#: includes/fs-plugin-info-dialog.php:
|
819 |
msgctxt "as once a year"
|
820 |
msgid "Annually"
|
821 |
msgstr "שנתי"
|
822 |
|
823 |
-
#: includes/fs-plugin-info-dialog.php:
|
824 |
msgctxt "as once a year"
|
825 |
msgid "Once"
|
826 |
msgstr "פעם אחת"
|
827 |
|
828 |
-
#: includes/fs-plugin-info-dialog.php:
|
829 |
msgid "Single Site License"
|
830 |
msgstr "רשיון לאתר אחד"
|
831 |
|
832 |
-
#: includes/fs-plugin-info-dialog.php:
|
833 |
msgid "Unlimited Licenses"
|
834 |
msgstr "רשיונות ללא הגבלה"
|
835 |
|
836 |
-
#: includes/fs-plugin-info-dialog.php:
|
837 |
msgid "Up to %s Sites"
|
838 |
msgstr "עד %s אתרים"
|
839 |
|
840 |
-
#: includes/fs-plugin-info-dialog.
|
841 |
#: templates/plugin-info/features.php:82
|
842 |
msgctxt "as monthly period"
|
843 |
msgid "mo"
|
844 |
msgstr "חודשים"
|
845 |
|
846 |
-
#: includes/fs-plugin-info-dialog.
|
847 |
#: templates/plugin-info/features.php:80
|
848 |
msgctxt "as annual period"
|
849 |
msgid "year"
|
850 |
msgstr "שנה"
|
851 |
|
852 |
-
#: includes/fs-plugin-info-dialog.php:
|
853 |
msgctxt "noun"
|
854 |
msgid "Price"
|
855 |
msgstr "מחיר"
|
856 |
|
857 |
-
#: includes/fs-plugin-info-dialog.php:
|
858 |
msgid "Save %s"
|
859 |
msgstr "שמירת %s"
|
860 |
|
861 |
-
#: includes/fs-plugin-info-dialog.php:
|
862 |
msgid "No commitment for %s - cancel anytime"
|
863 |
msgstr "No commitment for %s - cancel anytime"
|
864 |
|
865 |
-
#: includes/fs-plugin-info-dialog.php:
|
866 |
msgid "After your free %s, pay as little as %s"
|
867 |
msgstr "After your free %s, pay as little as %s"
|
868 |
|
869 |
-
#: includes/fs-plugin-info-dialog.php:
|
870 |
msgid "Details"
|
871 |
msgstr "פרטים"
|
872 |
|
873 |
-
#: includes/fs-plugin-info-dialog.
|
874 |
-
#: templates/debug.php191, templates/debug.php228, templates/debug.
|
|
|
875 |
msgctxt "product version"
|
876 |
msgid "Version"
|
877 |
msgstr "גרסה"
|
878 |
|
879 |
-
#: includes/fs-plugin-info-dialog.php:
|
880 |
msgctxt "as the plugin author"
|
881 |
msgid "Author"
|
882 |
msgstr "Author"
|
883 |
|
884 |
-
#: includes/fs-plugin-info-dialog.php:
|
885 |
msgid "Last Updated"
|
886 |
msgstr "עודכן לאחרונה"
|
887 |
|
888 |
-
#: includes/fs-plugin-info-dialog.php:
|
889 |
msgctxt "x-ago"
|
890 |
msgid "%s ago"
|
891 |
msgstr "לפני %s"
|
892 |
|
893 |
-
#: includes/fs-plugin-info-dialog.php:
|
894 |
msgid "Requires WordPress Version"
|
895 |
msgstr "Requires WordPress Version"
|
896 |
|
897 |
-
#: includes/fs-plugin-info-dialog.php:
|
898 |
msgid "%s or higher"
|
899 |
msgstr "%s ומעלה"
|
900 |
|
901 |
-
#: includes/fs-plugin-info-dialog.php:
|
902 |
msgid "Compatible up to"
|
903 |
msgstr "Compatible up to"
|
904 |
|
905 |
-
#: includes/fs-plugin-info-dialog.php:
|
906 |
msgid "Downloaded"
|
907 |
msgstr "Downloaded"
|
908 |
|
909 |
-
#: includes/fs-plugin-info-dialog.php:
|
910 |
msgid "%s time"
|
911 |
msgstr "פעם %s"
|
912 |
|
913 |
-
#: includes/fs-plugin-info-dialog.php:
|
914 |
msgid "%s times"
|
915 |
msgstr "%s פעמים"
|
916 |
|
917 |
-
#: includes/fs-plugin-info-dialog.php:
|
918 |
msgid "WordPress.org Plugin Page"
|
919 |
msgstr "WordPress.org Plugin Page"
|
920 |
|
921 |
-
#: includes/fs-plugin-info-dialog.php:
|
922 |
msgid "Plugin Homepage"
|
923 |
msgstr "עמוד התוסף"
|
924 |
|
925 |
-
#: includes/fs-plugin-info-dialog.
|
926 |
-
#: includes/fs-plugin-info-dialog.php:
|
927 |
msgid "Donate to this plugin"
|
928 |
msgstr "Donate to this plugin"
|
929 |
|
930 |
-
#: includes/fs-plugin-info-dialog.php:
|
931 |
msgid "Average Rating"
|
932 |
msgstr "דירוג ממוצע"
|
933 |
|
934 |
-
#: includes/fs-plugin-info-dialog.php:
|
935 |
msgid "based on %s"
|
936 |
msgstr "מבוסס על %s"
|
937 |
|
938 |
-
#: includes/fs-plugin-info-dialog.php:
|
939 |
msgid "%s rating"
|
940 |
msgstr "דרוג %s"
|
941 |
|
942 |
-
#: includes/fs-plugin-info-dialog.php:
|
943 |
msgid "%s ratings"
|
944 |
msgstr "%s דרוגים"
|
945 |
|
946 |
-
#: includes/fs-plugin-info-dialog.php:
|
947 |
msgid "%s star"
|
948 |
msgstr "כוכב %s"
|
949 |
|
950 |
-
#: includes/fs-plugin-info-dialog.php:
|
951 |
msgid "%s stars"
|
952 |
msgstr "%s כוכבים"
|
953 |
|
954 |
-
#: includes/fs-plugin-info-dialog.php:
|
955 |
msgid "Click to see reviews that provided a rating of %s"
|
956 |
msgstr "Click to see reviews that provided a rating of %s"
|
957 |
|
958 |
-
#: includes/fs-plugin-info-dialog.php:
|
959 |
msgid "Contributors"
|
960 |
msgstr "תורמים"
|
961 |
|
962 |
-
#: includes/fs-plugin-info-dialog.
|
963 |
-
#: includes/fs-plugin-info-dialog.php:
|
964 |
msgid "Warning"
|
965 |
msgstr "Warning"
|
966 |
|
967 |
-
#: includes/fs-plugin-info-dialog.php:
|
968 |
msgid "This plugin has not been tested with your current version of WordPress."
|
969 |
msgstr "This plugin has not been tested with your current version of WordPress."
|
970 |
|
971 |
-
#: includes/fs-plugin-info-dialog.php:
|
972 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
973 |
msgstr "This plugin has not been marked as compatible with your version of WordPress."
|
974 |
|
975 |
-
#: includes/fs-plugin-info-dialog.php:
|
976 |
msgid "Paid add-on must be deployed to Freemius."
|
977 |
msgstr "Paid add-on must be deployed to Freemius."
|
978 |
|
979 |
-
#: includes/fs-plugin-info-dialog.php:
|
980 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
981 |
msgstr "Add-on must be deployed to WordPress.org or Freemius."
|
982 |
|
983 |
-
#: templates/account.php81, templates/account/partials/
|
|
|
984 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
985 |
msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
986 |
|
987 |
-
#: templates/account.php:
|
988 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
989 |
msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
|
990 |
|
991 |
-
#: templates/account.php83, templates/account/partials/
|
|
|
992 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
993 |
msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
|
994 |
|
995 |
-
#: templates/account.php84, templates/account/partials/
|
|
|
996 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
997 |
msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
998 |
|
999 |
#. translators: %s: Plan title (e.g. "Professional")
|
1000 |
#: templates/account.php86,
|
1001 |
-
#: templates/account/partials/activate-license-button.
|
|
|
1002 |
msgid "Activate %s Plan"
|
1003 |
msgstr "הפעל חבילה %s"
|
1004 |
|
1005 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1006 |
-
#: templates/account.php89, templates/account/partials/
|
|
|
1007 |
msgid "Auto renews in %s"
|
1008 |
msgstr "עדכן אוטומטית בעוד %s"
|
1009 |
|
1010 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1011 |
-
#: templates/account.php91, templates/account/partials/
|
|
|
1012 |
msgid "Expires in %s"
|
1013 |
msgstr "פג תוקף בעוד %s"
|
1014 |
|
1015 |
-
#: templates/account.php:
|
1016 |
msgctxt "as synchronize license"
|
1017 |
msgid "Sync License"
|
1018 |
msgstr "סינכרן רישיון"
|
1019 |
|
1020 |
-
#: templates/account.php:
|
1021 |
msgid "Cancel Trial"
|
1022 |
msgstr "ביט"
|
1023 |
|
1024 |
-
#: templates/account.php:
|
1025 |
msgid "Change Plan"
|
1026 |
msgstr "שינוי חבילה"
|
1027 |
|
1028 |
-
#: templates/account.php:
|
1029 |
msgctxt "verb"
|
1030 |
msgid "Upgrade"
|
1031 |
msgstr "שדרג"
|
1032 |
|
1033 |
-
#: templates/account.php97, templates/account/partials/
|
|
|
1034 |
msgctxt "verb"
|
1035 |
msgid "Downgrade"
|
1036 |
msgstr "שנמך"
|
1037 |
|
1038 |
#: templates/account.php99, templates/add-ons.php126,
|
1039 |
#: templates/plugin-info/features.php72,
|
|
|
1040 |
#: templates/account/partials/site.php:31
|
1041 |
msgid "Free"
|
1042 |
msgstr "חינם"
|
1043 |
|
1044 |
-
#: templates/account.php:
|
1045 |
msgid "Activate"
|
1046 |
msgstr "הפעלה"
|
1047 |
|
1048 |
-
#: templates/account.php101, templates/debug.
|
1049 |
-
#: includes/customizer/class-fs-customizer-upsell-control.
|
|
|
1050 |
msgctxt "as product pricing plan"
|
1051 |
msgid "Plan"
|
1052 |
msgstr "חבילה"
|
1053 |
|
1054 |
-
#: templates/account.php:
|
1055 |
msgid "Free Trial"
|
1056 |
msgstr "ניסיון חינם"
|
1057 |
|
1058 |
-
#: templates/account.php:
|
1059 |
msgid "Account Details"
|
1060 |
msgstr "פרטי חשבון"
|
1061 |
|
1062 |
-
#: templates/account.php:
|
1063 |
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?"
|
1064 |
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?"
|
1065 |
|
1066 |
-
#: templates/account.php:
|
1067 |
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?"
|
1068 |
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?"
|
1069 |
|
1070 |
-
#: templates/account.php:
|
1071 |
msgid "Delete Account"
|
1072 |
msgstr "מחיקת חשבון"
|
1073 |
|
1074 |
-
#: templates/account.
|
1075 |
#: templates/account/partials/deactivate-license-button.php:35
|
1076 |
msgid "Deactivate License"
|
1077 |
msgstr "שיחרור רישיון"
|
1078 |
|
1079 |
-
#: templates/account.php:
|
1080 |
msgid "Are you sure you want to proceed?"
|
1081 |
msgstr "האם את/ה בטוח רוצה להמשיך?"
|
1082 |
|
1083 |
-
#: templates/account.php:
|
1084 |
msgid "Cancel Subscription"
|
1085 |
msgstr "בטל מנוי"
|
1086 |
|
1087 |
-
#: templates/account.php:
|
1088 |
msgctxt "as synchronize"
|
1089 |
msgid "Sync"
|
1090 |
msgstr "סינכרון"
|
1091 |
|
1092 |
-
#: templates/account.
|
1093 |
msgid "Name"
|
1094 |
msgstr "שם"
|
1095 |
|
1096 |
-
#: templates/account.
|
1097 |
msgid "Email"
|
1098 |
msgstr "דוא\"ל"
|
1099 |
|
1100 |
-
#: templates/account.
|
1101 |
msgid "User ID"
|
1102 |
msgstr "מזהה משתמש"
|
1103 |
|
1104 |
-
#: templates/account.php:
|
1105 |
msgid "Site ID"
|
1106 |
msgstr "מזהה אתר"
|
1107 |
|
1108 |
-
#: templates/account.php:
|
1109 |
msgid "No ID"
|
1110 |
msgstr "אין מזהה"
|
1111 |
|
1112 |
-
#: templates/account.
|
1113 |
-
#: templates/debug.
|
1114 |
#: templates/account/partials/site.php:219
|
1115 |
msgid "Public Key"
|
1116 |
msgstr "מפתח פומבי"
|
1117 |
|
1118 |
-
#: templates/account.
|
1119 |
-
#: templates/debug.
|
1120 |
msgid "Secret Key"
|
1121 |
msgstr "מפתח סודי"
|
1122 |
|
1123 |
-
#: templates/account.php:
|
1124 |
msgctxt "as secret encryption key missing"
|
1125 |
msgid "No Secret"
|
1126 |
msgstr "אין מפתח סודי"
|
1127 |
|
1128 |
-
#: templates/account.
|
1129 |
#: templates/account/partials/site.php:114
|
1130 |
msgid "Trial"
|
1131 |
msgstr "ניסיון"
|
1132 |
|
1133 |
-
#: templates/account.
|
1134 |
#: templates/account/partials/site.php:248
|
1135 |
msgid "License Key"
|
1136 |
msgstr "License Key"
|
1137 |
|
1138 |
-
#: templates/account.php:
|
1139 |
msgid "not verified"
|
1140 |
msgstr "לא מאומת"
|
1141 |
|
1142 |
-
#: templates/account.php:
|
1143 |
msgid "Premium version"
|
1144 |
msgstr "גירסת פרימיום"
|
1145 |
|
1146 |
-
#: templates/account.php:
|
1147 |
msgid "Free version"
|
1148 |
msgstr "גירסה חינאמית"
|
1149 |
|
1150 |
-
#: templates/account.php:
|
1151 |
msgid "Verify Email"
|
1152 |
msgstr "אמת כתובת דוא\"ל"
|
1153 |
|
1154 |
-
#: templates/account.php:
|
1155 |
msgid "Download %s Version"
|
1156 |
msgstr "הורד גרסת %s"
|
1157 |
|
1158 |
-
#: templates/account.
|
1159 |
#: templates/account/partials/site.php237,
|
1160 |
#: templates/account/partials/site.php:255
|
1161 |
msgctxt "verb"
|
1162 |
msgid "Show"
|
1163 |
msgstr "הצג"
|
1164 |
|
1165 |
-
#: templates/account.php:
|
1166 |
msgid "What is your %s?"
|
1167 |
msgstr "מה ה%s שלך?"
|
1168 |
|
1169 |
-
#: templates/account.
|
1170 |
msgctxt "verb"
|
1171 |
msgid "Edit"
|
1172 |
msgstr "ערוך"
|
1173 |
|
1174 |
-
#: templates/account.php:
|
1175 |
msgid "Sites"
|
1176 |
msgstr "אתרים"
|
1177 |
|
1178 |
-
#: templates/account.php:
|
1179 |
msgid "Search by address"
|
1180 |
msgstr "Search by address"
|
1181 |
|
1182 |
-
#: templates/account.
|
1183 |
-
#: templates/debug.
|
1184 |
-
#: templates/debug.
|
1185 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1186 |
msgid "ID"
|
1187 |
msgstr "מזהה"
|
1188 |
|
1189 |
-
#: templates/account.
|
1190 |
msgid "Address"
|
1191 |
msgstr "Address"
|
1192 |
|
1193 |
-
#: templates/account.php:
|
1194 |
msgid "License"
|
1195 |
msgstr "רישיון"
|
1196 |
|
1197 |
-
#: templates/account.php:
|
1198 |
msgid "Plan"
|
1199 |
msgstr "חבילה"
|
1200 |
|
1201 |
-
#: templates/account.php:
|
1202 |
msgctxt "as software license"
|
1203 |
msgid "License"
|
1204 |
msgstr "רישיון"
|
1205 |
|
1206 |
-
#: templates/account.php:
|
1207 |
-
msgid "Cancelled"
|
1208 |
-
msgstr "בוטל"
|
1209 |
-
|
1210 |
-
#: templates/account.php:640
|
1211 |
-
msgid "Expired"
|
1212 |
-
msgstr "פג תוקף"
|
1213 |
-
|
1214 |
-
#: templates/account.php:645
|
1215 |
-
msgid "No expiration"
|
1216 |
-
msgstr "ללא תפוגה"
|
1217 |
-
|
1218 |
-
#: templates/account.php756, templates/account.php:812
|
1219 |
-
msgid "Activate this add-on"
|
1220 |
-
msgstr "הפעל את ההרחבה"
|
1221 |
-
|
1222 |
-
#: templates/account.php833, templates/debug.php408, templates/debug.php:486
|
1223 |
-
msgctxt "verb"
|
1224 |
-
msgid "Delete"
|
1225 |
-
msgstr "מחק"
|
1226 |
-
|
1227 |
-
#: templates/account.php:890
|
1228 |
msgctxt "verb"
|
1229 |
msgid "Hide"
|
1230 |
msgstr "הסתר"
|
1231 |
|
1232 |
-
#: templates/account.php:
|
1233 |
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?"
|
1234 |
msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1235 |
|
@@ -1285,150 +1365,158 @@ msgctxt "greeting"
|
|
1285 |
msgid "Hey %s,"
|
1286 |
msgstr "היי %s,"
|
1287 |
|
1288 |
-
#: templates/connect.php:
|
1289 |
msgid "Allow & Continue"
|
1290 |
msgstr "אפשר\\י והמשכ\\י"
|
1291 |
|
1292 |
-
#: templates/connect.php:
|
1293 |
msgid "Re-send activation email"
|
1294 |
msgstr "שליחה חוזרת של מייל האקטיבציה"
|
1295 |
|
1296 |
-
#: templates/connect.php:
|
1297 |
msgid "Thanks %s!"
|
1298 |
msgstr "תודה %s!"
|
1299 |
|
1300 |
-
#: templates/connect.
|
1301 |
msgid "Agree & Activate License"
|
1302 |
msgstr "הסכמה והפעלת רישיון"
|
1303 |
|
1304 |
-
#: templates/connect.php:
|
1305 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1306 |
msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
|
1307 |
|
1308 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1309 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1310 |
msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1311 |
|
1312 |
-
#: templates/connect.php:
|
1313 |
-
msgid "
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1317 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1318 |
msgstr "We're excited to introduce the Freemius network-level integration."
|
1319 |
|
1320 |
-
#: templates/connect.php:
|
1321 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1322 |
msgstr "During the update process we detected %d site(s) that are still pending license activation."
|
1323 |
|
1324 |
-
#: templates/connect.php:
|
1325 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1326 |
msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1327 |
|
1328 |
-
#: templates/connect.php:
|
1329 |
msgid "%s's paid features"
|
1330 |
msgstr "%s's paid features"
|
1331 |
|
1332 |
-
#: templates/connect.php:
|
1333 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1334 |
msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1335 |
|
1336 |
-
#: templates/connect.php:
|
1337 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1338 |
msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1339 |
|
1340 |
-
#: templates/connect.
|
1341 |
msgid "License key"
|
1342 |
msgstr "מפתח רישיון"
|
1343 |
|
1344 |
-
#: templates/connect.
|
1345 |
msgid "Can't find your license key?"
|
1346 |
msgstr "האם אינך מוצא את מפתח הרישיון?"
|
1347 |
|
1348 |
-
#: templates/connect.
|
1349 |
#: templates/forms/deactivation/retry-skip.php:20
|
1350 |
msgctxt "verb"
|
1351 |
msgid "Skip"
|
1352 |
msgstr "דלג"
|
1353 |
|
1354 |
-
#: templates/connect.php:
|
1355 |
msgid "Delegate to Site Admins"
|
1356 |
msgstr "Delegate to Site Admins"
|
1357 |
|
1358 |
-
#: templates/connect.php:
|
1359 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1360 |
msgstr "If you click it, this decision will be delegated to the sites administrators."
|
1361 |
|
1362 |
-
#: templates/connect.php:
|
1363 |
msgid "Your Profile Overview"
|
1364 |
msgstr "פרטים כלליים על הפרופיל"
|
1365 |
|
1366 |
-
#: templates/connect.php:
|
1367 |
msgid "Name and email address"
|
1368 |
msgstr "שם וכתובת דו\"אל"
|
1369 |
|
1370 |
-
#: templates/connect.php:
|
1371 |
msgid "Your Site Overview"
|
1372 |
msgstr "פרטים כלליים על האתר"
|
1373 |
|
1374 |
-
#: templates/connect.php:
|
1375 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1376 |
msgstr "כתובת אתר, גרסת וורדפרס, פרטי PHP, תוספים ותבניות"
|
1377 |
|
1378 |
-
#: templates/connect.php:
|
1379 |
msgid "Admin Notices"
|
1380 |
msgstr "התראות מנהל"
|
1381 |
|
1382 |
-
#: templates/connect.
|
1383 |
msgid "Updates, announcements, marketing, no spam"
|
1384 |
msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל"
|
1385 |
|
1386 |
-
#: templates/connect.php:
|
1387 |
msgid "Current %s Events"
|
1388 |
msgstr "Current %s Events"
|
1389 |
|
1390 |
-
#: templates/connect.php:
|
1391 |
msgid "Activation, deactivation and uninstall"
|
1392 |
msgstr "הפעלה, כיבוי והסרה"
|
1393 |
|
1394 |
-
#: templates/connect.php:
|
1395 |
msgid "Newsletter"
|
1396 |
msgstr "ניוסלטר"
|
1397 |
|
1398 |
-
#: templates/connect.
|
1399 |
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."
|
1400 |
msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1401 |
|
1402 |
-
#: templates/connect.php:
|
1403 |
msgid "What permissions are being granted?"
|
1404 |
msgstr "מהן ההרשאות המוענקות?"
|
1405 |
|
1406 |
-
#: templates/connect.php:
|
1407 |
msgid "Don't have a license key?"
|
1408 |
msgstr "האם אין ברשותך מפתח רישיון?"
|
1409 |
|
1410 |
-
#: templates/connect.php:
|
1411 |
msgid "Activate Free Version"
|
1412 |
msgstr "הפעלת גירסה חינאמית"
|
1413 |
|
1414 |
-
#: templates/connect.php:
|
1415 |
msgid "Have a license key?"
|
1416 |
msgstr "האם ברשותך רישיון?"
|
1417 |
|
1418 |
-
#: templates/connect.php:
|
1419 |
msgid "Privacy Policy"
|
1420 |
msgstr "מדיניות פרטיות"
|
1421 |
|
1422 |
-
#: templates/connect.php:
|
1423 |
msgid "Terms of Service"
|
1424 |
msgstr "תנאי השירות"
|
1425 |
|
1426 |
-
#: templates/connect.php:
|
1427 |
msgctxt "as in the process of sending an email"
|
1428 |
msgid "Sending email"
|
1429 |
msgstr "שולח דוא\"ל"
|
1430 |
|
1431 |
-
#: templates/connect.php:
|
1432 |
msgctxt "as activating plugin"
|
1433 |
msgid "Activating"
|
1434 |
msgstr "מפעיל"
|
@@ -1456,8 +1544,8 @@ msgctxt "as code debugging"
|
|
1456 |
msgid "Debugging"
|
1457 |
msgstr "דיבוג"
|
1458 |
|
1459 |
-
#: templates/debug.php54, templates/debug.php238, templates/debug.
|
1460 |
-
#: templates/debug.php:
|
1461 |
msgid "Actions"
|
1462 |
msgstr "פעולות"
|
1463 |
|
@@ -1522,12 +1610,12 @@ msgstr "תוספים"
|
|
1522 |
msgid "Themes"
|
1523 |
msgstr "תבניות"
|
1524 |
|
1525 |
-
#: templates/debug.php227, templates/debug.
|
1526 |
#: templates/debug/scheduled-crons.php:80
|
1527 |
msgid "Slug"
|
1528 |
msgstr "מזהה כתובת"
|
1529 |
|
1530 |
-
#: templates/debug.php229, templates/debug.php:
|
1531 |
msgid "Title"
|
1532 |
msgstr "כותרת"
|
1533 |
|
@@ -1548,126 +1636,132 @@ msgstr "Network Blog"
|
|
1548 |
msgid "Network User"
|
1549 |
msgstr "Network User"
|
1550 |
|
1551 |
-
#: templates/debug.php:
|
1552 |
msgctxt "as connection was successful"
|
1553 |
msgid "Connected"
|
1554 |
msgstr "מחובר"
|
1555 |
|
1556 |
-
#: templates/debug.php:
|
1557 |
msgctxt "as connection blocked"
|
1558 |
msgid "Blocked"
|
1559 |
msgstr "חסום"
|
1560 |
|
1561 |
-
#: templates/debug.php:
|
1562 |
msgid "Simulate Trial"
|
1563 |
msgstr "Simulate Trial"
|
1564 |
|
1565 |
-
#: templates/debug.php:
|
1566 |
msgid "Simulate Network Upgrade"
|
1567 |
msgstr "Simulate Network Upgrade"
|
1568 |
|
1569 |
-
#: templates/debug.php:
|
1570 |
msgid "%s Installs"
|
1571 |
msgstr "%s התקנות"
|
1572 |
|
1573 |
-
#: templates/debug.php:
|
1574 |
msgctxt "like websites"
|
1575 |
msgid "Sites"
|
1576 |
msgstr "אתרים"
|
1577 |
|
1578 |
-
#: templates/debug.
|
1579 |
msgid "Blog ID"
|
1580 |
msgstr "Blog ID"
|
1581 |
|
1582 |
-
#: templates/debug.
|
|
|
|
|
|
|
|
|
|
|
|
|
1583 |
msgid "Add Ons of module %s"
|
1584 |
msgstr "Add Ons of module %s"
|
1585 |
|
1586 |
-
#: templates/debug.php:
|
1587 |
msgid "Users"
|
1588 |
msgstr "משתמשים"
|
1589 |
|
1590 |
-
#: templates/debug.php:
|
1591 |
msgid "Verified"
|
1592 |
msgstr "מאומת"
|
1593 |
|
1594 |
-
#: templates/debug.php:
|
1595 |
msgid "%s Licenses"
|
1596 |
msgstr "%s Licenses"
|
1597 |
|
1598 |
-
#: templates/debug.php:
|
1599 |
msgid "Plugin ID"
|
1600 |
msgstr "Plugin ID"
|
1601 |
|
1602 |
-
#: templates/debug.php:
|
1603 |
msgid "Plan ID"
|
1604 |
msgstr "Plan ID"
|
1605 |
|
1606 |
-
#: templates/debug.php:
|
1607 |
msgid "Quota"
|
1608 |
msgstr "Quota"
|
1609 |
|
1610 |
-
#: templates/debug.php:
|
1611 |
msgid "Activated"
|
1612 |
msgstr "Activated"
|
1613 |
|
1614 |
-
#: templates/debug.php:
|
1615 |
msgid "Blocking"
|
1616 |
msgstr "Blocking"
|
1617 |
|
1618 |
-
#: templates/debug.php:
|
1619 |
msgctxt "as expiration date"
|
1620 |
msgid "Expiration"
|
1621 |
msgstr "תפוגה"
|
1622 |
|
1623 |
-
#: templates/debug.php:
|
1624 |
msgid "Debug Log"
|
1625 |
msgstr "Debug Log"
|
1626 |
|
1627 |
-
#: templates/debug.php:
|
1628 |
msgid "All Types"
|
1629 |
msgstr "כל הסוגים"
|
1630 |
|
1631 |
-
#: templates/debug.php:
|
1632 |
msgid "All Requests"
|
1633 |
msgstr "כל הבקשות"
|
1634 |
|
1635 |
-
#: templates/debug.
|
1636 |
#: templates/debug/logger.php:25
|
1637 |
msgid "File"
|
1638 |
msgstr "קובץ"
|
1639 |
|
1640 |
-
#: templates/debug.
|
1641 |
#: templates/debug/logger.php:23
|
1642 |
msgid "Function"
|
1643 |
msgstr "פונקציה"
|
1644 |
|
1645 |
-
#: templates/debug.php:
|
1646 |
msgid "Process ID"
|
1647 |
msgstr "Process ID"
|
1648 |
|
1649 |
-
#: templates/debug.php:
|
1650 |
msgid "Logger"
|
1651 |
msgstr "Logger"
|
1652 |
|
1653 |
-
#: templates/debug.
|
1654 |
#: templates/debug/logger.php:24
|
1655 |
msgid "Message"
|
1656 |
msgstr "הודעה"
|
1657 |
|
1658 |
-
#: templates/debug.php:
|
1659 |
msgid "Filter"
|
1660 |
msgstr "פילטר"
|
1661 |
|
1662 |
-
#: templates/debug.php:
|
1663 |
msgid "Download"
|
1664 |
msgstr "הורדה"
|
1665 |
|
1666 |
-
#: templates/debug.
|
1667 |
msgid "Type"
|
1668 |
msgstr "סוג"
|
1669 |
|
1670 |
-
#: templates/debug.
|
1671 |
msgid "Timestamp"
|
1672 |
msgstr "Timestamp"
|
1673 |
|
@@ -2018,6 +2112,27 @@ msgstr "Usage tracking is done in the name of making %s better. Making a better
|
|
2018 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2019 |
msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2020 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021 |
#: templates/forms/resend-key.php:21
|
2022 |
msgid "Send License Key"
|
2023 |
msgstr "שליחת מפתח רישיון"
|
@@ -2091,6 +2206,23 @@ msgstr "נשארו %s"
|
|
2091 |
msgid "Last license"
|
2092 |
msgstr "רישיון אחרון"
|
2093 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2094 |
#: templates/account/partials/site.php:181
|
2095 |
msgid "Owner Name"
|
2096 |
msgstr "Owner Name"
|
@@ -2143,19 +2275,19 @@ msgstr "deactivating"
|
|
2143 |
msgid "switching"
|
2144 |
msgstr "switching"
|
2145 |
|
2146 |
-
#: templates/forms/deactivation/form.php:
|
2147 |
msgid "Submit & %s"
|
2148 |
msgstr "Submit & %s"
|
2149 |
|
2150 |
-
#: templates/forms/deactivation/form.php:
|
2151 |
msgid "Kindly tell us the reason so we can improve."
|
2152 |
msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
|
2153 |
|
2154 |
-
#: templates/forms/deactivation/form.php:
|
2155 |
msgid "Yes - %s"
|
2156 |
msgstr "Yes - %s"
|
2157 |
|
2158 |
-
#: templates/forms/deactivation/form.php:
|
2159 |
msgid "Skip & %s"
|
2160 |
msgstr "דלג ו%s"
|
2161 |
|
8 |
"Project-Id-Version: WordPress SDK\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
|
10 |
"POT-Creation-Date: \n"
|
11 |
+
"PO-Revision-Date: 2018-05-24 11:59+0000\n"
|
12 |
"Last-Translator: Vova Feldman <vova@freemius.com>\n"
|
13 |
"Language: he_IL\n"
|
14 |
"Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
18 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
+
#: includes/class-freemius.php:1551
|
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:1553
|
30 |
msgid "Error"
|
31 |
msgstr "שגיאה"
|
32 |
|
33 |
+
#: includes/class-freemius.php:1871
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "I found a better %s"
|
36 |
|
37 |
+
#: includes/class-freemius.php:1873
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "What's the %s's name?"
|
40 |
|
41 |
+
#: includes/class-freemius.php:1879
|
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:1881
|
46 |
msgid "Deactivation"
|
47 |
msgstr "דיאקטיבציה"
|
48 |
|
49 |
+
#: includes/class-freemius.php:1882
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "החלפת תֵמָה"
|
52 |
|
53 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
54 |
msgid "Other"
|
55 |
msgstr "אחר"
|
56 |
|
57 |
+
#: includes/class-freemius.php:1899
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "I no longer need the %s"
|
60 |
|
61 |
+
#: includes/class-freemius.php:1906
|
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:1912
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "ה%s הרס לי את האתר"
|
68 |
|
69 |
+
#: includes/class-freemius.php:1919
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "ה%s הפסיק פתאום לעבוד"
|
72 |
|
73 |
+
#: includes/class-freemius.php:1929
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "אני לא יכול/ה להמשיך לשלם על זה"
|
76 |
|
77 |
+
#: includes/class-freemius.php:1931
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
|
80 |
|
81 |
+
#: includes/class-freemius.php:1937
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
|
84 |
|
85 |
+
#: includes/class-freemius.php:1958
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "ה%s לא עבד"
|
88 |
|
89 |
+
#: includes/class-freemius.php:1968
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
|
92 |
|
93 |
+
#: includes/class-freemius.php:1976
|
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:1978
|
98 |
msgid "What feature?"
|
99 |
msgstr "איזה פיטצ'ר?"
|
100 |
|
101 |
+
#: includes/class-freemius.php:1982
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "ה%s לא עובד"
|
104 |
|
105 |
+
#: includes/class-freemius.php:1984
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
|
108 |
|
109 |
+
#: includes/class-freemius.php:1988
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "חיפשתי משהו אחר"
|
112 |
|
113 |
+
#: includes/class-freemius.php:1990
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "מה חיפשת?"
|
116 |
|
117 |
+
#: includes/class-freemius.php:1994
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "ה%s לא עבד כמצופה"
|
120 |
|
121 |
+
#: includes/class-freemius.php:1996
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "למה ציפית?"
|
124 |
|
125 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "ניפוי תקלות פרימיוס"
|
128 |
|
129 |
+
#: includes/class-freemius.php:3402
|
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:3404
|
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:3411
|
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:3516
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "כן - בצעו את מה שצריך"
|
144 |
|
145 |
+
#: includes/class-freemius.php:3521
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "לא - פשוט כבה"
|
148 |
|
149 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
150 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
151 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
152 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
153 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
154 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
155 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "אופס"
|
159 |
|
160 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s לא יכול לעבוד ללא %s."
|
168 |
|
169 |
+
#: includes/class-freemius.php:4064
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
|
173 |
|
174 |
+
#: includes/class-freemius.php4176, includes/class-freemius.php4201,
|
175 |
+
#: includes/class-freemius.php:17103
|
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:4815
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium %s version was successfully activated."
|
182 |
|
183 |
+
#: includes/class-freemius.php4827, includes/class-freemius.php:6660
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "W00t"
|
187 |
|
188 |
+
#: includes/class-freemius.php:4842
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "יש לך רישיון %s."
|
191 |
|
192 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
193 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
194 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
195 |
+
#: includes/class-freemius.php:16891
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "יששש"
|
199 |
|
200 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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.php5123, templates/add-ons.php99,
|
209 |
+
#: templates/account/partials/addon.php:283
|
210 |
msgid "More information about %s"
|
211 |
msgstr "מידע נוסף אודות %s"
|
212 |
|
213 |
+
#: includes/class-freemius.php:5124
|
214 |
msgid "Purchase License"
|
215 |
msgstr "קניית רישיון"
|
216 |
|
217 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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:6039
|
222 |
msgid "start the trial"
|
223 |
msgstr "התחל תקופת ניסיון"
|
224 |
|
225 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
226 |
msgid "complete the install"
|
227 |
msgstr "השלם התקנה"
|
228 |
|
229 |
+
#: includes/class-freemius.php:6147
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "You are just one step away - %s"
|
232 |
|
233 |
+
#: includes/class-freemius.php:6150
|
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:6227
|
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:6231
|
243 |
msgid "Opt in to make \"%s\" Better!"
|
244 |
msgstr "Opt in to make \"%s\" Better!"
|
245 |
|
246 |
+
#: includes/class-freemius.php:6659
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "The upgrade of %s was successfully completed."
|
249 |
|
250 |
+
#: includes/class-freemius.php8384, includes/class-fs-plugin-updater.php581,
|
251 |
+
#: includes/class-fs-plugin-updater.php733,
|
252 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Add-On"
|
255 |
|
256 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
257 |
+
#: templates/debug.php:510
|
258 |
msgid "Plugin"
|
259 |
msgstr "תוסף"
|
260 |
|
261 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
262 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
263 |
msgid "Theme"
|
264 |
msgstr "תבנית"
|
265 |
|
266 |
+
#: includes/class-freemius.php:10808
|
267 |
msgid "invalid_site_details_collection"
|
268 |
msgstr "invalid_site_details_collection"
|
269 |
|
270 |
+
#: includes/class-freemius.php:10928
|
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:10930
|
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:11166
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "Account is pending activation."
|
281 |
|
282 |
+
#: includes/class-freemius.php:13608
|
283 |
msgid "%s activation was successfully completed."
|
284 |
msgstr "הפעלת %s הושלמה בהצלחה."
|
285 |
|
286 |
+
#: includes/class-freemius.php:13622
|
287 |
msgid "Your account was successfully activated with the %s plan."
|
288 |
msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
|
289 |
|
290 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
291 |
msgid "Your trial has been successfully started."
|
292 |
msgstr "הניסיון שלך הופעל בהצלחה."
|
293 |
|
294 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
295 |
+
#: includes/class-freemius.php:14317
|
296 |
msgid "Couldn't activate %s."
|
297 |
msgstr "לא ניתן להפעיל את %s."
|
298 |
|
299 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
300 |
+
#: includes/class-freemius.php:14318
|
301 |
msgid "Please contact us with the following message:"
|
302 |
msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
|
303 |
|
304 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
305 |
msgid "Upgrade"
|
306 |
msgstr "שדרג"
|
307 |
|
308 |
+
#: includes/class-freemius.php:14672
|
309 |
msgid "Start Trial"
|
310 |
msgstr "התחל תקופת ניסיון"
|
311 |
|
312 |
+
#: includes/class-freemius.php:14674
|
313 |
msgid "Pricing"
|
314 |
msgstr "מחירון"
|
315 |
|
316 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
317 |
msgid "Affiliation"
|
318 |
msgstr "אפיליאציה"
|
319 |
|
320 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
321 |
+
#: templates/account.php146, templates/debug.php:314
|
322 |
msgid "Account"
|
323 |
msgstr "חשבון"
|
324 |
|
325 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
326 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
327 |
msgid "Contact Us"
|
328 |
msgstr "יצירת קשר"
|
329 |
|
330 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
331 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
332 |
+
#: templates/account/partials/addon.php:37
|
333 |
msgid "Add-Ons"
|
334 |
msgstr "Add-Ons"
|
335 |
|
336 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
337 |
msgctxt "noun"
|
338 |
msgid "Pricing"
|
339 |
msgstr "מחירון"
|
340 |
|
341 |
+
#: includes/class-freemius.php15009,
|
342 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
343 |
msgid "Support Forum"
|
344 |
msgstr "פורום תמיכה"
|
345 |
|
346 |
+
#: includes/class-freemius.php:15794
|
347 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
348 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
349 |
|
350 |
+
#: includes/class-freemius.php:15795
|
351 |
msgctxt "a positive response"
|
352 |
msgid "Right on"
|
353 |
msgstr "מעולה"
|
354 |
|
355 |
+
#: includes/class-freemius.php:16367
|
356 |
msgid "Your %s Add-on plan was successfully upgraded."
|
357 |
msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
|
358 |
|
359 |
+
#: includes/class-freemius.php:16369
|
360 |
msgid "%s Add-on was successfully purchased."
|
361 |
msgstr "ההרחבה %s נרכשה בהצלחה."
|
362 |
|
363 |
+
#: includes/class-freemius.php:16372
|
364 |
msgid "Download the latest version"
|
365 |
msgstr "הורד את הגרסה האחרונה"
|
366 |
|
367 |
+
#: includes/class-freemius.php:16444
|
368 |
msgctxt "%1s - plugin title, %2s - API domain"
|
369 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
370 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
371 |
|
372 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
373 |
+
#: includes/class-freemius.php:16927
|
374 |
msgid "Error received from the server:"
|
375 |
msgstr "הוחזרה שגיאה מהשרת:"
|
376 |
|
377 |
+
#: includes/class-freemius.php:16457
|
378 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
379 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
380 |
|
381 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
382 |
+
#: includes/class-freemius.php:16910
|
383 |
msgctxt ""
|
384 |
msgid "Hmm"
|
385 |
msgstr "Hmm"
|
386 |
|
387 |
+
#: includes/class-freemius.php:16652
|
388 |
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."
|
389 |
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."
|
390 |
|
391 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
392 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
393 |
msgctxt "trial period"
|
394 |
msgid "Trial"
|
395 |
msgstr "ניסיון"
|
396 |
|
397 |
+
#: includes/class-freemius.php:16658
|
398 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
399 |
msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
|
400 |
|
401 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
402 |
msgid "Please contact us here"
|
403 |
msgstr "אנא צור איתנו קשר כאן"
|
404 |
|
405 |
+
#: includes/class-freemius.php:16672
|
406 |
msgid "Your plan was successfully upgraded."
|
407 |
msgstr "החבילה שודרגה בהצלחה."
|
408 |
|
409 |
+
#: includes/class-freemius.php:16689
|
410 |
msgid "Your plan was successfully changed to %s."
|
411 |
msgstr "החבילה עודכנה בהצלחה אל %s."
|
412 |
|
413 |
+
#: includes/class-freemius.php:16705
|
414 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
415 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
416 |
|
417 |
+
#: includes/class-freemius.php:16707
|
418 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
419 |
+
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
420 |
+
|
421 |
+
#: includes/class-freemius.php:16715
|
422 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
423 |
msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
|
424 |
|
425 |
+
#: includes/class-freemius.php:16728
|
426 |
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."
|
427 |
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."
|
428 |
|
429 |
+
#: includes/class-freemius.php:16751
|
430 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
431 |
+
msgstr "Your free trial has expired. You can still continue using all our free features."
|
432 |
+
|
433 |
+
#: includes/class-freemius.php:16753
|
434 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
435 |
+
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
436 |
|
437 |
+
#: includes/class-freemius.php:16858
|
438 |
msgid "It looks like the license could not be activated."
|
439 |
msgstr "נראה שלא ניתן להפעיל את הרישיון."
|
440 |
|
441 |
+
#: includes/class-freemius.php:16888
|
442 |
msgid "Your license was successfully activated."
|
443 |
msgstr "הרישיון הופעל בהצלחה."
|
444 |
|
445 |
+
#: includes/class-freemius.php:16914
|
446 |
msgid "It looks like your site currently doesn't have an active license."
|
447 |
msgstr "נראה לאתר עדיין אין רישיון פעיל."
|
448 |
|
449 |
+
#: includes/class-freemius.php:16926
|
450 |
msgid "It looks like the license deactivation failed."
|
451 |
msgstr "נראה שניתוק הרישיון נכשל."
|
452 |
|
453 |
+
#: includes/class-freemius.php:16954
|
454 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
455 |
msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
|
456 |
|
457 |
+
#: includes/class-freemius.php:16955
|
458 |
msgid "O.K"
|
459 |
msgstr "אוקיי"
|
460 |
|
461 |
+
#: includes/class-freemius.php:17003
|
462 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
463 |
msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
464 |
|
465 |
+
#: includes/class-freemius.php:17013
|
466 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
467 |
msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
468 |
|
469 |
+
#: includes/class-freemius.php:17037
|
470 |
msgid "You are already running the %s in a trial mode."
|
471 |
msgstr "You are already running the %s in a trial mode."
|
472 |
|
473 |
+
#: includes/class-freemius.php:17048
|
474 |
msgid "You already utilized a trial before."
|
475 |
msgstr "הניסיון כבר נוצל בעבר."
|
476 |
|
477 |
+
#: includes/class-freemius.php:17062
|
478 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
479 |
msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
|
480 |
|
481 |
+
#: includes/class-freemius.php:17073
|
482 |
msgid "Plan %s does not support a trial period."
|
483 |
msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
|
484 |
|
485 |
+
#: includes/class-freemius.php:17084
|
486 |
msgid "None of the %s's plans supports a trial period."
|
487 |
msgstr "None of the %s's plans supports a trial period."
|
488 |
|
489 |
+
#: includes/class-freemius.php:17134
|
490 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
491 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
492 |
|
493 |
+
#: includes/class-freemius.php:17185
|
494 |
msgid "Your %s free trial was successfully cancelled."
|
495 |
msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
|
496 |
|
497 |
+
#: includes/class-freemius.php:17190
|
498 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
499 |
msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
|
500 |
|
501 |
+
#: includes/class-freemius.php:17474
|
502 |
msgid "Version %s was released."
|
503 |
msgstr "גרסה %s הושקה."
|
504 |
|
505 |
+
#: includes/class-freemius.php:17474
|
506 |
msgid "Please download %s."
|
507 |
msgstr "נא להוריד את %s."
|
508 |
|
509 |
+
#: includes/class-freemius.php:17481
|
510 |
msgid "the latest %s version here"
|
511 |
msgstr "גרסת ה-%s האחרונה כאן"
|
512 |
|
513 |
+
#: includes/class-freemius.php:17486
|
514 |
msgid "New"
|
515 |
msgstr "חדש"
|
516 |
|
517 |
+
#: includes/class-freemius.php:17491
|
518 |
msgid "Seems like you got the latest release."
|
519 |
msgstr "נראה שיש לך את הגרסה האחרונה."
|
520 |
|
521 |
+
#: includes/class-freemius.php:17492
|
522 |
msgid "You are all good!"
|
523 |
msgstr "את\\ה מסודר!"
|
524 |
|
525 |
+
#: includes/class-freemius.php:17758
|
526 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
527 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
528 |
|
529 |
+
#: includes/class-freemius.php:17893
|
530 |
msgid "Site successfully opted in."
|
531 |
msgstr "Site successfully opted in."
|
532 |
|
533 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
534 |
msgid "Awesome"
|
535 |
msgstr "אדיר"
|
536 |
|
537 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
538 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
539 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
540 |
|
541 |
+
#: includes/class-freemius.php:17911
|
542 |
msgid "Thank you!"
|
543 |
msgstr "Thank you!"
|
544 |
|
545 |
+
#: includes/class-freemius.php:17918
|
546 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
547 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
548 |
|
549 |
+
#: includes/class-freemius.php:18033
|
550 |
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."
|
551 |
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."
|
552 |
|
553 |
+
#: includes/class-freemius.php:18039
|
554 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
555 |
msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
|
556 |
|
557 |
+
#: includes/class-freemius.php:18044
|
558 |
msgid "%s is the new owner of the account."
|
559 |
msgstr "%s הינו הבעלים החד של חשבון זה."
|
560 |
|
561 |
+
#: includes/class-freemius.php:18046
|
562 |
msgctxt "as congratulations"
|
563 |
msgid "Congrats"
|
564 |
msgstr "מזל טוב"
|
565 |
|
566 |
+
#: includes/class-freemius.php:18066
|
567 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
568 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
569 |
|
570 |
+
#: includes/class-freemius.php:18067
|
571 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
572 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
573 |
|
574 |
+
#: includes/class-freemius.php:18074
|
575 |
msgid "Change Ownership"
|
576 |
msgstr "עדכון בעלות"
|
577 |
|
578 |
+
#: includes/class-freemius.php:18082
|
579 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
580 |
msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
|
581 |
|
582 |
+
#: includes/class-freemius.php:18094
|
583 |
msgid "Please provide your full name."
|
584 |
msgstr "נא למלא את שמך המלא."
|
585 |
|
586 |
+
#: includes/class-freemius.php:18099
|
587 |
msgid "Your name was successfully updated."
|
588 |
msgstr "שמך עודכן בהצלחה."
|
589 |
|
590 |
+
#: includes/class-freemius.php:18160
|
591 |
msgid "You have successfully updated your %s."
|
592 |
msgstr "עידכנת בהצלחה את ה%s."
|
593 |
|
594 |
+
#: includes/class-freemius.php:18300
|
595 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
596 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
597 |
|
598 |
+
#: includes/class-freemius.php:18301
|
599 |
msgctxt "advance notice of something that will need attention."
|
600 |
msgid "Heads up"
|
601 |
msgstr "לתשמות לבך"
|
602 |
|
603 |
+
#: includes/class-freemius.php:18711
|
604 |
msgctxt "exclamation"
|
605 |
msgid "Hey"
|
606 |
msgstr "היי"
|
607 |
|
608 |
+
#: includes/class-freemius.php:18711
|
609 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
610 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
611 |
|
612 |
+
#: includes/class-freemius.php:18719
|
613 |
msgid "No commitment for %s days - cancel anytime!"
|
614 |
msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
|
615 |
|
616 |
+
#: includes/class-freemius.php:18720
|
617 |
msgid "No credit card required"
|
618 |
msgstr "לא נדרש כרטיס אשראי"
|
619 |
|
620 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
621 |
msgctxt "call to action"
|
622 |
msgid "Start free trial"
|
623 |
msgstr "התחלת ניסיון חינם"
|
624 |
|
625 |
+
#: includes/class-freemius.php:18804
|
626 |
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!"
|
627 |
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!"
|
628 |
|
629 |
+
#: includes/class-freemius.php:18813
|
630 |
msgid "Learn more"
|
631 |
msgstr "Learn more"
|
632 |
|
633 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
634 |
+
#: templates/account.php497, templates/connect.php169,
|
635 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
636 |
+
#: templates/account/partials/addon.php:230
|
637 |
msgid "Activate License"
|
638 |
msgstr "הפעלת רישיון"
|
639 |
|
640 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
641 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
642 |
msgid "Change License"
|
643 |
msgstr "שינוי רישיון"
|
644 |
|
645 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
646 |
msgid "Opt Out"
|
647 |
msgstr "Opt Out"
|
648 |
|
649 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
650 |
#: templates/account/partials/site.php43,
|
651 |
#: templates/account/partials/site.php:161
|
652 |
msgid "Opt In"
|
653 |
msgstr "Opt In"
|
654 |
|
655 |
+
#: includes/class-freemius.php:19245
|
656 |
msgid "Please follow these steps to complete the upgrade"
|
657 |
msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
|
658 |
|
659 |
+
#: includes/class-freemius.php:19249
|
660 |
msgid "Download the latest %s version"
|
661 |
msgstr "הורד\\י את גרסת ה-%s העדכנית"
|
662 |
|
663 |
+
#: includes/class-freemius.php:19253
|
664 |
msgid "Upload and activate the downloaded version"
|
665 |
msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
|
666 |
|
667 |
+
#: includes/class-freemius.php:19255
|
668 |
msgid "How to upload and activate?"
|
669 |
msgstr "איך להעלות ולהפעיל?"
|
670 |
|
671 |
+
#: includes/class-freemius.php:19384
|
672 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
673 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
674 |
|
675 |
+
#: includes/class-freemius.php:19545
|
676 |
msgid "Auto installation only works for opted-in users."
|
677 |
msgstr "Auto installation only works for opted-in users."
|
678 |
|
679 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
680 |
+
#: includes/class-fs-plugin-updater.php713,
|
681 |
+
#: includes/class-fs-plugin-updater.php:727
|
682 |
msgid "Invalid module ID."
|
683 |
msgstr "Invalid module ID."
|
684 |
|
685 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
686 |
msgid "Premium version already active."
|
687 |
msgstr "Premium version already active."
|
688 |
|
689 |
+
#: includes/class-freemius.php:19571
|
690 |
msgid "You do not have a valid license to access the premium version."
|
691 |
msgstr "You do not have a valid license to access the premium version."
|
692 |
|
693 |
+
#: includes/class-freemius.php:19578
|
694 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
695 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
696 |
|
697 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
698 |
msgid "Premium add-on version already installed."
|
699 |
msgstr "Premium add-on version already installed."
|
700 |
|
701 |
+
#: includes/class-freemius.php:19941
|
702 |
msgid "View paid features"
|
703 |
msgstr "View paid features"
|
704 |
|
705 |
+
#: includes/class-freemius.php:20251
|
706 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
707 |
+
msgstr "Thank you so much for using %s and its add-ons!"
|
708 |
+
|
709 |
+
#: includes/class-freemius.php:20252
|
710 |
+
msgid "Thank you so much for using %s!"
|
711 |
+
msgstr "Thank you so much for using %s!"
|
712 |
+
|
713 |
+
#: includes/class-freemius.php:20258
|
714 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
715 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
716 |
+
|
717 |
+
#: includes/class-freemius.php:20262
|
718 |
+
msgid "Thank you so much for using our products!"
|
719 |
+
msgstr "Thank you so much for using our products!"
|
720 |
+
|
721 |
+
#: includes/class-freemius.php:20263
|
722 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
723 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
724 |
+
|
725 |
+
#: includes/class-freemius.php:20282
|
726 |
+
msgid "%s and its add-ons"
|
727 |
+
msgstr "%s and its add-ons"
|
728 |
|
729 |
+
#: includes/class-freemius.php:20291
|
730 |
+
msgid "Products"
|
731 |
+
msgstr "Products"
|
732 |
+
|
733 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
734 |
+
msgid "Yes"
|
735 |
+
msgstr "Yes"
|
736 |
+
|
737 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
738 |
+
msgid "send me security & feature updates, educational content and offers."
|
739 |
+
msgstr "send me security & feature updates, educational content and offers."
|
740 |
+
|
741 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
742 |
+
msgid "No"
|
743 |
+
msgstr "No"
|
744 |
+
|
745 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
746 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
747 |
+
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
748 |
+
|
749 |
+
#: includes/class-freemius.php:20312
|
750 |
+
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 🙂"
|
751 |
+
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 🙂"
|
752 |
+
|
753 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
754 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
755 |
+
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
756 |
+
|
757 |
+
#: includes/class-freemius.php:20598
|
758 |
+
msgid "License key is empty."
|
759 |
+
msgstr "License key is empty."
|
760 |
+
|
761 |
+
#: includes/class-fs-plugin-updater.php184,
|
762 |
+
#: includes/class-fs-plugin-updater.php:219
|
763 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
764 |
+
msgstr "%sRenew your license now%s to access version %s security & feature updates, and support."
|
765 |
+
|
766 |
+
#: includes/class-fs-plugin-updater.php:776
|
767 |
msgid "Installing plugin: %s"
|
768 |
msgstr "Installing plugin: %s"
|
769 |
|
770 |
+
#: includes/class-fs-plugin-updater.php:817
|
771 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
772 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
773 |
|
774 |
+
#: includes/class-fs-plugin-updater.php:923
|
775 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
776 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
777 |
|
778 |
+
#: includes/fs-plugin-info-dialog.php336,
|
779 |
+
#: templates/account/partials/addon.php:287
|
780 |
msgctxt "verb"
|
781 |
msgid "Purchase"
|
782 |
msgstr "רכישה"
|
783 |
|
784 |
+
#: includes/fs-plugin-info-dialog.php:339
|
785 |
msgid "Start my free %s"
|
786 |
msgstr "התחל את %s הניסיון שלי"
|
787 |
|
788 |
+
#: includes/fs-plugin-info-dialog.php:380
|
789 |
+
msgid "Install Free Version Now"
|
790 |
+
msgstr "Install Free Version Now"
|
791 |
+
|
792 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
793 |
+
#: templates/account/partials/addon.php267,
|
794 |
+
#: templates/account/partials/addon.php:317
|
795 |
+
msgid "Install Now"
|
796 |
+
msgstr "התקן עכשיו"
|
797 |
+
|
798 |
+
#: includes/fs-plugin-info-dialog.php:392
|
799 |
+
msgctxt "as download latest version"
|
800 |
+
msgid "Download Latest Free Version"
|
801 |
+
msgstr "Download Latest Free Version"
|
802 |
+
|
803 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
804 |
+
#: templates/account/partials/addon.php:21
|
805 |
msgctxt "as download latest version"
|
806 |
msgid "Download Latest"
|
807 |
msgstr "הורד גרסה אחרונה"
|
808 |
|
809 |
+
#: includes/fs-plugin-info-dialog.php:403
|
810 |
+
msgid "Install Free Version Update Now"
|
811 |
+
msgstr "Install Free Version Update Now"
|
|
|
812 |
|
813 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
814 |
msgid "Install Update Now"
|
815 |
msgstr "התקן עדכון במיידי"
|
816 |
|
817 |
+
#: includes/fs-plugin-info-dialog.php:415
|
818 |
+
msgid "Newer Free Version (%s) Installed"
|
819 |
+
msgstr "Newer Free Version (%s) Installed"
|
820 |
+
|
821 |
+
#: includes/fs-plugin-info-dialog.php:416
|
822 |
msgid "Newer Version (%s) Installed"
|
823 |
msgstr "גרסה חדשה (%s) הותקנה"
|
824 |
|
825 |
+
#: includes/fs-plugin-info-dialog.php:424
|
826 |
+
msgid "Latest Free Version Installed"
|
827 |
+
msgstr "Latest Free Version Installed"
|
828 |
+
|
829 |
+
#: includes/fs-plugin-info-dialog.php:425
|
830 |
msgid "Latest Version Installed"
|
831 |
msgstr "הגרסה האחרונה הותקנה"
|
832 |
|
833 |
+
#: includes/fs-plugin-info-dialog.php:580
|
834 |
msgctxt "Plugin installer section title"
|
835 |
msgid "Description"
|
836 |
msgstr "תיאור"
|
837 |
|
838 |
+
#: includes/fs-plugin-info-dialog.php:581
|
839 |
msgctxt "Plugin installer section title"
|
840 |
msgid "Installation"
|
841 |
msgstr "התקנה"
|
842 |
|
843 |
+
#: includes/fs-plugin-info-dialog.php:582
|
844 |
msgctxt "Plugin installer section title"
|
845 |
msgid "FAQ"
|
846 |
msgstr "שאלות נפוצות"
|
847 |
|
848 |
+
#: includes/fs-plugin-info-dialog.php583,
|
849 |
#: templates/plugin-info/description.php:55
|
850 |
msgid "Screenshots"
|
851 |
msgstr "צילומי מסך"
|
852 |
|
853 |
+
#: includes/fs-plugin-info-dialog.php:584
|
854 |
msgctxt "Plugin installer section title"
|
855 |
msgid "Changelog"
|
856 |
msgstr "לוג שינויים"
|
857 |
|
858 |
+
#: includes/fs-plugin-info-dialog.php:585
|
859 |
msgctxt "Plugin installer section title"
|
860 |
msgid "Reviews"
|
861 |
msgstr "ביקורות"
|
862 |
|
863 |
+
#: includes/fs-plugin-info-dialog.php:586
|
864 |
msgctxt "Plugin installer section title"
|
865 |
msgid "Other Notes"
|
866 |
msgstr "היערות נוספות"
|
867 |
|
868 |
+
#: includes/fs-plugin-info-dialog.php:601
|
869 |
msgctxt "Plugin installer section title"
|
870 |
msgid "Features & Pricing"
|
871 |
msgstr "פיטצ'רים ומחירים"
|
872 |
|
873 |
+
#: includes/fs-plugin-info-dialog.php:611
|
874 |
msgid "Plugin Install"
|
875 |
msgstr "התקנת תוסף"
|
876 |
|
877 |
+
#: includes/fs-plugin-info-dialog.php:683
|
878 |
msgctxt "e.g. Professional Plan"
|
879 |
msgid "%s Plan"
|
880 |
msgstr "חבילה %s"
|
881 |
|
882 |
+
#: includes/fs-plugin-info-dialog.php:709
|
883 |
msgctxt "e.g. the best product"
|
884 |
msgid "Best"
|
885 |
msgstr "הכי טוב"
|
886 |
|
887 |
+
#: includes/fs-plugin-info-dialog.php715,
|
888 |
+
#: includes/fs-plugin-info-dialog.php:735
|
889 |
msgctxt "as every month"
|
890 |
msgid "Monthly"
|
891 |
msgstr "חודשי"
|
892 |
|
893 |
+
#: includes/fs-plugin-info-dialog.php:718
|
894 |
msgctxt "as once a year"
|
895 |
msgid "Annual"
|
896 |
msgstr "שנתי"
|
897 |
|
898 |
+
#: includes/fs-plugin-info-dialog.php:721
|
899 |
msgid "Lifetime"
|
900 |
msgstr "לכל החיים"
|
901 |
|
902 |
+
#: includes/fs-plugin-info-dialog.php735,
|
903 |
+
#: includes/fs-plugin-info-dialog.php737,
|
904 |
+
#: includes/fs-plugin-info-dialog.php:739
|
905 |
msgctxt "e.g. billed monthly"
|
906 |
msgid "Billed %s"
|
907 |
msgstr "מחוייב על בסיס %s"
|
908 |
|
909 |
+
#: includes/fs-plugin-info-dialog.php:737
|
910 |
msgctxt "as once a year"
|
911 |
msgid "Annually"
|
912 |
msgstr "שנתי"
|
913 |
|
914 |
+
#: includes/fs-plugin-info-dialog.php:739
|
915 |
msgctxt "as once a year"
|
916 |
msgid "Once"
|
917 |
msgstr "פעם אחת"
|
918 |
|
919 |
+
#: includes/fs-plugin-info-dialog.php:745
|
920 |
msgid "Single Site License"
|
921 |
msgstr "רשיון לאתר אחד"
|
922 |
|
923 |
+
#: includes/fs-plugin-info-dialog.php:747
|
924 |
msgid "Unlimited Licenses"
|
925 |
msgstr "רשיונות ללא הגבלה"
|
926 |
|
927 |
+
#: includes/fs-plugin-info-dialog.php:749
|
928 |
msgid "Up to %s Sites"
|
929 |
msgstr "עד %s אתרים"
|
930 |
|
931 |
+
#: includes/fs-plugin-info-dialog.php759,
|
932 |
#: templates/plugin-info/features.php:82
|
933 |
msgctxt "as monthly period"
|
934 |
msgid "mo"
|
935 |
msgstr "חודשים"
|
936 |
|
937 |
+
#: includes/fs-plugin-info-dialog.php766,
|
938 |
#: templates/plugin-info/features.php:80
|
939 |
msgctxt "as annual period"
|
940 |
msgid "year"
|
941 |
msgstr "שנה"
|
942 |
|
943 |
+
#: includes/fs-plugin-info-dialog.php:820
|
944 |
msgctxt "noun"
|
945 |
msgid "Price"
|
946 |
msgstr "מחיר"
|
947 |
|
948 |
+
#: includes/fs-plugin-info-dialog.php:868
|
949 |
msgid "Save %s"
|
950 |
msgstr "שמירת %s"
|
951 |
|
952 |
+
#: includes/fs-plugin-info-dialog.php:878
|
953 |
msgid "No commitment for %s - cancel anytime"
|
954 |
msgstr "No commitment for %s - cancel anytime"
|
955 |
|
956 |
+
#: includes/fs-plugin-info-dialog.php:881
|
957 |
msgid "After your free %s, pay as little as %s"
|
958 |
msgstr "After your free %s, pay as little as %s"
|
959 |
|
960 |
+
#: includes/fs-plugin-info-dialog.php:892
|
961 |
msgid "Details"
|
962 |
msgstr "פרטים"
|
963 |
|
964 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
965 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
966 |
+
#: templates/account/partials/addon.php:28
|
967 |
msgctxt "product version"
|
968 |
msgid "Version"
|
969 |
msgstr "גרסה"
|
970 |
|
971 |
+
#: includes/fs-plugin-info-dialog.php:903
|
972 |
msgctxt "as the plugin author"
|
973 |
msgid "Author"
|
974 |
msgstr "Author"
|
975 |
|
976 |
+
#: includes/fs-plugin-info-dialog.php:910
|
977 |
msgid "Last Updated"
|
978 |
msgstr "עודכן לאחרונה"
|
979 |
|
980 |
+
#: includes/fs-plugin-info-dialog.php:915
|
981 |
msgctxt "x-ago"
|
982 |
msgid "%s ago"
|
983 |
msgstr "לפני %s"
|
984 |
|
985 |
+
#: includes/fs-plugin-info-dialog.php:924
|
986 |
msgid "Requires WordPress Version"
|
987 |
msgstr "Requires WordPress Version"
|
988 |
|
989 |
+
#: includes/fs-plugin-info-dialog.php:925
|
990 |
msgid "%s or higher"
|
991 |
msgstr "%s ומעלה"
|
992 |
|
993 |
+
#: includes/fs-plugin-info-dialog.php:932
|
994 |
msgid "Compatible up to"
|
995 |
msgstr "Compatible up to"
|
996 |
|
997 |
+
#: includes/fs-plugin-info-dialog.php:940
|
998 |
msgid "Downloaded"
|
999 |
msgstr "Downloaded"
|
1000 |
|
1001 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1002 |
msgid "%s time"
|
1003 |
msgstr "פעם %s"
|
1004 |
|
1005 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1006 |
msgid "%s times"
|
1007 |
msgstr "%s פעמים"
|
1008 |
|
1009 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1010 |
msgid "WordPress.org Plugin Page"
|
1011 |
msgstr "WordPress.org Plugin Page"
|
1012 |
|
1013 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1014 |
msgid "Plugin Homepage"
|
1015 |
msgstr "עמוד התוסף"
|
1016 |
|
1017 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1018 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1019 |
msgid "Donate to this plugin"
|
1020 |
msgstr "Donate to this plugin"
|
1021 |
|
1022 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1023 |
msgid "Average Rating"
|
1024 |
msgstr "דירוג ממוצע"
|
1025 |
|
1026 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1027 |
msgid "based on %s"
|
1028 |
msgstr "מבוסס על %s"
|
1029 |
|
1030 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1031 |
msgid "%s rating"
|
1032 |
msgstr "דרוג %s"
|
1033 |
|
1034 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1035 |
msgid "%s ratings"
|
1036 |
msgstr "%s דרוגים"
|
1037 |
|
1038 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1039 |
msgid "%s star"
|
1040 |
msgstr "כוכב %s"
|
1041 |
|
1042 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1043 |
msgid "%s stars"
|
1044 |
msgstr "%s כוכבים"
|
1045 |
|
1046 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1047 |
msgid "Click to see reviews that provided a rating of %s"
|
1048 |
msgstr "Click to see reviews that provided a rating of %s"
|
1049 |
|
1050 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1051 |
msgid "Contributors"
|
1052 |
msgstr "תורמים"
|
1053 |
|
1054 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1055 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1056 |
msgid "Warning"
|
1057 |
msgstr "Warning"
|
1058 |
|
1059 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1060 |
msgid "This plugin has not been tested with your current version of WordPress."
|
1061 |
msgstr "This plugin has not been tested with your current version of WordPress."
|
1062 |
|
1063 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1064 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1065 |
msgstr "This plugin has not been marked as compatible with your version of WordPress."
|
1066 |
|
1067 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1068 |
msgid "Paid add-on must be deployed to Freemius."
|
1069 |
msgstr "Paid add-on must be deployed to Freemius."
|
1070 |
|
1071 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1072 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1073 |
msgstr "Add-on must be deployed to WordPress.org or Freemius."
|
1074 |
|
1075 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1076 |
+
#: templates/account/partials/site.php:295
|
1077 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1078 |
msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1079 |
|
1080 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1081 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1082 |
msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
|
1083 |
|
1084 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1085 |
+
#: templates/account/partials/site.php:296
|
1086 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1087 |
msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1088 |
|
1089 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1090 |
+
#: templates/account/partials/site.php:297
|
1091 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1092 |
msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1093 |
|
1094 |
#. translators: %s: Plan title (e.g. "Professional")
|
1095 |
#: templates/account.php86,
|
1096 |
+
#: templates/account/partials/activate-license-button.php31,
|
1097 |
+
#: templates/account/partials/addon.php:27
|
1098 |
msgid "Activate %s Plan"
|
1099 |
msgstr "הפעל חבילה %s"
|
1100 |
|
1101 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1102 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1103 |
+
#: templates/account/partials/site.php:275
|
1104 |
msgid "Auto renews in %s"
|
1105 |
msgstr "עדכן אוטומטית בעוד %s"
|
1106 |
|
1107 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1108 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1109 |
+
#: templates/account/partials/site.php:277
|
1110 |
msgid "Expires in %s"
|
1111 |
msgstr "פג תוקף בעוד %s"
|
1112 |
|
1113 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1114 |
msgctxt "as synchronize license"
|
1115 |
msgid "Sync License"
|
1116 |
msgstr "סינכרן רישיון"
|
1117 |
|
1118 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1119 |
msgid "Cancel Trial"
|
1120 |
msgstr "ביט"
|
1121 |
|
1122 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1123 |
msgid "Change Plan"
|
1124 |
msgstr "שינוי חבילה"
|
1125 |
|
1126 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1127 |
msgctxt "verb"
|
1128 |
msgid "Upgrade"
|
1129 |
msgstr "שדרג"
|
1130 |
|
1131 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1132 |
+
#: templates/account/partials/site.php:298
|
1133 |
msgctxt "verb"
|
1134 |
msgid "Downgrade"
|
1135 |
msgstr "שנמך"
|
1136 |
|
1137 |
#: templates/account.php99, templates/add-ons.php126,
|
1138 |
#: templates/plugin-info/features.php72,
|
1139 |
+
#: templates/account/partials/addon.php40,
|
1140 |
#: templates/account/partials/site.php:31
|
1141 |
msgid "Free"
|
1142 |
msgstr "חינם"
|
1143 |
|
1144 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1145 |
msgid "Activate"
|
1146 |
msgstr "הפעלה"
|
1147 |
|
1148 |
+
#: templates/account.php101, templates/debug.php361,
|
1149 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1150 |
+
#: templates/account/partials/addon.php:42
|
1151 |
msgctxt "as product pricing plan"
|
1152 |
msgid "Plan"
|
1153 |
msgstr "חבילה"
|
1154 |
|
1155 |
+
#: templates/account.php:154
|
1156 |
msgid "Free Trial"
|
1157 |
msgstr "ניסיון חינם"
|
1158 |
|
1159 |
+
#: templates/account.php:165
|
1160 |
msgid "Account Details"
|
1161 |
msgstr "פרטי חשבון"
|
1162 |
|
1163 |
+
#: templates/account.php:175
|
1164 |
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?"
|
1165 |
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?"
|
1166 |
|
1167 |
+
#: templates/account.php:177
|
1168 |
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?"
|
1169 |
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?"
|
1170 |
|
1171 |
+
#: templates/account.php:180
|
1172 |
msgid "Delete Account"
|
1173 |
msgstr "מחיקת חשבון"
|
1174 |
|
1175 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1176 |
#: templates/account/partials/deactivate-license-button.php:35
|
1177 |
msgid "Deactivate License"
|
1178 |
msgstr "שיחרור רישיון"
|
1179 |
|
1180 |
+
#: templates/account.php:210
|
1181 |
msgid "Are you sure you want to proceed?"
|
1182 |
msgstr "האם את/ה בטוח רוצה להמשיך?"
|
1183 |
|
1184 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1185 |
msgid "Cancel Subscription"
|
1186 |
msgstr "בטל מנוי"
|
1187 |
|
1188 |
+
#: templates/account.php:239
|
1189 |
msgctxt "as synchronize"
|
1190 |
msgid "Sync"
|
1191 |
msgstr "סינכרון"
|
1192 |
|
1193 |
+
#: templates/account.php253, templates/debug.php:477
|
1194 |
msgid "Name"
|
1195 |
msgstr "שם"
|
1196 |
|
1197 |
+
#: templates/account.php259, templates/debug.php:478
|
1198 |
msgid "Email"
|
1199 |
msgstr "דוא\"ל"
|
1200 |
|
1201 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1202 |
msgid "User ID"
|
1203 |
msgstr "מזהה משתמש"
|
1204 |
|
1205 |
+
#: templates/account.php:274
|
1206 |
msgid "Site ID"
|
1207 |
msgstr "מזהה אתר"
|
1208 |
|
1209 |
+
#: templates/account.php:277
|
1210 |
msgid "No ID"
|
1211 |
msgstr "אין מזהה"
|
1212 |
|
1213 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1214 |
+
#: templates/debug.php443, templates/debug.php480,
|
1215 |
#: templates/account/partials/site.php:219
|
1216 |
msgid "Public Key"
|
1217 |
msgstr "מפתח פומבי"
|
1218 |
|
1219 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1220 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1221 |
msgid "Secret Key"
|
1222 |
msgstr "מפתח סודי"
|
1223 |
|
1224 |
+
#: templates/account.php:291
|
1225 |
msgctxt "as secret encryption key missing"
|
1226 |
msgid "No Secret"
|
1227 |
msgstr "אין מפתח סודי"
|
1228 |
|
1229 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1230 |
#: templates/account/partials/site.php:114
|
1231 |
msgid "Trial"
|
1232 |
msgstr "ניסיון"
|
1233 |
|
1234 |
+
#: templates/account.php329, templates/debug.php521,
|
1235 |
#: templates/account/partials/site.php:248
|
1236 |
msgid "License Key"
|
1237 |
msgstr "License Key"
|
1238 |
|
1239 |
+
#: templates/account.php:359
|
1240 |
msgid "not verified"
|
1241 |
msgstr "לא מאומת"
|
1242 |
|
1243 |
+
#: templates/account.php:416
|
1244 |
msgid "Premium version"
|
1245 |
msgstr "גירסת פרימיום"
|
1246 |
|
1247 |
+
#: templates/account.php:418
|
1248 |
msgid "Free version"
|
1249 |
msgstr "גירסה חינאמית"
|
1250 |
|
1251 |
+
#: templates/account.php:430
|
1252 |
msgid "Verify Email"
|
1253 |
msgstr "אמת כתובת דוא\"ל"
|
1254 |
|
1255 |
+
#: templates/account.php:441
|
1256 |
msgid "Download %s Version"
|
1257 |
msgstr "הורד גרסת %s"
|
1258 |
|
1259 |
+
#: templates/account.php455, templates/account.php636,
|
1260 |
#: templates/account/partials/site.php237,
|
1261 |
#: templates/account/partials/site.php:255
|
1262 |
msgctxt "verb"
|
1263 |
msgid "Show"
|
1264 |
msgstr "הצג"
|
1265 |
|
1266 |
+
#: templates/account.php:469
|
1267 |
msgid "What is your %s?"
|
1268 |
msgstr "מה ה%s שלך?"
|
1269 |
|
1270 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1271 |
msgctxt "verb"
|
1272 |
msgid "Edit"
|
1273 |
msgstr "ערוך"
|
1274 |
|
1275 |
+
#: templates/account.php:490
|
1276 |
msgid "Sites"
|
1277 |
msgstr "אתרים"
|
1278 |
|
1279 |
+
#: templates/account.php:501
|
1280 |
msgid "Search by address"
|
1281 |
msgstr "Search by address"
|
1282 |
|
1283 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1284 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1285 |
+
#: templates/debug.php514, templates/debug.php587,
|
1286 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1287 |
msgid "ID"
|
1288 |
msgstr "מזהה"
|
1289 |
|
1290 |
+
#: templates/account.php511, templates/debug.php:357
|
1291 |
msgid "Address"
|
1292 |
msgstr "Address"
|
1293 |
|
1294 |
+
#: templates/account.php:512
|
1295 |
msgid "License"
|
1296 |
msgstr "רישיון"
|
1297 |
|
1298 |
+
#: templates/account.php:513
|
1299 |
msgid "Plan"
|
1300 |
msgstr "חבילה"
|
1301 |
|
1302 |
+
#: templates/account.php:561
|
1303 |
msgctxt "as software license"
|
1304 |
msgid "License"
|
1305 |
msgstr "רישיון"
|
1306 |
|
1307 |
+
#: templates/account.php:630
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1308 |
msgctxt "verb"
|
1309 |
msgid "Hide"
|
1310 |
msgstr "הסתר"
|
1311 |
|
1312 |
+
#: templates/account.php:665
|
1313 |
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?"
|
1314 |
msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1315 |
|
1365 |
msgid "Hey %s,"
|
1366 |
msgstr "היי %s,"
|
1367 |
|
1368 |
+
#: templates/connect.php:152
|
1369 |
msgid "Allow & Continue"
|
1370 |
msgstr "אפשר\\י והמשכ\\י"
|
1371 |
|
1372 |
+
#: templates/connect.php:156
|
1373 |
msgid "Re-send activation email"
|
1374 |
msgstr "שליחה חוזרת של מייל האקטיבציה"
|
1375 |
|
1376 |
+
#: templates/connect.php:160
|
1377 |
msgid "Thanks %s!"
|
1378 |
msgstr "תודה %s!"
|
1379 |
|
1380 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1381 |
msgid "Agree & Activate License"
|
1382 |
msgstr "הסכמה והפעלת רישיון"
|
1383 |
|
1384 |
+
#: templates/connect.php:179
|
1385 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1386 |
msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
|
1387 |
|
1388 |
+
#: templates/connect.php:186
|
1389 |
+
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."
|
1390 |
+
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."
|
1391 |
+
|
1392 |
+
#: templates/connect.php:187
|
1393 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1394 |
msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1395 |
|
1396 |
+
#: templates/connect.php:193
|
1397 |
+
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."
|
1398 |
+
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."
|
1399 |
|
1400 |
+
#: templates/connect.php:194
|
1401 |
+
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."
|
1402 |
+
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."
|
1403 |
+
|
1404 |
+
#: templates/connect.php:228
|
1405 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1406 |
msgstr "We're excited to introduce the Freemius network-level integration."
|
1407 |
|
1408 |
+
#: templates/connect.php:231
|
1409 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1410 |
msgstr "During the update process we detected %d site(s) that are still pending license activation."
|
1411 |
|
1412 |
+
#: templates/connect.php:233
|
1413 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1414 |
msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1415 |
|
1416 |
+
#: templates/connect.php:235
|
1417 |
msgid "%s's paid features"
|
1418 |
msgstr "%s's paid features"
|
1419 |
|
1420 |
+
#: templates/connect.php:240
|
1421 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1422 |
msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1423 |
|
1424 |
+
#: templates/connect.php:242
|
1425 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1426 |
msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1427 |
|
1428 |
+
#: templates/connect.php251, templates/forms/license-activation.php:46
|
1429 |
msgid "License key"
|
1430 |
msgstr "מפתח רישיון"
|
1431 |
|
1432 |
+
#: templates/connect.php254, templates/forms/license-activation.php:19
|
1433 |
msgid "Can't find your license key?"
|
1434 |
msgstr "האם אינך מוצא את מפתח הרישיון?"
|
1435 |
|
1436 |
+
#: templates/connect.php302, templates/connect.php617,
|
1437 |
#: templates/forms/deactivation/retry-skip.php:20
|
1438 |
msgctxt "verb"
|
1439 |
msgid "Skip"
|
1440 |
msgstr "דלג"
|
1441 |
|
1442 |
+
#: templates/connect.php:305
|
1443 |
msgid "Delegate to Site Admins"
|
1444 |
msgstr "Delegate to Site Admins"
|
1445 |
|
1446 |
+
#: templates/connect.php:305
|
1447 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1448 |
msgstr "If you click it, this decision will be delegated to the sites administrators."
|
1449 |
|
1450 |
+
#: templates/connect.php:333
|
1451 |
msgid "Your Profile Overview"
|
1452 |
msgstr "פרטים כלליים על הפרופיל"
|
1453 |
|
1454 |
+
#: templates/connect.php:334
|
1455 |
msgid "Name and email address"
|
1456 |
msgstr "שם וכתובת דו\"אל"
|
1457 |
|
1458 |
+
#: templates/connect.php:339
|
1459 |
msgid "Your Site Overview"
|
1460 |
msgstr "פרטים כלליים על האתר"
|
1461 |
|
1462 |
+
#: templates/connect.php:340
|
1463 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1464 |
msgstr "כתובת אתר, גרסת וורדפרס, פרטי PHP, תוספים ותבניות"
|
1465 |
|
1466 |
+
#: templates/connect.php:345
|
1467 |
msgid "Admin Notices"
|
1468 |
msgstr "התראות מנהל"
|
1469 |
|
1470 |
+
#: templates/connect.php346, templates/connect.php:362
|
1471 |
msgid "Updates, announcements, marketing, no spam"
|
1472 |
msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל"
|
1473 |
|
1474 |
+
#: templates/connect.php:351
|
1475 |
msgid "Current %s Events"
|
1476 |
msgstr "Current %s Events"
|
1477 |
|
1478 |
+
#: templates/connect.php:352
|
1479 |
msgid "Activation, deactivation and uninstall"
|
1480 |
msgstr "הפעלה, כיבוי והסרה"
|
1481 |
|
1482 |
+
#: templates/connect.php:361
|
1483 |
msgid "Newsletter"
|
1484 |
msgstr "ניוסלטר"
|
1485 |
|
1486 |
+
#: templates/connect.php378, templates/forms/license-activation.php:38
|
1487 |
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."
|
1488 |
msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1489 |
|
1490 |
+
#: templates/connect.php:383
|
1491 |
msgid "What permissions are being granted?"
|
1492 |
msgstr "מהן ההרשאות המוענקות?"
|
1493 |
|
1494 |
+
#: templates/connect.php:404
|
1495 |
msgid "Don't have a license key?"
|
1496 |
msgstr "האם אין ברשותך מפתח רישיון?"
|
1497 |
|
1498 |
+
#: templates/connect.php:405
|
1499 |
msgid "Activate Free Version"
|
1500 |
msgstr "הפעלת גירסה חינאמית"
|
1501 |
|
1502 |
+
#: templates/connect.php:407
|
1503 |
msgid "Have a license key?"
|
1504 |
msgstr "האם ברשותך רישיון?"
|
1505 |
|
1506 |
+
#: templates/connect.php:415
|
1507 |
msgid "Privacy Policy"
|
1508 |
msgstr "מדיניות פרטיות"
|
1509 |
|
1510 |
+
#: templates/connect.php:417
|
1511 |
msgid "Terms of Service"
|
1512 |
msgstr "תנאי השירות"
|
1513 |
|
1514 |
+
#: templates/connect.php:750
|
1515 |
msgctxt "as in the process of sending an email"
|
1516 |
msgid "Sending email"
|
1517 |
msgstr "שולח דוא\"ל"
|
1518 |
|
1519 |
+
#: templates/connect.php:751
|
1520 |
msgctxt "as activating plugin"
|
1521 |
msgid "Activating"
|
1522 |
msgstr "מפעיל"
|
1544 |
msgid "Debugging"
|
1545 |
msgstr "דיבוג"
|
1546 |
|
1547 |
+
#: templates/debug.php54, templates/debug.php238, templates/debug.php364,
|
1548 |
+
#: templates/debug.php:482
|
1549 |
msgid "Actions"
|
1550 |
msgstr "פעולות"
|
1551 |
|
1610 |
msgid "Themes"
|
1611 |
msgstr "תבניות"
|
1612 |
|
1613 |
+
#: templates/debug.php227, templates/debug.php359, templates/debug.php441,
|
1614 |
#: templates/debug/scheduled-crons.php:80
|
1615 |
msgid "Slug"
|
1616 |
msgstr "מזהה כתובת"
|
1617 |
|
1618 |
+
#: templates/debug.php229, templates/debug.php:440
|
1619 |
msgid "Title"
|
1620 |
msgstr "כותרת"
|
1621 |
|
1636 |
msgid "Network User"
|
1637 |
msgstr "Network User"
|
1638 |
|
1639 |
+
#: templates/debug.php:273
|
1640 |
msgctxt "as connection was successful"
|
1641 |
msgid "Connected"
|
1642 |
msgstr "מחובר"
|
1643 |
|
1644 |
+
#: templates/debug.php:274
|
1645 |
msgctxt "as connection blocked"
|
1646 |
msgid "Blocked"
|
1647 |
msgstr "חסום"
|
1648 |
|
1649 |
+
#: templates/debug.php:310
|
1650 |
msgid "Simulate Trial"
|
1651 |
msgstr "Simulate Trial"
|
1652 |
|
1653 |
+
#: templates/debug.php:322
|
1654 |
msgid "Simulate Network Upgrade"
|
1655 |
msgstr "Simulate Network Upgrade"
|
1656 |
|
1657 |
+
#: templates/debug.php:348
|
1658 |
msgid "%s Installs"
|
1659 |
msgstr "%s התקנות"
|
1660 |
|
1661 |
+
#: templates/debug.php:350
|
1662 |
msgctxt "like websites"
|
1663 |
msgid "Sites"
|
1664 |
msgstr "אתרים"
|
1665 |
|
1666 |
+
#: templates/debug.php356, templates/account/partials/site.php:148
|
1667 |
msgid "Blog ID"
|
1668 |
msgstr "Blog ID"
|
1669 |
|
1670 |
+
#: templates/debug.php421, templates/debug.php499,
|
1671 |
+
#: templates/account/partials/addon.php:334
|
1672 |
+
msgctxt "verb"
|
1673 |
+
msgid "Delete"
|
1674 |
+
msgstr "מחק"
|
1675 |
+
|
1676 |
+
#: templates/debug.php:435
|
1677 |
msgid "Add Ons of module %s"
|
1678 |
msgstr "Add Ons of module %s"
|
1679 |
|
1680 |
+
#: templates/debug.php:472
|
1681 |
msgid "Users"
|
1682 |
msgstr "משתמשים"
|
1683 |
|
1684 |
+
#: templates/debug.php:479
|
1685 |
msgid "Verified"
|
1686 |
msgstr "מאומת"
|
1687 |
|
1688 |
+
#: templates/debug.php:510
|
1689 |
msgid "%s Licenses"
|
1690 |
msgstr "%s Licenses"
|
1691 |
|
1692 |
+
#: templates/debug.php:515
|
1693 |
msgid "Plugin ID"
|
1694 |
msgstr "Plugin ID"
|
1695 |
|
1696 |
+
#: templates/debug.php:517
|
1697 |
msgid "Plan ID"
|
1698 |
msgstr "Plan ID"
|
1699 |
|
1700 |
+
#: templates/debug.php:518
|
1701 |
msgid "Quota"
|
1702 |
msgstr "Quota"
|
1703 |
|
1704 |
+
#: templates/debug.php:519
|
1705 |
msgid "Activated"
|
1706 |
msgstr "Activated"
|
1707 |
|
1708 |
+
#: templates/debug.php:520
|
1709 |
msgid "Blocking"
|
1710 |
msgstr "Blocking"
|
1711 |
|
1712 |
+
#: templates/debug.php:522
|
1713 |
msgctxt "as expiration date"
|
1714 |
msgid "Expiration"
|
1715 |
msgstr "תפוגה"
|
1716 |
|
1717 |
+
#: templates/debug.php:545
|
1718 |
msgid "Debug Log"
|
1719 |
msgstr "Debug Log"
|
1720 |
|
1721 |
+
#: templates/debug.php:549
|
1722 |
msgid "All Types"
|
1723 |
msgstr "כל הסוגים"
|
1724 |
|
1725 |
+
#: templates/debug.php:556
|
1726 |
msgid "All Requests"
|
1727 |
msgstr "כל הבקשות"
|
1728 |
|
1729 |
+
#: templates/debug.php561, templates/debug.php590,
|
1730 |
#: templates/debug/logger.php:25
|
1731 |
msgid "File"
|
1732 |
msgstr "קובץ"
|
1733 |
|
1734 |
+
#: templates/debug.php562, templates/debug.php588,
|
1735 |
#: templates/debug/logger.php:23
|
1736 |
msgid "Function"
|
1737 |
msgstr "פונקציה"
|
1738 |
|
1739 |
+
#: templates/debug.php:563
|
1740 |
msgid "Process ID"
|
1741 |
msgstr "Process ID"
|
1742 |
|
1743 |
+
#: templates/debug.php:564
|
1744 |
msgid "Logger"
|
1745 |
msgstr "Logger"
|
1746 |
|
1747 |
+
#: templates/debug.php565, templates/debug.php589,
|
1748 |
#: templates/debug/logger.php:24
|
1749 |
msgid "Message"
|
1750 |
msgstr "הודעה"
|
1751 |
|
1752 |
+
#: templates/debug.php:567
|
1753 |
msgid "Filter"
|
1754 |
msgstr "פילטר"
|
1755 |
|
1756 |
+
#: templates/debug.php:575
|
1757 |
msgid "Download"
|
1758 |
msgstr "הורדה"
|
1759 |
|
1760 |
+
#: templates/debug.php586, templates/debug/logger.php:22
|
1761 |
msgid "Type"
|
1762 |
msgstr "סוג"
|
1763 |
|
1764 |
+
#: templates/debug.php591, templates/debug/logger.php:26
|
1765 |
msgid "Timestamp"
|
1766 |
msgstr "Timestamp"
|
1767 |
|
2112 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2113 |
msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2114 |
|
2115 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2116 |
+
msgid "There is a new version of %s available."
|
2117 |
+
msgstr "There is a new version of %s available."
|
2118 |
+
|
2119 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2120 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2121 |
+
msgstr " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2122 |
+
|
2123 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2124 |
+
msgid "New Version Available"
|
2125 |
+
msgstr "New Version Available"
|
2126 |
+
|
2127 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2128 |
+
msgid "Renew license"
|
2129 |
+
msgstr "Renew license"
|
2130 |
+
|
2131 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2132 |
+
msgctxt "close a window"
|
2133 |
+
msgid "Dismiss"
|
2134 |
+
msgstr "סגירה"
|
2135 |
+
|
2136 |
#: templates/forms/resend-key.php:21
|
2137 |
msgid "Send License Key"
|
2138 |
msgstr "שליחת מפתח רישיון"
|
2206 |
msgid "Last license"
|
2207 |
msgstr "רישיון אחרון"
|
2208 |
|
2209 |
+
#: templates/account/partials/addon.php:111
|
2210 |
+
msgid "Cancelled"
|
2211 |
+
msgstr "בוטל"
|
2212 |
+
|
2213 |
+
#: templates/account/partials/addon.php:116
|
2214 |
+
msgid "Expired"
|
2215 |
+
msgstr "פג תוקף"
|
2216 |
+
|
2217 |
+
#: templates/account/partials/addon.php:121
|
2218 |
+
msgid "No expiration"
|
2219 |
+
msgstr "ללא תפוגה"
|
2220 |
+
|
2221 |
+
#: templates/account/partials/addon.php259,
|
2222 |
+
#: templates/account/partials/addon.php:312
|
2223 |
+
msgid "Activate this add-on"
|
2224 |
+
msgstr "הפעל את ההרחבה"
|
2225 |
+
|
2226 |
#: templates/account/partials/site.php:181
|
2227 |
msgid "Owner Name"
|
2228 |
msgstr "Owner Name"
|
2275 |
msgid "switching"
|
2276 |
msgstr "switching"
|
2277 |
|
2278 |
+
#: templates/forms/deactivation/form.php:269
|
2279 |
msgid "Submit & %s"
|
2280 |
msgstr "Submit & %s"
|
2281 |
|
2282 |
+
#: templates/forms/deactivation/form.php:290
|
2283 |
msgid "Kindly tell us the reason so we can improve."
|
2284 |
msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
|
2285 |
|
2286 |
+
#: templates/forms/deactivation/form.php:411
|
2287 |
msgid "Yes - %s"
|
2288 |
msgstr "Yes - %s"
|
2289 |
|
2290 |
+
#: templates/forms/deactivation/form.php:418
|
2291 |
msgid "Skip & %s"
|
2292 |
msgstr "דלג ו%s"
|
2293 |
|
includes/pum-sdk/freemius/languages/freemius-it_IT.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-it_IT.po
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
# Copyright (C) 2018 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
-
# Pelly Benassi <plasmax@gmail.com>, 2016
|
5 |
-
# Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-
|
6 |
-
# Pelly Benassi <plasmax@gmail.com>, 2016-2017
|
7 |
# Vova Feldman <vova@freemius.com>, 2015-2016
|
8 |
msgid ""
|
9 |
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-
|
14 |
"Last-Translator: Daniele Scasciafratte Mte90 <mte90net@gmail.com>\n"
|
15 |
"Language: it_IT\n"
|
16 |
"Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
|
@@ -24,1216 +24,1296 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
-
#: includes/class-freemius.php:
|
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:
|
32 |
msgid "Error"
|
33 |
msgstr "Errore"
|
34 |
|
35 |
-
#: includes/class-freemius.php:
|
36 |
msgid "I found a better %s"
|
37 |
msgstr "Ho trovato un migliore %s"
|
38 |
|
39 |
-
#: includes/class-freemius.php:
|
40 |
msgid "What's the %s's name?"
|
41 |
msgstr "Qual è il nome di %s?"
|
42 |
|
43 |
-
#: includes/class-freemius.php:
|
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:
|
48 |
msgid "Deactivation"
|
49 |
msgstr "Disattivazione"
|
50 |
|
51 |
-
#: includes/class-freemius.php:
|
52 |
msgid "Theme Switch"
|
53 |
msgstr "Cambio tema"
|
54 |
|
55 |
-
#: includes/class-freemius.
|
56 |
msgid "Other"
|
57 |
msgstr "Altro"
|
58 |
|
59 |
-
#: includes/class-freemius.php:
|
60 |
msgid "I no longer need the %s"
|
61 |
msgstr "Non ho più bisogno di %s"
|
62 |
|
63 |
-
#: includes/class-freemius.php:
|
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:
|
68 |
msgid "The %s broke my site"
|
69 |
msgstr "%s ha rotto il mio sito"
|
70 |
|
71 |
-
#: includes/class-freemius.php:
|
72 |
msgid "The %s suddenly stopped working"
|
73 |
msgstr "%s ha improvvisamente smesso di funzionare"
|
74 |
|
75 |
-
#: includes/class-freemius.php:
|
76 |
msgid "I can't pay for it anymore"
|
77 |
msgstr "Non posso piú pagarlo"
|
78 |
|
79 |
-
#: includes/class-freemius.php:
|
80 |
msgid "What price would you feel comfortable paying?"
|
81 |
msgstr "Che prezzo ritieni opportuno pagare?"
|
82 |
|
83 |
-
#: includes/class-freemius.php:
|
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:
|
88 |
msgid "The %s didn't work"
|
89 |
msgstr "%s non funziona"
|
90 |
|
91 |
-
#: includes/class-freemius.php:
|
92 |
msgid "I couldn't understand how to make it work"
|
93 |
msgstr "Non capisco come farlo funzionare"
|
94 |
|
95 |
-
#: includes/class-freemius.php:
|
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:
|
100 |
msgid "What feature?"
|
101 |
msgstr "Quale funzionalitá?"
|
102 |
|
103 |
-
#: includes/class-freemius.php:
|
104 |
msgid "The %s is not working"
|
105 |
msgstr "%s non funziona"
|
106 |
|
107 |
-
#: includes/class-freemius.php:
|
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:
|
112 |
msgid "It's not what I was looking for"
|
113 |
msgstr "Non é quello che stavo cercando"
|
114 |
|
115 |
-
#: includes/class-freemius.php:
|
116 |
msgid "What you've been looking for?"
|
117 |
msgstr "Che cosa stai cercando?"
|
118 |
|
119 |
-
#: includes/class-freemius.php:
|
120 |
msgid "The %s didn't work as expected"
|
121 |
msgstr "%s non ha funzionato come mi aspettavo"
|
122 |
|
123 |
-
#: includes/class-freemius.php:
|
124 |
msgid "What did you expect?"
|
125 |
msgstr "Che cosa ti aspettavi?"
|
126 |
|
127 |
-
#: includes/class-freemius.
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr "Debug Freemius"
|
130 |
|
131 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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 "
|
142 |
|
143 |
-
#: includes/class-freemius.php:
|
144 |
msgid "Yes - do your thing"
|
145 |
msgstr "Sì - fai pure"
|
146 |
|
147 |
-
#: includes/class-freemius.php:
|
148 |
msgid "No - just deactivate"
|
149 |
msgstr "No - disattiva e basta"
|
150 |
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
-
#: includes/class-freemius.
|
156 |
-
#: includes/class-freemius.
|
157 |
-
#: includes/class-freemius.
|
158 |
msgctxt "exclamation"
|
159 |
msgid "Oops"
|
160 |
msgstr "Ops"
|
161 |
|
162 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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.
|
177 |
-
#: includes/class-freemius.php:
|
178 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
179 |
-
msgstr "
|
180 |
|
181 |
-
#: includes/class-freemius.php:
|
182 |
msgid "Premium %s version was successfully activated."
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#: includes/class-freemius.
|
186 |
msgctxt ""
|
187 |
msgid "W00t"
|
188 |
msgstr "Forte"
|
189 |
|
190 |
-
#: includes/class-freemius.php:
|
191 |
msgid "You have a %s license."
|
192 |
msgstr "Hai la licenza %s."
|
193 |
|
194 |
-
#: includes/class-freemius.
|
195 |
-
#: includes/class-freemius.
|
196 |
-
#: includes/class-freemius.
|
197 |
-
#: includes/class-freemius.php:
|
198 |
msgctxt "interjection expressing joy or exuberance"
|
199 |
msgid "Yee-haw"
|
200 |
msgstr "Evvai"
|
201 |
|
202 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
211 |
-
#: templates/
|
212 |
msgid "More information about %s"
|
213 |
msgstr "Ulteriori informazioni su %s"
|
214 |
|
215 |
-
#: includes/class-freemius.php:
|
216 |
msgid "Purchase License"
|
217 |
msgstr "Acquista licenza"
|
218 |
|
219 |
-
#: includes/class-freemius.
|
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:
|
224 |
msgid "start the trial"
|
225 |
msgstr "Inizia il periodo di prova gratuito"
|
226 |
|
227 |
-
#: includes/class-freemius.
|
228 |
msgid "complete the install"
|
229 |
msgstr "completa l'installazione"
|
230 |
|
231 |
-
#: includes/class-freemius.php:
|
232 |
msgid "You are just one step away - %s"
|
233 |
msgstr "Sei a un passo dalla fine - %s"
|
234 |
|
235 |
-
#: includes/class-freemius.php:
|
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:
|
241 |
msgid "We made a few tweaks to the %s, %s"
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: includes/class-freemius.php:
|
245 |
msgid "Opt in to make \"%s\" Better!"
|
246 |
-
msgstr "
|
247 |
|
248 |
-
#: includes/class-freemius.php:
|
249 |
msgid "The upgrade of %s was successfully completed."
|
250 |
msgstr "L'aggiornamento di %s è stato completato con successo."
|
251 |
|
252 |
-
#: includes/class-freemius.
|
253 |
-
#: includes/class-fs-plugin-updater.
|
254 |
-
#: includes/class-fs-plugin-updater.
|
255 |
msgid "Add-On"
|
256 |
msgstr "Add-on"
|
257 |
|
258 |
-
#: includes/class-freemius.
|
259 |
-
#: templates/debug.php:
|
260 |
msgid "Plugin"
|
261 |
msgstr "Plugin"
|
262 |
|
263 |
-
#: includes/class-freemius.
|
264 |
-
#: templates/debug.
|
265 |
msgid "Theme"
|
266 |
msgstr "Tema"
|
267 |
|
268 |
-
#: includes/class-freemius.php:
|
269 |
msgid "invalid_site_details_collection"
|
270 |
msgstr "invalid_site_details_collection"
|
271 |
|
272 |
-
#: includes/class-freemius.php:
|
273 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
274 |
msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
|
275 |
|
276 |
-
#: includes/class-freemius.php:
|
277 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
278 |
msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
|
279 |
|
280 |
-
#: includes/class-freemius.php:
|
281 |
msgid "Account is pending activation."
|
282 |
msgstr "Account in attesa di attivazione."
|
283 |
|
284 |
-
#: includes/class-freemius.php:
|
285 |
msgid "%s activation was successfully completed."
|
286 |
msgstr "%s è stato attivato con successo."
|
287 |
|
288 |
-
#: includes/class-freemius.php:
|
289 |
msgid "Your account was successfully activated with the %s plan."
|
290 |
msgstr "Il tuo account è stato attivato correttamente con il piano %s."
|
291 |
|
292 |
-
#: includes/class-freemius.
|
293 |
msgid "Your trial has been successfully started."
|
294 |
msgstr "La versione di prova è stata avviata correttamente."
|
295 |
|
296 |
-
#: includes/class-freemius.
|
297 |
-
#: includes/class-freemius.php:
|
298 |
msgid "Couldn't activate %s."
|
299 |
msgstr "Non é stato possibile attivare %s."
|
300 |
|
301 |
-
#: includes/class-freemius.
|
302 |
-
#: includes/class-freemius.php:
|
303 |
msgid "Please contact us with the following message:"
|
304 |
msgstr "Contattaci con il seguente messaggio:"
|
305 |
|
306 |
-
#: includes/class-freemius.
|
307 |
msgid "Upgrade"
|
308 |
msgstr "Aggiornamento"
|
309 |
|
310 |
-
#: includes/class-freemius.php:
|
311 |
msgid "Start Trial"
|
312 |
msgstr "Inizia il periodo di prova gratuito"
|
313 |
|
314 |
-
#: includes/class-freemius.php:
|
315 |
msgid "Pricing"
|
316 |
msgstr "Prezzi"
|
317 |
|
318 |
-
#: includes/class-freemius.
|
319 |
msgid "Affiliation"
|
320 |
msgstr "Affiliazione"
|
321 |
|
322 |
-
#: includes/class-freemius.
|
323 |
-
#: templates/account.
|
324 |
msgid "Account"
|
325 |
msgstr "Account"
|
326 |
|
327 |
-
#: includes/class-freemius.
|
328 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
329 |
msgid "Contact Us"
|
330 |
msgstr "Contattaci"
|
331 |
|
332 |
-
#: includes/class-freemius.
|
333 |
-
#: includes/class-freemius.
|
|
|
334 |
msgid "Add-Ons"
|
335 |
msgstr "Addon"
|
336 |
|
337 |
-
#: includes/class-freemius.
|
338 |
msgctxt "noun"
|
339 |
msgid "Pricing"
|
340 |
msgstr "Prezzi"
|
341 |
|
342 |
-
#: includes/class-freemius.
|
343 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
344 |
msgid "Support Forum"
|
345 |
msgstr "Forum di supporto"
|
346 |
|
347 |
-
#: includes/class-freemius.php:
|
348 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
349 |
msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
|
350 |
|
351 |
-
#: includes/class-freemius.php:
|
352 |
msgctxt "a positive response"
|
353 |
msgid "Right on"
|
354 |
msgstr "Sì"
|
355 |
|
356 |
-
#: includes/class-freemius.php:
|
357 |
msgid "Your %s Add-on plan was successfully upgraded."
|
358 |
msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
|
359 |
|
360 |
-
#: includes/class-freemius.php:
|
361 |
msgid "%s Add-on was successfully purchased."
|
362 |
msgstr "L' add-on %s è stato acquistato con successo."
|
363 |
|
364 |
-
#: includes/class-freemius.php:
|
365 |
msgid "Download the latest version"
|
366 |
msgstr "Scarica l'ultima versione"
|
367 |
|
368 |
-
#: includes/class-freemius.php:
|
369 |
msgctxt "%1s - plugin title, %2s - API domain"
|
370 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
371 |
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."
|
372 |
|
373 |
-
#: includes/class-freemius.
|
374 |
-
#: includes/class-freemius.php:
|
375 |
msgid "Error received from the server:"
|
376 |
msgstr "Errore ricevuto dal server:"
|
377 |
|
378 |
-
#: includes/class-freemius.php:
|
379 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
380 |
msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
|
381 |
|
382 |
-
#: includes/class-freemius.
|
383 |
-
#: includes/class-freemius.php:
|
384 |
msgctxt ""
|
385 |
msgid "Hmm"
|
386 |
msgstr "Uhm"
|
387 |
|
388 |
-
#: includes/class-freemius.php:
|
389 |
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."
|
390 |
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."
|
391 |
|
392 |
-
#: includes/class-freemius.
|
393 |
-
#: templates/add-ons.php:
|
394 |
msgctxt "trial period"
|
395 |
msgid "Trial"
|
396 |
msgstr "Prova gratuita"
|
397 |
|
398 |
-
#: includes/class-freemius.php:
|
399 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
400 |
msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
|
401 |
|
402 |
-
#: includes/class-freemius.
|
403 |
msgid "Please contact us here"
|
404 |
msgstr "Contattaci qui"
|
405 |
|
406 |
-
#: includes/class-freemius.php:
|
407 |
msgid "Your plan was successfully upgraded."
|
408 |
msgstr "Il piano è stato aggiornato con successo."
|
409 |
|
410 |
-
#: includes/class-freemius.php:
|
411 |
msgid "Your plan was successfully changed to %s."
|
412 |
msgstr "Il piano è stato cambiato con successo a %s."
|
413 |
|
414 |
-
#: includes/class-freemius.php:
|
415 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
416 |
-
msgstr "
|
|
|
|
|
|
|
|
|
417 |
|
418 |
-
#: includes/class-freemius.php:
|
419 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
420 |
msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
|
421 |
|
422 |
-
#: includes/class-freemius.php:
|
423 |
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."
|
424 |
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."
|
425 |
|
426 |
-
#: includes/class-freemius.php:
|
427 |
-
msgid "Your trial has expired. You can still continue using all our free features."
|
428 |
-
msgstr "La versione di prova è scaduta.
|
|
|
|
|
|
|
|
|
429 |
|
430 |
-
#: includes/class-freemius.php:
|
431 |
msgid "It looks like the license could not be activated."
|
432 |
msgstr "Sembra che la licenza non possa essere attivata."
|
433 |
|
434 |
-
#: includes/class-freemius.php:
|
435 |
msgid "Your license was successfully activated."
|
436 |
msgstr "La tua licenza è stata attivata correttamente."
|
437 |
|
438 |
-
#: includes/class-freemius.php:
|
439 |
msgid "It looks like your site currently doesn't have an active license."
|
440 |
msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
|
441 |
|
442 |
-
#: includes/class-freemius.php:
|
443 |
msgid "It looks like the license deactivation failed."
|
444 |
msgstr "Sembra che la disattivazione della licenza non sia riuscita."
|
445 |
|
446 |
-
#: includes/class-freemius.php:
|
447 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
448 |
msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
|
449 |
|
450 |
-
#: includes/class-freemius.php:
|
451 |
msgid "O.K"
|
452 |
msgstr "OK"
|
453 |
|
454 |
-
#: includes/class-freemius.php:
|
455 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
456 |
msgstr "Il tuo piano è stato declassato con successo. La licenza del piano %s scadrà in %s."
|
457 |
|
458 |
-
#: includes/class-freemius.php:
|
459 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
460 |
msgstr "Stiamo avendo qualche problema temporaneo con il downgrade del piano. Riprova tra qualche minuto."
|
461 |
|
462 |
-
#: includes/class-freemius.php:
|
463 |
msgid "You are already running the %s in a trial mode."
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: includes/class-freemius.php:
|
467 |
msgid "You already utilized a trial before."
|
468 |
msgstr "Hai già utilizzato una prova gratuita in passato."
|
469 |
|
470 |
-
#: includes/class-freemius.php:
|
471 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
472 |
msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
|
473 |
|
474 |
-
#: includes/class-freemius.php:
|
475 |
msgid "Plan %s does not support a trial period."
|
476 |
msgstr "Il piano %s non supporta il periodo di prova."
|
477 |
|
478 |
-
#: includes/class-freemius.php:
|
479 |
msgid "None of the %s's plans supports a trial period."
|
480 |
-
msgstr "
|
481 |
|
482 |
-
#: includes/class-freemius.php:
|
483 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
484 |
msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
|
485 |
|
486 |
-
#: includes/class-freemius.php:
|
487 |
msgid "Your %s free trial was successfully cancelled."
|
488 |
msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
|
489 |
|
490 |
-
#: includes/class-freemius.php:
|
491 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
492 |
msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
|
493 |
|
494 |
-
#: includes/class-freemius.php:
|
495 |
msgid "Version %s was released."
|
496 |
msgstr "La versione %s é stata rilasciata."
|
497 |
|
498 |
-
#: includes/class-freemius.php:
|
499 |
msgid "Please download %s."
|
500 |
msgstr "Scarica %s."
|
501 |
|
502 |
-
#: includes/class-freemius.php:
|
503 |
msgid "the latest %s version here"
|
504 |
msgstr "l'ultima versione %s é quì"
|
505 |
|
506 |
-
#: includes/class-freemius.php:
|
507 |
msgid "New"
|
508 |
msgstr "Nuovo"
|
509 |
|
510 |
-
#: includes/class-freemius.php:
|
511 |
msgid "Seems like you got the latest release."
|
512 |
msgstr "Sembra che tu abbia la versione più recente."
|
513 |
|
514 |
-
#: includes/class-freemius.php:
|
515 |
msgid "You are all good!"
|
516 |
msgstr "Sei fantastico!"
|
517 |
|
518 |
-
#: includes/class-freemius.php:
|
519 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
520 |
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."
|
521 |
|
522 |
-
#: includes/class-freemius.php:
|
523 |
msgid "Site successfully opted in."
|
524 |
-
msgstr "
|
525 |
|
526 |
-
#: includes/class-freemius.
|
527 |
msgid "Awesome"
|
528 |
msgstr "Fantastico"
|
529 |
|
530 |
-
#: includes/class-freemius.
|
531 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
532 |
msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s"
|
533 |
|
534 |
-
#: includes/class-freemius.php:
|
535 |
msgid "Thank you!"
|
536 |
-
msgstr "
|
537 |
|
538 |
-
#: includes/class-freemius.php:
|
539 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
540 |
-
msgstr "
|
541 |
|
542 |
-
#: includes/class-freemius.php:
|
543 |
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."
|
544 |
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."
|
545 |
|
546 |
-
#: includes/class-freemius.php:
|
547 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
548 |
msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
|
549 |
|
550 |
-
#: includes/class-freemius.php:
|
551 |
msgid "%s is the new owner of the account."
|
552 |
msgstr "%s è il nuovo proprietario dell'account."
|
553 |
|
554 |
-
#: includes/class-freemius.php:
|
555 |
msgctxt "as congratulations"
|
556 |
msgid "Congrats"
|
557 |
msgstr "Congratulazioni"
|
558 |
|
559 |
-
#: includes/class-freemius.php:
|
560 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
561 |
msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
|
562 |
|
563 |
-
#: includes/class-freemius.php:
|
564 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
565 |
-
msgstr "
|
566 |
|
567 |
-
#: includes/class-freemius.php:
|
568 |
msgid "Change Ownership"
|
569 |
msgstr "Cambia Proprietario"
|
570 |
|
571 |
-
#: includes/class-freemius.php:
|
572 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
573 |
msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
|
574 |
|
575 |
-
#: includes/class-freemius.php:
|
576 |
msgid "Please provide your full name."
|
577 |
msgstr "Per favore inserisci il tuo nome completo."
|
578 |
|
579 |
-
#: includes/class-freemius.php:
|
580 |
msgid "Your name was successfully updated."
|
581 |
msgstr "Il tuo nome è stato aggiornato correttamente."
|
582 |
|
583 |
-
#: includes/class-freemius.php:
|
584 |
msgid "You have successfully updated your %s."
|
585 |
msgstr "Hai aggiornato con successo il tuo %s."
|
586 |
|
587 |
-
#: includes/class-freemius.php:
|
588 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
589 |
msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
|
590 |
|
591 |
-
#: includes/class-freemius.php:
|
592 |
msgctxt "advance notice of something that will need attention."
|
593 |
msgid "Heads up"
|
594 |
msgstr "Attenzione"
|
595 |
|
596 |
-
#: includes/class-freemius.php:
|
597 |
msgctxt "exclamation"
|
598 |
msgid "Hey"
|
599 |
msgstr "Hey"
|
600 |
|
601 |
-
#: includes/class-freemius.php:
|
602 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
603 |
msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
|
604 |
|
605 |
-
#: includes/class-freemius.php:
|
606 |
msgid "No commitment for %s days - cancel anytime!"
|
607 |
msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
|
608 |
|
609 |
-
#: includes/class-freemius.php:
|
610 |
msgid "No credit card required"
|
611 |
msgstr "Nessuna carta di credito richiesta"
|
612 |
|
613 |
-
#: includes/class-freemius.
|
614 |
msgctxt "call to action"
|
615 |
msgid "Start free trial"
|
616 |
msgstr "Inizia il periodo di prova gratuito"
|
617 |
|
618 |
-
#: includes/class-freemius.php:
|
619 |
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!"
|
620 |
-
msgstr "
|
621 |
|
622 |
-
#: includes/class-freemius.php:
|
623 |
msgid "Learn more"
|
624 |
msgstr "Scopri altro"
|
625 |
|
626 |
-
#: includes/class-freemius.
|
627 |
-
#: templates/account.
|
628 |
-
#: templates/connect.
|
|
|
629 |
msgid "Activate License"
|
630 |
msgstr "Attiva licenza"
|
631 |
|
632 |
-
#: includes/class-freemius.
|
633 |
-
#: templates/account.
|
634 |
msgid "Change License"
|
635 |
msgstr "Cambia licenza"
|
636 |
|
637 |
-
#: includes/class-freemius.
|
638 |
msgid "Opt Out"
|
639 |
msgstr "Cancella iscrizione"
|
640 |
|
641 |
-
#: includes/class-freemius.
|
642 |
#: templates/account/partials/site.php43,
|
643 |
#: templates/account/partials/site.php:161
|
644 |
msgid "Opt In"
|
645 |
msgstr "Iscriviti"
|
646 |
|
647 |
-
#: includes/class-freemius.php:
|
648 |
msgid "Please follow these steps to complete the upgrade"
|
649 |
msgstr "Segui i passi seguenti per completare l'aggiornamento"
|
650 |
|
651 |
-
#: includes/class-freemius.php:
|
652 |
msgid "Download the latest %s version"
|
653 |
msgstr "Scarica l'ultima versione di %s"
|
654 |
|
655 |
-
#: includes/class-freemius.php:
|
656 |
msgid "Upload and activate the downloaded version"
|
657 |
msgstr "Carica e attiva la versione scaricata"
|
658 |
|
659 |
-
#: includes/class-freemius.php:
|
660 |
msgid "How to upload and activate?"
|
661 |
msgstr "Come faccio a caricare ed attivare?"
|
662 |
|
663 |
-
#: includes/class-freemius.php:
|
664 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
665 |
-
msgstr "%
|
666 |
|
667 |
-
#: includes/class-freemius.php:
|
668 |
msgid "Auto installation only works for opted-in users."
|
669 |
msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
|
670 |
|
671 |
-
#: includes/class-freemius.
|
672 |
-
#: includes/class-fs-plugin-updater.
|
673 |
-
#: includes/class-fs-plugin-updater.php:
|
674 |
msgid "Invalid module ID."
|
675 |
msgstr "ID modulo non valida."
|
676 |
|
677 |
-
#: includes/class-freemius.
|
678 |
msgid "Premium version already active."
|
679 |
msgstr "Versione Premium già attiva."
|
680 |
|
681 |
-
#: includes/class-freemius.php:
|
682 |
msgid "You do not have a valid license to access the premium version."
|
683 |
msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
|
684 |
|
685 |
-
#: includes/class-freemius.php:
|
686 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
687 |
msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
|
688 |
|
689 |
-
#: includes/class-freemius.
|
690 |
msgid "Premium add-on version already installed."
|
691 |
msgstr "Versione Premium dell'add-on già installata."
|
692 |
|
693 |
-
#: includes/class-freemius.php:
|
694 |
msgid "View paid features"
|
695 |
msgstr "Vedi funzionalità a pagamento"
|
696 |
|
697 |
-
#: includes/class-
|
698 |
-
msgid "
|
699 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
700 |
|
701 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
702 |
msgid "Installing plugin: %s"
|
703 |
msgstr "Installazione plugin: %s"
|
704 |
|
705 |
-
#: includes/class-fs-plugin-updater.php:
|
706 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#: includes/class-fs-plugin-updater.php:
|
710 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
711 |
msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
|
712 |
|
713 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
714 |
msgctxt "verb"
|
715 |
msgid "Purchase"
|
716 |
msgstr "Acquisto"
|
717 |
|
718 |
-
#: includes/fs-plugin-info-dialog.php:
|
719 |
msgid "Start my free %s"
|
720 |
msgstr "Inizia la mia %s"
|
721 |
|
722 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
msgctxt "as download latest version"
|
724 |
msgid "Download Latest"
|
725 |
msgstr "Scarica l'ultima versione"
|
726 |
|
727 |
-
#: includes/fs-plugin-info-dialog.
|
728 |
-
|
729 |
-
|
730 |
-
msgstr "Installa ora"
|
731 |
|
732 |
-
#: includes/fs-plugin-info-dialog.
|
733 |
msgid "Install Update Now"
|
734 |
msgstr "Installa l'aggiornamento ora"
|
735 |
|
736 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
737 |
msgid "Newer Version (%s) Installed"
|
738 |
msgstr "Versione più recente (%s) installata"
|
739 |
|
740 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
741 |
msgid "Latest Version Installed"
|
742 |
msgstr "Versione più recente installata"
|
743 |
|
744 |
-
#: includes/fs-plugin-info-dialog.php:
|
745 |
msgctxt "Plugin installer section title"
|
746 |
msgid "Description"
|
747 |
msgstr "Descrizione"
|
748 |
|
749 |
-
#: includes/fs-plugin-info-dialog.php:
|
750 |
msgctxt "Plugin installer section title"
|
751 |
msgid "Installation"
|
752 |
msgstr "Installazione"
|
753 |
|
754 |
-
#: includes/fs-plugin-info-dialog.php:
|
755 |
msgctxt "Plugin installer section title"
|
756 |
msgid "FAQ"
|
757 |
msgstr "FAQ"
|
758 |
|
759 |
-
#: includes/fs-plugin-info-dialog.
|
760 |
#: templates/plugin-info/description.php:55
|
761 |
msgid "Screenshots"
|
762 |
msgstr "Screenshot"
|
763 |
|
764 |
-
#: includes/fs-plugin-info-dialog.php:
|
765 |
msgctxt "Plugin installer section title"
|
766 |
msgid "Changelog"
|
767 |
msgstr "Changelog"
|
768 |
|
769 |
-
#: includes/fs-plugin-info-dialog.php:
|
770 |
msgctxt "Plugin installer section title"
|
771 |
msgid "Reviews"
|
772 |
msgstr "Recensioni"
|
773 |
|
774 |
-
#: includes/fs-plugin-info-dialog.php:
|
775 |
msgctxt "Plugin installer section title"
|
776 |
msgid "Other Notes"
|
777 |
msgstr "Altre note"
|
778 |
|
779 |
-
#: includes/fs-plugin-info-dialog.php:
|
780 |
msgctxt "Plugin installer section title"
|
781 |
msgid "Features & Pricing"
|
782 |
msgstr "Caratteristiche & prezzi"
|
783 |
|
784 |
-
#: includes/fs-plugin-info-dialog.php:
|
785 |
msgid "Plugin Install"
|
786 |
msgstr "Installazione del plugin"
|
787 |
|
788 |
-
#: includes/fs-plugin-info-dialog.php:
|
789 |
msgctxt "e.g. Professional Plan"
|
790 |
msgid "%s Plan"
|
791 |
msgstr "Piano %s"
|
792 |
|
793 |
-
#: includes/fs-plugin-info-dialog.php:
|
794 |
msgctxt "e.g. the best product"
|
795 |
msgid "Best"
|
796 |
msgstr "Migliore"
|
797 |
|
798 |
-
#: includes/fs-plugin-info-dialog.
|
799 |
-
#: includes/fs-plugin-info-dialog.php:
|
800 |
msgctxt "as every month"
|
801 |
msgid "Monthly"
|
802 |
msgstr "Mensilmente"
|
803 |
|
804 |
-
#: includes/fs-plugin-info-dialog.php:
|
805 |
msgctxt "as once a year"
|
806 |
msgid "Annual"
|
807 |
msgstr "Annuale"
|
808 |
|
809 |
-
#: includes/fs-plugin-info-dialog.php:
|
810 |
msgid "Lifetime"
|
811 |
msgstr "Tutta la vita"
|
812 |
|
813 |
-
#: includes/fs-plugin-info-dialog.
|
814 |
-
#: includes/fs-plugin-info-dialog.
|
815 |
-
#: includes/fs-plugin-info-dialog.php:
|
816 |
msgctxt "e.g. billed monthly"
|
817 |
msgid "Billed %s"
|
818 |
msgstr "Fatturato %s"
|
819 |
|
820 |
-
#: includes/fs-plugin-info-dialog.php:
|
821 |
msgctxt "as once a year"
|
822 |
msgid "Annually"
|
823 |
msgstr "Annualmente"
|
824 |
|
825 |
-
#: includes/fs-plugin-info-dialog.php:
|
826 |
msgctxt "as once a year"
|
827 |
msgid "Once"
|
828 |
msgstr "Una volta"
|
829 |
|
830 |
-
#: includes/fs-plugin-info-dialog.php:
|
831 |
msgid "Single Site License"
|
832 |
msgstr "Licenza per sito singolo"
|
833 |
|
834 |
-
#: includes/fs-plugin-info-dialog.php:
|
835 |
msgid "Unlimited Licenses"
|
836 |
msgstr "Licenze illimitate"
|
837 |
|
838 |
-
#: includes/fs-plugin-info-dialog.php:
|
839 |
msgid "Up to %s Sites"
|
840 |
msgstr "Fino a %s siti"
|
841 |
|
842 |
-
#: includes/fs-plugin-info-dialog.
|
843 |
#: templates/plugin-info/features.php:82
|
844 |
msgctxt "as monthly period"
|
845 |
msgid "mo"
|
846 |
msgstr "mese"
|
847 |
|
848 |
-
#: includes/fs-plugin-info-dialog.
|
849 |
#: templates/plugin-info/features.php:80
|
850 |
msgctxt "as annual period"
|
851 |
msgid "year"
|
852 |
msgstr "anno"
|
853 |
|
854 |
-
#: includes/fs-plugin-info-dialog.php:
|
855 |
msgctxt "noun"
|
856 |
msgid "Price"
|
857 |
msgstr "Prezzo"
|
858 |
|
859 |
-
#: includes/fs-plugin-info-dialog.php:
|
860 |
msgid "Save %s"
|
861 |
msgstr "Risparmia %s"
|
862 |
|
863 |
-
#: includes/fs-plugin-info-dialog.php:
|
864 |
msgid "No commitment for %s - cancel anytime"
|
865 |
msgstr "Nessun impegno con %s - cancella quando vuoi"
|
866 |
|
867 |
-
#: includes/fs-plugin-info-dialog.php:
|
868 |
msgid "After your free %s, pay as little as %s"
|
869 |
msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
|
870 |
|
871 |
-
#: includes/fs-plugin-info-dialog.php:
|
872 |
msgid "Details"
|
873 |
msgstr "Dettagli"
|
874 |
|
875 |
-
#: includes/fs-plugin-info-dialog.
|
876 |
-
#: templates/debug.php191, templates/debug.php228, templates/debug.
|
|
|
877 |
msgctxt "product version"
|
878 |
msgid "Version"
|
879 |
msgstr "Versione"
|
880 |
|
881 |
-
#: includes/fs-plugin-info-dialog.php:
|
882 |
msgctxt "as the plugin author"
|
883 |
msgid "Author"
|
884 |
msgstr "Autore"
|
885 |
|
886 |
-
#: includes/fs-plugin-info-dialog.php:
|
887 |
msgid "Last Updated"
|
888 |
msgstr "Ultimo aggiornamento"
|
889 |
|
890 |
-
#: includes/fs-plugin-info-dialog.php:
|
891 |
msgctxt "x-ago"
|
892 |
msgid "%s ago"
|
893 |
msgstr "%s fa"
|
894 |
|
895 |
-
#: includes/fs-plugin-info-dialog.php:
|
896 |
msgid "Requires WordPress Version"
|
897 |
msgstr "Richiede la versione di WordPress"
|
898 |
|
899 |
-
#: includes/fs-plugin-info-dialog.php:
|
900 |
msgid "%s or higher"
|
901 |
msgstr "%s o superiore"
|
902 |
|
903 |
-
#: includes/fs-plugin-info-dialog.php:
|
904 |
msgid "Compatible up to"
|
905 |
msgstr "Compatibile fino a"
|
906 |
|
907 |
-
#: includes/fs-plugin-info-dialog.php:
|
908 |
msgid "Downloaded"
|
909 |
msgstr "Scaricato"
|
910 |
|
911 |
-
#: includes/fs-plugin-info-dialog.php:
|
912 |
msgid "%s time"
|
913 |
msgstr "% volta"
|
914 |
|
915 |
-
#: includes/fs-plugin-info-dialog.php:
|
916 |
msgid "%s times"
|
917 |
msgstr "%s volte"
|
918 |
|
919 |
-
#: includes/fs-plugin-info-dialog.php:
|
920 |
msgid "WordPress.org Plugin Page"
|
921 |
msgstr "Pagina dei plugin di WordPress.org"
|
922 |
|
923 |
-
#: includes/fs-plugin-info-dialog.php:
|
924 |
msgid "Plugin Homepage"
|
925 |
msgstr "Homepage del plugin"
|
926 |
|
927 |
-
#: includes/fs-plugin-info-dialog.
|
928 |
-
#: includes/fs-plugin-info-dialog.php:
|
929 |
msgid "Donate to this plugin"
|
930 |
msgstr "Fai una donazione a questo plugin"
|
931 |
|
932 |
-
#: includes/fs-plugin-info-dialog.php:
|
933 |
msgid "Average Rating"
|
934 |
msgstr "Valutazione media"
|
935 |
|
936 |
-
#: includes/fs-plugin-info-dialog.php:
|
937 |
msgid "based on %s"
|
938 |
msgstr "basato su %s"
|
939 |
|
940 |
-
#: includes/fs-plugin-info-dialog.php:
|
941 |
msgid "%s rating"
|
942 |
msgstr "%s valutazione"
|
943 |
|
944 |
-
#: includes/fs-plugin-info-dialog.php:
|
945 |
msgid "%s ratings"
|
946 |
msgstr "%s valutazioni"
|
947 |
|
948 |
-
#: includes/fs-plugin-info-dialog.php:
|
949 |
msgid "%s star"
|
950 |
msgstr "%s stella"
|
951 |
|
952 |
-
#: includes/fs-plugin-info-dialog.php:
|
953 |
msgid "%s stars"
|
954 |
msgstr "%s stelle"
|
955 |
|
956 |
-
#: includes/fs-plugin-info-dialog.php:
|
957 |
msgid "Click to see reviews that provided a rating of %s"
|
958 |
msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
|
959 |
|
960 |
-
#: includes/fs-plugin-info-dialog.php:
|
961 |
msgid "Contributors"
|
962 |
msgstr "Contributori"
|
963 |
|
964 |
-
#: includes/fs-plugin-info-dialog.
|
965 |
-
#: includes/fs-plugin-info-dialog.php:
|
966 |
msgid "Warning"
|
967 |
msgstr "Avviso"
|
968 |
|
969 |
-
#: includes/fs-plugin-info-dialog.php:
|
970 |
msgid "This plugin has not been tested with your current version of WordPress."
|
971 |
msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
|
972 |
|
973 |
-
#: includes/fs-plugin-info-dialog.php:
|
974 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
975 |
msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
|
976 |
|
977 |
-
#: includes/fs-plugin-info-dialog.php:
|
978 |
msgid "Paid add-on must be deployed to Freemius."
|
979 |
msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
|
980 |
|
981 |
-
#: includes/fs-plugin-info-dialog.php:
|
982 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
983 |
msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
|
984 |
|
985 |
-
#: templates/account.php81, templates/account/partials/
|
|
|
986 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
987 |
msgstr "Effettuare il downgrade del piano interromperà immediatamente tutti i futuri pagamenti ricorrenti e la licenza del piano %s scadrà in %s."
|
988 |
|
989 |
-
#: templates/account.php:
|
990 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
991 |
msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
|
992 |
|
993 |
-
#: templates/account.php83, templates/account/partials/
|
|
|
994 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
995 |
-
msgstr "
|
996 |
|
997 |
-
#: templates/account.php84, templates/account/partials/
|
|
|
998 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
999 |
msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
|
1000 |
|
1001 |
#. translators: %s: Plan title (e.g. "Professional")
|
1002 |
#: templates/account.php86,
|
1003 |
-
#: templates/account/partials/activate-license-button.
|
|
|
1004 |
msgid "Activate %s Plan"
|
1005 |
msgstr "Attivare il piano %s"
|
1006 |
|
1007 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1008 |
-
#: templates/account.php89, templates/account/partials/
|
|
|
1009 |
msgid "Auto renews in %s"
|
1010 |
msgstr "Rinnovo automatico in %s"
|
1011 |
|
1012 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1013 |
-
#: templates/account.php91, templates/account/partials/
|
|
|
1014 |
msgid "Expires in %s"
|
1015 |
msgstr "Scade in %s"
|
1016 |
|
1017 |
-
#: templates/account.php:
|
1018 |
msgctxt "as synchronize license"
|
1019 |
msgid "Sync License"
|
1020 |
msgstr "Sincronizza la licenza"
|
1021 |
|
1022 |
-
#: templates/account.php:
|
1023 |
msgid "Cancel Trial"
|
1024 |
msgstr "Annulla prova gratuita"
|
1025 |
|
1026 |
-
#: templates/account.php:
|
1027 |
msgid "Change Plan"
|
1028 |
msgstr "Cambia piano"
|
1029 |
|
1030 |
-
#: templates/account.php:
|
1031 |
msgctxt "verb"
|
1032 |
msgid "Upgrade"
|
1033 |
msgstr "Aggiornamento"
|
1034 |
|
1035 |
-
#: templates/account.php97, templates/account/partials/
|
|
|
1036 |
msgctxt "verb"
|
1037 |
msgid "Downgrade"
|
1038 |
msgstr "Downgrade"
|
1039 |
|
1040 |
#: templates/account.php99, templates/add-ons.php126,
|
1041 |
#: templates/plugin-info/features.php72,
|
|
|
1042 |
#: templates/account/partials/site.php:31
|
1043 |
msgid "Free"
|
1044 |
msgstr "Gratuito"
|
1045 |
|
1046 |
-
#: templates/account.php:
|
1047 |
msgid "Activate"
|
1048 |
msgstr "Attiva"
|
1049 |
|
1050 |
-
#: templates/account.php101, templates/debug.
|
1051 |
-
#: includes/customizer/class-fs-customizer-upsell-control.
|
|
|
1052 |
msgctxt "as product pricing plan"
|
1053 |
msgid "Plan"
|
1054 |
msgstr "Piano"
|
1055 |
|
1056 |
-
#: templates/account.php:
|
1057 |
msgid "Free Trial"
|
1058 |
msgstr "Prova gratuita"
|
1059 |
|
1060 |
-
#: templates/account.php:
|
1061 |
msgid "Account Details"
|
1062 |
msgstr "Dettagli dell'account"
|
1063 |
|
1064 |
-
#: templates/account.php:
|
1065 |
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?"
|
1066 |
msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
|
1067 |
|
1068 |
-
#: templates/account.php:
|
1069 |
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?"
|
1070 |
-
msgstr "
|
1071 |
|
1072 |
-
#: templates/account.php:
|
1073 |
msgid "Delete Account"
|
1074 |
msgstr "Elimina Account"
|
1075 |
|
1076 |
-
#: templates/account.
|
1077 |
#: templates/account/partials/deactivate-license-button.php:35
|
1078 |
msgid "Deactivate License"
|
1079 |
msgstr "Disattiva licenza"
|
1080 |
|
1081 |
-
#: templates/account.php:
|
1082 |
msgid "Are you sure you want to proceed?"
|
1083 |
msgstr "Sei sicuro di voler procedere?"
|
1084 |
|
1085 |
-
#: templates/account.php:
|
1086 |
msgid "Cancel Subscription"
|
1087 |
msgstr "Annulla sottoscrizione"
|
1088 |
|
1089 |
-
#: templates/account.php:
|
1090 |
msgctxt "as synchronize"
|
1091 |
msgid "Sync"
|
1092 |
msgstr "Sincronizza"
|
1093 |
|
1094 |
-
#: templates/account.
|
1095 |
msgid "Name"
|
1096 |
msgstr "Nome"
|
1097 |
|
1098 |
-
#: templates/account.
|
1099 |
msgid "Email"
|
1100 |
msgstr "Email"
|
1101 |
|
1102 |
-
#: templates/account.
|
1103 |
msgid "User ID"
|
1104 |
msgstr "ID utente"
|
1105 |
|
1106 |
-
#: templates/account.php:
|
1107 |
msgid "Site ID"
|
1108 |
msgstr "ID del sito"
|
1109 |
|
1110 |
-
#: templates/account.php:
|
1111 |
msgid "No ID"
|
1112 |
msgstr "Nessun ID"
|
1113 |
|
1114 |
-
#: templates/account.
|
1115 |
-
#: templates/debug.
|
1116 |
#: templates/account/partials/site.php:219
|
1117 |
msgid "Public Key"
|
1118 |
msgstr "Chiave pubblica"
|
1119 |
|
1120 |
-
#: templates/account.
|
1121 |
-
#: templates/debug.
|
1122 |
msgid "Secret Key"
|
1123 |
msgstr "Chiave segreta"
|
1124 |
|
1125 |
-
#: templates/account.php:
|
1126 |
msgctxt "as secret encryption key missing"
|
1127 |
msgid "No Secret"
|
1128 |
msgstr "Nessuna chiave"
|
1129 |
|
1130 |
-
#: templates/account.
|
1131 |
#: templates/account/partials/site.php:114
|
1132 |
msgid "Trial"
|
1133 |
msgstr "Prova gratuita"
|
1134 |
|
1135 |
-
#: templates/account.
|
1136 |
#: templates/account/partials/site.php:248
|
1137 |
msgid "License Key"
|
1138 |
msgstr "Chiave della licenza"
|
1139 |
|
1140 |
-
#: templates/account.php:
|
1141 |
msgid "not verified"
|
1142 |
msgstr "non verificato"
|
1143 |
|
1144 |
-
#: templates/account.php:
|
1145 |
msgid "Premium version"
|
1146 |
msgstr "Versione premium"
|
1147 |
|
1148 |
-
#: templates/account.php:
|
1149 |
msgid "Free version"
|
1150 |
msgstr "Versione gratuita"
|
1151 |
|
1152 |
-
#: templates/account.php:
|
1153 |
msgid "Verify Email"
|
1154 |
msgstr "Verifica email"
|
1155 |
|
1156 |
-
#: templates/account.php:
|
1157 |
msgid "Download %s Version"
|
1158 |
msgstr "Scarica la versione %s"
|
1159 |
|
1160 |
-
#: templates/account.
|
1161 |
#: templates/account/partials/site.php237,
|
1162 |
#: templates/account/partials/site.php:255
|
1163 |
msgctxt "verb"
|
1164 |
msgid "Show"
|
1165 |
msgstr "Mostra"
|
1166 |
|
1167 |
-
#: templates/account.php:
|
1168 |
msgid "What is your %s?"
|
1169 |
msgstr "Qual è il tuo %s?"
|
1170 |
|
1171 |
-
#: templates/account.
|
1172 |
msgctxt "verb"
|
1173 |
msgid "Edit"
|
1174 |
msgstr "Modifica"
|
1175 |
|
1176 |
-
#: templates/account.php:
|
1177 |
msgid "Sites"
|
1178 |
msgstr "Siti"
|
1179 |
|
1180 |
-
#: templates/account.php:
|
1181 |
msgid "Search by address"
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#: templates/account.
|
1185 |
-
#: templates/debug.
|
1186 |
-
#: templates/debug.
|
1187 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1188 |
msgid "ID"
|
1189 |
msgstr "ID"
|
1190 |
|
1191 |
-
#: templates/account.
|
1192 |
msgid "Address"
|
1193 |
-
msgstr "
|
1194 |
|
1195 |
-
#: templates/account.php:
|
1196 |
msgid "License"
|
1197 |
msgstr "Licenza"
|
1198 |
|
1199 |
-
#: templates/account.php:
|
1200 |
msgid "Plan"
|
1201 |
msgstr "Piano"
|
1202 |
|
1203 |
-
#: templates/account.php:
|
1204 |
msgctxt "as software license"
|
1205 |
msgid "License"
|
1206 |
msgstr "Licenza"
|
1207 |
|
1208 |
-
#: templates/account.php:
|
1209 |
-
msgid "Cancelled"
|
1210 |
-
msgstr "Annullato"
|
1211 |
-
|
1212 |
-
#: templates/account.php:640
|
1213 |
-
msgid "Expired"
|
1214 |
-
msgstr "Scaduto"
|
1215 |
-
|
1216 |
-
#: templates/account.php:645
|
1217 |
-
msgid "No expiration"
|
1218 |
-
msgstr "Nessuna scadenza"
|
1219 |
-
|
1220 |
-
#: templates/account.php756, templates/account.php:812
|
1221 |
-
msgid "Activate this add-on"
|
1222 |
-
msgstr "Attivare questo addon"
|
1223 |
-
|
1224 |
-
#: templates/account.php833, templates/debug.php408, templates/debug.php:486
|
1225 |
-
msgctxt "verb"
|
1226 |
-
msgid "Delete"
|
1227 |
-
msgstr "Elimina"
|
1228 |
-
|
1229 |
-
#: templates/account.php:890
|
1230 |
msgctxt "verb"
|
1231 |
msgid "Hide"
|
1232 |
msgstr "Nascondi"
|
1233 |
|
1234 |
-
#: templates/account.php:
|
1235 |
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?"
|
1236 |
-
msgstr "
|
1237 |
|
1238 |
#: templates/add-ons.php:36
|
1239 |
msgid "Add Ons for %s"
|
@@ -1287,150 +1367,158 @@ msgctxt "greeting"
|
|
1287 |
msgid "Hey %s,"
|
1288 |
msgstr "Hey %s,"
|
1289 |
|
1290 |
-
#: templates/connect.php:
|
1291 |
msgid "Allow & Continue"
|
1292 |
msgstr "Consenti & Continua"
|
1293 |
|
1294 |
-
#: templates/connect.php:
|
1295 |
msgid "Re-send activation email"
|
1296 |
msgstr "Invia nuovamente l'email di attivazione"
|
1297 |
|
1298 |
-
#: templates/connect.php:
|
1299 |
msgid "Thanks %s!"
|
1300 |
msgstr "Grazie %s!"
|
1301 |
|
1302 |
-
#: templates/connect.
|
1303 |
msgid "Agree & Activate License"
|
1304 |
msgstr "Accetta e attiva la licenza"
|
1305 |
|
1306 |
-
#: templates/connect.php:
|
1307 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1308 |
msgstr "Grazie per aver acquistato %s! Per iniziare, per favore inserisci la tua chiave di licenza:"
|
1309 |
|
1310 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1311 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1312 |
-
msgstr "
|
1313 |
|
1314 |
-
#: templates/connect.php:
|
1315 |
-
msgid "
|
1316 |
-
msgstr "
|
1317 |
|
1318 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1319 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1320 |
-
msgstr "
|
1321 |
|
1322 |
-
#: templates/connect.php:
|
1323 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1324 |
-
msgstr "
|
1325 |
|
1326 |
-
#: templates/connect.php:
|
1327 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1328 |
-
msgstr "
|
1329 |
|
1330 |
-
#: templates/connect.php:
|
1331 |
msgid "%s's paid features"
|
1332 |
-
msgstr "%s
|
1333 |
|
1334 |
-
#: templates/connect.php:
|
1335 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1336 |
-
msgstr "
|
1337 |
|
1338 |
-
#: templates/connect.php:
|
1339 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1340 |
-
msgstr "
|
1341 |
|
1342 |
-
#: templates/connect.
|
1343 |
msgid "License key"
|
1344 |
msgstr "Chiave di licenza"
|
1345 |
|
1346 |
-
#: templates/connect.
|
1347 |
msgid "Can't find your license key?"
|
1348 |
msgstr "Non trovi la tua chiave di licenza?"
|
1349 |
|
1350 |
-
#: templates/connect.
|
1351 |
#: templates/forms/deactivation/retry-skip.php:20
|
1352 |
msgctxt "verb"
|
1353 |
msgid "Skip"
|
1354 |
msgstr "Salta"
|
1355 |
|
1356 |
-
#: templates/connect.php:
|
1357 |
msgid "Delegate to Site Admins"
|
1358 |
-
msgstr "
|
1359 |
|
1360 |
-
#: templates/connect.php:
|
1361 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1362 |
-
msgstr "
|
1363 |
|
1364 |
-
#: templates/connect.php:
|
1365 |
msgid "Your Profile Overview"
|
1366 |
msgstr "Panoramica del tuo profilo"
|
1367 |
|
1368 |
-
#: templates/connect.php:
|
1369 |
msgid "Name and email address"
|
1370 |
msgstr "Nome ed indirizzo email"
|
1371 |
|
1372 |
-
#: templates/connect.php:
|
1373 |
msgid "Your Site Overview"
|
1374 |
msgstr "Panoramica del tuo sito"
|
1375 |
|
1376 |
-
#: templates/connect.php:
|
1377 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1378 |
msgstr "URL del sito, versione di WP, informazioni PHP, plugin e temi"
|
1379 |
|
1380 |
-
#: templates/connect.php:
|
1381 |
msgid "Admin Notices"
|
1382 |
msgstr "Avvisi amministratore"
|
1383 |
|
1384 |
-
#: templates/connect.
|
1385 |
msgid "Updates, announcements, marketing, no spam"
|
1386 |
msgstr "Aggiornamenti, annunci, marketing, no spam"
|
1387 |
|
1388 |
-
#: templates/connect.php:
|
1389 |
msgid "Current %s Events"
|
1390 |
-
msgstr "
|
1391 |
|
1392 |
-
#: templates/connect.php:
|
1393 |
msgid "Activation, deactivation and uninstall"
|
1394 |
msgstr "Attiva, disattivazione e disinstallazione"
|
1395 |
|
1396 |
-
#: templates/connect.php:
|
1397 |
msgid "Newsletter"
|
1398 |
msgstr "Newsletter"
|
1399 |
|
1400 |
-
#: templates/connect.
|
1401 |
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."
|
1402 |
-
msgstr "
|
1403 |
|
1404 |
-
#: templates/connect.php:
|
1405 |
msgid "What permissions are being granted?"
|
1406 |
msgstr "Quali autorizzazioni vengono concesse?"
|
1407 |
|
1408 |
-
#: templates/connect.php:
|
1409 |
msgid "Don't have a license key?"
|
1410 |
msgstr "Non hai una chiave di licenza?"
|
1411 |
|
1412 |
-
#: templates/connect.php:
|
1413 |
msgid "Activate Free Version"
|
1414 |
msgstr "Attiva versione gratuita"
|
1415 |
|
1416 |
-
#: templates/connect.php:
|
1417 |
msgid "Have a license key?"
|
1418 |
msgstr "Hai una chiave di licenza?"
|
1419 |
|
1420 |
-
#: templates/connect.php:
|
1421 |
msgid "Privacy Policy"
|
1422 |
msgstr "Politica sulla privacy"
|
1423 |
|
1424 |
-
#: templates/connect.php:
|
1425 |
msgid "Terms of Service"
|
1426 |
msgstr "Termini del Servizio"
|
1427 |
|
1428 |
-
#: templates/connect.php:
|
1429 |
msgctxt "as in the process of sending an email"
|
1430 |
msgid "Sending email"
|
1431 |
msgstr "Invio email"
|
1432 |
|
1433 |
-
#: templates/connect.php:
|
1434 |
msgctxt "as activating plugin"
|
1435 |
msgid "Activating"
|
1436 |
msgstr "Attivazione"
|
@@ -1458,8 +1546,8 @@ msgctxt "as code debugging"
|
|
1458 |
msgid "Debugging"
|
1459 |
msgstr "Debugging"
|
1460 |
|
1461 |
-
#: templates/debug.php54, templates/debug.php238, templates/debug.
|
1462 |
-
#: templates/debug.php:
|
1463 |
msgid "Actions"
|
1464 |
msgstr "Azioni"
|
1465 |
|
@@ -1477,7 +1565,7 @@ msgstr "Elimina cache API"
|
|
1477 |
|
1478 |
#: templates/debug.php:79
|
1479 |
msgid "Clear Updates Transients"
|
1480 |
-
msgstr "
|
1481 |
|
1482 |
#: templates/debug.php:86
|
1483 |
msgid "Sync Data From Server"
|
@@ -1524,12 +1612,12 @@ msgstr "Plugin"
|
|
1524 |
msgid "Themes"
|
1525 |
msgstr "Temi"
|
1526 |
|
1527 |
-
#: templates/debug.php227, templates/debug.
|
1528 |
#: templates/debug/scheduled-crons.php:80
|
1529 |
msgid "Slug"
|
1530 |
msgstr "Slug"
|
1531 |
|
1532 |
-
#: templates/debug.php229, templates/debug.php:
|
1533 |
msgid "Title"
|
1534 |
msgstr "Titolo"
|
1535 |
|
@@ -1548,134 +1636,140 @@ msgstr "Network Blog"
|
|
1548 |
|
1549 |
#: templates/debug.php:236
|
1550 |
msgid "Network User"
|
1551 |
-
msgstr "Network
|
1552 |
|
1553 |
-
#: templates/debug.php:
|
1554 |
msgctxt "as connection was successful"
|
1555 |
msgid "Connected"
|
1556 |
msgstr "Connesso"
|
1557 |
|
1558 |
-
#: templates/debug.php:
|
1559 |
msgctxt "as connection blocked"
|
1560 |
msgid "Blocked"
|
1561 |
msgstr "Bloccato"
|
1562 |
|
1563 |
-
#: templates/debug.php:
|
1564 |
msgid "Simulate Trial"
|
1565 |
msgstr "Simula versione di prova"
|
1566 |
|
1567 |
-
#: templates/debug.php:
|
1568 |
msgid "Simulate Network Upgrade"
|
1569 |
-
msgstr "
|
1570 |
|
1571 |
-
#: templates/debug.php:
|
1572 |
msgid "%s Installs"
|
1573 |
msgstr "%s Installazioni"
|
1574 |
|
1575 |
-
#: templates/debug.php:
|
1576 |
msgctxt "like websites"
|
1577 |
msgid "Sites"
|
1578 |
msgstr "Siti"
|
1579 |
|
1580 |
-
#: templates/debug.
|
1581 |
msgid "Blog ID"
|
1582 |
msgstr "Blog ID"
|
1583 |
|
1584 |
-
#: templates/debug.
|
|
|
|
|
|
|
|
|
|
|
|
|
1585 |
msgid "Add Ons of module %s"
|
1586 |
msgstr "Addon del modulo %s"
|
1587 |
|
1588 |
-
#: templates/debug.php:
|
1589 |
msgid "Users"
|
1590 |
msgstr "Utenti"
|
1591 |
|
1592 |
-
#: templates/debug.php:
|
1593 |
msgid "Verified"
|
1594 |
msgstr "Verificato"
|
1595 |
|
1596 |
-
#: templates/debug.php:
|
1597 |
msgid "%s Licenses"
|
1598 |
msgstr "%s Licenze"
|
1599 |
|
1600 |
-
#: templates/debug.php:
|
1601 |
msgid "Plugin ID"
|
1602 |
msgstr "Plugin ID"
|
1603 |
|
1604 |
-
#: templates/debug.php:
|
1605 |
msgid "Plan ID"
|
1606 |
msgstr "ID Piano"
|
1607 |
|
1608 |
-
#: templates/debug.php:
|
1609 |
msgid "Quota"
|
1610 |
msgstr "Quota"
|
1611 |
|
1612 |
-
#: templates/debug.php:
|
1613 |
msgid "Activated"
|
1614 |
msgstr "Attivato"
|
1615 |
|
1616 |
-
#: templates/debug.php:
|
1617 |
msgid "Blocking"
|
1618 |
msgstr "Bloccato"
|
1619 |
|
1620 |
-
#: templates/debug.php:
|
1621 |
msgctxt "as expiration date"
|
1622 |
msgid "Expiration"
|
1623 |
msgstr "Scadenza"
|
1624 |
|
1625 |
-
#: templates/debug.php:
|
1626 |
msgid "Debug Log"
|
1627 |
msgstr "Debug Log"
|
1628 |
|
1629 |
-
#: templates/debug.php:
|
1630 |
msgid "All Types"
|
1631 |
msgstr "Tutti i tipi"
|
1632 |
|
1633 |
-
#: templates/debug.php:
|
1634 |
msgid "All Requests"
|
1635 |
msgstr "Tutte le richieste"
|
1636 |
|
1637 |
-
#: templates/debug.
|
1638 |
#: templates/debug/logger.php:25
|
1639 |
msgid "File"
|
1640 |
msgstr "File"
|
1641 |
|
1642 |
-
#: templates/debug.
|
1643 |
#: templates/debug/logger.php:23
|
1644 |
msgid "Function"
|
1645 |
msgstr "Funzione"
|
1646 |
|
1647 |
-
#: templates/debug.php:
|
1648 |
msgid "Process ID"
|
1649 |
msgstr "ID processo"
|
1650 |
|
1651 |
-
#: templates/debug.php:
|
1652 |
msgid "Logger"
|
1653 |
msgstr "Logger"
|
1654 |
|
1655 |
-
#: templates/debug.
|
1656 |
#: templates/debug/logger.php:24
|
1657 |
msgid "Message"
|
1658 |
msgstr "Messaggio"
|
1659 |
|
1660 |
-
#: templates/debug.php:
|
1661 |
msgid "Filter"
|
1662 |
msgstr "Filtro"
|
1663 |
|
1664 |
-
#: templates/debug.php:
|
1665 |
msgid "Download"
|
1666 |
msgstr "Download"
|
1667 |
|
1668 |
-
#: templates/debug.
|
1669 |
msgid "Type"
|
1670 |
msgstr "Tipo"
|
1671 |
|
1672 |
-
#: templates/debug.
|
1673 |
msgid "Timestamp"
|
1674 |
msgstr "Timestamp"
|
1675 |
|
1676 |
#: templates/secure-https-header.php:28
|
1677 |
msgid "Secure HTTPS %s page, running from an external domain"
|
1678 |
-
msgstr "
|
1679 |
|
1680 |
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1681 |
#: templates/plugin-info/features.php:43
|
@@ -1856,7 +1950,7 @@ msgstr "Successivo"
|
|
1856 |
|
1857 |
#: templates/forms/affiliation.php:82
|
1858 |
msgid "Non-expiring"
|
1859 |
-
msgstr "Non
|
1860 |
|
1861 |
#: templates/forms/affiliation.php:85
|
1862 |
msgid "Apply to become an affiliate"
|
@@ -1864,67 +1958,67 @@ msgstr "Applica per diventare un affiliato"
|
|
1864 |
|
1865 |
#: templates/forms/affiliation.php:104
|
1866 |
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1867 |
-
msgstr "
|
1868 |
|
1869 |
#: templates/forms/affiliation.php:119
|
1870 |
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."
|
1871 |
-
msgstr "
|
1872 |
|
1873 |
#: templates/forms/affiliation.php:122
|
1874 |
msgid "Your affiliation account was temporarily suspended."
|
1875 |
-
msgstr "
|
1876 |
|
1877 |
#: templates/forms/affiliation.php:125
|
1878 |
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."
|
1879 |
-
msgstr "
|
1880 |
|
1881 |
#: templates/forms/affiliation.php:128
|
1882 |
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1883 |
-
msgstr "
|
1884 |
|
1885 |
#: templates/forms/affiliation.php:141
|
1886 |
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1887 |
-
msgstr "
|
1888 |
|
1889 |
#: templates/forms/affiliation.php:142
|
1890 |
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
#: templates/forms/affiliation.php:145
|
1894 |
msgid "Program Summary"
|
1895 |
-
msgstr "
|
1896 |
|
1897 |
#: templates/forms/affiliation.php:147
|
1898 |
msgid "%s commission when a customer purchases a new license."
|
1899 |
-
msgstr "%
|
1900 |
|
1901 |
#: templates/forms/affiliation.php:149
|
1902 |
msgid "Get commission for automated subscription renewals."
|
1903 |
-
msgstr "
|
1904 |
|
1905 |
#: templates/forms/affiliation.php:152
|
1906 |
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
1907 |
-
msgstr "%s
|
1908 |
|
1909 |
#: templates/forms/affiliation.php:155
|
1910 |
msgid "Unlimited commissions."
|
1911 |
-
msgstr "
|
1912 |
|
1913 |
#: templates/forms/affiliation.php:157
|
1914 |
msgid "%s minimum payout amount."
|
1915 |
-
msgstr "%s
|
1916 |
|
1917 |
#: templates/forms/affiliation.php:158
|
1918 |
msgid "Payouts are in USD and processed monthly via PayPal."
|
1919 |
-
msgstr "
|
1920 |
|
1921 |
#: templates/forms/affiliation.php:159
|
1922 |
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
1923 |
-
msgstr "
|
1924 |
|
1925 |
#: templates/forms/affiliation.php:162
|
1926 |
msgid "Affiliate"
|
1927 |
-
msgstr "
|
1928 |
|
1929 |
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
1930 |
msgid "Email address"
|
@@ -1932,59 +2026,59 @@ msgstr "Indirizzo email"
|
|
1932 |
|
1933 |
#: templates/forms/affiliation.php:169
|
1934 |
msgid "Full name"
|
1935 |
-
msgstr "
|
1936 |
|
1937 |
#: templates/forms/affiliation.php:173
|
1938 |
msgid "PayPal account email address"
|
1939 |
-
msgstr "
|
1940 |
|
1941 |
#: templates/forms/affiliation.php:177
|
1942 |
msgid "Where are you going to promote the %s?"
|
1943 |
-
msgstr "
|
1944 |
|
1945 |
#: templates/forms/affiliation.php:179
|
1946 |
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
1947 |
-
msgstr "
|
1948 |
|
1949 |
#: templates/forms/affiliation.php:181
|
1950 |
msgid "Add another domain"
|
1951 |
-
msgstr "
|
1952 |
|
1953 |
#: templates/forms/affiliation.php:185
|
1954 |
msgid "Extra Domains"
|
1955 |
-
msgstr "
|
1956 |
|
1957 |
#: templates/forms/affiliation.php:186
|
1958 |
msgid "Extra domains where you will be marketing the product from."
|
1959 |
-
msgstr "
|
1960 |
|
1961 |
#: templates/forms/affiliation.php:196
|
1962 |
msgid "Promotion methods"
|
1963 |
-
msgstr "
|
1964 |
|
1965 |
#: templates/forms/affiliation.php:199
|
1966 |
msgid "Social media (Facebook, Twitter, etc.)"
|
1967 |
-
msgstr "Social
|
1968 |
|
1969 |
#: templates/forms/affiliation.php:203
|
1970 |
msgid "Mobile apps"
|
1971 |
-
msgstr "
|
1972 |
|
1973 |
#: templates/forms/affiliation.php:207
|
1974 |
msgid "Website, email, and social media statistics (optional)"
|
1975 |
-
msgstr "
|
1976 |
|
1977 |
#: templates/forms/affiliation.php:210
|
1978 |
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)."
|
1979 |
-
msgstr "
|
1980 |
|
1981 |
#: templates/forms/affiliation.php:214
|
1982 |
msgid "How will you promote us?"
|
1983 |
-
msgstr "
|
1984 |
|
1985 |
#: templates/forms/affiliation.php:217
|
1986 |
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
1987 |
-
msgstr "
|
1988 |
|
1989 |
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
1990 |
msgid "Cancel"
|
@@ -1992,7 +2086,7 @@ msgstr "Annulla"
|
|
1992 |
|
1993 |
#: templates/forms/affiliation.php:225
|
1994 |
msgid "Become an affiliate"
|
1995 |
-
msgstr "
|
1996 |
|
1997 |
#: templates/forms/license-activation.php:20
|
1998 |
msgid "Please enter the license key that you received in the email right after the purchase:"
|
@@ -2020,6 +2114,27 @@ msgstr "Tracciamo l'utilizzo esclusivamente per rendere %s migliore, creando una
|
|
2020 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2021 |
msgstr "Cliccando su \"Cancella iscrizione\", non invieremo più nessuna informazione da %s a %s."
|
2022 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023 |
#: templates/forms/resend-key.php:21
|
2024 |
msgid "Send License Key"
|
2025 |
msgstr "Invia chiave di licenza"
|
@@ -2034,7 +2149,7 @@ msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito
|
|
2034 |
|
2035 |
#: templates/forms/trial-start.php:28
|
2036 |
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."
|
2037 |
-
msgstr "
|
2038 |
|
2039 |
#: templates/js/style-premium-theme.php:37
|
2040 |
msgid "Premium"
|
@@ -2042,34 +2157,34 @@ msgstr "Premium"
|
|
2042 |
|
2043 |
#: templates/partials/network-activation.php:23
|
2044 |
msgid "Activate license on all sites in the network."
|
2045 |
-
msgstr "
|
2046 |
|
2047 |
#: templates/partials/network-activation.php:24
|
2048 |
msgid "Apply on all sites in the network."
|
2049 |
-
msgstr "
|
2050 |
|
2051 |
#: templates/partials/network-activation.php:27
|
2052 |
msgid "Activate license on all pending sites."
|
2053 |
-
msgstr "
|
2054 |
|
2055 |
#: templates/partials/network-activation.php:28
|
2056 |
msgid "Apply on all pending sites."
|
2057 |
-
msgstr "
|
2058 |
|
2059 |
#: templates/partials/network-activation.php36,
|
2060 |
#: templates/partials/network-activation.php:68
|
2061 |
msgid "allow"
|
2062 |
-
msgstr "
|
2063 |
|
2064 |
#: templates/partials/network-activation.php38,
|
2065 |
#: templates/partials/network-activation.php:70
|
2066 |
msgid "delegate"
|
2067 |
-
msgstr "
|
2068 |
|
2069 |
#: templates/partials/network-activation.php41,
|
2070 |
#: templates/partials/network-activation.php:73
|
2071 |
msgid "skip"
|
2072 |
-
msgstr "
|
2073 |
|
2074 |
#: templates/plugin-info/description.php72,
|
2075 |
#: templates/plugin-info/screenshots.php:31
|
@@ -2093,21 +2208,38 @@ msgstr "%s rimanenti"
|
|
2093 |
msgid "Last license"
|
2094 |
msgstr "Ultima licenza"
|
2095 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2096 |
#: templates/account/partials/site.php:181
|
2097 |
msgid "Owner Name"
|
2098 |
-
msgstr "
|
2099 |
|
2100 |
#: templates/account/partials/site.php:193
|
2101 |
msgid "Owner Email"
|
2102 |
-
msgstr "
|
2103 |
|
2104 |
#: templates/account/partials/site.php:205
|
2105 |
msgid "Owner ID"
|
2106 |
-
msgstr "
|
2107 |
|
2108 |
#: templates/account/partials/site.php:270
|
2109 |
msgid "Subscription"
|
2110 |
-
msgstr "
|
2111 |
|
2112 |
#: templates/forms/deactivation/contact.php:19
|
2113 |
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
@@ -2127,7 +2259,7 @@ msgstr "Disattiva"
|
|
2127 |
|
2128 |
#: templates/forms/deactivation/form.php:65
|
2129 |
msgid "Activate %s"
|
2130 |
-
msgstr "
|
2131 |
|
2132 |
#: templates/forms/deactivation/form.php:76
|
2133 |
msgid "Quick feedback"
|
@@ -2135,29 +2267,29 @@ msgstr "Feedback veloce"
|
|
2135 |
|
2136 |
#: templates/forms/deactivation/form.php:80
|
2137 |
msgid "If you have a moment, please let us know why you are %s"
|
2138 |
-
msgstr "
|
2139 |
|
2140 |
#: templates/forms/deactivation/form.php:80
|
2141 |
msgid "deactivating"
|
2142 |
-
msgstr "
|
2143 |
|
2144 |
#: templates/forms/deactivation/form.php:80
|
2145 |
msgid "switching"
|
2146 |
-
msgstr "
|
2147 |
|
2148 |
-
#: templates/forms/deactivation/form.php:
|
2149 |
msgid "Submit & %s"
|
2150 |
-
msgstr "
|
2151 |
|
2152 |
-
#: templates/forms/deactivation/form.php:
|
2153 |
msgid "Kindly tell us the reason so we can improve."
|
2154 |
msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
|
2155 |
|
2156 |
-
#: templates/forms/deactivation/form.php:
|
2157 |
msgid "Yes - %s"
|
2158 |
-
msgstr "
|
2159 |
|
2160 |
-
#: templates/forms/deactivation/form.php:
|
2161 |
msgid "Skip & %s"
|
2162 |
msgstr "Salta & %s"
|
2163 |
|
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 ""
|
9 |
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-05-24 14:01+0000\n"
|
14 |
"Last-Translator: Daniele Scasciafratte Mte90 <mte90net@gmail.com>\n"
|
15 |
"Language: it_IT\n"
|
16 |
"Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
+
#: includes/class-freemius.php:1551
|
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:1553
|
32 |
msgid "Error"
|
33 |
msgstr "Errore"
|
34 |
|
35 |
+
#: includes/class-freemius.php:1871
|
36 |
msgid "I found a better %s"
|
37 |
msgstr "Ho trovato un migliore %s"
|
38 |
|
39 |
+
#: includes/class-freemius.php:1873
|
40 |
msgid "What's the %s's name?"
|
41 |
msgstr "Qual è il nome di %s?"
|
42 |
|
43 |
+
#: includes/class-freemius.php:1879
|
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:1881
|
48 |
msgid "Deactivation"
|
49 |
msgstr "Disattivazione"
|
50 |
|
51 |
+
#: includes/class-freemius.php:1882
|
52 |
msgid "Theme Switch"
|
53 |
msgstr "Cambio tema"
|
54 |
|
55 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
56 |
msgid "Other"
|
57 |
msgstr "Altro"
|
58 |
|
59 |
+
#: includes/class-freemius.php:1899
|
60 |
msgid "I no longer need the %s"
|
61 |
msgstr "Non ho più bisogno di %s"
|
62 |
|
63 |
+
#: includes/class-freemius.php:1906
|
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:1912
|
68 |
msgid "The %s broke my site"
|
69 |
msgstr "%s ha rotto il mio sito"
|
70 |
|
71 |
+
#: includes/class-freemius.php:1919
|
72 |
msgid "The %s suddenly stopped working"
|
73 |
msgstr "%s ha improvvisamente smesso di funzionare"
|
74 |
|
75 |
+
#: includes/class-freemius.php:1929
|
76 |
msgid "I can't pay for it anymore"
|
77 |
msgstr "Non posso piú pagarlo"
|
78 |
|
79 |
+
#: includes/class-freemius.php:1931
|
80 |
msgid "What price would you feel comfortable paying?"
|
81 |
msgstr "Che prezzo ritieni opportuno pagare?"
|
82 |
|
83 |
+
#: includes/class-freemius.php:1937
|
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:1958
|
88 |
msgid "The %s didn't work"
|
89 |
msgstr "%s non funziona"
|
90 |
|
91 |
+
#: includes/class-freemius.php:1968
|
92 |
msgid "I couldn't understand how to make it work"
|
93 |
msgstr "Non capisco come farlo funzionare"
|
94 |
|
95 |
+
#: includes/class-freemius.php:1976
|
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:1978
|
100 |
msgid "What feature?"
|
101 |
msgstr "Quale funzionalitá?"
|
102 |
|
103 |
+
#: includes/class-freemius.php:1982
|
104 |
msgid "The %s is not working"
|
105 |
msgstr "%s non funziona"
|
106 |
|
107 |
+
#: includes/class-freemius.php:1984
|
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:1988
|
112 |
msgid "It's not what I was looking for"
|
113 |
msgstr "Non é quello che stavo cercando"
|
114 |
|
115 |
+
#: includes/class-freemius.php:1990
|
116 |
msgid "What you've been looking for?"
|
117 |
msgstr "Che cosa stai cercando?"
|
118 |
|
119 |
+
#: includes/class-freemius.php:1994
|
120 |
msgid "The %s didn't work as expected"
|
121 |
msgstr "%s non ha funzionato come mi aspettavo"
|
122 |
|
123 |
+
#: includes/class-freemius.php:1996
|
124 |
msgid "What did you expect?"
|
125 |
msgstr "Che cosa ti aspettavi?"
|
126 |
|
127 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr "Debug Freemius"
|
130 |
|
131 |
+
#: includes/class-freemius.php:3402
|
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:3404
|
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:3411
|
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:3516
|
144 |
msgid "Yes - do your thing"
|
145 |
msgstr "Sì - fai pure"
|
146 |
|
147 |
+
#: includes/class-freemius.php:3521
|
148 |
msgid "No - just deactivate"
|
149 |
msgstr "No - disattiva e basta"
|
150 |
|
151 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
152 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
153 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
154 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
155 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
156 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
157 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
158 |
msgctxt "exclamation"
|
159 |
msgid "Oops"
|
160 |
msgstr "Ops"
|
161 |
|
162 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
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:4064
|
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.php4176, includes/class-freemius.php4201,
|
177 |
+
#: includes/class-freemius.php:17103
|
178 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
179 |
+
msgstr "Errore API inaspettato. Contatta l'autore di 1%s con il seguente errore."
|
180 |
|
181 |
+
#: includes/class-freemius.php:4815
|
182 |
msgid "Premium %s version was successfully activated."
|
183 |
+
msgstr "La versione 1%s Permium è stata attivata con successo."
|
184 |
|
185 |
+
#: includes/class-freemius.php4827, includes/class-freemius.php:6660
|
186 |
msgctxt ""
|
187 |
msgid "W00t"
|
188 |
msgstr "Forte"
|
189 |
|
190 |
+
#: includes/class-freemius.php:4842
|
191 |
msgid "You have a %s license."
|
192 |
msgstr "Hai la licenza %s."
|
193 |
|
194 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
195 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
196 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
197 |
+
#: includes/class-freemius.php:16891
|
198 |
msgctxt "interjection expressing joy or exuberance"
|
199 |
msgid "Yee-haw"
|
200 |
msgstr "Evvai"
|
201 |
|
202 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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.php5123, templates/add-ons.php99,
|
211 |
+
#: templates/account/partials/addon.php:283
|
212 |
msgid "More information about %s"
|
213 |
msgstr "Ulteriori informazioni su %s"
|
214 |
|
215 |
+
#: includes/class-freemius.php:5124
|
216 |
msgid "Purchase License"
|
217 |
msgstr "Acquista licenza"
|
218 |
|
219 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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:6039
|
224 |
msgid "start the trial"
|
225 |
msgstr "Inizia il periodo di prova gratuito"
|
226 |
|
227 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
228 |
msgid "complete the install"
|
229 |
msgstr "completa l'installazione"
|
230 |
|
231 |
+
#: includes/class-freemius.php:6147
|
232 |
msgid "You are just one step away - %s"
|
233 |
msgstr "Sei a un passo dalla fine - %s"
|
234 |
|
235 |
+
#: includes/class-freemius.php:6150
|
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:6227
|
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:6231
|
245 |
msgid "Opt in to make \"%s\" Better!"
|
246 |
+
msgstr "Accetta per rendere \"%s\" migliore!"
|
247 |
|
248 |
+
#: includes/class-freemius.php:6659
|
249 |
msgid "The upgrade of %s was successfully completed."
|
250 |
msgstr "L'aggiornamento di %s è stato completato con successo."
|
251 |
|
252 |
+
#: includes/class-freemius.php8384, includes/class-fs-plugin-updater.php581,
|
253 |
+
#: includes/class-fs-plugin-updater.php733,
|
254 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
255 |
msgid "Add-On"
|
256 |
msgstr "Add-on"
|
257 |
|
258 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
259 |
+
#: templates/debug.php:510
|
260 |
msgid "Plugin"
|
261 |
msgstr "Plugin"
|
262 |
|
263 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
264 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
265 |
msgid "Theme"
|
266 |
msgstr "Tema"
|
267 |
|
268 |
+
#: includes/class-freemius.php:10808
|
269 |
msgid "invalid_site_details_collection"
|
270 |
msgstr "invalid_site_details_collection"
|
271 |
|
272 |
+
#: includes/class-freemius.php:10928
|
273 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
274 |
msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
|
275 |
|
276 |
+
#: includes/class-freemius.php:10930
|
277 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
278 |
msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
|
279 |
|
280 |
+
#: includes/class-freemius.php:11166
|
281 |
msgid "Account is pending activation."
|
282 |
msgstr "Account in attesa di attivazione."
|
283 |
|
284 |
+
#: includes/class-freemius.php:13608
|
285 |
msgid "%s activation was successfully completed."
|
286 |
msgstr "%s è stato attivato con successo."
|
287 |
|
288 |
+
#: includes/class-freemius.php:13622
|
289 |
msgid "Your account was successfully activated with the %s plan."
|
290 |
msgstr "Il tuo account è stato attivato correttamente con il piano %s."
|
291 |
|
292 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
293 |
msgid "Your trial has been successfully started."
|
294 |
msgstr "La versione di prova è stata avviata correttamente."
|
295 |
|
296 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
297 |
+
#: includes/class-freemius.php:14317
|
298 |
msgid "Couldn't activate %s."
|
299 |
msgstr "Non é stato possibile attivare %s."
|
300 |
|
301 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
302 |
+
#: includes/class-freemius.php:14318
|
303 |
msgid "Please contact us with the following message:"
|
304 |
msgstr "Contattaci con il seguente messaggio:"
|
305 |
|
306 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
307 |
msgid "Upgrade"
|
308 |
msgstr "Aggiornamento"
|
309 |
|
310 |
+
#: includes/class-freemius.php:14672
|
311 |
msgid "Start Trial"
|
312 |
msgstr "Inizia il periodo di prova gratuito"
|
313 |
|
314 |
+
#: includes/class-freemius.php:14674
|
315 |
msgid "Pricing"
|
316 |
msgstr "Prezzi"
|
317 |
|
318 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
319 |
msgid "Affiliation"
|
320 |
msgstr "Affiliazione"
|
321 |
|
322 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
323 |
+
#: templates/account.php146, templates/debug.php:314
|
324 |
msgid "Account"
|
325 |
msgstr "Account"
|
326 |
|
327 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
328 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
329 |
msgid "Contact Us"
|
330 |
msgstr "Contattaci"
|
331 |
|
332 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
333 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
334 |
+
#: templates/account/partials/addon.php:37
|
335 |
msgid "Add-Ons"
|
336 |
msgstr "Addon"
|
337 |
|
338 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
339 |
msgctxt "noun"
|
340 |
msgid "Pricing"
|
341 |
msgstr "Prezzi"
|
342 |
|
343 |
+
#: includes/class-freemius.php15009,
|
344 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
345 |
msgid "Support Forum"
|
346 |
msgstr "Forum di supporto"
|
347 |
|
348 |
+
#: includes/class-freemius.php:15794
|
349 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
350 |
msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
|
351 |
|
352 |
+
#: includes/class-freemius.php:15795
|
353 |
msgctxt "a positive response"
|
354 |
msgid "Right on"
|
355 |
msgstr "Sì"
|
356 |
|
357 |
+
#: includes/class-freemius.php:16367
|
358 |
msgid "Your %s Add-on plan was successfully upgraded."
|
359 |
msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
|
360 |
|
361 |
+
#: includes/class-freemius.php:16369
|
362 |
msgid "%s Add-on was successfully purchased."
|
363 |
msgstr "L' add-on %s è stato acquistato con successo."
|
364 |
|
365 |
+
#: includes/class-freemius.php:16372
|
366 |
msgid "Download the latest version"
|
367 |
msgstr "Scarica l'ultima versione"
|
368 |
|
369 |
+
#: includes/class-freemius.php:16444
|
370 |
msgctxt "%1s - plugin title, %2s - API domain"
|
371 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
372 |
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."
|
373 |
|
374 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
375 |
+
#: includes/class-freemius.php:16927
|
376 |
msgid "Error received from the server:"
|
377 |
msgstr "Errore ricevuto dal server:"
|
378 |
|
379 |
+
#: includes/class-freemius.php:16457
|
380 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
381 |
msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
|
382 |
|
383 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
384 |
+
#: includes/class-freemius.php:16910
|
385 |
msgctxt ""
|
386 |
msgid "Hmm"
|
387 |
msgstr "Uhm"
|
388 |
|
389 |
+
#: includes/class-freemius.php:16652
|
390 |
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."
|
391 |
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."
|
392 |
|
393 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
394 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
395 |
msgctxt "trial period"
|
396 |
msgid "Trial"
|
397 |
msgstr "Prova gratuita"
|
398 |
|
399 |
+
#: includes/class-freemius.php:16658
|
400 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
401 |
msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
|
402 |
|
403 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
404 |
msgid "Please contact us here"
|
405 |
msgstr "Contattaci qui"
|
406 |
|
407 |
+
#: includes/class-freemius.php:16672
|
408 |
msgid "Your plan was successfully upgraded."
|
409 |
msgstr "Il piano è stato aggiornato con successo."
|
410 |
|
411 |
+
#: includes/class-freemius.php:16689
|
412 |
msgid "Your plan was successfully changed to %s."
|
413 |
msgstr "Il piano è stato cambiato con successo a %s."
|
414 |
|
415 |
+
#: includes/class-freemius.php:16705
|
416 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
417 |
+
msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %sper sempre."
|
418 |
+
|
419 |
+
#: includes/class-freemius.php:16707
|
420 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
421 |
+
msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$ssenza interruzioni."
|
422 |
|
423 |
+
#: includes/class-freemius.php:16715
|
424 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
425 |
msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
|
426 |
|
427 |
+
#: includes/class-freemius.php:16728
|
428 |
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."
|
429 |
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."
|
430 |
|
431 |
+
#: includes/class-freemius.php:16751
|
432 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
433 |
+
msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
|
434 |
+
|
435 |
+
#: includes/class-freemius.php:16753
|
436 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
437 |
+
msgstr "La tua versione prova è scaduta.%1$saggiorna ora %2$sper continuare ad usare %3$ssenza interruzioni."
|
438 |
|
439 |
+
#: includes/class-freemius.php:16858
|
440 |
msgid "It looks like the license could not be activated."
|
441 |
msgstr "Sembra che la licenza non possa essere attivata."
|
442 |
|
443 |
+
#: includes/class-freemius.php:16888
|
444 |
msgid "Your license was successfully activated."
|
445 |
msgstr "La tua licenza è stata attivata correttamente."
|
446 |
|
447 |
+
#: includes/class-freemius.php:16914
|
448 |
msgid "It looks like your site currently doesn't have an active license."
|
449 |
msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
|
450 |
|
451 |
+
#: includes/class-freemius.php:16926
|
452 |
msgid "It looks like the license deactivation failed."
|
453 |
msgstr "Sembra che la disattivazione della licenza non sia riuscita."
|
454 |
|
455 |
+
#: includes/class-freemius.php:16954
|
456 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
457 |
msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
|
458 |
|
459 |
+
#: includes/class-freemius.php:16955
|
460 |
msgid "O.K"
|
461 |
msgstr "OK"
|
462 |
|
463 |
+
#: includes/class-freemius.php:17003
|
464 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
465 |
msgstr "Il tuo piano è stato declassato con successo. La licenza del piano %s scadrà in %s."
|
466 |
|
467 |
+
#: includes/class-freemius.php:17013
|
468 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
469 |
msgstr "Stiamo avendo qualche problema temporaneo con il downgrade del piano. Riprova tra qualche minuto."
|
470 |
|
471 |
+
#: includes/class-freemius.php:17037
|
472 |
msgid "You are already running the %s in a trial mode."
|
473 |
+
msgstr "Stai già usando %sin modalità prova."
|
474 |
|
475 |
+
#: includes/class-freemius.php:17048
|
476 |
msgid "You already utilized a trial before."
|
477 |
msgstr "Hai già utilizzato una prova gratuita in passato."
|
478 |
|
479 |
+
#: includes/class-freemius.php:17062
|
480 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
481 |
msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
|
482 |
|
483 |
+
#: includes/class-freemius.php:17073
|
484 |
msgid "Plan %s does not support a trial period."
|
485 |
msgstr "Il piano %s non supporta il periodo di prova."
|
486 |
|
487 |
+
#: includes/class-freemius.php:17084
|
488 |
msgid "None of the %s's plans supports a trial period."
|
489 |
+
msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
|
490 |
|
491 |
+
#: includes/class-freemius.php:17134
|
492 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
493 |
msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
|
494 |
|
495 |
+
#: includes/class-freemius.php:17185
|
496 |
msgid "Your %s free trial was successfully cancelled."
|
497 |
msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
|
498 |
|
499 |
+
#: includes/class-freemius.php:17190
|
500 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
501 |
msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
|
502 |
|
503 |
+
#: includes/class-freemius.php:17474
|
504 |
msgid "Version %s was released."
|
505 |
msgstr "La versione %s é stata rilasciata."
|
506 |
|
507 |
+
#: includes/class-freemius.php:17474
|
508 |
msgid "Please download %s."
|
509 |
msgstr "Scarica %s."
|
510 |
|
511 |
+
#: includes/class-freemius.php:17481
|
512 |
msgid "the latest %s version here"
|
513 |
msgstr "l'ultima versione %s é quì"
|
514 |
|
515 |
+
#: includes/class-freemius.php:17486
|
516 |
msgid "New"
|
517 |
msgstr "Nuovo"
|
518 |
|
519 |
+
#: includes/class-freemius.php:17491
|
520 |
msgid "Seems like you got the latest release."
|
521 |
msgstr "Sembra che tu abbia la versione più recente."
|
522 |
|
523 |
+
#: includes/class-freemius.php:17492
|
524 |
msgid "You are all good!"
|
525 |
msgstr "Sei fantastico!"
|
526 |
|
527 |
+
#: includes/class-freemius.php:17758
|
528 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
529 |
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."
|
530 |
|
531 |
+
#: includes/class-freemius.php:17893
|
532 |
msgid "Site successfully opted in."
|
533 |
+
msgstr "Sito accettato con successo."
|
534 |
|
535 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
536 |
msgid "Awesome"
|
537 |
msgstr "Fantastico"
|
538 |
|
539 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
540 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
541 |
msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s"
|
542 |
|
543 |
+
#: includes/class-freemius.php:17911
|
544 |
msgid "Thank you!"
|
545 |
+
msgstr "Grazie!"
|
546 |
|
547 |
+
#: includes/class-freemius.php:17918
|
548 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
549 |
+
msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
|
550 |
|
551 |
+
#: includes/class-freemius.php:18033
|
552 |
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."
|
553 |
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."
|
554 |
|
555 |
+
#: includes/class-freemius.php:18039
|
556 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
557 |
msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
|
558 |
|
559 |
+
#: includes/class-freemius.php:18044
|
560 |
msgid "%s is the new owner of the account."
|
561 |
msgstr "%s è il nuovo proprietario dell'account."
|
562 |
|
563 |
+
#: includes/class-freemius.php:18046
|
564 |
msgctxt "as congratulations"
|
565 |
msgid "Congrats"
|
566 |
msgstr "Congratulazioni"
|
567 |
|
568 |
+
#: includes/class-freemius.php:18066
|
569 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
570 |
msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
|
571 |
|
572 |
+
#: includes/class-freemius.php:18067
|
573 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
574 |
+
msgstr "Puoi abbandonare la proprietà dell'account %sa %scliccando il pulsante Cambia proprietario."
|
575 |
|
576 |
+
#: includes/class-freemius.php:18074
|
577 |
msgid "Change Ownership"
|
578 |
msgstr "Cambia Proprietario"
|
579 |
|
580 |
+
#: includes/class-freemius.php:18082
|
581 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
582 |
msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
|
583 |
|
584 |
+
#: includes/class-freemius.php:18094
|
585 |
msgid "Please provide your full name."
|
586 |
msgstr "Per favore inserisci il tuo nome completo."
|
587 |
|
588 |
+
#: includes/class-freemius.php:18099
|
589 |
msgid "Your name was successfully updated."
|
590 |
msgstr "Il tuo nome è stato aggiornato correttamente."
|
591 |
|
592 |
+
#: includes/class-freemius.php:18160
|
593 |
msgid "You have successfully updated your %s."
|
594 |
msgstr "Hai aggiornato con successo il tuo %s."
|
595 |
|
596 |
+
#: includes/class-freemius.php:18300
|
597 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
598 |
msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
|
599 |
|
600 |
+
#: includes/class-freemius.php:18301
|
601 |
msgctxt "advance notice of something that will need attention."
|
602 |
msgid "Heads up"
|
603 |
msgstr "Attenzione"
|
604 |
|
605 |
+
#: includes/class-freemius.php:18711
|
606 |
msgctxt "exclamation"
|
607 |
msgid "Hey"
|
608 |
msgstr "Hey"
|
609 |
|
610 |
+
#: includes/class-freemius.php:18711
|
611 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
612 |
msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
|
613 |
|
614 |
+
#: includes/class-freemius.php:18719
|
615 |
msgid "No commitment for %s days - cancel anytime!"
|
616 |
msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
|
617 |
|
618 |
+
#: includes/class-freemius.php:18720
|
619 |
msgid "No credit card required"
|
620 |
msgstr "Nessuna carta di credito richiesta"
|
621 |
|
622 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
623 |
msgctxt "call to action"
|
624 |
msgid "Start free trial"
|
625 |
msgstr "Inizia il periodo di prova gratuito"
|
626 |
|
627 |
+
#: includes/class-freemius.php:18804
|
628 |
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!"
|
629 |
+
msgstr "Ciao, sai che %sha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
|
630 |
|
631 |
+
#: includes/class-freemius.php:18813
|
632 |
msgid "Learn more"
|
633 |
msgstr "Scopri altro"
|
634 |
|
635 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
636 |
+
#: templates/account.php497, templates/connect.php169,
|
637 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
638 |
+
#: templates/account/partials/addon.php:230
|
639 |
msgid "Activate License"
|
640 |
msgstr "Attiva licenza"
|
641 |
|
642 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
643 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
644 |
msgid "Change License"
|
645 |
msgstr "Cambia licenza"
|
646 |
|
647 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
648 |
msgid "Opt Out"
|
649 |
msgstr "Cancella iscrizione"
|
650 |
|
651 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
652 |
#: templates/account/partials/site.php43,
|
653 |
#: templates/account/partials/site.php:161
|
654 |
msgid "Opt In"
|
655 |
msgstr "Iscriviti"
|
656 |
|
657 |
+
#: includes/class-freemius.php:19245
|
658 |
msgid "Please follow these steps to complete the upgrade"
|
659 |
msgstr "Segui i passi seguenti per completare l'aggiornamento"
|
660 |
|
661 |
+
#: includes/class-freemius.php:19249
|
662 |
msgid "Download the latest %s version"
|
663 |
msgstr "Scarica l'ultima versione di %s"
|
664 |
|
665 |
+
#: includes/class-freemius.php:19253
|
666 |
msgid "Upload and activate the downloaded version"
|
667 |
msgstr "Carica e attiva la versione scaricata"
|
668 |
|
669 |
+
#: includes/class-freemius.php:19255
|
670 |
msgid "How to upload and activate?"
|
671 |
msgstr "Come faccio a caricare ed attivare?"
|
672 |
|
673 |
+
#: includes/class-freemius.php:19384
|
674 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
675 |
+
msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
|
676 |
|
677 |
+
#: includes/class-freemius.php:19545
|
678 |
msgid "Auto installation only works for opted-in users."
|
679 |
msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
|
680 |
|
681 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
682 |
+
#: includes/class-fs-plugin-updater.php713,
|
683 |
+
#: includes/class-fs-plugin-updater.php:727
|
684 |
msgid "Invalid module ID."
|
685 |
msgstr "ID modulo non valida."
|
686 |
|
687 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
688 |
msgid "Premium version already active."
|
689 |
msgstr "Versione Premium già attiva."
|
690 |
|
691 |
+
#: includes/class-freemius.php:19571
|
692 |
msgid "You do not have a valid license to access the premium version."
|
693 |
msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
|
694 |
|
695 |
+
#: includes/class-freemius.php:19578
|
696 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
697 |
msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
|
698 |
|
699 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
700 |
msgid "Premium add-on version already installed."
|
701 |
msgstr "Versione Premium dell'add-on già installata."
|
702 |
|
703 |
+
#: includes/class-freemius.php:19941
|
704 |
msgid "View paid features"
|
705 |
msgstr "Vedi funzionalità a pagamento"
|
706 |
|
707 |
+
#: includes/class-freemius.php:20251
|
708 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
709 |
+
msgstr "Grazie per utilizzare %se i suoi addon!"
|
710 |
+
|
711 |
+
#: includes/class-freemius.php:20252
|
712 |
+
msgid "Thank you so much for using %s!"
|
713 |
+
msgstr "Grazie per utilizzare %s!"
|
714 |
+
|
715 |
+
#: includes/class-freemius.php:20258
|
716 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
717 |
+
msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
|
718 |
+
|
719 |
+
#: includes/class-freemius.php:20262
|
720 |
+
msgid "Thank you so much for using our products!"
|
721 |
+
msgstr "Grazie per utilizzare i nostri prodotti!"
|
722 |
+
|
723 |
+
#: includes/class-freemius.php:20263
|
724 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
725 |
+
msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
|
726 |
+
|
727 |
+
#: includes/class-freemius.php:20282
|
728 |
+
msgid "%s and its add-ons"
|
729 |
+
msgstr "%se i suoi addon"
|
730 |
|
731 |
+
#: includes/class-freemius.php:20291
|
732 |
+
msgid "Products"
|
733 |
+
msgstr "Prodotti"
|
734 |
+
|
735 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
736 |
+
msgid "Yes"
|
737 |
+
msgstr "Si"
|
738 |
+
|
739 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
740 |
+
msgid "send me security & feature updates, educational content and offers."
|
741 |
+
msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
|
742 |
+
|
743 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
744 |
+
msgid "No"
|
745 |
+
msgstr "No"
|
746 |
+
|
747 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
748 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
749 |
+
msgstr "%snon %smi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
|
750 |
+
|
751 |
+
#: includes/class-freemius.php:20312
|
752 |
+
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 🙂"
|
753 |
+
msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti"
|
754 |
+
|
755 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
756 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
757 |
+
msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
|
758 |
+
|
759 |
+
#: includes/class-freemius.php:20598
|
760 |
+
msgid "License key is empty."
|
761 |
+
msgstr "La chiave licenza è vuota."
|
762 |
+
|
763 |
+
#: includes/class-fs-plugin-updater.php184,
|
764 |
+
#: includes/class-fs-plugin-updater.php:219
|
765 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
766 |
+
msgstr "%sRinnova la tua licenza ora%s per accedere alla versione %s con aggiornamenti di sicurezza e funzionalità e supporto."
|
767 |
+
|
768 |
+
#: includes/class-fs-plugin-updater.php:776
|
769 |
msgid "Installing plugin: %s"
|
770 |
msgstr "Installazione plugin: %s"
|
771 |
|
772 |
+
#: includes/class-fs-plugin-updater.php:817
|
773 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
774 |
+
msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
|
775 |
|
776 |
+
#: includes/class-fs-plugin-updater.php:923
|
777 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
778 |
msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
|
779 |
|
780 |
+
#: includes/fs-plugin-info-dialog.php336,
|
781 |
+
#: templates/account/partials/addon.php:287
|
782 |
msgctxt "verb"
|
783 |
msgid "Purchase"
|
784 |
msgstr "Acquisto"
|
785 |
|
786 |
+
#: includes/fs-plugin-info-dialog.php:339
|
787 |
msgid "Start my free %s"
|
788 |
msgstr "Inizia la mia %s"
|
789 |
|
790 |
+
#: includes/fs-plugin-info-dialog.php:380
|
791 |
+
msgid "Install Free Version Now"
|
792 |
+
msgstr "Installa la versione gratuita ora"
|
793 |
+
|
794 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
795 |
+
#: templates/account/partials/addon.php267,
|
796 |
+
#: templates/account/partials/addon.php:317
|
797 |
+
msgid "Install Now"
|
798 |
+
msgstr "Installa ora"
|
799 |
+
|
800 |
+
#: includes/fs-plugin-info-dialog.php:392
|
801 |
+
msgctxt "as download latest version"
|
802 |
+
msgid "Download Latest Free Version"
|
803 |
+
msgstr "Scarica l'ultima versione gratuita"
|
804 |
+
|
805 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
806 |
+
#: templates/account/partials/addon.php:21
|
807 |
msgctxt "as download latest version"
|
808 |
msgid "Download Latest"
|
809 |
msgstr "Scarica l'ultima versione"
|
810 |
|
811 |
+
#: includes/fs-plugin-info-dialog.php:403
|
812 |
+
msgid "Install Free Version Update Now"
|
813 |
+
msgstr "Installa l'ultima versione gratuita"
|
|
|
814 |
|
815 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
816 |
msgid "Install Update Now"
|
817 |
msgstr "Installa l'aggiornamento ora"
|
818 |
|
819 |
+
#: includes/fs-plugin-info-dialog.php:415
|
820 |
+
msgid "Newer Free Version (%s) Installed"
|
821 |
+
msgstr "Nuova versione gratuita (%s) installata"
|
822 |
+
|
823 |
+
#: includes/fs-plugin-info-dialog.php:416
|
824 |
msgid "Newer Version (%s) Installed"
|
825 |
msgstr "Versione più recente (%s) installata"
|
826 |
|
827 |
+
#: includes/fs-plugin-info-dialog.php:424
|
828 |
+
msgid "Latest Free Version Installed"
|
829 |
+
msgstr "Ultima versione gratuita installata"
|
830 |
+
|
831 |
+
#: includes/fs-plugin-info-dialog.php:425
|
832 |
msgid "Latest Version Installed"
|
833 |
msgstr "Versione più recente installata"
|
834 |
|
835 |
+
#: includes/fs-plugin-info-dialog.php:580
|
836 |
msgctxt "Plugin installer section title"
|
837 |
msgid "Description"
|
838 |
msgstr "Descrizione"
|
839 |
|
840 |
+
#: includes/fs-plugin-info-dialog.php:581
|
841 |
msgctxt "Plugin installer section title"
|
842 |
msgid "Installation"
|
843 |
msgstr "Installazione"
|
844 |
|
845 |
+
#: includes/fs-plugin-info-dialog.php:582
|
846 |
msgctxt "Plugin installer section title"
|
847 |
msgid "FAQ"
|
848 |
msgstr "FAQ"
|
849 |
|
850 |
+
#: includes/fs-plugin-info-dialog.php583,
|
851 |
#: templates/plugin-info/description.php:55
|
852 |
msgid "Screenshots"
|
853 |
msgstr "Screenshot"
|
854 |
|
855 |
+
#: includes/fs-plugin-info-dialog.php:584
|
856 |
msgctxt "Plugin installer section title"
|
857 |
msgid "Changelog"
|
858 |
msgstr "Changelog"
|
859 |
|
860 |
+
#: includes/fs-plugin-info-dialog.php:585
|
861 |
msgctxt "Plugin installer section title"
|
862 |
msgid "Reviews"
|
863 |
msgstr "Recensioni"
|
864 |
|
865 |
+
#: includes/fs-plugin-info-dialog.php:586
|
866 |
msgctxt "Plugin installer section title"
|
867 |
msgid "Other Notes"
|
868 |
msgstr "Altre note"
|
869 |
|
870 |
+
#: includes/fs-plugin-info-dialog.php:601
|
871 |
msgctxt "Plugin installer section title"
|
872 |
msgid "Features & Pricing"
|
873 |
msgstr "Caratteristiche & prezzi"
|
874 |
|
875 |
+
#: includes/fs-plugin-info-dialog.php:611
|
876 |
msgid "Plugin Install"
|
877 |
msgstr "Installazione del plugin"
|
878 |
|
879 |
+
#: includes/fs-plugin-info-dialog.php:683
|
880 |
msgctxt "e.g. Professional Plan"
|
881 |
msgid "%s Plan"
|
882 |
msgstr "Piano %s"
|
883 |
|
884 |
+
#: includes/fs-plugin-info-dialog.php:709
|
885 |
msgctxt "e.g. the best product"
|
886 |
msgid "Best"
|
887 |
msgstr "Migliore"
|
888 |
|
889 |
+
#: includes/fs-plugin-info-dialog.php715,
|
890 |
+
#: includes/fs-plugin-info-dialog.php:735
|
891 |
msgctxt "as every month"
|
892 |
msgid "Monthly"
|
893 |
msgstr "Mensilmente"
|
894 |
|
895 |
+
#: includes/fs-plugin-info-dialog.php:718
|
896 |
msgctxt "as once a year"
|
897 |
msgid "Annual"
|
898 |
msgstr "Annuale"
|
899 |
|
900 |
+
#: includes/fs-plugin-info-dialog.php:721
|
901 |
msgid "Lifetime"
|
902 |
msgstr "Tutta la vita"
|
903 |
|
904 |
+
#: includes/fs-plugin-info-dialog.php735,
|
905 |
+
#: includes/fs-plugin-info-dialog.php737,
|
906 |
+
#: includes/fs-plugin-info-dialog.php:739
|
907 |
msgctxt "e.g. billed monthly"
|
908 |
msgid "Billed %s"
|
909 |
msgstr "Fatturato %s"
|
910 |
|
911 |
+
#: includes/fs-plugin-info-dialog.php:737
|
912 |
msgctxt "as once a year"
|
913 |
msgid "Annually"
|
914 |
msgstr "Annualmente"
|
915 |
|
916 |
+
#: includes/fs-plugin-info-dialog.php:739
|
917 |
msgctxt "as once a year"
|
918 |
msgid "Once"
|
919 |
msgstr "Una volta"
|
920 |
|
921 |
+
#: includes/fs-plugin-info-dialog.php:745
|
922 |
msgid "Single Site License"
|
923 |
msgstr "Licenza per sito singolo"
|
924 |
|
925 |
+
#: includes/fs-plugin-info-dialog.php:747
|
926 |
msgid "Unlimited Licenses"
|
927 |
msgstr "Licenze illimitate"
|
928 |
|
929 |
+
#: includes/fs-plugin-info-dialog.php:749
|
930 |
msgid "Up to %s Sites"
|
931 |
msgstr "Fino a %s siti"
|
932 |
|
933 |
+
#: includes/fs-plugin-info-dialog.php759,
|
934 |
#: templates/plugin-info/features.php:82
|
935 |
msgctxt "as monthly period"
|
936 |
msgid "mo"
|
937 |
msgstr "mese"
|
938 |
|
939 |
+
#: includes/fs-plugin-info-dialog.php766,
|
940 |
#: templates/plugin-info/features.php:80
|
941 |
msgctxt "as annual period"
|
942 |
msgid "year"
|
943 |
msgstr "anno"
|
944 |
|
945 |
+
#: includes/fs-plugin-info-dialog.php:820
|
946 |
msgctxt "noun"
|
947 |
msgid "Price"
|
948 |
msgstr "Prezzo"
|
949 |
|
950 |
+
#: includes/fs-plugin-info-dialog.php:868
|
951 |
msgid "Save %s"
|
952 |
msgstr "Risparmia %s"
|
953 |
|
954 |
+
#: includes/fs-plugin-info-dialog.php:878
|
955 |
msgid "No commitment for %s - cancel anytime"
|
956 |
msgstr "Nessun impegno con %s - cancella quando vuoi"
|
957 |
|
958 |
+
#: includes/fs-plugin-info-dialog.php:881
|
959 |
msgid "After your free %s, pay as little as %s"
|
960 |
msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
|
961 |
|
962 |
+
#: includes/fs-plugin-info-dialog.php:892
|
963 |
msgid "Details"
|
964 |
msgstr "Dettagli"
|
965 |
|
966 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
967 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
968 |
+
#: templates/account/partials/addon.php:28
|
969 |
msgctxt "product version"
|
970 |
msgid "Version"
|
971 |
msgstr "Versione"
|
972 |
|
973 |
+
#: includes/fs-plugin-info-dialog.php:903
|
974 |
msgctxt "as the plugin author"
|
975 |
msgid "Author"
|
976 |
msgstr "Autore"
|
977 |
|
978 |
+
#: includes/fs-plugin-info-dialog.php:910
|
979 |
msgid "Last Updated"
|
980 |
msgstr "Ultimo aggiornamento"
|
981 |
|
982 |
+
#: includes/fs-plugin-info-dialog.php:915
|
983 |
msgctxt "x-ago"
|
984 |
msgid "%s ago"
|
985 |
msgstr "%s fa"
|
986 |
|
987 |
+
#: includes/fs-plugin-info-dialog.php:924
|
988 |
msgid "Requires WordPress Version"
|
989 |
msgstr "Richiede la versione di WordPress"
|
990 |
|
991 |
+
#: includes/fs-plugin-info-dialog.php:925
|
992 |
msgid "%s or higher"
|
993 |
msgstr "%s o superiore"
|
994 |
|
995 |
+
#: includes/fs-plugin-info-dialog.php:932
|
996 |
msgid "Compatible up to"
|
997 |
msgstr "Compatibile fino a"
|
998 |
|
999 |
+
#: includes/fs-plugin-info-dialog.php:940
|
1000 |
msgid "Downloaded"
|
1001 |
msgstr "Scaricato"
|
1002 |
|
1003 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1004 |
msgid "%s time"
|
1005 |
msgstr "% volta"
|
1006 |
|
1007 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1008 |
msgid "%s times"
|
1009 |
msgstr "%s volte"
|
1010 |
|
1011 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1012 |
msgid "WordPress.org Plugin Page"
|
1013 |
msgstr "Pagina dei plugin di WordPress.org"
|
1014 |
|
1015 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1016 |
msgid "Plugin Homepage"
|
1017 |
msgstr "Homepage del plugin"
|
1018 |
|
1019 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1020 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1021 |
msgid "Donate to this plugin"
|
1022 |
msgstr "Fai una donazione a questo plugin"
|
1023 |
|
1024 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1025 |
msgid "Average Rating"
|
1026 |
msgstr "Valutazione media"
|
1027 |
|
1028 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1029 |
msgid "based on %s"
|
1030 |
msgstr "basato su %s"
|
1031 |
|
1032 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1033 |
msgid "%s rating"
|
1034 |
msgstr "%s valutazione"
|
1035 |
|
1036 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1037 |
msgid "%s ratings"
|
1038 |
msgstr "%s valutazioni"
|
1039 |
|
1040 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1041 |
msgid "%s star"
|
1042 |
msgstr "%s stella"
|
1043 |
|
1044 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1045 |
msgid "%s stars"
|
1046 |
msgstr "%s stelle"
|
1047 |
|
1048 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1049 |
msgid "Click to see reviews that provided a rating of %s"
|
1050 |
msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
|
1051 |
|
1052 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1053 |
msgid "Contributors"
|
1054 |
msgstr "Contributori"
|
1055 |
|
1056 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1057 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1058 |
msgid "Warning"
|
1059 |
msgstr "Avviso"
|
1060 |
|
1061 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1062 |
msgid "This plugin has not been tested with your current version of WordPress."
|
1063 |
msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
|
1064 |
|
1065 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1066 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1067 |
msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
|
1068 |
|
1069 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1070 |
msgid "Paid add-on must be deployed to Freemius."
|
1071 |
msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
|
1072 |
|
1073 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1074 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1075 |
msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
|
1076 |
|
1077 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1078 |
+
#: templates/account/partials/site.php:295
|
1079 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1080 |
msgstr "Effettuare il downgrade del piano interromperà immediatamente tutti i futuri pagamenti ricorrenti e la licenza del piano %s scadrà in %s."
|
1081 |
|
1082 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1083 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1084 |
msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
|
1085 |
|
1086 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1087 |
+
#: templates/account/partials/site.php:296
|
1088 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1089 |
+
msgstr "Puoi continuare ad usufruire di tutte le funzionalità di %sma non potrai accedere agli aggiornamenti e supporto di %s."
|
1090 |
|
1091 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1092 |
+
#: templates/account/partials/site.php:297
|
1093 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1094 |
msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
|
1095 |
|
1096 |
#. translators: %s: Plan title (e.g. "Professional")
|
1097 |
#: templates/account.php86,
|
1098 |
+
#: templates/account/partials/activate-license-button.php31,
|
1099 |
+
#: templates/account/partials/addon.php:27
|
1100 |
msgid "Activate %s Plan"
|
1101 |
msgstr "Attivare il piano %s"
|
1102 |
|
1103 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1104 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1105 |
+
#: templates/account/partials/site.php:275
|
1106 |
msgid "Auto renews in %s"
|
1107 |
msgstr "Rinnovo automatico in %s"
|
1108 |
|
1109 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1110 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1111 |
+
#: templates/account/partials/site.php:277
|
1112 |
msgid "Expires in %s"
|
1113 |
msgstr "Scade in %s"
|
1114 |
|
1115 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1116 |
msgctxt "as synchronize license"
|
1117 |
msgid "Sync License"
|
1118 |
msgstr "Sincronizza la licenza"
|
1119 |
|
1120 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1121 |
msgid "Cancel Trial"
|
1122 |
msgstr "Annulla prova gratuita"
|
1123 |
|
1124 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1125 |
msgid "Change Plan"
|
1126 |
msgstr "Cambia piano"
|
1127 |
|
1128 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1129 |
msgctxt "verb"
|
1130 |
msgid "Upgrade"
|
1131 |
msgstr "Aggiornamento"
|
1132 |
|
1133 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1134 |
+
#: templates/account/partials/site.php:298
|
1135 |
msgctxt "verb"
|
1136 |
msgid "Downgrade"
|
1137 |
msgstr "Downgrade"
|
1138 |
|
1139 |
#: templates/account.php99, templates/add-ons.php126,
|
1140 |
#: templates/plugin-info/features.php72,
|
1141 |
+
#: templates/account/partials/addon.php40,
|
1142 |
#: templates/account/partials/site.php:31
|
1143 |
msgid "Free"
|
1144 |
msgstr "Gratuito"
|
1145 |
|
1146 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1147 |
msgid "Activate"
|
1148 |
msgstr "Attiva"
|
1149 |
|
1150 |
+
#: templates/account.php101, templates/debug.php361,
|
1151 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1152 |
+
#: templates/account/partials/addon.php:42
|
1153 |
msgctxt "as product pricing plan"
|
1154 |
msgid "Plan"
|
1155 |
msgstr "Piano"
|
1156 |
|
1157 |
+
#: templates/account.php:154
|
1158 |
msgid "Free Trial"
|
1159 |
msgstr "Prova gratuita"
|
1160 |
|
1161 |
+
#: templates/account.php:165
|
1162 |
msgid "Account Details"
|
1163 |
msgstr "Dettagli dell'account"
|
1164 |
|
1165 |
+
#: templates/account.php:175
|
1166 |
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?"
|
1167 |
msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
|
1168 |
|
1169 |
+
#: templates/account.php:177
|
1170 |
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?"
|
1171 |
+
msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
|
1172 |
|
1173 |
+
#: templates/account.php:180
|
1174 |
msgid "Delete Account"
|
1175 |
msgstr "Elimina Account"
|
1176 |
|
1177 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1178 |
#: templates/account/partials/deactivate-license-button.php:35
|
1179 |
msgid "Deactivate License"
|
1180 |
msgstr "Disattiva licenza"
|
1181 |
|
1182 |
+
#: templates/account.php:210
|
1183 |
msgid "Are you sure you want to proceed?"
|
1184 |
msgstr "Sei sicuro di voler procedere?"
|
1185 |
|
1186 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1187 |
msgid "Cancel Subscription"
|
1188 |
msgstr "Annulla sottoscrizione"
|
1189 |
|
1190 |
+
#: templates/account.php:239
|
1191 |
msgctxt "as synchronize"
|
1192 |
msgid "Sync"
|
1193 |
msgstr "Sincronizza"
|
1194 |
|
1195 |
+
#: templates/account.php253, templates/debug.php:477
|
1196 |
msgid "Name"
|
1197 |
msgstr "Nome"
|
1198 |
|
1199 |
+
#: templates/account.php259, templates/debug.php:478
|
1200 |
msgid "Email"
|
1201 |
msgstr "Email"
|
1202 |
|
1203 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1204 |
msgid "User ID"
|
1205 |
msgstr "ID utente"
|
1206 |
|
1207 |
+
#: templates/account.php:274
|
1208 |
msgid "Site ID"
|
1209 |
msgstr "ID del sito"
|
1210 |
|
1211 |
+
#: templates/account.php:277
|
1212 |
msgid "No ID"
|
1213 |
msgstr "Nessun ID"
|
1214 |
|
1215 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1216 |
+
#: templates/debug.php443, templates/debug.php480,
|
1217 |
#: templates/account/partials/site.php:219
|
1218 |
msgid "Public Key"
|
1219 |
msgstr "Chiave pubblica"
|
1220 |
|
1221 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1222 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1223 |
msgid "Secret Key"
|
1224 |
msgstr "Chiave segreta"
|
1225 |
|
1226 |
+
#: templates/account.php:291
|
1227 |
msgctxt "as secret encryption key missing"
|
1228 |
msgid "No Secret"
|
1229 |
msgstr "Nessuna chiave"
|
1230 |
|
1231 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1232 |
#: templates/account/partials/site.php:114
|
1233 |
msgid "Trial"
|
1234 |
msgstr "Prova gratuita"
|
1235 |
|
1236 |
+
#: templates/account.php329, templates/debug.php521,
|
1237 |
#: templates/account/partials/site.php:248
|
1238 |
msgid "License Key"
|
1239 |
msgstr "Chiave della licenza"
|
1240 |
|
1241 |
+
#: templates/account.php:359
|
1242 |
msgid "not verified"
|
1243 |
msgstr "non verificato"
|
1244 |
|
1245 |
+
#: templates/account.php:416
|
1246 |
msgid "Premium version"
|
1247 |
msgstr "Versione premium"
|
1248 |
|
1249 |
+
#: templates/account.php:418
|
1250 |
msgid "Free version"
|
1251 |
msgstr "Versione gratuita"
|
1252 |
|
1253 |
+
#: templates/account.php:430
|
1254 |
msgid "Verify Email"
|
1255 |
msgstr "Verifica email"
|
1256 |
|
1257 |
+
#: templates/account.php:441
|
1258 |
msgid "Download %s Version"
|
1259 |
msgstr "Scarica la versione %s"
|
1260 |
|
1261 |
+
#: templates/account.php455, templates/account.php636,
|
1262 |
#: templates/account/partials/site.php237,
|
1263 |
#: templates/account/partials/site.php:255
|
1264 |
msgctxt "verb"
|
1265 |
msgid "Show"
|
1266 |
msgstr "Mostra"
|
1267 |
|
1268 |
+
#: templates/account.php:469
|
1269 |
msgid "What is your %s?"
|
1270 |
msgstr "Qual è il tuo %s?"
|
1271 |
|
1272 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1273 |
msgctxt "verb"
|
1274 |
msgid "Edit"
|
1275 |
msgstr "Modifica"
|
1276 |
|
1277 |
+
#: templates/account.php:490
|
1278 |
msgid "Sites"
|
1279 |
msgstr "Siti"
|
1280 |
|
1281 |
+
#: templates/account.php:501
|
1282 |
msgid "Search by address"
|
1283 |
+
msgstr "Cerca per indirizzo"
|
1284 |
|
1285 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1286 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1287 |
+
#: templates/debug.php514, templates/debug.php587,
|
1288 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1289 |
msgid "ID"
|
1290 |
msgstr "ID"
|
1291 |
|
1292 |
+
#: templates/account.php511, templates/debug.php:357
|
1293 |
msgid "Address"
|
1294 |
+
msgstr "Indirizzo"
|
1295 |
|
1296 |
+
#: templates/account.php:512
|
1297 |
msgid "License"
|
1298 |
msgstr "Licenza"
|
1299 |
|
1300 |
+
#: templates/account.php:513
|
1301 |
msgid "Plan"
|
1302 |
msgstr "Piano"
|
1303 |
|
1304 |
+
#: templates/account.php:561
|
1305 |
msgctxt "as software license"
|
1306 |
msgid "License"
|
1307 |
msgstr "Licenza"
|
1308 |
|
1309 |
+
#: templates/account.php:630
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1310 |
msgctxt "verb"
|
1311 |
msgid "Hide"
|
1312 |
msgstr "Nascondi"
|
1313 |
|
1314 |
+
#: templates/account.php:665
|
1315 |
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?"
|
1316 |
+
msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
|
1317 |
|
1318 |
#: templates/add-ons.php:36
|
1319 |
msgid "Add Ons for %s"
|
1367 |
msgid "Hey %s,"
|
1368 |
msgstr "Hey %s,"
|
1369 |
|
1370 |
+
#: templates/connect.php:152
|
1371 |
msgid "Allow & Continue"
|
1372 |
msgstr "Consenti & Continua"
|
1373 |
|
1374 |
+
#: templates/connect.php:156
|
1375 |
msgid "Re-send activation email"
|
1376 |
msgstr "Invia nuovamente l'email di attivazione"
|
1377 |
|
1378 |
+
#: templates/connect.php:160
|
1379 |
msgid "Thanks %s!"
|
1380 |
msgstr "Grazie %s!"
|
1381 |
|
1382 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1383 |
msgid "Agree & Activate License"
|
1384 |
msgstr "Accetta e attiva la licenza"
|
1385 |
|
1386 |
+
#: templates/connect.php:179
|
1387 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1388 |
msgstr "Grazie per aver acquistato %s! Per iniziare, per favore inserisci la tua chiave di licenza:"
|
1389 |
|
1390 |
+
#: templates/connect.php:186
|
1391 |
+
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."
|
1392 |
+
msgstr "Non perdere nessun aggiornamento importante, accetta gli aggiornamenti di sicurezza e funzionalità, contenuti formativi, offerte e il tracciamento diagnostico senza dati sensibili con %4$s."
|
1393 |
+
|
1394 |
+
#: templates/connect.php:187
|
1395 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1396 |
+
msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e notifiche di funzionalità e il tracciamento diagnostico senza dati sensibili con %4$s."
|
1397 |
|
1398 |
+
#: templates/connect.php:193
|
1399 |
+
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."
|
1400 |
+
msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$scontinuerà a funzionare."
|
1401 |
|
1402 |
+
#: templates/connect.php:194
|
1403 |
+
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."
|
1404 |
+
msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$s continuerà a funzionare."
|
1405 |
+
|
1406 |
+
#: templates/connect.php:228
|
1407 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1408 |
+
msgstr "Siamo felici di presentarvi il supporto al sistema multi network di Freemius."
|
1409 |
|
1410 |
+
#: templates/connect.php:231
|
1411 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1412 |
+
msgstr "Durante la procedura di aggiornamento abbiamo individuato%dsito/i che sono in attesa della attivazione della licenza."
|
1413 |
|
1414 |
+
#: templates/connect.php:233
|
1415 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1416 |
+
msgstr "Se vuoi utilizzare %ssu questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."
|
1417 |
|
1418 |
+
#: templates/connect.php:235
|
1419 |
msgid "%s's paid features"
|
1420 |
+
msgstr "Funzionalità a pagamento di %s"
|
1421 |
|
1422 |
+
#: templates/connect.php:240
|
1423 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1424 |
+
msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente nella tua pagina di attivazione network di %s."
|
1425 |
|
1426 |
+
#: templates/connect.php:242
|
1427 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1428 |
+
msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo."
|
1429 |
|
1430 |
+
#: templates/connect.php251, templates/forms/license-activation.php:46
|
1431 |
msgid "License key"
|
1432 |
msgstr "Chiave di licenza"
|
1433 |
|
1434 |
+
#: templates/connect.php254, templates/forms/license-activation.php:19
|
1435 |
msgid "Can't find your license key?"
|
1436 |
msgstr "Non trovi la tua chiave di licenza?"
|
1437 |
|
1438 |
+
#: templates/connect.php302, templates/connect.php617,
|
1439 |
#: templates/forms/deactivation/retry-skip.php:20
|
1440 |
msgctxt "verb"
|
1441 |
msgid "Skip"
|
1442 |
msgstr "Salta"
|
1443 |
|
1444 |
+
#: templates/connect.php:305
|
1445 |
msgid "Delegate to Site Admins"
|
1446 |
+
msgstr "Delega ai proprietari del sito"
|
1447 |
|
1448 |
+
#: templates/connect.php:305
|
1449 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1450 |
+
msgstr "Se fai clic questa decisione sarà delegata agli amministratori del sito."
|
1451 |
|
1452 |
+
#: templates/connect.php:333
|
1453 |
msgid "Your Profile Overview"
|
1454 |
msgstr "Panoramica del tuo profilo"
|
1455 |
|
1456 |
+
#: templates/connect.php:334
|
1457 |
msgid "Name and email address"
|
1458 |
msgstr "Nome ed indirizzo email"
|
1459 |
|
1460 |
+
#: templates/connect.php:339
|
1461 |
msgid "Your Site Overview"
|
1462 |
msgstr "Panoramica del tuo sito"
|
1463 |
|
1464 |
+
#: templates/connect.php:340
|
1465 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1466 |
msgstr "URL del sito, versione di WP, informazioni PHP, plugin e temi"
|
1467 |
|
1468 |
+
#: templates/connect.php:345
|
1469 |
msgid "Admin Notices"
|
1470 |
msgstr "Avvisi amministratore"
|
1471 |
|
1472 |
+
#: templates/connect.php346, templates/connect.php:362
|
1473 |
msgid "Updates, announcements, marketing, no spam"
|
1474 |
msgstr "Aggiornamenti, annunci, marketing, no spam"
|
1475 |
|
1476 |
+
#: templates/connect.php:351
|
1477 |
msgid "Current %s Events"
|
1478 |
+
msgstr "Eventi %sattuali"
|
1479 |
|
1480 |
+
#: templates/connect.php:352
|
1481 |
msgid "Activation, deactivation and uninstall"
|
1482 |
msgstr "Attiva, disattivazione e disinstallazione"
|
1483 |
|
1484 |
+
#: templates/connect.php:361
|
1485 |
msgid "Newsletter"
|
1486 |
msgstr "Newsletter"
|
1487 |
|
1488 |
+
#: templates/connect.php378, templates/forms/license-activation.php:38
|
1489 |
msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1490 |
+
msgstr "%1$sinvierà periodicamente dei dati a %2$sper verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."
|
1491 |
|
1492 |
+
#: templates/connect.php:383
|
1493 |
msgid "What permissions are being granted?"
|
1494 |
msgstr "Quali autorizzazioni vengono concesse?"
|
1495 |
|
1496 |
+
#: templates/connect.php:404
|
1497 |
msgid "Don't have a license key?"
|
1498 |
msgstr "Non hai una chiave di licenza?"
|
1499 |
|
1500 |
+
#: templates/connect.php:405
|
1501 |
msgid "Activate Free Version"
|
1502 |
msgstr "Attiva versione gratuita"
|
1503 |
|
1504 |
+
#: templates/connect.php:407
|
1505 |
msgid "Have a license key?"
|
1506 |
msgstr "Hai una chiave di licenza?"
|
1507 |
|
1508 |
+
#: templates/connect.php:415
|
1509 |
msgid "Privacy Policy"
|
1510 |
msgstr "Politica sulla privacy"
|
1511 |
|
1512 |
+
#: templates/connect.php:417
|
1513 |
msgid "Terms of Service"
|
1514 |
msgstr "Termini del Servizio"
|
1515 |
|
1516 |
+
#: templates/connect.php:750
|
1517 |
msgctxt "as in the process of sending an email"
|
1518 |
msgid "Sending email"
|
1519 |
msgstr "Invio email"
|
1520 |
|
1521 |
+
#: templates/connect.php:751
|
1522 |
msgctxt "as activating plugin"
|
1523 |
msgid "Activating"
|
1524 |
msgstr "Attivazione"
|
1546 |
msgid "Debugging"
|
1547 |
msgstr "Debugging"
|
1548 |
|
1549 |
+
#: templates/debug.php54, templates/debug.php238, templates/debug.php364,
|
1550 |
+
#: templates/debug.php:482
|
1551 |
msgid "Actions"
|
1552 |
msgstr "Azioni"
|
1553 |
|
1565 |
|
1566 |
#: templates/debug.php:79
|
1567 |
msgid "Clear Updates Transients"
|
1568 |
+
msgstr "Svuota le Transient degli aggiornamenti"
|
1569 |
|
1570 |
#: templates/debug.php:86
|
1571 |
msgid "Sync Data From Server"
|
1612 |
msgid "Themes"
|
1613 |
msgstr "Temi"
|
1614 |
|
1615 |
+
#: templates/debug.php227, templates/debug.php359, templates/debug.php441,
|
1616 |
#: templates/debug/scheduled-crons.php:80
|
1617 |
msgid "Slug"
|
1618 |
msgstr "Slug"
|
1619 |
|
1620 |
+
#: templates/debug.php229, templates/debug.php:440
|
1621 |
msgid "Title"
|
1622 |
msgstr "Titolo"
|
1623 |
|
1636 |
|
1637 |
#: templates/debug.php:236
|
1638 |
msgid "Network User"
|
1639 |
+
msgstr "Utente Network"
|
1640 |
|
1641 |
+
#: templates/debug.php:273
|
1642 |
msgctxt "as connection was successful"
|
1643 |
msgid "Connected"
|
1644 |
msgstr "Connesso"
|
1645 |
|
1646 |
+
#: templates/debug.php:274
|
1647 |
msgctxt "as connection blocked"
|
1648 |
msgid "Blocked"
|
1649 |
msgstr "Bloccato"
|
1650 |
|
1651 |
+
#: templates/debug.php:310
|
1652 |
msgid "Simulate Trial"
|
1653 |
msgstr "Simula versione di prova"
|
1654 |
|
1655 |
+
#: templates/debug.php:322
|
1656 |
msgid "Simulate Network Upgrade"
|
1657 |
+
msgstr "Simula aggiornamento network"
|
1658 |
|
1659 |
+
#: templates/debug.php:348
|
1660 |
msgid "%s Installs"
|
1661 |
msgstr "%s Installazioni"
|
1662 |
|
1663 |
+
#: templates/debug.php:350
|
1664 |
msgctxt "like websites"
|
1665 |
msgid "Sites"
|
1666 |
msgstr "Siti"
|
1667 |
|
1668 |
+
#: templates/debug.php356, templates/account/partials/site.php:148
|
1669 |
msgid "Blog ID"
|
1670 |
msgstr "Blog ID"
|
1671 |
|
1672 |
+
#: templates/debug.php421, templates/debug.php499,
|
1673 |
+
#: templates/account/partials/addon.php:334
|
1674 |
+
msgctxt "verb"
|
1675 |
+
msgid "Delete"
|
1676 |
+
msgstr "Elimina"
|
1677 |
+
|
1678 |
+
#: templates/debug.php:435
|
1679 |
msgid "Add Ons of module %s"
|
1680 |
msgstr "Addon del modulo %s"
|
1681 |
|
1682 |
+
#: templates/debug.php:472
|
1683 |
msgid "Users"
|
1684 |
msgstr "Utenti"
|
1685 |
|
1686 |
+
#: templates/debug.php:479
|
1687 |
msgid "Verified"
|
1688 |
msgstr "Verificato"
|
1689 |
|
1690 |
+
#: templates/debug.php:510
|
1691 |
msgid "%s Licenses"
|
1692 |
msgstr "%s Licenze"
|
1693 |
|
1694 |
+
#: templates/debug.php:515
|
1695 |
msgid "Plugin ID"
|
1696 |
msgstr "Plugin ID"
|
1697 |
|
1698 |
+
#: templates/debug.php:517
|
1699 |
msgid "Plan ID"
|
1700 |
msgstr "ID Piano"
|
1701 |
|
1702 |
+
#: templates/debug.php:518
|
1703 |
msgid "Quota"
|
1704 |
msgstr "Quota"
|
1705 |
|
1706 |
+
#: templates/debug.php:519
|
1707 |
msgid "Activated"
|
1708 |
msgstr "Attivato"
|
1709 |
|
1710 |
+
#: templates/debug.php:520
|
1711 |
msgid "Blocking"
|
1712 |
msgstr "Bloccato"
|
1713 |
|
1714 |
+
#: templates/debug.php:522
|
1715 |
msgctxt "as expiration date"
|
1716 |
msgid "Expiration"
|
1717 |
msgstr "Scadenza"
|
1718 |
|
1719 |
+
#: templates/debug.php:545
|
1720 |
msgid "Debug Log"
|
1721 |
msgstr "Debug Log"
|
1722 |
|
1723 |
+
#: templates/debug.php:549
|
1724 |
msgid "All Types"
|
1725 |
msgstr "Tutti i tipi"
|
1726 |
|
1727 |
+
#: templates/debug.php:556
|
1728 |
msgid "All Requests"
|
1729 |
msgstr "Tutte le richieste"
|
1730 |
|
1731 |
+
#: templates/debug.php561, templates/debug.php590,
|
1732 |
#: templates/debug/logger.php:25
|
1733 |
msgid "File"
|
1734 |
msgstr "File"
|
1735 |
|
1736 |
+
#: templates/debug.php562, templates/debug.php588,
|
1737 |
#: templates/debug/logger.php:23
|
1738 |
msgid "Function"
|
1739 |
msgstr "Funzione"
|
1740 |
|
1741 |
+
#: templates/debug.php:563
|
1742 |
msgid "Process ID"
|
1743 |
msgstr "ID processo"
|
1744 |
|
1745 |
+
#: templates/debug.php:564
|
1746 |
msgid "Logger"
|
1747 |
msgstr "Logger"
|
1748 |
|
1749 |
+
#: templates/debug.php565, templates/debug.php589,
|
1750 |
#: templates/debug/logger.php:24
|
1751 |
msgid "Message"
|
1752 |
msgstr "Messaggio"
|
1753 |
|
1754 |
+
#: templates/debug.php:567
|
1755 |
msgid "Filter"
|
1756 |
msgstr "Filtro"
|
1757 |
|
1758 |
+
#: templates/debug.php:575
|
1759 |
msgid "Download"
|
1760 |
msgstr "Download"
|
1761 |
|
1762 |
+
#: templates/debug.php586, templates/debug/logger.php:22
|
1763 |
msgid "Type"
|
1764 |
msgstr "Tipo"
|
1765 |
|
1766 |
+
#: templates/debug.php591, templates/debug/logger.php:26
|
1767 |
msgid "Timestamp"
|
1768 |
msgstr "Timestamp"
|
1769 |
|
1770 |
#: templates/secure-https-header.php:28
|
1771 |
msgid "Secure HTTPS %s page, running from an external domain"
|
1772 |
+
msgstr "Metti in sicurezza la pagina HTTPS %sgestita da un dominio esterno"
|
1773 |
|
1774 |
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1775 |
#: templates/plugin-info/features.php:43
|
1950 |
|
1951 |
#: templates/forms/affiliation.php:82
|
1952 |
msgid "Non-expiring"
|
1953 |
+
msgstr "Non in scadenza"
|
1954 |
|
1955 |
#: templates/forms/affiliation.php:85
|
1956 |
msgid "Apply to become an affiliate"
|
1958 |
|
1959 |
#: templates/forms/affiliation.php:104
|
1960 |
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1961 |
+
msgstr "La tua applicazione di affiliazione per %s è stata accettata! Accedi alla tua area di affiliazione a %s."
|
1962 |
|
1963 |
#: templates/forms/affiliation.php:119
|
1964 |
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."
|
1965 |
+
msgstr "Grazie per la partecipazione al nostro programma di affiliazione, valuteremo la tua richiesta durante i prossimi 14 giorni e ti contatteremo per maggiori informazioni."
|
1966 |
|
1967 |
#: templates/forms/affiliation.php:122
|
1968 |
msgid "Your affiliation account was temporarily suspended."
|
1969 |
+
msgstr "Il tuo account di affiliazione è stato sospeso temporaneamente."
|
1970 |
|
1971 |
#: templates/forms/affiliation.php:125
|
1972 |
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."
|
1973 |
+
msgstr "Grazie per la partecipazione al nostro programma di affiliazione, sfortunatamente abbiamo valutato di rifiutare la tua richiesta. Prova nuovamente fra 30 giorni."
|
1974 |
|
1975 |
#: templates/forms/affiliation.php:128
|
1976 |
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1977 |
+
msgstr "A causa della violazione dei nostri termini di affiliazione abbiamo deciso di bloccare temporaneamente il tuo account affiliativo. Se hai domande contatta il supporto."
|
1978 |
|
1979 |
#: templates/forms/affiliation.php:141
|
1980 |
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1981 |
+
msgstr "Ti piace %s? Diventa il nostro ambasciatore e guadagna denaro ;-)"
|
1982 |
|
1983 |
#: templates/forms/affiliation.php:142
|
1984 |
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1985 |
+
msgstr "Comunica nuovi clienti al nostro %se guadagna %s di commissione per ogni vendita avvenuta!"
|
1986 |
|
1987 |
#: templates/forms/affiliation.php:145
|
1988 |
msgid "Program Summary"
|
1989 |
+
msgstr "Sommario programma"
|
1990 |
|
1991 |
#: templates/forms/affiliation.php:147
|
1992 |
msgid "%s commission when a customer purchases a new license."
|
1993 |
+
msgstr "%scommissione quando un utente acquista una nuova lcienza."
|
1994 |
|
1995 |
#: templates/forms/affiliation.php:149
|
1996 |
msgid "Get commission for automated subscription renewals."
|
1997 |
+
msgstr "Ottieni delle commissioni dal sistema automatizzato di rinnovo."
|
1998 |
|
1999 |
#: templates/forms/affiliation.php:152
|
2000 |
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
2001 |
+
msgstr "%s cookie di tracciamento dopo che la prima visita per massimizzare i margini di guadagno. "
|
2002 |
|
2003 |
#: templates/forms/affiliation.php:155
|
2004 |
msgid "Unlimited commissions."
|
2005 |
+
msgstr "Commissioni illimitate."
|
2006 |
|
2007 |
#: templates/forms/affiliation.php:157
|
2008 |
msgid "%s minimum payout amount."
|
2009 |
+
msgstr "%s quantità minima per il pagamento."
|
2010 |
|
2011 |
#: templates/forms/affiliation.php:158
|
2012 |
msgid "Payouts are in USD and processed monthly via PayPal."
|
2013 |
+
msgstr "I pagamenti sono in Dollari Americani e processati mensilmente da PayPal."
|
2014 |
|
2015 |
#: templates/forms/affiliation.php:159
|
2016 |
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2017 |
+
msgstr "Ci riserviamo 30 giorni in caso di rimborsi, paghiamo le commissioni se sono più vecchie di 30 giorni."
|
2018 |
|
2019 |
#: templates/forms/affiliation.php:162
|
2020 |
msgid "Affiliate"
|
2021 |
+
msgstr "Affiliati"
|
2022 |
|
2023 |
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
2024 |
msgid "Email address"
|
2026 |
|
2027 |
#: templates/forms/affiliation.php:169
|
2028 |
msgid "Full name"
|
2029 |
+
msgstr "Nome completo"
|
2030 |
|
2031 |
#: templates/forms/affiliation.php:173
|
2032 |
msgid "PayPal account email address"
|
2033 |
+
msgstr "Indirizzo account email Paypal"
|
2034 |
|
2035 |
#: templates/forms/affiliation.php:177
|
2036 |
msgid "Where are you going to promote the %s?"
|
2037 |
+
msgstr "Dove vuoi promuovere %s?"
|
2038 |
|
2039 |
#: templates/forms/affiliation.php:179
|
2040 |
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2041 |
+
msgstr "Inserisci il dominio del tuo sito o altri siti da dove vuoi promuovere %s."
|
2042 |
|
2043 |
#: templates/forms/affiliation.php:181
|
2044 |
msgid "Add another domain"
|
2045 |
+
msgstr "Aggiungi un altro dominio"
|
2046 |
|
2047 |
#: templates/forms/affiliation.php:185
|
2048 |
msgid "Extra Domains"
|
2049 |
+
msgstr "Domini aggiuntivi"
|
2050 |
|
2051 |
#: templates/forms/affiliation.php:186
|
2052 |
msgid "Extra domains where you will be marketing the product from."
|
2053 |
+
msgstr "Domini aggiuntivi dove ci sarà il modulo promozionale."
|
2054 |
|
2055 |
#: templates/forms/affiliation.php:196
|
2056 |
msgid "Promotion methods"
|
2057 |
+
msgstr "Metodi promozionali"
|
2058 |
|
2059 |
#: templates/forms/affiliation.php:199
|
2060 |
msgid "Social media (Facebook, Twitter, etc.)"
|
2061 |
+
msgstr "Social network (Facebook, Twitter, ecc.)"
|
2062 |
|
2063 |
#: templates/forms/affiliation.php:203
|
2064 |
msgid "Mobile apps"
|
2065 |
+
msgstr "Applicazioni mobile"
|
2066 |
|
2067 |
#: templates/forms/affiliation.php:207
|
2068 |
msgid "Website, email, and social media statistics (optional)"
|
2069 |
+
msgstr "Siti, email e statistiche dei social network (opzionali)"
|
2070 |
|
2071 |
#: templates/forms/affiliation.php:210
|
2072 |
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)."
|
2073 |
+
msgstr "Facci sapere ogni sito o statistiche social valide, es: visite uniche mensili, numero di sottoscrizioni email, follower ecc (tratteremo queste informazioni come riservate)."
|
2074 |
|
2075 |
#: templates/forms/affiliation.php:214
|
2076 |
msgid "How will you promote us?"
|
2077 |
+
msgstr "Come ci promuoverai?"
|
2078 |
|
2079 |
#: templates/forms/affiliation.php:217
|
2080 |
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2081 |
+
msgstr "Fornisci i dettagli su come intendi promuovere %s. (sii più esplicativo possibile)"
|
2082 |
|
2083 |
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
2084 |
msgid "Cancel"
|
2086 |
|
2087 |
#: templates/forms/affiliation.php:225
|
2088 |
msgid "Become an affiliate"
|
2089 |
+
msgstr "Diventa un affiliato"
|
2090 |
|
2091 |
#: templates/forms/license-activation.php:20
|
2092 |
msgid "Please enter the license key that you received in the email right after the purchase:"
|
2114 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2115 |
msgstr "Cliccando su \"Cancella iscrizione\", non invieremo più nessuna informazione da %s a %s."
|
2116 |
|
2117 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2118 |
+
msgid "There is a new version of %s available."
|
2119 |
+
msgstr "C'è una nuova versione di %s disponibile."
|
2120 |
+
|
2121 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2122 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2123 |
+
msgstr "%sRinnova la tua licenza ora %s per accedere alla versione %s con aggiornamenti di sicurezza e funzionalità oltre che supporto."
|
2124 |
+
|
2125 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2126 |
+
msgid "New Version Available"
|
2127 |
+
msgstr "Nuova versione disponibile"
|
2128 |
+
|
2129 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2130 |
+
msgid "Renew license"
|
2131 |
+
msgstr "Rinnova licenza"
|
2132 |
+
|
2133 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2134 |
+
msgctxt "close a window"
|
2135 |
+
msgid "Dismiss"
|
2136 |
+
msgstr "Chiudi"
|
2137 |
+
|
2138 |
#: templates/forms/resend-key.php:21
|
2139 |
msgid "Send License Key"
|
2140 |
msgstr "Invia chiave di licenza"
|
2149 |
|
2150 |
#: templates/forms/trial-start.php:28
|
2151 |
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."
|
2152 |
+
msgstr "Per essere accettato del regolamento WordPress.org, prima di attivare il periodo di prova devi accettare di condividere informazioni come il tuo utente e dati non sensibili. Permettendo a %s di inviare dati periodicamente a %s per verificare gli aggiornamenti e approvare il periodo di prova."
|
2153 |
|
2154 |
#: templates/js/style-premium-theme.php:37
|
2155 |
msgid "Premium"
|
2157 |
|
2158 |
#: templates/partials/network-activation.php:23
|
2159 |
msgid "Activate license on all sites in the network."
|
2160 |
+
msgstr "Attiva la licenza su tutti i siti del network."
|
2161 |
|
2162 |
#: templates/partials/network-activation.php:24
|
2163 |
msgid "Apply on all sites in the network."
|
2164 |
+
msgstr "Applica su tutti i siti della rete."
|
2165 |
|
2166 |
#: templates/partials/network-activation.php:27
|
2167 |
msgid "Activate license on all pending sites."
|
2168 |
+
msgstr "Attiva le licenze su tutti i siti in attesa."
|
2169 |
|
2170 |
#: templates/partials/network-activation.php:28
|
2171 |
msgid "Apply on all pending sites."
|
2172 |
+
msgstr "Applica su tutti i siti in attesa."
|
2173 |
|
2174 |
#: templates/partials/network-activation.php36,
|
2175 |
#: templates/partials/network-activation.php:68
|
2176 |
msgid "allow"
|
2177 |
+
msgstr "permetti"
|
2178 |
|
2179 |
#: templates/partials/network-activation.php38,
|
2180 |
#: templates/partials/network-activation.php:70
|
2181 |
msgid "delegate"
|
2182 |
+
msgstr "delega"
|
2183 |
|
2184 |
#: templates/partials/network-activation.php41,
|
2185 |
#: templates/partials/network-activation.php:73
|
2186 |
msgid "skip"
|
2187 |
+
msgstr "salta"
|
2188 |
|
2189 |
#: templates/plugin-info/description.php72,
|
2190 |
#: templates/plugin-info/screenshots.php:31
|
2208 |
msgid "Last license"
|
2209 |
msgstr "Ultima licenza"
|
2210 |
|
2211 |
+
#: templates/account/partials/addon.php:111
|
2212 |
+
msgid "Cancelled"
|
2213 |
+
msgstr "Annullato"
|
2214 |
+
|
2215 |
+
#: templates/account/partials/addon.php:116
|
2216 |
+
msgid "Expired"
|
2217 |
+
msgstr "Scaduto"
|
2218 |
+
|
2219 |
+
#: templates/account/partials/addon.php:121
|
2220 |
+
msgid "No expiration"
|
2221 |
+
msgstr "Nessuna scadenza"
|
2222 |
+
|
2223 |
+
#: templates/account/partials/addon.php259,
|
2224 |
+
#: templates/account/partials/addon.php:312
|
2225 |
+
msgid "Activate this add-on"
|
2226 |
+
msgstr "Attivare questo addon"
|
2227 |
+
|
2228 |
#: templates/account/partials/site.php:181
|
2229 |
msgid "Owner Name"
|
2230 |
+
msgstr "Nome proprietario"
|
2231 |
|
2232 |
#: templates/account/partials/site.php:193
|
2233 |
msgid "Owner Email"
|
2234 |
+
msgstr "Email proprietario"
|
2235 |
|
2236 |
#: templates/account/partials/site.php:205
|
2237 |
msgid "Owner ID"
|
2238 |
+
msgstr "ID proprietario"
|
2239 |
|
2240 |
#: templates/account/partials/site.php:270
|
2241 |
msgid "Subscription"
|
2242 |
+
msgstr "Sottoscrivi"
|
2243 |
|
2244 |
#: templates/forms/deactivation/contact.php:19
|
2245 |
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2259 |
|
2260 |
#: templates/forms/deactivation/form.php:65
|
2261 |
msgid "Activate %s"
|
2262 |
+
msgstr "Attiva %s"
|
2263 |
|
2264 |
#: templates/forms/deactivation/form.php:76
|
2265 |
msgid "Quick feedback"
|
2267 |
|
2268 |
#: templates/forms/deactivation/form.php:80
|
2269 |
msgid "If you have a moment, please let us know why you are %s"
|
2270 |
+
msgstr "Se hai un attimo, facci sapere perché %s"
|
2271 |
|
2272 |
#: templates/forms/deactivation/form.php:80
|
2273 |
msgid "deactivating"
|
2274 |
+
msgstr "disattivazione in corso"
|
2275 |
|
2276 |
#: templates/forms/deactivation/form.php:80
|
2277 |
msgid "switching"
|
2278 |
+
msgstr "passa a"
|
2279 |
|
2280 |
+
#: templates/forms/deactivation/form.php:269
|
2281 |
msgid "Submit & %s"
|
2282 |
+
msgstr "Invia e %s"
|
2283 |
|
2284 |
+
#: templates/forms/deactivation/form.php:290
|
2285 |
msgid "Kindly tell us the reason so we can improve."
|
2286 |
msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
|
2287 |
|
2288 |
+
#: templates/forms/deactivation/form.php:411
|
2289 |
msgid "Yes - %s"
|
2290 |
+
msgstr "SI - %s"
|
2291 |
|
2292 |
+
#: templates/forms/deactivation/form.php:418
|
2293 |
msgid "Skip & %s"
|
2294 |
msgstr "Salta & %s"
|
2295 |
|
includes/pum-sdk/freemius/languages/freemius-ja_JP.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-ja_JP.po
CHANGED
@@ -2,14 +2,16 @@
|
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Odyssey <8bitodyssey+github@gmail.com>, 2016
|
|
|
5 |
# Takayuki Miyauchi <miya0001@users.noreply.github.com>, 2016
|
|
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WordPress SDK\n"
|
9 |
"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
|
10 |
"POT-Creation-Date: \n"
|
11 |
-
"PO-Revision-Date: 2018-
|
12 |
-
"Last-Translator:
|
13 |
"Language: ja_JP\n"
|
14 |
"Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -22,1216 +24,1296 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
-
#: includes/class-freemius.php:
|
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 がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
|
28 |
|
29 |
-
#: includes/class-freemius.php:
|
30 |
msgid "Error"
|
31 |
msgstr "エラー"
|
32 |
|
33 |
-
#: includes/class-freemius.php:
|
34 |
msgid "I found a better %s"
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: includes/class-freemius.php:
|
38 |
msgid "What's the %s's name?"
|
39 |
-
msgstr "
|
40 |
|
41 |
-
#: includes/class-freemius.php:
|
42 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#: includes/class-freemius.php:
|
46 |
msgid "Deactivation"
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#: includes/class-freemius.php:
|
50 |
msgid "Theme Switch"
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#: includes/class-freemius.
|
54 |
msgid "Other"
|
55 |
msgstr "その他"
|
56 |
|
57 |
-
#: includes/class-freemius.php:
|
58 |
msgid "I no longer need the %s"
|
59 |
-
msgstr "
|
60 |
|
61 |
-
#: includes/class-freemius.php:
|
62 |
msgid "I only needed the %s for a short period"
|
63 |
-
msgstr "
|
64 |
|
65 |
-
#: includes/class-freemius.php:
|
66 |
msgid "The %s broke my site"
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: includes/class-freemius.php:
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
-
msgstr "
|
72 |
|
73 |
-
#: includes/class-freemius.php:
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "もう払うことができません"
|
76 |
|
77 |
-
#: includes/class-freemius.php:
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr " 支払ってもよいと思う価格はいくらですか?"
|
80 |
|
81 |
-
#: includes/class-freemius.php:
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "自分の情報を共有したくありません"
|
84 |
|
85 |
-
#: includes/class-freemius.php:
|
86 |
msgid "The %s didn't work"
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#: includes/class-freemius.php:
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "どうしたら動作するか分かりませんでした。"
|
92 |
|
93 |
-
#: includes/class-freemius.php:
|
94 |
msgid "The %s is great, but I need specific feature that you don't support"
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#: includes/class-freemius.php:
|
98 |
msgid "What feature?"
|
99 |
msgstr "何の機能ですか?"
|
100 |
|
101 |
-
#: includes/class-freemius.php:
|
102 |
msgid "The %s is not working"
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: includes/class-freemius.php:
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
|
108 |
|
109 |
-
#: includes/class-freemius.php:
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "探していたものではありません"
|
112 |
|
113 |
-
#: includes/class-freemius.php:
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "探していたのは何ですか?"
|
116 |
|
117 |
-
#: includes/class-freemius.php:
|
118 |
msgid "The %s didn't work as expected"
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: includes/class-freemius.php:
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "何を期待していましたか?"
|
124 |
|
125 |
-
#: includes/class-freemius.
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "Freemius デバッグ"
|
128 |
|
129 |
-
#: includes/class-freemius.php:
|
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:
|
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 "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
|
136 |
|
137 |
-
#: includes/class-freemius.php:
|
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 "
|
140 |
|
141 |
-
#: includes/class-freemius.php:
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "はい - お構いなく"
|
144 |
|
145 |
-
#: includes/class-freemius.php:
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "いいえ - すぐに無効化"
|
148 |
|
149 |
-
#: includes/class-freemius.
|
150 |
-
#: includes/class-freemius.
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
-
#: includes/class-freemius.
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "おっと"
|
159 |
|
160 |
-
#: includes/class-freemius.php:
|
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 "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
|
163 |
|
164 |
-
#: includes/class-freemius.php:
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s は、%s が無いと実行することができません。"
|
168 |
|
169 |
-
#: includes/class-freemius.php:
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "%s は、プラグインが無いと実行することができません。"
|
173 |
|
174 |
-
#: includes/class-freemius.
|
175 |
-
#: includes/class-freemius.php:
|
176 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
177 |
-
msgstr "
|
178 |
|
179 |
-
#: includes/class-freemius.php:
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
-
msgstr "
|
182 |
|
183 |
-
#: includes/class-freemius.
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "やったー"
|
187 |
|
188 |
-
#: includes/class-freemius.php:
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "%s ライセンスを持っています。"
|
191 |
|
192 |
-
#: includes/class-freemius.
|
193 |
-
#: includes/class-freemius.
|
194 |
-
#: includes/class-freemius.
|
195 |
-
#: includes/class-freemius.php:
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "ヤッホー"
|
199 |
|
200 |
-
#: includes/class-freemius.php:
|
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 の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
|
203 |
|
204 |
-
#: includes/class-freemius.php:
|
205 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
206 |
msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
|
207 |
|
208 |
-
#: includes/class-freemius.
|
209 |
-
#: templates/
|
210 |
msgid "More information about %s"
|
211 |
msgstr "%s に関する詳細情報"
|
212 |
|
213 |
-
#: includes/class-freemius.php:
|
214 |
msgid "Purchase License"
|
215 |
msgstr "ライセンスを購入"
|
216 |
|
217 |
-
#: includes/class-freemius.
|
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 "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
|
220 |
|
221 |
-
#: includes/class-freemius.php:
|
222 |
msgid "start the trial"
|
223 |
msgstr "トライアルを開始"
|
224 |
|
225 |
-
#: includes/class-freemius.
|
226 |
msgid "complete the install"
|
227 |
msgstr "インストールを完了"
|
228 |
|
229 |
-
#: includes/class-freemius.php:
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "もうあとわずかです - %s"
|
232 |
|
233 |
-
#: includes/class-freemius.php:
|
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:
|
239 |
msgid "We made a few tweaks to the %s, %s"
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#: includes/class-freemius.php:
|
243 |
msgid "Opt in to make \"%s\" Better!"
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#: includes/class-freemius.php:
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "%s のアップグレードが完了しました。"
|
249 |
|
250 |
-
#: includes/class-freemius.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
-
#: includes/class-fs-plugin-updater.
|
253 |
msgid "Add-On"
|
254 |
-
msgstr "
|
255 |
|
256 |
-
#: includes/class-freemius.
|
257 |
-
#: templates/debug.php:
|
258 |
msgid "Plugin"
|
259 |
msgstr "プラグイン"
|
260 |
|
261 |
-
#: includes/class-freemius.
|
262 |
-
#: templates/debug.
|
263 |
msgid "Theme"
|
264 |
-
msgstr "
|
265 |
|
266 |
-
#: includes/class-freemius.php:
|
267 |
msgid "invalid_site_details_collection"
|
268 |
msgstr "invalid_site_details_collection"
|
269 |
|
270 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
279 |
msgid "Account is pending activation."
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: includes/class-freemius.php:
|
283 |
msgid "%s activation was successfully completed."
|
284 |
msgstr "%s の有効化が成功しました。"
|
285 |
|
286 |
-
#: includes/class-freemius.php:
|
287 |
msgid "Your account was successfully activated with the %s plan."
|
288 |
msgstr "アカウントが %s プランで有効化できました。"
|
289 |
|
290 |
-
#: includes/class-freemius.
|
291 |
msgid "Your trial has been successfully started."
|
292 |
msgstr "トライアル版の利用を開始しました。"
|
293 |
|
294 |
-
#: includes/class-freemius.
|
295 |
-
#: includes/class-freemius.php:
|
296 |
msgid "Couldn't activate %s."
|
297 |
msgstr "%s を有効化できません。"
|
298 |
|
299 |
-
#: includes/class-freemius.
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Please contact us with the following message:"
|
302 |
msgstr "以下のメッセージとともに私たちに連絡をください。"
|
303 |
|
304 |
-
#: includes/class-freemius.
|
305 |
msgid "Upgrade"
|
306 |
msgstr "アップグレード"
|
307 |
|
308 |
-
#: includes/class-freemius.php:
|
309 |
msgid "Start Trial"
|
310 |
msgstr "トライアルを開始"
|
311 |
|
312 |
-
#: includes/class-freemius.php:
|
313 |
msgid "Pricing"
|
314 |
msgstr "料金表"
|
315 |
|
316 |
-
#: includes/class-freemius.
|
317 |
msgid "Affiliation"
|
318 |
-
msgstr "
|
319 |
|
320 |
-
#: includes/class-freemius.
|
321 |
-
#: templates/account.
|
322 |
msgid "Account"
|
323 |
msgstr "アカウント"
|
324 |
|
325 |
-
#: includes/class-freemius.
|
326 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
327 |
msgid "Contact Us"
|
328 |
msgstr "連絡"
|
329 |
|
330 |
-
#: includes/class-freemius.
|
331 |
-
#: includes/class-freemius.
|
|
|
332 |
msgid "Add-Ons"
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#: includes/class-freemius.
|
336 |
msgctxt "noun"
|
337 |
msgid "Pricing"
|
338 |
msgstr "料金表"
|
339 |
|
340 |
-
#: includes/class-freemius.
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
342 |
msgid "Support Forum"
|
343 |
msgstr "サポートフォーラム"
|
344 |
|
345 |
-
#: includes/class-freemius.php:
|
346 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
347 |
msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
|
348 |
|
349 |
-
#: includes/class-freemius.php:
|
350 |
msgctxt "a positive response"
|
351 |
msgid "Right on"
|
352 |
msgstr "そうだ"
|
353 |
|
354 |
-
#: includes/class-freemius.php:
|
355 |
msgid "Your %s Add-on plan was successfully upgraded."
|
356 |
msgstr "%s のアドオンのプランのアップグレードが完了しました。"
|
357 |
|
358 |
-
#: includes/class-freemius.php:
|
359 |
msgid "%s Add-on was successfully purchased."
|
360 |
msgstr "%s のアドオンの支払いが完了しました。"
|
361 |
|
362 |
-
#: includes/class-freemius.php:
|
363 |
msgid "Download the latest version"
|
364 |
msgstr "最新版をダウンロード"
|
365 |
|
366 |
-
#: includes/class-freemius.php:
|
367 |
msgctxt "%1s - plugin title, %2s - API domain"
|
368 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
369 |
msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
|
370 |
|
371 |
-
#: includes/class-freemius.
|
372 |
-
#: includes/class-freemius.php:
|
373 |
msgid "Error received from the server:"
|
374 |
msgstr "サーバーからエラーを受信しました。"
|
375 |
|
376 |
-
#: includes/class-freemius.php:
|
377 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
378 |
msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
|
379 |
|
380 |
-
#: includes/class-freemius.
|
381 |
-
#: includes/class-freemius.php:
|
382 |
msgctxt ""
|
383 |
msgid "Hmm"
|
384 |
msgstr "ふむ"
|
385 |
|
386 |
-
#: includes/class-freemius.php:
|
387 |
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."
|
388 |
msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
|
389 |
|
390 |
-
#: includes/class-freemius.
|
391 |
-
#: templates/add-ons.php:
|
392 |
msgctxt "trial period"
|
393 |
msgid "Trial"
|
394 |
msgstr "トライアル"
|
395 |
|
396 |
-
#: includes/class-freemius.php:
|
397 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
398 |
msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
|
399 |
|
400 |
-
#: includes/class-freemius.
|
401 |
msgid "Please contact us here"
|
402 |
msgstr "こちらで私たちに連絡をとってください。"
|
403 |
|
404 |
-
#: includes/class-freemius.php:
|
405 |
msgid "Your plan was successfully upgraded."
|
406 |
msgstr "プランのアップグレードが成功しました。"
|
407 |
|
408 |
-
#: includes/class-freemius.php:
|
409 |
msgid "Your plan was successfully changed to %s."
|
410 |
msgstr "プランの %s への変更が成功しました。"
|
411 |
|
412 |
-
#: includes/class-freemius.php:
|
413 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
417 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
418 |
msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
|
419 |
|
420 |
-
#: includes/class-freemius.php:
|
421 |
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."
|
422 |
msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
|
423 |
|
424 |
-
#: includes/class-freemius.php:
|
425 |
-
msgid "Your trial has expired. You can still continue using all our free features."
|
426 |
-
msgstr "
|
|
|
|
|
|
|
|
|
427 |
|
428 |
-
#: includes/class-freemius.php:
|
429 |
msgid "It looks like the license could not be activated."
|
430 |
msgstr "ライセンスの有効化ができませんでした。"
|
431 |
|
432 |
-
#: includes/class-freemius.php:
|
433 |
msgid "Your license was successfully activated."
|
434 |
msgstr "ライセンスの有効化が成功しました。"
|
435 |
|
436 |
-
#: includes/class-freemius.php:
|
437 |
msgid "It looks like your site currently doesn't have an active license."
|
438 |
msgstr "サイトは有効なライセンスを持っていないようです。"
|
439 |
|
440 |
-
#: includes/class-freemius.php:
|
441 |
msgid "It looks like the license deactivation failed."
|
442 |
msgstr "ライセンスの無効化ができませんでした。"
|
443 |
|
444 |
-
#: includes/class-freemius.php:
|
445 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
446 |
msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
|
447 |
|
448 |
-
#: includes/class-freemius.php:
|
449 |
msgid "O.K"
|
450 |
msgstr "O.K"
|
451 |
|
452 |
-
#: includes/class-freemius.php:
|
453 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
454 |
msgstr "プランのダウングレードが完了しました。%s プランは %s に有効期限が切れます。"
|
455 |
|
456 |
-
#: includes/class-freemius.php:
|
457 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
458 |
msgstr "プランのダウングレードの際に一時的な問題が発生したようです。数分後に再度操作してください。"
|
459 |
|
460 |
-
#: includes/class-freemius.php:
|
461 |
msgid "You are already running the %s in a trial mode."
|
462 |
-
msgstr "
|
463 |
|
464 |
-
#: includes/class-freemius.php:
|
465 |
msgid "You already utilized a trial before."
|
466 |
msgstr "以前すでに試用版を利用しました。"
|
467 |
|
468 |
-
#: includes/class-freemius.php:
|
469 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
470 |
msgstr "%s プランは存在しないため、試用を開始できません。"
|
471 |
|
472 |
-
#: includes/class-freemius.php:
|
473 |
msgid "Plan %s does not support a trial period."
|
474 |
msgstr "%s プランにはトライアル期間はありません。"
|
475 |
|
476 |
-
#: includes/class-freemius.php:
|
477 |
msgid "None of the %s's plans supports a trial period."
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#: includes/class-freemius.php:
|
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:
|
485 |
msgid "Your %s free trial was successfully cancelled."
|
486 |
msgstr "%s のフリートライアルはキャンセルされました。"
|
487 |
|
488 |
-
#: includes/class-freemius.php:
|
489 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
490 |
msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
|
491 |
|
492 |
-
#: includes/class-freemius.php:
|
493 |
msgid "Version %s was released."
|
494 |
msgstr "バージョン %s をリリースしました。"
|
495 |
|
496 |
-
#: includes/class-freemius.php:
|
497 |
msgid "Please download %s."
|
498 |
msgstr "%s をダウンロードしてください。"
|
499 |
|
500 |
-
#: includes/class-freemius.php:
|
501 |
msgid "the latest %s version here"
|
502 |
msgstr "最新の %s バージョンはこちらです。"
|
503 |
|
504 |
-
#: includes/class-freemius.php:
|
505 |
msgid "New"
|
506 |
msgstr "新規"
|
507 |
|
508 |
-
#: includes/class-freemius.php:
|
509 |
msgid "Seems like you got the latest release."
|
510 |
msgstr "最新版を取得できました。"
|
511 |
|
512 |
-
#: includes/class-freemius.php:
|
513 |
msgid "You are all good!"
|
514 |
msgstr "すべて完璧です!"
|
515 |
|
516 |
-
#: includes/class-freemius.php:
|
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 "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
|
519 |
|
520 |
-
#: includes/class-freemius.php:
|
521 |
msgid "Site successfully opted in."
|
522 |
-
msgstr "
|
523 |
|
524 |
-
#: includes/class-freemius.
|
525 |
msgid "Awesome"
|
526 |
msgstr "すごい!"
|
527 |
|
528 |
-
#: includes/class-freemius.
|
529 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
530 |
msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
|
531 |
|
532 |
-
#: includes/class-freemius.php:
|
533 |
msgid "Thank you!"
|
534 |
-
msgstr "
|
535 |
|
536 |
-
#: includes/class-freemius.php:
|
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:
|
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 "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
|
543 |
|
544 |
-
#: includes/class-freemius.php:
|
545 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
546 |
msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
|
547 |
|
548 |
-
#: includes/class-freemius.php:
|
549 |
msgid "%s is the new owner of the account."
|
550 |
msgstr "%s は新しいオーナーです。"
|
551 |
|
552 |
-
#: includes/class-freemius.php:
|
553 |
msgctxt "as congratulations"
|
554 |
msgid "Congrats"
|
555 |
msgstr "おめでとう"
|
556 |
|
557 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
566 |
msgid "Change Ownership"
|
567 |
msgstr "オーナーを変更"
|
568 |
|
569 |
-
#: includes/class-freemius.php:
|
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:
|
574 |
msgid "Please provide your full name."
|
575 |
msgstr "フルネームを入力してください。"
|
576 |
|
577 |
-
#: includes/class-freemius.php:
|
578 |
msgid "Your name was successfully updated."
|
579 |
msgstr "名前のアップデートが成功しました。"
|
580 |
|
581 |
-
#: includes/class-freemius.php:
|
582 |
msgid "You have successfully updated your %s."
|
583 |
msgstr "%s のアップデートが成功しました。"
|
584 |
|
585 |
-
#: includes/class-freemius.php:
|
586 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
587 |
msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
|
588 |
|
589 |
-
#: includes/class-freemius.php:
|
590 |
msgctxt "advance notice of something that will need attention."
|
591 |
msgid "Heads up"
|
592 |
msgstr "警告"
|
593 |
|
594 |
-
#: includes/class-freemius.php:
|
595 |
msgctxt "exclamation"
|
596 |
msgid "Hey"
|
597 |
msgstr "ヘイ"
|
598 |
|
599 |
-
#: includes/class-freemius.php:
|
600 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
601 |
msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
|
602 |
|
603 |
-
#: includes/class-freemius.php:
|
604 |
msgid "No commitment for %s days - cancel anytime!"
|
605 |
msgstr "%s 日以内であればいつでもキャンセルできます。"
|
606 |
|
607 |
-
#: includes/class-freemius.php:
|
608 |
msgid "No credit card required"
|
609 |
msgstr "クレジットカードは必要ありません。"
|
610 |
|
611 |
-
#: includes/class-freemius.
|
612 |
msgctxt "call to action"
|
613 |
msgid "Start free trial"
|
614 |
msgstr "フリートライアルを開始"
|
615 |
|
616 |
-
#: includes/class-freemius.php:
|
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:
|
621 |
msgid "Learn more"
|
622 |
-
msgstr "
|
623 |
|
624 |
-
#: includes/class-freemius.
|
625 |
-
#: templates/account.
|
626 |
-
#: templates/connect.
|
|
|
627 |
msgid "Activate License"
|
628 |
msgstr "ライセンスを有効化"
|
629 |
|
630 |
-
#: includes/class-freemius.
|
631 |
-
#: templates/account.
|
632 |
msgid "Change License"
|
633 |
msgstr "ライセンスを変更"
|
634 |
|
635 |
-
#: includes/class-freemius.
|
636 |
msgid "Opt Out"
|
637 |
msgstr "オプトアウト"
|
638 |
|
639 |
-
#: includes/class-freemius.
|
640 |
#: templates/account/partials/site.php43,
|
641 |
#: templates/account/partials/site.php:161
|
642 |
msgid "Opt In"
|
643 |
msgstr "オプトイン"
|
644 |
|
645 |
-
#: includes/class-freemius.php:
|
646 |
msgid "Please follow these steps to complete the upgrade"
|
647 |
msgstr "アップグレードを完了するには以下の手順を完了させてください。"
|
648 |
|
649 |
-
#: includes/class-freemius.php:
|
650 |
msgid "Download the latest %s version"
|
651 |
msgstr "最新の %s をダウンロード"
|
652 |
|
653 |
-
#: includes/class-freemius.php:
|
654 |
msgid "Upload and activate the downloaded version"
|
655 |
msgstr "ダウンロードしたバージョンをアップロードして有効化"
|
656 |
|
657 |
-
#: includes/class-freemius.php:
|
658 |
msgid "How to upload and activate?"
|
659 |
msgstr "アップロードと有効化の方法"
|
660 |
|
661 |
-
#: includes/class-freemius.php:
|
662 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
663 |
-
msgstr "%
|
664 |
|
665 |
-
#: includes/class-freemius.php:
|
666 |
msgid "Auto installation only works for opted-in users."
|
667 |
-
msgstr "
|
668 |
|
669 |
-
#: includes/class-freemius.
|
670 |
-
#: includes/class-fs-plugin-updater.
|
671 |
-
#: includes/class-fs-plugin-updater.php:
|
672 |
msgid "Invalid module ID."
|
673 |
-
msgstr "
|
674 |
|
675 |
-
#: includes/class-freemius.
|
676 |
msgid "Premium version already active."
|
677 |
-
msgstr "
|
678 |
|
679 |
-
#: includes/class-freemius.php:
|
680 |
msgid "You do not have a valid license to access the premium version."
|
681 |
-
msgstr "
|
682 |
|
683 |
-
#: includes/class-freemius.php:
|
684 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
685 |
-
msgstr "
|
686 |
|
687 |
-
#: includes/class-freemius.
|
688 |
msgid "Premium add-on version already installed."
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#: includes/class-freemius.php:
|
692 |
msgid "View paid features"
|
693 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
-
#: includes/class-
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
698 |
|
699 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
700 |
msgid "Installing plugin: %s"
|
701 |
-
msgstr "
|
702 |
|
703 |
-
#: includes/class-fs-plugin-updater.php:
|
704 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
705 |
-
msgstr "
|
706 |
|
707 |
-
#: includes/class-fs-plugin-updater.php:
|
708 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
709 |
-
msgstr "
|
710 |
|
711 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
712 |
msgctxt "verb"
|
713 |
msgid "Purchase"
|
714 |
msgstr "購入"
|
715 |
|
716 |
-
#: includes/fs-plugin-info-dialog.php:
|
717 |
msgid "Start my free %s"
|
718 |
msgstr "無料の %s を開始"
|
719 |
|
720 |
-
#: includes/fs-plugin-info-dialog.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
msgctxt "as download latest version"
|
722 |
msgid "Download Latest"
|
723 |
msgstr "最新版をダウンロード"
|
724 |
|
725 |
-
#: includes/fs-plugin-info-dialog.
|
726 |
-
|
727 |
-
|
728 |
-
msgstr "今すぐインストール"
|
729 |
|
730 |
-
#: includes/fs-plugin-info-dialog.
|
731 |
msgid "Install Update Now"
|
732 |
msgstr "今すぐ更新をインストール"
|
733 |
|
734 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
735 |
msgid "Newer Version (%s) Installed"
|
736 |
-
msgstr "
|
|
|
|
|
|
|
|
|
737 |
|
738 |
-
#: includes/fs-plugin-info-dialog.php:
|
739 |
msgid "Latest Version Installed"
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#: includes/fs-plugin-info-dialog.php:
|
743 |
msgctxt "Plugin installer section title"
|
744 |
msgid "Description"
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: includes/fs-plugin-info-dialog.php:
|
748 |
msgctxt "Plugin installer section title"
|
749 |
msgid "Installation"
|
750 |
-
msgstr "
|
751 |
|
752 |
-
#: includes/fs-plugin-info-dialog.php:
|
753 |
msgctxt "Plugin installer section title"
|
754 |
msgid "FAQ"
|
755 |
msgstr "FAQ"
|
756 |
|
757 |
-
#: includes/fs-plugin-info-dialog.
|
758 |
#: templates/plugin-info/description.php:55
|
759 |
msgid "Screenshots"
|
760 |
msgstr "スクリーンショット"
|
761 |
|
762 |
-
#: includes/fs-plugin-info-dialog.php:
|
763 |
msgctxt "Plugin installer section title"
|
764 |
msgid "Changelog"
|
765 |
-
msgstr "
|
766 |
|
767 |
-
#: includes/fs-plugin-info-dialog.php:
|
768 |
msgctxt "Plugin installer section title"
|
769 |
msgid "Reviews"
|
770 |
-
msgstr "
|
771 |
|
772 |
-
#: includes/fs-plugin-info-dialog.php:
|
773 |
msgctxt "Plugin installer section title"
|
774 |
msgid "Other Notes"
|
775 |
-
msgstr "
|
776 |
|
777 |
-
#: includes/fs-plugin-info-dialog.php:
|
778 |
msgctxt "Plugin installer section title"
|
779 |
msgid "Features & Pricing"
|
780 |
msgstr "機能 & 料金"
|
781 |
|
782 |
-
#: includes/fs-plugin-info-dialog.php:
|
783 |
msgid "Plugin Install"
|
784 |
-
msgstr "
|
785 |
|
786 |
-
#: includes/fs-plugin-info-dialog.php:
|
787 |
msgctxt "e.g. Professional Plan"
|
788 |
msgid "%s Plan"
|
789 |
msgstr "%s プラン"
|
790 |
|
791 |
-
#: includes/fs-plugin-info-dialog.php:
|
792 |
msgctxt "e.g. the best product"
|
793 |
msgid "Best"
|
794 |
msgstr "ベスト"
|
795 |
|
796 |
-
#: includes/fs-plugin-info-dialog.
|
797 |
-
#: includes/fs-plugin-info-dialog.php:
|
798 |
msgctxt "as every month"
|
799 |
msgid "Monthly"
|
800 |
msgstr "月"
|
801 |
|
802 |
-
#: includes/fs-plugin-info-dialog.php:
|
803 |
msgctxt "as once a year"
|
804 |
msgid "Annual"
|
805 |
msgstr "年次"
|
806 |
|
807 |
-
#: includes/fs-plugin-info-dialog.php:
|
808 |
msgid "Lifetime"
|
809 |
msgstr "ライフタイム"
|
810 |
|
811 |
-
#: includes/fs-plugin-info-dialog.
|
812 |
-
#: includes/fs-plugin-info-dialog.
|
813 |
-
#: includes/fs-plugin-info-dialog.php:
|
814 |
msgctxt "e.g. billed monthly"
|
815 |
msgid "Billed %s"
|
816 |
msgstr "%s への請求"
|
817 |
|
818 |
-
#: includes/fs-plugin-info-dialog.php:
|
819 |
msgctxt "as once a year"
|
820 |
msgid "Annually"
|
821 |
msgstr "毎年"
|
822 |
|
823 |
-
#: includes/fs-plugin-info-dialog.php:
|
824 |
msgctxt "as once a year"
|
825 |
msgid "Once"
|
826 |
msgstr "一度"
|
827 |
|
828 |
-
#: includes/fs-plugin-info-dialog.php:
|
829 |
msgid "Single Site License"
|
830 |
msgstr "シングルサイトライセンス"
|
831 |
|
832 |
-
#: includes/fs-plugin-info-dialog.php:
|
833 |
msgid "Unlimited Licenses"
|
834 |
msgstr "無制限ライセンス"
|
835 |
|
836 |
-
#: includes/fs-plugin-info-dialog.php:
|
837 |
msgid "Up to %s Sites"
|
838 |
msgstr "%sサイトまで"
|
839 |
|
840 |
-
#: includes/fs-plugin-info-dialog.
|
841 |
#: templates/plugin-info/features.php:82
|
842 |
msgctxt "as monthly period"
|
843 |
msgid "mo"
|
844 |
msgstr "月"
|
845 |
|
846 |
-
#: includes/fs-plugin-info-dialog.
|
847 |
#: templates/plugin-info/features.php:80
|
848 |
msgctxt "as annual period"
|
849 |
msgid "year"
|
850 |
msgstr "年"
|
851 |
|
852 |
-
#: includes/fs-plugin-info-dialog.php:
|
853 |
msgctxt "noun"
|
854 |
msgid "Price"
|
855 |
msgstr "料金"
|
856 |
|
857 |
-
#: includes/fs-plugin-info-dialog.php:
|
858 |
msgid "Save %s"
|
859 |
msgstr "%s を保存"
|
860 |
|
861 |
-
#: includes/fs-plugin-info-dialog.php:
|
862 |
msgid "No commitment for %s - cancel anytime"
|
863 |
msgstr "%s の拘束はありません。いつでもキャンセルできます。"
|
864 |
|
865 |
-
#: includes/fs-plugin-info-dialog.php:
|
866 |
msgid "After your free %s, pay as little as %s"
|
867 |
msgstr "無料の %s の後は、わずか %s だけお支払ください。"
|
868 |
|
869 |
-
#: includes/fs-plugin-info-dialog.php:
|
870 |
msgid "Details"
|
871 |
msgstr "詳細"
|
872 |
|
873 |
-
#: includes/fs-plugin-info-dialog.
|
874 |
-
#: templates/debug.php191, templates/debug.php228, templates/debug.
|
|
|
875 |
msgctxt "product version"
|
876 |
msgid "Version"
|
877 |
msgstr "バージョン"
|
878 |
|
879 |
-
#: includes/fs-plugin-info-dialog.php:
|
880 |
msgctxt "as the plugin author"
|
881 |
msgid "Author"
|
882 |
-
msgstr "
|
883 |
|
884 |
-
#: includes/fs-plugin-info-dialog.php:
|
885 |
msgid "Last Updated"
|
886 |
-
msgstr "
|
887 |
|
888 |
-
#: includes/fs-plugin-info-dialog.php:
|
889 |
msgctxt "x-ago"
|
890 |
msgid "%s ago"
|
891 |
msgstr "%s 前"
|
892 |
|
893 |
-
#: includes/fs-plugin-info-dialog.php:
|
894 |
msgid "Requires WordPress Version"
|
895 |
-
msgstr "
|
896 |
|
897 |
-
#: includes/fs-plugin-info-dialog.php:
|
898 |
msgid "%s or higher"
|
899 |
-
msgstr "%s
|
900 |
|
901 |
-
#: includes/fs-plugin-info-dialog.php:
|
902 |
msgid "Compatible up to"
|
903 |
-
msgstr "
|
904 |
|
905 |
-
#: includes/fs-plugin-info-dialog.php:
|
906 |
msgid "Downloaded"
|
907 |
-
msgstr "
|
908 |
|
909 |
-
#: includes/fs-plugin-info-dialog.php:
|
910 |
msgid "%s time"
|
911 |
-
msgstr "%s
|
912 |
|
913 |
-
#: includes/fs-plugin-info-dialog.php:
|
914 |
msgid "%s times"
|
915 |
-
msgstr "%s
|
916 |
|
917 |
-
#: includes/fs-plugin-info-dialog.php:
|
918 |
msgid "WordPress.org Plugin Page"
|
919 |
-
msgstr "WordPress.org
|
920 |
|
921 |
-
#: includes/fs-plugin-info-dialog.php:
|
922 |
msgid "Plugin Homepage"
|
923 |
-
msgstr "
|
924 |
|
925 |
-
#: includes/fs-plugin-info-dialog.
|
926 |
-
#: includes/fs-plugin-info-dialog.php:
|
927 |
msgid "Donate to this plugin"
|
928 |
-
msgstr "
|
929 |
|
930 |
-
#: includes/fs-plugin-info-dialog.php:
|
931 |
msgid "Average Rating"
|
932 |
-
msgstr "
|
933 |
|
934 |
-
#: includes/fs-plugin-info-dialog.php:
|
935 |
msgid "based on %s"
|
936 |
-
msgstr "
|
937 |
|
938 |
-
#: includes/fs-plugin-info-dialog.php:
|
939 |
msgid "%s rating"
|
940 |
-
msgstr "%s
|
941 |
|
942 |
-
#: includes/fs-plugin-info-dialog.php:
|
943 |
msgid "%s ratings"
|
944 |
-
msgstr "%s
|
945 |
|
946 |
-
#: includes/fs-plugin-info-dialog.php:
|
947 |
msgid "%s star"
|
948 |
-
msgstr "%s
|
949 |
|
950 |
-
#: includes/fs-plugin-info-dialog.php:
|
951 |
msgid "%s stars"
|
952 |
-
msgstr "%s
|
953 |
|
954 |
-
#: includes/fs-plugin-info-dialog.php:
|
955 |
msgid "Click to see reviews that provided a rating of %s"
|
956 |
-
msgstr "
|
957 |
|
958 |
-
#: includes/fs-plugin-info-dialog.php:
|
959 |
msgid "Contributors"
|
960 |
-
msgstr "
|
961 |
|
962 |
-
#: includes/fs-plugin-info-dialog.
|
963 |
-
#: includes/fs-plugin-info-dialog.php:
|
964 |
msgid "Warning"
|
965 |
-
msgstr "
|
966 |
|
967 |
-
#: includes/fs-plugin-info-dialog.php:
|
968 |
msgid "This plugin has not been tested with your current version of WordPress."
|
969 |
-
msgstr "
|
970 |
|
971 |
-
#: includes/fs-plugin-info-dialog.php:
|
972 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
973 |
-
msgstr "
|
974 |
|
975 |
-
#: includes/fs-plugin-info-dialog.php:
|
976 |
msgid "Paid add-on must be deployed to Freemius."
|
977 |
msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
|
978 |
|
979 |
-
#: includes/fs-plugin-info-dialog.php:
|
980 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
981 |
msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
|
982 |
|
983 |
-
#: templates/account.php81, templates/account/partials/
|
|
|
984 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
985 |
msgstr "プランをダウングレードするとすぐに将来の定期の支払いはすべて停止し、%s プランライセンスは %s で期限切れとなります。"
|
986 |
|
987 |
-
#: templates/account.php:
|
988 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
989 |
msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
|
990 |
|
991 |
-
#: templates/account.php83, templates/account/partials/
|
|
|
992 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
993 |
-
msgstr "
|
994 |
|
995 |
-
#: templates/account.php84, templates/account/partials/
|
|
|
996 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
997 |
-
msgstr "
|
998 |
|
999 |
#. translators: %s: Plan title (e.g. "Professional")
|
1000 |
#: templates/account.php86,
|
1001 |
-
#: templates/account/partials/activate-license-button.
|
|
|
1002 |
msgid "Activate %s Plan"
|
1003 |
msgstr "%s プランを有効化"
|
1004 |
|
1005 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1006 |
-
#: templates/account.php89, templates/account/partials/
|
|
|
1007 |
msgid "Auto renews in %s"
|
1008 |
msgstr "%s に自動更新"
|
1009 |
|
1010 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1011 |
-
#: templates/account.php91, templates/account/partials/
|
|
|
1012 |
msgid "Expires in %s"
|
1013 |
msgstr "%s で期間終了"
|
1014 |
|
1015 |
-
#: templates/account.php:
|
1016 |
msgctxt "as synchronize license"
|
1017 |
msgid "Sync License"
|
1018 |
msgstr "ライセンスを同期"
|
1019 |
|
1020 |
-
#: templates/account.php:
|
1021 |
msgid "Cancel Trial"
|
1022 |
msgstr "トライアルをキャンセル"
|
1023 |
|
1024 |
-
#: templates/account.php:
|
1025 |
msgid "Change Plan"
|
1026 |
msgstr "プラン変更"
|
1027 |
|
1028 |
-
#: templates/account.php:
|
1029 |
msgctxt "verb"
|
1030 |
msgid "Upgrade"
|
1031 |
msgstr "アップグレード"
|
1032 |
|
1033 |
-
#: templates/account.php97, templates/account/partials/
|
|
|
1034 |
msgctxt "verb"
|
1035 |
msgid "Downgrade"
|
1036 |
msgstr "ダウングレード"
|
1037 |
|
1038 |
#: templates/account.php99, templates/add-ons.php126,
|
1039 |
#: templates/plugin-info/features.php72,
|
|
|
1040 |
#: templates/account/partials/site.php:31
|
1041 |
msgid "Free"
|
1042 |
msgstr "無料"
|
1043 |
|
1044 |
-
#: templates/account.php:
|
1045 |
msgid "Activate"
|
1046 |
msgstr "有効化"
|
1047 |
|
1048 |
-
#: templates/account.php101, templates/debug.
|
1049 |
-
#: includes/customizer/class-fs-customizer-upsell-control.
|
|
|
1050 |
msgctxt "as product pricing plan"
|
1051 |
msgid "Plan"
|
1052 |
msgstr "プラン"
|
1053 |
|
1054 |
-
#: templates/account.php:
|
1055 |
msgid "Free Trial"
|
1056 |
msgstr "フリートライアル"
|
1057 |
|
1058 |
-
#: templates/account.php:
|
1059 |
msgid "Account Details"
|
1060 |
msgstr "アカウント詳細"
|
1061 |
|
1062 |
-
#: templates/account.php:
|
1063 |
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?"
|
1064 |
msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
|
1065 |
|
1066 |
-
#: templates/account.php:
|
1067 |
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?"
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
-
#: templates/account.php:
|
1071 |
msgid "Delete Account"
|
1072 |
msgstr "アカウントを削除"
|
1073 |
|
1074 |
-
#: templates/account.
|
1075 |
#: templates/account/partials/deactivate-license-button.php:35
|
1076 |
msgid "Deactivate License"
|
1077 |
msgstr "ライセンスを無効化"
|
1078 |
|
1079 |
-
#: templates/account.php:
|
1080 |
msgid "Are you sure you want to proceed?"
|
1081 |
msgstr "本当に続行していいですか?"
|
1082 |
|
1083 |
-
#: templates/account.php:
|
1084 |
msgid "Cancel Subscription"
|
1085 |
-
msgstr "
|
1086 |
|
1087 |
-
#: templates/account.php:
|
1088 |
msgctxt "as synchronize"
|
1089 |
msgid "Sync"
|
1090 |
msgstr "同期"
|
1091 |
|
1092 |
-
#: templates/account.
|
1093 |
msgid "Name"
|
1094 |
msgstr "名前"
|
1095 |
|
1096 |
-
#: templates/account.
|
1097 |
msgid "Email"
|
1098 |
msgstr "Email"
|
1099 |
|
1100 |
-
#: templates/account.
|
1101 |
msgid "User ID"
|
1102 |
msgstr "ユーザー ID"
|
1103 |
|
1104 |
-
#: templates/account.php:
|
1105 |
msgid "Site ID"
|
1106 |
msgstr "サイト ID"
|
1107 |
|
1108 |
-
#: templates/account.php:
|
1109 |
msgid "No ID"
|
1110 |
msgstr "ID がありません"
|
1111 |
|
1112 |
-
#: templates/account.
|
1113 |
-
#: templates/debug.
|
1114 |
#: templates/account/partials/site.php:219
|
1115 |
msgid "Public Key"
|
1116 |
msgstr "公開鍵"
|
1117 |
|
1118 |
-
#: templates/account.
|
1119 |
-
#: templates/debug.
|
1120 |
msgid "Secret Key"
|
1121 |
msgstr "秘密鍵"
|
1122 |
|
1123 |
-
#: templates/account.php:
|
1124 |
msgctxt "as secret encryption key missing"
|
1125 |
msgid "No Secret"
|
1126 |
msgstr "秘密鍵がありません"
|
1127 |
|
1128 |
-
#: templates/account.
|
1129 |
#: templates/account/partials/site.php:114
|
1130 |
msgid "Trial"
|
1131 |
msgstr "トライアル"
|
1132 |
|
1133 |
-
#: templates/account.
|
1134 |
#: templates/account/partials/site.php:248
|
1135 |
msgid "License Key"
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
-
#: templates/account.php:
|
1139 |
msgid "not verified"
|
1140 |
msgstr "未認証"
|
1141 |
|
1142 |
-
#: templates/account.php:
|
1143 |
msgid "Premium version"
|
1144 |
msgstr "プレミアムバージョン"
|
1145 |
|
1146 |
-
#: templates/account.php:
|
1147 |
msgid "Free version"
|
1148 |
msgstr "フリーバージョン"
|
1149 |
|
1150 |
-
#: templates/account.php:
|
1151 |
msgid "Verify Email"
|
1152 |
msgstr "認証メール"
|
1153 |
|
1154 |
-
#: templates/account.php:
|
1155 |
msgid "Download %s Version"
|
1156 |
msgstr "%s バージョンをダウンロード"
|
1157 |
|
1158 |
-
#: templates/account.
|
1159 |
#: templates/account/partials/site.php237,
|
1160 |
#: templates/account/partials/site.php:255
|
1161 |
msgctxt "verb"
|
1162 |
msgid "Show"
|
1163 |
msgstr "表示"
|
1164 |
|
1165 |
-
#: templates/account.php:
|
1166 |
msgid "What is your %s?"
|
1167 |
msgstr "自分の %s はなんですか?"
|
1168 |
|
1169 |
-
#: templates/account.
|
1170 |
msgctxt "verb"
|
1171 |
msgid "Edit"
|
1172 |
msgstr "編集"
|
1173 |
|
1174 |
-
#: templates/account.php:
|
1175 |
msgid "Sites"
|
1176 |
msgstr "サイト数"
|
1177 |
|
1178 |
-
#: templates/account.php:
|
1179 |
msgid "Search by address"
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#: templates/account.
|
1183 |
-
#: templates/debug.
|
1184 |
-
#: templates/debug.
|
1185 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1186 |
msgid "ID"
|
1187 |
msgstr "ID"
|
1188 |
|
1189 |
-
#: templates/account.
|
1190 |
msgid "Address"
|
1191 |
-
msgstr "
|
1192 |
|
1193 |
-
#: templates/account.php:
|
1194 |
msgid "License"
|
1195 |
msgstr "ライセンス"
|
1196 |
|
1197 |
-
#: templates/account.php:
|
1198 |
msgid "Plan"
|
1199 |
msgstr "プラン"
|
1200 |
|
1201 |
-
#: templates/account.php:
|
1202 |
msgctxt "as software license"
|
1203 |
msgid "License"
|
1204 |
msgstr "ライセンス"
|
1205 |
|
1206 |
-
#: templates/account.php:
|
1207 |
-
msgid "Cancelled"
|
1208 |
-
msgstr "キャンセル"
|
1209 |
-
|
1210 |
-
#: templates/account.php:640
|
1211 |
-
msgid "Expired"
|
1212 |
-
msgstr "期限切れ"
|
1213 |
-
|
1214 |
-
#: templates/account.php:645
|
1215 |
-
msgid "No expiration"
|
1216 |
-
msgstr "有効期限なし"
|
1217 |
-
|
1218 |
-
#: templates/account.php756, templates/account.php:812
|
1219 |
-
msgid "Activate this add-on"
|
1220 |
-
msgstr "このアドオンを有効化"
|
1221 |
-
|
1222 |
-
#: templates/account.php833, templates/debug.php408, templates/debug.php:486
|
1223 |
-
msgctxt "verb"
|
1224 |
-
msgid "Delete"
|
1225 |
-
msgstr "削除"
|
1226 |
-
|
1227 |
-
#: templates/account.php:890
|
1228 |
msgctxt "verb"
|
1229 |
msgid "Hide"
|
1230 |
msgstr "非表示"
|
1231 |
|
1232 |
-
#: templates/account.php:
|
1233 |
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?"
|
1234 |
-
msgstr "
|
1235 |
|
1236 |
#: templates/add-ons.php:36
|
1237 |
msgid "Add Ons for %s"
|
@@ -1253,31 +1335,31 @@ msgstr "却下"
|
|
1253 |
|
1254 |
#: templates/auto-installation.php:45
|
1255 |
msgid "%s sec"
|
1256 |
-
msgstr "%s
|
1257 |
|
1258 |
#: templates/auto-installation.php:83
|
1259 |
msgid "Automatic Installation"
|
1260 |
-
msgstr "
|
1261 |
|
1262 |
#: templates/auto-installation.php:93
|
1263 |
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."
|
1264 |
-
msgstr "
|
1265 |
|
1266 |
#: templates/auto-installation.php:104
|
1267 |
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."
|
1268 |
-
msgstr "
|
1269 |
|
1270 |
#: templates/auto-installation.php:109
|
1271 |
msgid "Cancel Installation"
|
1272 |
-
msgstr "
|
1273 |
|
1274 |
#: templates/checkout.php:172
|
1275 |
msgid "Checkout"
|
1276 |
-
msgstr "
|
1277 |
|
1278 |
#: templates/checkout.php:172
|
1279 |
msgid "PCI compliant"
|
1280 |
-
msgstr "PCI
|
1281 |
|
1282 |
#. translators: %s: name (e.g. Hey John,)
|
1283 |
#: templates/connect.php:110
|
@@ -1285,157 +1367,165 @@ msgctxt "greeting"
|
|
1285 |
msgid "Hey %s,"
|
1286 |
msgstr "おおい %s さん、"
|
1287 |
|
1288 |
-
#: templates/connect.php:
|
1289 |
msgid "Allow & Continue"
|
1290 |
msgstr "許可して続ける"
|
1291 |
|
1292 |
-
#: templates/connect.php:
|
1293 |
msgid "Re-send activation email"
|
1294 |
msgstr "有効化メールを再送信"
|
1295 |
|
1296 |
-
#: templates/connect.php:
|
1297 |
msgid "Thanks %s!"
|
1298 |
msgstr "ありがとう $s さん!"
|
1299 |
|
1300 |
-
#: templates/connect.
|
1301 |
msgid "Agree & Activate License"
|
1302 |
msgstr "同意してライセンスを有効化"
|
1303 |
|
1304 |
-
#: templates/connect.php:
|
1305 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1306 |
msgstr "%s を購入いただきありがとうございます。はじめにライセンスキーを入力してください:"
|
1307 |
|
1308 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1309 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1310 |
-
msgstr "
|
1311 |
|
1312 |
-
#: templates/connect.php:
|
1313 |
-
msgid "
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1317 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1318 |
-
msgstr "
|
1319 |
|
1320 |
-
#: templates/connect.php:
|
1321 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1322 |
-
msgstr "
|
1323 |
|
1324 |
-
#: templates/connect.php:
|
1325 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1326 |
-
msgstr "
|
1327 |
|
1328 |
-
#: templates/connect.php:
|
1329 |
msgid "%s's paid features"
|
1330 |
-
msgstr "%s
|
1331 |
|
1332 |
-
#: templates/connect.php:
|
1333 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1334 |
-
msgstr "
|
1335 |
|
1336 |
-
#: templates/connect.php:
|
1337 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1338 |
-
msgstr "
|
1339 |
|
1340 |
-
#: templates/connect.
|
1341 |
msgid "License key"
|
1342 |
msgstr "ライセンスキー"
|
1343 |
|
1344 |
-
#: templates/connect.
|
1345 |
msgid "Can't find your license key?"
|
1346 |
msgstr "ライセンスキーは見つかりませんか?"
|
1347 |
|
1348 |
-
#: templates/connect.
|
1349 |
#: templates/forms/deactivation/retry-skip.php:20
|
1350 |
msgctxt "verb"
|
1351 |
msgid "Skip"
|
1352 |
msgstr "スキップ"
|
1353 |
|
1354 |
-
#: templates/connect.php:
|
1355 |
msgid "Delegate to Site Admins"
|
1356 |
-
msgstr "
|
1357 |
|
1358 |
-
#: templates/connect.php:
|
1359 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1360 |
-
msgstr "
|
1361 |
|
1362 |
-
#: templates/connect.php:
|
1363 |
msgid "Your Profile Overview"
|
1364 |
msgstr "プロフィール概要"
|
1365 |
|
1366 |
-
#: templates/connect.php:
|
1367 |
msgid "Name and email address"
|
1368 |
msgstr "名前とメールアドレス"
|
1369 |
|
1370 |
-
#: templates/connect.php:
|
1371 |
msgid "Your Site Overview"
|
1372 |
msgstr "サイト概要"
|
1373 |
|
1374 |
-
#: templates/connect.php:
|
1375 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1376 |
msgstr "サイト URL、WP バージョン、PHP info、プラグインとテーマ"
|
1377 |
|
1378 |
-
#: templates/connect.php:
|
1379 |
msgid "Admin Notices"
|
1380 |
msgstr "管理者通知"
|
1381 |
|
1382 |
-
#: templates/connect.
|
1383 |
msgid "Updates, announcements, marketing, no spam"
|
1384 |
msgstr "更新、発表、マーケティング、スパムなし"
|
1385 |
|
1386 |
-
#: templates/connect.php:
|
1387 |
msgid "Current %s Events"
|
1388 |
-
msgstr "
|
1389 |
|
1390 |
-
#: templates/connect.php:
|
1391 |
msgid "Activation, deactivation and uninstall"
|
1392 |
msgstr "有効化、無効化、アンインストール"
|
1393 |
|
1394 |
-
#: templates/connect.php:
|
1395 |
msgid "Newsletter"
|
1396 |
msgstr "ニュースレター"
|
1397 |
|
1398 |
-
#: templates/connect.
|
1399 |
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."
|
1400 |
-
msgstr "
|
1401 |
|
1402 |
-
#: templates/connect.php:
|
1403 |
msgid "What permissions are being granted?"
|
1404 |
msgstr "付与されているパーミッションは何ですか?"
|
1405 |
|
1406 |
-
#: templates/connect.php:
|
1407 |
msgid "Don't have a license key?"
|
1408 |
msgstr "ライセンスキーをお持ちではありませんか?"
|
1409 |
|
1410 |
-
#: templates/connect.php:
|
1411 |
msgid "Activate Free Version"
|
1412 |
msgstr "フリーバージョンを有効化"
|
1413 |
|
1414 |
-
#: templates/connect.php:
|
1415 |
msgid "Have a license key?"
|
1416 |
msgstr "ライセンスキーはお持ちですか?"
|
1417 |
|
1418 |
-
#: templates/connect.php:
|
1419 |
msgid "Privacy Policy"
|
1420 |
msgstr "プライバシーポリシー"
|
1421 |
|
1422 |
-
#: templates/connect.php:
|
1423 |
msgid "Terms of Service"
|
1424 |
msgstr "利用規約"
|
1425 |
|
1426 |
-
#: templates/connect.php:
|
1427 |
msgctxt "as in the process of sending an email"
|
1428 |
msgid "Sending email"
|
1429 |
msgstr "メール送信中"
|
1430 |
|
1431 |
-
#: templates/connect.php:
|
1432 |
msgctxt "as activating plugin"
|
1433 |
msgid "Activating"
|
1434 |
msgstr "有効化中"
|
1435 |
|
1436 |
#: templates/contact.php:78
|
1437 |
msgid "Contact"
|
1438 |
-
msgstr "
|
1439 |
|
1440 |
#: templates/debug.php:17
|
1441 |
msgctxt "as turned off"
|
@@ -1456,8 +1546,8 @@ msgctxt "as code debugging"
|
|
1456 |
msgid "Debugging"
|
1457 |
msgstr "デバッグ"
|
1458 |
|
1459 |
-
#: templates/debug.php54, templates/debug.php238, templates/debug.
|
1460 |
-
#: templates/debug.php:
|
1461 |
msgid "Actions"
|
1462 |
msgstr "アクション"
|
1463 |
|
@@ -1475,7 +1565,7 @@ msgstr "API キャッシュをクリア"
|
|
1475 |
|
1476 |
#: templates/debug.php:79
|
1477 |
msgid "Clear Updates Transients"
|
1478 |
-
msgstr "
|
1479 |
|
1480 |
#: templates/debug.php:86
|
1481 |
msgid "Sync Data From Server"
|
@@ -1483,19 +1573,19 @@ msgstr "サーバーからのデータを同期"
|
|
1483 |
|
1484 |
#: templates/debug.php:90
|
1485 |
msgid "Load DB Option"
|
1486 |
-
msgstr "
|
1487 |
|
1488 |
#: templates/debug.php:93
|
1489 |
msgid "Set DB Option"
|
1490 |
-
msgstr "
|
1491 |
|
1492 |
#: templates/debug.php:170
|
1493 |
msgid "Key"
|
1494 |
-
msgstr "
|
1495 |
|
1496 |
#: templates/debug.php:171
|
1497 |
msgid "Value"
|
1498 |
-
msgstr "
|
1499 |
|
1500 |
#: templates/debug.php:187
|
1501 |
msgctxt "as software development kit versions"
|
@@ -1508,7 +1598,7 @@ msgstr "SDK のパス"
|
|
1508 |
|
1509 |
#: templates/debug.php193, templates/debug.php:232
|
1510 |
msgid "Module Path"
|
1511 |
-
msgstr "
|
1512 |
|
1513 |
#: templates/debug.php:194
|
1514 |
msgid "Is Active"
|
@@ -1522,12 +1612,12 @@ msgstr "プラグイン"
|
|
1522 |
msgid "Themes"
|
1523 |
msgstr "テーマ"
|
1524 |
|
1525 |
-
#: templates/debug.php227, templates/debug.
|
1526 |
#: templates/debug/scheduled-crons.php:80
|
1527 |
msgid "Slug"
|
1528 |
msgstr "スラッグ"
|
1529 |
|
1530 |
-
#: templates/debug.php229, templates/debug.php:
|
1531 |
msgid "Title"
|
1532 |
msgstr "タイトル"
|
1533 |
|
@@ -1542,138 +1632,144 @@ msgstr "Freemius ステータス"
|
|
1542 |
|
1543 |
#: templates/debug.php:235
|
1544 |
msgid "Network Blog"
|
1545 |
-
msgstr "
|
1546 |
|
1547 |
#: templates/debug.php:236
|
1548 |
msgid "Network User"
|
1549 |
-
msgstr "
|
1550 |
|
1551 |
-
#: templates/debug.php:
|
1552 |
msgctxt "as connection was successful"
|
1553 |
msgid "Connected"
|
1554 |
msgstr "接続"
|
1555 |
|
1556 |
-
#: templates/debug.php:
|
1557 |
msgctxt "as connection blocked"
|
1558 |
msgid "Blocked"
|
1559 |
msgstr "ブロック"
|
1560 |
|
1561 |
-
#: templates/debug.php:
|
1562 |
msgid "Simulate Trial"
|
1563 |
-
msgstr "
|
1564 |
|
1565 |
-
#: templates/debug.php:
|
1566 |
msgid "Simulate Network Upgrade"
|
1567 |
-
msgstr "
|
1568 |
|
1569 |
-
#: templates/debug.php:
|
1570 |
msgid "%s Installs"
|
1571 |
-
msgstr "%s
|
1572 |
|
1573 |
-
#: templates/debug.php:
|
1574 |
msgctxt "like websites"
|
1575 |
msgid "Sites"
|
1576 |
msgstr "サイト数"
|
1577 |
|
1578 |
-
#: templates/debug.
|
1579 |
msgid "Blog ID"
|
1580 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
1581 |
|
1582 |
-
#: templates/debug.php:
|
1583 |
msgid "Add Ons of module %s"
|
1584 |
-
msgstr "
|
1585 |
|
1586 |
-
#: templates/debug.php:
|
1587 |
msgid "Users"
|
1588 |
msgstr "ユーザー"
|
1589 |
|
1590 |
-
#: templates/debug.php:
|
1591 |
msgid "Verified"
|
1592 |
msgstr "認証済み"
|
1593 |
|
1594 |
-
#: templates/debug.php:
|
1595 |
msgid "%s Licenses"
|
1596 |
-
msgstr "%s
|
1597 |
|
1598 |
-
#: templates/debug.php:
|
1599 |
msgid "Plugin ID"
|
1600 |
-
msgstr "
|
1601 |
|
1602 |
-
#: templates/debug.php:
|
1603 |
msgid "Plan ID"
|
1604 |
-
msgstr "
|
1605 |
|
1606 |
-
#: templates/debug.php:
|
1607 |
msgid "Quota"
|
1608 |
-
msgstr "
|
1609 |
|
1610 |
-
#: templates/debug.php:
|
1611 |
msgid "Activated"
|
1612 |
-
msgstr "
|
1613 |
|
1614 |
-
#: templates/debug.php:
|
1615 |
msgid "Blocking"
|
1616 |
-
msgstr "
|
1617 |
|
1618 |
-
#: templates/debug.php:
|
1619 |
msgctxt "as expiration date"
|
1620 |
msgid "Expiration"
|
1621 |
msgstr "期限切れ"
|
1622 |
|
1623 |
-
#: templates/debug.php:
|
1624 |
msgid "Debug Log"
|
1625 |
-
msgstr "
|
1626 |
|
1627 |
-
#: templates/debug.php:
|
1628 |
msgid "All Types"
|
1629 |
-
msgstr "
|
1630 |
|
1631 |
-
#: templates/debug.php:
|
1632 |
msgid "All Requests"
|
1633 |
-
msgstr "
|
1634 |
|
1635 |
-
#: templates/debug.
|
1636 |
#: templates/debug/logger.php:25
|
1637 |
msgid "File"
|
1638 |
-
msgstr "
|
1639 |
|
1640 |
-
#: templates/debug.
|
1641 |
#: templates/debug/logger.php:23
|
1642 |
msgid "Function"
|
1643 |
-
msgstr "
|
1644 |
|
1645 |
-
#: templates/debug.php:
|
1646 |
msgid "Process ID"
|
1647 |
-
msgstr "
|
1648 |
|
1649 |
-
#: templates/debug.php:
|
1650 |
msgid "Logger"
|
1651 |
-
msgstr "
|
1652 |
|
1653 |
-
#: templates/debug.
|
1654 |
#: templates/debug/logger.php:24
|
1655 |
msgid "Message"
|
1656 |
-
msgstr "
|
1657 |
|
1658 |
-
#: templates/debug.php:
|
1659 |
msgid "Filter"
|
1660 |
-
msgstr "
|
1661 |
|
1662 |
-
#: templates/debug.php:
|
1663 |
msgid "Download"
|
1664 |
-
msgstr "
|
1665 |
|
1666 |
-
#: templates/debug.
|
1667 |
msgid "Type"
|
1668 |
-
msgstr "
|
1669 |
|
1670 |
-
#: templates/debug.
|
1671 |
msgid "Timestamp"
|
1672 |
-
msgstr "
|
1673 |
|
1674 |
#: templates/secure-https-header.php:28
|
1675 |
msgid "Secure HTTPS %s page, running from an external domain"
|
1676 |
-
msgstr "
|
1677 |
|
1678 |
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1679 |
#: templates/plugin-info/features.php:43
|
@@ -1692,7 +1788,7 @@ msgstr "Freemius API"
|
|
1692 |
|
1693 |
#: includes/debug/debug-bar-start.php:42
|
1694 |
msgid "Requests"
|
1695 |
-
msgstr "
|
1696 |
|
1697 |
#: templates/account/billing.php:28
|
1698 |
msgctxt "verb"
|
@@ -1766,15 +1862,15 @@ msgstr "API"
|
|
1766 |
|
1767 |
#: templates/debug/api-calls.php:68
|
1768 |
msgid "Method"
|
1769 |
-
msgstr "
|
1770 |
|
1771 |
#: templates/debug/api-calls.php:69
|
1772 |
msgid "Code"
|
1773 |
-
msgstr "
|
1774 |
|
1775 |
#: templates/debug/api-calls.php:70
|
1776 |
msgid "Length"
|
1777 |
-
msgstr "
|
1778 |
|
1779 |
#: templates/debug/api-calls.php:71
|
1780 |
msgctxt "as file/folder path"
|
@@ -1783,23 +1879,23 @@ msgstr "パス"
|
|
1783 |
|
1784 |
#: templates/debug/api-calls.php:73
|
1785 |
msgid "Body"
|
1786 |
-
msgstr "
|
1787 |
|
1788 |
#: templates/debug/api-calls.php:75
|
1789 |
msgid "Result"
|
1790 |
-
msgstr "
|
1791 |
|
1792 |
#: templates/debug/api-calls.php:76
|
1793 |
msgid "Start"
|
1794 |
-
msgstr "
|
1795 |
|
1796 |
#: templates/debug/api-calls.php:77
|
1797 |
msgid "End"
|
1798 |
-
msgstr "
|
1799 |
|
1800 |
#: templates/debug/logger.php:15
|
1801 |
msgid "Log"
|
1802 |
-
msgstr "
|
1803 |
|
1804 |
#. translators: %s: time period (e.g. In "2 hours")
|
1805 |
#: templates/debug/plugins-themes-sync.php18,
|
@@ -1817,7 +1913,7 @@ msgstr "%s 前"
|
|
1817 |
#: templates/debug/scheduled-crons.php:74
|
1818 |
msgctxt "seconds"
|
1819 |
msgid "sec"
|
1820 |
-
msgstr "
|
1821 |
|
1822 |
#: templates/debug/plugins-themes-sync.php:23
|
1823 |
msgid "Plugins & Themes Sync"
|
@@ -1825,12 +1921,12 @@ msgstr "プラグインとテーマを同期"
|
|
1825 |
|
1826 |
#: templates/debug/plugins-themes-sync.php:28
|
1827 |
msgid "Total"
|
1828 |
-
msgstr "
|
1829 |
|
1830 |
#: templates/debug/plugins-themes-sync.php29,
|
1831 |
#: templates/debug/scheduled-crons.php:84
|
1832 |
msgid "Last"
|
1833 |
-
msgstr "
|
1834 |
|
1835 |
#: templates/debug/scheduled-crons.php:76
|
1836 |
msgid "Scheduled Crons"
|
@@ -1838,91 +1934,91 @@ msgstr "スケジュール Cron"
|
|
1838 |
|
1839 |
#: templates/debug/scheduled-crons.php:81
|
1840 |
msgid "Module"
|
1841 |
-
msgstr "
|
1842 |
|
1843 |
#: templates/debug/scheduled-crons.php:82
|
1844 |
msgid "Module Type"
|
1845 |
-
msgstr "
|
1846 |
|
1847 |
#: templates/debug/scheduled-crons.php:83
|
1848 |
msgid "Cron Type"
|
1849 |
-
msgstr "Cron
|
1850 |
|
1851 |
#: templates/debug/scheduled-crons.php:85
|
1852 |
msgid "Next"
|
1853 |
-
msgstr "
|
1854 |
|
1855 |
#: templates/forms/affiliation.php:82
|
1856 |
msgid "Non-expiring"
|
1857 |
-
msgstr "
|
1858 |
|
1859 |
#: templates/forms/affiliation.php:85
|
1860 |
msgid "Apply to become an affiliate"
|
1861 |
-
msgstr "
|
1862 |
|
1863 |
#: templates/forms/affiliation.php:104
|
1864 |
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1865 |
-
msgstr "
|
1866 |
|
1867 |
#: templates/forms/affiliation.php:119
|
1868 |
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."
|
1869 |
-
msgstr "
|
1870 |
|
1871 |
#: templates/forms/affiliation.php:122
|
1872 |
msgid "Your affiliation account was temporarily suspended."
|
1873 |
-
msgstr "
|
1874 |
|
1875 |
#: templates/forms/affiliation.php:125
|
1876 |
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."
|
1877 |
-
msgstr "
|
1878 |
|
1879 |
#: templates/forms/affiliation.php:128
|
1880 |
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1881 |
-
msgstr "
|
1882 |
|
1883 |
#: templates/forms/affiliation.php:141
|
1884 |
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1885 |
-
msgstr "
|
1886 |
|
1887 |
#: templates/forms/affiliation.php:142
|
1888 |
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1889 |
-
msgstr "
|
1890 |
|
1891 |
#: templates/forms/affiliation.php:145
|
1892 |
msgid "Program Summary"
|
1893 |
-
msgstr "
|
1894 |
|
1895 |
#: templates/forms/affiliation.php:147
|
1896 |
msgid "%s commission when a customer purchases a new license."
|
1897 |
-
msgstr "
|
1898 |
|
1899 |
#: templates/forms/affiliation.php:149
|
1900 |
msgid "Get commission for automated subscription renewals."
|
1901 |
-
msgstr "
|
1902 |
|
1903 |
#: templates/forms/affiliation.php:152
|
1904 |
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
1905 |
-
msgstr "%s
|
1906 |
|
1907 |
#: templates/forms/affiliation.php:155
|
1908 |
msgid "Unlimited commissions."
|
1909 |
-
msgstr "
|
1910 |
|
1911 |
#: templates/forms/affiliation.php:157
|
1912 |
msgid "%s minimum payout amount."
|
1913 |
-
msgstr "%s
|
1914 |
|
1915 |
#: templates/forms/affiliation.php:158
|
1916 |
msgid "Payouts are in USD and processed monthly via PayPal."
|
1917 |
-
msgstr "
|
1918 |
|
1919 |
#: templates/forms/affiliation.php:159
|
1920 |
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
1921 |
-
msgstr "
|
1922 |
|
1923 |
#: templates/forms/affiliation.php:162
|
1924 |
msgid "Affiliate"
|
1925 |
-
msgstr "
|
1926 |
|
1927 |
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
1928 |
msgid "Email address"
|
@@ -1930,59 +2026,59 @@ msgstr "メールアドレス"
|
|
1930 |
|
1931 |
#: templates/forms/affiliation.php:169
|
1932 |
msgid "Full name"
|
1933 |
-
msgstr "
|
1934 |
|
1935 |
#: templates/forms/affiliation.php:173
|
1936 |
msgid "PayPal account email address"
|
1937 |
-
msgstr "PayPal
|
1938 |
|
1939 |
#: templates/forms/affiliation.php:177
|
1940 |
msgid "Where are you going to promote the %s?"
|
1941 |
-
msgstr "
|
1942 |
|
1943 |
#: templates/forms/affiliation.php:179
|
1944 |
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
1945 |
-
msgstr "
|
1946 |
|
1947 |
#: templates/forms/affiliation.php:181
|
1948 |
msgid "Add another domain"
|
1949 |
-
msgstr "
|
1950 |
|
1951 |
#: templates/forms/affiliation.php:185
|
1952 |
msgid "Extra Domains"
|
1953 |
-
msgstr "
|
1954 |
|
1955 |
#: templates/forms/affiliation.php:186
|
1956 |
msgid "Extra domains where you will be marketing the product from."
|
1957 |
-
msgstr "
|
1958 |
|
1959 |
#: templates/forms/affiliation.php:196
|
1960 |
msgid "Promotion methods"
|
1961 |
-
msgstr "
|
1962 |
|
1963 |
#: templates/forms/affiliation.php:199
|
1964 |
msgid "Social media (Facebook, Twitter, etc.)"
|
1965 |
-
msgstr "
|
1966 |
|
1967 |
#: templates/forms/affiliation.php:203
|
1968 |
msgid "Mobile apps"
|
1969 |
-
msgstr "
|
1970 |
|
1971 |
#: templates/forms/affiliation.php:207
|
1972 |
msgid "Website, email, and social media statistics (optional)"
|
1973 |
-
msgstr "
|
1974 |
|
1975 |
#: templates/forms/affiliation.php:210
|
1976 |
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)."
|
1977 |
-
msgstr "
|
1978 |
|
1979 |
#: templates/forms/affiliation.php:214
|
1980 |
msgid "How will you promote us?"
|
1981 |
-
msgstr "
|
1982 |
|
1983 |
#: templates/forms/affiliation.php:217
|
1984 |
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
1985 |
-
msgstr "
|
1986 |
|
1987 |
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
1988 |
msgid "Cancel"
|
@@ -1990,7 +2086,7 @@ msgstr "キャンセル"
|
|
1990 |
|
1991 |
#: templates/forms/affiliation.php:225
|
1992 |
msgid "Become an affiliate"
|
1993 |
-
msgstr "
|
1994 |
|
1995 |
#: templates/forms/license-activation.php:20
|
1996 |
msgid "Please enter the license key that you received in the email right after the purchase:"
|
@@ -2018,6 +2114,27 @@ msgstr "使用の追跡は %s をより良くする名目の下に行われて
|
|
2018 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2019 |
msgstr "\"オプトアウト\"をクリックすることで、もう %s から %s へのデータの送信は行いません。"
|
2020 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021 |
#: templates/forms/resend-key.php:21
|
2022 |
msgid "Send License Key"
|
2023 |
msgstr "ライセンスキーを送信"
|
@@ -2032,42 +2149,42 @@ msgstr "%2$s プランの%1$s日間のフリートライアルを開始するま
|
|
2032 |
|
2033 |
#: templates/forms/trial-start.php:28
|
2034 |
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."
|
2035 |
-
msgstr "
|
2036 |
|
2037 |
#: templates/js/style-premium-theme.php:37
|
2038 |
msgid "Premium"
|
2039 |
-
msgstr "
|
2040 |
|
2041 |
#: templates/partials/network-activation.php:23
|
2042 |
msgid "Activate license on all sites in the network."
|
2043 |
-
msgstr "
|
2044 |
|
2045 |
#: templates/partials/network-activation.php:24
|
2046 |
msgid "Apply on all sites in the network."
|
2047 |
-
msgstr "
|
2048 |
|
2049 |
#: templates/partials/network-activation.php:27
|
2050 |
msgid "Activate license on all pending sites."
|
2051 |
-
msgstr "
|
2052 |
|
2053 |
#: templates/partials/network-activation.php:28
|
2054 |
msgid "Apply on all pending sites."
|
2055 |
-
msgstr "
|
2056 |
|
2057 |
#: templates/partials/network-activation.php36,
|
2058 |
#: templates/partials/network-activation.php:68
|
2059 |
msgid "allow"
|
2060 |
-
msgstr "
|
2061 |
|
2062 |
#: templates/partials/network-activation.php38,
|
2063 |
#: templates/partials/network-activation.php:70
|
2064 |
msgid "delegate"
|
2065 |
-
msgstr "
|
2066 |
|
2067 |
#: templates/partials/network-activation.php41,
|
2068 |
#: templates/partials/network-activation.php:73
|
2069 |
msgid "skip"
|
2070 |
-
msgstr "
|
2071 |
|
2072 |
#: templates/plugin-info/description.php72,
|
2073 |
#: templates/plugin-info/screenshots.php:31
|
@@ -2091,21 +2208,38 @@ msgstr "あと %s"
|
|
2091 |
msgid "Last license"
|
2092 |
msgstr "最新のライセンス"
|
2093 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2094 |
#: templates/account/partials/site.php:181
|
2095 |
msgid "Owner Name"
|
2096 |
-
msgstr "
|
2097 |
|
2098 |
#: templates/account/partials/site.php:193
|
2099 |
msgid "Owner Email"
|
2100 |
-
msgstr "
|
2101 |
|
2102 |
#: templates/account/partials/site.php:205
|
2103 |
msgid "Owner ID"
|
2104 |
-
msgstr "
|
2105 |
|
2106 |
#: templates/account/partials/site.php:270
|
2107 |
msgid "Subscription"
|
2108 |
-
msgstr "
|
2109 |
|
2110 |
#: templates/forms/deactivation/contact.php:19
|
2111 |
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
@@ -2125,7 +2259,7 @@ msgstr "無効化"
|
|
2125 |
|
2126 |
#: templates/forms/deactivation/form.php:65
|
2127 |
msgid "Activate %s"
|
2128 |
-
msgstr "
|
2129 |
|
2130 |
#: templates/forms/deactivation/form.php:76
|
2131 |
msgid "Quick feedback"
|
@@ -2133,31 +2267,31 @@ msgstr "クイックフィードバック"
|
|
2133 |
|
2134 |
#: templates/forms/deactivation/form.php:80
|
2135 |
msgid "If you have a moment, please let us know why you are %s"
|
2136 |
-
msgstr "
|
2137 |
|
2138 |
#: templates/forms/deactivation/form.php:80
|
2139 |
msgid "deactivating"
|
2140 |
-
msgstr "
|
2141 |
|
2142 |
#: templates/forms/deactivation/form.php:80
|
2143 |
msgid "switching"
|
2144 |
-
msgstr "
|
2145 |
|
2146 |
-
#: templates/forms/deactivation/form.php:
|
2147 |
msgid "Submit & %s"
|
2148 |
-
msgstr "
|
2149 |
|
2150 |
-
#: templates/forms/deactivation/form.php:
|
2151 |
msgid "Kindly tell us the reason so we can improve."
|
2152 |
msgstr "改善できるよう、どうか理由を教えてください。"
|
2153 |
|
2154 |
-
#: templates/forms/deactivation/form.php:
|
2155 |
msgid "Yes - %s"
|
2156 |
-
msgstr "
|
2157 |
|
2158 |
-
#: templates/forms/deactivation/form.php:
|
2159 |
msgid "Skip & %s"
|
2160 |
-
msgstr "
|
2161 |
|
2162 |
#: templates/forms/deactivation/retry-skip.php:21
|
2163 |
msgid "Click here to use the plugin anonymously"
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Odyssey <8bitodyssey+github@gmail.com>, 2016
|
5 |
+
# aka.tsundoa, 2018
|
6 |
# Takayuki Miyauchi <miya0001@users.noreply.github.com>, 2016
|
7 |
+
# aka.tsundoa, 2018
|
8 |
msgid ""
|
9 |
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-05-24 22:49+0000\n"
|
14 |
+
"Last-Translator: aka.tsundoa\n"
|
15 |
"Language: ja_JP\n"
|
16 |
"Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
+
#: includes/class-freemius.php:1551
|
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:1553
|
32 |
msgid "Error"
|
33 |
msgstr "エラー"
|
34 |
|
35 |
+
#: includes/class-freemius.php:1871
|
36 |
msgid "I found a better %s"
|
37 |
+
msgstr "より良い %sを見つけました"
|
38 |
|
39 |
+
#: includes/class-freemius.php:1873
|
40 |
msgid "What's the %s's name?"
|
41 |
+
msgstr "%sの名前は何ですか?"
|
42 |
|
43 |
+
#: includes/class-freemius.php:1879
|
44 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
45 |
+
msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
|
46 |
|
47 |
+
#: includes/class-freemius.php:1881
|
48 |
msgid "Deactivation"
|
49 |
+
msgstr "無効化"
|
50 |
|
51 |
+
#: includes/class-freemius.php:1882
|
52 |
msgid "Theme Switch"
|
53 |
+
msgstr "テーマ変更"
|
54 |
|
55 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
56 |
msgid "Other"
|
57 |
msgstr "その他"
|
58 |
|
59 |
+
#: includes/class-freemius.php:1899
|
60 |
msgid "I no longer need the %s"
|
61 |
+
msgstr "%sはもう不要です"
|
62 |
|
63 |
+
#: includes/class-freemius.php:1906
|
64 |
msgid "I only needed the %s for a short period"
|
65 |
+
msgstr "短期間だけ %sが 必要です。"
|
66 |
|
67 |
+
#: includes/class-freemius.php:1912
|
68 |
msgid "The %s broke my site"
|
69 |
+
msgstr "%s の影響でサイトを崩れました"
|
70 |
|
71 |
+
#: includes/class-freemius.php:1919
|
72 |
msgid "The %s suddenly stopped working"
|
73 |
+
msgstr "%s の動作が突然停止しました"
|
74 |
|
75 |
+
#: includes/class-freemius.php:1929
|
76 |
msgid "I can't pay for it anymore"
|
77 |
msgstr "もう払うことができません"
|
78 |
|
79 |
+
#: includes/class-freemius.php:1931
|
80 |
msgid "What price would you feel comfortable paying?"
|
81 |
msgstr " 支払ってもよいと思う価格はいくらですか?"
|
82 |
|
83 |
+
#: includes/class-freemius.php:1937
|
84 |
msgid "I don't like to share my information with you"
|
85 |
msgstr "自分の情報を共有したくありません"
|
86 |
|
87 |
+
#: includes/class-freemius.php:1958
|
88 |
msgid "The %s didn't work"
|
89 |
+
msgstr "%s が動作しませんでした"
|
90 |
|
91 |
+
#: includes/class-freemius.php:1968
|
92 |
msgid "I couldn't understand how to make it work"
|
93 |
msgstr "どうしたら動作するか分かりませんでした。"
|
94 |
|
95 |
+
#: includes/class-freemius.php:1976
|
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:1978
|
100 |
msgid "What feature?"
|
101 |
msgstr "何の機能ですか?"
|
102 |
|
103 |
+
#: includes/class-freemius.php:1982
|
104 |
msgid "The %s is not working"
|
105 |
+
msgstr "%s が動作していません"
|
106 |
|
107 |
+
#: includes/class-freemius.php:1984
|
108 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
109 |
msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
|
110 |
|
111 |
+
#: includes/class-freemius.php:1988
|
112 |
msgid "It's not what I was looking for"
|
113 |
msgstr "探していたものではありません"
|
114 |
|
115 |
+
#: includes/class-freemius.php:1990
|
116 |
msgid "What you've been looking for?"
|
117 |
msgstr "探していたのは何ですか?"
|
118 |
|
119 |
+
#: includes/class-freemius.php:1994
|
120 |
msgid "The %s didn't work as expected"
|
121 |
+
msgstr "%sが期待通りに動きませんでした "
|
122 |
|
123 |
+
#: includes/class-freemius.php:1996
|
124 |
msgid "What did you expect?"
|
125 |
msgstr "何を期待していましたか?"
|
126 |
|
127 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr "Freemius デバッグ"
|
130 |
|
131 |
+
#: includes/class-freemius.php:3402
|
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:3404
|
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:3411
|
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:3516
|
144 |
msgid "Yes - do your thing"
|
145 |
msgstr "はい - お構いなく"
|
146 |
|
147 |
+
#: includes/class-freemius.php:3521
|
148 |
msgid "No - just deactivate"
|
149 |
msgstr "いいえ - すぐに無効化"
|
150 |
|
151 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
152 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
153 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
154 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
155 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
156 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
157 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
158 |
msgctxt "exclamation"
|
159 |
msgid "Oops"
|
160 |
msgstr "おっと"
|
161 |
|
162 |
+
#: includes/class-freemius.php:3635
|
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:4063
|
167 |
msgctxt "addonX cannot run without pluginY"
|
168 |
msgid "%s cannot run without %s."
|
169 |
msgstr "%s は、%s が無いと実行することができません。"
|
170 |
|
171 |
+
#: includes/class-freemius.php:4064
|
172 |
msgctxt "addonX cannot run..."
|
173 |
msgid "%s cannot run without the plugin."
|
174 |
msgstr "%s は、プラグインが無いと実行することができません。"
|
175 |
|
176 |
+
#: includes/class-freemius.php4176, includes/class-freemius.php4201,
|
177 |
+
#: includes/class-freemius.php:17103
|
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:4815
|
182 |
msgid "Premium %s version was successfully activated."
|
183 |
+
msgstr "プレミアムバージョンの %sは有効化に成功しました。"
|
184 |
|
185 |
+
#: includes/class-freemius.php4827, includes/class-freemius.php:6660
|
186 |
msgctxt ""
|
187 |
msgid "W00t"
|
188 |
msgstr "やったー"
|
189 |
|
190 |
+
#: includes/class-freemius.php:4842
|
191 |
msgid "You have a %s license."
|
192 |
msgstr "%s ライセンスを持っています。"
|
193 |
|
194 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
195 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
196 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
197 |
+
#: includes/class-freemius.php:16891
|
198 |
msgctxt "interjection expressing joy or exuberance"
|
199 |
msgid "Yee-haw"
|
200 |
msgstr "ヤッホー"
|
201 |
|
202 |
+
#: includes/class-freemius.php:5110
|
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:5114
|
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.php5123, templates/add-ons.php99,
|
211 |
+
#: templates/account/partials/addon.php:283
|
212 |
msgid "More information about %s"
|
213 |
msgstr "%s に関する詳細情報"
|
214 |
|
215 |
+
#: includes/class-freemius.php:5124
|
216 |
msgid "Purchase License"
|
217 |
msgstr "ライセンスを購入"
|
218 |
|
219 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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:6039
|
224 |
msgid "start the trial"
|
225 |
msgstr "トライアルを開始"
|
226 |
|
227 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
228 |
msgid "complete the install"
|
229 |
msgstr "インストールを完了"
|
230 |
|
231 |
+
#: includes/class-freemius.php:6147
|
232 |
msgid "You are just one step away - %s"
|
233 |
msgstr "もうあとわずかです - %s"
|
234 |
|
235 |
+
#: includes/class-freemius.php:6150
|
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:6227
|
241 |
msgid "We made a few tweaks to the %s, %s"
|
242 |
+
msgstr "プラグインを微調整します、 %s, %s"
|
243 |
|
244 |
+
#: includes/class-freemius.php:6231
|
245 |
msgid "Opt in to make \"%s\" Better!"
|
246 |
+
msgstr "\"%s\" をより良くするためにオプトインをしてください!"
|
247 |
|
248 |
+
#: includes/class-freemius.php:6659
|
249 |
msgid "The upgrade of %s was successfully completed."
|
250 |
msgstr "%s のアップグレードが完了しました。"
|
251 |
|
252 |
+
#: includes/class-freemius.php8384, includes/class-fs-plugin-updater.php581,
|
253 |
+
#: includes/class-fs-plugin-updater.php733,
|
254 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
255 |
msgid "Add-On"
|
256 |
+
msgstr "アドオン"
|
257 |
|
258 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
259 |
+
#: templates/debug.php:510
|
260 |
msgid "Plugin"
|
261 |
msgstr "プラグイン"
|
262 |
|
263 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
264 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
265 |
msgid "Theme"
|
266 |
+
msgstr "テーマ"
|
267 |
|
268 |
+
#: includes/class-freemius.php:10808
|
269 |
msgid "invalid_site_details_collection"
|
270 |
msgstr "invalid_site_details_collection"
|
271 |
|
272 |
+
#: includes/class-freemius.php:10928
|
273 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
274 |
msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
|
275 |
|
276 |
+
#: includes/class-freemius.php:10930
|
277 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
278 |
msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
|
279 |
|
280 |
+
#: includes/class-freemius.php:11166
|
281 |
msgid "Account is pending activation."
|
282 |
+
msgstr "アカウントは有効化待ちです。"
|
283 |
|
284 |
+
#: includes/class-freemius.php:13608
|
285 |
msgid "%s activation was successfully completed."
|
286 |
msgstr "%s の有効化が成功しました。"
|
287 |
|
288 |
+
#: includes/class-freemius.php:13622
|
289 |
msgid "Your account was successfully activated with the %s plan."
|
290 |
msgstr "アカウントが %s プランで有効化できました。"
|
291 |
|
292 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
293 |
msgid "Your trial has been successfully started."
|
294 |
msgstr "トライアル版の利用を開始しました。"
|
295 |
|
296 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
297 |
+
#: includes/class-freemius.php:14317
|
298 |
msgid "Couldn't activate %s."
|
299 |
msgstr "%s を有効化できません。"
|
300 |
|
301 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
302 |
+
#: includes/class-freemius.php:14318
|
303 |
msgid "Please contact us with the following message:"
|
304 |
msgstr "以下のメッセージとともに私たちに連絡をください。"
|
305 |
|
306 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
307 |
msgid "Upgrade"
|
308 |
msgstr "アップグレード"
|
309 |
|
310 |
+
#: includes/class-freemius.php:14672
|
311 |
msgid "Start Trial"
|
312 |
msgstr "トライアルを開始"
|
313 |
|
314 |
+
#: includes/class-freemius.php:14674
|
315 |
msgid "Pricing"
|
316 |
msgstr "料金表"
|
317 |
|
318 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
319 |
msgid "Affiliation"
|
320 |
+
msgstr "アフィリエイト"
|
321 |
|
322 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
323 |
+
#: templates/account.php146, templates/debug.php:314
|
324 |
msgid "Account"
|
325 |
msgstr "アカウント"
|
326 |
|
327 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
328 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
329 |
msgid "Contact Us"
|
330 |
msgstr "連絡"
|
331 |
|
332 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
333 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
334 |
+
#: templates/account/partials/addon.php:37
|
335 |
msgid "Add-Ons"
|
336 |
+
msgstr "アドオン"
|
337 |
|
338 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
339 |
msgctxt "noun"
|
340 |
msgid "Pricing"
|
341 |
msgstr "料金表"
|
342 |
|
343 |
+
#: includes/class-freemius.php15009,
|
344 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
345 |
msgid "Support Forum"
|
346 |
msgstr "サポートフォーラム"
|
347 |
|
348 |
+
#: includes/class-freemius.php:15794
|
349 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
350 |
msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
|
351 |
|
352 |
+
#: includes/class-freemius.php:15795
|
353 |
msgctxt "a positive response"
|
354 |
msgid "Right on"
|
355 |
msgstr "そうだ"
|
356 |
|
357 |
+
#: includes/class-freemius.php:16367
|
358 |
msgid "Your %s Add-on plan was successfully upgraded."
|
359 |
msgstr "%s のアドオンのプランのアップグレードが完了しました。"
|
360 |
|
361 |
+
#: includes/class-freemius.php:16369
|
362 |
msgid "%s Add-on was successfully purchased."
|
363 |
msgstr "%s のアドオンの支払いが完了しました。"
|
364 |
|
365 |
+
#: includes/class-freemius.php:16372
|
366 |
msgid "Download the latest version"
|
367 |
msgstr "最新版をダウンロード"
|
368 |
|
369 |
+
#: includes/class-freemius.php:16444
|
370 |
msgctxt "%1s - plugin title, %2s - API domain"
|
371 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
372 |
msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
|
373 |
|
374 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
375 |
+
#: includes/class-freemius.php:16927
|
376 |
msgid "Error received from the server:"
|
377 |
msgstr "サーバーからエラーを受信しました。"
|
378 |
|
379 |
+
#: includes/class-freemius.php:16457
|
380 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
381 |
msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
|
382 |
|
383 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
384 |
+
#: includes/class-freemius.php:16910
|
385 |
msgctxt ""
|
386 |
msgid "Hmm"
|
387 |
msgstr "ふむ"
|
388 |
|
389 |
+
#: includes/class-freemius.php:16652
|
390 |
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."
|
391 |
msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
|
392 |
|
393 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
394 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
395 |
msgctxt "trial period"
|
396 |
msgid "Trial"
|
397 |
msgstr "トライアル"
|
398 |
|
399 |
+
#: includes/class-freemius.php:16658
|
400 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
401 |
msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
|
402 |
|
403 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
404 |
msgid "Please contact us here"
|
405 |
msgstr "こちらで私たちに連絡をとってください。"
|
406 |
|
407 |
+
#: includes/class-freemius.php:16672
|
408 |
msgid "Your plan was successfully upgraded."
|
409 |
msgstr "プランのアップグレードが成功しました。"
|
410 |
|
411 |
+
#: includes/class-freemius.php:16689
|
412 |
msgid "Your plan was successfully changed to %s."
|
413 |
msgstr "プランの %s への変更が成功しました。"
|
414 |
|
415 |
+
#: includes/class-freemius.php:16705
|
416 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
417 |
+
msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
|
418 |
|
419 |
+
#: includes/class-freemius.php:16707
|
420 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
421 |
+
msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
|
422 |
+
|
423 |
+
#: includes/class-freemius.php:16715
|
424 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
425 |
msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
|
426 |
|
427 |
+
#: includes/class-freemius.php:16728
|
428 |
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."
|
429 |
msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
|
430 |
|
431 |
+
#: includes/class-freemius.php:16751
|
432 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
433 |
+
msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
|
434 |
+
|
435 |
+
#: includes/class-freemius.php:16753
|
436 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
437 |
+
msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
|
438 |
|
439 |
+
#: includes/class-freemius.php:16858
|
440 |
msgid "It looks like the license could not be activated."
|
441 |
msgstr "ライセンスの有効化ができませんでした。"
|
442 |
|
443 |
+
#: includes/class-freemius.php:16888
|
444 |
msgid "Your license was successfully activated."
|
445 |
msgstr "ライセンスの有効化が成功しました。"
|
446 |
|
447 |
+
#: includes/class-freemius.php:16914
|
448 |
msgid "It looks like your site currently doesn't have an active license."
|
449 |
msgstr "サイトは有効なライセンスを持っていないようです。"
|
450 |
|
451 |
+
#: includes/class-freemius.php:16926
|
452 |
msgid "It looks like the license deactivation failed."
|
453 |
msgstr "ライセンスの無効化ができませんでした。"
|
454 |
|
455 |
+
#: includes/class-freemius.php:16954
|
456 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
457 |
msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
|
458 |
|
459 |
+
#: includes/class-freemius.php:16955
|
460 |
msgid "O.K"
|
461 |
msgstr "O.K"
|
462 |
|
463 |
+
#: includes/class-freemius.php:17003
|
464 |
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
465 |
msgstr "プランのダウングレードが完了しました。%s プランは %s に有効期限が切れます。"
|
466 |
|
467 |
+
#: includes/class-freemius.php:17013
|
468 |
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
469 |
msgstr "プランのダウングレードの際に一時的な問題が発生したようです。数分後に再度操作してください。"
|
470 |
|
471 |
+
#: includes/class-freemius.php:17037
|
472 |
msgid "You are already running the %s in a trial mode."
|
473 |
+
msgstr "すでに%sをトライアルモードで利用中です。"
|
474 |
|
475 |
+
#: includes/class-freemius.php:17048
|
476 |
msgid "You already utilized a trial before."
|
477 |
msgstr "以前すでに試用版を利用しました。"
|
478 |
|
479 |
+
#: includes/class-freemius.php:17062
|
480 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
481 |
msgstr "%s プランは存在しないため、試用を開始できません。"
|
482 |
|
483 |
+
#: includes/class-freemius.php:17073
|
484 |
msgid "Plan %s does not support a trial period."
|
485 |
msgstr "%s プランにはトライアル期間はありません。"
|
486 |
|
487 |
+
#: includes/class-freemius.php:17084
|
488 |
msgid "None of the %s's plans supports a trial period."
|
489 |
+
msgstr "%sのプランにはトライアル期間はありません。"
|
490 |
|
491 |
+
#: includes/class-freemius.php:17134
|
492 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
493 |
msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
|
494 |
|
495 |
+
#: includes/class-freemius.php:17185
|
496 |
msgid "Your %s free trial was successfully cancelled."
|
497 |
msgstr "%s のフリートライアルはキャンセルされました。"
|
498 |
|
499 |
+
#: includes/class-freemius.php:17190
|
500 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
501 |
msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
|
502 |
|
503 |
+
#: includes/class-freemius.php:17474
|
504 |
msgid "Version %s was released."
|
505 |
msgstr "バージョン %s をリリースしました。"
|
506 |
|
507 |
+
#: includes/class-freemius.php:17474
|
508 |
msgid "Please download %s."
|
509 |
msgstr "%s をダウンロードしてください。"
|
510 |
|
511 |
+
#: includes/class-freemius.php:17481
|
512 |
msgid "the latest %s version here"
|
513 |
msgstr "最新の %s バージョンはこちらです。"
|
514 |
|
515 |
+
#: includes/class-freemius.php:17486
|
516 |
msgid "New"
|
517 |
msgstr "新規"
|
518 |
|
519 |
+
#: includes/class-freemius.php:17491
|
520 |
msgid "Seems like you got the latest release."
|
521 |
msgstr "最新版を取得できました。"
|
522 |
|
523 |
+
#: includes/class-freemius.php:17492
|
524 |
msgid "You are all good!"
|
525 |
msgstr "すべて完璧です!"
|
526 |
|
527 |
+
#: includes/class-freemius.php:17758
|
528 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
529 |
msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
|
530 |
|
531 |
+
#: includes/class-freemius.php:17893
|
532 |
msgid "Site successfully opted in."
|
533 |
+
msgstr "サイトのオプトインに成功しました。"
|
534 |
|
535 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
536 |
msgid "Awesome"
|
537 |
msgstr "すごい!"
|
538 |
|
539 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
540 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
541 |
msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
|
542 |
|
543 |
+
#: includes/class-freemius.php:17911
|
544 |
msgid "Thank you!"
|
545 |
+
msgstr "ありがとうございます!"
|
546 |
|
547 |
+
#: includes/class-freemius.php:17918
|
548 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
549 |
+
msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
|
550 |
|
551 |
+
#: includes/class-freemius.php:18033
|
552 |
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."
|
553 |
msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
|
554 |
|
555 |
+
#: includes/class-freemius.php:18039
|
556 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
557 |
msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
|
558 |
|
559 |
+
#: includes/class-freemius.php:18044
|
560 |
msgid "%s is the new owner of the account."
|
561 |
msgstr "%s は新しいオーナーです。"
|
562 |
|
563 |
+
#: includes/class-freemius.php:18046
|
564 |
msgctxt "as congratulations"
|
565 |
msgid "Congrats"
|
566 |
msgstr "おめでとう"
|
567 |
|
568 |
+
#: includes/class-freemius.php:18066
|
569 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
570 |
msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
|
571 |
|
572 |
+
#: includes/class-freemius.php:18067
|
573 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
574 |
+
msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
|
575 |
|
576 |
+
#: includes/class-freemius.php:18074
|
577 |
msgid "Change Ownership"
|
578 |
msgstr "オーナーを変更"
|
579 |
|
580 |
+
#: includes/class-freemius.php:18082
|
581 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
582 |
msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
|
583 |
|
584 |
+
#: includes/class-freemius.php:18094
|
585 |
msgid "Please provide your full name."
|
586 |
msgstr "フルネームを入力してください。"
|
587 |
|
588 |
+
#: includes/class-freemius.php:18099
|
589 |
msgid "Your name was successfully updated."
|
590 |
msgstr "名前のアップデートが成功しました。"
|
591 |
|
592 |
+
#: includes/class-freemius.php:18160
|
593 |
msgid "You have successfully updated your %s."
|
594 |
msgstr "%s のアップデートが成功しました。"
|
595 |
|
596 |
+
#: includes/class-freemius.php:18300
|
597 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
598 |
msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
|
599 |
|
600 |
+
#: includes/class-freemius.php:18301
|
601 |
msgctxt "advance notice of something that will need attention."
|
602 |
msgid "Heads up"
|
603 |
msgstr "警告"
|
604 |
|
605 |
+
#: includes/class-freemius.php:18711
|
606 |
msgctxt "exclamation"
|
607 |
msgid "Hey"
|
608 |
msgstr "ヘイ"
|
609 |
|
610 |
+
#: includes/class-freemius.php:18711
|
611 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
612 |
msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
|
613 |
|
614 |
+
#: includes/class-freemius.php:18719
|
615 |
msgid "No commitment for %s days - cancel anytime!"
|
616 |
msgstr "%s 日以内であればいつでもキャンセルできます。"
|
617 |
|
618 |
+
#: includes/class-freemius.php:18720
|
619 |
msgid "No credit card required"
|
620 |
msgstr "クレジットカードは必要ありません。"
|
621 |
|
622 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
623 |
msgctxt "call to action"
|
624 |
msgid "Start free trial"
|
625 |
msgstr "フリートライアルを開始"
|
626 |
|
627 |
+
#: includes/class-freemius.php:18804
|
628 |
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!"
|
629 |
+
msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
|
630 |
|
631 |
+
#: includes/class-freemius.php:18813
|
632 |
msgid "Learn more"
|
633 |
+
msgstr "詳細はこちら"
|
634 |
|
635 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
636 |
+
#: templates/account.php497, templates/connect.php169,
|
637 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
638 |
+
#: templates/account/partials/addon.php:230
|
639 |
msgid "Activate License"
|
640 |
msgstr "ライセンスを有効化"
|
641 |
|
642 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
643 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
644 |
msgid "Change License"
|
645 |
msgstr "ライセンスを変更"
|
646 |
|
647 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
648 |
msgid "Opt Out"
|
649 |
msgstr "オプトアウト"
|
650 |
|
651 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
652 |
#: templates/account/partials/site.php43,
|
653 |
#: templates/account/partials/site.php:161
|
654 |
msgid "Opt In"
|
655 |
msgstr "オプトイン"
|
656 |
|
657 |
+
#: includes/class-freemius.php:19245
|
658 |
msgid "Please follow these steps to complete the upgrade"
|
659 |
msgstr "アップグレードを完了するには以下の手順を完了させてください。"
|
660 |
|
661 |
+
#: includes/class-freemius.php:19249
|
662 |
msgid "Download the latest %s version"
|
663 |
msgstr "最新の %s をダウンロード"
|
664 |
|
665 |
+
#: includes/class-freemius.php:19253
|
666 |
msgid "Upload and activate the downloaded version"
|
667 |
msgstr "ダウンロードしたバージョンをアップロードして有効化"
|
668 |
|
669 |
+
#: includes/class-freemius.php:19255
|
670 |
msgid "How to upload and activate?"
|
671 |
msgstr "アップロードと有効化の方法"
|
672 |
|
673 |
+
#: includes/class-freemius.php:19384
|
674 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
675 |
+
msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
|
676 |
|
677 |
+
#: includes/class-freemius.php:19545
|
678 |
msgid "Auto installation only works for opted-in users."
|
679 |
+
msgstr "自動インストールはオプトインしたユーザのみで動作します。"
|
680 |
|
681 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
682 |
+
#: includes/class-fs-plugin-updater.php713,
|
683 |
+
#: includes/class-fs-plugin-updater.php:727
|
684 |
msgid "Invalid module ID."
|
685 |
+
msgstr "モジュール ID が不正です"
|
686 |
|
687 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
688 |
msgid "Premium version already active."
|
689 |
+
msgstr "プレミアムバージョンはすでに有効になっています。"
|
690 |
|
691 |
+
#: includes/class-freemius.php:19571
|
692 |
msgid "You do not have a valid license to access the premium version."
|
693 |
+
msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
|
694 |
|
695 |
+
#: includes/class-freemius.php:19578
|
696 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
697 |
+
msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
|
698 |
|
699 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
700 |
msgid "Premium add-on version already installed."
|
701 |
+
msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
|
702 |
|
703 |
+
#: includes/class-freemius.php:19941
|
704 |
msgid "View paid features"
|
705 |
+
msgstr "有料の機能を表示する"
|
706 |
+
|
707 |
+
#: includes/class-freemius.php:20251
|
708 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
709 |
+
msgstr "%sとアドオンのご利用ありがとうございます!"
|
710 |
+
|
711 |
+
#: includes/class-freemius.php:20252
|
712 |
+
msgid "Thank you so much for using %s!"
|
713 |
+
msgstr "%sのご利用ありがとうございます!"
|
714 |
+
|
715 |
+
#: includes/class-freemius.php:20258
|
716 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
717 |
+
msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
|
718 |
+
|
719 |
+
#: includes/class-freemius.php:20262
|
720 |
+
msgid "Thank you so much for using our products!"
|
721 |
+
msgstr "プロダクトのご利用ありがとうございます!"
|
722 |
|
723 |
+
#: includes/class-freemius.php:20263
|
724 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
725 |
+
msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
|
726 |
|
727 |
+
#: includes/class-freemius.php:20282
|
728 |
+
msgid "%s and its add-ons"
|
729 |
+
msgstr "%sとそのアドオン"
|
730 |
+
|
731 |
+
#: includes/class-freemius.php:20291
|
732 |
+
msgid "Products"
|
733 |
+
msgstr "プロダクト"
|
734 |
+
|
735 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
736 |
+
msgid "Yes"
|
737 |
+
msgstr "はい"
|
738 |
+
|
739 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
740 |
+
msgid "send me security & feature updates, educational content and offers."
|
741 |
+
msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
|
742 |
+
|
743 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
744 |
+
msgid "No"
|
745 |
+
msgstr "いいえ"
|
746 |
+
|
747 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
748 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
749 |
+
msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
|
750 |
+
|
751 |
+
#: includes/class-freemius.php:20312
|
752 |
+
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 🙂"
|
753 |
+
msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂"
|
754 |
+
|
755 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
756 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
757 |
+
msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
|
758 |
+
|
759 |
+
#: includes/class-freemius.php:20598
|
760 |
+
msgid "License key is empty."
|
761 |
+
msgstr "ライセンスキーが空です。"
|
762 |
+
|
763 |
+
#: includes/class-fs-plugin-updater.php184,
|
764 |
+
#: includes/class-fs-plugin-updater.php:219
|
765 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
766 |
+
msgstr "バージョン%sのセキュリティや機能のアップデートまたサポートを受けられるよう、%s今すぐライセンスキーを更新してください%s。"
|
767 |
+
|
768 |
+
#: includes/class-fs-plugin-updater.php:776
|
769 |
msgid "Installing plugin: %s"
|
770 |
+
msgstr "インストール中プラグイン: %s"
|
771 |
|
772 |
+
#: includes/class-fs-plugin-updater.php:817
|
773 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
774 |
+
msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
|
775 |
|
776 |
+
#: includes/class-fs-plugin-updater.php:923
|
777 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
778 |
+
msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
|
779 |
|
780 |
+
#: includes/fs-plugin-info-dialog.php336,
|
781 |
+
#: templates/account/partials/addon.php:287
|
782 |
msgctxt "verb"
|
783 |
msgid "Purchase"
|
784 |
msgstr "購入"
|
785 |
|
786 |
+
#: includes/fs-plugin-info-dialog.php:339
|
787 |
msgid "Start my free %s"
|
788 |
msgstr "無料の %s を開始"
|
789 |
|
790 |
+
#: includes/fs-plugin-info-dialog.php:380
|
791 |
+
msgid "Install Free Version Now"
|
792 |
+
msgstr "フリーバージョンを今すぐインストール"
|
793 |
+
|
794 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
795 |
+
#: templates/account/partials/addon.php267,
|
796 |
+
#: templates/account/partials/addon.php:317
|
797 |
+
msgid "Install Now"
|
798 |
+
msgstr "今すぐインストール"
|
799 |
+
|
800 |
+
#: includes/fs-plugin-info-dialog.php:392
|
801 |
+
msgctxt "as download latest version"
|
802 |
+
msgid "Download Latest Free Version"
|
803 |
+
msgstr "最新のフリーバージョンをダウンロード"
|
804 |
+
|
805 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
806 |
+
#: templates/account/partials/addon.php:21
|
807 |
msgctxt "as download latest version"
|
808 |
msgid "Download Latest"
|
809 |
msgstr "最新版をダウンロード"
|
810 |
|
811 |
+
#: includes/fs-plugin-info-dialog.php:403
|
812 |
+
msgid "Install Free Version Update Now"
|
813 |
+
msgstr "フリーバージョンの更新を今すぐインストール"
|
|
|
814 |
|
815 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
816 |
msgid "Install Update Now"
|
817 |
msgstr "今すぐ更新をインストール"
|
818 |
|
819 |
+
#: includes/fs-plugin-info-dialog.php:415
|
820 |
+
msgid "Newer Free Version (%s) Installed"
|
821 |
+
msgstr "新しいフリーバージョン (%s) がインストールされました"
|
822 |
+
|
823 |
+
#: includes/fs-plugin-info-dialog.php:416
|
824 |
msgid "Newer Version (%s) Installed"
|
825 |
+
msgstr "新しいバージョン (%s) がインストールされました"
|
826 |
+
|
827 |
+
#: includes/fs-plugin-info-dialog.php:424
|
828 |
+
msgid "Latest Free Version Installed"
|
829 |
+
msgstr "最新のフリーバージョンがインストールされました"
|
830 |
|
831 |
+
#: includes/fs-plugin-info-dialog.php:425
|
832 |
msgid "Latest Version Installed"
|
833 |
+
msgstr "最新版がイストールされました"
|
834 |
|
835 |
+
#: includes/fs-plugin-info-dialog.php:580
|
836 |
msgctxt "Plugin installer section title"
|
837 |
msgid "Description"
|
838 |
+
msgstr "説明"
|
839 |
|
840 |
+
#: includes/fs-plugin-info-dialog.php:581
|
841 |
msgctxt "Plugin installer section title"
|
842 |
msgid "Installation"
|
843 |
+
msgstr "インストール"
|
844 |
|
845 |
+
#: includes/fs-plugin-info-dialog.php:582
|
846 |
msgctxt "Plugin installer section title"
|
847 |
msgid "FAQ"
|
848 |
msgstr "FAQ"
|
849 |
|
850 |
+
#: includes/fs-plugin-info-dialog.php583,
|
851 |
#: templates/plugin-info/description.php:55
|
852 |
msgid "Screenshots"
|
853 |
msgstr "スクリーンショット"
|
854 |
|
855 |
+
#: includes/fs-plugin-info-dialog.php:584
|
856 |
msgctxt "Plugin installer section title"
|
857 |
msgid "Changelog"
|
858 |
+
msgstr "変更履歴"
|
859 |
|
860 |
+
#: includes/fs-plugin-info-dialog.php:585
|
861 |
msgctxt "Plugin installer section title"
|
862 |
msgid "Reviews"
|
863 |
+
msgstr "レビュー"
|
864 |
|
865 |
+
#: includes/fs-plugin-info-dialog.php:586
|
866 |
msgctxt "Plugin installer section title"
|
867 |
msgid "Other Notes"
|
868 |
+
msgstr "その他の記述"
|
869 |
|
870 |
+
#: includes/fs-plugin-info-dialog.php:601
|
871 |
msgctxt "Plugin installer section title"
|
872 |
msgid "Features & Pricing"
|
873 |
msgstr "機能 & 料金"
|
874 |
|
875 |
+
#: includes/fs-plugin-info-dialog.php:611
|
876 |
msgid "Plugin Install"
|
877 |
+
msgstr "プラグインのインストール"
|
878 |
|
879 |
+
#: includes/fs-plugin-info-dialog.php:683
|
880 |
msgctxt "e.g. Professional Plan"
|
881 |
msgid "%s Plan"
|
882 |
msgstr "%s プラン"
|
883 |
|
884 |
+
#: includes/fs-plugin-info-dialog.php:709
|
885 |
msgctxt "e.g. the best product"
|
886 |
msgid "Best"
|
887 |
msgstr "ベスト"
|
888 |
|
889 |
+
#: includes/fs-plugin-info-dialog.php715,
|
890 |
+
#: includes/fs-plugin-info-dialog.php:735
|
891 |
msgctxt "as every month"
|
892 |
msgid "Monthly"
|
893 |
msgstr "月"
|
894 |
|
895 |
+
#: includes/fs-plugin-info-dialog.php:718
|
896 |
msgctxt "as once a year"
|
897 |
msgid "Annual"
|
898 |
msgstr "年次"
|
899 |
|
900 |
+
#: includes/fs-plugin-info-dialog.php:721
|
901 |
msgid "Lifetime"
|
902 |
msgstr "ライフタイム"
|
903 |
|
904 |
+
#: includes/fs-plugin-info-dialog.php735,
|
905 |
+
#: includes/fs-plugin-info-dialog.php737,
|
906 |
+
#: includes/fs-plugin-info-dialog.php:739
|
907 |
msgctxt "e.g. billed monthly"
|
908 |
msgid "Billed %s"
|
909 |
msgstr "%s への請求"
|
910 |
|
911 |
+
#: includes/fs-plugin-info-dialog.php:737
|
912 |
msgctxt "as once a year"
|
913 |
msgid "Annually"
|
914 |
msgstr "毎年"
|
915 |
|
916 |
+
#: includes/fs-plugin-info-dialog.php:739
|
917 |
msgctxt "as once a year"
|
918 |
msgid "Once"
|
919 |
msgstr "一度"
|
920 |
|
921 |
+
#: includes/fs-plugin-info-dialog.php:745
|
922 |
msgid "Single Site License"
|
923 |
msgstr "シングルサイトライセンス"
|
924 |
|
925 |
+
#: includes/fs-plugin-info-dialog.php:747
|
926 |
msgid "Unlimited Licenses"
|
927 |
msgstr "無制限ライセンス"
|
928 |
|
929 |
+
#: includes/fs-plugin-info-dialog.php:749
|
930 |
msgid "Up to %s Sites"
|
931 |
msgstr "%sサイトまで"
|
932 |
|
933 |
+
#: includes/fs-plugin-info-dialog.php759,
|
934 |
#: templates/plugin-info/features.php:82
|
935 |
msgctxt "as monthly period"
|
936 |
msgid "mo"
|
937 |
msgstr "月"
|
938 |
|
939 |
+
#: includes/fs-plugin-info-dialog.php766,
|
940 |
#: templates/plugin-info/features.php:80
|
941 |
msgctxt "as annual period"
|
942 |
msgid "year"
|
943 |
msgstr "年"
|
944 |
|
945 |
+
#: includes/fs-plugin-info-dialog.php:820
|
946 |
msgctxt "noun"
|
947 |
msgid "Price"
|
948 |
msgstr "料金"
|
949 |
|
950 |
+
#: includes/fs-plugin-info-dialog.php:868
|
951 |
msgid "Save %s"
|
952 |
msgstr "%s を保存"
|
953 |
|
954 |
+
#: includes/fs-plugin-info-dialog.php:878
|
955 |
msgid "No commitment for %s - cancel anytime"
|
956 |
msgstr "%s の拘束はありません。いつでもキャンセルできます。"
|
957 |
|
958 |
+
#: includes/fs-plugin-info-dialog.php:881
|
959 |
msgid "After your free %s, pay as little as %s"
|
960 |
msgstr "無料の %s の後は、わずか %s だけお支払ください。"
|
961 |
|
962 |
+
#: includes/fs-plugin-info-dialog.php:892
|
963 |
msgid "Details"
|
964 |
msgstr "詳細"
|
965 |
|
966 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
967 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
968 |
+
#: templates/account/partials/addon.php:28
|
969 |
msgctxt "product version"
|
970 |
msgid "Version"
|
971 |
msgstr "バージョン"
|
972 |
|
973 |
+
#: includes/fs-plugin-info-dialog.php:903
|
974 |
msgctxt "as the plugin author"
|
975 |
msgid "Author"
|
976 |
+
msgstr "作者"
|
977 |
|
978 |
+
#: includes/fs-plugin-info-dialog.php:910
|
979 |
msgid "Last Updated"
|
980 |
+
msgstr "最終更新"
|
981 |
|
982 |
+
#: includes/fs-plugin-info-dialog.php:915
|
983 |
msgctxt "x-ago"
|
984 |
msgid "%s ago"
|
985 |
msgstr "%s 前"
|
986 |
|
987 |
+
#: includes/fs-plugin-info-dialog.php:924
|
988 |
msgid "Requires WordPress Version"
|
989 |
+
msgstr "必要な WordPress のバージョン"
|
990 |
|
991 |
+
#: includes/fs-plugin-info-dialog.php:925
|
992 |
msgid "%s or higher"
|
993 |
+
msgstr "%sまたはそれ以上"
|
994 |
|
995 |
+
#: includes/fs-plugin-info-dialog.php:932
|
996 |
msgid "Compatible up to"
|
997 |
+
msgstr "互換性のある最新バージョン"
|
998 |
|
999 |
+
#: includes/fs-plugin-info-dialog.php:940
|
1000 |
msgid "Downloaded"
|
1001 |
+
msgstr "ダウンロード済み"
|
1002 |
|
1003 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1004 |
msgid "%s time"
|
1005 |
+
msgstr "%s回"
|
1006 |
|
1007 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1008 |
msgid "%s times"
|
1009 |
+
msgstr "%s回"
|
1010 |
|
1011 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1012 |
msgid "WordPress.org Plugin Page"
|
1013 |
+
msgstr "WordPress.org のプラグインページ"
|
1014 |
|
1015 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1016 |
msgid "Plugin Homepage"
|
1017 |
+
msgstr "プラグインのホームページ"
|
1018 |
|
1019 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1020 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1021 |
msgid "Donate to this plugin"
|
1022 |
+
msgstr "このプラグインに寄付する"
|
1023 |
|
1024 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1025 |
msgid "Average Rating"
|
1026 |
+
msgstr "レーティングの平均"
|
1027 |
|
1028 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1029 |
msgid "based on %s"
|
1030 |
+
msgstr "%sを基に"
|
1031 |
|
1032 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1033 |
msgid "%s rating"
|
1034 |
+
msgstr "%s評価"
|
1035 |
|
1036 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1037 |
msgid "%s ratings"
|
1038 |
+
msgstr "%s評価"
|
1039 |
|
1040 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1041 |
msgid "%s star"
|
1042 |
+
msgstr "%sスター"
|
1043 |
|
1044 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1045 |
msgid "%s stars"
|
1046 |
+
msgstr "%sスター"
|
1047 |
|
1048 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1049 |
msgid "Click to see reviews that provided a rating of %s"
|
1050 |
+
msgstr "クリックして%sの評価をしているレビューを観る"
|
1051 |
|
1052 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1053 |
msgid "Contributors"
|
1054 |
+
msgstr "コントリビューター"
|
1055 |
|
1056 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1057 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1058 |
msgid "Warning"
|
1059 |
+
msgstr "警告"
|
1060 |
|
1061 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1062 |
msgid "This plugin has not been tested with your current version of WordPress."
|
1063 |
+
msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。"
|
1064 |
|
1065 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1066 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1067 |
+
msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。"
|
1068 |
|
1069 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1070 |
msgid "Paid add-on must be deployed to Freemius."
|
1071 |
msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
|
1072 |
|
1073 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1074 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1075 |
msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
|
1076 |
|
1077 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1078 |
+
#: templates/account/partials/site.php:295
|
1079 |
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1080 |
msgstr "プランをダウングレードするとすぐに将来の定期の支払いはすべて停止し、%s プランライセンスは %s で期限切れとなります。"
|
1081 |
|
1082 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1083 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1084 |
msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
|
1085 |
|
1086 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1087 |
+
#: templates/account/partials/site.php:296
|
1088 |
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1089 |
+
msgstr "すべての%s機能を使うことはできますが、%sへのアクセスやアップデート、またサポートを受けることはできません。"
|
1090 |
|
1091 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1092 |
+
#: templates/account/partials/site.php:297
|
1093 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1094 |
+
msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。"
|
1095 |
|
1096 |
#. translators: %s: Plan title (e.g. "Professional")
|
1097 |
#: templates/account.php86,
|
1098 |
+
#: templates/account/partials/activate-license-button.php31,
|
1099 |
+
#: templates/account/partials/addon.php:27
|
1100 |
msgid "Activate %s Plan"
|
1101 |
msgstr "%s プランを有効化"
|
1102 |
|
1103 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1104 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1105 |
+
#: templates/account/partials/site.php:275
|
1106 |
msgid "Auto renews in %s"
|
1107 |
msgstr "%s に自動更新"
|
1108 |
|
1109 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1110 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1111 |
+
#: templates/account/partials/site.php:277
|
1112 |
msgid "Expires in %s"
|
1113 |
msgstr "%s で期間終了"
|
1114 |
|
1115 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1116 |
msgctxt "as synchronize license"
|
1117 |
msgid "Sync License"
|
1118 |
msgstr "ライセンスを同期"
|
1119 |
|
1120 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1121 |
msgid "Cancel Trial"
|
1122 |
msgstr "トライアルをキャンセル"
|
1123 |
|
1124 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1125 |
msgid "Change Plan"
|
1126 |
msgstr "プラン変更"
|
1127 |
|
1128 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1129 |
msgctxt "verb"
|
1130 |
msgid "Upgrade"
|
1131 |
msgstr "アップグレード"
|
1132 |
|
1133 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1134 |
+
#: templates/account/partials/site.php:298
|
1135 |
msgctxt "verb"
|
1136 |
msgid "Downgrade"
|
1137 |
msgstr "ダウングレード"
|
1138 |
|
1139 |
#: templates/account.php99, templates/add-ons.php126,
|
1140 |
#: templates/plugin-info/features.php72,
|
1141 |
+
#: templates/account/partials/addon.php40,
|
1142 |
#: templates/account/partials/site.php:31
|
1143 |
msgid "Free"
|
1144 |
msgstr "無料"
|
1145 |
|
1146 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1147 |
msgid "Activate"
|
1148 |
msgstr "有効化"
|
1149 |
|
1150 |
+
#: templates/account.php101, templates/debug.php361,
|
1151 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1152 |
+
#: templates/account/partials/addon.php:42
|
1153 |
msgctxt "as product pricing plan"
|
1154 |
msgid "Plan"
|
1155 |
msgstr "プラン"
|
1156 |
|
1157 |
+
#: templates/account.php:154
|
1158 |
msgid "Free Trial"
|
1159 |
msgstr "フリートライアル"
|
1160 |
|
1161 |
+
#: templates/account.php:165
|
1162 |
msgid "Account Details"
|
1163 |
msgstr "アカウント詳細"
|
1164 |
|
1165 |
+
#: templates/account.php:175
|
1166 |
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?"
|
1167 |
msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
|
1168 |
|
1169 |
+
#: templates/account.php:177
|
1170 |
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?"
|
1171 |
+
msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
|
1172 |
|
1173 |
+
#: templates/account.php:180
|
1174 |
msgid "Delete Account"
|
1175 |
msgstr "アカウントを削除"
|
1176 |
|
1177 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1178 |
#: templates/account/partials/deactivate-license-button.php:35
|
1179 |
msgid "Deactivate License"
|
1180 |
msgstr "ライセンスを無効化"
|
1181 |
|
1182 |
+
#: templates/account.php:210
|
1183 |
msgid "Are you sure you want to proceed?"
|
1184 |
msgstr "本当に続行していいですか?"
|
1185 |
|
1186 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1187 |
msgid "Cancel Subscription"
|
1188 |
+
msgstr "サブスクリプションをキャンセルする"
|
1189 |
|
1190 |
+
#: templates/account.php:239
|
1191 |
msgctxt "as synchronize"
|
1192 |
msgid "Sync"
|
1193 |
msgstr "同期"
|
1194 |
|
1195 |
+
#: templates/account.php253, templates/debug.php:477
|
1196 |
msgid "Name"
|
1197 |
msgstr "名前"
|
1198 |
|
1199 |
+
#: templates/account.php259, templates/debug.php:478
|
1200 |
msgid "Email"
|
1201 |
msgstr "Email"
|
1202 |
|
1203 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1204 |
msgid "User ID"
|
1205 |
msgstr "ユーザー ID"
|
1206 |
|
1207 |
+
#: templates/account.php:274
|
1208 |
msgid "Site ID"
|
1209 |
msgstr "サイト ID"
|
1210 |
|
1211 |
+
#: templates/account.php:277
|
1212 |
msgid "No ID"
|
1213 |
msgstr "ID がありません"
|
1214 |
|
1215 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1216 |
+
#: templates/debug.php443, templates/debug.php480,
|
1217 |
#: templates/account/partials/site.php:219
|
1218 |
msgid "Public Key"
|
1219 |
msgstr "公開鍵"
|
1220 |
|
1221 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1222 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1223 |
msgid "Secret Key"
|
1224 |
msgstr "秘密鍵"
|
1225 |
|
1226 |
+
#: templates/account.php:291
|
1227 |
msgctxt "as secret encryption key missing"
|
1228 |
msgid "No Secret"
|
1229 |
msgstr "秘密鍵がありません"
|
1230 |
|
1231 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1232 |
#: templates/account/partials/site.php:114
|
1233 |
msgid "Trial"
|
1234 |
msgstr "トライアル"
|
1235 |
|
1236 |
+
#: templates/account.php329, templates/debug.php521,
|
1237 |
#: templates/account/partials/site.php:248
|
1238 |
msgid "License Key"
|
1239 |
+
msgstr "ライセンスキー"
|
1240 |
|
1241 |
+
#: templates/account.php:359
|
1242 |
msgid "not verified"
|
1243 |
msgstr "未認証"
|
1244 |
|
1245 |
+
#: templates/account.php:416
|
1246 |
msgid "Premium version"
|
1247 |
msgstr "プレミアムバージョン"
|
1248 |
|
1249 |
+
#: templates/account.php:418
|
1250 |
msgid "Free version"
|
1251 |
msgstr "フリーバージョン"
|
1252 |
|
1253 |
+
#: templates/account.php:430
|
1254 |
msgid "Verify Email"
|
1255 |
msgstr "認証メール"
|
1256 |
|
1257 |
+
#: templates/account.php:441
|
1258 |
msgid "Download %s Version"
|
1259 |
msgstr "%s バージョンをダウンロード"
|
1260 |
|
1261 |
+
#: templates/account.php455, templates/account.php636,
|
1262 |
#: templates/account/partials/site.php237,
|
1263 |
#: templates/account/partials/site.php:255
|
1264 |
msgctxt "verb"
|
1265 |
msgid "Show"
|
1266 |
msgstr "表示"
|
1267 |
|
1268 |
+
#: templates/account.php:469
|
1269 |
msgid "What is your %s?"
|
1270 |
msgstr "自分の %s はなんですか?"
|
1271 |
|
1272 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1273 |
msgctxt "verb"
|
1274 |
msgid "Edit"
|
1275 |
msgstr "編集"
|
1276 |
|
1277 |
+
#: templates/account.php:490
|
1278 |
msgid "Sites"
|
1279 |
msgstr "サイト数"
|
1280 |
|
1281 |
+
#: templates/account.php:501
|
1282 |
msgid "Search by address"
|
1283 |
+
msgstr "住所で検索する"
|
1284 |
|
1285 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1286 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1287 |
+
#: templates/debug.php514, templates/debug.php587,
|
1288 |
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1289 |
msgid "ID"
|
1290 |
msgstr "ID"
|
1291 |
|
1292 |
+
#: templates/account.php511, templates/debug.php:357
|
1293 |
msgid "Address"
|
1294 |
+
msgstr "住所"
|
1295 |
|
1296 |
+
#: templates/account.php:512
|
1297 |
msgid "License"
|
1298 |
msgstr "ライセンス"
|
1299 |
|
1300 |
+
#: templates/account.php:513
|
1301 |
msgid "Plan"
|
1302 |
msgstr "プラン"
|
1303 |
|
1304 |
+
#: templates/account.php:561
|
1305 |
msgctxt "as software license"
|
1306 |
msgid "License"
|
1307 |
msgstr "ライセンス"
|
1308 |
|
1309 |
+
#: templates/account.php:630
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1310 |
msgctxt "verb"
|
1311 |
msgid "Hide"
|
1312 |
msgstr "非表示"
|
1313 |
|
1314 |
+
#: templates/account.php:665
|
1315 |
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?"
|
1316 |
+
msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
|
1317 |
|
1318 |
#: templates/add-ons.php:36
|
1319 |
msgid "Add Ons for %s"
|
1335 |
|
1336 |
#: templates/auto-installation.php:45
|
1337 |
msgid "%s sec"
|
1338 |
+
msgstr "%s秒"
|
1339 |
|
1340 |
#: templates/auto-installation.php:83
|
1341 |
msgid "Automatic Installation"
|
1342 |
+
msgstr "自動インストール"
|
1343 |
|
1344 |
#: templates/auto-installation.php:93
|
1345 |
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."
|
1346 |
+
msgstr "%sから %s (有料版) の自動ダウンロードと自動インストールが%sで開始します。手動で行う場合は今すぐにキャンセルボタンをクリックしてください。"
|
1347 |
|
1348 |
#: templates/auto-installation.php:104
|
1349 |
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."
|
1350 |
+
msgstr "インストールプロセスが開始され、数分で完了します。完了までしばらくお待ちください。ページのリフレッシュなどは行わないでください。"
|
1351 |
|
1352 |
#: templates/auto-installation.php:109
|
1353 |
msgid "Cancel Installation"
|
1354 |
+
msgstr "インストールをキャンセルする"
|
1355 |
|
1356 |
#: templates/checkout.php:172
|
1357 |
msgid "Checkout"
|
1358 |
+
msgstr "チェックアウト"
|
1359 |
|
1360 |
#: templates/checkout.php:172
|
1361 |
msgid "PCI compliant"
|
1362 |
+
msgstr "PCI コンプライアント"
|
1363 |
|
1364 |
#. translators: %s: name (e.g. Hey John,)
|
1365 |
#: templates/connect.php:110
|
1367 |
msgid "Hey %s,"
|
1368 |
msgstr "おおい %s さん、"
|
1369 |
|
1370 |
+
#: templates/connect.php:152
|
1371 |
msgid "Allow & Continue"
|
1372 |
msgstr "許可して続ける"
|
1373 |
|
1374 |
+
#: templates/connect.php:156
|
1375 |
msgid "Re-send activation email"
|
1376 |
msgstr "有効化メールを再送信"
|
1377 |
|
1378 |
+
#: templates/connect.php:160
|
1379 |
msgid "Thanks %s!"
|
1380 |
msgstr "ありがとう $s さん!"
|
1381 |
|
1382 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1383 |
msgid "Agree & Activate License"
|
1384 |
msgstr "同意してライセンスを有効化"
|
1385 |
|
1386 |
+
#: templates/connect.php:179
|
1387 |
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1388 |
msgstr "%s を購入いただきありがとうございます。はじめにライセンスキーを入力してください:"
|
1389 |
|
1390 |
+
#: templates/connect.php:186
|
1391 |
+
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."
|
1392 |
+
msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
|
1393 |
+
|
1394 |
+
#: templates/connect.php:187
|
1395 |
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1396 |
+
msgstr "重要な更新を逃さないように、セキュリティと更新通知、%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
|
1397 |
|
1398 |
+
#: templates/connect.php:193
|
1399 |
+
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."
|
1400 |
+
msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
|
1401 |
|
1402 |
+
#: templates/connect.php:194
|
1403 |
+
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."
|
1404 |
+
msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
|
1405 |
+
|
1406 |
+
#: templates/connect.php:228
|
1407 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1408 |
+
msgstr "Freeminus ネットワークレベルのインテグレーションをご紹介できることに興奮しています。"
|
1409 |
|
1410 |
+
#: templates/connect.php:231
|
1411 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1412 |
+
msgstr "アップデートの処理中に%dサイトがライセンスの有効化が保留中であることを検知しました。"
|
1413 |
|
1414 |
+
#: templates/connect.php:233
|
1415 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1416 |
+
msgstr "これらのサイトで%sを使う場合は、ライセンスキーを入力し、アクティベーションボタンをクリックしてください。"
|
1417 |
|
1418 |
+
#: templates/connect.php:235
|
1419 |
msgid "%s's paid features"
|
1420 |
+
msgstr "%sの有料機能"
|
1421 |
|
1422 |
+
#: templates/connect.php:240
|
1423 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1424 |
+
msgstr "または、今すぐスキップして、%sのネットワークレベルのアカウントページでライセンスを有効にすることもできます。"
|
1425 |
|
1426 |
+
#: templates/connect.php:242
|
1427 |
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1428 |
+
msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。"
|
1429 |
|
1430 |
+
#: templates/connect.php251, templates/forms/license-activation.php:46
|
1431 |
msgid "License key"
|
1432 |
msgstr "ライセンスキー"
|
1433 |
|
1434 |
+
#: templates/connect.php254, templates/forms/license-activation.php:19
|
1435 |
msgid "Can't find your license key?"
|
1436 |
msgstr "ライセンスキーは見つかりませんか?"
|
1437 |
|
1438 |
+
#: templates/connect.php302, templates/connect.php617,
|
1439 |
#: templates/forms/deactivation/retry-skip.php:20
|
1440 |
msgctxt "verb"
|
1441 |
msgid "Skip"
|
1442 |
msgstr "スキップ"
|
1443 |
|
1444 |
+
#: templates/connect.php:305
|
1445 |
msgid "Delegate to Site Admins"
|
1446 |
+
msgstr "サイト管理者に委任する"
|
1447 |
|
1448 |
+
#: templates/connect.php:305
|
1449 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1450 |
+
msgstr "決定をサイトの管理者に委任するにはクリックしてください。"
|
1451 |
|
1452 |
+
#: templates/connect.php:333
|
1453 |
msgid "Your Profile Overview"
|
1454 |
msgstr "プロフィール概要"
|
1455 |
|
1456 |
+
#: templates/connect.php:334
|
1457 |
msgid "Name and email address"
|
1458 |
msgstr "名前とメールアドレス"
|
1459 |
|
1460 |
+
#: templates/connect.php:339
|
1461 |
msgid "Your Site Overview"
|
1462 |
msgstr "サイト概要"
|
1463 |
|
1464 |
+
#: templates/connect.php:340
|
1465 |
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1466 |
msgstr "サイト URL、WP バージョン、PHP info、プラグインとテーマ"
|
1467 |
|
1468 |
+
#: templates/connect.php:345
|
1469 |
msgid "Admin Notices"
|
1470 |
msgstr "管理者通知"
|
1471 |
|
1472 |
+
#: templates/connect.php346, templates/connect.php:362
|
1473 |
msgid "Updates, announcements, marketing, no spam"
|
1474 |
msgstr "更新、発表、マーケティング、スパムなし"
|
1475 |
|
1476 |
+
#: templates/connect.php:351
|
1477 |
msgid "Current %s Events"
|
1478 |
+
msgstr "現在%sイベント"
|
1479 |
|
1480 |
+
#: templates/connect.php:352
|
1481 |
msgid "Activation, deactivation and uninstall"
|
1482 |
msgstr "有効化、無効化、アンインストール"
|
1483 |
|
1484 |
+
#: templates/connect.php:361
|
1485 |
msgid "Newsletter"
|
1486 |
msgstr "ニュースレター"
|
1487 |
|
1488 |
+
#: templates/connect.php378, templates/forms/license-activation.php:38
|
1489 |
msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
|
1490 |
+
msgstr "%1$sはセキュリティとアプデート、そしてライセンスの状態を確認するため、定期的に%2$sへデータを送信します。"
|
1491 |
|
1492 |
+
#: templates/connect.php:383
|
1493 |
msgid "What permissions are being granted?"
|
1494 |
msgstr "付与されているパーミッションは何ですか?"
|
1495 |
|
1496 |
+
#: templates/connect.php:404
|
1497 |
msgid "Don't have a license key?"
|
1498 |
msgstr "ライセンスキーをお持ちではありませんか?"
|
1499 |
|
1500 |
+
#: templates/connect.php:405
|
1501 |
msgid "Activate Free Version"
|
1502 |
msgstr "フリーバージョンを有効化"
|
1503 |
|
1504 |
+
#: templates/connect.php:407
|
1505 |
msgid "Have a license key?"
|
1506 |
msgstr "ライセンスキーはお持ちですか?"
|
1507 |
|
1508 |
+
#: templates/connect.php:415
|
1509 |
msgid "Privacy Policy"
|
1510 |
msgstr "プライバシーポリシー"
|
1511 |
|
1512 |
+
#: templates/connect.php:417
|
1513 |
msgid "Terms of Service"
|
1514 |
msgstr "利用規約"
|
1515 |
|
1516 |
+
#: templates/connect.php:750
|
1517 |
msgctxt "as in the process of sending an email"
|
1518 |
msgid "Sending email"
|
1519 |
msgstr "メール送信中"
|
1520 |
|
1521 |
+
#: templates/connect.php:751
|
1522 |
msgctxt "as activating plugin"
|
1523 |
msgid "Activating"
|
1524 |
msgstr "有効化中"
|
1525 |
|
1526 |
#: templates/contact.php:78
|
1527 |
msgid "Contact"
|
1528 |
+
msgstr "連絡"
|
1529 |
|
1530 |
#: templates/debug.php:17
|
1531 |
msgctxt "as turned off"
|
1546 |
msgid "Debugging"
|
1547 |
msgstr "デバッグ"
|
1548 |
|
1549 |
+
#: templates/debug.php54, templates/debug.php238, templates/debug.php364,
|
1550 |
+
#: templates/debug.php:482
|
1551 |
msgid "Actions"
|
1552 |
msgstr "アクション"
|
1553 |
|
1565 |
|
1566 |
#: templates/debug.php:79
|
1567 |
msgid "Clear Updates Transients"
|
1568 |
+
msgstr "アップデートのトランジエントをクリアーにする"
|
1569 |
|
1570 |
#: templates/debug.php:86
|
1571 |
msgid "Sync Data From Server"
|
1573 |
|
1574 |
#: templates/debug.php:90
|
1575 |
msgid "Load DB Option"
|
1576 |
+
msgstr "DB オプションを読み込む"
|
1577 |
|
1578 |
#: templates/debug.php:93
|
1579 |
msgid "Set DB Option"
|
1580 |
+
msgstr "DB オプションを設定する"
|
1581 |
|
1582 |
#: templates/debug.php:170
|
1583 |
msgid "Key"
|
1584 |
+
msgstr "キー"
|
1585 |
|
1586 |
#: templates/debug.php:171
|
1587 |
msgid "Value"
|
1588 |
+
msgstr "値"
|
1589 |
|
1590 |
#: templates/debug.php:187
|
1591 |
msgctxt "as software development kit versions"
|
1598 |
|
1599 |
#: templates/debug.php193, templates/debug.php:232
|
1600 |
msgid "Module Path"
|
1601 |
+
msgstr "モジュールのパス"
|
1602 |
|
1603 |
#: templates/debug.php:194
|
1604 |
msgid "Is Active"
|
1612 |
msgid "Themes"
|
1613 |
msgstr "テーマ"
|
1614 |
|
1615 |
+
#: templates/debug.php227, templates/debug.php359, templates/debug.php441,
|
1616 |
#: templates/debug/scheduled-crons.php:80
|
1617 |
msgid "Slug"
|
1618 |
msgstr "スラッグ"
|
1619 |
|
1620 |
+
#: templates/debug.php229, templates/debug.php:440
|
1621 |
msgid "Title"
|
1622 |
msgstr "タイトル"
|
1623 |
|
1632 |
|
1633 |
#: templates/debug.php:235
|
1634 |
msgid "Network Blog"
|
1635 |
+
msgstr "ネットワークブログ"
|
1636 |
|
1637 |
#: templates/debug.php:236
|
1638 |
msgid "Network User"
|
1639 |
+
msgstr "ネットワークユーザ"
|
1640 |
|
1641 |
+
#: templates/debug.php:273
|
1642 |
msgctxt "as connection was successful"
|
1643 |
msgid "Connected"
|
1644 |
msgstr "接続"
|
1645 |
|
1646 |
+
#: templates/debug.php:274
|
1647 |
msgctxt "as connection blocked"
|
1648 |
msgid "Blocked"
|
1649 |
msgstr "ブロック"
|
1650 |
|
1651 |
+
#: templates/debug.php:310
|
1652 |
msgid "Simulate Trial"
|
1653 |
+
msgstr "トライアルをシミュレートする"
|
1654 |
|
1655 |
+
#: templates/debug.php:322
|
1656 |
msgid "Simulate Network Upgrade"
|
1657 |
+
msgstr "ネットワークアップグレードをシミュレートする"
|
1658 |
|
1659 |
+
#: templates/debug.php:348
|
1660 |
msgid "%s Installs"
|
1661 |
+
msgstr "%sインストール"
|
1662 |
|
1663 |
+
#: templates/debug.php:350
|
1664 |
msgctxt "like websites"
|
1665 |
msgid "Sites"
|
1666 |
msgstr "サイト数"
|
1667 |
|
1668 |
+
#: templates/debug.php356, templates/account/partials/site.php:148
|
1669 |
msgid "Blog ID"
|
1670 |
+
msgstr "ブログ ID"
|
1671 |
+
|
1672 |
+
#: templates/debug.php421, templates/debug.php499,
|
1673 |
+
#: templates/account/partials/addon.php:334
|
1674 |
+
msgctxt "verb"
|
1675 |
+
msgid "Delete"
|
1676 |
+
msgstr "削除"
|
1677 |
|
1678 |
+
#: templates/debug.php:435
|
1679 |
msgid "Add Ons of module %s"
|
1680 |
+
msgstr "モジュールのアドオン%s"
|
1681 |
|
1682 |
+
#: templates/debug.php:472
|
1683 |
msgid "Users"
|
1684 |
msgstr "ユーザー"
|
1685 |
|
1686 |
+
#: templates/debug.php:479
|
1687 |
msgid "Verified"
|
1688 |
msgstr "認証済み"
|
1689 |
|
1690 |
+
#: templates/debug.php:510
|
1691 |
msgid "%s Licenses"
|
1692 |
+
msgstr "%sラインセス"
|
1693 |
|
1694 |
+
#: templates/debug.php:515
|
1695 |
msgid "Plugin ID"
|
1696 |
+
msgstr "プラグイン ID"
|
1697 |
|
1698 |
+
#: templates/debug.php:517
|
1699 |
msgid "Plan ID"
|
1700 |
+
msgstr "プラン ID"
|
1701 |
|
1702 |
+
#: templates/debug.php:518
|
1703 |
msgid "Quota"
|
1704 |
+
msgstr "クォータ"
|
1705 |
|
1706 |
+
#: templates/debug.php:519
|
1707 |
msgid "Activated"
|
1708 |
+
msgstr "有効化済み"
|
1709 |
|
1710 |
+
#: templates/debug.php:520
|
1711 |
msgid "Blocking"
|
1712 |
+
msgstr "ブロッキング"
|
1713 |
|
1714 |
+
#: templates/debug.php:522
|
1715 |
msgctxt "as expiration date"
|
1716 |
msgid "Expiration"
|
1717 |
msgstr "期限切れ"
|
1718 |
|
1719 |
+
#: templates/debug.php:545
|
1720 |
msgid "Debug Log"
|
1721 |
+
msgstr "デバッグログ"
|
1722 |
|
1723 |
+
#: templates/debug.php:549
|
1724 |
msgid "All Types"
|
1725 |
+
msgstr "すべてのタイプ"
|
1726 |
|
1727 |
+
#: templates/debug.php:556
|
1728 |
msgid "All Requests"
|
1729 |
+
msgstr "すべてのリクエスト"
|
1730 |
|
1731 |
+
#: templates/debug.php561, templates/debug.php590,
|
1732 |
#: templates/debug/logger.php:25
|
1733 |
msgid "File"
|
1734 |
+
msgstr "ファイル"
|
1735 |
|
1736 |
+
#: templates/debug.php562, templates/debug.php588,
|
1737 |
#: templates/debug/logger.php:23
|
1738 |
msgid "Function"
|
1739 |
+
msgstr "機能"
|
1740 |
|
1741 |
+
#: templates/debug.php:563
|
1742 |
msgid "Process ID"
|
1743 |
+
msgstr "プロセス ID"
|
1744 |
|
1745 |
+
#: templates/debug.php:564
|
1746 |
msgid "Logger"
|
1747 |
+
msgstr "ロガー"
|
1748 |
|
1749 |
+
#: templates/debug.php565, templates/debug.php589,
|
1750 |
#: templates/debug/logger.php:24
|
1751 |
msgid "Message"
|
1752 |
+
msgstr "メッセージ"
|
1753 |
|
1754 |
+
#: templates/debug.php:567
|
1755 |
msgid "Filter"
|
1756 |
+
msgstr "フィルター"
|
1757 |
|
1758 |
+
#: templates/debug.php:575
|
1759 |
msgid "Download"
|
1760 |
+
msgstr "ダウンロード"
|
1761 |
|
1762 |
+
#: templates/debug.php586, templates/debug/logger.php:22
|
1763 |
msgid "Type"
|
1764 |
+
msgstr "タイプ"
|
1765 |
|
1766 |
+
#: templates/debug.php591, templates/debug/logger.php:26
|
1767 |
msgid "Timestamp"
|
1768 |
+
msgstr "タイムスタンプ"
|
1769 |
|
1770 |
#: templates/secure-https-header.php:28
|
1771 |
msgid "Secure HTTPS %s page, running from an external domain"
|
1772 |
+
msgstr "外部ドメインで実行中のセキュアな HTTPS %sページ"
|
1773 |
|
1774 |
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1775 |
#: templates/plugin-info/features.php:43
|
1788 |
|
1789 |
#: includes/debug/debug-bar-start.php:42
|
1790 |
msgid "Requests"
|
1791 |
+
msgstr "リクエスト数"
|
1792 |
|
1793 |
#: templates/account/billing.php:28
|
1794 |
msgctxt "verb"
|
1862 |
|
1863 |
#: templates/debug/api-calls.php:68
|
1864 |
msgid "Method"
|
1865 |
+
msgstr "メソッド"
|
1866 |
|
1867 |
#: templates/debug/api-calls.php:69
|
1868 |
msgid "Code"
|
1869 |
+
msgstr "コード"
|
1870 |
|
1871 |
#: templates/debug/api-calls.php:70
|
1872 |
msgid "Length"
|
1873 |
+
msgstr "長さ"
|
1874 |
|
1875 |
#: templates/debug/api-calls.php:71
|
1876 |
msgctxt "as file/folder path"
|
1879 |
|
1880 |
#: templates/debug/api-calls.php:73
|
1881 |
msgid "Body"
|
1882 |
+
msgstr "本文"
|
1883 |
|
1884 |
#: templates/debug/api-calls.php:75
|
1885 |
msgid "Result"
|
1886 |
+
msgstr "結果"
|
1887 |
|
1888 |
#: templates/debug/api-calls.php:76
|
1889 |
msgid "Start"
|
1890 |
+
msgstr "開始"
|
1891 |
|
1892 |
#: templates/debug/api-calls.php:77
|
1893 |
msgid "End"
|
1894 |
+
msgstr "終了"
|
1895 |
|
1896 |
#: templates/debug/logger.php:15
|
1897 |
msgid "Log"
|
1898 |
+
msgstr "グ"
|
1899 |
|
1900 |
#. translators: %s: time period (e.g. In "2 hours")
|
1901 |
#: templates/debug/plugins-themes-sync.php18,
|
1913 |
#: templates/debug/scheduled-crons.php:74
|
1914 |
msgctxt "seconds"
|
1915 |
msgid "sec"
|
1916 |
+
msgstr "秒"
|
1917 |
|
1918 |
#: templates/debug/plugins-themes-sync.php:23
|
1919 |
msgid "Plugins & Themes Sync"
|
1921 |
|
1922 |
#: templates/debug/plugins-themes-sync.php:28
|
1923 |
msgid "Total"
|
1924 |
+
msgstr "トータル"
|
1925 |
|
1926 |
#: templates/debug/plugins-themes-sync.php29,
|
1927 |
#: templates/debug/scheduled-crons.php:84
|
1928 |
msgid "Last"
|
1929 |
+
msgstr "最終"
|
1930 |
|
1931 |
#: templates/debug/scheduled-crons.php:76
|
1932 |
msgid "Scheduled Crons"
|
1934 |
|
1935 |
#: templates/debug/scheduled-crons.php:81
|
1936 |
msgid "Module"
|
1937 |
+
msgstr "モジュール"
|
1938 |
|
1939 |
#: templates/debug/scheduled-crons.php:82
|
1940 |
msgid "Module Type"
|
1941 |
+
msgstr "モジュールタイプ"
|
1942 |
|
1943 |
#: templates/debug/scheduled-crons.php:83
|
1944 |
msgid "Cron Type"
|
1945 |
+
msgstr "Cron タイプ"
|
1946 |
|
1947 |
#: templates/debug/scheduled-crons.php:85
|
1948 |
msgid "Next"
|
1949 |
+
msgstr "次"
|
1950 |
|
1951 |
#: templates/forms/affiliation.php:82
|
1952 |
msgid "Non-expiring"
|
1953 |
+
msgstr "期限のない"
|
1954 |
|
1955 |
#: templates/forms/affiliation.php:85
|
1956 |
msgid "Apply to become an affiliate"
|
1957 |
+
msgstr "アフィリエイトに応募する"
|
1958 |
|
1959 |
#: templates/forms/affiliation.php:104
|
1960 |
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1961 |
+
msgstr "%sのアフィリエイト申請は受理されました! 次のリンクからアフィリエイトエリアにログインしてください:%s"
|
1962 |
|
1963 |
#: templates/forms/affiliation.php:119
|
1964 |
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."
|
1965 |
+
msgstr "アフィリエイトプログラムに応募いただきありがとうございます。14日以内にお申し込み詳細をレビューし、改めてご連絡いたします。"
|
1966 |
|
1967 |
#: templates/forms/affiliation.php:122
|
1968 |
msgid "Your affiliation account was temporarily suspended."
|
1969 |
+
msgstr "アフィリエイトアカウントは一時的に停止されました。"
|
1970 |
|
1971 |
#: templates/forms/affiliation.php:125
|
1972 |
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."
|
1973 |
+
msgstr "アフィリエイトアカウントに応募いただきありがとうございます。残念ながら現時点では申請を受理することができませんでした。30日後に改めてお申込みください。"
|
1974 |
|
1975 |
#: templates/forms/affiliation.php:128
|
1976 |
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1977 |
+
msgstr "アフィリエイト規約違反により、アフィリエイトアカウントを一時的に凍結させていただきました。ご質問等がありましたら、サポートにお問い合わせください。"
|
1978 |
|
1979 |
#: templates/forms/affiliation.php:141
|
1980 |
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1981 |
+
msgstr "%sは気に入りましたか? アンバサダーになって報酬を得ましょう ;-)"
|
1982 |
|
1983 |
#: templates/forms/affiliation.php:142
|
1984 |
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1985 |
+
msgstr "新規カスタマーに私たちの%sを紹介して、売り上げごとに%sのコミッションを得ましょう"
|
1986 |
|
1987 |
#: templates/forms/affiliation.php:145
|
1988 |
msgid "Program Summary"
|
1989 |
+
msgstr "プログラム概要"
|
1990 |
|
1991 |
#: templates/forms/affiliation.php:147
|
1992 |
msgid "%s commission when a customer purchases a new license."
|
1993 |
+
msgstr "カスタマーが新規ライセンスを購入するごとに%sのコミッションが発生します。"
|
1994 |
|
1995 |
#: templates/forms/affiliation.php:149
|
1996 |
msgid "Get commission for automated subscription renewals."
|
1997 |
+
msgstr "サブスクリプションの自動更新でコミッションを得ましょう。"
|
1998 |
|
1999 |
#: templates/forms/affiliation.php:152
|
2000 |
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
2001 |
+
msgstr "%s初回の訪問後、クッキーをトラッキングして収益の可能性を最大化しましょう。"
|
2002 |
|
2003 |
#: templates/forms/affiliation.php:155
|
2004 |
msgid "Unlimited commissions."
|
2005 |
+
msgstr "無制限のコミッション。"
|
2006 |
|
2007 |
#: templates/forms/affiliation.php:157
|
2008 |
msgid "%s minimum payout amount."
|
2009 |
+
msgstr "%sお支払いの最低金額"
|
2010 |
|
2011 |
#: templates/forms/affiliation.php:158
|
2012 |
msgid "Payouts are in USD and processed monthly via PayPal."
|
2013 |
+
msgstr "お支払いは USD かつ PayPal 経由で毎月行われます。"
|
2014 |
|
2015 |
#: templates/forms/affiliation.php:159
|
2016 |
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2017 |
+
msgstr "30日間の返金期間があるため、コミッションのお支払いは30日以降になります。"
|
2018 |
|
2019 |
#: templates/forms/affiliation.php:162
|
2020 |
msgid "Affiliate"
|
2021 |
+
msgstr "アフィリエイト"
|
2022 |
|
2023 |
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
2024 |
msgid "Email address"
|
2026 |
|
2027 |
#: templates/forms/affiliation.php:169
|
2028 |
msgid "Full name"
|
2029 |
+
msgstr "フルネーム"
|
2030 |
|
2031 |
#: templates/forms/affiliation.php:173
|
2032 |
msgid "PayPal account email address"
|
2033 |
+
msgstr "PayPal アカウントのメールアドレス"
|
2034 |
|
2035 |
#: templates/forms/affiliation.php:177
|
2036 |
msgid "Where are you going to promote the %s?"
|
2037 |
+
msgstr "%sのプロモーションを行うサイトはどこですか?"
|
2038 |
|
2039 |
#: templates/forms/affiliation.php:179
|
2040 |
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2041 |
+
msgstr "%sのプロモーションを行う予定のあなたのサイトや他のサイトのドメイン名を入力してください。"
|
2042 |
|
2043 |
#: templates/forms/affiliation.php:181
|
2044 |
msgid "Add another domain"
|
2045 |
+
msgstr "ドメイン名を追加する"
|
2046 |
|
2047 |
#: templates/forms/affiliation.php:185
|
2048 |
msgid "Extra Domains"
|
2049 |
+
msgstr "追加のドメイン名"
|
2050 |
|
2051 |
#: templates/forms/affiliation.php:186
|
2052 |
msgid "Extra domains where you will be marketing the product from."
|
2053 |
+
msgstr "プロダクトフォームのマーケティングを行う追加ドメイン名。"
|
2054 |
|
2055 |
#: templates/forms/affiliation.php:196
|
2056 |
msgid "Promotion methods"
|
2057 |
+
msgstr "プロモーション方法"
|
2058 |
|
2059 |
#: templates/forms/affiliation.php:199
|
2060 |
msgid "Social media (Facebook, Twitter, etc.)"
|
2061 |
+
msgstr "ソーシャルメディア(Facebook、Twitter、その他)"
|
2062 |
|
2063 |
#: templates/forms/affiliation.php:203
|
2064 |
msgid "Mobile apps"
|
2065 |
+
msgstr "モバイルアプリケーション"
|
2066 |
|
2067 |
#: templates/forms/affiliation.php:207
|
2068 |
msgid "Website, email, and social media statistics (optional)"
|
2069 |
+
msgstr "ウェブサイト、Email またはソーシャルメディアの統計 (オプション)"
|
2070 |
|
2071 |
#: templates/forms/affiliation.php:210
|
2072 |
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)."
|
2073 |
+
msgstr "関係のあるウェブサイトやソーシャルメディアの統計を提供してください。例: サイトの月間訪問者数、Emailの購読者数、フォロワー数等 (機密情報として取り扱います)"
|
2074 |
|
2075 |
#: templates/forms/affiliation.php:214
|
2076 |
msgid "How will you promote us?"
|
2077 |
+
msgstr "どのように我々をプロモートしますか?"
|
2078 |
|
2079 |
#: templates/forms/affiliation.php:217
|
2080 |
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2081 |
+
msgstr "どのように%sをプロモートするつもりなのか、詳細をお知らせください (できるだけ具体的にお願いします)"
|
2082 |
|
2083 |
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
2084 |
msgid "Cancel"
|
2086 |
|
2087 |
#: templates/forms/affiliation.php:225
|
2088 |
msgid "Become an affiliate"
|
2089 |
+
msgstr "アフィリエイトになる"
|
2090 |
|
2091 |
#: templates/forms/license-activation.php:20
|
2092 |
msgid "Please enter the license key that you received in the email right after the purchase:"
|
2114 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2115 |
msgstr "\"オプトアウト\"をクリックすることで、もう %s から %s へのデータの送信は行いません。"
|
2116 |
|
2117 |
+
#: templates/forms/premium-versions-upgrade-handler.php:24
|
2118 |
+
msgid "There is a new version of %s available."
|
2119 |
+
msgstr "%sの入手可能な新しいバージョンがあります"
|
2120 |
+
|
2121 |
+
#: templates/forms/premium-versions-upgrade-handler.php:25
|
2122 |
+
msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
|
2123 |
+
msgstr "バージョン%sのセキュリティや機能のアップデートやサポートを受けられるよう、%s今すぐライセンスキーを更新してください%s。"
|
2124 |
+
|
2125 |
+
#: templates/forms/premium-versions-upgrade-handler.php:34
|
2126 |
+
msgid "New Version Available"
|
2127 |
+
msgstr "新しいバージョンがあります"
|
2128 |
+
|
2129 |
+
#: templates/forms/premium-versions-upgrade-handler.php:36
|
2130 |
+
msgid "Renew license"
|
2131 |
+
msgstr "ライセンスを更新"
|
2132 |
+
|
2133 |
+
#: templates/forms/premium-versions-upgrade-handler.php:53
|
2134 |
+
msgctxt "close a window"
|
2135 |
+
msgid "Dismiss"
|
2136 |
+
msgstr "却下"
|
2137 |
+
|
2138 |
#: templates/forms/resend-key.php:21
|
2139 |
msgid "Send License Key"
|
2140 |
msgstr "ライセンスキーを送信"
|
2149 |
|
2150 |
#: templates/forms/trial-start.php:28
|
2151 |
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."
|
2152 |
+
msgstr "WordPress.orgのガイドラインに準拠するため、トライアルを開始する前に、ユーザーと重要でないサイト情報のオプトイン、更新の確認やトライアルの状態確認のために%sが%sに対して定期的にデータを送信する許可を得るように設定してください。"
|
2153 |
|
2154 |
#: templates/js/style-premium-theme.php:37
|
2155 |
msgid "Premium"
|
2156 |
+
msgstr "プレミアム"
|
2157 |
|
2158 |
#: templates/partials/network-activation.php:23
|
2159 |
msgid "Activate license on all sites in the network."
|
2160 |
+
msgstr "ネットワーク上にあるすべてのサイトのライセンスを有効にする。"
|
2161 |
|
2162 |
#: templates/partials/network-activation.php:24
|
2163 |
msgid "Apply on all sites in the network."
|
2164 |
+
msgstr "ネットワーク上にあるすべてのサイトに対して反映させる。"
|
2165 |
|
2166 |
#: templates/partials/network-activation.php:27
|
2167 |
msgid "Activate license on all pending sites."
|
2168 |
+
msgstr "保留中のサイトすべてでライセンスを有効にする。"
|
2169 |
|
2170 |
#: templates/partials/network-activation.php:28
|
2171 |
msgid "Apply on all pending sites."
|
2172 |
+
msgstr "保留中のサイトすべてに反映させる。"
|
2173 |
|
2174 |
#: templates/partials/network-activation.php36,
|
2175 |
#: templates/partials/network-activation.php:68
|
2176 |
msgid "allow"
|
2177 |
+
msgstr "許可"
|
2178 |
|
2179 |
#: templates/partials/network-activation.php38,
|
2180 |
#: templates/partials/network-activation.php:70
|
2181 |
msgid "delegate"
|
2182 |
+
msgstr "代表"
|
2183 |
|
2184 |
#: templates/partials/network-activation.php41,
|
2185 |
#: templates/partials/network-activation.php:73
|
2186 |
msgid "skip"
|
2187 |
+
msgstr "スキップ"
|
2188 |
|
2189 |
#: templates/plugin-info/description.php72,
|
2190 |
#: templates/plugin-info/screenshots.php:31
|
2208 |
msgid "Last license"
|
2209 |
msgstr "最新のライセンス"
|
2210 |
|
2211 |
+
#: templates/account/partials/addon.php:111
|
2212 |
+
msgid "Cancelled"
|
2213 |
+
msgstr "キャンセル"
|
2214 |
+
|
2215 |
+
#: templates/account/partials/addon.php:116
|
2216 |
+
msgid "Expired"
|
2217 |
+
msgstr "期限切れ"
|
2218 |
+
|
2219 |
+
#: templates/account/partials/addon.php:121
|
2220 |
+
msgid "No expiration"
|
2221 |
+
msgstr "有効期限なし"
|
2222 |
+
|
2223 |
+
#: templates/account/partials/addon.php259,
|
2224 |
+
#: templates/account/partials/addon.php:312
|
2225 |
+
msgid "Activate this add-on"
|
2226 |
+
msgstr "このアドオンを有効化"
|
2227 |
+
|
2228 |
#: templates/account/partials/site.php:181
|
2229 |
msgid "Owner Name"
|
2230 |
+
msgstr "所有者名"
|
2231 |
|
2232 |
#: templates/account/partials/site.php:193
|
2233 |
msgid "Owner Email"
|
2234 |
+
msgstr "所有者の Email"
|
2235 |
|
2236 |
#: templates/account/partials/site.php:205
|
2237 |
msgid "Owner ID"
|
2238 |
+
msgstr "オーナー ID"
|
2239 |
|
2240 |
#: templates/account/partials/site.php:270
|
2241 |
msgid "Subscription"
|
2242 |
+
msgstr "サブスクリプション"
|
2243 |
|
2244 |
#: templates/forms/deactivation/contact.php:19
|
2245 |
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2259 |
|
2260 |
#: templates/forms/deactivation/form.php:65
|
2261 |
msgid "Activate %s"
|
2262 |
+
msgstr "%sを有効化する"
|
2263 |
|
2264 |
#: templates/forms/deactivation/form.php:76
|
2265 |
msgid "Quick feedback"
|
2267 |
|
2268 |
#: templates/forms/deactivation/form.php:80
|
2269 |
msgid "If you have a moment, please let us know why you are %s"
|
2270 |
+
msgstr "お時間があれば、なぜ%sするのか理由を教えてください。"
|
2271 |
|
2272 |
#: templates/forms/deactivation/form.php:80
|
2273 |
msgid "deactivating"
|
2274 |
+
msgstr "無効化中"
|
2275 |
|
2276 |
#: templates/forms/deactivation/form.php:80
|
2277 |
msgid "switching"
|
2278 |
+
msgstr "変更中"
|
2279 |
|
2280 |
+
#: templates/forms/deactivation/form.php:269
|
2281 |
msgid "Submit & %s"
|
2282 |
+
msgstr "送信と%s"
|
2283 |
|
2284 |
+
#: templates/forms/deactivation/form.php:290
|
2285 |
msgid "Kindly tell us the reason so we can improve."
|
2286 |
msgstr "改善できるよう、どうか理由を教えてください。"
|
2287 |
|
2288 |
+
#: templates/forms/deactivation/form.php:411
|
2289 |
msgid "Yes - %s"
|
2290 |
+
msgstr "はい"
|
2291 |
|
2292 |
+
#: templates/forms/deactivation/form.php:418
|
2293 |
msgid "Skip & %s"
|
2294 |
+
msgstr "スキップと%s"
|
2295 |
|
2296 |
#: templates/forms/deactivation/retry-skip.php:21
|
2297 |
msgid "Click here to use the plugin anonymously"
|
includes/pum-sdk/freemius/languages/freemius-nl_NL.mo
CHANGED
Binary file
|
includes/pum-sdk/freemius/languages/freemius-nl_NL.po
ADDED
@@ -0,0 +1,2299 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
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: 2018-05-24 16:14+0000\n"
|
11 |
+
"Last-Translator: Benny Vluggen <benny@prodevign.com>\n"
|
12 |
+
"Language: nl_NL\n"
|
13 |
+
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\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:1551
|
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 kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout."
|
27 |
+
|
28 |
+
#: includes/class-freemius.php:1553
|
29 |
+
msgid "Error"
|
30 |
+
msgstr "Fout"
|
31 |
+
|
32 |
+
#: includes/class-freemius.php:1871
|
33 |
+
msgid "I found a better %s"
|
34 |
+
msgstr "Ik vond een beter %s"
|
35 |
+
|
36 |
+
#: includes/class-freemius.php:1873
|
37 |
+
msgid "What's the %s's name?"
|
38 |
+
msgstr "Wat is de naam van het %s?"
|
39 |
+
|
40 |
+
#: includes/class-freemius.php:1879
|
41 |
+
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
+
msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
|
43 |
+
|
44 |
+
#: includes/class-freemius.php:1881
|
45 |
+
msgid "Deactivation"
|
46 |
+
msgstr "Deactivatie"
|
47 |
+
|
48 |
+
#: includes/class-freemius.php:1882
|
49 |
+
msgid "Theme Switch"
|
50 |
+
msgstr "Thema Wissel"
|
51 |
+
|
52 |
+
#: includes/class-freemius.php1891, templates/forms/resend-key.php:24
|
53 |
+
msgid "Other"
|
54 |
+
msgstr "Overige"
|
55 |
+
|
56 |
+
#: includes/class-freemius.php:1899
|
57 |
+
msgid "I no longer need the %s"
|
58 |
+
msgstr "Ik heb de %s niet meer nodig "
|
59 |
+
|
60 |
+
#: includes/class-freemius.php:1906
|
61 |
+
msgid "I only needed the %s for a short period"
|
62 |
+
msgstr "Ik had de %s alleen nodig voor een korte periode."
|
63 |
+
|
64 |
+
#: includes/class-freemius.php:1912
|
65 |
+
msgid "The %s broke my site"
|
66 |
+
msgstr "De %s maakte mijn site onbruikbaar"
|
67 |
+
|
68 |
+
#: includes/class-freemius.php:1919
|
69 |
+
msgid "The %s suddenly stopped working"
|
70 |
+
msgstr "De %s werkte opeens niet meer"
|
71 |
+
|
72 |
+
#: includes/class-freemius.php:1929
|
73 |
+
msgid "I can't pay for it anymore"
|
74 |
+
msgstr "Ik kan er niet langer meer voor betalen"
|
75 |
+
|
76 |
+
#: includes/class-freemius.php:1931
|
77 |
+
msgid "What price would you feel comfortable paying?"
|
78 |
+
msgstr "Welke bedrag zou je ervoor over hebben?"
|
79 |
+
|
80 |
+
#: includes/class-freemius.php:1937
|
81 |
+
msgid "I don't like to share my information with you"
|
82 |
+
msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
|
83 |
+
|
84 |
+
#: includes/class-freemius.php:1958
|
85 |
+
msgid "The %s didn't work"
|
86 |
+
msgstr "De %s werkte niet"
|
87 |
+
|
88 |
+
#: includes/class-freemius.php:1968
|
89 |
+
msgid "I couldn't understand how to make it work"
|
90 |
+
msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
|
91 |
+
|
92 |
+
#: includes/class-freemius.php:1976
|
93 |
+
msgid "The %s is great, but I need specific feature that you don't support"
|
94 |
+
msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
|
95 |
+
|
96 |
+
#: includes/class-freemius.php:1978
|
97 |
+
msgid "What feature?"
|
98 |
+
msgstr "Welke feature?"
|
99 |
+
|
100 |
+
#: includes/class-freemius.php:1982
|
101 |
+
msgid "The %s is not working"
|
102 |
+
msgstr "De %s werkt niet"
|
103 |
+
|
104 |
+
#: includes/class-freemius.php:1984
|
105 |
+
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
+
msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
|
107 |
+
|
108 |
+
#: includes/class-freemius.php:1988
|
109 |
+
msgid "It's not what I was looking for"
|
110 |
+
msgstr "Het is niet waarna ik opzoek was"
|
111 |
+
|
112 |
+
#: includes/class-freemius.php:1990
|
113 |
+
msgid "What you've been looking for?"
|
114 |
+
msgstr "Waar was je naar op zoek?"
|
115 |
+
|
116 |
+
#: includes/class-freemius.php:1994
|
117 |
+
msgid "The %s didn't work as expected"
|
118 |
+
msgstr "De %s werkte niet zoals verwacht"
|
119 |
+
|
120 |
+
#: includes/class-freemius.php:1996
|
121 |
+
msgid "What did you expect?"
|
122 |
+
msgstr "Wat had je verwacht?"
|
123 |
+
|
124 |
+
#: includes/class-freemius.php2729, templates/debug.php:20
|
125 |
+
msgid "Freemius Debug"
|
126 |
+
msgstr "Freemius Debug"
|
127 |
+
|
128 |
+
#: includes/class-freemius.php:3402
|
129 |
+
msgid "I don't know what is cURL or how to install it, help me!"
|
130 |
+
msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
|
131 |
+
|
132 |
+
#: includes/class-freemius.php:3404
|
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 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. "
|
135 |
+
|
136 |
+
#: includes/class-freemius.php:3411
|
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 "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."
|
139 |
+
|
140 |
+
#: includes/class-freemius.php:3516
|
141 |
+
msgid "Yes - do your thing"
|
142 |
+
msgstr "Ja, ga je gang"
|
143 |
+
|
144 |
+
#: includes/class-freemius.php:3521
|
145 |
+
msgid "No - just deactivate"
|
146 |
+
msgstr "Nee - alleen deactiveren"
|
147 |
+
|
148 |
+
#: includes/class-freemius.php3566, includes/class-freemius.php4066,
|
149 |
+
#: includes/class-freemius.php5127, includes/class-freemius.php10941,
|
150 |
+
#: includes/class-freemius.php14205, includes/class-freemius.php14257,
|
151 |
+
#: includes/class-freemius.php14319, includes/class-freemius.php16448,
|
152 |
+
#: includes/class-freemius.php16458, includes/class-freemius.php17014,
|
153 |
+
#: includes/class-freemius.php17032, includes/class-freemius.php17130,
|
154 |
+
#: includes/class-freemius.php17866, templates/add-ons.php:43
|
155 |
+
msgctxt "exclamation"
|
156 |
+
msgid "Oops"
|
157 |
+
msgstr "Oeps"
|
158 |
+
|
159 |
+
#: includes/class-freemius.php:3635
|
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 "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."
|
162 |
+
|
163 |
+
#: includes/class-freemius.php:4063
|
164 |
+
msgctxt "addonX cannot run without pluginY"
|
165 |
+
msgid "%s cannot run without %s."
|
166 |
+
msgstr "%s werkt niet zonder %s."
|
167 |
+
|
168 |
+
#: includes/class-freemius.php:4064
|
169 |
+
msgctxt "addonX cannot run..."
|
170 |
+
msgid "%s cannot run without the plugin."
|
171 |
+
msgstr "%s werkt niet zonder de plug-in."
|
172 |
+
|
173 |
+
#: includes/class-freemius.php4176, includes/class-freemius.php4201,
|
174 |
+
#: includes/class-freemius.php:17103
|
175 |
+
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
176 |
+
msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
|
177 |
+
|
178 |
+
#: includes/class-freemius.php:4815
|
179 |
+
msgid "Premium %s version was successfully activated."
|
180 |
+
msgstr "Premium %s versie is succesvol geactiveerd."
|
181 |
+
|
182 |
+
#: includes/class-freemius.php4827, includes/class-freemius.php:6660
|
183 |
+
msgctxt ""
|
184 |
+
msgid "W00t"
|
185 |
+
msgstr "W00t"
|
186 |
+
|
187 |
+
#: includes/class-freemius.php:4842
|
188 |
+
msgid "You have a %s license."
|
189 |
+
msgstr "Je hebt een %s licentie"
|
190 |
+
|
191 |
+
#: includes/class-freemius.php4846, includes/class-freemius.php13626,
|
192 |
+
#: includes/class-freemius.php13637, includes/class-freemius.php16376,
|
193 |
+
#: includes/class-freemius.php16676, includes/class-freemius.php16741,
|
194 |
+
#: includes/class-freemius.php:16891
|
195 |
+
msgctxt "interjection expressing joy or exuberance"
|
196 |
+
msgid "Yee-haw"
|
197 |
+
msgstr "Hoera"
|
198 |
+
|
199 |
+
#: includes/class-freemius.php:5110
|
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 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."
|
202 |
+
|
203 |
+
#: includes/class-freemius.php:5114
|
204 |
+
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
205 |
+
msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
|
206 |
+
|
207 |
+
#: includes/class-freemius.php5123, templates/add-ons.php99,
|
208 |
+
#: templates/account/partials/addon.php:283
|
209 |
+
msgid "More information about %s"
|
210 |
+
msgstr "Meer informatie over %s"
|
211 |
+
|
212 |
+
#: includes/class-freemius.php:5124
|
213 |
+
msgid "Purchase License"
|
214 |
+
msgstr "Licentie Kopen"
|
215 |
+
|
216 |
+
#: includes/class-freemius.php6035, templates/connect.php:161
|
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 "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."
|
219 |
+
|
220 |
+
#: includes/class-freemius.php:6039
|
221 |
+
msgid "start the trial"
|
222 |
+
msgstr "start de proefperiode"
|
223 |
+
|
224 |
+
#: includes/class-freemius.php6040, templates/connect.php:165
|
225 |
+
msgid "complete the install"
|
226 |
+
msgstr "voltooi de installatie"
|
227 |
+
|
228 |
+
#: includes/class-freemius.php:6147
|
229 |
+
msgid "You are just one step away - %s"
|
230 |
+
msgstr "Je bent slechts een stap verwijderd - %s"
|
231 |
+
|
232 |
+
#: includes/class-freemius.php:6150
|
233 |
+
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
234 |
+
msgid "Complete \"%s\" Activation Now"
|
235 |
+
msgstr "Voltooi \"%s\" Activatie Nu"
|
236 |
+
|
237 |
+
#: includes/class-freemius.php:6227
|
238 |
+
msgid "We made a few tweaks to the %s, %s"
|
239 |
+
msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
|
240 |
+
|
241 |
+
#: includes/class-freemius.php:6231
|
242 |
+
msgid "Opt in to make \"%s\" Better!"
|
243 |
+
msgstr "Opt-in om \"%s\" te verbeteren!"
|
244 |
+
|
245 |
+
#: includes/class-freemius.php:6659
|
246 |
+
msgid "The upgrade of %s was successfully completed."
|
247 |
+
msgstr "De upgrade van %s is succesvol voltooid."
|
248 |
+
|
249 |
+
#: includes/class-freemius.php8384, includes/class-fs-plugin-updater.php581,
|
250 |
+
#: includes/class-fs-plugin-updater.php733,
|
251 |
+
#: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
|
252 |
+
msgid "Add-On"
|
253 |
+
msgstr "Uitbreiding"
|
254 |
+
|
255 |
+
#: includes/class-freemius.php8386, templates/debug.php349,
|
256 |
+
#: templates/debug.php:510
|
257 |
+
msgid "Plugin"
|
258 |
+
msgstr "Plug-in"
|
259 |
+
|
260 |
+
#: includes/class-freemius.php8387, templates/debug.php349,
|
261 |
+
#: templates/debug.php510, templates/forms/deactivation/form.php:64
|
262 |
+
msgid "Theme"
|
263 |
+
msgstr "Thema"
|
264 |
+
|
265 |
+
#: includes/class-freemius.php:10808
|
266 |
+
msgid "invalid_site_details_collection"
|
267 |
+
msgstr "ongeldige_site_details_verzameling"
|
268 |
+
|
269 |
+
#: includes/class-freemius.php:10928
|
270 |
+
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
271 |
+
msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
|
272 |
+
|
273 |
+
#: includes/class-freemius.php:10930
|
274 |
+
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
275 |
+
msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
|
276 |
+
|
277 |
+
#: includes/class-freemius.php:11166
|
278 |
+
msgid "Account is pending activation."
|
279 |
+
msgstr "Account wacht op activatie."
|
280 |
+
|
281 |
+
#: includes/class-freemius.php:13608
|
282 |
+
msgid "%s activation was successfully completed."
|
283 |
+
msgstr "%s activatie is succesvol voltooid."
|
284 |
+
|
285 |
+
#: includes/class-freemius.php:13622
|
286 |
+
msgid "Your account was successfully activated with the %s plan."
|
287 |
+
msgstr "Je account is succesvol geactiveerd met het %s plan."
|
288 |
+
|
289 |
+
#: includes/class-freemius.php13633, includes/class-freemius.php:16737
|
290 |
+
msgid "Your trial has been successfully started."
|
291 |
+
msgstr "U proefperiode is met succes gestart."
|
292 |
+
|
293 |
+
#: includes/class-freemius.php14203, includes/class-freemius.php14255,
|
294 |
+
#: includes/class-freemius.php:14317
|
295 |
+
msgid "Couldn't activate %s."
|
296 |
+
msgstr "Kon %s niet activeren."
|
297 |
+
|
298 |
+
#: includes/class-freemius.php14204, includes/class-freemius.php14256,
|
299 |
+
#: includes/class-freemius.php:14318
|
300 |
+
msgid "Please contact us with the following message:"
|
301 |
+
msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
|
302 |
+
|
303 |
+
#: includes/class-freemius.php14666, includes/class-freemius.php:18929
|
304 |
+
msgid "Upgrade"
|
305 |
+
msgstr "Upgrade"
|
306 |
+
|
307 |
+
#: includes/class-freemius.php:14672
|
308 |
+
msgid "Start Trial"
|
309 |
+
msgstr "Start Proefperiode"
|
310 |
+
|
311 |
+
#: includes/class-freemius.php:14674
|
312 |
+
msgid "Pricing"
|
313 |
+
msgstr "Prijzen"
|
314 |
+
|
315 |
+
#: includes/class-freemius.php14734, includes/class-freemius.php:14736
|
316 |
+
msgid "Affiliation"
|
317 |
+
msgstr "Affiliatie"
|
318 |
+
|
319 |
+
#: includes/class-freemius.php14756, includes/class-freemius.php14758,
|
320 |
+
#: templates/account.php146, templates/debug.php:314
|
321 |
+
msgid "Account"
|
322 |
+
msgstr "Account"
|
323 |
+
|
324 |
+
#: includes/class-freemius.php14769, includes/class-freemius.php14771,
|
325 |
+
#: includes/customizer/class-fs-customizer-support-section.php:60
|
326 |
+
msgid "Contact Us"
|
327 |
+
msgstr "Contacteer Ons"
|
328 |
+
|
329 |
+
#: includes/class-freemius.php14781, includes/class-freemius.php14783,
|
330 |
+
#: includes/class-freemius.php18939, templates/account.php96,
|
331 |
+
#: templates/account/partials/addon.php:37
|
332 |
+
msgid "Add-Ons"
|
333 |
+
msgstr "Uitbreidingen"
|
334 |
+
|
335 |
+
#: includes/class-freemius.php14815, templates/pricing.php:97
|
336 |
+
msgctxt "noun"
|
337 |
+
msgid "Pricing"
|
338 |
+
msgstr "Prijzen"
|
339 |
+
|
340 |
+
#: includes/class-freemius.php15009,
|
341 |
+
#: includes/customizer/class-fs-customizer-support-section.php:67
|
342 |
+
msgid "Support Forum"
|
343 |
+
msgstr "Supportforum"
|
344 |
+
|
345 |
+
#: includes/class-freemius.php:15794
|
346 |
+
msgid "Your email has been successfully verified - you are AWESOME!"
|
347 |
+
msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
|
348 |
+
|
349 |
+
#: includes/class-freemius.php:15795
|
350 |
+
msgctxt "a positive response"
|
351 |
+
msgid "Right on"
|
352 |
+
msgstr "Toppie"
|
353 |
+
|
354 |
+
#: includes/class-freemius.php:16367
|
355 |
+
msgid "Your %s Add-on plan was successfully upgraded."
|
356 |
+
msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
|
357 |
+
|
358 |
+
#: includes/class-freemius.php:16369
|
359 |
+
msgid "%s Add-on was successfully purchased."
|
360 |
+
msgstr "%s Add-on werd succesvol aangekocht."
|
361 |
+
|
362 |
+
#: includes/class-freemius.php:16372
|
363 |
+
msgid "Download the latest version"
|
364 |
+
msgstr "Download de meeste recente versie"
|
365 |
+
|
366 |
+
#: includes/class-freemius.php:16444
|
367 |
+
msgctxt "%1s - plugin title, %2s - API domain"
|
368 |
+
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
369 |
+
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."
|
370 |
+
|
371 |
+
#: includes/class-freemius.php16447, includes/class-freemius.php16862,
|
372 |
+
#: includes/class-freemius.php:16927
|
373 |
+
msgid "Error received from the server:"
|
374 |
+
msgstr "Foutmelding ontvangen van de server:"
|
375 |
+
|
376 |
+
#: includes/class-freemius.php:16457
|
377 |
+
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
378 |
+
msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
|
379 |
+
|
380 |
+
#: includes/class-freemius.php16639, includes/class-freemius.php16867,
|
381 |
+
#: includes/class-freemius.php:16910
|
382 |
+
msgctxt ""
|
383 |
+
msgid "Hmm"
|
384 |
+
msgstr "Hmm"
|
385 |
+
|
386 |
+
#: includes/class-freemius.php:16652
|
387 |
+
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."
|
388 |
+
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."
|
389 |
+
|
390 |
+
#: includes/class-freemius.php16653, templates/account.php98,
|
391 |
+
#: templates/add-ons.php130, templates/account/partials/addon.php:39
|
392 |
+
msgctxt "trial period"
|
393 |
+
msgid "Trial"
|
394 |
+
msgstr "Proefperiode"
|
395 |
+
|
396 |
+
#: includes/class-freemius.php:16658
|
397 |
+
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
398 |
+
msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
|
399 |
+
|
400 |
+
#: includes/class-freemius.php16662, includes/class-freemius.php:16719
|
401 |
+
msgid "Please contact us here"
|
402 |
+
msgstr "Neem hier a.u.b. contact met ons op"
|
403 |
+
|
404 |
+
#: includes/class-freemius.php:16672
|
405 |
+
msgid "Your plan was successfully upgraded."
|
406 |
+
msgstr "Je plan is succesvol geüpgraded."
|
407 |
+
|
408 |
+
#: includes/class-freemius.php:16689
|
409 |
+
msgid "Your plan was successfully changed to %s."
|
410 |
+
msgstr "Je plan is succesvol veranderd naar %s."
|
411 |
+
|
412 |
+
#: includes/class-freemius.php:16705
|
413 |
+
msgid "Your license has expired. You can still continue using the free %s forever."
|
414 |
+
msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
|
415 |
+
|
416 |
+
#: includes/class-freemius.php:16707
|
417 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
418 |
+
msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
|
419 |
+
|
420 |
+
#: includes/class-freemius.php:16715
|
421 |
+
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
422 |
+
msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
|
423 |
+
|
424 |
+
#: includes/class-freemius.php:16728
|
425 |
+
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."
|
426 |
+
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."
|
427 |
+
|
428 |
+
#: includes/class-freemius.php:16751
|
429 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
430 |
+
msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
|
431 |
+
|
432 |
+
#: includes/class-freemius.php:16753
|
433 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
434 |
+
msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
|
435 |
+
|
436 |
+
#: includes/class-freemius.php:16858
|
437 |
+
msgid "It looks like the license could not be activated."
|
438 |
+
msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
|
439 |
+
|
440 |
+
#: includes/class-freemius.php:16888
|
441 |
+
msgid "Your license was successfully activated."
|
442 |
+
msgstr "Je licentie is succesvol geactiveerd."
|
443 |
+
|
444 |
+
#: includes/class-freemius.php:16914
|
445 |
+
msgid "It looks like your site currently doesn't have an active license."
|
446 |
+
msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
|
447 |
+
|
448 |
+
#: includes/class-freemius.php:16926
|
449 |
+
msgid "It looks like the license deactivation failed."
|
450 |
+
msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
|
451 |
+
|
452 |
+
#: includes/class-freemius.php:16954
|
453 |
+
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
454 |
+
msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
|
455 |
+
|
456 |
+
#: includes/class-freemius.php:16955
|
457 |
+
msgid "O.K"
|
458 |
+
msgstr "Oké"
|
459 |
+
|
460 |
+
#: includes/class-freemius.php:17003
|
461 |
+
msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
|
462 |
+
msgstr "Je plan werd succesvol gedowngraded. Je %s plan licentie zal verlopen binnen %s."
|
463 |
+
|
464 |
+
#: includes/class-freemius.php:17013
|
465 |
+
msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
|
466 |
+
msgstr "Het lijkt er op dat we een tijdelijk probleem hebben om je plan te downgraden. Probeer het alsjeblieft nogmaals over enkele minuten."
|
467 |
+
|
468 |
+
#: includes/class-freemius.php:17037
|
469 |
+
msgid "You are already running the %s in a trial mode."
|
470 |
+
msgstr "Je voert de %s reeds uit in proefmodus"
|
471 |
+
|
472 |
+
#: includes/class-freemius.php:17048
|
473 |
+
msgid "You already utilized a trial before."
|
474 |
+
msgstr "U heeft reeds een proefperiode gebruikt."
|
475 |
+
|
476 |
+
#: includes/class-freemius.php:17062
|
477 |
+
msgid "Plan %s do not exist, therefore, can't start a trial."
|
478 |
+
msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
|
479 |
+
|
480 |
+
#: includes/class-freemius.php:17073
|
481 |
+
msgid "Plan %s does not support a trial period."
|
482 |
+
msgstr "Plan %s ondersteunt geen proefperiode."
|
483 |
+
|
484 |
+
#: includes/class-freemius.php:17084
|
485 |
+
msgid "None of the %s's plans supports a trial period."
|
486 |
+
msgstr "Geen van de %s plannen ondersteunt een proefperiode."
|
487 |
+
|
488 |
+
#: includes/class-freemius.php:17134
|
489 |
+
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
490 |
+
msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
|
491 |
+
|
492 |
+
#: includes/class-freemius.php:17185
|
493 |
+
msgid "Your %s free trial was successfully cancelled."
|
494 |
+
msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
|
495 |
+
|
496 |
+
#: includes/class-freemius.php:17190
|
497 |
+
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
498 |
+
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."
|
499 |
+
|
500 |
+
#: includes/class-freemius.php:17474
|
501 |
+
msgid "Version %s was released."
|
502 |
+
msgstr "Versie %s is vrijgegeven."
|
503 |
+
|
504 |
+
#: includes/class-freemius.php:17474
|
505 |
+
msgid "Please download %s."
|
506 |
+
msgstr "A.u.b. %s downloaden."
|
507 |
+
|
508 |
+
#: includes/class-freemius.php:17481
|
509 |
+
msgid "the latest %s version here"
|
510 |
+
msgstr "de meest recente %s versie hier"
|
511 |
+
|
512 |
+
#: includes/class-freemius.php:17486
|
513 |
+
msgid "New"
|
514 |
+
msgstr "Nieuw"
|
515 |
+
|
516 |
+
#: includes/class-freemius.php:17491
|
517 |
+
msgid "Seems like you got the latest release."
|
518 |
+
msgstr "Het lijkt erop dat je de meest recente versie hebt."
|
519 |
+
|
520 |
+
#: includes/class-freemius.php:17492
|
521 |
+
msgid "You are all good!"
|
522 |
+
msgstr "Alles is goed!"
|
523 |
+
|
524 |
+
#: includes/class-freemius.php:17758
|
525 |
+
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
526 |
+
msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
|
527 |
+
|
528 |
+
#: includes/class-freemius.php:17893
|
529 |
+
msgid "Site successfully opted in."
|
530 |
+
msgstr "Site opt-in geslaagd. "
|
531 |
+
|
532 |
+
#: includes/class-freemius.php17894, includes/class-freemius.php:18671
|
533 |
+
msgid "Awesome"
|
534 |
+
msgstr "Geweldig"
|
535 |
+
|
536 |
+
#: includes/class-freemius.php17910, templates/forms/optout.php:32
|
537 |
+
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
538 |
+
msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
|
539 |
+
|
540 |
+
#: includes/class-freemius.php:17911
|
541 |
+
msgid "Thank you!"
|
542 |
+
msgstr "Bedankt!"
|
543 |
+
|
544 |
+
#: includes/class-freemius.php:17918
|
545 |
+
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
546 |
+
msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
|
547 |
+
|
548 |
+
#: includes/class-freemius.php:18033
|
549 |
+
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."
|
550 |
+
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."
|
551 |
+
|
552 |
+
#: includes/class-freemius.php:18039
|
553 |
+
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
554 |
+
msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
|
555 |
+
|
556 |
+
#: includes/class-freemius.php:18044
|
557 |
+
msgid "%s is the new owner of the account."
|
558 |
+
msgstr "%s is de nieuwe eigenaar van het account."
|
559 |
+
|
560 |
+
#: includes/class-freemius.php:18046
|
561 |
+
msgctxt "as congratulations"
|
562 |
+
msgid "Congrats"
|
563 |
+
msgstr "Gefeliciteerd"
|
564 |
+
|
565 |
+
#: includes/class-freemius.php:18066
|
566 |
+
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
567 |
+
msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
|
568 |
+
|
569 |
+
#: includes/class-freemius.php:18067
|
570 |
+
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
571 |
+
msgstr "Als u het eigendom van het %s account wilt overdragen aan %s klik dan op de Eigendom Overdragen knop. "
|
572 |
+
|
573 |
+
#: includes/class-freemius.php:18074
|
574 |
+
msgid "Change Ownership"
|
575 |
+
msgstr "Eigendom Overdragen"
|
576 |
+
|
577 |
+
#: includes/class-freemius.php:18082
|
578 |
+
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
579 |
+
msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
|
580 |
+
|
581 |
+
#: includes/class-freemius.php:18094
|
582 |
+
msgid "Please provide your full name."
|
583 |
+
msgstr "Geef alsjeblieft je volledige naam."
|
584 |
+
|
585 |
+
#: includes/class-freemius.php:18099
|
586 |
+
msgid "Your name was successfully updated."
|
587 |
+
msgstr "Je naam is succesvol bijgewerkt."
|
588 |
+
|
589 |
+
#: includes/class-freemius.php:18160
|
590 |
+
msgid "You have successfully updated your %s."
|
591 |
+
msgstr "Je hebt je %s succesvol geüpdatet."
|
592 |
+
|
593 |
+
#: includes/class-freemius.php:18300
|
594 |
+
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
595 |
+
msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
|
596 |
+
|
597 |
+
#: includes/class-freemius.php:18301
|
598 |
+
msgctxt "advance notice of something that will need attention."
|
599 |
+
msgid "Heads up"
|
600 |
+
msgstr "Aankondiging"
|
601 |
+
|
602 |
+
#: includes/class-freemius.php:18711
|
603 |
+
msgctxt "exclamation"
|
604 |
+
msgid "Hey"
|
605 |
+
msgstr "Hoi"
|
606 |
+
|
607 |
+
#: includes/class-freemius.php:18711
|
608 |
+
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
609 |
+
msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
|
610 |
+
|
611 |
+
#: includes/class-freemius.php:18719
|
612 |
+
msgid "No commitment for %s days - cancel anytime!"
|
613 |
+
msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
|
614 |
+
|
615 |
+
#: includes/class-freemius.php:18720
|
616 |
+
msgid "No credit card required"
|
617 |
+
msgstr "Geen creditcard nodig"
|
618 |
+
|
619 |
+
#: includes/class-freemius.php18727, templates/forms/trial-start.php:53
|
620 |
+
msgctxt "call to action"
|
621 |
+
msgid "Start free trial"
|
622 |
+
msgstr "Start gratis proefperidoe"
|
623 |
+
|
624 |
+
#: includes/class-freemius.php:18804
|
625 |
+
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!"
|
626 |
+
msgstr "Hey, wist je dat %s een affiliate programma heeft? Als je de %s goed vindt dan kan je onze ambassadeur worden en wat cash verdienen!"
|
627 |
+
|
628 |
+
#: includes/class-freemius.php:18813
|
629 |
+
msgid "Learn more"
|
630 |
+
msgstr "Lees meer"
|
631 |
+
|
632 |
+
#: includes/class-freemius.php18963, templates/account.php394,
|
633 |
+
#: templates/account.php497, templates/connect.php169,
|
634 |
+
#: templates/connect.php408, templates/forms/license-activation.php24,
|
635 |
+
#: templates/account/partials/addon.php:230
|
636 |
+
msgid "Activate License"
|
637 |
+
msgstr "Activeer Licentie"
|
638 |
+
|
639 |
+
#: includes/class-freemius.php18964, templates/account.php457,
|
640 |
+
#: templates/account.php496, templates/account/partials/site.php:256
|
641 |
+
msgid "Change License"
|
642 |
+
msgstr "Verander Licentie"
|
643 |
+
|
644 |
+
#: includes/class-freemius.php19046, templates/account/partials/site.php:161
|
645 |
+
msgid "Opt Out"
|
646 |
+
msgstr "Opt Out"
|
647 |
+
|
648 |
+
#: includes/class-freemius.php19048, includes/class-freemius.php19053,
|
649 |
+
#: templates/account/partials/site.php43,
|
650 |
+
#: templates/account/partials/site.php:161
|
651 |
+
msgid "Opt In"
|
652 |
+
msgstr "Opt In"
|
653 |
+
|
654 |
+
#: includes/class-freemius.php:19245
|
655 |
+
msgid "Please follow these steps to complete the upgrade"
|
656 |
+
msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
|
657 |
+
|
658 |
+
#: includes/class-freemius.php:19249
|
659 |
+
msgid "Download the latest %s version"
|
660 |
+
msgstr "Download de meeste recente %s versie"
|
661 |
+
|
662 |
+
#: includes/class-freemius.php:19253
|
663 |
+
msgid "Upload and activate the downloaded version"
|
664 |
+
msgstr "Upload en activeer de gedownloade versie"
|
665 |
+
|
666 |
+
#: includes/class-freemius.php:19255
|
667 |
+
msgid "How to upload and activate?"
|
668 |
+
msgstr "Hoe te uploaden en activeren?"
|
669 |
+
|
670 |
+
#: includes/class-freemius.php:19384
|
671 |
+
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
672 |
+
msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wil activeren."
|
673 |
+
|
674 |
+
#: includes/class-freemius.php:19545
|
675 |
+
msgid "Auto installation only works for opted-in users."
|
676 |
+
msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
|
677 |
+
|
678 |
+
#: includes/class-freemius.php19555, includes/class-freemius.php19588,
|
679 |
+
#: includes/class-fs-plugin-updater.php713,
|
680 |
+
#: includes/class-fs-plugin-updater.php:727
|
681 |
+
msgid "Invalid module ID."
|
682 |
+
msgstr "Ongeldige Module-ID"
|
683 |
+
|
684 |
+
#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
|
685 |
+
msgid "Premium version already active."
|
686 |
+
msgstr "Premium versie reeds actief."
|
687 |
+
|
688 |
+
#: includes/class-freemius.php:19571
|
689 |
+
msgid "You do not have a valid license to access the premium version."
|
690 |
+
msgstr "Je hebt geen geldige licentie voor de premium versie."
|
691 |
+
|
692 |
+
#: includes/class-freemius.php:19578
|
693 |
+
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
694 |
+
msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
|
695 |
+
|
696 |
+
#: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
|
697 |
+
msgid "Premium add-on version already installed."
|
698 |
+
msgstr "Premium add-on versie is reeds geïnstalleerd."
|
699 |
+
|
700 |
+
#: includes/class-freemius.php:19941
|
701 |
+
msgid "View paid features"
|
702 |
+
msgstr "Bekijk betaalde features"
|
703 |
+
|
704 |
+
#: includes/class-freemius.php:20251
|
705 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
706 |
+
msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
|
707 |
+
|
708 |
+
#: includes/class-freemius.php:20252
|
709 |
+
msgid "Thank you so much for using %s!"
|
710 |
+
msgstr "Hartelijk bedankt voor het gebruik van %s!"
|
711 |
+
|
712 |
+
#: includes/class-freemius.php:20258
|
713 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
714 |
+
msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
|
715 |
+
|
716 |
+
#: includes/class-freemius.php:20262
|
717 |
+
msgid "Thank you so much for using our products!"
|
718 |
+
msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
|
719 |
+
|
720 |
+
#: includes/class-freemius.php:20263
|
721 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
722 |
+
msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
|
723 |
+
|
724 |
+
#: includes/class-freemius.php:20282
|
725 |
+
msgid "%s and its add-ons"
|
726 |
+
msgstr "%sen bijbehorende uitbreidingen"
|
727 |
+
|
728 |
+
#: includes/class-freemius.php:20291
|
729 |
+
msgid "Products"
|
730 |
+
msgstr "Producten"
|
731 |
+
|
732 |
+
#: includes/class-freemius.php20298, templates/connect.php:259
|
733 |
+
msgid "Yes"
|
734 |
+
msgstr "Ja"
|
735 |
+
|
736 |
+
#: includes/class-freemius.php20299, templates/connect.php:260
|
737 |
+
msgid "send me security & feature updates, educational content and offers."
|
738 |
+
msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
|
739 |
+
|
740 |
+
#: includes/class-freemius.php20300, templates/connect.php:265
|
741 |
+
msgid "No"
|
742 |
+
msgstr "Nee"
|
743 |
+
|
744 |
+
#: includes/class-freemius.php20302, templates/connect.php:267
|
745 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
746 |
+
msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
|
747 |
+
|
748 |
+
#: includes/class-freemius.php:20312
|
749 |
+
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 🙂"
|
750 |
+
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 🙂"
|
751 |
+
|
752 |
+
#: includes/class-freemius.php20314, templates/connect.php:274
|
753 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
754 |
+
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:"
|
755 |
+
|
756 |
+
#: includes/class-freemius.php:20598
|
757 |
+
msgid "License key is empty."
|
758 |
+
msgstr "Licentiesleutel is leeg."
|
759 |
+
|
760 |
+
#: includes/class-fs-plugin-updater.php184,
|
761 |
+
#: includes/class-fs-plugin-updater.php:219
|
762 |
+
msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
|
763 |
+
msgstr "%sVernieuw je licentie nu%s voor toegang tot versie %s beveiliging & feature updates en support."
|
764 |
+
|
765 |
+
#: includes/class-fs-plugin-updater.php:776
|
766 |
+
msgid "Installing plugin: %s"
|
767 |
+
msgstr "Installeren van plug-in: %s"
|
768 |
+
|
769 |
+
#: includes/class-fs-plugin-updater.php:817
|
770 |
+
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
771 |
+
msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
|
772 |
+
|
773 |
+
#: includes/class-fs-plugin-updater.php:923
|
774 |
+
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
775 |
+
msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
|
776 |
+
|
777 |
+
#: includes/fs-plugin-info-dialog.php336,
|
778 |
+
#: templates/account/partials/addon.php:287
|
779 |
+
msgctxt "verb"
|
780 |
+
msgid "Purchase"
|
781 |
+
msgstr "Koop"
|
782 |
+
|
783 |
+
#: includes/fs-plugin-info-dialog.php:339
|
784 |
+
msgid "Start my free %s"
|
785 |
+
msgstr "Start mijn gratis %s"
|
786 |
+
|
787 |
+
#: includes/fs-plugin-info-dialog.php:380
|
788 |
+
msgid "Install Free Version Now"
|
789 |
+
msgstr "Installer Gratis Versie Nu"
|
790 |
+
|
791 |
+
#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
|
792 |
+
#: templates/account/partials/addon.php267,
|
793 |
+
#: templates/account/partials/addon.php:317
|
794 |
+
msgid "Install Now"
|
795 |
+
msgstr "Installeer Nu"
|
796 |
+
|
797 |
+
#: includes/fs-plugin-info-dialog.php:392
|
798 |
+
msgctxt "as download latest version"
|
799 |
+
msgid "Download Latest Free Version"
|
800 |
+
msgstr "Download Nieuwste Gratis Versie"
|
801 |
+
|
802 |
+
#: includes/fs-plugin-info-dialog.php393, templates/account.php80,
|
803 |
+
#: templates/account/partials/addon.php:21
|
804 |
+
msgctxt "as download latest version"
|
805 |
+
msgid "Download Latest"
|
806 |
+
msgstr "Download Nieuwste"
|
807 |
+
|
808 |
+
#: includes/fs-plugin-info-dialog.php:403
|
809 |
+
msgid "Install Free Version Update Now"
|
810 |
+
msgstr "Installeer Gratis Versie Update Nu"
|
811 |
+
|
812 |
+
#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
|
813 |
+
msgid "Install Update Now"
|
814 |
+
msgstr "Installeer Update Nu"
|
815 |
+
|
816 |
+
#: includes/fs-plugin-info-dialog.php:415
|
817 |
+
msgid "Newer Free Version (%s) Installed"
|
818 |
+
msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd"
|
819 |
+
|
820 |
+
#: includes/fs-plugin-info-dialog.php:416
|
821 |
+
msgid "Newer Version (%s) Installed"
|
822 |
+
msgstr "Nieuwere Versie (%s) Geïnstalleerd"
|
823 |
+
|
824 |
+
#: includes/fs-plugin-info-dialog.php:424
|
825 |
+
msgid "Latest Free Version Installed"
|
826 |
+
msgstr "Nieuwste Gratis Versie Geïnstalleerd"
|
827 |
+
|
828 |
+
#: includes/fs-plugin-info-dialog.php:425
|
829 |
+
msgid "Latest Version Installed"
|
830 |
+
msgstr "Meest Recente Versie Geïnstalleerd"
|
831 |
+
|
832 |
+
#: includes/fs-plugin-info-dialog.php:580
|
833 |
+
msgctxt "Plugin installer section title"
|
834 |
+
msgid "Description"
|
835 |
+
msgstr "Beschrijving"
|
836 |
+
|
837 |
+
#: includes/fs-plugin-info-dialog.php:581
|
838 |
+
msgctxt "Plugin installer section title"
|
839 |
+
msgid "Installation"
|
840 |
+
msgstr "Installatie"
|
841 |
+
|
842 |
+
#: includes/fs-plugin-info-dialog.php:582
|
843 |
+
msgctxt "Plugin installer section title"
|
844 |
+
msgid "FAQ"
|
845 |
+
msgstr "Veelgestelde Vragen"
|
846 |
+
|
847 |
+
#: includes/fs-plugin-info-dialog.php583,
|
848 |
+
#: templates/plugin-info/description.php:55
|
849 |
+
msgid "Screenshots"
|
850 |
+
msgstr "Schermafbeeldingen"
|
851 |
+
|
852 |
+
#: includes/fs-plugin-info-dialog.php:584
|
853 |
+
msgctxt "Plugin installer section title"
|
854 |
+
msgid "Changelog"
|
855 |
+
msgstr "Wijzigingen Log"
|
856 |
+
|
857 |
+
#: includes/fs-plugin-info-dialog.php:585
|
858 |
+
msgctxt "Plugin installer section title"
|
859 |
+
msgid "Reviews"
|
860 |
+
msgstr "Reviews"
|
861 |
+
|
862 |
+
#: includes/fs-plugin-info-dialog.php:586
|
863 |
+
msgctxt "Plugin installer section title"
|
864 |
+
msgid "Other Notes"
|
865 |
+
msgstr "Andere Notities"
|
866 |
+
|
867 |
+
#: includes/fs-plugin-info-dialog.php:601
|
868 |
+
msgctxt "Plugin installer section title"
|
869 |
+
msgid "Features & Pricing"
|
870 |
+
msgstr "Features & Prijzen"
|
871 |
+
|
872 |
+
#: includes/fs-plugin-info-dialog.php:611
|
873 |
+
msgid "Plugin Install"
|
874 |
+
msgstr "Plug-in Installatie"
|
875 |
+
|
876 |
+
#: includes/fs-plugin-info-dialog.php:683
|
877 |
+
msgctxt "e.g. Professional Plan"
|
878 |
+
msgid "%s Plan"
|
879 |
+
msgstr "%s Plan"
|
880 |
+
|
881 |
+
#: includes/fs-plugin-info-dialog.php:709
|
882 |
+
msgctxt "e.g. the best product"
|
883 |
+
msgid "Best"
|
884 |
+
msgstr "Beste"
|
885 |
+
|
886 |
+
#: includes/fs-plugin-info-dialog.php715,
|
887 |
+
#: includes/fs-plugin-info-dialog.php:735
|
888 |
+
msgctxt "as every month"
|
889 |
+
msgid "Monthly"
|
890 |
+
msgstr "Maandelijks"
|
891 |
+
|
892 |
+
#: includes/fs-plugin-info-dialog.php:718
|
893 |
+
msgctxt "as once a year"
|
894 |
+
msgid "Annual"
|
895 |
+
msgstr "Jaarlijks"
|
896 |
+
|
897 |
+
#: includes/fs-plugin-info-dialog.php:721
|
898 |
+
msgid "Lifetime"
|
899 |
+
msgstr "Levenslang"
|
900 |
+
|
901 |
+
#: includes/fs-plugin-info-dialog.php735,
|
902 |
+
#: includes/fs-plugin-info-dialog.php737,
|
903 |
+
#: includes/fs-plugin-info-dialog.php:739
|
904 |
+
msgctxt "e.g. billed monthly"
|
905 |
+
msgid "Billed %s"
|
906 |
+
msgstr "%s gefactureerd "
|
907 |
+
|
908 |
+
#: includes/fs-plugin-info-dialog.php:737
|
909 |
+
msgctxt "as once a year"
|
910 |
+
msgid "Annually"
|
911 |
+
msgstr "Jaarlijks"
|
912 |
+
|
913 |
+
#: includes/fs-plugin-info-dialog.php:739
|
914 |
+
msgctxt "as once a year"
|
915 |
+
msgid "Once"
|
916 |
+
msgstr "Eenmalig"
|
917 |
+
|
918 |
+
#: includes/fs-plugin-info-dialog.php:745
|
919 |
+
msgid "Single Site License"
|
920 |
+
msgstr "Enkele Site Licentie"
|
921 |
+
|
922 |
+
#: includes/fs-plugin-info-dialog.php:747
|
923 |
+
msgid "Unlimited Licenses"
|
924 |
+
msgstr "Onbeperkte Licenties"
|
925 |
+
|
926 |
+
#: includes/fs-plugin-info-dialog.php:749
|
927 |
+
msgid "Up to %s Sites"
|
928 |
+
msgstr "Tot %s Sites"
|
929 |
+
|
930 |
+
#: includes/fs-plugin-info-dialog.php759,
|
931 |
+
#: templates/plugin-info/features.php:82
|
932 |
+
msgctxt "as monthly period"
|
933 |
+
msgid "mo"
|
934 |
+
msgstr "mnd"
|
935 |
+
|
936 |
+
#: includes/fs-plugin-info-dialog.php766,
|
937 |
+
#: templates/plugin-info/features.php:80
|
938 |
+
msgctxt "as annual period"
|
939 |
+
msgid "year"
|
940 |
+
msgstr "jaar"
|
941 |
+
|
942 |
+
#: includes/fs-plugin-info-dialog.php:820
|
943 |
+
msgctxt "noun"
|
944 |
+
msgid "Price"
|
945 |
+
msgstr "Prijs"
|
946 |
+
|
947 |
+
#: includes/fs-plugin-info-dialog.php:868
|
948 |
+
msgid "Save %s"
|
949 |
+
msgstr "Bespaar %s"
|
950 |
+
|
951 |
+
#: includes/fs-plugin-info-dialog.php:878
|
952 |
+
msgid "No commitment for %s - cancel anytime"
|
953 |
+
msgstr "Geen verplichting voor %s - opzeggen kan altijd"
|
954 |
+
|
955 |
+
#: includes/fs-plugin-info-dialog.php:881
|
956 |
+
msgid "After your free %s, pay as little as %s"
|
957 |
+
msgstr "Na uw gratis %s, betaal slechts %s"
|
958 |
+
|
959 |
+
#: includes/fs-plugin-info-dialog.php:892
|
960 |
+
msgid "Details"
|
961 |
+
msgstr "Details"
|
962 |
+
|
963 |
+
#: includes/fs-plugin-info-dialog.php896, templates/account.php87,
|
964 |
+
#: templates/debug.php191, templates/debug.php228, templates/debug.php442,
|
965 |
+
#: templates/account/partials/addon.php:28
|
966 |
+
msgctxt "product version"
|
967 |
+
msgid "Version"
|
968 |
+
msgstr "Versie"
|
969 |
+
|
970 |
+
#: includes/fs-plugin-info-dialog.php:903
|
971 |
+
msgctxt "as the plugin author"
|
972 |
+
msgid "Author"
|
973 |
+
msgstr "Auteur"
|
974 |
+
|
975 |
+
#: includes/fs-plugin-info-dialog.php:910
|
976 |
+
msgid "Last Updated"
|
977 |
+
msgstr "Laatst Geüpdatet"
|
978 |
+
|
979 |
+
#: includes/fs-plugin-info-dialog.php:915
|
980 |
+
msgctxt "x-ago"
|
981 |
+
msgid "%s ago"
|
982 |
+
msgstr "%s geleden"
|
983 |
+
|
984 |
+
#: includes/fs-plugin-info-dialog.php:924
|
985 |
+
msgid "Requires WordPress Version"
|
986 |
+
msgstr "Vereiste WordPress Version"
|
987 |
+
|
988 |
+
#: includes/fs-plugin-info-dialog.php:925
|
989 |
+
msgid "%s or higher"
|
990 |
+
msgstr "%s of hoger"
|
991 |
+
|
992 |
+
#: includes/fs-plugin-info-dialog.php:932
|
993 |
+
msgid "Compatible up to"
|
994 |
+
msgstr "Compatible tot"
|
995 |
+
|
996 |
+
#: includes/fs-plugin-info-dialog.php:940
|
997 |
+
msgid "Downloaded"
|
998 |
+
msgstr "Gedownload"
|
999 |
+
|
1000 |
+
#: includes/fs-plugin-info-dialog.php:944
|
1001 |
+
msgid "%s time"
|
1002 |
+
msgstr "%s tijd"
|
1003 |
+
|
1004 |
+
#: includes/fs-plugin-info-dialog.php:946
|
1005 |
+
msgid "%s times"
|
1006 |
+
msgstr "%s tijden"
|
1007 |
+
|
1008 |
+
#: includes/fs-plugin-info-dialog.php:956
|
1009 |
+
msgid "WordPress.org Plugin Page"
|
1010 |
+
msgstr "WordPress.org Plug-in Pagina"
|
1011 |
+
|
1012 |
+
#: includes/fs-plugin-info-dialog.php:964
|
1013 |
+
msgid "Plugin Homepage"
|
1014 |
+
msgstr "Plug-in Homepage"
|
1015 |
+
|
1016 |
+
#: includes/fs-plugin-info-dialog.php972,
|
1017 |
+
#: includes/fs-plugin-info-dialog.php:1054
|
1018 |
+
msgid "Donate to this plugin"
|
1019 |
+
msgstr "Doneer aan deze plug-in"
|
1020 |
+
|
1021 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1022 |
+
msgid "Average Rating"
|
1023 |
+
msgstr "Gemiddelde Beoordeling"
|
1024 |
+
|
1025 |
+
#: includes/fs-plugin-info-dialog.php:986
|
1026 |
+
msgid "based on %s"
|
1027 |
+
msgstr "gebaseerd op %s"
|
1028 |
+
|
1029 |
+
#: includes/fs-plugin-info-dialog.php:990
|
1030 |
+
msgid "%s rating"
|
1031 |
+
msgstr "%s beoordeling"
|
1032 |
+
|
1033 |
+
#: includes/fs-plugin-info-dialog.php:992
|
1034 |
+
msgid "%s ratings"
|
1035 |
+
msgstr "%s beoordelingen"
|
1036 |
+
|
1037 |
+
#: includes/fs-plugin-info-dialog.php:1007
|
1038 |
+
msgid "%s star"
|
1039 |
+
msgstr "%s ster"
|
1040 |
+
|
1041 |
+
#: includes/fs-plugin-info-dialog.php:1009
|
1042 |
+
msgid "%s stars"
|
1043 |
+
msgstr "%s sterren"
|
1044 |
+
|
1045 |
+
#: includes/fs-plugin-info-dialog.php:1020
|
1046 |
+
msgid "Click to see reviews that provided a rating of %s"
|
1047 |
+
msgstr "Klik om reviews te bekijken met een beoordeling van%s"
|
1048 |
+
|
1049 |
+
#: includes/fs-plugin-info-dialog.php:1033
|
1050 |
+
msgid "Contributors"
|
1051 |
+
msgstr "Medewerkers"
|
1052 |
+
|
1053 |
+
#: includes/fs-plugin-info-dialog.php1062,
|
1054 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1055 |
+
msgid "Warning"
|
1056 |
+
msgstr "Waarschuwing"
|
1057 |
+
|
1058 |
+
#: includes/fs-plugin-info-dialog.php:1062
|
1059 |
+
msgid "This plugin has not been tested with your current version of WordPress."
|
1060 |
+
msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. "
|
1061 |
+
|
1062 |
+
#: includes/fs-plugin-info-dialog.php:1064
|
1063 |
+
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1064 |
+
msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie."
|
1065 |
+
|
1066 |
+
#: includes/fs-plugin-info-dialog.php:1083
|
1067 |
+
msgid "Paid add-on must be deployed to Freemius."
|
1068 |
+
msgstr "Betaalde add-on moet op Freemius geplaatst worden."
|
1069 |
+
|
1070 |
+
#: includes/fs-plugin-info-dialog.php:1084
|
1071 |
+
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1072 |
+
msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden."
|
1073 |
+
|
1074 |
+
#: templates/account.php81, templates/account/partials/addon.php22,
|
1075 |
+
#: templates/account/partials/site.php:295
|
1076 |
+
msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1077 |
+
msgstr "Het downgraden van je plan zal direct leiden tot het stopzetten van alle toekomstige terugkerende betalingen en je %splan zal binnen %s verlopen. "
|
1078 |
+
|
1079 |
+
#: templates/account.php82, templates/account/partials/addon.php:23
|
1080 |
+
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1081 |
+
msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?"
|
1082 |
+
|
1083 |
+
#: templates/account.php83, templates/account/partials/addon.php24,
|
1084 |
+
#: templates/account/partials/site.php:296
|
1085 |
+
msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
|
1086 |
+
msgstr "Je kunt nog steeds genieten van alle %s features maar je zal geen toegang meer hebben tot %s updates en support."
|
1087 |
+
|
1088 |
+
#: templates/account.php84, templates/account/partials/addon.php25,
|
1089 |
+
#: templates/account/partials/site.php:297
|
1090 |
+
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1091 |
+
msgstr "Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis versie, maar je zal GEEN toegang meer hebben tot de %sfeatures."
|
1092 |
+
|
1093 |
+
#. translators: %s: Plan title (e.g. "Professional")
|
1094 |
+
#: templates/account.php86,
|
1095 |
+
#: templates/account/partials/activate-license-button.php31,
|
1096 |
+
#: templates/account/partials/addon.php:27
|
1097 |
+
msgid "Activate %s Plan"
|
1098 |
+
msgstr "Activeer %s Plan"
|
1099 |
+
|
1100 |
+
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1101 |
+
#: templates/account.php89, templates/account/partials/addon.php30,
|
1102 |
+
#: templates/account/partials/site.php:275
|
1103 |
+
msgid "Auto renews in %s"
|
1104 |
+
msgstr "Auto hernieuwd over %s"
|
1105 |
+
|
1106 |
+
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1107 |
+
#: templates/account.php91, templates/account/partials/addon.php32,
|
1108 |
+
#: templates/account/partials/site.php:277
|
1109 |
+
msgid "Expires in %s"
|
1110 |
+
msgstr "Verloopt over %s"
|
1111 |
+
|
1112 |
+
#: templates/account.php92, templates/account/partials/addon.php:33
|
1113 |
+
msgctxt "as synchronize license"
|
1114 |
+
msgid "Sync License"
|
1115 |
+
msgstr "Sync Licentie"
|
1116 |
+
|
1117 |
+
#: templates/account.php93, templates/account/partials/addon.php:34
|
1118 |
+
msgid "Cancel Trial"
|
1119 |
+
msgstr "Proefperiode Opzeggen"
|
1120 |
+
|
1121 |
+
#: templates/account.php94, templates/account/partials/addon.php:35
|
1122 |
+
msgid "Change Plan"
|
1123 |
+
msgstr "Wijzig Plan"
|
1124 |
+
|
1125 |
+
#: templates/account.php95, templates/account/partials/addon.php:36
|
1126 |
+
msgctxt "verb"
|
1127 |
+
msgid "Upgrade"
|
1128 |
+
msgstr "Upgrade"
|
1129 |
+
|
1130 |
+
#: templates/account.php97, templates/account/partials/addon.php38,
|
1131 |
+
#: templates/account/partials/site.php:298
|
1132 |
+
msgctxt "verb"
|
1133 |
+
msgid "Downgrade"
|
1134 |
+
msgstr "Downgrade"
|
1135 |
+
|
1136 |
+
#: templates/account.php99, templates/add-ons.php126,
|
1137 |
+
#: templates/plugin-info/features.php72,
|
1138 |
+
#: templates/account/partials/addon.php40,
|
1139 |
+
#: templates/account/partials/site.php:31
|
1140 |
+
msgid "Free"
|
1141 |
+
msgstr "Gratis"
|
1142 |
+
|
1143 |
+
#: templates/account.php100, templates/account/partials/addon.php:41
|
1144 |
+
msgid "Activate"
|
1145 |
+
msgstr "Activeer"
|
1146 |
+
|
1147 |
+
#: templates/account.php101, templates/debug.php361,
|
1148 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1149 |
+
#: templates/account/partials/addon.php:42
|
1150 |
+
msgctxt "as product pricing plan"
|
1151 |
+
msgid "Plan"
|
1152 |
+
msgstr "Plan"
|
1153 |
+
|
1154 |
+
#: templates/account.php:154
|
1155 |
+
msgid "Free Trial"
|
1156 |
+
msgstr "Gratis Proefperiode"
|
1157 |
+
|
1158 |
+
#: templates/account.php:165
|
1159 |
+
msgid "Account Details"
|
1160 |
+
msgstr "Accountgegevens"
|
1161 |
+
|
1162 |
+
#: templates/account.php:175
|
1163 |
+
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?"
|
1164 |
+
msgstr "Verwijdering van het account zal automatisch je %s licentie deactiveren zodat je die op andere sites kan gebruiken. Als je tevens je terugkerende betalingen wilt stopzetten, klik dan op de 'Annuleer' knop en 'Downgrade' je account eerst. Weet je zeker dat je wilt doorgaan met de verwijdering?"
|
1165 |
+
|
1166 |
+
#: templates/account.php:177
|
1167 |
+
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?"
|
1168 |
+
msgstr "Verwijdering is niet tijdelijk. Verwijder alleen als je deze %s niet langer wilt gebruiken. Weet je zeker dat u wilt doorgaan met de verwijdering?"
|
1169 |
+
|
1170 |
+
#: templates/account.php:180
|
1171 |
+
msgid "Delete Account"
|
1172 |
+
msgstr "Verwijder Account"
|
1173 |
+
|
1174 |
+
#: templates/account.php192, templates/account/partials/addon.php155,
|
1175 |
+
#: templates/account/partials/deactivate-license-button.php:35
|
1176 |
+
msgid "Deactivate License"
|
1177 |
+
msgstr "Deactiveer Licentie"
|
1178 |
+
|
1179 |
+
#: templates/account.php:210
|
1180 |
+
msgid "Are you sure you want to proceed?"
|
1181 |
+
msgstr "Weet je zeker dat je wilt doorgaan?"
|
1182 |
+
|
1183 |
+
#: templates/account.php210, templates/account/partials/addon.php:177
|
1184 |
+
msgid "Cancel Subscription"
|
1185 |
+
msgstr "Abonnement Opzeggen"
|
1186 |
+
|
1187 |
+
#: templates/account.php:239
|
1188 |
+
msgctxt "as synchronize"
|
1189 |
+
msgid "Sync"
|
1190 |
+
msgstr "Sync"
|
1191 |
+
|
1192 |
+
#: templates/account.php253, templates/debug.php:477
|
1193 |
+
msgid "Name"
|
1194 |
+
msgstr "Naam"
|
1195 |
+
|
1196 |
+
#: templates/account.php259, templates/debug.php:478
|
1197 |
+
msgid "Email"
|
1198 |
+
msgstr "E-mail"
|
1199 |
+
|
1200 |
+
#: templates/account.php266, templates/debug.php360, templates/debug.php:516
|
1201 |
+
msgid "User ID"
|
1202 |
+
msgstr "Gebruikers ID"
|
1203 |
+
|
1204 |
+
#: templates/account.php:274
|
1205 |
+
msgid "Site ID"
|
1206 |
+
msgstr "Site ID"
|
1207 |
+
|
1208 |
+
#: templates/account.php:277
|
1209 |
+
msgid "No ID"
|
1210 |
+
msgstr "Geen ID"
|
1211 |
+
|
1212 |
+
#: templates/account.php282, templates/debug.php233, templates/debug.php362,
|
1213 |
+
#: templates/debug.php443, templates/debug.php480,
|
1214 |
+
#: templates/account/partials/site.php:219
|
1215 |
+
msgid "Public Key"
|
1216 |
+
msgstr "Publieke Sleutel"
|
1217 |
+
|
1218 |
+
#: templates/account.php288, templates/debug.php363, templates/debug.php444,
|
1219 |
+
#: templates/debug.php481, templates/account/partials/site.php:231
|
1220 |
+
msgid "Secret Key"
|
1221 |
+
msgstr "Geheime Sleutel"
|
1222 |
+
|
1223 |
+
#: templates/account.php:291
|
1224 |
+
msgctxt "as secret encryption key missing"
|
1225 |
+
msgid "No Secret"
|
1226 |
+
msgstr "Geen Geheim"
|
1227 |
+
|
1228 |
+
#: templates/account.php310, templates/account/partials/site.php112,
|
1229 |
+
#: templates/account/partials/site.php:114
|
1230 |
+
msgid "Trial"
|
1231 |
+
msgstr "Proefperiode"
|
1232 |
+
|
1233 |
+
#: templates/account.php329, templates/debug.php521,
|
1234 |
+
#: templates/account/partials/site.php:248
|
1235 |
+
msgid "License Key"
|
1236 |
+
msgstr "Licentiesleutel"
|
1237 |
+
|
1238 |
+
#: templates/account.php:359
|
1239 |
+
msgid "not verified"
|
1240 |
+
msgstr "niet geverifieerd"
|
1241 |
+
|
1242 |
+
#: templates/account.php:416
|
1243 |
+
msgid "Premium version"
|
1244 |
+
msgstr "Premium versie"
|
1245 |
+
|
1246 |
+
#: templates/account.php:418
|
1247 |
+
msgid "Free version"
|
1248 |
+
msgstr "Gratis versie"
|
1249 |
+
|
1250 |
+
#: templates/account.php:430
|
1251 |
+
msgid "Verify Email"
|
1252 |
+
msgstr "Verifieer E-mail"
|
1253 |
+
|
1254 |
+
#: templates/account.php:441
|
1255 |
+
msgid "Download %s Version"
|
1256 |
+
msgstr "Download %s Versie"
|
1257 |
+
|
1258 |
+
#: templates/account.php455, templates/account.php636,
|
1259 |
+
#: templates/account/partials/site.php237,
|
1260 |
+
#: templates/account/partials/site.php:255
|
1261 |
+
msgctxt "verb"
|
1262 |
+
msgid "Show"
|
1263 |
+
msgstr "Toon"
|
1264 |
+
|
1265 |
+
#: templates/account.php:469
|
1266 |
+
msgid "What is your %s?"
|
1267 |
+
msgstr "Wat is je %s?"
|
1268 |
+
|
1269 |
+
#: templates/account.php477, templates/account/billing.php:27
|
1270 |
+
msgctxt "verb"
|
1271 |
+
msgid "Edit"
|
1272 |
+
msgstr "Bewerk"
|
1273 |
+
|
1274 |
+
#: templates/account.php:490
|
1275 |
+
msgid "Sites"
|
1276 |
+
msgstr "Sites"
|
1277 |
+
|
1278 |
+
#: templates/account.php:501
|
1279 |
+
msgid "Search by address"
|
1280 |
+
msgstr "Zoek op adres"
|
1281 |
+
|
1282 |
+
#: templates/account.php510, templates/account.php558, templates/debug.php226,
|
1283 |
+
#: templates/debug.php354, templates/debug.php439, templates/debug.php476,
|
1284 |
+
#: templates/debug.php514, templates/debug.php587,
|
1285 |
+
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1286 |
+
msgid "ID"
|
1287 |
+
msgstr "ID"
|
1288 |
+
|
1289 |
+
#: templates/account.php511, templates/debug.php:357
|
1290 |
+
msgid "Address"
|
1291 |
+
msgstr "Adres"
|
1292 |
+
|
1293 |
+
#: templates/account.php:512
|
1294 |
+
msgid "License"
|
1295 |
+
msgstr "Licentie"
|
1296 |
+
|
1297 |
+
#: templates/account.php:513
|
1298 |
+
msgid "Plan"
|
1299 |
+
msgstr "Plan"
|
1300 |
+
|
1301 |
+
#: templates/account.php:561
|
1302 |
+
msgctxt "as software license"
|
1303 |
+
msgid "License"
|
1304 |
+
msgstr "Licentie"
|
1305 |
+
|
1306 |
+
#: templates/account.php:630
|
1307 |
+
msgctxt "verb"
|
1308 |
+
msgid "Hide"
|
1309 |
+
msgstr "Verberg"
|
1310 |
+
|
1311 |
+
#: templates/account.php:665
|
1312 |
+
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?"
|
1313 |
+
msgstr "Deactiveren van je licentie zal alle premium features blokkeren, maar geeft je de mogelijkheid de licentie op een andere site te activeren. Weet je zeker dat je wilt doorgaan?"
|
1314 |
+
|
1315 |
+
#: templates/add-ons.php:36
|
1316 |
+
msgid "Add Ons for %s"
|
1317 |
+
msgstr "Add-ons voor %s"
|
1318 |
+
|
1319 |
+
#: templates/add-ons.php:44
|
1320 |
+
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."
|
1321 |
+
msgstr "We konden de add-ons lijst niet laden. Dat is waarschijnlijk een probleem aan onze kant, kom alsjeblieft over enkele minuten terug."
|
1322 |
+
|
1323 |
+
#: templates/add-ons.php:135
|
1324 |
+
msgid "View details"
|
1325 |
+
msgstr "Bekijk details"
|
1326 |
+
|
1327 |
+
#: templates/admin-notice.php13, templates/forms/license-activation.php208,
|
1328 |
+
#: templates/forms/resend-key.php:77
|
1329 |
+
msgctxt "as close a window"
|
1330 |
+
msgid "Dismiss"
|
1331 |
+
msgstr "Afsluiten"
|
1332 |
+
|
1333 |
+
#: templates/auto-installation.php:45
|
1334 |
+
msgid "%s sec"
|
1335 |
+
msgstr "%s sec"
|
1336 |
+
|
1337 |
+
#: templates/auto-installation.php:83
|
1338 |
+
msgid "Automatic Installation"
|
1339 |
+
msgstr "Automatische Installatie"
|
1340 |
+
|
1341 |
+
#: templates/auto-installation.php:93
|
1342 |
+
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."
|
1343 |
+
msgstr "Een geautomatiseerde download en installatie van %s (betaalde versie) van %s zal starten binnen %s. Als je dit handmatig wil doen, klik dan nu op de annuleer knop."
|
1344 |
+
|
1345 |
+
#: templates/auto-installation.php:104
|
1346 |
+
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."
|
1347 |
+
msgstr "Het installatieproces is gestart en kan enkele minuten duren om te voltooien. Wacht alsjeblieft totdat dat gebeurt is - deze pagina niet verversen."
|
1348 |
+
|
1349 |
+
#: templates/auto-installation.php:109
|
1350 |
+
msgid "Cancel Installation"
|
1351 |
+
msgstr "Annuleer Installatie"
|
1352 |
+
|
1353 |
+
#: templates/checkout.php:172
|
1354 |
+
msgid "Checkout"
|
1355 |
+
msgstr "Afrekenen"
|
1356 |
+
|
1357 |
+
#: templates/checkout.php:172
|
1358 |
+
msgid "PCI compliant"
|
1359 |
+
msgstr "PCI-compliant"
|
1360 |
+
|
1361 |
+
#. translators: %s: name (e.g. Hey John,)
|
1362 |
+
#: templates/connect.php:110
|
1363 |
+
msgctxt "greeting"
|
1364 |
+
msgid "Hey %s,"
|
1365 |
+
msgstr "Hoi %s,"
|
1366 |
+
|
1367 |
+
#: templates/connect.php:152
|
1368 |
+
msgid "Allow & Continue"
|
1369 |
+
msgstr "Toestaan & Ga Verder"
|
1370 |
+
|
1371 |
+
#: templates/connect.php:156
|
1372 |
+
msgid "Re-send activation email"
|
1373 |
+
msgstr "Activatiemail opnieuw versturen"
|
1374 |
+
|
1375 |
+
#: templates/connect.php:160
|
1376 |
+
msgid "Thanks %s!"
|
1377 |
+
msgstr "Bedankt %s!"
|
1378 |
+
|
1379 |
+
#: templates/connect.php170, templates/forms/license-activation.php:43
|
1380 |
+
msgid "Agree & Activate License"
|
1381 |
+
msgstr "Akkoord & Activeer Licentie"
|
1382 |
+
|
1383 |
+
#: templates/connect.php:179
|
1384 |
+
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1385 |
+
msgstr "Bedankt voor het aanschaffen van %s! Om te beginnen, voer alsjeblieft je licentiesleutel in:"
|
1386 |
+
|
1387 |
+
#: templates/connect.php:186
|
1388 |
+
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."
|
1389 |
+
msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging en feature update notificaties, educatieve content, aanbiedingen, en niet-gevoelige diagnostische tracking met %4$s."
|
1390 |
+
|
1391 |
+
#: templates/connect.php:187
|
1392 |
+
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1393 |
+
msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging en feature update notificaties, en niet-ge
|