FooGallery – Image Gallery WordPress Plugin - Version 1.6.11

Version Description

  • Fix : Random thumbnails not loading in FireFox
  • Update : FooGallery client side 1.1.8
Download this release

Release Info

Developer bradvin
Plugin Icon 128x128 FooGallery – Image Gallery WordPress Plugin
Version 1.6.11
Comparing to
See all releases

Code changes from version 1.6.7 to 1.6.11

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: bradvin, steveush, fooplugins, freemius
3
  Donate link: http://fooplugins.com
4
  Tags: gallery, image gallery, photo gallery, responsive, album, media gallery, masonry gallery, portfolio, justified gallery, video gallery, photography, youtube gallery
5
  Requires at least: 3.9
6
- Tested up to: 5.0
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -143,9 +143,21 @@ Update now to get all the latest features, bug fixes and improvements!
143
 
144
  == Changelog ==
145
 
 
 
 
 
 
 
 
 
 
 
 
146
  = 1.6.7 =
147
  * New : added new filter for allowed post types that foogallery can be attached to
148
  * New : added loop setting for image viewer gallery template
 
149
  * Fix : Beaver Builder javascript error while editing a page
150
  * Fix : album shortcodes not working in some page builders
151
  * Fix : attach gallery to post when gutenberg block is included
3
  Donate link: http://fooplugins.com
4
  Tags: gallery, image gallery, photo gallery, responsive, album, media gallery, masonry gallery, portfolio, justified gallery, video gallery, photography, youtube gallery
5
  Requires at least: 3.9
6
+ Tested up to: 5.0.2
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
143
 
144
  == Changelog ==
145
 
146
+ = 1.6.11 =
147
+ * Fix : Random thumbnails not loading in FireFox
148
+ * Update : FooGallery client side 1.1.8
149
+
150
+ = 1.6.10 =
151
+ * Fix : Safari bug with lazy loading
152
+ * Fix : Thumbs not loading with paging
153
+ * Fix : duplicate caption title in some scenarios
154
+ * Fix : clicking html in caption was not loading lightbox
155
+ * Update : FooGallery client side 1.1.7
156
+
157
  = 1.6.7 =
158
  * New : added new filter for allowed post types that foogallery can be attached to
159
  * New : added loop setting for image viewer gallery template
160
+ * New : override sorting in shortcode by providing "sort" attribute
161
  * Fix : Beaver Builder javascript error while editing a page
162
  * Fix : album shortcodes not working in some page builders
163
  * Fix : attach gallery to post when gutenberg block is included
extensions/default-templates/shared/js/foogallery.js CHANGED
@@ -5478,7 +5478,7 @@
5478
  self.$caption = $("<figcaption/>").attr(attr.elem).on("click.foogallery", {self: self}, self.onCaptionClick);
5479
  attr.inner["class"] = cls.inner;
5480
  var $inner = $("<div/>").attr(attr.inner).appendTo(self.$caption);
5481
- var hasTitle = !_is.empty(self.caption), hasDesc = !_is.empty(self.description);
5482
  if (hasTitle || hasDesc) {
5483
  attr.title["class"] = cls.title;
5484
  attr.description["class"] = cls.description;
@@ -5683,9 +5683,15 @@
5683
  var cls = self.cls, img = self.$image.get(0), placeholder = img.src;
5684
  self.isLoading = true;
5685
  self.$el.removeClass(cls.idle).removeClass(cls.loaded).removeClass(cls.error).addClass(cls.loading);
 
 
 
 
 
 
 
 
5686
  return self._load = $.Deferred(function (def) {
5687
- // if Firefox reset to empty src or else the onload and onerror callbacks are executed immediately
5688
- if (!_is.undef(window.InstallTrigger)) img.src = "";
5689
  img.onload = function () {
5690
  img.onload = img.onerror = null;
5691
  self.isLoading = false;
@@ -5707,7 +5713,9 @@
5707
  def.reject(self);
5708
  };
5709
  // set everything in motion by setting the src
5710
- img.src = self.getThumbUrl();
 
 
5711
  }).promise();
5712
  },
5713
  /**
@@ -5819,7 +5827,7 @@
5819
  */
5820
  onCaptionClick: function (e) {
5821
  var self = e.data.self;
5822
- if ($(e.target).is(self.sel.caption.all) && self.$anchor.length > 0) {
5823
  self.$anchor.get(0).click();
5824
  }
5825
  }
5478
  self.$caption = $("<figcaption/>").attr(attr.elem).on("click.foogallery", {self: self}, self.onCaptionClick);
5479
  attr.inner["class"] = cls.inner;
5480
  var $inner = $("<div/>").attr(attr.inner).appendTo(self.$caption);
5481
+ var hasTitle = self.showCaptionTitle && !_is.empty(self.caption), hasDesc = self.showCaptionDescription && !_is.empty(self.description);
5482
  if (hasTitle || hasDesc) {
5483
  attr.title["class"] = cls.title;
5484
  attr.description["class"] = cls.description;
5683
  var cls = self.cls, img = self.$image.get(0), placeholder = img.src;
5684
  self.isLoading = true;
5685
  self.$el.removeClass(cls.idle).removeClass(cls.loaded).removeClass(cls.error).addClass(cls.loading);
5686
+ if (self.isParsed && img.src != self._placeholder && img.complete){
5687
+ self.isLoading = false;
5688
+ self.isLoaded = true;
5689
+ self.$el.removeClass(cls.loading).addClass(cls.loaded);
5690
+ self.unfix();
5691
+ self.tmpl.raise("loaded-item", [self]);
5692
+ return self._load = _fn.resolveWith(self);
5693
+ }
5694
  return self._load = $.Deferred(function (def) {
 
 
5695
  img.onload = function () {
5696
  img.onload = img.onerror = null;
5697
  self.isLoading = false;
5713
  def.reject(self);
5714
  };
5715
  // set everything in motion by setting the src
5716
+ setTimeout(function(){
5717
+ img.src = self.getThumbUrl();
5718
+ });
5719
  }).promise();
5720
  },
5721
  /**
5827
  */
5828
  onCaptionClick: function (e) {
5829
  var self = e.data.self;
5830
+ if (self.$anchor.length > 0) {
5831
  self.$anchor.get(0).click();
5832
  }
5833
  }
extensions/default-templates/shared/js/foogallery.min.js CHANGED
@@ -1,11 +1,11 @@
1
  /*
2
  * FooGallery - The Most Intuitive and Extensible Gallery Creation and Management Tool Ever Created for WordPress
3
- * @version 1.1.5
4
  * @link
5
  * @copyright Steven Usher & Brad Vincent 2015
6
  * @license Released under the GPLv3 license.
7
  */
8
 
9
  !function(a,b){b.$=a}(jQuery,window.FooGallery=window.FooGallery||{}),function(a){if(!a)return void console.warn("jQuery must be included in the page prior to the FooGallery.utils library.");var b={$:a,version:"0.0.8"};b.versionCompare=function(a,b){function c(a){for(var b=a.split("."),c=0,d=b.length;c<d;c++)b[c]=parseInt(b[c]),isNaN(b[c])&&(b[c]=0);return b}if(!/[\d.]/.test(a)||!/[\d.]/.test(b))return NaN;for(var d=c(a),e=c(b);d.length<e.length;)d.push(0);for(;e.length<d.length;)e.push(0);for(var f=0;f<d.length;++f){if(e.length==f)return 1;if(d[f]!=e[f])return d[f]>e[f]?1:-1}return d.length!=e.length?-1:0},!function(){try{return!!window.FooGallery.utils}catch(a){return!1}}()?window.FooGallery.utils=b:b.versionCompare(b.version,window.FooGallery.utils.version)>0?(console.warn("An older version of FooGallery.utils ("+window.FooGallery.utils.version+") already exists in the page, version "+b.version+" will override it."),window.FooGallery.utils=b):console.warn("A newer version of FooGallery.utils ("+window.FooGallery.utils.version+") already exists in the page, version "+b.version+" will not register itself.")}(jQuery),function(a,b){"0.0.8"===b.version&&(b.is={},b.is.array=function(a){return"[object Array]"===Object.prototype.toString.call(a)},b.is.boolean=function(a){return"[object Boolean]"===Object.prototype.toString.call(a)},b.is.element=function(a){return"object"==typeof HTMLElement?a instanceof HTMLElement:!!a&&"object"==typeof a&&null!==a&&1===a.nodeType&&"string"==typeof a.nodeName},b.is.empty=function(a){if(b.is.undef(a)||null===a)return!0;if(b.is.number(a)&&0==a)return!0;if(b.is.boolean(a)&&!1===a)return!0;if(b.is.string(a)&&0===a.length)return!0;if(b.is.array(a)&&0===a.length)return!0;if(b.is.jq(a)&&0===a.length)return!0;if(b.is.hash(a)){for(var c in a)if(a.hasOwnProperty(c))return!1;return!0}return!1},b.is.error=function(a){return"[object Error]"===Object.prototype.toString.call(a)},b.is.fn=function(a){return a===window.alert||"[object Function]"===Object.prototype.toString.call(a)},b.is.hash=function(a){return b.is.object(a)&&a.constructor===Object&&!a.nodeType&&!a.setInterval},b.is.jq=function(c){return!b.is.undef(a)&&c instanceof a},b.is.number=function(a){return"[object Number]"===Object.prototype.toString.call(a)&&!isNaN(a)},b.is.object=function(a){return"[object Object]"===Object.prototype.toString.call(a)&&!b.is.undef(a)&&null!==a},b.is.promise=function(a){return b.is.object(a)&&b.is.fn(a.then)&&b.is.fn(a.promise)},b.is.size=function(a){return!!(b.is.string(a)&&!b.is.empty(a)||b.is.number(a))&&/^(auto|none|(?:[\d\.]*)+?(?:%|px|mm|q|cm|in|pt|pc|em|ex|ch|rem|vh|vw|vmin|vmax)?)$/.test(a)},b.is.string=function(a){return"[object String]"===Object.prototype.toString.call(a)},b.is.undef=function(a){return void 0===a})}(FooGallery.utils.$,FooGallery.utils),function(a,b,c){if("0.0.8"===b.version){b.fn={};var d=Function.prototype.toString;b.fn.CONTAINS_SUPER=/xyz/.test(d.call(function(){xyz}))?/\b_super\b/:/.*/,b.fn.addOrOverride=function(a,e,f){if(c.object(a)&&c.string(e)&&!c.empty(e)&&c.fn(f)){var g=a[e],h=c.fn(g)&&b.fn.CONTAINS_SUPER.test(d.call(f));a[e]=h?function(a,b){return function(){var c=this._super;this._super=a;var d=b.apply(this,arguments);return this._super=c,d}}(g,f):f}},b.fn.apply=function(a,b){function d(){return a.apply(this,b)}return b=c.array(b)?b:[],d.prototype=a.prototype,new d},b.fn.arg2arr=function(a){return Array.prototype.slice.call(a)},b.fn.check=function(d,e,f,g){function h(a){return function(){return a.apply(d,arguments)}}return f=c.fn(f)?f:a.noop,d=c.object(d)?d:window,e=c.string(e)?b.fn.fetch(e,g):e,h(c.fn(e)?e:f)},b.fn.fetch=function(b,d){return!c.string(b)||c.empty(b)?null:(d=c.object(d)?d:window,a.each(b.split("."),function(a,b){if(!d[b])return!1;d=d[b]}),c.fn(d)?d:null)},b.fn.enqueue=function(d,e,f,g){function h(a,b){try{return n.push(a),b.apply(a,i)}catch(a){return j.reject(a,n),j}}var i=b.fn.arg2arr(arguments),j=a.Deferred(),k=a.Deferred(),l=k.promise(),m=[],n=[],o=!0;return d=i.shift(),e=i.shift(),a.each(d,function(a,d){c.fn(d[e])&&(l=l.then(function(){if(!o){var a=b.fn.arg2arr(arguments);m.push(a)}return o=!1,h(d,d[e])}))}),l.then(function(){if(!o){var a=b.fn.arg2arr(arguments);m.push(a)}o=!1,j.resolve(m)}),l.fail(function(){var a=b.fn.arg2arr(arguments);a.push(n),j.reject.apply(j,a)}),k.resolve(),j.promise()},b.fn.when=function(b){if(!c.array(b)||c.empty(b))return a.when();for(var d=a.Deferred(),e=[],f=b.length,g=0;g<b.length;g++)b[g].then(function(a){e.push(a)}).always(function(){--f||d.resolve(e)});return d.promise()},b.fn.rejectWith=function(c,d){var e=a.Deferred(),f=b.fn.arg2arr(arguments);return e.reject.apply(e,f).promise()},b.fn.resolveWith=function(c,d){var e=a.Deferred(),f=b.fn.arg2arr(arguments);return e.resolve.apply(e,f).promise()},b.fn.resolved=a.Deferred().resolve().promise(),b.fn.rejected=a.Deferred().reject().promise()}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b){if("0.0.8"===a.version){a.url={};var c=document.createElement("a");a.url.parts=function(a){return c.href=a,{hash:c.hash,host:c.host,hostname:c.hostname,href:c.href,origin:c.origin,pathname:c.pathname,port:c.port,protocol:c.protocol,search:c.search}},a.url.full=function(a){return!b.string(a)||b.empty(a)?null:(c.href=a,c.href)},a.url.param=function(a,c,d){if(!b.string(a)||!b.string(c)||b.empty(c))return a;var e,f,g,h;return b.undef(d)?(e=new RegExp("[?|&]"+c+"=([^&;]+?)(&|#|;|$)"),f=e.exec(a)||[,""],g=f[1].replace(/\+/g,"%20"),b.string(g)&&!b.empty(g)?decodeURIComponent(g):null):(""===d||null===d?(e=new RegExp("^([^#]*?)(([^#]*)&)?"+c+"(=[^&#]*)?(&|#|$)"),g=a.replace(e,"$1$3$5").replace(/^([^#]*)((\?)&|\?(#|$))/,"$1$3$4")):(e=new RegExp("([?&])"+c+"[^&]*"),h=c+"="+encodeURIComponent(d),(g=a.replace(e,"$1"+h))!==a||e.test(g)||(g+=(-1!==g.indexOf("?")?"&":"?")+h)),g)}}}(FooGallery.utils,FooGallery.utils.is),function(a,b,c){"0.0.8"===a.version&&(a.str={},a.str.camel=function(a){return b.empty(a)?a:a.toUpperCase()===a?a.toLowerCase():a.replace(/^([A-Z])|[-\s_]+(\w)/g,function(a,c,d){return b.string(d)?d.toUpperCase():c.toLowerCase()})},a.str.contains=function(a,c,d){return!(!b.string(a)||b.empty(a)||!b.string(c)||b.empty(c))&&(c.length<=a.length&&-1!==(d?a.toUpperCase().indexOf(c.toUpperCase()):a.indexOf(c)))},a.str.containsWord=function(a,c,d){if(!b.string(a)||b.empty(a)||!b.string(c)||b.empty(c)||a.length<c.length)return!1;for(var e=a.split(/\W/),f=0,g=e.length;f<g;f++)if(d?e[f].toUpperCase()==c.toUpperCase():e[f]==c)return!0;return!1},a.str.endsWith=function(a,c){return!b.string(a)||b.empty(a)||!b.string(c)||b.empty(c)?a==c:a.slice(a.length-c.length)==c},a.str.escapeRegExp=function(a){return b.empty(a)?a:a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")},a.str.fnv1a=function(a){if(!b.string(a)||b.empty(a))return null;var c,d,e=2166136261;for(c=0,d=a.length;c<d;c++)e^=a.charCodeAt(c),e+=(e<<1)+(e<<4)+(e<<7)+(e<<8)+(e<<24);return e>>>0},a.str.from=function(c,d){return!b.string(c)||b.empty(c)||!b.string(d)||b.empty(d)?null:a.str.contains(c,d)?c.substring(c.indexOf(d)+d.length):null},a.str.join=function(d,e,f){if(!b.string(d)||!b.string(e))return null;var g=c.arg2arr(arguments);d=g.shift();var h,i,j=g.shift();for(h=0,i=g.length;h<i;h++)e=g[h],b.empty(e)||(a.str.endsWith(j,d)&&(j=j.slice(0,j.length-d.length)),a.str.startsWith(e,d)&&(e=e.slice(d.length)),j+=d+e);return j},a.str.startsWith=function(a,c){return!b.empty(a)&&!b.empty(c)&&a.slice(0,c.length)==c},a.str.until=function(c,d){return b.empty(c)||b.empty(d)?c:a.str.contains(c,d)?c.substring(0,c.indexOf(d)):c},a.str.format=function(a,d,e){var f=c.arg2arr(arguments);if(a=f.shift(),b.empty(a)||b.empty(f))return a;1===f.length&&(b.array(f[0])||b.object(f[0]))&&(f=f[0]);for(var g in f)a=a.replace(new RegExp("\\{"+g+"\\}","gi"),f[g]);return a})}(FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn),function(a,b,c,d,e){if("0.0.8"===b.version){b.obj={};var f=function(){};b.obj.create=function(a){if(!c.object(a))throw TypeError("Argument must be an object");f.prototype=a;var b=new f;return f.prototype=null,b},b.obj.extend=function(e,f,g){e=c.object(e)?e:{};var h=d.arg2arr(arguments);return h.shift(),a.each(h,function(a,c){b.obj.merge(e,c)}),e},b.obj.merge=function(a,d){a=c.hash(a)?a:{},d=c.hash(d)?d:{};for(var e in d)d.hasOwnProperty(e)&&(c.hash(d[e])?(a[e]=c.hash(a[e])?a[e]:{},b.obj.merge(a[e],d[e])):c.array(d[e])?a[e]=d[e].slice():a[e]=d[e]);return a},b.obj.mergeValid=function(d,e,f,g){if(!c.hash(f)||!c.hash(e))return d;e=c.hash(e)?e:{},g=c.hash(g)?g:{};var h,i,j;for(h in e)e.hasOwnProperty(h)&&c.fn(e[h])&&(i=c.array(g[h])?g[h]:c.string(g[h])?[g[h]]:[h],a.each(i,function(a,g){if(j=b.obj.prop(f,g),!c.undef(j))return e[h](j)?(b.obj.prop(d,h,j),!1):void 0}));return d},b.obj.prop=function(b,d,f){if(c.object(b)&&!c.empty(d)){var g,h;if(c.undef(f))return e.contains(d,".")?(g=d.split("."),h=g.length-1,a.each(g,function(a,d){if(a===h)f=b[d];else{if(!c.hash(b[d]))return!1;b=b[d]}})):c.undef(b[d])||(f=b[d]),f;e.contains(d,".")?(g=d.split("."),h=g.length-1,a.each(g,function(a,d){a===h?b[d]=f:b=c.hash(b[d])?b[d]:b[d]={}})):c.undef(b[d])||(b[d]=f)}}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.str),function(a,b,c){if("0.0.8"===b.version){b.ready=function(a){function c(){try{a.call(window,b.$)}catch(a){console.error(a)}}(Function("/*@cc_on return true@*/")()?"complete"===document.readyState:"loading"!==document.readyState)?c():document.addEventListener("DOMContentLoaded",c,!1)};var d=0;b.uniqueId=function(a,b){var e=a.attr("id");return c.empty(e)&&(b=c.string(b)&&!c.empty(b)?b:"uid-",e=b+ ++d,a.attr("id",e).data("__uniqueId__",!0)),e},b.removeUniqueId=function(a){a.data("__uniqueId__")&&a.removeAttr("id").removeData("__uniqueId__")}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c){if("0.0.8"===b.version){b.transition={};var d=document.createElement("div");b.transition.supported=function(a){var b=a.style;return c.string(b.transition)||c.string(b.WebkitTransition)||c.string(b.MozTransition)||c.string(b.msTransition)||c.string(b.OTransition)}(d),b.transition.end=function(a){var b=a.style;return c.string(b.transition)?"transitionend":c.string(b.WebkitTransition)?"webkitTransitionEnd":c.string(b.MozTransition)?"transitionend":c.string(b.msTransition)?"msTransitionEnd":c.string(b.OTransition)?"oTransitionEnd":null}(d),b.transition.duration=function(a,b){if(b=c.number(b)?b:0,!c.jq(a))return b;var d=a.css("transition-duration");if(/^([\d\.]*)+?(ms|s)$/i.test(d)){var e=d.match(/^([\d\.]*)+?(ms|s)$/i),f=parseFloat(e[1]);return"s"===e[2].toLowerCase()&&(f*=1e3),f}return b},b.transition.start=function(d,e,f,g){var h=a.Deferred();if(d=d.first(),b.transition.supported){var i=d.data("transition_safety");c.hash(i)&&c.number(i.timer)&&(clearTimeout(i.timer),d.removeData("transition_safety").off(b.transition.end+".utils"),i.deferred.reject()),g=c.number(g)?g:b.transition.duration(d)+50,i={deferred:h,timer:setTimeout(function(){d.removeData("transition_safety").off(b.transition.end+".utils"),h.resolve()},g)},d.data("transition_safety",i),d.on(b.transition.end+".utils",function(a){d.is(a.target)&&(clearTimeout(i.timer),d.removeData("transition_safety").off(b.transition.end+".utils"),h.resolve())})}return setTimeout(function(){c.fn(e)?e.apply(d.get(0),[d]):d.toggleClass(e,f),b.transition.supported||h.resolve()},20),h.promise()}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d,e){"0.0.8"===b.version&&(b.Class=function(){},b.Class.extend=function(a){function f(){if(!c.fn(this.construct))throw new SyntaxError('FooGallery.utils.Class objects must be constructed with the "new" keyword.');this.construct.apply(this,arguments)}a=c.hash(a)?a:{};var g=d.create(this.prototype);for(var h in a)a.hasOwnProperty(h)&&e.addOrOverride(g,h,a[h]);return g.construct=c.fn(g.construct)?g.construct:function(){},f.prototype=g,f.prototype.constructor=c.fn(g.__ctor__)?g.__ctor__:f,f.extend=b.Class.extend,f.override=b.Class.override,f},b.Class.override=function(a,b){e.addOrOverride(this.prototype,a,b)})}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.obj,FooGallery.utils.fn),function(a,b,c){if("0.0.8"===b.version){b.Bounds=b.Class.extend({construct:function(){var a=this;a.top=0,a.right=0,a.bottom=0,a.left=0,a.width=0,a.height=0},inflate:function(a){var b=this;return c.number(a)&&(b.top-=a,b.right+=a,b.bottom+=a,b.left-=a,b.width+=2*a,b.height+=2*a),b},intersects:function(a){var b=this;return b.left<=a.right&&a.left<=b.right&&b.top<=a.bottom&&a.top<=b.bottom}});var d;b.getViewportBounds=function(c){d||(d=a(window));var e=new b.Bounds;return e.top=d.scrollTop(),e.left=d.scrollLeft(),e.width=d.width(),e.height=d.height(),e.right=e.left+e.width,e.bottom=e.top+e.height,e.inflate(c),e},b.getElementBounds=function(d){c.jq(d)||(d=a(d));var e=new b.Bounds;if(0!==d.length){var f=d.offset();e.top=f.top,e.left=f.left,e.width=d.width(),e.height=d.height()}return e.right=e.left+e.width,e.bottom=e.top+e.height,e}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d){"0.0.8"===b.version&&(b.Factory=b.Class.extend({construct:function(){this.registered={}},contains:function(a){return!c.undef(this.registered[a])},load:function(b,e,f){var g,h,i=this,j=d.arg2arr(arguments),k=[],l=[];b=j.shift()||{};for(g in i.registered)if(i.registered.hasOwnProperty(g)){var m=i.registered[g];b.hasOwnProperty(g)&&(h=b[g],c.string(h)&&(h=d.fetch(b[g])),c.fn(h)&&(m={name:g,klass:h,priority:i.registered[g].priority})),k.push(m)}for(g in b)b.hasOwnProperty(g)&&!i.registered.hasOwnProperty(g)&&(h=b[g],c.string(h)&&(h=d.fetch(b[g])),c.fn(h)&&k.push({name:g,klass:h,priority:0}));return k.sort(function(a,b){return b.priority-a.priority}),a.each(k,function(a,b){c.fn(b.klass)&&l.push(d.apply(b.klass,j))}),l},make:function(a,b,e){var f,g=this,h=d.arg2arr(arguments);return a=h.shift(),f=g.registered[a],c.hash(f)&&c.fn(f.klass)?d.apply(f.klass,h):null},names:function(b){b=!!c.boolean(b)&&b;var d,e=[];if(b){var f=[];for(d in this.registered)this.registered.hasOwnProperty(d)&&f.push(this.registered[d]);f.sort(function(a,b){return b.priority-a.priority}),a.each(f,function(a,b){e.push(b.name)})}else for(d in this.registered)this.registered.hasOwnProperty(d)&&e.push(d);return e},register:function(a,b,d){if(!c.string(a)||c.empty(a)||!c.fn(b))return!1;d=c.number(d)?d:0;var e=this.registered[a];return this.registered[a]={name:a,klass:b,priority:c.undef(e)?d:e.priority},!0}}))}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn),function(a,b,c){if("0.0.8"===a.version){var d=!1;try{d=!!window.localStorage}catch(a){d=!1}a.Debugger=a.Class.extend({construct:function(a){this.key=a,this.enabled=!!d&&!!localStorage.getItem(this.key)},enable:function(){d&&(this.enabled=!0,localStorage.setItem(this.key,this.enabled))},disable:function(){d&&(this.enabled=!1,localStorage.removeItem(this.key))},log:function(a,c){this.enabled&&console.log.apply(console,b.arg2arr(arguments))},logf:function(a,d,e){if(this.enabled){var f=b.arg2arr(arguments);a=f.shift(),d=f.shift(),f.unshift(c.format(a,d)),this.log.apply(this,f)}}})}}(FooGallery.utils,FooGallery.utils.fn,FooGallery.utils.str),function(a,b,c){"0.0.8"===b.version&&(b.Throttle=b.Class.extend({construct:function(a){this.id=null,this.active=!1,this.idle=c.number(a)?a:0},limit:function(a){if(c.fn(a)){this.clear();var b=this;this.active=!0,this.id=setTimeout(function(){b.active=!1,b.id=null,a()},this.idle)}},clear:function(){c.number(this.id)&&(clearTimeout(this.id),this.active=!1,this.id=null)}}))}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d,e){b.debug=new c.Debugger("__FooGallery__"),c.selectify=function(b){if(d.empty(b))return null;if(d.hash(b)){var e,f={};for(var g in b)b.hasOwnProperty(g)&&(e=c.selectify(b[g]))&&(f[g]=e);return f}return d.string(b)||d.array(b)?(d.string(b)&&(b=[b]),a.map(b,function(a){return d.string(a)?"."+a.split(/\s/g).join("."):null}).join(",")):null},b.emptyImage="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",b.dataTemplate="__FooGallery__",b.dataItem="__FooGalleryItem__",b.init=function(a,c){return b.template.make(a,c).initialize()},b.initAll=function(c){return e.when(a(".foogallery").map(function(a,d){return b.init(c,d)}).get())},b.parseSrc=function(b,c,e,f,g,h){if(!d.string(b))return null;if(!d.string(f))return b;var i=a.map(f.replace(/(\s[\d.]+[whx]),/g,"$1 @,@ ").split(" @,@ "),function(a){return{url:/^\s*(\S*)/.exec(a)[1],w:parseFloat((/\S\s+(\d+)w/.exec(a)||[0,1/0])[1]),h:parseFloat((/\S\s+(\d+)h/.exec(a)||[0,1/0])[1]),x:parseFloat((/\S\s+([\d.]+)x/.exec(a)||[0,1])[1])}});if(!i.length)return b;i.unshift({url:b,w:i[0].w!==1/0&&i[0].h===1/0?c:1/0,h:i[0].h!==1/0&&i[0].w===1/0?e:1/0,x:1});var j,k=window.devicePixelRatio||1,l={w:g*k,h:h*k,x:k};for(j in l)l.hasOwnProperty(j)&&(i=a.grep(i,function(a,b){return function(c){return c[a]>=l[a]||c[a]===b}}(j,Math.max.apply(null,a.map(i,function(a){return a[j]})))));for(j in l)l.hasOwnProperty(j)&&(i=a.grep(i,function(a,b){return function(c){return c[a]===b}}(j,Math.min.apply(null,a.map(i,function(a){return a[j]})))));return i[0].url},a.fn.foogallery=function(c,e){return this.each(function(f,g){if(d.string(c)){var h=a.data(g,b.dataTemplate);if(h instanceof b.Template)switch(c){case"layout":return void h.layout();case"destroy":return void h.destroy()}}else b.template.make(c,g).initialize().then(function(a){d.fn(e)&&e(a)})})}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn),function(a,b,c,d,e){var f="__FooGallerySwipe__",g="ontouchstart"in window,h=window.navigator.msPointerEnabled&&!window.navigator.pointerEnabled&&!g,i=(window.navigator.pointerEnabled||window.navigator.msPointerEnabled)&&!g,j=g||i;b.Swipe=c.Class.extend({construct:function(b,c){var d=this,f=".fgswipe";d.$el=a(b),d.opt=e.extend({threshold:20,allowPageScroll:!1,swipe:a.noop,data:{}},c),d.active=!1,d.startPoint=null,d.endPoint=null,d.events={start:(j?i?h?"MSPointerDown":"pointerdown":"touchstart":"mousedown")+f,move:(j?i?h?"MSPointerMove":"pointermove":"touchmove":"mousemove")+f,end:(j?i?h?"MSPointerUp":"pointerup":"touchend":"mouseup")+f,leave:(j?i?"mouseleave":null:"mouseleave")+f}},init:function(){var a=this;a.$el.on(a.events.start,{self:a},a.onStart),a.$el.on(a.events.move,{self:a},a.onMove),a.$el.on(a.events.end,{self:a},a.onEnd),d.string(a.events.leave)&&a.$el.on(a.events.leave,{self:a},a.onEnd),a.$el.data(f,a)},destroy:function(){var a=this;a.$el.off(a.events.start,a.onStart),a.$el.off(a.events.move,a.onMove),a.$el.off(a.events.end,a.onEnd),d.string(a.events.leave)&&a.$el.off(a.events.leave,a.onEnd),a.$el.removeData(f)},getAngle:function(a,b){var c=Math.atan2(a.x-b.x,a.y-b.y),d=Math.round(180*c/Math.PI);return 360-(d<0?360-Math.abs(d):d)},getDistance:function(a,b){var c=b.x-a.x,d=b.y-a.y;return c*=c,d*=d,Math.sqrt(c+d)},getDirection:function(a,b){var c=this,d=c.getAngle(a,b);return d>337.5||d<=22.5?"N":d>22.5&&d<=67.5?"NE":d>67.5&&d<=112.5?"E":d>112.5&&d<=157.5?"SE":d>157.5&&d<=202.5?"S":d>202.5&&d<=247.5?"SW":d>247.5&&d<=292.5?"W":d>292.5&&d<=337.5?"NW":"NONE"},getPoint:function(a){var b;return j&&!d.empty(b=a.originalEvent.touches||a.touches)?{x:b[0].pageX,y:b[0].pageY}:d.number(a.pageX)&&d.number(a.pageY)?{x:a.pageX,y:a.pageY}:null},getOffset:function(a){var b=this,c=b.$el.offset();return{left:a.x-c.left,top:a.y-c.top}},onStart:function(a){var b=a.data.self,c=b.getPoint(a);d.empty(c)||(b.active=!0,b.startPoint=b.endPoint=c)},onMove:function(a){var b=a.data.self,c=b.getPoint(a);b.active&&!d.empty(c)&&(b.endPoint=c,b.opt.allowPageScroll||a.preventDefault())},onEnd:function(a){var b=a.data.self;if(b.active){b.active=!1;var c={startPoint:b.startPoint,endPoint:b.endPoint,startOffset:b.getOffset(b.startPoint),endOffset:b.getOffset(b.endPoint),angle:b.getAngle(b.startPoint,b.endPoint),distance:b.getDistance(b.startPoint,b.endPoint),direction:b.getDirection(b.startPoint,b.endPoint)};if(b.opt.threshold>0&&c.distance<b.opt.threshold)return;b.opt.swipe.apply(this,[c,b.opt.data]),b.startPoint=null,b.endPoint=null}}}),a.fn.fgswipe=function(c){return this.each(function(){var e=a(this),g=e.data(f);if(g instanceof b.Swipe){if(d.string(c)&&d.fn(g[c]))return void g[c]();g.destroy()}d.hash(c)&&(g=new b.Swipe(this,c),g.init())})}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.obj),function(a,b,c,d,e,f){b.TemplateFactory=c.Factory.extend({construct:function(){this.registered={}},register:function(a,b,c,e,f,g){var h=this,i=h._super(a,b,g);if(i){var j=h.registered;j[a].opt=d.hash(c)?c:{},j[a].cls=d.hash(e)?e:{},j[a].il8n=d.hash(f)?f:{}}return i},make:function(b,c){c=d.jq(c)?c:a(c),b=f.extend({},b,c.data("foogallery"));var e=this,g=e.type(b,c);return e.contains(g)?(b=e.options(g,b),e._super(g,b,c)):null},type:function(b,e){e=d.jq(e)?e:a(e);var f=this,g=d.hash(b)&&d.hash(b)&&d.string(b.type)&&f.contains(b.type)?b.type:"core";if("core"===g&&e.length>0)for(var h=f.registered,i=f.names(!0),j=0,k=i.length;j<k;j++)if(h.hasOwnProperty(i[j])){var l=i[j],m=h[l].cls;if(d.string(m.container)){var n=c.selectify(m.container);if(e.is(n)){g=i[j];break}}}return g},configure:function(a,b,c,d){var e=this;if(e.contains(a)){var g=e.registered;f.extend(g[a].opt,b),f.extend(g[a].cls,c),f.extend(g[a].il8n,d)}},options:function(a,c){c=f.extend({type:a},c);var e=this,g=e.registered,h=g.core.opt,i=g.core.cls,j=g.core.il8n;return d.hash(c.cls)||(c.cls={}),d.hash(c.il8n)||(c.il8n={}),d.undef(b.filtering)||(c=b.filtering.merge(c)),d.undef(b.paging)||(c=b.paging.merge(c)),"core"!==a&&e.contains(a)?(c=f.extend({},h,g[a].opt,c),c.cls=f.extend({},i,g[a].cls,c.cls),c.il8n=f.extend({},j,g[a].il8n,c.il8n)):(c=f.extend({},h,c),c.cls=f.extend({},i,c.cls),c.il8n=f.extend({},j,c.il8n)),c}}),b.template=new b.TemplateFactory}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d,e){a.PagingFactory=b.Factory.extend({construct:function(){this.registered={}},register:function(a,b,d,e,f,g,h){var i=this,j=i._super(a,b,h);if(j){var k=i.registered;k[a].ctrl=c.fn(d)?d:null,k[a].opt=c.hash(e)?e:{},k[a].cls=c.hash(f)?f:{},k[a].il8n=c.hash(g)?g:{}}return j},type:function(a){var b,d=this;return c.hash(a)&&c.hash(b=a.paging)&&c.string(b.type)&&d.contains(b.type)?b.type:null},merge:function(a){a=e.extend({},a);var b=this,d=b.type(a),f=b.registered,g=f.default.opt,h=f.default.cls,i=f.default.il8n,j=c.hash(a.paging)?a.paging:{},k=c.hash(a.cls)&&c.hash(a.cls.paging)?e.extend({},a.cls.paging):{},l=c.hash(a.il8n)&&c.hash(a.il8n.paging)?e.extend({},a.il8n.paging):{};return c.hash(a.cls)||(a.cls={}),c.hash(a.il8n)||(a.il8n={}),"default"!==d&&b.contains(d)?(a.paging=e.extend({},g,f[d].opt,j,{type:d}),a.cls=e.extend(a.cls,{paging:h},{paging:f[d].cls},{paging:k}),a.il8n=e.extend(a.il8n,{paging:i},{paging:f[d].il8n},{paging:l})):(a.paging=e.extend({},g,j,{type:d}),a.cls=e.extend(a.cls,{paging:h},{paging:k}),a.il8n=e.extend(a.il8n,{paging:i},{paging:l})),a},configure:function(a,b,c,d){var f=this;if(f.contains(a)){var g=f.registered;e.extend(g[a].opt,b),e.extend(g[a].cls,c),e.extend(g[a].il8n,d)}},hasCtrl:function(a){var b=this,d=b.registered[a];return c.hash(d)&&c.fn(d.ctrl)},makeCtrl:function(a,b,d,e){var f=this,g=f.registered[a];return c.hash(g)&&c.fn(g.ctrl)?new g.ctrl(b,d,e):null}}),a.paging=new a.PagingFactory}(FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d,e,f){var g=0;b.Template=c.Class.extend({construct:function(e,f){var h=this;h.namespace=".foogallery-"+ ++g,h.$el=d.jq(f)?f:a(f),h.opt=e,h.template=e.template,h.id=h.$el.prop("id")||e.id,h.cls=e.cls,h.il8n=e.il8n,h.sel=c.selectify(h.cls),h.items=b.components.make("items",h),h.pages=d.undef(b.paging)?null:b.paging.make(e.paging.type,h),h.filter=d.undef(b.filtering)?null:b.filtering.make(e.filtering.type,h),h.state=b.components.make("state",h),h._initialize=null,h.initializing=!1,h.initialized=!1,h.destroying=!1,h.destroyed=!1,h._undo={classes:"",style:"",create:!1,children:!1}},initialize:function(f){var g=this;return d.promise(g._initialize)?g._initialize:(f=d.jq(f)?f:a(f),g._initialize=a.Deferred(function(h){if(g.initializing=!0,0===f.length&&0===g.$el.parent().length)return void h.reject("A parent element is required.");0===g.$el.length&&(g.$el=g.create(),g._undo.create=!0),f.length>0&&g.$el.appendTo(f);var i,j=a.Deferred(),k=j.promise();g.$el.length>0&&(i=g.$el.data(b.dataTemplate))instanceof b.Template?k=k.then(function(){return i.destroy().then(function(){g.$el.data(b.dataTemplate,g)})}):g.$el.data(b.dataTemplate,g),k.then(function(){if(g.destroying)return e.rejectWith("destroy in progress");d.empty(g.opt.on)||g.$el.on(g.opt.on),g._undo.classes=g.$el.attr("class"),g._undo.style=g.$el.attr("style"),g.$el.is(g.sel.container)||g.$el.addClass(g.cls.container);var a=c.selectify(g.opt.classes);return null==a||g.$el.is(a)||g.$el.addClass(g.opt.classes),0==g.$el.children().not(g.sel.item.elem).length&&(g.$el.append(g.createChildren()),g._undo.children=!0),g.raise("pre-init").isDefaultPrevented()?e.rejectWith("pre-init default prevented"):void 0}).then(function(){return g.destroying?e.rejectWith("destroy in progress"):g.opt.delay<=0?e.resolved:a.Deferred(function(a){g._delay=setTimeout(function(){g._delay=null,a.resolve()},g.opt.delay)}).promise()}).then(function(){return g.destroying?e.rejectWith("destroy in progress"):g.raise("init").isDefaultPrevented()?e.rejectWith("init default prevented"):g.items.fetch()}).then(function(){if(g.destroying)return e.rejectWith("destroy in progress");if(g.raise("post-init").isDefaultPrevented())return e.rejectWith("post-init default prevented");var b=g.state.parse();g.state.set(d.empty(b)?g.state.initial():b),a(window).on("scroll"+g.namespace,{self:g},g.throttle(g.onWindowScroll,g.opt.throttle)).on("popstate"+g.namespace,{self:g},g.onWindowPopState)}).then(function(){return g.destroying?e.rejectWith("destroy in progress"):(g.raise("first-load"),g.loadAvailable())}).then(function(){if(g.destroying)return e.rejectWith("destroy in progress");g.initializing=!1,g.initialized=!0,g._check(200),g._check(500),g._check(1e3),g._check(2e3),g._check(5e3),g.raise("ready"),h.resolve(g)}).fail(function(a){h.reject(a)}),j.resolve()}).promise().fail(function(a){console.log("initialize failed",g,a),g.destroy()}))},create:function(){var b=this;return a("<div/>",{id:b.id,class:b.cls.container}).addClass(b.opt.classes)},createChildren:function(){return a()},destroy:function(){var b=this;return b.destroyed?e.resolved:(b.destroying=!0,a.Deferred(function(a){b.initializing&&d.promise(b._initialize)?b._initialize.always(function(){b.destroying=!1,b._destroy(),a.resolve()}):(b.destroying=!1,b._destroy(),a.resolve())}).promise())},_destroy:function(){var c=this;c.destroyed||(c.raise("destroy"),a(window).off(c.namespace),c.state.destroy(),c.filter&&c.filter.destroy(),c.pages&&c.pages.destroy(),c.items.destroy(),d.empty(c.opt.on)||c.$el.off(c.opt.on),c.raise("destroyed"),c.$el.removeData(b.dataTemplate),d.empty(c._undo.classes)?c.$el.removeAttr("class"):c.$el.attr("class",c._undo.classes),d.empty(c._undo.style)?c.$el.removeAttr("style"):c.$el.attr("style",c._undo.style),c._undo.children&&c.destroyChildren(),c._undo.create&&c.$el.remove(),c.$el=c.state=c.items=c.pages=null,c.destroyed=!0,c.initializing=!1,c.initialized=!1)},destroyChildren:function(){},getAvailable:function(){return this.pages?this.pages.available():this.items.available()},loadAvailable:function(){return this.items.load(this.getAvailable())},_check:function(a){a=d.number(a)?a:0;var b=this;setTimeout(function(){!b.initialized||b.destroying&&b.destroyed||b.loadAvailable()},a)},raise:function(c,e){if(!d.string(c)||d.empty(c))return null;e=d.array(e)?e:[];var g=this,h=c.split(".")[0],i=f.camel("on-"+h),j=a.Event(h+".foogallery");return e.unshift(g),g.$el.trigger(j,e),b.debug.logf("{id}|{name}:",{id:g.id,name:h},e),d.fn(g[i])&&(e.unshift(j),g[i].apply(g.$el.get(0),e)),j},layout:function(){var a=this;null!==a._initialize&&a.raise("layout")},throttle:function(a,b){var c=Date.now();return function(){if(c+b-Date.now()<0){var d=e.arg2arr(arguments);a.apply(this,d),c=Date.now()}}},onWindowPopState:function(a){var b=a.data.self,c=a.originalEvent.state;d.empty(c)||c.id!==b.id||(b.state.set(c),b.loadAvailable())},onWindowScroll:function(a){a.data.self.loadAvailable()}}),b.template.register("core",b.Template,{id:null,type:"core",classes:"",on:{},lazy:!0,viewport:200,items:[],delay:100,throttle:50,timeout:6e4,srcset:"data-srcset",src:"data-src",template:{}},{container:"foogallery"},{},-100)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.str),function(a,b){a.Component=b.Class.extend({construct:function(a){this.tmpl=a},destroy:function(){this.tmpl=null}}),a.components=new b.Factory}(FooGallery,FooGallery.utils),function(a,b,c,d){b.State=b.Component.extend({construct:function(a){var b=this;b._super(a),b.apiEnabled=!!window.history&&!!history.replaceState,b.opt=b.tmpl.opt.state,b.enabled=b.opt.enabled,b.pushOrReplace=b.isPushOrReplace(b.opt.pushOrReplace)?b.opt.pushOrReplace:"replace";var c=d.escapeRegExp(b.tmpl.id),e=d.escapeRegExp(b.opt.values),f=d.escapeRegExp(b.opt.pair);b.regex={exists:new RegExp("^#"+c+"\\"+e+".+?"),values:new RegExp("(\\w+)"+f+"([^"+e+"]+)","g")}},destroy:function(){var a=this;a.clear(),a.opt=a.regex={},a._super()},isPushOrReplace:function(b){return-1!==a.inArray(b,["push","replace"])},exists:function(){return this.regex.exists.test(location.hash)&&this.regex.values.test(location.hash)},parse:function(){var b=this,d={};if(b.exists())if(b.enabled){d.id=b.tmpl.id;var e=location.hash.match(b.regex.values);a.each(e,function(e,f){var g=f.split(b.opt.pair);2===g.length&&(d[g[0]]=-1===g[1].indexOf(b.opt.array)?decodeURIComponent(g[1].replace(/\+/g,"%20")):a.map(g[1].split(b.opt.array),function(a){return decodeURIComponent(a.replace(/\+/g,"%20"))}),c.string(d[g[0]])&&!isNaN(d[g[0]])&&(d[g[0]]=parseInt(d[g[0]])))})}else b.apiEnabled?history.replaceState(null,"",location.pathname+location.search):location.hash="#";return d},hashify:function(b){var d=this;if(c.hash(b)){var e=[];return a.each(b,function(b,f){c.empty(f)||"id"===b||(f=c.array(f)?a.map(f,function(a){return encodeURIComponent(a)}).join(d.opt.array):encodeURIComponent(f),e.push(b+d.opt.pair+f))}),e.length>0&&e.unshift("#"+d.tmpl.id),e.join(d.opt.values)}return""},replace:function(a){var b=this;if(b.enabled&&b.apiEnabled){a.id=b.tmpl.id;var d=b.hashify(a),e=c.empty(d);history.replaceState(e?null:a,"",e?location.pathname+location.search:d)}},push:function(a){var b=this;if(b.enabled&&b.apiEnabled){a.id=b.tmpl.id;var d=b.hashify(a),e=c.empty(d);history.pushState(e?null:a,"",e?location.pathname+location.search:d)}},update:function(a,b){var c=this;c.enabled&&c.apiEnabled&&(b=c.isPushOrReplace(b)?b:c.pushOrReplace,c[b](a))},clear:function(){this.exists()&&this.replace({})},initial:function(){var a=this,b=a.tmpl,d={};return b.filter&&!c.empty(b.filter.current)&&(d.f=b.filter.current),b.pages&&b.pages.current>1&&(d.p=b.pages.current),d},get:function(a){var d=this,e=d.tmpl,f={};return a instanceof b.Item&&(f.i=a.id),e.filter&&!c.empty(e.filter.current)&&(f.f=e.filter.current),e.pages&&e.pages.isValid(e.pages.current)&&(f.p=e.pages.current),f},set:function(a){var b=this,d=b.tmpl;if(c.hash(a)){d.items.reset();var e=d.items.get(a.i);if(d.filter){d.filter.rebuild();var f=c.empty(a.f)?[]:a.f;d.filter.set(f,!1)}if(d.pages){d.pages.rebuild();var g=d.pages.number(a.p);e&&!d.pages.contains(g,e)&&(g=d.pages.find(e),g=0!==g?g:1),d.pages.set(g,!c.empty(a),!1,!0),e&&d.pages.contains(g,e)&&e.scrollTo()}else d.items.detach(d.items.all()),d.items.create(d.items.available(),!0),e&&e.scrollTo();c.empty(a.i)||(a.i=null,b.replace(a))}}}),b.template.configure("core",{state:{enabled:!1,pushOrReplace:"replace",values:"/",pair:":",array:"+"}}),b.components.register("state",b.State)
10
- }(FooGallery.$,FooGallery,FooGallery.utils.is,FooGallery.utils.str),function(a,b,c,d,e,f){b.Item=b.Component.extend({construct:function(a,b){var c=this;c._super(a),c.cls=a.cls.item,c.il8n=a.il8n.item,c.sel=a.sel.item,c.opt=f.extend({},a.opt.item,b),c.isAttached=!1,c.isCreated=!1,c.isDestroyed=!1,c.isLoading=!1,c.isLoaded=!1,c.isError=!1,c.isParsed=!1,c.$el=null,c.$inner=null,c.$anchor=null,c.$image=null,c.$caption=null,c.type=c.opt.type,c.id=c.opt.id,c.href=c.opt.href,c.src=c.opt.src,c.srcset=c.opt.srcset,c.width=c.opt.width,c.height=c.opt.height,c.title=c.opt.title,c.alt=c.opt.alt,c.caption=d.empty(c.opt.caption)?c.title:c.opt.caption,c.description=d.empty(c.opt.description)?c.alt:c.opt.description,c.attr=c.opt.attr,c.tags=c.opt.tags,c.maxWidth=c.opt.maxWidth,c.maxCaptionLength=c.opt.maxCaptionLength,c.maxDescriptionLength=c.opt.maxDescriptionLength,c.showCaptionTitle=c.opt.showCaptionTitle,c.showCaptionDescription=c.opt.showCaptionDescription,c._thumbUrl=null,c._placeholder=null,c._load=null,c._undo={classes:"",style:"",loader:!1,placeholder:!1}},destroy:function(){var a=this;return a.tmpl.raise("destroy-item",[a]).isDefaultPrevented()||(a.isDestroyed=a.doDestroyItem()),a.isDestroyed&&(a.tmpl.raise("destroyed-item",[a]),a._super()),a.isDestroyed},doDestroyItem:function(){var a=this;return a.isParsed?(a.append(),d.empty(a._undo.classes)?a.$el.removeAttr("class"):a.$el.attr("class",a._undo.classes),d.empty(a._undo.style)?a.$el.removeAttr("style"):a.$el.attr("style",a._undo.style),a._undo.loader&&a.$el.find(a.sel.loader).remove(),a._undo.placeholder&&a.$image.prop("src")==a._placeholder&&a.$image.removeAttr("src")):a.isCreated&&(a.detach(),a.$el.remove()),!0},parse:function(b){var c=this,d=a(b);return!c.tmpl.raise("parse-item",[c,d]).isDefaultPrevented()&&(c.isCreated=d.is(c.sel.elem))&&(c.isParsed=c.doParseItem(d),c.fix()),c.isParsed&&c.tmpl.raise("parsed-item",[c]),c.isParsed},doParseItem:function(c){var e=this,f=e.tmpl.opt,g=e.cls,h=e.sel;return e._undo.classes=c.attr("class")||"",e._undo.style=c.attr("style")||"",e.$el=c.data(b.dataItem,e),e.$inner=e.$el.find(h.inner),e.$anchor=e.$el.find(h.anchor).on("click.foogallery",{self:e},e.onAnchorClick),e.$image=e.$anchor.find(h.image),e.$caption=e.$el.find(h.caption.elem).on("click.foogallery",{self:e},e.onCaptionClick),e.isAttached=e.$el.parent().length>0,e.isLoading=e.$el.is(h.loading),e.isLoaded=e.$el.is(h.loaded),e.isError=e.$el.is(h.error),e.id=e.$anchor.data("id")||e.id,e.tags=e.$anchor.data("tags")||e.tags,e.href=e.$anchor.attr("href")||e.href,e.src=e.$image.attr(f.src)||e.src,e.srcset=e.$image.attr(f.srcset)||e.srcset,e.width=parseInt(e.$image.attr("width"))||e.width,e.height=parseInt(e.$image.attr("height"))||e.height,e.title=e.$image.attr("title")||e.title,e.alt=e.$image.attr("alt")||e.alt,e.caption=e.$anchor.data("title")||e.$anchor.data("captionTitle")||e.caption||e.title,e.description=e.$anchor.data("description")||e.$anchor.data("captionDesc")||e.description||e.alt,d.empty(e.caption)&&(e.caption=a.trim(e.$caption.find(h.caption.title).html())),d.empty(e.description)&&(e.description=a.trim(e.$caption.find(h.caption.description).html())),d.number(e.maxCaptionLength)&&e.maxCaptionLength>0&&!d.empty(e.caption)&&d.string(e.caption)&&e.caption.length>e.maxCaptionLength&&e.$caption.find(h.caption.title).html(e.caption.substr(0,e.maxCaptionLength)+"&hellip;"),d.number(e.maxDescriptionLength)&&e.maxDescriptionLength>0&&!d.empty(e.description)&&d.string(e.description)&&e.description.length>e.maxDescriptionLength&&e.$caption.find(h.caption.description).html(e.description.substr(0,e.maxDescriptionLength)+"&hellip;"),0===e.$el.find(h.loader).length&&(e.$el.append(a("<div/>",{class:g.loader})),e._undo.loader=!0),d.empty(e.$image.prop("src"))&&(e._placeholder=e.tmpl.items.placeholder(e.width,e.height),e.$image.prop("src",e._placeholder),e._undo.placeholder=!0),!e.isCreated||!e.isAttached||e.isLoading||e.isLoaded||e.isError||e.$el.addClass(g.idle),!0},create:function(){var a=this;if(!a.isCreated&&d.string(a.href)&&d.string(a.src)&&d.number(a.width)&&d.number(a.height)){a.tmpl.raise("create-item",[a]).isDefaultPrevented()||(a.isCreated=a.doCreateItem()),a.isCreated&&a.tmpl.raise("created-item",[a])}return a.isCreated},doCreateItem:function(){var c=this,e=c.tmpl.opt,f=c.cls,g=c.attr;g.elem.class=f.elem+" "+f.idle,g.inner.class=f.inner,g.anchor.class=f.anchor,g.anchor.href=c.href,g.anchor["data-id"]=c.id,g.anchor["data-title"]=c.caption,g.anchor["data-description"]=c.description,d.empty(c.tags)||(g.anchor["data-tags"]=JSON.stringify(c.tags)),g.image.class=f.image,g.image.src=c.tmpl.items.placeholder(c.width,c.height),g.image[e.src]=c.src,g.image[e.srcset]=c.srcset,g.image.width=c.width,g.image.height=c.height,g.image.title=c.title,g.image.alt=c.alt,c.$el=a("<div/>").attr(g.elem).data(b.dataItem,c),c.$inner=a("<figure/>").attr(g.inner).appendTo(c.$el),c.$anchor=a("<a/>").attr(g.anchor).appendTo(c.$inner).on("click.foogallery",{self:c},c.onAnchorClick),c.$image=a("<img/>").attr(g.image).appendTo(c.$anchor),f=c.cls.caption,g=c.attr.caption,g.elem.class=f.elem,c.$caption=a("<figcaption/>").attr(g.elem).on("click.foogallery",{self:c},c.onCaptionClick),g.inner.class=f.inner;var h=a("<div/>").attr(g.inner).appendTo(c.$caption),i=!d.empty(c.caption),j=!d.empty(c.description);if(i||j){if(g.title.class=f.title,g.description.class=f.description,i){var k;k=d.number(c.maxCaptionLength)&&c.maxCaptionLength>0&&d.string(c.caption)&&c.caption.length>c.maxCaptionLength?a("<div/>").attr(g.title).html(c.caption.substr(0,c.maxCaptionLength)+"&hellip;"):a("<div/>").attr(g.title).html(c.caption),h.append(k)}if(j){var l;l=d.number(c.maxDescriptionLength)&&c.maxDescriptionLength>0&&d.string(c.description)&&c.description.length>c.maxDescriptionLength?a("<div/>").attr(g.description).html(c.description.substr(0,c.maxDescriptionLength)+"&hellip;"):a("<div/>").attr(g.description).html(c.description),h.append(l)}}return c.$caption.appendTo(c.$inner),0===c.$el.find(c.sel.loader).length&&c.$el.append(a("<div/>",{class:c.cls.loader})),!0},append:function(){var a=this;if(a.isCreated&&!a.isAttached){a.tmpl.raise("append-item",[a]).isDefaultPrevented()||(a.tmpl.$el.append(a.$el),a.fix(),a.isAttached=!0),a.isAttached&&a.tmpl.raise("appended-item",[a])}return a.isAttached},detach:function(){var a=this;if(a.isCreated&&a.isAttached){a.tmpl.raise("detach-item",[a]).isDefaultPrevented()||(a.$el.detach(),a.unfix(),a.isAttached=!1),a.isAttached||a.tmpl.raise("detached-item",[a])}return!a.isAttached},load:function(){var b=this;if(d.promise(b._load))return b._load;if(!b.isCreated||!b.isAttached)return e.rejectWith("not created or attached");if(b.tmpl.raise("load-item",[b]).isDefaultPrevented())return e.rejectWith("default prevented");var c=b.cls,f=b.$image.get(0),g=f.src;return b.isLoading=!0,b.$el.removeClass(c.idle).removeClass(c.loaded).removeClass(c.error).addClass(c.loading),b._load=a.Deferred(function(a){d.undef(window.InstallTrigger)||(f.src=""),f.onload=function(){f.onload=f.onerror=null,b.isLoading=!1,b.isLoaded=!0,b.$el.removeClass(c.loading).addClass(c.loaded),b.unfix(),b.tmpl.raise("loaded-item",[b]),a.resolve(b)},f.onerror=function(){f.onload=f.onerror=null,b.isLoading=!1,b.isError=!0,b.$el.removeClass(c.loading).addClass(c.error),d.string(g)&&b.$image.prop("src",g),b.tmpl.raise("error-item",[b]),a.reject(b)},f.src=b.getThumbUrl()}).promise()},fix:function(){var a=this;if(!a.tmpl.raise("fix-item",[a]).isDefaultPrevented()&&a.isCreated&&!a.isLoading&&!a.isLoaded&&!a.isError){var b=a.width,c=a.height;if(!isNaN(b)&&!isNaN(c)){var e=d.fn(a.maxWidth)?a.maxWidth(a):a.$image.width();e<=0&&(e=b);var f=e/b,g=c*f;a.$image.css({width:e,height:g})}}return a},unfix:function(){var a=this;return!a.tmpl.raise("unfix-item",[a]).isDefaultPrevented()&&a.isCreated&&a.$image.css({width:"",height:""}),a},getThumbUrl:function(a){a=!!d.boolean(a)&&a;var c=this;return!a&&d.string(c._thumbUrl)?c._thumbUrl:c._thumbUrl=b.parseSrc(c.src,c.width,c.height,c.srcset,c.$anchor.innerWidth(),c.$anchor.innerHeight())},scrollTo:function(a){var b=this;if(b.isAttached){var d=b.bounds(),e=c.getViewportBounds();switch(a){case"top":d.left+=d.width/2-e.width/2,d.top-=e.height/5;break;default:d.left+=d.width/2-e.width/2,d.top+=d.height/2-e.height/2}window.scrollTo(d.left,d.top)}return b},bounds:function(){return this.isAttached?c.getElementBounds(this.$el):null},intersects:function(a){return!!this.isAttached&&this.bounds().intersects(a)},onAnchorClick:function(a){var b=a.data.self,c=b.tmpl.state.get(b);b.tmpl.state.update(c)},onCaptionClick:function(b){var c=b.data.self;a(b.target).is(c.sel.caption.all)&&c.$anchor.length>0&&c.$anchor.get(0).click()}}),b.template.configure("core",{item:{type:"item",id:"",href:"",src:"",srcset:"",width:0,height:0,title:"",alt:"",caption:"",description:"",tags:[],maxWidth:null,maxCaptionLength:0,maxDescriptionLength:0,showCaptionTitle:!0,showCaptionDescription:!0,attr:{elem:{},inner:{},anchor:{},image:{},caption:{elem:{},inner:{},title:{},description:{}}}}},{item:{elem:"fg-item",inner:"fg-item-inner",anchor:"fg-thumb",image:"fg-image",loader:"fg-loader",idle:"fg-idle",loading:"fg-loading",loaded:"fg-loaded",error:"fg-error",caption:{elem:"fg-caption",inner:"fg-caption-inner",title:"fg-caption-title",description:"fg-caption-desc"}}},{item:{}}),b.components.register("item",b.Item)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d,e,f){b.Items=b.Component.extend({construct:function(a){var b=this;b._super(a),b.idMap={},b._fetched=null,b._arr=[],b._available=[],b._canvas=document.createElement("canvas");var d=b.tmpl.cls.item.caption;b.tmpl.sel.item.caption.all=c.selectify([d.elem,d.inner,d.title,d.description])},destroy:function(){var b=this,c=b.all(),d=[];c.length>0&&(b.tmpl.raise("destroy-items",[c]),d=a.map(c,function(a){return a.destroy()?a:null}),d.length>0&&b.tmpl.raise("destroyed-items",[d])),b.idMap={},b._canvas=b._fetched=null,b._arr=[],b._available=[],b._super()},fetch:function(b){var c=this;if(!b&&d.promise(c._fetched))return c._fetched;var e=c.tmpl,f=e.sel,g=e.opt.items,h=a.Deferred(),i=c.make(e.$el.find(f.item.elem));return d.empty(g)?(i.push.apply(i,c.make(window[e.id+"-items"])),h.resolve(i)):d.array(g)?(i.push.apply(i,c.make(g)),h.resolve(i)):d.string(g)?a.get(g).then(function(a){i.push.apply(i,c.make(a)),h.resolve(i)},function(a,b,c){console.log("FooGallery: GET items error.",g,a,b,c),h.resolve(i)}):h.resolve(i),h.then(function(a){c.setAll(a)}),c._fetched=h.promise()},all:function(){return this._arr.slice()},count:function(a){return a?this.all().length:this.available().length},available:function(){return this._available.slice()},get:function(a){return!d.empty(a)&&this.idMap[a]?this.idMap[a]:null},setAll:function(a){this._arr=d.array(a)?a:[],this.idMap=this.createIdMap(a),this._available=this.all()},setAvailable:function(a){this._available=d.array(a)?a:[]},reset:function(){this.setAvailable(this.all())},placeholder:function(a,c){return this._canvas&&this._canvas.toDataURL&&d.number(a)&&d.number(c)?(this._canvas.width=a,this._canvas.height=c,this._canvas.toDataURL()):b.emptyImage},loadable:function(b){var e,f=this,g=f.tmpl.opt;return g.lazy&&(e=c.getViewportBounds(g.viewport)),d.array(b)?a.map(b,function(a){return a.isCreated&&a.isAttached&&!a.isLoading&&!a.isLoaded&&!a.isError&&(!g.lazy||g.lazy&&a.intersects(e))?a:null}):[]},creatable:function(c){return d.array(c)?a.map(c,function(a){return a instanceof b.Item&&!a.isCreated?a:null}):[]},appendable:function(c){return d.array(c)?a.map(c,function(a){return a instanceof b.Item&&a.isCreated&&!a.isAttached?a:null}):[]},detachable:function(c){return d.array(c)?a.map(c,function(a){return a instanceof b.Item&&a.isCreated&&a.isAttached?a:null}):[]},jquerify:function(b){return a(a.map(b,function(a){return a.$el.get()}))},make:function(c){var e=this,g=[];if(d.jq(c)||d.array(c)){var h=[],i=a.makeArray(c);if(0===i.length)return g;e.tmpl.raise("make-items",[i]).isDefaultPrevented()||(g=a.map(i,function(a){var c=e.type(a),g=f.extend(d.hash(a)?a:{},{type:c}),i=b.components.make(c,e.tmpl,g);return d.element(a)?i.parse(a)?(h.push(i),i):null:i})),g.length>0&&e.tmpl.raise("made-items",[g]),h.length>0&&e.tmpl.raise("parsed-items",[h])}return g},type:function(c){var e;if(d.hash(c))e=c.type;else if(d.element(c)){var f=a(c),g=this.tmpl.sel.item;e=f.find(g.anchor).data("type")}return d.string(e)&&b.components.contains(e)?e:"item"},create:function(b,c){var e=this,f=[],g=e.creatable(b);if(g.length>0){e.tmpl.raise("create-items",[g]).isDefaultPrevented()||(f=a.map(g,function(a){return a.create()?a:null})),f.length>0&&e.tmpl.raise("created-items",[f])}return d.boolean(c)&&c?e.append(b):f},append:function(b){var c=this,d=[],e=c.appendable(b);if(e.length>0){c.tmpl.raise("append-items",[e]).isDefaultPrevented()||(d=a.map(e,function(a){return a.append()?a:null})),d.length>0&&c.tmpl.raise("appended-items",[d])}return d},detach:function(b){var c=this,d=[],e=c.detachable(b);if(e.length>0){c.tmpl.raise("detach-items",[e]).isDefaultPrevented()||(d=a.map(e,function(a){return a.detach()?a:null})),d.length>0&&c.tmpl.raise("detached-items",[d])}return d},load:function(b){var c=this;if(b=c.loadable(b),b.length>0){if(!c.tmpl.raise("load-items",[b]).isDefaultPrevented()){var d=a.map(b,function(a){return a.load()});return e.when(d).done(function(a){c.tmpl.raise("loaded-items",[a])})}}return e.resolveWith([])},createIdMap:function(b){var c={};return a.each(b,function(a,b){d.empty(b.id)&&(b.id=""+(a+1)),c[b.id]=b}),c}}),b.components.register("items",b.Items)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d){b.Paging=b.Component.extend({construct:function(a){var b=this;b._super(a),b.opt=b.tmpl.opt.paging,b.cls=b.tmpl.cls.paging,b.il8n=b.tmpl.il8n.paging,b.sel=b.tmpl.sel.paging,b.pushOrReplace=b.opt.pushOrReplace,b.type=b.opt.type,b.theme=b.opt.theme,b.size=b.opt.size,b.position=b.opt.position,b.scrollToTop=b.opt.scrollToTop,b.current=0,b.total=0,b.ctrls=[],b._arr=[]},destroy:function(){var b=this;b._arr.splice(0,b._arr.length),a.each(b.ctrls.splice(0,b.ctrls.length),function(a,b){b.destroy()}),b._super()},build:function(){var a=this,c=a.tmpl.items.available();a.total=a.size>0&&c.length>0?Math.ceil(c.length/a.size):1;for(var d=0;d<a.total;d++)a._arr.push(c.splice(0,a.size));if(a.total>1&&b.paging.hasCtrl(a.type)){var e,f,g=a.position;"both"!==g&&"top"!==g||(e=b.paging.makeCtrl(a.type,a.tmpl,a,"top"),e.create()&&(e.append(),a.ctrls.push(e))),"both"!==g&&"bottom"!==g||(f=b.paging.makeCtrl(a.type,a.tmpl,a,"bottom"),f.create()&&(f.append(),a.ctrls.push(f)))}},rebuild:function(){var b=this;b.current=0,b.total=0,b._arr.splice(0,b._arr.length),a.each(b.ctrls.splice(0,b.ctrls.length),function(a,b){b.destroy()}),b.build()},all:function(){return this._arr.slice()},available:function(){return this.get(this.current)},controls:function(b){var c=this;c.isValid(b)&&a.each(c.ctrls,function(a,c){c.update(b)})},isValid:function(a){return d.number(a)&&a>0&&a<=this.total},number:function(a){return this.isValid(a)?a:0===this.current?1:this.current},create:function(a,b){var c=this;a=c.number(a);var d=a-1;c.tmpl.items.detach(c.tmpl.items.all()),c.tmpl.items.create(c._arr[d],!0),c.current=a},get:function(a){var b=this;return b.isValid(a)?(a=b.number(a),b._arr[a-1]):[]},set:function(a,b,c,e){var f=this;if(f.isValid(a)){var g,h=f.number(a);if(h!==f.current){var i=f.current,j=function(){if(c=!d.boolean(c)||c,e=!!d.boolean(e)&&e,c&&1===f.current&&!f.tmpl.state.exists()&&(g=f.tmpl.state.get(),f.tmpl.state.update(g,f.pushOrReplace)),f.controls(a),f.create(h,e),c&&(g=f.tmpl.state.get(),f.tmpl.state.update(g,f.pushOrReplace)),f.scrollToTop&&d.boolean(b)&&b){var j=f.get(f.current);j.length>0&&j[0].scrollTo("top")}f.tmpl.raise("after-page-change",[f.current,i,e])};return!f.tmpl.raise("before-page-change",[f.current,h,j,e]).isDefaultPrevented()&&(j(),!0)}}return!1},find:function(b){for(var c=this,d=0,e=c._arr.length;d<e;d++)if(-1!==a.inArray(b,c._arr[d]))return d+1;return 0},contains:function(b,c){var d=this.get(b);return-1!==a.inArray(c,d)},first:function(){this.goto(1)},last:function(){this.goto(this._arr.length)},prev:function(){this.goto(this.current-1)},next:function(){this.goto(this.current+1)},goto:function(a){var b=this;b.set(a,!0)&&b.tmpl.loadAvailable()}}),b.PagingControl=b.Component.extend({construct:function(a,b,c){var d=this;d._super(a),d.pages=b,d.position=c,d.$container=null},create:function(){var b=this;return b.$container=a("<nav/>",{class:b.pages.cls.container}).addClass(b.pages.theme),!0},destroy:function(){var a=this;a.$container.remove(),a.$container=null},append:function(){var a=this;"top"===a.position?a.$container.insertBefore(a.tmpl.$el):a.$container.insertAfter(a.tmpl.$el)},update:function(a){}}),b.paging.register("default",b.Paging,null,{type:"none",theme:"fg-light",size:30,pushOrReplace:"push",position:"none",scrollToTop:!0},{container:"fg-paging-container"},null,-100)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d){b.Dots=b.Paging.extend({}),b.DotsControl=b.PagingControl.extend({construct:function(b,c,d){this._super(b,c,d),this.$container=a(),this.$list=a(),this.$items=a()},create:function(){for(var b,c=this,d=c.pages.cls,e=c.pages.il8n,f=[],g=a("<ul/>",{class:d.list}),h=0,i=c.pages.total;h<i;h++)f.push(b=c.createItem(h+1,e.page)),g.append(b);return c.$list=g,c.$container=a("<nav/>",{class:d.container}).addClass(c.pages.theme).append(g),c.$items=a(a.map(f,function(a){return a.get()})),!0},append:function(){var a=this;"top"===a.position?a.$container.insertBefore(a.tmpl.$el):a.$container.insertAfter(a.tmpl.$el)},destroy:function(){var b=this,c=b.pages.sel;b.$list.find(c.link).off("click.foogallery",b.onLinkClick),b.$container.remove(),b.$container=a(),b.$list=a(),b.$items=a()},update:function(a){this.setSelected(a-1)},setSelected:function(b){var c=this,e=c.pages.cls,f=c.pages.il8n,g=c.pages.sel;c.$items.filter(g.selected).removeClass(e.selected).each(function(b,c){var e=a(c),f=e.data("label"),h=e.find(g.reader);d.string(f)&&0!==h.length&&h.html(f)}),c.$items.eq(b).addClass(e.selected).each(function(b,c){var e=a(c),h=e.find(g.reader),i=h.html();d.string(i)&&0!==h.length&&(e.data("label",i),h.html(f.current))})},createItem:function(b,c,e,f,g){e=d.string(e)?e:b,c=d.string(c)?c:"";var h=this,i=h.pages.opt,j=h.pages.cls,k=a("<a/>",{class:j.link,href:"#page-"+b}).html(e).on("click.foogallery",{self:h,page:b},h.onLinkClick);d.empty(c)||k.attr("title",c.replace(/\{PAGE}/g,b).replace(/\{LIMIT}/g,i.limit+"")),g=d.string(g)?g:c,d.empty(g)||k.prepend(a("<span/>",{class:j.reader,text:g.replace(/\{PAGE}/g,"").replace(/\{LIMIT}/g,i.limit+"")}));var l=a("<li/>",{class:j.item}).append(k);return f=d.string(f)?f:"",d.empty(f)||l.addClass(f),l},onLinkClick:function(b){b.preventDefault();var c=b.data.self,d=b.data.page,e=c.pages.sel;a(this).closest(e.item).is(e.disabled)||(c.pages.set(d,!0),c.tmpl.loadAvailable())}}),b.paging.register("dots",b.Dots,b.DotsControl,{type:"dots",position:"both",pushOrReplace:"push"},{list:"fg-dots",item:"fg-dot-item",link:"fg-dot-link",disabled:"fg-disabled",selected:"fg-selected",visible:"fg-visible",reader:"fg-sr-only"},{current:"Current page",page:"Page {PAGE}"})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c){b.DefaultTemplate=b.Template.extend({}),b.template.register("default",b.DefaultTemplate,null,{container:"foogallery fg-default"})}(FooGallery.$,FooGallery,FooGallery.utils),function(a,b,c,d){b.MasonryTemplate=b.Template.extend({construct:function(a,b){this._super(a,b),this.masonry=null,this.style=null,this.$columnWidth=null},getStylesheet:function(){var a=this;return null===a.style&&(a.style=document.createElement("style"),a.style.appendChild(document.createTextNode("")),document.head.appendChild(a.style)),a.style.sheet},onPreInit:function(b,c){var e=c.sel,f=c.cls;f.layouts=a.map(f.layout,function(a){return a}).join(" ");for(var g=a.map(f.layout,function(a,b){return{key:b,value:a}}),h=0,i=g.length;h<i;h++)if(c.$el.hasClass(g[h].value)){c.template.layout=g[h].key;break}d.string(f.layout[c.template.layout])||(c.template.layout="col4");var j,k,l="fixed"===c.template.layout;if(c.template.isFitWidth=l,c.template.percentPosition=!l,c.template.transitionDuration=0,c.template.itemSelector=e.item.elem,c.$el.removeClass(f.layouts).addClass(f.layout[c.template.layout]),l||(0===c.$el.find(e.gutterWidth).length&&c.$el.prepend(a("<div/>").addClass(f.gutterWidth)),c.template.gutter=e.gutterWidth),0===c.$el.find(e.columnWidth).length&&c.$el.prepend(a("<div/>").addClass(f.columnWidth)),l&&d.number(c.template.columnWidth)){var m=c.$el.find(e.columnWidth).width(c.template.columnWidth);j=c.getStylesheet(),k="#"+c.id+e.container+" "+e.item.elem+" { width: "+m.outerWidth()+"px; }",j.insertRule(k,0)}c.template.columnWidth=e.columnWidth,l&&d.number(c.template.gutter)&&(j=c.getStylesheet(),k="#"+c.id+e.container+" "+e.item.elem+" { margin-bottom: "+c.template.gutter+"px; }",j.insertRule(k,0)),c.masonry=new Masonry(c.$el.get(0),c.template)},onPostInit:function(a,b){b.masonry.layout()},onFirstLoad:function(a,b){b.masonry.layout()},onReady:function(a,b){b.masonry.layout()},onDestroy:function(a,b){b.$el.find(b.sel.columnWidth).remove(),b.$el.find(b.sel.gutterWidth).remove(),b.style&&b.style.parentNode&&b.style.parentNode.removeChild(b.style)},onDestroyed:function(a,b){b.masonry instanceof Masonry&&b.masonry.destroy()},onLayout:function(a,b){b.masonry.layout()},onParsedItems:function(a,b,c){b.masonry.layout()},onAppendedItems:function(a,b,c){c=b.items.jquerify(c),c=b.masonry.addItems(c),b.masonry.layoutItems(c,!0)},onDetachItem:function(a,b,c){a.isDefaultPrevented()||(a.preventDefault(),b.masonry.remove(c.$el),c.isAttached=!1,c.unfix())},onDetachedItems:function(a,b,c){b.masonry.layout()},onLoadedItems:function(a,b,c){b.masonry.layout()}}),b.template.register("masonry",b.MasonryTemplate,{template:{initLayout:!1,isInitLayout:!1,layout:"col4"}},{container:"foogallery fg-masonry",columnWidth:"fg-column-width",gutterWidth:"fg-gutter-width",layout:{fixed:"fg-masonry-fixed",col2:"fg-masonry-2col",col3:"fg-masonry-3col",col4:"fg-masonry-4col",col5:"fg-masonry-5col"}})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d){b.Justified=c.Class.extend({construct:function(c,d){this.$el=a(c),this.options=a.extend(!0,{},b.Justified.defaults,d),this._items=[],this._lastRefresh=0,this._refresh=null},init:function(){var b=this;d.string(b.options.maxRowHeight)&&(b.options.maxRowHeight.indexOf("%")?b.options.maxRowHeight=b.options.rowHeight*(parseInt(b.options.maxRowHeight)/100):b.options.maxRowHeight=parseInt(b.options.maxRowHeight)),a(window).on("resize.justified",{self:b},b.onWindowResize),this._refresh=setInterval(function(){b.refresh()},b.options.refreshInterval)},destroy:function(){this._refresh&&clearInterval(this._refresh),a(window).off("resize.justified"),this.$el.removeAttr("style")},refresh:function(){var a=this.getContainerWidth();a!=this._lastRefresh&&(this.layout(),this._lastRefresh=a)},parse:function(){var b=this,c=b.$el.is(":visible"),d=a("<div/>",{class:b.$el.attr("class")}).css({position:"absolute",top:0,left:-9999,visibility:"hidden",maxWidth:b.getContainerWidth()}).appendTo("body");return b._items=b.$el.find(b.options.itemSelector).removeAttr("style").removeClass("fg-positioned").map(function(b,e){var f=a(e),g=0,h=0;if(c)g=f.outerWidth(),h=f.outerHeight();else{var i=f.clone();i.appendTo(d),g=i.outerWidth(),h=i.outerHeight()}return{index:b,width:g,height:h,top:0,left:0,$item:f}}).get(),d.remove(),b._items},getMaxRowHeight:function(){var a=this;return d.string(a.options.maxRowHeight)&&(a.options.maxRowHeight.indexOf("%")?a.options.maxRowHeight=a.options.rowHeight*(parseInt(a.options.maxRowHeight)/100):a.options.maxRowHeight=parseInt(a.options.maxRowHeight)),d.number(a.options.maxRowHeight)?a.options.maxRowHeight:a.options.rowHeight},getContainerWidth:function(){var a=this;return a.$el.is(":visible")?a.$el.width():a.$el.parents(":visible:first").innerWidth()},layout:function(b,c){b=!!d.boolean(b)&&b,c=!d.boolean(c)||c,(b||0===this._items.length)&&this.parse();var e=this,f=0,g=e.getContainerWidth(),h=e.getMaxRowHeight(),i=e.rows(g,h);a.each(i,function(a,b){b.visible&&(a>0&&(f+=e.options.margins),f+=b.height,e.render(b))}),e.$el.height(f),c&&e.getContainerWidth()<g&&e.layout(!1,!1)},render:function(a){for(var b,c=0,d=a.items.length;c<d;c++)b=a.items[c],a.visible?b.$item.css({width:b.width,height:b.height,top:b.top,left:b.left,display:"",maxHeight:this.options.maxRowHeight>0?this.options.maxRowHeight:""}).addClass("fg-positioned"):b.$item.css("display","none")},justify:function(a,b,c,d){var e=this,f=e.options.margins*(a.items.length-1),g=c-f,h=g/a.width;a.width=a.width*h,a.height=a.height*h,a.top=b,a.height>d&&(a.height=d),a.left=0,a.width<g&&(a.left=(g-a.width)/2),a.width+=f;for(var i,j=a.left,k=0,l=a.items.length;k<l;k++)k>0&&(j+=e.options.margins),i=a.items[k],i.left=j,i.top=b,i.width=i.width*h,i.height=i.height*h,i.height>d&&(i.height=d),j+=i.width;return a.height},position:function(a,b,c,d){var e=this,f=e.options.margins*(a.items.length-1),g=c-f;if(a.top=b,a.left=0,a.width<g)switch(d){case"center":a.left=(g-a.width)/2;break;case"right":a.left=g-a.width}a.width+=f;for(var h,i=a.left,j=0,k=a.items.length;j<k;j++)j>0&&(i+=e.options.margins),h=a.items[j],h.left=i,h.top=b,i+=h.width;return a.height},lastRow:function(a,b,c,d){var e=this,f=e.options.margins*(a.items.length-1),g=c-f,h=a.width/g>e.options.justifyThreshold;switch(e.options.lastRow){case"hide":h?e.justify(a,b,c,d):a.visible=!1;break;case"justify":e.justify(a,b,c,d);break;case"nojustify":h?e.justify(a,b,c,d):e.position(a,b,c,"left");break;case"left":case"center":case"right":h?e.justify(a,b,c,d):e.position(a,b,c,e.options.lastRow)}},items:function(){return a.map(this._items,function(a){return{index:a.index,width:a.width,height:a.height,$item:a.$item,top:a.top,left:a.left}})},rows:function(a,b){function c(){var a={index:++h,visible:!0,width:0,height:e.options.rowHeight,top:0,left:0,items:[]};return g.push(a),a}for(var d,e=this,f=e.items(),g=[],h=-1,i=c(),j=0,k=0,l=0,m=f.length;l<m;l++){if(d=f[l],d.height!=e.options.rowHeight){var n=e.options.rowHeight/d.height;d.height=d.height*n,d.width=d.width*n}k+d.width>a&&l>0&&(g.length>1&&(j+=e.options.margins),j+=e.justify(i,j,a,b),i=c(),k=0),i.items.length>0&&(k+=e.options.margins),k+=d.width,i.width+=d.width,i.items.push(d)}return g.length>1&&(j+=e.options.margins),e.lastRow(i,j,a,b),g},onWindowResize:function(a){a.data.self.layout()}}),b.Justified.defaults={itemSelector:".fg-item",rowHeight:150,maxRowHeight:"200%",margins:0,lastRow:"center",justifyThreshold:.5,refreshInterval:250}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c){b.JustifiedTemplate=b.Template.extend({onPreInit:function(a,c){c.justified=new b.Justified(c.$el.get(0),c.template)},onInit:function(a,b){b.justified.init()},onFirstLoad:function(a,b){b.justified.layout(!0)},onReady:function(a,b){b.justified.layout(!0)},onDestroy:function(a,b){b.justified.destroy()},onLayout:function(a,b){b.justified.layout(!0)},onParsedItems:function(a,b,c){(b.initialized||b.initializing)&&b.justified.layout(!0)},onAppendedItems:function(a,b,c){(b.initialized||b.initializing)&&b.justified.layout(!0)},onDetachedItems:function(a,b,c){b.initialized&&b.justified.layout(!0)}}),b.template.register("justified",b.JustifiedTemplate,null,{container:"foogallery fg-justified"})}(FooGallery.$,FooGallery,FooGallery.utils),function(a,b,c,d){b.Portfolio=c.Class.extend({construct:function(c,d){this.$el=a(c),this.options=a.extend(!0,{},b.Portfolio.defaults,d),this._items=[],this._lastWidth=0},init:function(){var b=this;a(window).on("resize.portfolio",{self:b},b.onWindowResize)},destroy:function(){a(window).off("resize.portfolio"),this.$el.removeAttr("style")},parse:function(){var b=this,c=b.$el.is(":visible"),d=b.getContainerWidth(),e=a("<div/>",{class:b.$el.attr("class")}).css({position:"absolute",top:0,left:-9999,visibility:"hidden",maxWidth:d}).appendTo("body");return b._items=b.$el.find(".fg-item").removeAttr("style").removeClass("fg-positioned").map(function(b,f){var g=a(f),h=g.find(".fg-thumb"),i=g.find(".fg-image"),j=parseFloat(i.attr("width")),k=parseFloat(i.attr("height")),l=d<j?d:j,m=d<j?"auto":k;if(g.find(".fg-caption").css("max-width",l),i.css({width:l,height:m}),c)j=g.outerWidth(),k=g.outerHeight();else{var n=g.clone();n.appendTo(e),j=n.outerWidth(),k=n.outerHeight()}return i.css({width:"",height:""}),{index:b,width:j,height:k,top:0,left:0,$item:g,$thumb:h}}).get(),e.remove(),b._items},round:function(a){return Math.round(2*a)/2},getContainerWidth:function(){var a=this;return a.$el.is(":visible")?a.$el.width():a.$el.parents(":visible:first").innerWidth()},layout:function(a,b){a=!!d.boolean(a)&&a,b=!d.boolean(b)||b;var c=this,e=c.getContainerWidth();0!=c._lastWidth&&Math.abs(e-c._lastWidth)>0&&(a=!0,c._lastWidth=e),(a||0===c._items.length)&&c.parse();for(var f,g=c.rows(e),h=0,i=0,j=g.length;i<j;i++)f=g[i],h=c.position(f,e,h,c.options.align),c.render(f);c.$el.height(h),0==c._lastWidth&&(c._lastWidth=e),b&&c.getContainerWidth()<e&&c.layout(!1,!1)},render:function(a){for(var b,c=0,d=a.items.length;c<d;c++)b=a.items[c],a.visible?b.$item.css({width:b.width,height:a.height,top:b.top,left:b.left,display:""}).addClass("fg-positioned"):b.$item.css("display","none")},position:function(a,b,c,d){var e=this,f=a.items[a.items.length-1],g=b-(f.left+f.width);a.index>0&&(c+=e.options.gutter),a.top=c;for(var h,i=0,j=a.items.length;i<j;i++)h=a.items[i],h.top=c,"center"===d?h.left+=g/2:"right"===d&&(h.left+=g);return c+a.height},items:function(){return a.map(this._items,function(a){return{index:a.index,width:a.width,height:a.height,$item:a.$item,$thumb:a.$thumb,top:a.top,left:a.left}})},rows:function(a){for(var b=this,c=b.items(),d=[],e=c.length>0,f=-1,g=0;e;){f+=1,f>0&&(g+=b.options.gutter);for(var h,i,j,k={index:f,visible:!0,top:g,width:0,height:0,items:[]},l=[],m=0,n=0,o=c.length;n<o&&(i=c[n],!((h=k.width+i.width)>a&&n>0));n++)h>a&&0==n&&(h=a,j=a/i.width,i.width=b.round(i.width*j),i.height=b.round(i.height*j),k.height=i.height),i.top=k.top,n>0&&(m+=b.options.gutter),n!==o-1&&(h+=b.options.gutter),i.left=m,m+=i.width,i.height>k.height&&(k.height=i.height),k.width=h,k.items.push(i),l.push(n);if(0===l.length){e=!1;break}l.sort(function(a,b){return b-a});for(var p=0,q=l.length;p<q;p++)c.splice(l[p],1);d.push(k),e=c.length>0}return d},onWindowResize:function(a){a.data.self.layout()}}),b.Portfolio.defaults={gutter:40,align:"center"}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c){b.PortfolioTemplate=b.Template.extend({construct:function(a,b){this._super(a,b),this.portfolio=null},onPreInit:function(a,c){c.portfolio=new b.Portfolio(c.$el.get(0),c.template)},onInit:function(a,b){b.portfolio.init()},onFirstLoad:function(a,b){b.portfolio.layout(!0)},onReady:function(a,b){b.portfolio.layout(!0)},onDestroy:function(a,b){b.portfolio.destroy()},onLayout:function(a,b){b.portfolio.layout(!0)},onParsedItems:function(a,b,c){(b.initialized||b.initializing)&&b.portfolio.layout(!0)},onAppendedItems:function(a,b,c){(b.initialized||b.initializing)&&b.portfolio.layout(!0)},onDetachedItems:function(a,b,c){b.initialized&&b.portfolio.layout(!0)}}),b.template.register("simple_portfolio",b.PortfolioTemplate,{gutter:40},{container:"foogallery fg-simple_portfolio"})}(FooGallery.$,FooGallery,FooGallery.utils),function(a,b,c,d){b.ImageViewerTemplate=b.Template.extend({construct:function(b,c){this._super(d.extend({},b,{paging:{pushOrReplace:"replace",theme:"fg-light",type:"default",size:1,position:"none",scrollToTop:!1}}),c),this.$inner=a(),this.$current=a(),this.$total=a(),this.$prev=a(),this.$next=a()},createChildren:function(){var b=this;return a("<div/>",{class:b.cls.inner}).append(a("<div/>",{class:b.cls.innerContainer
11
- }),a("<div/>",{class:b.cls.controls}).append(a("<div/>",{class:b.cls.prev}).append(a("<span/>",{text:b.il8n.prev})),a("<label/>",{class:b.cls.count,text:b.il8n.count}).prepend(a("<span/>",{class:b.cls.countCurrent,text:"0"})).append(a("<span/>",{class:b.cls.countTotal,text:"0"})),a("<div/>",{class:b.cls.next}).append(a("<span/>",{text:b.il8n.next}))))},destroyChildren:function(){var a=this;a.$el.find(a.sel.inner).remove()},onPreInit:function(a,b){b.$inner=b.$el.find(b.sel.innerContainer),b.$current=b.$el.find(b.sel.countCurrent),b.$total=b.$el.find(b.sel.countTotal),b.$prev=b.$el.find(b.sel.prev),b.$next=b.$el.find(b.sel.next)},onInit:function(a,b){b.template.attachFooBox&&b.$el.on("foobox.previous",{self:b},b.onFooBoxPrev).on("foobox.next",{self:b},b.onFooBoxNext),b.$prev.on("click",{self:b},b.onPrevClick),b.$next.on("click",{self:b},b.onNextClick)},onFirstLoad:function(a,b){b.update()},onDestroy:function(a,b){b.template.attachFooBox&&b.$el.off({"foobox.previous":b.onFooBoxPrev,"foobox.next":b.onFooBoxNext}),b.$prev.off("click",b.onPrevClick),b.$next.off("click",b.onNextClick)},onAppendItem:function(a,b,c){a.preventDefault(),b.$inner.append(c.$el),c.fix(),c.isAttached=!0},onAfterPageChange:function(a,b,c,d,e){e||b.update()},onAfterFilterChange:function(a,b){b.update()},update:function(){this.pages&&(this.$current.text(this.pages.current),this.$total.text(this.pages.total))},prev:function(){this.pages&&(this.template.loop&&1===this.pages.current?this.pages.last():this.pages.prev(),this.update())},next:function(){this.pages&&(this.template.loop&&this.pages.current===this.pages.total?this.pages.first():this.pages.next(),this.update())},onFooBoxPrev:function(a){a.data.self.prev()},onFooBoxNext:function(a){a.data.self.next()},onPrevClick:function(a){a.preventDefault(),a.stopPropagation(),a.data.self.prev()},onNextClick:function(a){a.preventDefault(),a.stopPropagation(),a.data.self.next()}}),b.template.register("image-viewer",b.ImageViewerTemplate,{template:{attachFooBox:!1,loop:!1}},{container:"foogallery fg-image-viewer",inner:"fiv-inner",innerContainer:"fiv-inner-container",controls:"fiv-ctrls",prev:"fiv-prev",next:"fiv-next",count:"fiv-count",countCurrent:"fiv-count-current",countTotal:"fiv-count-total"},{prev:"Prev",next:"Next",count:"of"})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.obj),function(a,b,c){b.ThumbnailTemplate=b.Template.extend({construct:function(b,d){this._super(c.extend({},b,{filtering:{type:"none"},paging:{type:"none"}}),d),this.$hidden=a()},createChildren:function(){var b=this;return b.$hidden=a("<div/>",{class:b.cls.hidden})},destroyChildren:function(){var a=this;a.$el.find(a.sel.hidden).remove()},onPreInit:function(a,b){b.$hidden=b.$el.find(b.sel.hidden)},onPostInit:function(b,c){for(var d,e=c.items.all().slice(1),f=0,g=e.length;f<g;f++)d=e[f],c.$hidden.append(a("<a/>",{href:d.href,rel:"lightbox["+c.id+"]"}).attr(d.attr.anchor));c.items.setAll(c.items.all().slice(0,1))}}),b.template.register("thumbnail",b.ThumbnailTemplate,null,{container:"foogallery fg-thumbnail",hidden:"fg-st-hidden"})}(FooGallery.$,FooGallery,FooGallery.utils.obj),function(a,b,c,d){b.triggerPostLoad=function(b,c,d,e,f){if("first-load"===b.type||c.initialized&&("after-page-change"===b.type&&!f||"after-filter-change"===b.type))try{a("body").trigger("post-load")}catch(a){console.error(a)}},b.autoDefaults={on:{"first-load.foogallery after-page-change.foogallery after-filter-change.foogallery":b.triggerPostLoad}},b.auto=function(a){b.autoDefaults=d.merge(b.autoDefaults,a)},a(function(){a('[id^="foogallery-gallery-"]:not(.fg-ready)').foogallery(b.autoDefaults)}),c.ready(function(){a('[id^="foogallery-gallery-"].fg-ready').foogallery(b.autoDefaults)})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.obj);
1
  /*
2
  * FooGallery - The Most Intuitive and Extensible Gallery Creation and Management Tool Ever Created for WordPress
3
+ * @version 1.1.8
4
  * @link
5
  * @copyright Steven Usher & Brad Vincent 2015
6
  * @license Released under the GPLv3 license.
7
  */
8
 
9
  !function(a,b){b.$=a}(jQuery,window.FooGallery=window.FooGallery||{}),function(a){if(!a)return void console.warn("jQuery must be included in the page prior to the FooGallery.utils library.");var b={$:a,version:"0.0.8"};b.versionCompare=function(a,b){function c(a){for(var b=a.split("."),c=0,d=b.length;c<d;c++)b[c]=parseInt(b[c]),isNaN(b[c])&&(b[c]=0);return b}if(!/[\d.]/.test(a)||!/[\d.]/.test(b))return NaN;for(var d=c(a),e=c(b);d.length<e.length;)d.push(0);for(;e.length<d.length;)e.push(0);for(var f=0;f<d.length;++f){if(e.length==f)return 1;if(d[f]!=e[f])return d[f]>e[f]?1:-1}return d.length!=e.length?-1:0},!function(){try{return!!window.FooGallery.utils}catch(a){return!1}}()?window.FooGallery.utils=b:b.versionCompare(b.version,window.FooGallery.utils.version)>0?(console.warn("An older version of FooGallery.utils ("+window.FooGallery.utils.version+") already exists in the page, version "+b.version+" will override it."),window.FooGallery.utils=b):console.warn("A newer version of FooGallery.utils ("+window.FooGallery.utils.version+") already exists in the page, version "+b.version+" will not register itself.")}(jQuery),function(a,b){"0.0.8"===b.version&&(b.is={},b.is.array=function(a){return"[object Array]"===Object.prototype.toString.call(a)},b.is.boolean=function(a){return"[object Boolean]"===Object.prototype.toString.call(a)},b.is.element=function(a){return"object"==typeof HTMLElement?a instanceof HTMLElement:!!a&&"object"==typeof a&&null!==a&&1===a.nodeType&&"string"==typeof a.nodeName},b.is.empty=function(a){if(b.is.undef(a)||null===a)return!0;if(b.is.number(a)&&0==a)return!0;if(b.is.boolean(a)&&!1===a)return!0;if(b.is.string(a)&&0===a.length)return!0;if(b.is.array(a)&&0===a.length)return!0;if(b.is.jq(a)&&0===a.length)return!0;if(b.is.hash(a)){for(var c in a)if(a.hasOwnProperty(c))return!1;return!0}return!1},b.is.error=function(a){return"[object Error]"===Object.prototype.toString.call(a)},b.is.fn=function(a){return a===window.alert||"[object Function]"===Object.prototype.toString.call(a)},b.is.hash=function(a){return b.is.object(a)&&a.constructor===Object&&!a.nodeType&&!a.setInterval},b.is.jq=function(c){return!b.is.undef(a)&&c instanceof a},b.is.number=function(a){return"[object Number]"===Object.prototype.toString.call(a)&&!isNaN(a)},b.is.object=function(a){return"[object Object]"===Object.prototype.toString.call(a)&&!b.is.undef(a)&&null!==a},b.is.promise=function(a){return b.is.object(a)&&b.is.fn(a.then)&&b.is.fn(a.promise)},b.is.size=function(a){return!!(b.is.string(a)&&!b.is.empty(a)||b.is.number(a))&&/^(auto|none|(?:[\d\.]*)+?(?:%|px|mm|q|cm|in|pt|pc|em|ex|ch|rem|vh|vw|vmin|vmax)?)$/.test(a)},b.is.string=function(a){return"[object String]"===Object.prototype.toString.call(a)},b.is.undef=function(a){return void 0===a})}(FooGallery.utils.$,FooGallery.utils),function(a,b,c){if("0.0.8"===b.version){b.fn={};var d=Function.prototype.toString;b.fn.CONTAINS_SUPER=/xyz/.test(d.call(function(){xyz}))?/\b_super\b/:/.*/,b.fn.addOrOverride=function(a,e,f){if(c.object(a)&&c.string(e)&&!c.empty(e)&&c.fn(f)){var g=a[e],h=c.fn(g)&&b.fn.CONTAINS_SUPER.test(d.call(f));a[e]=h?function(a,b){return function(){var c=this._super;this._super=a;var d=b.apply(this,arguments);return this._super=c,d}}(g,f):f}},b.fn.apply=function(a,b){function d(){return a.apply(this,b)}return b=c.array(b)?b:[],d.prototype=a.prototype,new d},b.fn.arg2arr=function(a){return Array.prototype.slice.call(a)},b.fn.check=function(d,e,f,g){function h(a){return function(){return a.apply(d,arguments)}}return f=c.fn(f)?f:a.noop,d=c.object(d)?d:window,e=c.string(e)?b.fn.fetch(e,g):e,h(c.fn(e)?e:f)},b.fn.fetch=function(b,d){return!c.string(b)||c.empty(b)?null:(d=c.object(d)?d:window,a.each(b.split("."),function(a,b){if(!d[b])return!1;d=d[b]}),c.fn(d)?d:null)},b.fn.enqueue=function(d,e,f,g){function h(a,b){try{return n.push(a),b.apply(a,i)}catch(a){return j.reject(a,n),j}}var i=b.fn.arg2arr(arguments),j=a.Deferred(),k=a.Deferred(),l=k.promise(),m=[],n=[],o=!0;return d=i.shift(),e=i.shift(),a.each(d,function(a,d){c.fn(d[e])&&(l=l.then(function(){if(!o){var a=b.fn.arg2arr(arguments);m.push(a)}return o=!1,h(d,d[e])}))}),l.then(function(){if(!o){var a=b.fn.arg2arr(arguments);m.push(a)}o=!1,j.resolve(m)}),l.fail(function(){var a=b.fn.arg2arr(arguments);a.push(n),j.reject.apply(j,a)}),k.resolve(),j.promise()},b.fn.when=function(b){if(!c.array(b)||c.empty(b))return a.when();for(var d=a.Deferred(),e=[],f=b.length,g=0;g<b.length;g++)b[g].then(function(a){e.push(a)}).always(function(){--f||d.resolve(e)});return d.promise()},b.fn.rejectWith=function(c,d){var e=a.Deferred(),f=b.fn.arg2arr(arguments);return e.reject.apply(e,f).promise()},b.fn.resolveWith=function(c,d){var e=a.Deferred(),f=b.fn.arg2arr(arguments);return e.resolve.apply(e,f).promise()},b.fn.resolved=a.Deferred().resolve().promise(),b.fn.rejected=a.Deferred().reject().promise()}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b){if("0.0.8"===a.version){a.url={};var c=document.createElement("a");a.url.parts=function(a){return c.href=a,{hash:c.hash,host:c.host,hostname:c.hostname,href:c.href,origin:c.origin,pathname:c.pathname,port:c.port,protocol:c.protocol,search:c.search}},a.url.full=function(a){return!b.string(a)||b.empty(a)?null:(c.href=a,c.href)},a.url.param=function(a,c,d){if(!b.string(a)||!b.string(c)||b.empty(c))return a;var e,f,g,h;return b.undef(d)?(e=new RegExp("[?|&]"+c+"=([^&;]+?)(&|#|;|$)"),f=e.exec(a)||[,""],g=f[1].replace(/\+/g,"%20"),b.string(g)&&!b.empty(g)?decodeURIComponent(g):null):(""===d||null===d?(e=new RegExp("^([^#]*?)(([^#]*)&)?"+c+"(=[^&#]*)?(&|#|$)"),g=a.replace(e,"$1$3$5").replace(/^([^#]*)((\?)&|\?(#|$))/,"$1$3$4")):(e=new RegExp("([?&])"+c+"[^&]*"),h=c+"="+encodeURIComponent(d),(g=a.replace(e,"$1"+h))!==a||e.test(g)||(g+=(-1!==g.indexOf("?")?"&":"?")+h)),g)}}}(FooGallery.utils,FooGallery.utils.is),function(a,b,c){"0.0.8"===a.version&&(a.str={},a.str.camel=function(a){return b.empty(a)?a:a.toUpperCase()===a?a.toLowerCase():a.replace(/^([A-Z])|[-\s_]+(\w)/g,function(a,c,d){return b.string(d)?d.toUpperCase():c.toLowerCase()})},a.str.contains=function(a,c,d){return!(!b.string(a)||b.empty(a)||!b.string(c)||b.empty(c))&&(c.length<=a.length&&-1!==(d?a.toUpperCase().indexOf(c.toUpperCase()):a.indexOf(c)))},a.str.containsWord=function(a,c,d){if(!b.string(a)||b.empty(a)||!b.string(c)||b.empty(c)||a.length<c.length)return!1;for(var e=a.split(/\W/),f=0,g=e.length;f<g;f++)if(d?e[f].toUpperCase()==c.toUpperCase():e[f]==c)return!0;return!1},a.str.endsWith=function(a,c){return!b.string(a)||b.empty(a)||!b.string(c)||b.empty(c)?a==c:a.slice(a.length-c.length)==c},a.str.escapeRegExp=function(a){return b.empty(a)?a:a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")},a.str.fnv1a=function(a){if(!b.string(a)||b.empty(a))return null;var c,d,e=2166136261;for(c=0,d=a.length;c<d;c++)e^=a.charCodeAt(c),e+=(e<<1)+(e<<4)+(e<<7)+(e<<8)+(e<<24);return e>>>0},a.str.from=function(c,d){return!b.string(c)||b.empty(c)||!b.string(d)||b.empty(d)?null:a.str.contains(c,d)?c.substring(c.indexOf(d)+d.length):null},a.str.join=function(d,e,f){if(!b.string(d)||!b.string(e))return null;var g=c.arg2arr(arguments);d=g.shift();var h,i,j=g.shift();for(h=0,i=g.length;h<i;h++)e=g[h],b.empty(e)||(a.str.endsWith(j,d)&&(j=j.slice(0,j.length-d.length)),a.str.startsWith(e,d)&&(e=e.slice(d.length)),j+=d+e);return j},a.str.startsWith=function(a,c){return!b.empty(a)&&!b.empty(c)&&a.slice(0,c.length)==c},a.str.until=function(c,d){return b.empty(c)||b.empty(d)?c:a.str.contains(c,d)?c.substring(0,c.indexOf(d)):c},a.str.format=function(a,d,e){var f=c.arg2arr(arguments);if(a=f.shift(),b.empty(a)||b.empty(f))return a;1===f.length&&(b.array(f[0])||b.object(f[0]))&&(f=f[0]);for(var g in f)a=a.replace(new RegExp("\\{"+g+"\\}","gi"),f[g]);return a})}(FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn),function(a,b,c,d,e){if("0.0.8"===b.version){b.obj={};var f=function(){};b.obj.create=function(a){if(!c.object(a))throw TypeError("Argument must be an object");f.prototype=a;var b=new f;return f.prototype=null,b},b.obj.extend=function(e,f,g){e=c.object(e)?e:{};var h=d.arg2arr(arguments);return h.shift(),a.each(h,function(a,c){b.obj.merge(e,c)}),e},b.obj.merge=function(a,d){a=c.hash(a)?a:{},d=c.hash(d)?d:{};for(var e in d)d.hasOwnProperty(e)&&(c.hash(d[e])?(a[e]=c.hash(a[e])?a[e]:{},b.obj.merge(a[e],d[e])):c.array(d[e])?a[e]=d[e].slice():a[e]=d[e]);return a},b.obj.mergeValid=function(d,e,f,g){if(!c.hash(f)||!c.hash(e))return d;e=c.hash(e)?e:{},g=c.hash(g)?g:{};var h,i,j;for(h in e)e.hasOwnProperty(h)&&c.fn(e[h])&&(i=c.array(g[h])?g[h]:c.string(g[h])?[g[h]]:[h],a.each(i,function(a,g){if(j=b.obj.prop(f,g),!c.undef(j))return e[h](j)?(b.obj.prop(d,h,j),!1):void 0}));return d},b.obj.prop=function(b,d,f){if(c.object(b)&&!c.empty(d)){var g,h;if(c.undef(f))return e.contains(d,".")?(g=d.split("."),h=g.length-1,a.each(g,function(a,d){if(a===h)f=b[d];else{if(!c.hash(b[d]))return!1;b=b[d]}})):c.undef(b[d])||(f=b[d]),f;e.contains(d,".")?(g=d.split("."),h=g.length-1,a.each(g,function(a,d){a===h?b[d]=f:b=c.hash(b[d])?b[d]:b[d]={}})):c.undef(b[d])||(b[d]=f)}}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.str),function(a,b,c){if("0.0.8"===b.version){b.ready=function(a){function c(){try{a.call(window,b.$)}catch(a){console.error(a)}}(Function("/*@cc_on return true@*/")()?"complete"===document.readyState:"loading"!==document.readyState)?c():document.addEventListener("DOMContentLoaded",c,!1)};var d=0;b.uniqueId=function(a,b){var e=a.attr("id");return c.empty(e)&&(b=c.string(b)&&!c.empty(b)?b:"uid-",e=b+ ++d,a.attr("id",e).data("__uniqueId__",!0)),e},b.removeUniqueId=function(a){a.data("__uniqueId__")&&a.removeAttr("id").removeData("__uniqueId__")}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c){if("0.0.8"===b.version){b.transition={};var d=document.createElement("div");b.transition.supported=function(a){var b=a.style;return c.string(b.transition)||c.string(b.WebkitTransition)||c.string(b.MozTransition)||c.string(b.msTransition)||c.string(b.OTransition)}(d),b.transition.end=function(a){var b=a.style;return c.string(b.transition)?"transitionend":c.string(b.WebkitTransition)?"webkitTransitionEnd":c.string(b.MozTransition)?"transitionend":c.string(b.msTransition)?"msTransitionEnd":c.string(b.OTransition)?"oTransitionEnd":null}(d),b.transition.duration=function(a,b){if(b=c.number(b)?b:0,!c.jq(a))return b;var d=a.css("transition-duration");if(/^([\d\.]*)+?(ms|s)$/i.test(d)){var e=d.match(/^([\d\.]*)+?(ms|s)$/i),f=parseFloat(e[1]);return"s"===e[2].toLowerCase()&&(f*=1e3),f}return b},b.transition.start=function(d,e,f,g){var h=a.Deferred();if(d=d.first(),b.transition.supported){var i=d.data("transition_safety");c.hash(i)&&c.number(i.timer)&&(clearTimeout(i.timer),d.removeData("transition_safety").off(b.transition.end+".utils"),i.deferred.reject()),g=c.number(g)?g:b.transition.duration(d)+50,i={deferred:h,timer:setTimeout(function(){d.removeData("transition_safety").off(b.transition.end+".utils"),h.resolve()},g)},d.data("transition_safety",i),d.on(b.transition.end+".utils",function(a){d.is(a.target)&&(clearTimeout(i.timer),d.removeData("transition_safety").off(b.transition.end+".utils"),h.resolve())})}return setTimeout(function(){c.fn(e)?e.apply(d.get(0),[d]):d.toggleClass(e,f),b.transition.supported||h.resolve()},20),h.promise()}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d,e){"0.0.8"===b.version&&(b.Class=function(){},b.Class.extend=function(a){function f(){if(!c.fn(this.construct))throw new SyntaxError('FooGallery.utils.Class objects must be constructed with the "new" keyword.');this.construct.apply(this,arguments)}a=c.hash(a)?a:{};var g=d.create(this.prototype);for(var h in a)a.hasOwnProperty(h)&&e.addOrOverride(g,h,a[h]);return g.construct=c.fn(g.construct)?g.construct:function(){},f.prototype=g,f.prototype.constructor=c.fn(g.__ctor__)?g.__ctor__:f,f.extend=b.Class.extend,f.override=b.Class.override,f},b.Class.override=function(a,b){e.addOrOverride(this.prototype,a,b)})}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.obj,FooGallery.utils.fn),function(a,b,c){if("0.0.8"===b.version){b.Bounds=b.Class.extend({construct:function(){var a=this;a.top=0,a.right=0,a.bottom=0,a.left=0,a.width=0,a.height=0},inflate:function(a){var b=this;return c.number(a)&&(b.top-=a,b.right+=a,b.bottom+=a,b.left-=a,b.width+=2*a,b.height+=2*a),b},intersects:function(a){var b=this;return b.left<=a.right&&a.left<=b.right&&b.top<=a.bottom&&a.top<=b.bottom}});var d;b.getViewportBounds=function(c){d||(d=a(window));var e=new b.Bounds;return e.top=d.scrollTop(),e.left=d.scrollLeft(),e.width=d.width(),e.height=d.height(),e.right=e.left+e.width,e.bottom=e.top+e.height,e.inflate(c),e},b.getElementBounds=function(d){c.jq(d)||(d=a(d));var e=new b.Bounds;if(0!==d.length){var f=d.offset();e.top=f.top,e.left=f.left,e.width=d.width(),e.height=d.height()}return e.right=e.left+e.width,e.bottom=e.top+e.height,e}}}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d){"0.0.8"===b.version&&(b.Factory=b.Class.extend({construct:function(){this.registered={}},contains:function(a){return!c.undef(this.registered[a])},load:function(b,e,f){var g,h,i=this,j=d.arg2arr(arguments),k=[],l=[];b=j.shift()||{};for(g in i.registered)if(i.registered.hasOwnProperty(g)){var m=i.registered[g];b.hasOwnProperty(g)&&(h=b[g],c.string(h)&&(h=d.fetch(b[g])),c.fn(h)&&(m={name:g,klass:h,priority:i.registered[g].priority})),k.push(m)}for(g in b)b.hasOwnProperty(g)&&!i.registered.hasOwnProperty(g)&&(h=b[g],c.string(h)&&(h=d.fetch(b[g])),c.fn(h)&&k.push({name:g,klass:h,priority:0}));return k.sort(function(a,b){return b.priority-a.priority}),a.each(k,function(a,b){c.fn(b.klass)&&l.push(d.apply(b.klass,j))}),l},make:function(a,b,e){var f,g=this,h=d.arg2arr(arguments);return a=h.shift(),f=g.registered[a],c.hash(f)&&c.fn(f.klass)?d.apply(f.klass,h):null},names:function(b){b=!!c.boolean(b)&&b;var d,e=[];if(b){var f=[];for(d in this.registered)this.registered.hasOwnProperty(d)&&f.push(this.registered[d]);f.sort(function(a,b){return b.priority-a.priority}),a.each(f,function(a,b){e.push(b.name)})}else for(d in this.registered)this.registered.hasOwnProperty(d)&&e.push(d);return e},register:function(a,b,d){if(!c.string(a)||c.empty(a)||!c.fn(b))return!1;d=c.number(d)?d:0;var e=this.registered[a];return this.registered[a]={name:a,klass:b,priority:c.undef(e)?d:e.priority},!0}}))}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn),function(a,b,c){if("0.0.8"===a.version){var d=!1;try{d=!!window.localStorage}catch(a){d=!1}a.Debugger=a.Class.extend({construct:function(a){this.key=a,this.enabled=!!d&&!!localStorage.getItem(this.key)},enable:function(){d&&(this.enabled=!0,localStorage.setItem(this.key,this.enabled))},disable:function(){d&&(this.enabled=!1,localStorage.removeItem(this.key))},log:function(a,c){this.enabled&&console.log.apply(console,b.arg2arr(arguments))},logf:function(a,d,e){if(this.enabled){var f=b.arg2arr(arguments);a=f.shift(),d=f.shift(),f.unshift(c.format(a,d)),this.log.apply(this,f)}}})}}(FooGallery.utils,FooGallery.utils.fn,FooGallery.utils.str),function(a,b,c){"0.0.8"===b.version&&(b.Throttle=b.Class.extend({construct:function(a){this.id=null,this.active=!1,this.idle=c.number(a)?a:0},limit:function(a){if(c.fn(a)){this.clear();var b=this;this.active=!0,this.id=setTimeout(function(){b.active=!1,b.id=null,a()},this.idle)}},clear:function(){c.number(this.id)&&(clearTimeout(this.id),this.active=!1,this.id=null)}}))}(FooGallery.utils.$,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d,e){b.debug=new c.Debugger("__FooGallery__"),c.selectify=function(b){if(d.empty(b))return null;if(d.hash(b)){var e,f={};for(var g in b)b.hasOwnProperty(g)&&(e=c.selectify(b[g]))&&(f[g]=e);return f}return d.string(b)||d.array(b)?(d.string(b)&&(b=[b]),a.map(b,function(a){return d.string(a)?"."+a.split(/\s/g).join("."):null}).join(",")):null},b.emptyImage="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",b.dataTemplate="__FooGallery__",b.dataItem="__FooGalleryItem__",b.init=function(a,c){return b.template.make(a,c).initialize()},b.initAll=function(c){return e.when(a(".foogallery").map(function(a,d){return b.init(c,d)}).get())},b.parseSrc=function(b,c,e,f,g,h){if(!d.string(b))return null;if(!d.string(f))return b;var i=a.map(f.replace(/(\s[\d.]+[whx]),/g,"$1 @,@ ").split(" @,@ "),function(a){return{url:/^\s*(\S*)/.exec(a)[1],w:parseFloat((/\S\s+(\d+)w/.exec(a)||[0,1/0])[1]),h:parseFloat((/\S\s+(\d+)h/.exec(a)||[0,1/0])[1]),x:parseFloat((/\S\s+([\d.]+)x/.exec(a)||[0,1])[1])}});if(!i.length)return b;i.unshift({url:b,w:i[0].w!==1/0&&i[0].h===1/0?c:1/0,h:i[0].h!==1/0&&i[0].w===1/0?e:1/0,x:1});var j,k=window.devicePixelRatio||1,l={w:g*k,h:h*k,x:k};for(j in l)l.hasOwnProperty(j)&&(i=a.grep(i,function(a,b){return function(c){return c[a]>=l[a]||c[a]===b}}(j,Math.max.apply(null,a.map(i,function(a){return a[j]})))));for(j in l)l.hasOwnProperty(j)&&(i=a.grep(i,function(a,b){return function(c){return c[a]===b}}(j,Math.min.apply(null,a.map(i,function(a){return a[j]})))));return i[0].url},a.fn.foogallery=function(c,e){return this.each(function(f,g){if(d.string(c)){var h=a.data(g,b.dataTemplate);if(h instanceof b.Template)switch(c){case"layout":return void h.layout();case"destroy":return void h.destroy()}}else b.template.make(c,g).initialize().then(function(a){d.fn(e)&&e(a)})})}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn),function(a,b,c,d,e){var f="__FooGallerySwipe__",g="ontouchstart"in window,h=window.navigator.msPointerEnabled&&!window.navigator.pointerEnabled&&!g,i=(window.navigator.pointerEnabled||window.navigator.msPointerEnabled)&&!g,j=g||i;b.Swipe=c.Class.extend({construct:function(b,c){var d=this,f=".fgswipe";d.$el=a(b),d.opt=e.extend({threshold:20,allowPageScroll:!1,swipe:a.noop,data:{}},c),d.active=!1,d.startPoint=null,d.endPoint=null,d.events={start:(j?i?h?"MSPointerDown":"pointerdown":"touchstart":"mousedown")+f,move:(j?i?h?"MSPointerMove":"pointermove":"touchmove":"mousemove")+f,end:(j?i?h?"MSPointerUp":"pointerup":"touchend":"mouseup")+f,leave:(j?i?"mouseleave":null:"mouseleave")+f}},init:function(){var a=this;a.$el.on(a.events.start,{self:a},a.onStart),a.$el.on(a.events.move,{self:a},a.onMove),a.$el.on(a.events.end,{self:a},a.onEnd),d.string(a.events.leave)&&a.$el.on(a.events.leave,{self:a},a.onEnd),a.$el.data(f,a)},destroy:function(){var a=this;a.$el.off(a.events.start,a.onStart),a.$el.off(a.events.move,a.onMove),a.$el.off(a.events.end,a.onEnd),d.string(a.events.leave)&&a.$el.off(a.events.leave,a.onEnd),a.$el.removeData(f)},getAngle:function(a,b){var c=Math.atan2(a.x-b.x,a.y-b.y),d=Math.round(180*c/Math.PI);return 360-(d<0?360-Math.abs(d):d)},getDistance:function(a,b){var c=b.x-a.x,d=b.y-a.y;return c*=c,d*=d,Math.sqrt(c+d)},getDirection:function(a,b){var c=this,d=c.getAngle(a,b);return d>337.5||d<=22.5?"N":d>22.5&&d<=67.5?"NE":d>67.5&&d<=112.5?"E":d>112.5&&d<=157.5?"SE":d>157.5&&d<=202.5?"S":d>202.5&&d<=247.5?"SW":d>247.5&&d<=292.5?"W":d>292.5&&d<=337.5?"NW":"NONE"},getPoint:function(a){var b;return j&&!d.empty(b=a.originalEvent.touches||a.touches)?{x:b[0].pageX,y:b[0].pageY}:d.number(a.pageX)&&d.number(a.pageY)?{x:a.pageX,y:a.pageY}:null},getOffset:function(a){var b=this,c=b.$el.offset();return{left:a.x-c.left,top:a.y-c.top}},onStart:function(a){var b=a.data.self,c=b.getPoint(a);d.empty(c)||(b.active=!0,b.startPoint=b.endPoint=c)},onMove:function(a){var b=a.data.self,c=b.getPoint(a);b.active&&!d.empty(c)&&(b.endPoint=c,b.opt.allowPageScroll||a.preventDefault())},onEnd:function(a){var b=a.data.self;if(b.active){b.active=!1;var c={startPoint:b.startPoint,endPoint:b.endPoint,startOffset:b.getOffset(b.startPoint),endOffset:b.getOffset(b.endPoint),angle:b.getAngle(b.startPoint,b.endPoint),distance:b.getDistance(b.startPoint,b.endPoint),direction:b.getDirection(b.startPoint,b.endPoint)};if(b.opt.threshold>0&&c.distance<b.opt.threshold)return;b.opt.swipe.apply(this,[c,b.opt.data]),b.startPoint=null,b.endPoint=null}}}),a.fn.fgswipe=function(c){return this.each(function(){var e=a(this),g=e.data(f);if(g instanceof b.Swipe){if(d.string(c)&&d.fn(g[c]))return void g[c]();g.destroy()}d.hash(c)&&(g=new b.Swipe(this,c),g.init())})}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.obj),function(a,b,c,d,e,f){b.TemplateFactory=c.Factory.extend({construct:function(){this.registered={}},register:function(a,b,c,e,f,g){var h=this,i=h._super(a,b,g);if(i){var j=h.registered;j[a].opt=d.hash(c)?c:{},j[a].cls=d.hash(e)?e:{},j[a].il8n=d.hash(f)?f:{}}return i},make:function(b,c){c=d.jq(c)?c:a(c),b=f.extend({},b,c.data("foogallery"));var e=this,g=e.type(b,c);return e.contains(g)?(b=e.options(g,b),e._super(g,b,c)):null},type:function(b,e){e=d.jq(e)?e:a(e);var f=this,g=d.hash(b)&&d.hash(b)&&d.string(b.type)&&f.contains(b.type)?b.type:"core";if("core"===g&&e.length>0)for(var h=f.registered,i=f.names(!0),j=0,k=i.length;j<k;j++)if(h.hasOwnProperty(i[j])){var l=i[j],m=h[l].cls;if(d.string(m.container)){var n=c.selectify(m.container);if(e.is(n)){g=i[j];break}}}return g},configure:function(a,b,c,d){var e=this;if(e.contains(a)){var g=e.registered;f.extend(g[a].opt,b),f.extend(g[a].cls,c),f.extend(g[a].il8n,d)}},options:function(a,c){c=f.extend({type:a},c);var e=this,g=e.registered,h=g.core.opt,i=g.core.cls,j=g.core.il8n;return d.hash(c.cls)||(c.cls={}),d.hash(c.il8n)||(c.il8n={}),d.undef(b.filtering)||(c=b.filtering.merge(c)),d.undef(b.paging)||(c=b.paging.merge(c)),"core"!==a&&e.contains(a)?(c=f.extend({},h,g[a].opt,c),c.cls=f.extend({},i,g[a].cls,c.cls),c.il8n=f.extend({},j,g[a].il8n,c.il8n)):(c=f.extend({},h,c),c.cls=f.extend({},i,c.cls),c.il8n=f.extend({},j,c.il8n)),c}}),b.template=new b.TemplateFactory}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d,e){a.PagingFactory=b.Factory.extend({construct:function(){this.registered={}},register:function(a,b,d,e,f,g,h){var i=this,j=i._super(a,b,h);if(j){var k=i.registered;k[a].ctrl=c.fn(d)?d:null,k[a].opt=c.hash(e)?e:{},k[a].cls=c.hash(f)?f:{},k[a].il8n=c.hash(g)?g:{}}return j},type:function(a){var b,d=this;return c.hash(a)&&c.hash(b=a.paging)&&c.string(b.type)&&d.contains(b.type)?b.type:null},merge:function(a){a=e.extend({},a);var b=this,d=b.type(a),f=b.registered,g=f.default.opt,h=f.default.cls,i=f.default.il8n,j=c.hash(a.paging)?a.paging:{},k=c.hash(a.cls)&&c.hash(a.cls.paging)?e.extend({},a.cls.paging):{},l=c.hash(a.il8n)&&c.hash(a.il8n.paging)?e.extend({},a.il8n.paging):{};return c.hash(a.cls)||(a.cls={}),c.hash(a.il8n)||(a.il8n={}),"default"!==d&&b.contains(d)?(a.paging=e.extend({},g,f[d].opt,j,{type:d}),a.cls=e.extend(a.cls,{paging:h},{paging:f[d].cls},{paging:k}),a.il8n=e.extend(a.il8n,{paging:i},{paging:f[d].il8n},{paging:l})):(a.paging=e.extend({},g,j,{type:d}),a.cls=e.extend(a.cls,{paging:h},{paging:k}),a.il8n=e.extend(a.il8n,{paging:i},{paging:l})),a},configure:function(a,b,c,d){var f=this;if(f.contains(a)){var g=f.registered;e.extend(g[a].opt,b),e.extend(g[a].cls,c),e.extend(g[a].il8n,d)}},hasCtrl:function(a){var b=this,d=b.registered[a];return c.hash(d)&&c.fn(d.ctrl)},makeCtrl:function(a,b,d,e){var f=this,g=f.registered[a];return c.hash(g)&&c.fn(g.ctrl)?new g.ctrl(b,d,e):null}}),a.paging=new a.PagingFactory}(FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d,e,f){var g=0;b.Template=c.Class.extend({construct:function(e,f){var h=this;h.namespace=".foogallery-"+ ++g,h.$el=d.jq(f)?f:a(f),h.opt=e,h.template=e.template,h.id=h.$el.prop("id")||e.id,h.cls=e.cls,h.il8n=e.il8n,h.sel=c.selectify(h.cls),h.items=b.components.make("items",h),h.pages=d.undef(b.paging)?null:b.paging.make(e.paging.type,h),h.filter=d.undef(b.filtering)?null:b.filtering.make(e.filtering.type,h),h.state=b.components.make("state",h),h._initialize=null,h.initializing=!1,h.initialized=!1,h.destroying=!1,h.destroyed=!1,h._undo={classes:"",style:"",create:!1,children:!1}},initialize:function(f){var g=this;return d.promise(g._initialize)?g._initialize:(f=d.jq(f)?f:a(f),g._initialize=a.Deferred(function(h){if(g.initializing=!0,0===f.length&&0===g.$el.parent().length)return void h.reject("A parent element is required.");0===g.$el.length&&(g.$el=g.create(),g._undo.create=!0),f.length>0&&g.$el.appendTo(f);var i,j=a.Deferred(),k=j.promise();g.$el.length>0&&(i=g.$el.data(b.dataTemplate))instanceof b.Template?k=k.then(function(){return i.destroy().then(function(){g.$el.data(b.dataTemplate,g)})}):g.$el.data(b.dataTemplate,g),k.then(function(){if(g.destroying)return e.rejectWith("destroy in progress");d.empty(g.opt.on)||g.$el.on(g.opt.on),g._undo.classes=g.$el.attr("class"),g._undo.style=g.$el.attr("style"),g.$el.is(g.sel.container)||g.$el.addClass(g.cls.container);var a=c.selectify(g.opt.classes);return null==a||g.$el.is(a)||g.$el.addClass(g.opt.classes),0==g.$el.children().not(g.sel.item.elem).length&&(g.$el.append(g.createChildren()),g._undo.children=!0),g.raise("pre-init").isDefaultPrevented()?e.rejectWith("pre-init default prevented"):void 0}).then(function(){return g.destroying?e.rejectWith("destroy in progress"):g.opt.delay<=0?e.resolved:a.Deferred(function(a){g._delay=setTimeout(function(){g._delay=null,a.resolve()},g.opt.delay)}).promise()}).then(function(){return g.destroying?e.rejectWith("destroy in progress"):g.raise("init").isDefaultPrevented()?e.rejectWith("init default prevented"):g.items.fetch()}).then(function(){if(g.destroying)return e.rejectWith("destroy in progress");if(g.raise("post-init").isDefaultPrevented())return e.rejectWith("post-init default prevented");var b=g.state.parse();g.state.set(d.empty(b)?g.state.initial():b),a(window).on("scroll"+g.namespace,{self:g},g.throttle(g.onWindowScroll,g.opt.throttle)).on("popstate"+g.namespace,{self:g},g.onWindowPopState)}).then(function(){return g.destroying?e.rejectWith("destroy in progress"):(g.raise("first-load"),g.loadAvailable())}).then(function(){if(g.destroying)return e.rejectWith("destroy in progress");g.initializing=!1,g.initialized=!0,g._check(200),g._check(500),g._check(1e3),g._check(2e3),g._check(5e3),g.raise("ready"),h.resolve(g)}).fail(function(a){h.reject(a)}),j.resolve()}).promise().fail(function(a){console.log("initialize failed",g,a),g.destroy()}))},create:function(){var b=this;return a("<div/>",{id:b.id,class:b.cls.container}).addClass(b.opt.classes)},createChildren:function(){return a()},destroy:function(){var b=this;return b.destroyed?e.resolved:(b.destroying=!0,a.Deferred(function(a){b.initializing&&d.promise(b._initialize)?b._initialize.always(function(){b.destroying=!1,b._destroy(),a.resolve()}):(b.destroying=!1,b._destroy(),a.resolve())}).promise())},_destroy:function(){var c=this;c.destroyed||(c.raise("destroy"),a(window).off(c.namespace),c.state.destroy(),c.filter&&c.filter.destroy(),c.pages&&c.pages.destroy(),c.items.destroy(),d.empty(c.opt.on)||c.$el.off(c.opt.on),c.raise("destroyed"),c.$el.removeData(b.dataTemplate),d.empty(c._undo.classes)?c.$el.removeAttr("class"):c.$el.attr("class",c._undo.classes),d.empty(c._undo.style)?c.$el.removeAttr("style"):c.$el.attr("style",c._undo.style),c._undo.children&&c.destroyChildren(),c._undo.create&&c.$el.remove(),c.$el=c.state=c.items=c.pages=null,c.destroyed=!0,c.initializing=!1,c.initialized=!1)},destroyChildren:function(){},getAvailable:function(){return this.pages?this.pages.available():this.items.available()},loadAvailable:function(){return this.items.load(this.getAvailable())},_check:function(a){a=d.number(a)?a:0;var b=this;setTimeout(function(){!b.initialized||b.destroying&&b.destroyed||b.loadAvailable()},a)},raise:function(c,e){if(!d.string(c)||d.empty(c))return null;e=d.array(e)?e:[];var g=this,h=c.split(".")[0],i=f.camel("on-"+h),j=a.Event(h+".foogallery");return e.unshift(g),g.$el.trigger(j,e),b.debug.logf("{id}|{name}:",{id:g.id,name:h},e),d.fn(g[i])&&(e.unshift(j),g[i].apply(g.$el.get(0),e)),j},layout:function(){var a=this;null!==a._initialize&&a.raise("layout")},throttle:function(a,b){var c=Date.now();return function(){if(c+b-Date.now()<0){var d=e.arg2arr(arguments);a.apply(this,d),c=Date.now()}}},onWindowPopState:function(a){var b=a.data.self,c=a.originalEvent.state;d.empty(c)||c.id!==b.id||(b.state.set(c),b.loadAvailable())},onWindowScroll:function(a){a.data.self.loadAvailable()}}),b.template.register("core",b.Template,{id:null,type:"core",classes:"",on:{},lazy:!0,viewport:200,items:[],delay:100,throttle:50,timeout:6e4,srcset:"data-srcset",src:"data-src",template:{}},{container:"foogallery"},{},-100)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.str),function(a,b){a.Component=b.Class.extend({construct:function(a){this.tmpl=a},destroy:function(){this.tmpl=null}}),a.components=new b.Factory}(FooGallery,FooGallery.utils),function(a,b,c,d){b.State=b.Component.extend({construct:function(a){var b=this;b._super(a),b.apiEnabled=!!window.history&&!!history.replaceState,b.opt=b.tmpl.opt.state,b.enabled=b.opt.enabled,b.pushOrReplace=b.isPushOrReplace(b.opt.pushOrReplace)?b.opt.pushOrReplace:"replace";var c=d.escapeRegExp(b.tmpl.id),e=d.escapeRegExp(b.opt.values),f=d.escapeRegExp(b.opt.pair);b.regex={exists:new RegExp("^#"+c+"\\"+e+".+?"),values:new RegExp("(\\w+)"+f+"([^"+e+"]+)","g")}},destroy:function(){var a=this;a.clear(),a.opt=a.regex={},a._super()},isPushOrReplace:function(b){return-1!==a.inArray(b,["push","replace"])},exists:function(){return this.regex.exists.test(location.hash)&&this.regex.values.test(location.hash)},parse:function(){var b=this,d={};if(b.exists())if(b.enabled){d.id=b.tmpl.id;var e=location.hash.match(b.regex.values);a.each(e,function(e,f){var g=f.split(b.opt.pair);2===g.length&&(d[g[0]]=-1===g[1].indexOf(b.opt.array)?decodeURIComponent(g[1].replace(/\+/g,"%20")):a.map(g[1].split(b.opt.array),function(a){return decodeURIComponent(a.replace(/\+/g,"%20"))}),c.string(d[g[0]])&&!isNaN(d[g[0]])&&(d[g[0]]=parseInt(d[g[0]])))})}else b.apiEnabled?history.replaceState(null,"",location.pathname+location.search):location.hash="#";return d},hashify:function(b){var d=this;if(c.hash(b)){var e=[];return a.each(b,function(b,f){c.empty(f)||"id"===b||(f=c.array(f)?a.map(f,function(a){return encodeURIComponent(a)}).join(d.opt.array):encodeURIComponent(f),e.push(b+d.opt.pair+f))}),e.length>0&&e.unshift("#"+d.tmpl.id),e.join(d.opt.values)}return""},replace:function(a){var b=this;if(b.enabled&&b.apiEnabled){a.id=b.tmpl.id;var d=b.hashify(a),e=c.empty(d);history.replaceState(e?null:a,"",e?location.pathname+location.search:d)}},push:function(a){var b=this;if(b.enabled&&b.apiEnabled){a.id=b.tmpl.id;var d=b.hashify(a),e=c.empty(d);history.pushState(e?null:a,"",e?location.pathname+location.search:d)}},update:function(a,b){var c=this;c.enabled&&c.apiEnabled&&(b=c.isPushOrReplace(b)?b:c.pushOrReplace,c[b](a))},clear:function(){this.exists()&&this.replace({})},initial:function(){var a=this,b=a.tmpl,d={};return b.filter&&!c.empty(b.filter.current)&&(d.f=b.filter.current),b.pages&&b.pages.current>1&&(d.p=b.pages.current),d},get:function(a){var d=this,e=d.tmpl,f={};return a instanceof b.Item&&(f.i=a.id),e.filter&&!c.empty(e.filter.current)&&(f.f=e.filter.current),e.pages&&e.pages.isValid(e.pages.current)&&(f.p=e.pages.current),f},set:function(a){var b=this,d=b.tmpl;if(c.hash(a)){d.items.reset();var e=d.items.get(a.i);if(d.filter){d.filter.rebuild();var f=c.empty(a.f)?[]:a.f;d.filter.set(f,!1)}if(d.pages){d.pages.rebuild();var g=d.pages.number(a.p);e&&!d.pages.contains(g,e)&&(g=d.pages.find(e),g=0!==g?g:1),d.pages.set(g,!c.empty(a),!1,!0),e&&d.pages.contains(g,e)&&e.scrollTo()}else d.items.detach(d.items.all()),d.items.create(d.items.available(),!0),e&&e.scrollTo();c.empty(a.i)||(a.i=null,b.replace(a))}}}),b.template.configure("core",{state:{enabled:!1,pushOrReplace:"replace",values:"/",pair:":",array:"+"}}),b.components.register("state",b.State)
10
+ }(FooGallery.$,FooGallery,FooGallery.utils.is,FooGallery.utils.str),function(a,b,c,d,e,f){b.Item=b.Component.extend({construct:function(a,b){var c=this;c._super(a),c.cls=a.cls.item,c.il8n=a.il8n.item,c.sel=a.sel.item,c.opt=f.extend({},a.opt.item,b),c.isAttached=!1,c.isCreated=!1,c.isDestroyed=!1,c.isLoading=!1,c.isLoaded=!1,c.isError=!1,c.isParsed=!1,c.$el=null,c.$inner=null,c.$anchor=null,c.$image=null,c.$caption=null,c.type=c.opt.type,c.id=c.opt.id,c.href=c.opt.href,c.src=c.opt.src,c.srcset=c.opt.srcset,c.width=c.opt.width,c.height=c.opt.height,c.title=c.opt.title,c.alt=c.opt.alt,c.caption=d.empty(c.opt.caption)?c.title:c.opt.caption,c.description=d.empty(c.opt.description)?c.alt:c.opt.description,c.attr=c.opt.attr,c.tags=c.opt.tags,c.maxWidth=c.opt.maxWidth,c.maxCaptionLength=c.opt.maxCaptionLength,c.maxDescriptionLength=c.opt.maxDescriptionLength,c.showCaptionTitle=c.opt.showCaptionTitle,c.showCaptionDescription=c.opt.showCaptionDescription,c._thumbUrl=null,c._placeholder=null,c._load=null,c._undo={classes:"",style:"",loader:!1,placeholder:!1}},destroy:function(){var a=this;return a.tmpl.raise("destroy-item",[a]).isDefaultPrevented()||(a.isDestroyed=a.doDestroyItem()),a.isDestroyed&&(a.tmpl.raise("destroyed-item",[a]),a._super()),a.isDestroyed},doDestroyItem:function(){var a=this;return a.isParsed?(a.append(),d.empty(a._undo.classes)?a.$el.removeAttr("class"):a.$el.attr("class",a._undo.classes),d.empty(a._undo.style)?a.$el.removeAttr("style"):a.$el.attr("style",a._undo.style),a._undo.loader&&a.$el.find(a.sel.loader).remove(),a._undo.placeholder&&a.$image.prop("src")==a._placeholder&&a.$image.removeAttr("src")):a.isCreated&&(a.detach(),a.$el.remove()),!0},parse:function(b){var c=this,d=a(b);return!c.tmpl.raise("parse-item",[c,d]).isDefaultPrevented()&&(c.isCreated=d.is(c.sel.elem))&&(c.isParsed=c.doParseItem(d),c.fix()),c.isParsed&&c.tmpl.raise("parsed-item",[c]),c.isParsed},doParseItem:function(c){var e=this,f=e.tmpl.opt,g=e.cls,h=e.sel;return e._undo.classes=c.attr("class")||"",e._undo.style=c.attr("style")||"",e.$el=c.data(b.dataItem,e),e.$inner=e.$el.find(h.inner),e.$anchor=e.$el.find(h.anchor).on("click.foogallery",{self:e},e.onAnchorClick),e.$image=e.$anchor.find(h.image),e.$caption=e.$el.find(h.caption.elem).on("click.foogallery",{self:e},e.onCaptionClick),e.isAttached=e.$el.parent().length>0,e.isLoading=e.$el.is(h.loading),e.isLoaded=e.$el.is(h.loaded),e.isError=e.$el.is(h.error),e.id=e.$anchor.data("id")||e.id,e.tags=e.$anchor.data("tags")||e.tags,e.href=e.$anchor.attr("href")||e.href,e.src=e.$image.attr(f.src)||e.src,e.srcset=e.$image.attr(f.srcset)||e.srcset,e.width=parseInt(e.$image.attr("width"))||e.width,e.height=parseInt(e.$image.attr("height"))||e.height,e.title=e.$image.attr("title")||e.title,e.alt=e.$image.attr("alt")||e.alt,e.caption=e.$anchor.data("title")||e.$anchor.data("captionTitle")||e.caption||e.title,e.description=e.$anchor.data("description")||e.$anchor.data("captionDesc")||e.description||e.alt,d.empty(e.caption)&&(e.caption=a.trim(e.$caption.find(h.caption.title).html())),d.empty(e.description)&&(e.description=a.trim(e.$caption.find(h.caption.description).html())),d.number(e.maxCaptionLength)&&e.maxCaptionLength>0&&!d.empty(e.caption)&&d.string(e.caption)&&e.caption.length>e.maxCaptionLength&&e.$caption.find(h.caption.title).html(e.caption.substr(0,e.maxCaptionLength)+"&hellip;"),d.number(e.maxDescriptionLength)&&e.maxDescriptionLength>0&&!d.empty(e.description)&&d.string(e.description)&&e.description.length>e.maxDescriptionLength&&e.$caption.find(h.caption.description).html(e.description.substr(0,e.maxDescriptionLength)+"&hellip;"),0===e.$el.find(h.loader).length&&(e.$el.append(a("<div/>",{class:g.loader})),e._undo.loader=!0),d.empty(e.$image.prop("src"))&&(e._placeholder=e.tmpl.items.placeholder(e.width,e.height),e.$image.prop("src",e._placeholder),e._undo.placeholder=!0),!e.isCreated||!e.isAttached||e.isLoading||e.isLoaded||e.isError||e.$el.addClass(g.idle),!0},create:function(){var a=this;if(!a.isCreated&&d.string(a.href)&&d.string(a.src)&&d.number(a.width)&&d.number(a.height)){a.tmpl.raise("create-item",[a]).isDefaultPrevented()||(a.isCreated=a.doCreateItem()),a.isCreated&&a.tmpl.raise("created-item",[a])}return a.isCreated},doCreateItem:function(){var c=this,e=c.tmpl.opt,f=c.cls,g=c.attr;g.elem.class=f.elem+" "+f.idle,g.inner.class=f.inner,g.anchor.class=f.anchor,g.anchor.href=c.href,g.anchor["data-id"]=c.id,g.anchor["data-title"]=c.caption,g.anchor["data-description"]=c.description,d.empty(c.tags)||(g.anchor["data-tags"]=JSON.stringify(c.tags)),g.image.class=f.image,g.image.src=c.tmpl.items.placeholder(c.width,c.height),g.image[e.src]=c.src,g.image[e.srcset]=c.srcset,g.image.width=c.width,g.image.height=c.height,g.image.title=c.title,g.image.alt=c.alt,c.$el=a("<div/>").attr(g.elem).data(b.dataItem,c),c.$inner=a("<figure/>").attr(g.inner).appendTo(c.$el),c.$anchor=a("<a/>").attr(g.anchor).appendTo(c.$inner).on("click.foogallery",{self:c},c.onAnchorClick),c.$image=a("<img/>").attr(g.image).appendTo(c.$anchor),f=c.cls.caption,g=c.attr.caption,g.elem.class=f.elem,c.$caption=a("<figcaption/>").attr(g.elem).on("click.foogallery",{self:c},c.onCaptionClick),g.inner.class=f.inner;var h=a("<div/>").attr(g.inner).appendTo(c.$caption),i=c.showCaptionTitle&&!d.empty(c.caption),j=c.showCaptionDescription&&!d.empty(c.description);if(i||j){if(g.title.class=f.title,g.description.class=f.description,i){var k;k=d.number(c.maxCaptionLength)&&c.maxCaptionLength>0&&d.string(c.caption)&&c.caption.length>c.maxCaptionLength?a("<div/>").attr(g.title).html(c.caption.substr(0,c.maxCaptionLength)+"&hellip;"):a("<div/>").attr(g.title).html(c.caption),h.append(k)}if(j){var l;l=d.number(c.maxDescriptionLength)&&c.maxDescriptionLength>0&&d.string(c.description)&&c.description.length>c.maxDescriptionLength?a("<div/>").attr(g.description).html(c.description.substr(0,c.maxDescriptionLength)+"&hellip;"):a("<div/>").attr(g.description).html(c.description),h.append(l)}}return c.$caption.appendTo(c.$inner),0===c.$el.find(c.sel.loader).length&&c.$el.append(a("<div/>",{class:c.cls.loader})),!0},append:function(){var a=this;if(a.isCreated&&!a.isAttached){a.tmpl.raise("append-item",[a]).isDefaultPrevented()||(a.tmpl.$el.append(a.$el),a.fix(),a.isAttached=!0),a.isAttached&&a.tmpl.raise("appended-item",[a])}return a.isAttached},detach:function(){var a=this;if(a.isCreated&&a.isAttached){a.tmpl.raise("detach-item",[a]).isDefaultPrevented()||(a.$el.detach(),a.unfix(),a.isAttached=!1),a.isAttached||a.tmpl.raise("detached-item",[a])}return!a.isAttached},load:function(){var b=this;if(d.promise(b._load))return b._load;if(!b.isCreated||!b.isAttached)return e.rejectWith("not created or attached");if(b.tmpl.raise("load-item",[b]).isDefaultPrevented())return e.rejectWith("default prevented");var c=b.cls,f=b.$image.get(0),g=f.src;return b.isLoading=!0,b.$el.removeClass(c.idle).removeClass(c.loaded).removeClass(c.error).addClass(c.loading),b.isParsed&&f.src!=b._placeholder&&f.complete?(b.isLoading=!1,b.isLoaded=!0,b.$el.removeClass(c.loading).addClass(c.loaded),b.unfix(),b.tmpl.raise("loaded-item",[b]),b._load=e.resolveWith(b)):b._load=a.Deferred(function(a){f.onload=function(){f.onload=f.onerror=null,b.isLoading=!1,b.isLoaded=!0,b.$el.removeClass(c.loading).addClass(c.loaded),b.unfix(),b.tmpl.raise("loaded-item",[b]),a.resolve(b)},f.onerror=function(){f.onload=f.onerror=null,b.isLoading=!1,b.isError=!0,b.$el.removeClass(c.loading).addClass(c.error),d.string(g)&&b.$image.prop("src",g),b.tmpl.raise("error-item",[b]),a.reject(b)},setTimeout(function(){f.src=b.getThumbUrl()})}).promise()},fix:function(){var a=this;if(!a.tmpl.raise("fix-item",[a]).isDefaultPrevented()&&a.isCreated&&!a.isLoading&&!a.isLoaded&&!a.isError){var b=a.width,c=a.height;if(!isNaN(b)&&!isNaN(c)){var e=d.fn(a.maxWidth)?a.maxWidth(a):a.$image.width();e<=0&&(e=b);var f=e/b,g=c*f;a.$image.css({width:e,height:g})}}return a},unfix:function(){var a=this;return!a.tmpl.raise("unfix-item",[a]).isDefaultPrevented()&&a.isCreated&&a.$image.css({width:"",height:""}),a},getThumbUrl:function(a){a=!!d.boolean(a)&&a;var c=this;return!a&&d.string(c._thumbUrl)?c._thumbUrl:c._thumbUrl=b.parseSrc(c.src,c.width,c.height,c.srcset,c.$anchor.innerWidth(),c.$anchor.innerHeight())},scrollTo:function(a){var b=this;if(b.isAttached){var d=b.bounds(),e=c.getViewportBounds();switch(a){case"top":d.left+=d.width/2-e.width/2,d.top-=e.height/5;break;default:d.left+=d.width/2-e.width/2,d.top+=d.height/2-e.height/2}window.scrollTo(d.left,d.top)}return b},bounds:function(){return this.isAttached?c.getElementBounds(this.$el):null},intersects:function(a){return!!this.isAttached&&this.bounds().intersects(a)},onAnchorClick:function(a){var b=a.data.self,c=b.tmpl.state.get(b);b.tmpl.state.update(c)},onCaptionClick:function(a){var b=a.data.self;b.$anchor.length>0&&b.$anchor.get(0).click()}}),b.template.configure("core",{item:{type:"item",id:"",href:"",src:"",srcset:"",width:0,height:0,title:"",alt:"",caption:"",description:"",tags:[],maxWidth:null,maxCaptionLength:0,maxDescriptionLength:0,showCaptionTitle:!0,showCaptionDescription:!0,attr:{elem:{},inner:{},anchor:{},image:{},caption:{elem:{},inner:{},title:{},description:{}}}}},{item:{elem:"fg-item",inner:"fg-item-inner",anchor:"fg-thumb",image:"fg-image",loader:"fg-loader",idle:"fg-idle",loading:"fg-loading",loaded:"fg-loaded",error:"fg-error",caption:{elem:"fg-caption",inner:"fg-caption-inner",title:"fg-caption-title",description:"fg-caption-desc"}}},{item:{}}),b.components.register("item",b.Item)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d,e,f){b.Items=b.Component.extend({construct:function(a){var b=this;b._super(a),b.idMap={},b._fetched=null,b._arr=[],b._available=[],b._canvas=document.createElement("canvas");var d=b.tmpl.cls.item.caption;b.tmpl.sel.item.caption.all=c.selectify([d.elem,d.inner,d.title,d.description])},destroy:function(){var b=this,c=b.all(),d=[];c.length>0&&(b.tmpl.raise("destroy-items",[c]),d=a.map(c,function(a){return a.destroy()?a:null}),d.length>0&&b.tmpl.raise("destroyed-items",[d])),b.idMap={},b._canvas=b._fetched=null,b._arr=[],b._available=[],b._super()},fetch:function(b){var c=this;if(!b&&d.promise(c._fetched))return c._fetched;var e=c.tmpl,f=e.sel,g=e.opt.items,h=a.Deferred(),i=c.make(e.$el.find(f.item.elem));return d.empty(g)?(i.push.apply(i,c.make(window[e.id+"-items"])),h.resolve(i)):d.array(g)?(i.push.apply(i,c.make(g)),h.resolve(i)):d.string(g)?a.get(g).then(function(a){i.push.apply(i,c.make(a)),h.resolve(i)},function(a,b,c){console.log("FooGallery: GET items error.",g,a,b,c),h.resolve(i)}):h.resolve(i),h.then(function(a){c.setAll(a)}),c._fetched=h.promise()},all:function(){return this._arr.slice()},count:function(a){return a?this.all().length:this.available().length},available:function(){return this._available.slice()},get:function(a){return!d.empty(a)&&this.idMap[a]?this.idMap[a]:null},setAll:function(a){this._arr=d.array(a)?a:[],this.idMap=this.createIdMap(a),this._available=this.all()},setAvailable:function(a){this._available=d.array(a)?a:[]},reset:function(){this.setAvailable(this.all())},placeholder:function(a,c){return this._canvas&&this._canvas.toDataURL&&d.number(a)&&d.number(c)?(this._canvas.width=a,this._canvas.height=c,this._canvas.toDataURL()):b.emptyImage},loadable:function(b){var e,f=this,g=f.tmpl.opt;return g.lazy&&(e=c.getViewportBounds(g.viewport)),d.array(b)?a.map(b,function(a){return a.isCreated&&a.isAttached&&!a.isLoading&&!a.isLoaded&&!a.isError&&(!g.lazy||g.lazy&&a.intersects(e))?a:null}):[]},creatable:function(c){return d.array(c)?a.map(c,function(a){return a instanceof b.Item&&!a.isCreated?a:null}):[]},appendable:function(c){return d.array(c)?a.map(c,function(a){return a instanceof b.Item&&a.isCreated&&!a.isAttached?a:null}):[]},detachable:function(c){return d.array(c)?a.map(c,function(a){return a instanceof b.Item&&a.isCreated&&a.isAttached?a:null}):[]},jquerify:function(b){return a(a.map(b,function(a){return a.$el.get()}))},make:function(c){var e=this,g=[];if(d.jq(c)||d.array(c)){var h=[],i=a.makeArray(c);if(0===i.length)return g;e.tmpl.raise("make-items",[i]).isDefaultPrevented()||(g=a.map(i,function(a){var c=e.type(a),g=f.extend(d.hash(a)?a:{},{type:c}),i=b.components.make(c,e.tmpl,g);return d.element(a)?i.parse(a)?(h.push(i),i):null:i})),g.length>0&&e.tmpl.raise("made-items",[g]),h.length>0&&e.tmpl.raise("parsed-items",[h])}return g},type:function(c){var e;if(d.hash(c))e=c.type;else if(d.element(c)){var f=a(c),g=this.tmpl.sel.item;e=f.find(g.anchor).data("type")}return d.string(e)&&b.components.contains(e)?e:"item"},create:function(b,c){var e=this,f=[],g=e.creatable(b);if(g.length>0){e.tmpl.raise("create-items",[g]).isDefaultPrevented()||(f=a.map(g,function(a){return a.create()?a:null})),f.length>0&&e.tmpl.raise("created-items",[f])}return d.boolean(c)&&c?e.append(b):f},append:function(b){var c=this,d=[],e=c.appendable(b);if(e.length>0){c.tmpl.raise("append-items",[e]).isDefaultPrevented()||(d=a.map(e,function(a){return a.append()?a:null})),d.length>0&&c.tmpl.raise("appended-items",[d])}return d},detach:function(b){var c=this,d=[],e=c.detachable(b);if(e.length>0){c.tmpl.raise("detach-items",[e]).isDefaultPrevented()||(d=a.map(e,function(a){return a.detach()?a:null})),d.length>0&&c.tmpl.raise("detached-items",[d])}return d},load:function(b){var c=this;if(b=c.loadable(b),b.length>0){if(!c.tmpl.raise("load-items",[b]).isDefaultPrevented()){var d=a.map(b,function(a){return a.load()});return e.when(d).done(function(a){c.tmpl.raise("loaded-items",[a])})}}return e.resolveWith([])},createIdMap:function(b){var c={};return a.each(b,function(a,b){d.empty(b.id)&&(b.id=""+(a+1)),c[b.id]=b}),c}}),b.components.register("items",b.Items)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is,FooGallery.utils.fn,FooGallery.utils.obj),function(a,b,c,d){b.Paging=b.Component.extend({construct:function(a){var b=this;b._super(a),b.opt=b.tmpl.opt.paging,b.cls=b.tmpl.cls.paging,b.il8n=b.tmpl.il8n.paging,b.sel=b.tmpl.sel.paging,b.pushOrReplace=b.opt.pushOrReplace,b.type=b.opt.type,b.theme=b.opt.theme,b.size=b.opt.size,b.position=b.opt.position,b.scrollToTop=b.opt.scrollToTop,b.current=0,b.total=0,b.ctrls=[],b._arr=[]},destroy:function(){var b=this;b._arr.splice(0,b._arr.length),a.each(b.ctrls.splice(0,b.ctrls.length),function(a,b){b.destroy()}),b._super()},build:function(){var a=this,c=a.tmpl.items.available();a.total=a.size>0&&c.length>0?Math.ceil(c.length/a.size):1;for(var d=0;d<a.total;d++)a._arr.push(c.splice(0,a.size));if(a.total>1&&b.paging.hasCtrl(a.type)){var e,f,g=a.position;"both"!==g&&"top"!==g||(e=b.paging.makeCtrl(a.type,a.tmpl,a,"top"),e.create()&&(e.append(),a.ctrls.push(e))),"both"!==g&&"bottom"!==g||(f=b.paging.makeCtrl(a.type,a.tmpl,a,"bottom"),f.create()&&(f.append(),a.ctrls.push(f)))}},rebuild:function(){var b=this;b.current=0,b.total=0,b._arr.splice(0,b._arr.length),a.each(b.ctrls.splice(0,b.ctrls.length),function(a,b){b.destroy()}),b.build()},all:function(){return this._arr.slice()},available:function(){return this.get(this.current)},controls:function(b){var c=this;c.isValid(b)&&a.each(c.ctrls,function(a,c){c.update(b)})},isValid:function(a){return d.number(a)&&a>0&&a<=this.total},number:function(a){return this.isValid(a)?a:0===this.current?1:this.current},create:function(a,b){var c=this;a=c.number(a);var d=a-1;c.tmpl.items.detach(c.tmpl.items.all()),c.tmpl.items.create(c._arr[d],!0),c.current=a},get:function(a){var b=this;return b.isValid(a)?(a=b.number(a),b._arr[a-1]):[]},set:function(a,b,c,e){var f=this;if(f.isValid(a)){var g,h=f.number(a);if(h!==f.current){var i=f.current,j=function(){if(c=!d.boolean(c)||c,e=!!d.boolean(e)&&e,c&&1===f.current&&!f.tmpl.state.exists()&&(g=f.tmpl.state.get(),f.tmpl.state.update(g,f.pushOrReplace)),f.controls(a),f.create(h,e),c&&(g=f.tmpl.state.get(),f.tmpl.state.update(g,f.pushOrReplace)),f.scrollToTop&&d.boolean(b)&&b){var j=f.get(f.current);j.length>0&&j[0].scrollTo("top")}f.tmpl.raise("after-page-change",[f.current,i,e])};return!f.tmpl.raise("before-page-change",[f.current,h,j,e]).isDefaultPrevented()&&(j(),!0)}}return!1},find:function(b){for(var c=this,d=0,e=c._arr.length;d<e;d++)if(-1!==a.inArray(b,c._arr[d]))return d+1;return 0},contains:function(b,c){var d=this.get(b);return-1!==a.inArray(c,d)},first:function(){this.goto(1)},last:function(){this.goto(this._arr.length)},prev:function(){this.goto(this.current-1)},next:function(){this.goto(this.current+1)},goto:function(a){var b=this;b.set(a,!0)&&b.tmpl.loadAvailable()}}),b.PagingControl=b.Component.extend({construct:function(a,b,c){var d=this;d._super(a),d.pages=b,d.position=c,d.$container=null},create:function(){var b=this;return b.$container=a("<nav/>",{class:b.pages.cls.container}).addClass(b.pages.theme),!0},destroy:function(){var a=this;a.$container.remove(),a.$container=null},append:function(){var a=this;"top"===a.position?a.$container.insertBefore(a.tmpl.$el):a.$container.insertAfter(a.tmpl.$el)},update:function(a){}}),b.paging.register("default",b.Paging,null,{type:"none",theme:"fg-light",size:30,pushOrReplace:"push",position:"none",scrollToTop:!0},{container:"fg-paging-container"},null,-100)}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d){b.Dots=b.Paging.extend({}),b.DotsControl=b.PagingControl.extend({construct:function(b,c,d){this._super(b,c,d),this.$container=a(),this.$list=a(),this.$items=a()},create:function(){for(var b,c=this,d=c.pages.cls,e=c.pages.il8n,f=[],g=a("<ul/>",{class:d.list}),h=0,i=c.pages.total;h<i;h++)f.push(b=c.createItem(h+1,e.page)),g.append(b);return c.$list=g,c.$container=a("<nav/>",{class:d.container}).addClass(c.pages.theme).append(g),c.$items=a(a.map(f,function(a){return a.get()})),!0},append:function(){var a=this;"top"===a.position?a.$container.insertBefore(a.tmpl.$el):a.$container.insertAfter(a.tmpl.$el)},destroy:function(){var b=this,c=b.pages.sel;b.$list.find(c.link).off("click.foogallery",b.onLinkClick),b.$container.remove(),b.$container=a(),b.$list=a(),b.$items=a()},update:function(a){this.setSelected(a-1)},setSelected:function(b){var c=this,e=c.pages.cls,f=c.pages.il8n,g=c.pages.sel;c.$items.filter(g.selected).removeClass(e.selected).each(function(b,c){var e=a(c),f=e.data("label"),h=e.find(g.reader);d.string(f)&&0!==h.length&&h.html(f)}),c.$items.eq(b).addClass(e.selected).each(function(b,c){var e=a(c),h=e.find(g.reader),i=h.html();d.string(i)&&0!==h.length&&(e.data("label",i),h.html(f.current))})},createItem:function(b,c,e,f,g){e=d.string(e)?e:b,c=d.string(c)?c:"";var h=this,i=h.pages.opt,j=h.pages.cls,k=a("<a/>",{class:j.link,href:"#page-"+b}).html(e).on("click.foogallery",{self:h,page:b},h.onLinkClick);d.empty(c)||k.attr("title",c.replace(/\{PAGE}/g,b).replace(/\{LIMIT}/g,i.limit+"")),g=d.string(g)?g:c,d.empty(g)||k.prepend(a("<span/>",{class:j.reader,text:g.replace(/\{PAGE}/g,"").replace(/\{LIMIT}/g,i.limit+"")}));var l=a("<li/>",{class:j.item}).append(k);return f=d.string(f)?f:"",d.empty(f)||l.addClass(f),l},onLinkClick:function(b){b.preventDefault();var c=b.data.self,d=b.data.page,e=c.pages.sel;a(this).closest(e.item).is(e.disabled)||(c.pages.set(d,!0),c.tmpl.loadAvailable())}}),b.paging.register("dots",b.Dots,b.DotsControl,{type:"dots",position:"both",pushOrReplace:"push"},{list:"fg-dots",item:"fg-dot-item",link:"fg-dot-link",disabled:"fg-disabled",selected:"fg-selected",visible:"fg-visible",reader:"fg-sr-only"},{current:"Current page",page:"Page {PAGE}"})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c){b.DefaultTemplate=b.Template.extend({}),b.template.register("default",b.DefaultTemplate,null,{container:"foogallery fg-default"})}(FooGallery.$,FooGallery,FooGallery.utils),function(a,b,c,d){b.MasonryTemplate=b.Template.extend({construct:function(a,b){this._super(a,b),this.masonry=null,this.style=null,this.$columnWidth=null},getStylesheet:function(){var a=this;return null===a.style&&(a.style=document.createElement("style"),a.style.appendChild(document.createTextNode("")),document.head.appendChild(a.style)),a.style.sheet},onPreInit:function(b,c){var e=c.sel,f=c.cls;f.layouts=a.map(f.layout,function(a){return a}).join(" ");for(var g=a.map(f.layout,function(a,b){return{key:b,value:a}}),h=0,i=g.length;h<i;h++)if(c.$el.hasClass(g[h].value)){c.template.layout=g[h].key;break}d.string(f.layout[c.template.layout])||(c.template.layout="col4");var j,k,l="fixed"===c.template.layout;if(c.template.isFitWidth=l,c.template.percentPosition=!l,c.template.transitionDuration=0,c.template.itemSelector=e.item.elem,c.$el.removeClass(f.layouts).addClass(f.layout[c.template.layout]),l||(0===c.$el.find(e.gutterWidth).length&&c.$el.prepend(a("<div/>").addClass(f.gutterWidth)),c.template.gutter=e.gutterWidth),0===c.$el.find(e.columnWidth).length&&c.$el.prepend(a("<div/>").addClass(f.columnWidth)),l&&d.number(c.template.columnWidth)){var m=c.$el.find(e.columnWidth).width(c.template.columnWidth);j=c.getStylesheet(),k="#"+c.id+e.container+" "+e.item.elem+" { width: "+m.outerWidth()+"px; }",j.insertRule(k,0)}c.template.columnWidth=e.columnWidth,l&&d.number(c.template.gutter)&&(j=c.getStylesheet(),k="#"+c.id+e.container+" "+e.item.elem+" { margin-bottom: "+c.template.gutter+"px; }",j.insertRule(k,0)),c.masonry=new Masonry(c.$el.get(0),c.template)},onPostInit:function(a,b){b.masonry.layout()},onFirstLoad:function(a,b){b.masonry.layout()},onReady:function(a,b){b.masonry.layout()},onDestroy:function(a,b){b.$el.find(b.sel.columnWidth).remove(),b.$el.find(b.sel.gutterWidth).remove(),b.style&&b.style.parentNode&&b.style.parentNode.removeChild(b.style)},onDestroyed:function(a,b){b.masonry instanceof Masonry&&b.masonry.destroy()},onLayout:function(a,b){b.masonry.layout()},onParsedItems:function(a,b,c){b.masonry.layout()},onAppendedItems:function(a,b,c){c=b.items.jquerify(c),c=b.masonry.addItems(c),b.masonry.layoutItems(c,!0)},onDetachItem:function(a,b,c){a.isDefaultPrevented()||(a.preventDefault(),b.masonry.remove(c.$el),c.isAttached=!1,c.unfix())},onDetachedItems:function(a,b,c){b.masonry.layout()},onLoadedItems:function(a,b,c){b.masonry.layout()}}),b.template.register("masonry",b.MasonryTemplate,{template:{initLayout:!1,isInitLayout:!1,layout:"col4"}},{container:"foogallery fg-masonry",columnWidth:"fg-column-width",gutterWidth:"fg-gutter-width",layout:{fixed:"fg-masonry-fixed",col2:"fg-masonry-2col",col3:"fg-masonry-3col",col4:"fg-masonry-4col",col5:"fg-masonry-5col"}})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c,d){b.Justified=c.Class.extend({construct:function(c,d){this.$el=a(c),this.options=a.extend(!0,{},b.Justified.defaults,d),this._items=[],this._lastRefresh=0,this._refresh=null},init:function(){var b=this;d.string(b.options.maxRowHeight)&&(b.options.maxRowHeight.indexOf("%")?b.options.maxRowHeight=b.options.rowHeight*(parseInt(b.options.maxRowHeight)/100):b.options.maxRowHeight=parseInt(b.options.maxRowHeight)),a(window).on("resize.justified",{self:b},b.onWindowResize),this._refresh=setInterval(function(){b.refresh()},b.options.refreshInterval)},destroy:function(){this._refresh&&clearInterval(this._refresh),a(window).off("resize.justified"),this.$el.removeAttr("style")},refresh:function(){var a=this.getContainerWidth();a!=this._lastRefresh&&(this.layout(),this._lastRefresh=a)},parse:function(){var b=this,c=b.$el.is(":visible"),d=a("<div/>",{class:b.$el.attr("class")}).css({position:"absolute",top:0,left:-9999,visibility:"hidden",maxWidth:b.getContainerWidth()}).appendTo("body");return b._items=b.$el.find(b.options.itemSelector).removeAttr("style").removeClass("fg-positioned").map(function(b,e){var f=a(e),g=0,h=0;if(c)g=f.outerWidth(),h=f.outerHeight();else{var i=f.clone();i.appendTo(d),g=i.outerWidth(),h=i.outerHeight()}return{index:b,width:g,height:h,top:0,left:0,$item:f}}).get(),d.remove(),b._items},getMaxRowHeight:function(){var a=this;return d.string(a.options.maxRowHeight)&&(a.options.maxRowHeight.indexOf("%")?a.options.maxRowHeight=a.options.rowHeight*(parseInt(a.options.maxRowHeight)/100):a.options.maxRowHeight=parseInt(a.options.maxRowHeight)),d.number(a.options.maxRowHeight)?a.options.maxRowHeight:a.options.rowHeight},getContainerWidth:function(){var a=this;return a.$el.is(":visible")?a.$el.width():a.$el.parents(":visible:first").innerWidth()},layout:function(b,c){b=!!d.boolean(b)&&b,c=!d.boolean(c)||c,(b||0===this._items.length)&&this.parse();var e=this,f=0,g=e.getContainerWidth(),h=e.getMaxRowHeight(),i=e.rows(g,h);a.each(i,function(a,b){b.visible&&(a>0&&(f+=e.options.margins),f+=b.height,e.render(b))}),e.$el.height(f),c&&e.getContainerWidth()<g&&e.layout(!1,!1)},render:function(a){for(var b,c=0,d=a.items.length;c<d;c++)b=a.items[c],a.visible?b.$item.css({width:b.width,height:b.height,top:b.top,left:b.left,display:"",maxHeight:this.options.maxRowHeight>0?this.options.maxRowHeight:""}).addClass("fg-positioned"):b.$item.css("display","none")},justify:function(a,b,c,d){var e=this,f=e.options.margins*(a.items.length-1),g=c-f,h=g/a.width;a.width=a.width*h,a.height=a.height*h,a.top=b,a.height>d&&(a.height=d),a.left=0,a.width<g&&(a.left=(g-a.width)/2),a.width+=f;for(var i,j=a.left,k=0,l=a.items.length;k<l;k++)k>0&&(j+=e.options.margins),i=a.items[k],i.left=j,i.top=b,i.width=i.width*h,i.height=i.height*h,i.height>d&&(i.height=d),j+=i.width;return a.height},position:function(a,b,c,d){var e=this,f=e.options.margins*(a.items.length-1),g=c-f;if(a.top=b,a.left=0,a.width<g)switch(d){case"center":a.left=(g-a.width)/2;break;case"right":a.left=g-a.width}a.width+=f;for(var h,i=a.left,j=0,k=a.items.length;j<k;j++)j>0&&(i+=e.options.margins),h=a.items[j],h.left=i,h.top=b,i+=h.width;return a.height},lastRow:function(a,b,c,d){var e=this,f=e.options.margins*(a.items.length-1),g=c-f,h=a.width/g>e.options.justifyThreshold;switch(e.options.lastRow){case"hide":h?e.justify(a,b,c,d):a.visible=!1;break;case"justify":e.justify(a,b,c,d);break;case"nojustify":h?e.justify(a,b,c,d):e.position(a,b,c,"left");break;case"left":case"center":case"right":h?e.justify(a,b,c,d):e.position(a,b,c,e.options.lastRow)}},items:function(){return a.map(this._items,function(a){return{index:a.index,width:a.width,height:a.height,$item:a.$item,top:a.top,left:a.left}})},rows:function(a,b){function c(){var a={index:++h,visible:!0,width:0,height:e.options.rowHeight,top:0,left:0,items:[]};return g.push(a),a}for(var d,e=this,f=e.items(),g=[],h=-1,i=c(),j=0,k=0,l=0,m=f.length;l<m;l++){if(d=f[l],d.height!=e.options.rowHeight){var n=e.options.rowHeight/d.height;d.height=d.height*n,d.width=d.width*n}k+d.width>a&&l>0&&(g.length>1&&(j+=e.options.margins),j+=e.justify(i,j,a,b),i=c(),k=0),i.items.length>0&&(k+=e.options.margins),k+=d.width,i.width+=d.width,i.items.push(d)}return g.length>1&&(j+=e.options.margins),e.lastRow(i,j,a,b),g},onWindowResize:function(a){a.data.self.layout()}}),b.Justified.defaults={itemSelector:".fg-item",rowHeight:150,maxRowHeight:"200%",margins:0,lastRow:"center",justifyThreshold:.5,refreshInterval:250}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c){b.JustifiedTemplate=b.Template.extend({onPreInit:function(a,c){c.justified=new b.Justified(c.$el.get(0),c.template)},onInit:function(a,b){b.justified.init()},onFirstLoad:function(a,b){b.justified.layout(!0)},onReady:function(a,b){b.justified.layout(!0)},onDestroy:function(a,b){b.justified.destroy()},onLayout:function(a,b){b.justified.layout(!0)},onParsedItems:function(a,b,c){(b.initialized||b.initializing)&&b.justified.layout(!0)},onAppendedItems:function(a,b,c){(b.initialized||b.initializing)&&b.justified.layout(!0)},onDetachedItems:function(a,b,c){b.initialized&&b.justified.layout(!0)}}),b.template.register("justified",b.JustifiedTemplate,null,{container:"foogallery fg-justified"})}(FooGallery.$,FooGallery,FooGallery.utils),function(a,b,c,d){b.Portfolio=c.Class.extend({construct:function(c,d){this.$el=a(c),this.options=a.extend(!0,{},b.Portfolio.defaults,d),this._items=[],this._lastWidth=0},init:function(){var b=this;a(window).on("resize.portfolio",{self:b},b.onWindowResize)},destroy:function(){a(window).off("resize.portfolio"),this.$el.removeAttr("style")},parse:function(){var b=this,c=b.$el.is(":visible"),d=b.getContainerWidth(),e=a("<div/>",{class:b.$el.attr("class")}).css({position:"absolute",top:0,left:-9999,visibility:"hidden",maxWidth:d}).appendTo("body");return b._items=b.$el.find(".fg-item").removeAttr("style").removeClass("fg-positioned").map(function(b,f){var g=a(f),h=g.find(".fg-thumb"),i=g.find(".fg-image"),j=parseFloat(i.attr("width")),k=parseFloat(i.attr("height")),l=d<j?d:j,m=d<j?"auto":k;if(g.find(".fg-caption").css("max-width",l),i.css({width:l,height:m}),c)j=g.outerWidth(),k=g.outerHeight();else{var n=g.clone();n.appendTo(e),j=n.outerWidth(),k=n.outerHeight()}return i.css({width:"",height:""}),{index:b,width:j,height:k,top:0,left:0,$item:g,$thumb:h}}).get(),e.remove(),b._items},round:function(a){return Math.round(2*a)/2},getContainerWidth:function(){var a=this;return a.$el.is(":visible")?a.$el.width():a.$el.parents(":visible:first").innerWidth()},layout:function(a,b){a=!!d.boolean(a)&&a,b=!d.boolean(b)||b;var c=this,e=c.getContainerWidth();0!=c._lastWidth&&Math.abs(e-c._lastWidth)>0&&(a=!0,c._lastWidth=e),(a||0===c._items.length)&&c.parse();for(var f,g=c.rows(e),h=0,i=0,j=g.length;i<j;i++)f=g[i],h=c.position(f,e,h,c.options.align),c.render(f);c.$el.height(h),0==c._lastWidth&&(c._lastWidth=e),b&&c.getContainerWidth()<e&&c.layout(!1,!1)},render:function(a){for(var b,c=0,d=a.items.length;c<d;c++)b=a.items[c],a.visible?b.$item.css({width:b.width,height:a.height,top:b.top,left:b.left,display:""}).addClass("fg-positioned"):b.$item.css("display","none")},position:function(a,b,c,d){var e=this,f=a.items[a.items.length-1],g=b-(f.left+f.width);a.index>0&&(c+=e.options.gutter),a.top=c;for(var h,i=0,j=a.items.length;i<j;i++)h=a.items[i],h.top=c,"center"===d?h.left+=g/2:"right"===d&&(h.left+=g);return c+a.height},items:function(){return a.map(this._items,function(a){return{index:a.index,width:a.width,height:a.height,$item:a.$item,$thumb:a.$thumb,top:a.top,left:a.left}})},rows:function(a){for(var b=this,c=b.items(),d=[],e=c.length>0,f=-1,g=0;e;){f+=1,f>0&&(g+=b.options.gutter);for(var h,i,j,k={index:f,visible:!0,top:g,width:0,height:0,items:[]},l=[],m=0,n=0,o=c.length;n<o&&(i=c[n],!((h=k.width+i.width)>a&&n>0));n++)h>a&&0==n&&(h=a,j=a/i.width,i.width=b.round(i.width*j),i.height=b.round(i.height*j),k.height=i.height),i.top=k.top,n>0&&(m+=b.options.gutter),n!==o-1&&(h+=b.options.gutter),i.left=m,m+=i.width,i.height>k.height&&(k.height=i.height),k.width=h,k.items.push(i),l.push(n);if(0===l.length){e=!1;break}l.sort(function(a,b){return b-a});for(var p=0,q=l.length;p<q;p++)c.splice(l[p],1);d.push(k),e=c.length>0}return d},onWindowResize:function(a){a.data.self.layout()}}),b.Portfolio.defaults={gutter:40,align:"center"}}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.is),function(a,b,c){b.PortfolioTemplate=b.Template.extend({construct:function(a,b){this._super(a,b),this.portfolio=null},onPreInit:function(a,c){c.portfolio=new b.Portfolio(c.$el.get(0),c.template)},onInit:function(a,b){b.portfolio.init()},onFirstLoad:function(a,b){b.portfolio.layout(!0)},onReady:function(a,b){b.portfolio.layout(!0)},onDestroy:function(a,b){b.portfolio.destroy()},onLayout:function(a,b){b.portfolio.layout(!0)},onParsedItems:function(a,b,c){(b.initialized||b.initializing)&&b.portfolio.layout(!0)},onAppendedItems:function(a,b,c){(b.initialized||b.initializing)&&b.portfolio.layout(!0)},onDetachedItems:function(a,b,c){b.initialized&&b.portfolio.layout(!0)}}),b.template.register("simple_portfolio",b.PortfolioTemplate,{gutter:40},{container:"foogallery fg-simple_portfolio"})}(FooGallery.$,FooGallery,FooGallery.utils),function(a,b,c,d){b.ImageViewerTemplate=b.Template.extend({construct:function(b,c){this._super(d.extend({},b,{paging:{pushOrReplace:"replace",theme:"fg-light",type:"default",size:1,position:"none",scrollToTop:!1}}),c),this.$inner=a(),
11
+ this.$current=a(),this.$total=a(),this.$prev=a(),this.$next=a()},createChildren:function(){var b=this;return a("<div/>",{class:b.cls.inner}).append(a("<div/>",{class:b.cls.innerContainer}),a("<div/>",{class:b.cls.controls}).append(a("<div/>",{class:b.cls.prev}).append(a("<span/>",{text:b.il8n.prev})),a("<label/>",{class:b.cls.count,text:b.il8n.count}).prepend(a("<span/>",{class:b.cls.countCurrent,text:"0"})).append(a("<span/>",{class:b.cls.countTotal,text:"0"})),a("<div/>",{class:b.cls.next}).append(a("<span/>",{text:b.il8n.next}))))},destroyChildren:function(){var a=this;a.$el.find(a.sel.inner).remove()},onPreInit:function(a,b){b.$inner=b.$el.find(b.sel.innerContainer),b.$current=b.$el.find(b.sel.countCurrent),b.$total=b.$el.find(b.sel.countTotal),b.$prev=b.$el.find(b.sel.prev),b.$next=b.$el.find(b.sel.next)},onInit:function(a,b){b.template.attachFooBox&&b.$el.on("foobox.previous",{self:b},b.onFooBoxPrev).on("foobox.next",{self:b},b.onFooBoxNext),b.$prev.on("click",{self:b},b.onPrevClick),b.$next.on("click",{self:b},b.onNextClick)},onFirstLoad:function(a,b){b.update()},onDestroy:function(a,b){b.template.attachFooBox&&b.$el.off({"foobox.previous":b.onFooBoxPrev,"foobox.next":b.onFooBoxNext}),b.$prev.off("click",b.onPrevClick),b.$next.off("click",b.onNextClick)},onAppendItem:function(a,b,c){a.preventDefault(),b.$inner.append(c.$el),c.fix(),c.isAttached=!0},onAfterPageChange:function(a,b,c,d,e){e||b.update()},onAfterFilterChange:function(a,b){b.update()},update:function(){this.pages&&(this.$current.text(this.pages.current),this.$total.text(this.pages.total))},prev:function(){this.pages&&(this.template.loop&&1===this.pages.current?this.pages.last():this.pages.prev(),this.update())},next:function(){this.pages&&(this.template.loop&&this.pages.current===this.pages.total?this.pages.first():this.pages.next(),this.update())},onFooBoxPrev:function(a){a.data.self.prev()},onFooBoxNext:function(a){a.data.self.next()},onPrevClick:function(a){a.preventDefault(),a.stopPropagation(),a.data.self.prev()},onNextClick:function(a){a.preventDefault(),a.stopPropagation(),a.data.self.next()}}),b.template.register("image-viewer",b.ImageViewerTemplate,{template:{attachFooBox:!1,loop:!1}},{container:"foogallery fg-image-viewer",inner:"fiv-inner",innerContainer:"fiv-inner-container",controls:"fiv-ctrls",prev:"fiv-prev",next:"fiv-next",count:"fiv-count",countCurrent:"fiv-count-current",countTotal:"fiv-count-total"},{prev:"Prev",next:"Next",count:"of"})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.obj),function(a,b,c){b.ThumbnailTemplate=b.Template.extend({construct:function(b,d){this._super(c.extend({},b,{filtering:{type:"none"},paging:{type:"none"}}),d),this.$hidden=a()},createChildren:function(){var b=this;return b.$hidden=a("<div/>",{class:b.cls.hidden})},destroyChildren:function(){var a=this;a.$el.find(a.sel.hidden).remove()},onPreInit:function(a,b){b.$hidden=b.$el.find(b.sel.hidden)},onPostInit:function(b,c){for(var d,e=c.items.all().slice(1),f=0,g=e.length;f<g;f++)d=e[f],c.$hidden.append(a("<a/>",{href:d.href,rel:"lightbox["+c.id+"]"}).attr(d.attr.anchor));c.items.setAll(c.items.all().slice(0,1))}}),b.template.register("thumbnail",b.ThumbnailTemplate,null,{container:"foogallery fg-thumbnail",hidden:"fg-st-hidden"})}(FooGallery.$,FooGallery,FooGallery.utils.obj),function(a,b,c,d){b.triggerPostLoad=function(b,c,d,e,f){if("first-load"===b.type||c.initialized&&("after-page-change"===b.type&&!f||"after-filter-change"===b.type))try{a("body").trigger("post-load")}catch(a){console.error(a)}},b.autoDefaults={on:{"first-load.foogallery after-page-change.foogallery after-filter-change.foogallery":b.triggerPostLoad}},b.auto=function(a){b.autoDefaults=d.merge(b.autoDefaults,a)},a(function(){a('[id^="foogallery-gallery-"]:not(.fg-ready)').foogallery(b.autoDefaults)}),c.ready(function(){a('[id^="foogallery-gallery-"].fg-ready').foogallery(b.autoDefaults)})}(FooGallery.$,FooGallery,FooGallery.utils,FooGallery.utils.obj);
extensions/demo-content-generator/class-demo-content-generator.php CHANGED
@@ -173,8 +173,10 @@ if ( ! class_exists( 'FooGallery_Demo_Content_Generator' ) ) {
173
  $attachment_data = wp_generate_attachment_metadata( $attachment_id, $file );
174
  wp_update_attachment_metadata( $attachment_id, $attachment_data );
175
 
176
- // Save tags
177
- wp_set_object_terms($attachment_id, array_map('trim', preg_split('/,+/', $tags)), FOOGALLERY_ATTACHMENT_TAXONOMY_TAG, false);
 
 
178
 
179
  return $attachment_id;
180
  }
173
  $attachment_data = wp_generate_attachment_metadata( $attachment_id, $file );
174
  wp_update_attachment_metadata( $attachment_id, $attachment_data );
175
 
176
+ if ( defined( 'FOOGALLERY_ATTACHMENT_TAXONOMY_TAG' ) ) {
177
+ // Save tags
178
+ wp_set_object_terms( $attachment_id, array_map( 'trim', preg_split( '/,+/', $tags ) ), FOOGALLERY_ATTACHMENT_TAXONOMY_TAG, false );
179
+ }
180
 
181
  return $attachment_id;
182
  }
foogallery.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: FooGallery
5
  Description: FooGallery is the most intuitive and extensible gallery management tool ever created for WordPress
6
- Version: 1.6.7
7
  Author: FooPlugins
8
  Plugin URI: https://foo.gallery
9
  Author URI: http://fooplugins.com
@@ -27,7 +27,7 @@ if ( function_exists( 'foogallery_fs' ) ) {
27
  define( 'FOOGALLERY_PATH', plugin_dir_path( __FILE__ ) );
28
  define( 'FOOGALLERY_URL', plugin_dir_url( __FILE__ ) );
29
  define( 'FOOGALLERY_FILE', __FILE__ );
30
- define( 'FOOGALLERY_VERSION', '1.6.7' );
31
  define( 'FOOGALLERY_SETTINGS_VERSION', '2' );
32
  require_once FOOGALLERY_PATH . 'includes/constants.php';
33
  // Create a helper function for easy SDK access.
3
  /*
4
  Plugin Name: FooGallery
5
  Description: FooGallery is the most intuitive and extensible gallery management tool ever created for WordPress
6
+ Version: 1.6.11
7
  Author: FooPlugins
8
  Plugin URI: https://foo.gallery
9
  Author URI: http://fooplugins.com
27
  define( 'FOOGALLERY_PATH', plugin_dir_path( __FILE__ ) );
28
  define( 'FOOGALLERY_URL', plugin_dir_url( __FILE__ ) );
29
  define( 'FOOGALLERY_FILE', __FILE__ );
30
+ define( 'FOOGALLERY_VERSION', '1.6.11' );
31
  define( 'FOOGALLERY_SETTINGS_VERSION', '2' );
32
  require_once FOOGALLERY_PATH . 'includes/constants.php';
33
  // Create a helper function for easy SDK access.
freemius/assets/css/admin/dialog-boxes.css CHANGED
@@ -1,2 +1,2 @@
1
- .fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eeeeee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:0.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media (max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label{float:left}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.license_key{width:100%}#license_options_container table,#license_options_container table select,#license_options_container table #available_license_key{width:100%}#license_options_container table td:first-child{width:1%}#license_options_container table #other_license_key_container label{position:relative;top:6px;float:left;margin-right:5px}#license_options_container table #other_license_key_container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}#license_options_container table #other_license_key_container div input{margin:0}#sites_list_container td{cursor:pointer}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media (max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}
2
- .rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-right:7px;margin-left:0}a.show-license-resend-modal{margin-top:4px;display:inline-block}.fs-ajax-loader{position:relative;width:170px;height:20px;margin:auto}.fs-ajax-loader .fs-ajax-loader-bar{position:absolute;top:0;background-color:#0074a3;width:20px;height:20px;-webkit-animation-name:bounce_ajaxLoader;-moz-animation-name:bounce_ajaxLoader;-ms-animation-name:bounce_ajaxLoader;-o-animation-name:bounce_ajaxLoader;animation-name:bounce_ajaxLoader;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-webkit-animation-direction:normal;-moz-animation-direction:normal;-ms-animation-direction:normal;-o-animation-direction:normal;animation-direction:normal;-moz-transform:0.3;-o-transform:0.3;-ms-transform:0.3;-webkit-transform:0.3;transform:0.3}.fs-ajax-loader .fs-ajax-loader-bar-1{left:0px;animation-delay:0.6s;-o-animation-delay:0.6s;-ms-animation-delay:0.6s;-webkit-animation-delay:0.6s;-moz-animation-delay:0.6s}.fs-ajax-loader .fs-ajax-loader-bar-2{left:19px;animation-delay:0.75s;-o-animation-delay:0.75s;-ms-animation-delay:0.75s;-webkit-animation-delay:0.75s;-moz-animation-delay:0.75s}.fs-ajax-loader .fs-ajax-loader-bar-3{left:38px;animation-delay:0.9s;-o-animation-delay:0.9s;-ms-animation-delay:0.9s;-webkit-animation-delay:0.9s;-moz-animation-delay:0.9s}.fs-ajax-loader .fs-ajax-loader-bar-4{left:57px;animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s}.fs-ajax-loader .fs-ajax-loader-bar-5{left:76px;animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s}.fs-ajax-loader .fs-ajax-loader-bar-6{left:95px;animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s}.fs-ajax-loader .fs-ajax-loader-bar-7{left:114px;animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s}.fs-ajax-loader .fs-ajax-loader-bar-8{left:133px;animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s}@-moz-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-ms-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-o-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-webkit-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}.fs-modal-auto-install #request-filesystem-credentials-form h2,.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;padding:10px 10px 5px 10px;width:300px;max-width:100%}.fs-modal-auto-install #request-filesystem-credentials-form>div,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form fieldset{width:300px;max-width:100%;margin:0 auto;display:block}.button-primary.warn{box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c;background:#f56a48;border-color:#ec6544 #d2593c #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{color:#f5b3a1 !important;background:#e76444 !important;border-color:#d85e40 !important;text-shadow:0 -1px 0 rgba(0,0,0,0.1) !important}
1
+ .fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eeeeee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:0.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media (max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label{float:left}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.license_key{width:100%}#license_options_container table,#license_options_container table select,#license_options_container table #available_license_key{width:100%}#license_options_container table td:first-child{width:1%}#license_options_container table #other_license_key_container label{position:relative;top:6px;float:left;margin-right:5px}#license_options_container table #other_license_key_container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}#license_options_container table #other_license_key_container div input{margin:0}#sites_list_container td{cursor:pointer}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media (max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}
2
+ .rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-right:7px;margin-left:0}a.show-license-resend-modal{margin-top:4px;display:inline-block}.fs-ajax-loader{position:relative;width:170px;height:20px;margin:auto}.fs-ajax-loader .fs-ajax-loader-bar{position:absolute;top:0;background-color:#0074a3;width:20px;height:20px;-webkit-animation-name:bounce_ajaxLoader;-moz-animation-name:bounce_ajaxLoader;-ms-animation-name:bounce_ajaxLoader;-o-animation-name:bounce_ajaxLoader;animation-name:bounce_ajaxLoader;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-webkit-animation-direction:normal;-moz-animation-direction:normal;-ms-animation-direction:normal;-o-animation-direction:normal;animation-direction:normal;-moz-transform:0.3;-o-transform:0.3;-ms-transform:0.3;-webkit-transform:0.3;transform:0.3}.fs-ajax-loader .fs-ajax-loader-bar-1{left:0px;animation-delay:0.6s;-o-animation-delay:0.6s;-ms-animation-delay:0.6s;-webkit-animation-delay:0.6s;-moz-animation-delay:0.6s}.fs-ajax-loader .fs-ajax-loader-bar-2{left:19px;animation-delay:0.75s;-o-animation-delay:0.75s;-ms-animation-delay:0.75s;-webkit-animation-delay:0.75s;-moz-animation-delay:0.75s}.fs-ajax-loader .fs-ajax-loader-bar-3{left:38px;animation-delay:0.9s;-o-animation-delay:0.9s;-ms-animation-delay:0.9s;-webkit-animation-delay:0.9s;-moz-animation-delay:0.9s}.fs-ajax-loader .fs-ajax-loader-bar-4{left:57px;animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s}.fs-ajax-loader .fs-ajax-loader-bar-5{left:76px;animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s}.fs-ajax-loader .fs-ajax-loader-bar-6{left:95px;animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s}.fs-ajax-loader .fs-ajax-loader-bar-7{left:114px;animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s}.fs-ajax-loader .fs-ajax-loader-bar-8{left:133px;animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s}@-moz-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-ms-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-o-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-webkit-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}.fs-modal-auto-install #request-filesystem-credentials-form h2,.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;padding:10px 10px 5px 10px;width:300px;max-width:100%}.fs-modal-auto-install #request-filesystem-credentials-form>div,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form fieldset{width:300px;max-width:100%;margin:0 auto;display:block}.button-primary.warn{box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c;background:#f56a48;border-color:#ec6544 #d2593c #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{color:#f5b3a1 !important;background:#e76444 !important;border-color:#d85e40 !important;text-shadow:0 -1px 0 rgba(0,0,0,0.1) !important}
freemius/assets/scss/_colors.scss CHANGED
@@ -1,79 +1,79 @@
1
- $menu-hover-color: #333;
2
- $darkest-color: #000;
3
- $fms-live-color: #71ae00;
4
- $fms-test-color: #f7941d;
5
- $fms-link-color: #29abe1;
6
- $fms-link-hover-color: darken(#29abe1, 10%);
7
- $body-bkg: #111;
8
- $special-color: #d3135a;
9
- $body-color: #f1f1f1;
10
- $fms-white: #f1f1f1;
11
- $container-bkg: #222;
12
- $container-bkg-odd: #262626;
13
- $container-border-color: #333;
14
- $table-head-bkg: #333;
15
- $table-head-color: #999;
16
- $info-color: #999;
17
- $error-color: #ff0000;
18
-
19
- $fs-logo-blue-color: #29abe1;
20
- $fs-logo-green-color: #71ae00;
21
- $fs-logo-magenta-color: #d3135a;
22
-
23
- // WordPress colors.
24
- $page-header-bkg: #333;
25
- $page-header-color: $fms-white;
26
- $text-dark-color: #333;
27
- $text-light-color: #666;
28
- $text-lightest-color: #999;
29
-
30
- // Notices.
31
- $wp-notice-success-color: #f7fff7;
32
- $wp-notice-success-dark-color: #46b450;
33
- $wp-notice-error-color: #ffeaea;
34
- $wp-notice-error-dark-color: #dc3232;
35
- $wp-notice-warn-color: #fff8e5;
36
- $wp-notice-warn-dark-color: #ffb900;
37
- $fs-notice-promotion-border-color: #00a0d2;
38
- $fs-notice-promotion-bkg: #f2fcff;
39
-
40
- // WP Buttons.
41
- $button-primary-bkg: #6bc406;
42
- $button-primary-color: $fms-white;
43
- $button-secondary-bkg: #333;
44
- $button-secondary-color: $fms-white;
45
- $featured-color: #6bc406;
46
- $wp-selected-color: #0074a3;
47
- $wp-button-alert-border-color: #d2593c;
48
- $wp-button-alert-border-top-color: #ec6544;
49
- $wp-button-alert-shadow-color: #d2593c;
50
- $wp-button-alert-focused-shadow1-color: #dd6041;
51
- $wp-button-alert-focused-shadow2-color: #e4a796;
52
- $wp-button-alert-background-color: #f56a48;
53
- $wp-button-alert-hovered-background-color: #fd6d4a;
54
- $wp-button-alert-active-background-color: #dd6041;
55
- $wp-button-alert-disabled-color: #f5b3a1;
56
- $wp-button-alert-disabled-background-color: #e76444;
57
- $wp-button-alert-disabled-border-color: #d85e40;
58
-
59
- $wordpress_color: #01749A;
60
- $blogger_color: #ff8100;
61
- $wix_color: #fac102;
62
- $shopify_color: #80d100;
63
- $addthis_color: #fe6d4e;
64
- $tumblr_color: #34506b;
65
- $zepo_color: #00baf2;
66
- $jquery_color: #000919;
67
- $javascript_color: #00baf2;
68
- $squarespace_color: #000;
69
-
70
- $blog_color: #ff6600;
71
- $facebook_color: #3b5998;
72
- $twitter_color: #4099ff;
73
- $linkedin_color: #4875b4;
74
- $youtube_color: #ff3333;
75
- $gplus_color: #c63d2d;
76
-
77
- // Tooltip
78
- $tooltip-color: #fff;
79
- $tooltip-bkg-color: rgba(0,0,0,0.8);
1
+ $menu-hover-color: #333;
2
+ $darkest-color: #000;
3
+ $fms-live-color: #71ae00;
4
+ $fms-test-color: #f7941d;
5
+ $fms-link-color: #29abe1;
6
+ $fms-link-hover-color: darken(#29abe1, 10%);
7
+ $body-bkg: #111;
8
+ $special-color: #d3135a;
9
+ $body-color: #f1f1f1;
10
+ $fms-white: #f1f1f1;
11
+ $container-bkg: #222;
12
+ $container-bkg-odd: #262626;
13
+ $container-border-color: #333;
14
+ $table-head-bkg: #333;
15
+ $table-head-color: #999;
16
+ $info-color: #999;
17
+ $error-color: #ff0000;
18
+
19
+ $fs-logo-blue-color: #29abe1;
20
+ $fs-logo-green-color: #71ae00;
21
+ $fs-logo-magenta-color: #d3135a;
22
+
23
+ // WordPress colors.
24
+ $page-header-bkg: #333;
25
+ $page-header-color: $fms-white;
26
+ $text-dark-color: #333;
27
+ $text-light-color: #666;
28
+ $text-lightest-color: #999;
29
+
30
+ // Notices.
31
+ $wp-notice-success-color: #f7fff7;
32
+ $wp-notice-success-dark-color: #46b450;
33
+ $wp-notice-error-color: #ffeaea;
34
+ $wp-notice-error-dark-color: #dc3232;
35
+ $wp-notice-warn-color: #fff8e5;
36
+ $wp-notice-warn-dark-color: #ffb900;
37
+ $fs-notice-promotion-border-color: #00a0d2;
38
+ $fs-notice-promotion-bkg: #f2fcff;
39
+
40
+ // WP Buttons.
41
+ $button-primary-bkg: #6bc406;
42
+ $button-primary-color: $fms-white;
43
+ $button-secondary-bkg: #333;
44
+ $button-secondary-color: $fms-white;
45
+ $featured-color: #6bc406;
46
+ $wp-selected-color: #0074a3;
47
+ $wp-button-alert-border-color: #d2593c;
48
+ $wp-button-alert-border-top-color: #ec6544;
49
+ $wp-button-alert-shadow-color: #d2593c;
50
+ $wp-button-alert-focused-shadow1-color: #dd6041;
51
+ $wp-button-alert-focused-shadow2-color: #e4a796;
52
+ $wp-button-alert-background-color: #f56a48;
53
+ $wp-button-alert-hovered-background-color: #fd6d4a;
54
+ $wp-button-alert-active-background-color: #dd6041;
55
+ $wp-button-alert-disabled-color: #f5b3a1;
56
+ $wp-button-alert-disabled-background-color: #e76444;
57
+ $wp-button-alert-disabled-border-color: #d85e40;
58
+
59
+ $wordpress_color: #01749A;
60
+ $blogger_color: #ff8100;
61
+ $wix_color: #fac102;
62
+ $shopify_color: #80d100;
63
+ $addthis_color: #fe6d4e;
64
+ $tumblr_color: #34506b;
65
+ $zepo_color: #00baf2;
66
+ $jquery_color: #000919;
67
+ $javascript_color: #00baf2;
68
+ $squarespace_color: #000;
69
+
70
+ $blog_color: #ff6600;
71
+ $facebook_color: #3b5998;
72
+ $twitter_color: #4099ff;
73
+ $linkedin_color: #4875b4;
74
+ $youtube_color: #ff3333;
75
+ $gplus_color: #c63d2d;
76
+
77
+ // Tooltip
78
+ $tooltip-color: #fff;
79
+ $tooltip-bkg-color: rgba(0,0,0,0.8);
freemius/assets/scss/admin/_buttons.scss CHANGED
@@ -1,28 +1,28 @@
1
- .button-primary.warn {
2
- box-shadow: 0 1px 0 $wp-button-alert-shadow-color;
3
- text-shadow: 0 -1px 1px $wp-button-alert-shadow-color, 1px 0 1px $wp-button-alert-shadow-color, 0 1px 1px $wp-button-alert-shadow-color, -1px 0 1px $wp-button-alert-shadow-color;
4
- background: $wp-button-alert-background-color;
5
- border-color: $wp-button-alert-border-top-color $wp-button-alert-border-color $wp-button-alert-border-color;
6
-
7
- &:hover {
8
- background: $wp-button-alert-hovered-background-color;
9
- border-color: $wp-button-alert-border-color;
10
- }
11
-
12
- &:focus {
13
- box-shadow: 0 1px 0 $wp-button-alert-focused-shadow1-color, 0 0 2px 1px $wp-button-alert-focused-shadow2-color;
14
- }
15
-
16
- &:active {
17
- background: $wp-button-alert-active-background-color;
18
- border-color: $wp-button-alert-border-color;
19
- box-shadow: inset 0 2px 0 $wp-button-alert-shadow-color;
20
- }
21
-
22
- &.disabled {
23
- color: $wp-button-alert-disabled-color !important;
24
- background: $wp-button-alert-disabled-background-color !important;
25
- border-color: $wp-button-alert-disabled-border-color !important;
26
- text-shadow: 0 -1px 0 rgba(0,0,0,.1) !important;
27
- }
28
  }
1
+ .button-primary.warn {
2
+ box-shadow: 0 1px 0 $wp-button-alert-shadow-color;
3
+ text-shadow: 0 -1px 1px $wp-button-alert-shadow-color, 1px 0 1px $wp-button-alert-shadow-color, 0 1px 1px $wp-button-alert-shadow-color, -1px 0 1px $wp-button-alert-shadow-color;
4
+ background: $wp-button-alert-background-color;
5
+ border-color: $wp-button-alert-border-top-color $wp-button-alert-border-color $wp-button-alert-border-color;
6
+
7
+ &:hover {
8
+ background: $wp-button-alert-hovered-background-color;
9
+ border-color: $wp-button-alert-border-color;
10
+ }
11
+
12
+ &:focus {
13
+ box-shadow: 0 1px 0 $wp-button-alert-focused-shadow1-color, 0 0 2px 1px $wp-button-alert-focused-shadow2-color;
14
+ }
15
+
16
+ &:active {
17
+ background: $wp-button-alert-active-background-color;
18
+ border-color: $wp-button-alert-border-color;
19
+ box-shadow: inset 0 2px 0 $wp-button-alert-shadow-color;
20
+ }
21
+
22
+ &.disabled {
23
+ color: $wp-button-alert-disabled-color !important;
24
+ background: $wp-button-alert-disabled-background-color !important;
25
+ border-color: $wp-button-alert-disabled-border-color !important;
26
+ text-shadow: 0 -1px 0 rgba(0,0,0,.1) !important;
27
+ }
28
  }
freemius/assets/scss/admin/_subscription-cancellation.scss CHANGED
@@ -1,30 +1,30 @@
1
- .fs-modal.fs-modal-subscription-cancellation {
2
- .fs-price-increase-warning {
3
- color: red;
4
- font-weight: bold;
5
- padding: 0 25px;
6
- margin-bottom: 0;
7
- }
8
-
9
- ul.subscription-actions label {
10
- input {
11
- float: left;
12
- top: 5px;
13
- position: relative;
14
-
15
- .rtl & {
16
- float: right;
17
- }
18
- }
19
-
20
- span {
21
- display: block;
22
- margin-left: 24px;
23
-
24
- .rtl & {
25
- margin-left: 0;
26
- margin-right: 24px;
27
- }
28
- }
29
- }
30
  }
1
+ .fs-modal.fs-modal-subscription-cancellation {
2
+ .fs-price-increase-warning {
3
+ color: red;
4
+ font-weight: bold;
5
+ padding: 0 25px;
6
+ margin-bottom: 0;
7
+ }
8
+
9
+ ul.subscription-actions label {
10
+ input {
11
+ float: left;
12
+ top: 5px;
13
+ position: relative;
14
+
15
+ .rtl & {
16
+ float: right;
17
+ }
18
+ }
19
+
20
+ span {
21
+ display: block;
22
+ margin-left: 24px;
23
+
24
+ .rtl & {
25
+ margin-left: 0;
26
+ margin-right: 24px;
27
+ }
28
+ }
29
+ }
30
  }
freemius/assets/scss/admin/dialog-boxes.scss CHANGED
@@ -1,10 +1,10 @@
1
- @import "../start";
2
- @import "modal-common";
3
- @import "deactivation-feedback";
4
- @import "subscription-cancellation";
5
- @import "license-activation";
6
- @import "multisite-options";
7
- @import "license-key-resend";
8
- @import "ajax-loader";
9
- @import "auto-install";
10
  @import "buttons";
1
+ @import "../start";
2
+ @import "modal-common";
3
+ @import "deactivation-feedback";
4
+ @import "subscription-cancellation";
5
+ @import "license-activation";
6
+ @import "multisite-options";
7
+ @import "license-key-resend";
8
+ @import "ajax-loader";
9
+ @import "auto-install";
10
  @import "buttons";
freemius/assets/scss/admin/plugin-upgrade-notice.scss CHANGED
@@ -1,8 +1,8 @@
1
- .plugins p.upgrade-notice
2
- {
3
- border: 0;
4
- background-color: #d54e21;
5
- padding: 10px;
6
- color: #f9f9f9;
7
- margin-top: 10px;
8
  }
1
+ .plugins p.upgrade-notice
2
+ {
3
+ border: 0;
4
+ background-color: #d54e21;
5
+ padding: 10px;
6
+ color: #f9f9f9;
7
+ margin-top: 10px;
8
  }
freemius/includes/entities/class-fs-plugin.php CHANGED
@@ -1,142 +1,142 @@
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 1.0.3
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- class FS_Plugin extends FS_Scope_Entity {
14
- /**
15
- * @since 1.0.6
16
- * @var null|number
17
- */
18
- public $parent_plugin_id;
19
- /**
20
- * @var string
21
- */
22
- public $title;
23
- /**
24
- * @var string
25
- */
26
- public $slug;
27
- /**
28
- * @author Leo Fajardo (@leorw)
29
- * @since 2.2.1
30
- *
31
- * @var string
32
- */
33
- public $premium_slug;
34
- /**
35
- * @since 1.2.2
36
- *
37
- * @var string 'plugin' or 'theme'
38
- */
39
- public $type;
40
- /**
41
- * @author Leo Fajardo (@leorw)
42
- *
43
- * @since 1.2.3
44
- *
45
- * @var string|false false if the module doesn't have an affiliate program or one of the following: 'selected', 'customers', or 'all'.
46
- */
47
- public $affiliate_moderation;
48
- /**
49
- * @var bool Set to true if the free version of the module is hosted on WordPress.org. Defaults to true.
50
- */
51
- public $is_wp_org_compliant = true;
52
-
53
- #region Install Specific Properties
54
-
55
- /**
56
- * @var string
57
- */
58
- public $file;
59
- /**
60
- * @var string
61
- */
62
- public $version;
63
- /**
64
- * @var bool
65
- */
66
- public $auto_update;
67
- /**
68
- * @var FS_Plugin_Info
69
- */
70
- public $info;
71
- /**
72
- * @since 1.0.9
73
- *
74
- * @var bool
75
- */
76
- public $is_premium;
77
- /**
78
- * @author Leo Fajardo (@leorw)
79
- * @since 2.2.1
80
- *
81
- * @var string
82
- */
83
- public $premium_suffix;
84
- /**
85
- * @since 1.0.9
86
- *
87
- * @var bool
88
- */
89
- public $is_live;
90
-
91
- const AFFILIATE_MODERATION_CUSTOMERS = 'customers';
92
-
93
- #endregion Install Specific Properties
94
-
95
- /**
96
- * @param stdClass|bool $plugin
97
- */
98
- function __construct( $plugin = false ) {
99
- parent::__construct( $plugin );
100
-
101
- $this->is_premium = false;
102
- $this->is_live = true;
103
-
104
- if ( empty( $this->premium_slug ) && ! empty( $plugin->slug ) ) {
105
- $this->premium_slug = "{$this->slug}-premium";
106
- }
107
-
108
- if ( empty( $this->premium_suffix ) ) {
109
- $this->premium_suffix = '(Premium)';
110
- }
111
-
112
- if ( isset( $plugin->info ) && is_object( $plugin->info ) ) {
113
- $this->info = new FS_Plugin_Info( $plugin->info );
114
- }
115
- }
116
-
117
- /**
118
- * Check if plugin is an add-on (has parent).
119
- *
120
- * @author Vova Feldman (@svovaf)
121
- * @since 1.0.6
122
- *
123
- * @return bool
124
- */
125
- function is_addon() {
126
- return isset( $this->parent_plugin_id ) && is_numeric( $this->parent_plugin_id );
127
- }
128
-
129
- /**
130
- * @author Leo Fajardo (@leorw)
131
- * @since 1.2.3
132
- *
133
- * @return bool
134
- */
135
- function has_affiliate_program() {
136
- return ( ! empty( $this->affiliate_moderation ) );
137
- }
138
-
139
- static function get_type() {
140
- return 'plugin';
141
- }
142
  }
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 1.0.3
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ class FS_Plugin extends FS_Scope_Entity {
14
+ /**
15
+ * @since 1.0.6
16
+ * @var null|number
17
+ */
18
+ public $parent_plugin_id;
19
+ /**
20
+ * @var string
21
+ */
22
+ public $title;
23
+ /**
24
+ * @var string
25
+ */
26
+ public $slug;
27
+ /**
28
+ * @author Leo Fajardo (@leorw)
29
+ * @since 2.2.1
30
+ *
31
+ * @var string
32
+ */
33
+ public $premium_slug;
34
+ /**
35
+ * @since 1.2.2
36
+ *
37
+ * @var string 'plugin' or 'theme'
38
+ */
39
+ public $type;
40
+ /**
41
+ * @author Leo Fajardo (@leorw)
42
+ *
43
+ * @since 1.2.3
44
+ *
45
+ * @var string|false false if the module doesn't have an affiliate program or one of the following: 'selected', 'customers', or 'all'.
46
+ */
47
+ public $affiliate_moderation;
48
+ /**
49
+ * @var bool Set to true if the free version of the module is hosted on WordPress.org. Defaults to true.
50
+ */
51
+ public $is_wp_org_compliant = true;
52
+
53
+ #region Install Specific Properties
54
+
55
+ /**
56
+ * @var string
57
+ */
58
+ public $file;
59
+ /**
60
+ * @var string
61
+ */
62
+ public $version;
63
+ /**
64
+ * @var bool
65
+ */
66
+ public $auto_update;
67
+ /**
68
+ * @var FS_Plugin_Info
69
+ */
70
+ public $info;
71
+ /**
72
+ * @since 1.0.9
73
+ *
74
+ * @var bool
75
+ */
76
+ public $is_premium;
77
+ /**
78
+ * @author Leo Fajardo (@leorw)
79
+ * @since 2.2.1
80
+ *
81
+ * @var string
82
+ */
83
+ public $premium_suffix;
84
+ /**
85
+ * @since 1.0.9
86
+ *
87
+ * @var bool
88
+ */
89
+ public $is_live;
90
+
91
+ const AFFILIATE_MODERATION_CUSTOMERS = 'customers';
92
+
93
+ #endregion Install Specific Properties
94
+
95
+ /**
96
+ * @param stdClass|bool $plugin
97
+ */
98
+ function __construct( $plugin = false ) {
99
+ parent::__construct( $plugin );
100
+
101
+ $this->is_premium = false;
102
+ $this->is_live = true;
103
+
104
+ if ( empty( $this->premium_slug ) && ! empty( $plugin->slug ) ) {
105
+ $this->premium_slug = "{$this->slug}-premium";
106
+ }
107
+
108
+ if ( empty( $this->premium_suffix ) ) {
109
+ $this->premium_suffix = '(Premium)';
110
+ }
111
+
112
+ if ( isset( $plugin->info ) && is_object( $plugin->info ) ) {
113
+ $this->info = new FS_Plugin_Info( $plugin->info );
114
+ }
115
+ }
116
+
117
+ /**
118
+ * Check if plugin is an add-on (has parent).
119
+ *
120
+ * @author Vova Feldman (@svovaf)
121
+ * @since 1.0.6
122
+ *
123
+ * @return bool
124
+ */
125
+ function is_addon() {
126
+ return isset( $this->parent_plugin_id ) && is_numeric( $this->parent_plugin_id );
127
+ }
128
+
129
+ /**
130
+ * @author Leo Fajardo (@leorw)
131
+ * @since 1.2.3
132
+ *
133
+ * @return bool
134
+ */
135
+ function has_affiliate_program() {
136
+ return ( ! empty( $this->affiliate_moderation ) );
137
+ }
138
+
139
+ static function get_type() {
140
+ return 'plugin';
141
+ }
142
  }
freemius/includes/entities/class-fs-site.php CHANGED
@@ -1,230 +1,230 @@
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 1.0.3
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- class FS_Site extends FS_Scope_Entity {
14
- /**
15
- * @var number
16
- */
17
- public $site_id;
18
- /**
19
- * @var number
20
- */
21
- public $plugin_id;
22
- /**
23
- * @var number
24
- */
25
- public $user_id;
26
- /**
27
- * @var string
28
- */
29
- public $title;
30
- /**
31
- * @var string
32
- */
33
- public $url;
34
- /**
35
- * @var string
36
- */
37
- public $version;
38
- /**
39
- * @var string E.g. en-GB
40
- */
41
- public $language;
42
- /**
43
- * @var string E.g. UTF-8
44
- */
45
- public $charset;
46
- /**
47
- * @var string Platform version (e.g WordPress version).
48
- */
49
- public $platform_version;
50
- /**
51
- * Freemius SDK version
52
- *
53
- * @author Leo Fajardo (@leorw)
54
- * @since 1.2.2
55
- *
56
- * @var string SDK version (e.g.: 1.2.2)
57
- */
58
- public $sdk_version;
59
- /**
60
- * @var string Programming language version (e.g PHP version).
61
- */
62
- public $programming_language_version;
63
- /**
64
- * @var number|null
65
- */
66
- public $plan_id;
67
- /**
68
- * @var number|null
69
- */
70
- public $license_id;
71
- /**
72
- * @var number|null
73
- */
74
- public $trial_plan_id;
75
- /**
76
- * @var string|null
77
- */
78
- public $trial_ends;
79
- /**
80
- * @since 1.0.9
81
- *
82
- * @var bool
83
- */
84
- public $is_premium = false;
85
- /**
86
- * @author Leo Fajardo (@leorw)
87
- *
88
- * @since 1.2.1.5
89
- *
90
- * @var bool
91
- */
92
- public $is_disconnected = false;
93
- /**
94
- * @since 2.0.0
95
- *
96
- * @var bool
97
- */
98
- public $is_active = true;
99
- /**
100
- * @since 2.0.0
101
- *
102
- * @var bool
103
- */
104
- public $is_uninstalled = false;
105
-
106
- /**
107
- * @param stdClass|bool $site
108
- */
109
- function __construct( $site = false ) {
110
- parent::__construct( $site );
111
-
112
- if ( is_object( $site ) ) {
113
- $this->plan_id = $site->plan_id;
114
- }
115
-
116
- if ( ! is_bool( $this->is_disconnected ) ) {
117
- $this->is_disconnected = false;
118
- }
119
- }
120
-
121
- static function get_type() {
122
- return 'install';
123
- }
124
-
125
- /**
126
- * @author Vova Feldman (@svovaf)
127
- * @since 2.0.0
128
- *
129
- * @param string $url
130
- *
131
- * @return bool
132
- */
133
- static function is_localhost_by_address( $url ) {
134
- if ( false !== strpos( $url, '127.0.0.1' ) ||
135
- false !== strpos( $url, 'localhost' )
136
- ) {
137
- return true;
138
- }
139
-
140
- if ( ! fs_starts_with( $url, 'http' ) ) {
141
- $url = 'http://' . $url;
142
- }
143
-
144
- $url_parts = parse_url( $url );
145
-
146
- $subdomain = $url_parts['host'];
147
-
148
- return (
149
- // Starts with.
150
- fs_starts_with( $subdomain, 'local.' ) ||
151
- fs_starts_with( $subdomain, 'dev.' ) ||
152
- fs_starts_with( $subdomain, 'test.' ) ||
153
- fs_starts_with( $subdomain, 'stage.' ) ||
154
- fs_starts_with( $subdomain, 'staging.' ) ||
155
-
156
- // Ends with.
157
- fs_ends_with( $subdomain, '.dev' ) ||
158
- fs_ends_with( $subdomain, '.test' ) ||
159
- fs_ends_with( $subdomain, '.staging' ) ||
160
- fs_ends_with( $subdomain, '.local' ) ||
161
- fs_ends_with( $subdomain, '.example' ) ||
162
- fs_ends_with( $subdomain, '.invalid' ) ||
163
- // GoDaddy test/dev.
164
- fs_ends_with( $subdomain, '.myftpupload.com' ) ||
165
- // ngrok tunneling.
166
- fs_ends_with( $subdomain, '.ngrok.io' ) ||
167
- // wpsandbox.
168
- fs_ends_with( $subdomain, '.wpsandbox.pro' ) ||
169
- // SiteGround staging.
170
- fs_starts_with( $subdomain, 'staging' ) ||
171
- // WPEngine staging.
172
- fs_ends_with( $subdomain, '.staging.wpengine.com' ) ||
173
- // Pantheon
174
- ( fs_ends_with($subdomain, 'pantheonsite.io') &&
175
- (fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-'))) ||
176
- // Cloudways
177
- fs_ends_with( $subdomain, '.cloudwaysapps.com' ) ||
178
- // Kinsta
179
- (fs_ends_with($subdomain, '.kinsta.com') && fs_starts_with($subdomain, 'staging-'))
180
- );
181
- }
182
-
183
- function is_localhost() {
184
- return ( WP_FS__IS_LOCALHOST_FOR_SERVER || self::is_localhost_by_address( $this->url ) );
185
- }
186
-
187
- /**
188
- * Check if site in trial.
189
- *
190
- * @author Vova Feldman (@svovaf)
191
- * @since 1.0.9
192
- *
193
- * @return bool
194
- */
195
- function is_trial() {
196
- return is_numeric( $this->trial_plan_id ) && ( strtotime( $this->trial_ends ) > WP_FS__SCRIPT_START_TIME );
197
- }
198
-
199
- /**
200
- * Check if user already utilized the trial with the current install.
201
- *
202
- * @author Vova Feldman (@svovaf)
203
- * @since 1.0.9
204
- *
205
- * @return bool
206
- */
207
- function is_trial_utilized() {
208
- return is_numeric( $this->trial_plan_id );
209
- }
210
-
211
- /**
212
- * @author Vova Feldman (@svovaf)
213
- * @since 2.0.0
214
- *
215
- * @return bool
216
- */
217
- function is_tracking_allowed() {
218
- return ( true !== $this->is_disconnected );
219
- }
220
-
221
- /**
222
- * @author Vova Feldman (@svovaf)
223
- * @since 2.0.0
224
- *
225
- * @return bool
226
- */
227
- function is_tracking_prohibited() {
228
- return ! $this->is_tracking_allowed();
229
- }
230
  }
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 1.0.3
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ class FS_Site extends FS_Scope_Entity {
14
+ /**
15
+ * @var number
16
+ */
17
+ public $site_id;
18
+ /**
19
+ * @var number
20
+ */
21
+ public $plugin_id;
22
+ /**
23
+ * @var number
24
+ */
25
+ public $user_id;
26
+ /**
27
+ * @var string
28
+ */
29
+ public $title;
30
+ /**
31
+ * @var string
32
+ */
33
+ public $url;
34
+ /**
35
+ * @var string
36
+ */
37
+ public $version;
38
+ /**
39
+ * @var string E.g. en-GB
40
+ */
41
+ public $language;
42
+ /**
43
+ * @var string E.g. UTF-8
44
+ */
45
+ public $charset;
46
+ /**
47
+ * @var string Platform version (e.g WordPress version).
48
+ */
49
+ public $platform_version;
50
+ /**
51
+ * Freemius SDK version
52
+ *
53
+ * @author Leo Fajardo (@leorw)
54
+ * @since 1.2.2
55
+ *
56
+ * @var string SDK version (e.g.: 1.2.2)
57
+ */
58
+ public $sdk_version;
59
+ /**
60
+ * @var string Programming language version (e.g PHP version).
61
+ */
62
+ public $programming_language_version;
63
+ /**
64
+ * @var number|null
65
+ */
66
+ public $plan_id;
67
+ /**
68
+ * @var number|null
69
+ */
70
+ public $license_id;
71
+ /**
72
+ * @var number|null
73
+ */
74
+ public $trial_plan_id;
75
+ /**
76
+ * @var string|null
77
+ */
78
+ public $trial_ends;
79
+ /**
80
+ * @since 1.0.9
81
+ *
82
+ * @var bool
83
+ */
84
+ public $is_premium = false;
85
+ /**
86
+ * @author Leo Fajardo (@leorw)
87
+ *
88
+ * @since 1.2.1.5
89
+ *
90
+ * @var bool
91
+ */
92
+ public $is_disconnected = false;
93
+ /**
94
+ * @since 2.0.0
95
+ *
96
+ * @var bool
97
+ */
98
+ public $is_active = true;
99
+ /**
100
+ * @since 2.0.0
101
+ *
102
+ * @var bool
103
+ */
104
+ public $is_uninstalled = false;
105
+
106
+ /**
107
+ * @param stdClass|bool $site
108
+ */
109
+ function __construct( $site = false ) {
110
+ parent::__construct( $site );
111
+
112
+ if ( is_object( $site ) ) {
113
+ $this->plan_id = $site->plan_id;
114
+ }
115
+
116
+ if ( ! is_bool( $this->is_disconnected ) ) {
117
+ $this->is_disconnected = false;
118
+ }
119
+ }
120
+
121
+ static function get_type() {
122
+ return 'install';
123
+ }
124
+
125
+ /**
126
+ * @author Vova Feldman (@svovaf)
127
+ * @since 2.0.0
128
+ *
129
+ * @param string $url
130
+ *
131
+ * @return bool
132
+ */
133
+ static function is_localhost_by_address( $url ) {
134
+ if ( false !== strpos( $url, '127.0.0.1' ) ||
135
+ false !== strpos( $url, 'localhost' )
136
+ ) {
137
+ return true;
138
+ }
139
+
140
+ if ( ! fs_starts_with( $url, 'http' ) ) {
141
+ $url = 'http://' . $url;
142
+ }
143
+
144
+ $url_parts = parse_url( $url );
145
+
146
+ $subdomain = $url_parts['host'];
147
+
148
+ return (
149
+ // Starts with.
150
+ fs_starts_with( $subdomain, 'local.' ) ||
151
+ fs_starts_with( $subdomain, 'dev.' ) ||
152
+ fs_starts_with( $subdomain, 'test.' ) ||
153
+ fs_starts_with( $subdomain, 'stage.' ) ||
154
+ fs_starts_with( $subdomain, 'staging.' ) ||
155
+
156
+ // Ends with.
157
+ fs_ends_with( $subdomain, '.dev' ) ||
158
+ fs_ends_with( $subdomain, '.test' ) ||
159
+ fs_ends_with( $subdomain, '.staging' ) ||
160
+ fs_ends_with( $subdomain, '.local' ) ||
161
+ fs_ends_with( $subdomain, '.example' ) ||
162
+ fs_ends_with( $subdomain, '.invalid' ) ||
163
+ // GoDaddy test/dev.
164
+ fs_ends_with( $subdomain, '.myftpupload.com' ) ||
165
+ // ngrok tunneling.
166
+ fs_ends_with( $subdomain, '.ngrok.io' ) ||
167
+ // wpsandbox.
168
+ fs_ends_with( $subdomain, '.wpsandbox.pro' ) ||
169
+ // SiteGround staging.
170
+ fs_starts_with( $subdomain, 'staging' ) ||
171
+ // WPEngine staging.
172
+ fs_ends_with( $subdomain, '.staging.wpengine.com' ) ||
173
+ // Pantheon
174
+ ( fs_ends_with($subdomain, 'pantheonsite.io') &&
175
+ (fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-'))) ||
176
+ // Cloudways
177
+ fs_ends_with( $subdomain, '.cloudwaysapps.com' ) ||
178
+ // Kinsta
179
+ (fs_ends_with($subdomain, '.kinsta.com') && fs_starts_with($subdomain, 'staging-'))
180
+ );
181
+ }
182
+
183
+ function is_localhost() {
184
+ return ( WP_FS__IS_LOCALHOST_FOR_SERVER || self::is_localhost_by_address( $this->url ) );
185
+ }
186
+
187
+ /**
188
+ * Check if site in trial.
189
+ *
190
+ * @author Vova Feldman (@svovaf)
191
+ * @since 1.0.9
192
+ *
193
+ * @return bool
194
+ */
195
+ function is_trial() {
196
+ return is_numeric( $this->trial_plan_id ) && ( strtotime( $this->trial_ends ) > WP_FS__SCRIPT_START_TIME );
197
+ }
198
+
199
+ /**
200
+ * Check if user already utilized the trial with the current install.
201
+ *
202
+ * @author Vova Feldman (@svovaf)
203
+ * @since 1.0.9
204
+ *
205
+ * @return bool
206
+ */
207
+ function is_trial_utilized() {
208
+ return is_numeric( $this->trial_plan_id );
209
+ }
210
+
211
+ /**
212
+ * @author Vova Feldman (@svovaf)
213
+ * @since 2.0.0
214
+ *
215
+ * @return bool
216
+ */
217
+ function is_tracking_allowed() {
218
+ return ( true !== $this->is_disconnected );
219
+ }
220
+
221
+ /**
222
+ * @author Vova Feldman (@svovaf)
223
+ * @since 2.0.0
224
+ *
225
+ * @return bool
226
+ */
227
+ function is_tracking_prohibited() {
228
+ return ! $this->is_tracking_allowed();
229
+ }
230
  }
freemius/includes/managers/class-fs-admin-menu-manager.php CHANGED
@@ -1,969 +1,969 @@
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 1.1.3
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- class FS_Admin_Menu_Manager {
14
-
15
- #region Properties
16
-
17
- /**
18
- * @since 1.2.2
19
- *
20
- * @var string
21
- */
22
- protected $_module_unique_affix;
23
-
24
- /**
25
- * @since 1.2.2
26
- *
27
- * @var number
28
- */
29
- protected $_module_id;
30
-
31
- /**
32
- * @since 1.2.2
33
- *
34
- * @var string
35
- */
36
- protected $_module_type;
37
-
38
- /**
39
- * @since 1.0.6
40
- *
41
- * @var string
42
- */
43
- private $_menu_slug;
44
- /**
45
- * @since 1.1.3
46
- *
47
- * @var string
48
- */
49
- private $_parent_slug;
50
- /**
51
- * @since 1.1.3
52
- *
53
- * @var string
54
- */
55
- private $_parent_type;
56
- /**
57
- * @since 1.1.3
58
- *
59
- * @var string
60
- */
61
- private $_type;
62
- /**
63
- * @since 1.1.3
64
- *
65
- * @var bool
66
- */
67
- private $_is_top_level;
68
- /**
69
- * @since 1.1.3
70
- *
71
- * @var bool
72
- */
73
- private $_is_override_exact;
74
- /**
75
- * @since 1.1.3
76
- *
77
- * @var array<string,bool>
78
- */
79
- private $_default_submenu_items;
80
- /**
81
- * @since 1.1.3
82
- *
83
- * @var string
84
- */
85
- private $_first_time_path;
86
- /**
87
- * @since 1.2.2
88
- *
89
- * @var bool
90
- */
91
- private $_menu_exists;
92
- /**
93
- * @since 2.0.0
94
- *
95
- * @var bool
96
- */
97
- private $_network_menu_exists;
98
-
99
- #endregion Properties
100
-
101
- /**
102
- * @var FS_Logger
103
- */
104
- protected $_logger;
105
-
106
- #region Singleton
107
-
108
- /**
109
- * @var FS_Admin_Menu_Manager[]
110
- */
111
- private static $_instances = array();
112
-
113
- /**
114
- * @param number $module_id
115
- * @param string $module_type
116
- * @param string $module_unique_affix
117
- *
118
- * @return FS_Admin_Menu_Manager
119
- */
120
- static function instance( $module_id, $module_type, $module_unique_affix ) {
121
- $key = 'm_' . $module_id;
122
-
123
- if ( ! isset( self::$_instances[ $key ] ) ) {
124
- self::$_instances[ $key ] = new FS_Admin_Menu_Manager( $module_id, $module_type, $module_unique_affix );
125
- }
126
-
127
- return self::$_instances[ $key ];
128
- }
129
-
130
- protected function __construct( $module_id, $module_type, $module_unique_affix ) {
131
- $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $module_id . '_admin_menu', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK );
132
-
133
- $this->_module_id = $module_id;
134
- $this->_module_type = $module_type;
135
- $this->_module_unique_affix = $module_unique_affix;
136
- }
137
-
138
- #endregion Singleton
139
-
140
- #region Helpers
141
-
142
- private function get_option( &$options, $key, $default = false ) {
143
- return ! empty( $options[ $key ] ) ? $options[ $key ] : $default;
144
- }
145
-
146
- private function get_bool_option( &$options, $key, $default = false ) {
147
- return isset( $options[ $key ] ) && is_bool( $options[ $key ] ) ? $options[ $key ] : $default;
148
- }
149
-
150
- #endregion Helpers
151
-
152
- /**
153
- * @param array $menu
154
- * @param bool $is_addon
155
- */
156
- function init( $menu, $is_addon = false ) {
157
- $this->_menu_exists = ( isset( $menu['slug'] ) && ! empty( $menu['slug'] ) );
158
- $this->_network_menu_exists = ( ! empty( $menu['network'] ) && true === $menu['network'] );
159
-
160
- $this->_menu_slug = ( $this->_menu_exists ? $menu['slug'] : $this->_module_unique_affix );
161
-
162
- $this->_default_submenu_items = array();
163
- // @deprecated
164
- $this->_type = 'page';
165
- $this->_is_top_level = true;
166
- $this->_is_override_exact = false;
167
- $this->_parent_slug = false;
168
- // @deprecated
169
- $this->_parent_type = 'page';
170
-
171
- if ( isset( $menu ) ) {
172
- if ( ! $is_addon ) {
173
- $this->_default_submenu_items = array(
174
- 'contact' => $this->get_bool_option( $menu, 'contact', true ),
175
- 'support' => $this->get_bool_option( $menu, 'support', true ),
176
- 'affiliation' => $this->get_bool_option( $menu, 'affiliation', true ),
177
- 'account' => $this->get_bool_option( $menu, 'account', true ),
178
- 'pricing' => $this->get_bool_option( $menu, 'pricing', true ),
179
- 'addons' => $this->get_bool_option( $menu, 'addons', true ),
180
- );
181
-
182
- // @deprecated
183
- $this->_type = $this->get_option( $menu, 'type', 'page' );
184
-
185
- $this->_first_time_path = $this->get_option( $menu, 'first-path', false );
186
- if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
187
- $this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
188
- }
189
- }
190
-
191
- $this->_is_override_exact = $this->get_bool_option( $menu, 'override_exact' );
192
-
193
- if ( isset( $menu['parent'] ) ) {
194
- $this->_parent_slug = $this->get_option( $menu['parent'], 'slug' );
195
- // @deprecated
196
- $this->_parent_type = $this->get_option( $menu['parent'], 'type', 'page' );
197
-
198
- // If parent's slug is different, then it's NOT a top level menu item.
199
- $this->_is_top_level = ( $this->_parent_slug === $this->_menu_slug );
200
- } else {
201
- /**
202
- * If no parent then top level if:
203
- * - Has custom admin menu ('page')
204
- * - CPT menu type ('cpt')
205
- */
206
- // $this->_is_top_level = in_array( $this->_type, array(
207
- // 'cpt',
208
- // 'page'
209
- // ) );
210
- }
211
- }
212
- }
213
-
214
- /**
215
- * Check if top level menu.
216
- *
217
- * @author Vova Feldman (@svovaf)
218
- * @since 1.1.3
219
- *
220
- * @return bool False if submenu item.
221
- */
222
- function is_top_level() {
223
- return $this->_is_top_level;
224
- }
225
-
226
- /**
227
- * Check if the page should be override on exact URL match.
228
- *
229
- * @author Vova Feldman (@svovaf)
230
- * @since 1.1.3
231
- *
232
- * @return bool False if submenu item.
233
- */
234
- function is_override_exact() {
235
- return $this->_is_override_exact;
236
- }
237
-
238
-
239
- /**
240
- * Get the path of the page the user should be forwarded to after first activation.
241
- *
242
- * @author Vova Feldman (@svovaf)
243
- * @since 1.1.3
244
- *
245
- * @return string
246
- */
247
- function get_first_time_path() {
248
- return $this->_first_time_path;
249
- }
250
-
251
- /**
252
- * Check if plugin's menu item is part of a custom top level menu.
253
- *
254
- * @author Vova Feldman (@svovaf)
255
- * @since 1.1.3
256
- *
257
- * @return bool
258
- */
259
- function has_custom_parent() {
260
- return ! $this->_is_top_level && is_string( $this->_parent_slug );
261
- }
262
-
263
- /**
264
- * @author Leo Fajardo (@leorw)
265
- * @since 1.2.2
266
- *
267
- * @return bool
268
- */
269
- function has_menu() {
270
- return $this->_menu_exists;
271
- }
272
-
273
- /**
274
- * @author Vova Feldman (@svovaf)
275
- * @since 2.0.0
276
- *
277
- * @return bool
278
- */
279
- function has_network_menu() {
280
- return $this->_network_menu_exists;
281
- }
282
-
283
- /**
284
- * @author Leo Fajardo (@leorw)
285
- *
286
- * @param string $menu_slug
287
- *
288
- * @since 2.1.3
289
- */
290
- function set_slug_and_network_menu_exists_flag($menu_slug ) {
291
- $this->_menu_slug = $menu_slug;
292
- $this->_network_menu_exists = false;
293
- }
294
-
295
- /**
296
- * @author Vova Feldman (@svovaf)
297
- * @since 1.1.3
298
- *
299
- * @param string $id
300
- * @param bool $default
301
- * @param bool $ignore_menu_existence Since 1.2.2.7 If true, check if the submenu item visible even if there's no parent menu.
302
- *
303
- * @return bool
304
- */
305
- function is_submenu_item_visible( $id, $default = true, $ignore_menu_existence = false ) {
306
- if ( ! $ignore_menu_existence && ! $this->has_menu() ) {
307
- return false;
308
- }
309
-
310
- return fs_apply_filter(
311
- $this->_module_unique_affix,
312
- 'is_submenu_visible',
313
- $this->get_bool_option( $this->_default_submenu_items, $id, $default ),
314
- $id
315
- );
316
- }
317
-
318
- /**
319
- * Calculates admin settings menu slug.
320
- * If plugin's menu slug is a file (e.g. CPT), uses plugin's slug as the menu slug.
321
- *
322
- * @author Vova Feldman (@svovaf)
323
- * @since 1.1.3
324
- *
325
- * @param string $page
326
- *
327
- * @return string
328
- */
329
- function get_slug( $page = '' ) {
330
- return ( ( false === strpos( $this->_menu_slug, '.php?' ) ) ?
331
- $this->_menu_slug :
332
- $this->_module_unique_affix ) . ( empty( $page ) ? '' : ( '-' . $page ) );
333
- }
334
-
335
- /**
336
- * @author Vova Feldman (@svovaf)
337
- * @since 1.1.3
338
- *
339
- * @return string
340
- */
341
- function get_parent_slug() {
342
- return $this->_parent_slug;
343
- }
344
-
345
- /**
346
- * @author Vova Feldman (@svovaf)
347
- * @since 1.1.3
348
- *
349
- * @return string
350
- */
351
- function get_type() {
352
- return $this->_type;
353
- }
354
-
355
- /**
356
- * @author Vova Feldman (@svovaf)
357
- * @since 1.1.3
358
- *
359
- * @return bool
360
- */
361
- function is_cpt() {
362
- return ( 0 === strpos( $this->_menu_slug, 'edit.php?post_type=' ) ||
363
- // Back compatibility.
364
- 'cpt' === $this->_type
365
- );
366
- }
367
-
368
- /**
369
- * @author Vova Feldman (@svovaf)
370
- * @since 1.1.3
371
- *
372
- * @return string
373
- */
374
- function get_parent_type() {
375
- return $this->_parent_type;
376
- }
377
-
378
- /**
379
- * @author Vova Feldman (@svovaf)
380
- * @since 1.1.3
381
- *
382
- * @return string
383
- */
384
- function get_raw_slug() {
385
- return $this->_menu_slug;
386
- }
387
-
388
- /**
389
- * Get plugin's original menu slug.
390
- *
391
- * @author Vova Feldman (@svovaf)
392
- * @since 1.1.3
393
- *
394
- * @return string
395
- */
396
- function get_original_menu_slug() {
397
- if ( 'cpt' === $this->_type ) {
398
- return add_query_arg( array(
399
- 'post_type' => $this->_menu_slug
400
- ), 'edit.php' );
401
- }
402
-
403
- if ( false === strpos( $this->_menu_slug, '.php?' ) ) {
404
- return $this->_menu_slug;
405
- } else {
406
- return $this->_module_unique_affix;
407
- }
408
- }
409
-
410
- /**
411
- * @author Vova Feldman (@svovaf)
412
- * @since 1.1.3
413
- *
414
- * @return string
415
- */
416
- function get_top_level_menu_slug() {
417
- return $this->has_custom_parent() ?
418
- $this->get_parent_slug() :
419
- $this->get_raw_slug();
420
- }
421
-
422
- /**
423
- * Is user on plugin's admin activation page.
424
- *
425
- * @author Vova Feldman (@svovaf)
426
- * @since 1.0.8
427
- *
428
- * @return bool
429
- */
430
- function is_main_settings_page() {
431
- if ( $this->_menu_exists &&
432
- ( fs_is_plugin_page( $this->_menu_slug ) || fs_is_plugin_page( $this->_module_unique_affix ) )
433
- ) {
434
- /**
435
- * Module has a settings menu and the context page is the main settings page, so assume it's in
436
- * activation (doesn't really check if already opted-in/skipped or not).
437
- *
438
- * @since 1.2.2
439
- */
440
- return true;
441
- }
442
-
443
- global $pagenow;
444
- if ( ( WP_FS__MODULE_TYPE_THEME === $this->_module_type ) && Freemius::is_themes_page() ) {
445
- /**
446
- * In activation only when show_optin query string param is given.
447
- *
448
- * @since 1.2.2
449
- */
450
- return fs_request_get_bool( $this->_module_unique_affix . '_show_optin' );
451
- }
452
-
453
- return false;
454
- }
455
-
456
- #region Submenu Override
457
-
458
- /**
459
- * Override submenu's action.
460
- *
461
- * @author Vova Feldman (@svovaf)
462
- * @since 1.1.0
463
- *
464
- * @param string $parent_slug
465
- * @param string $menu_slug
466
- * @param callable $function
467
- *
468
- * @return false|string If submenu exist, will return the hook name.
469
- */
470
- function override_submenu_action( $parent_slug, $menu_slug, $function ) {
471
- global $submenu;
472
-
473
- $menu_slug = plugin_basename( $menu_slug );
474
- $parent_slug = plugin_basename( $parent_slug );
475
-
476
- if ( ! isset( $submenu[ $parent_slug ] ) ) {
477
- // Parent menu not exist.
478
- return false;
479
- }
480
-
481
- $found_submenu_item = false;
482
- foreach ( $submenu[ $parent_slug ] as $submenu_item ) {
483
- if ( $menu_slug === $submenu_item[2] ) {
484
- $found_submenu_item = $submenu_item;
485
- break;
486
- }
487
- }
488
-
489
- if ( false === $found_submenu_item ) {
490
- // Submenu item not found.
491
- return false;
492
- }
493
-
494
- // Remove current function.
495
- $hookname = get_plugin_page_hookname( $menu_slug, $parent_slug );
496
- remove_all_actions( $hookname );
497
-
498
- // Attach new action.
499
- add_action( $hookname, $function );
500
-
501
- return $hookname;
502
- }
503
-
504
- #endregion Submenu Override
505
-
506
- #region Top level menu Override
507
-
508
- /**
509
- * Find plugin's admin dashboard main menu item.
510
- *
511
- * @author Vova Feldman (@svovaf)
512
- * @since 1.0.2
513
- *
514
- * @return string[]|false
515
- */
516
- private function find_top_level_menu() {
517
- global $menu;
518
-
519
- $position = - 1;
520
- $found_menu = false;
521
-
522
- $menu_slug = $this->get_raw_slug();
523
-
524
- $hook_name = get_plugin_page_hookname( $menu_slug, '' );
525
- foreach ( $menu as $pos => $m ) {
526
- if ( $menu_slug === $m[2] ) {
527
- $position = $pos;
528
- $found_menu = $m;
529
- break;
530
- }
531
- }
532
-
533
- if ( false === $found_menu ) {
534
- return false;
535
- }
536
-
537
- return array(
538
- 'menu' => $found_menu,
539
- 'position' => $position,
540
- 'hook_name' => $hook_name
541
- );
542
- }
543
-
544
- /**
545
- * Find plugin's admin dashboard main submenu item.
546
- *
547
- * @author Vova Feldman (@svovaf)
548
- * @since 1.2.1.6
549
- *
550
- * @return array|false
551
- */
552
- private function find_main_submenu() {
553
- global $submenu;
554
-
555
- $top_level_menu_slug = $this->get_top_level_menu_slug();
556
-
557
- if ( ! isset( $submenu[ $top_level_menu_slug ] ) ) {
558
- return false;
559
- }
560
-
561
- $submenu_slug = $this->get_raw_slug();
562
-
563
- $position = - 1;
564
- $found_submenu = false;
565
-
566
- $hook_name = get_plugin_page_hookname( $submenu_slug, '' );
567
-
568
- foreach ( $submenu[ $top_level_menu_slug ] as $pos => $sub ) {
569
- if ( $submenu_slug === $sub[2] ) {
570
- $position = $pos;
571
- $found_submenu = $sub;
572
- }
573
- }
574
-
575
- if ( false === $found_submenu ) {
576
- return false;
577
- }
578
-
579
- return array(
580
- 'menu' => $found_submenu,
581
- 'parent_slug' => $top_level_menu_slug,
582
- 'position' => $position,
583
- 'hook_name' => $hook_name
584
- );
585
- }
586
-
587
- /**
588
- * Remove all sub-menu items.
589
- *
590
- * @author Vova Feldman (@svovaf)
591
- * @since 1.0.7
592
- *
593
- * @return bool If submenu with plugin's menu slug was found.
594
- */
595
- private function remove_all_submenu_items() {
596
- global $submenu;
597
-
598
- $menu_slug = $this->get_raw_slug();
599
-
600
- if ( ! isset( $submenu[ $menu_slug ] ) ) {
601
- return false;
602
- }
603
-
604
- /**
605
- * This method is NOT executed for WordPress.org themes.
606
- * Since we maintain only one version of the SDK we added this small
607
- * hack to avoid the error from Theme Check since it's a false-positive.
608
- *
609
- * @author Vova Feldman (@svovaf)
610
- * @since 1.2.2.7
611
- */
612
- $submenu_ref = &$submenu;
613
- $submenu_ref[ $menu_slug ] = array();
614
-
615
- return true;
616
- }
617
-
618
- /**
619
- *
620
- * @author Vova Feldman (@svovaf)
621
- * @since 1.0.9
622
- *
623
- * @param bool $remove_top_level_menu
624
- *
625
- * @return false|array[string]mixed
626
- */
627
- function remove_menu_item( $remove_top_level_menu = false ) {
628
- $this->_logger->entrance();
629
-
630
- // Find main menu item.
631
- $top_level_menu = $this->find_top_level_menu();
632
-
633
- if ( false === $top_level_menu ) {
634
- return false;
635
- }
636
-
637
- // Remove it with its actions.
638
- remove_all_actions( $top_level_menu['hook_name'] );
639
-
640
- // Remove all submenu items.
641
- $this->remove_all_submenu_items();
642
-
643
- if ( $remove_top_level_menu ) {
644
- global $menu;
645
- unset( $menu[ $top_level_menu['position'] ] );
646
- }
647
-
648
- return $top_level_menu;
649
- }
650
-
651
- /**
652
- * Get module's main admin setting page URL.
653
- *
654
- * @todo This method was only tested for wp.org compliant themes with a submenu item. Need to test for plugins with top level, submenu, and CPT top level, menu items.
655
- *
656
- * @author Vova Feldman (@svovaf)
657
- * @since 1.2.2.7
658
- *
659
- * @return string
660
- */
661
- function main_menu_url() {
662
- $this->_logger->entrance();
663
-
664
- if ( $this->_is_top_level ) {
665
- $menu = $this->find_top_level_menu();
666
- } else {
667
- $menu = $this->find_main_submenu();
668
- }
669
-
670
- $parent_slug = isset( $menu['parent_slug'] ) ?
671
- $menu['parent_slug'] :
672
- 'admin.php';
673
-
674
- return admin_url( $parent_slug . '?page=' . $menu['menu'][2] );
675
- }
676
-
677
- /**
678
- * @author Vova Feldman (@svovaf)
679
- * @since 1.1.4
680
- *
681
- * @param callable $function
682
- *
683
- * @return false|array[string]mixed
684
- */
685
- function override_menu_item( $function ) {
686
- $found_menu = $this->remove_menu_item();
687
-
688
- if ( false === $found_menu ) {
689
- return false;
690
- }
691
-
692
- if ( ! $this->is_top_level() || ! $this->is_cpt() ) {
693
- $menu_slug = plugin_basename( $this->get_slug() );
694
-
695
- $hookname = get_plugin_page_hookname( $menu_slug, '' );
696
-
697
- // Override menu action.
698
- add_action( $hookname, $function );
699
- } else {
700
- global $menu;
701
-
702
- // Remove original CPT menu.
703
- unset( $menu[ $found_menu['position'] ] );
704
-
705
- // Create new top-level menu action.
706
- $hookname = self::add_page(
707
- $found_menu['menu'][3],
708
- $found_menu['menu'][0],
709
- 'manage_options',
710
- $this->get_slug(),
711
- $function,
712
- $found_menu['menu'][6],
713
- $found_menu['position']
714
- );
715
- }
716
-
717
- return $hookname;
718
- }
719
-
720
- /**
721
- * Adds a counter to the module's top level menu item.
722
- *
723
- * @author Vova Feldman (@svovaf)
724
- * @since 1.2.1.5
725
- *
726
- * @param int $counter
727
- * @param string $class
728
- */
729
- function add_counter_to_menu_item( $counter = 1, $class = '' ) {
730
- global $menu, $submenu;
731
-
732
- $mask = '%s <span class="update-plugins %s count-%3$s" aria-hidden="true"><span>%3$s<span class="screen-reader-text">%3$s notifications</span></span></span>';
733
-
734
- /**
735
- * This method is NOT executed for WordPress.org themes.
736
- * Since we maintain only one version of the SDK we added this small
737
- * hack to avoid the error from Theme Check since it's a false-positive.
738
- *
739
- * @author Vova Feldman (@svovaf)
740
- * @since 1.2.2.7
741
- */
742
- $menu_ref = &$menu;
743
- $submenu_ref = &$submenu;
744
-
745
- if ( $this->_is_top_level ) {
746
- // Find main menu item.
747
- $found_menu = $this->find_top_level_menu();
748
-
749
- if ( false !== $found_menu ) {
750
- // Override menu label.
751
- $menu_ref[ $found_menu['position'] ][0] = sprintf(
752
- $mask,
753
- $found_menu['menu'][0],
754
- $class,
755
- $counter
756
- );
757
- }
758
- } else {
759
- $found_submenu = $this->find_main_submenu();
760
-
761
- if ( false !== $found_submenu ) {
762
- // Override menu label.
763
- $submenu_ref[ $found_submenu['parent_slug'] ][ $found_submenu['position'] ][0] = sprintf(
764
- $mask,
765
- $found_submenu['menu'][0],
766
- $class,
767
- $counter
768
- );
769
- }
770
- }
771
- }
772
-
773
- #endregion Top level menu Override
774
-
775
- /**
776
- * Add a top-level menu page.
777
- *
778
- * Note for WordPress.org Theme/Plugin reviewer:
779
- *
780
- * This is a replication of `add_menu_page()` to avoid Theme Check warning.
781
- *
782
- * Why?
783
- * ====
784
- * Freemius is an SDK for plugin and theme developers. Since the core
785
- * of the SDK is relevant both for plugins and themes, for obvious reasons,
786
- * we only develop and maintain one code base.
787
- *
788
- * This method will not run for wp.org themes (only plugins) since theme
789
- * admin settings/options are now only allowed in the customizer.
790
- *
791
- * If you have any questions or need clarifications, please don't hesitate
792
- * pinging me on slack, my username is @svovaf.
793
- *
794
- * @author Vova Feldman (@svovaf)
795
- * @since 1.2.2
796
- *
797
- * @param string $page_title The text to be displayed in the title tags of the page when the menu is
798
- * selected.
799
- * @param string $menu_title The text to be used for the menu.
800
- * @param string $capability The capability required for this menu to be displayed to the user.
801
- * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu).
802
- * @param callable|string $function The function to be called to output the content for this page.
803
- * @param string $icon_url The URL to the icon to be used for this menu.
804
- * * Pass a base64-encoded SVG using a data URI, which will be colored to
805
- * match the color scheme. This should begin with
806
- * 'data:image/svg+xml;base64,'.
807
- * * Pass the name of a Dashicons helper class to use a font icon,
808
- * e.g. 'dashicons-chart-pie'.
809
- * * Pass 'none' to leave div.wp-menu-image empty so an icon can be added
810
- * via CSS.
811
- * @param int $position The position in the menu order this one should appear.
812
- *
813
- * @return string The resulting page's hook_suffix.
814
- */
815
- static function add_page(
816
- $page_title,
817
- $menu_title,
818
- $capability,
819
- $menu_slug,
820
- $function = '',
821
- $icon_url = '',
822
- $position = null
823
- ) {
824
- $fn = 'add_menu' . '_page';
825
-
826
- return $fn(
827
- $page_title,
828
- $menu_title,
829
- $capability,
830
- $menu_slug,
831
- $function,
832
- $icon_url,
833
- $position
834
- );
835
- }
836
-
837
- /**
838
- * Add page and update menu instance settings.
839
- *
840
- * @author Vova Feldman (@svovaf)
841
- * @since 2.0.0
842
- *
843
- * @param string $page_title
844
- * @param string $menu_title
845
- * @param string $capability
846
- * @param string $menu_slug
847
- * @param callable|string $function
848
- * @param string $icon_url
849
- * @param int|null $position
850
- *
851
- * @return string
852
- */
853
- function add_page_and_update(
854
- $page_title,
855
- $menu_title,
856
- $capability,
857
- $menu_slug,
858
- $function = '',
859
- $icon_url = '',
860
- $position = null
861
- ) {
862
- $this->_menu_slug = $menu_slug;
863
- $this->_is_top_level = true;
864
- $this->_menu_exists = true;
865
- $this->_network_menu_exists = true;
866
-
867
- return self::add_page(
868
- $page_title,
869
- $menu_title,
870
- $capability,
871
- $menu_slug,
872
- $function,
873
- $icon_url,
874
- $position
875
- );
876
- }
877
-
878
- /**
879
- * Add a submenu page.
880
- *
881
- * Note for WordPress.org Theme/Plugin reviewer:
882
- *
883
- * This is a replication of `add_submenu_page()` to avoid Theme Check warning.
884
- *
885
- * Why?
886
- * ====
887
- * Freemius is an SDK for plugin and theme developers. Since the core
888
- * of the SDK is relevant both for plugins and themes, for obvious reasons,
889
- * we only develop and maintain one code base.
890
- *
891
- * This method will not run for wp.org themes (only plugins) since theme
892
- * admin settings/options are now only allowed in the customizer.
893
- *
894
- * If you have any questions or need clarifications, please don't hesitate
895
- * pinging me on slack, my username is @svovaf.
896
- *
897
- * @author Vova Feldman (@svovaf)
898
- * @since 1.2.2
899
- *
900
- * @param string $parent_slug The slug name for the parent menu (or the file name of a standard
901
- * WordPress admin page).
902
- * @param string $page_title The text to be displayed in the title tags of the page when the menu is
903
- * selected.
904
- * @param string $menu_title The text to be used for the menu.
905
- * @param string $capability The capability required for this menu to be displayed to the user.
906
- * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu).
907
- * @param callable|string $function The function to be called to output the content for this page.
908
- *
909
- * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability
910
- * required.
911
- */
912
- static function add_subpage(
913
- $parent_slug,
914
- $page_title,
915
- $menu_title,
916
- $capability,
917
- $menu_slug,
918
- $function = ''
919
- ) {
920
- $fn = 'add_submenu' . '_page';
921
-
922
- return $fn( $parent_slug,
923
- $page_title,
924
- $menu_title,
925
- $capability,
926
- $menu_slug,
927
- $function
928
- );
929
- }
930
-
931
- /**
932
- * Add sub page and update menu instance settings.
933
- *
934
- * @author Vova Feldman (@svovaf)
935
- * @since 2.0.0
936
- *
937
- * @param string $parent_slug
938
- * @param string $page_title
939
- * @param string $menu_title
940
- * @param string $capability
941
- * @param string $menu_slug
942
- * @param callable|string $function
943
- *
944
- * @return string
945
- */
946
- function add_subpage_and_update(
947
- $parent_slug,
948
- $page_title,
949
- $menu_title,
950
- $capability,
951
- $menu_slug,
952
- $function = ''
953
- ) {
954
- $this->_menu_slug = $menu_slug;
955
- $this->_parent_slug = $parent_slug;
956
- $this->_is_top_level = false;
957
- $this->_menu_exists = true;
958
- $this->_network_menu_exists = true;
959
-
960
- return self::add_subpage(
961
- $parent_slug,
962
- $page_title,
963
- $menu_title,
964
- $capability,
965
- $menu_slug,
966
- $function
967
- );
968
- }
969
  }
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 1.1.3
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ class FS_Admin_Menu_Manager {
14
+
15
+ #region Properties
16
+
17
+ /**
18
+ * @since 1.2.2
19
+ *
20
+ * @var string
21
+ */
22
+ protected $_module_unique_affix;
23
+
24
+ /**
25
+ * @since 1.2.2
26
+ *
27
+ * @var number
28
+ */
29
+ protected $_module_id;
30
+
31
+ /**
32
+ * @since 1.2.2
33
+ *
34
+ * @var string
35
+ */
36
+ protected $_module_type;
37
+
38
+ /**
39
+ * @since 1.0.6
40
+ *
41
+ * @var string
42
+ */
43
+ private $_menu_slug;
44
+ /**
45
+ * @since 1.1.3
46
+ *
47
+ * @var string
48
+ */
49
+ private $_parent_slug;
50
+ /**
51
+ * @since 1.1.3
52
+ *
53
+ * @var string
54
+ */
55
+ private $_parent_type;
56
+ /**
57
+ * @since 1.1.3
58
+ *
59
+ * @var string
60
+ */
61
+ private $_type;
62
+ /**
63
+ * @since 1.1.3
64
+ *
65
+ * @var bool
66
+ */
67
+ private $_is_top_level;
68
+ /**
69
+ * @since 1.1.3
70
+ *
71
+ * @var bool
72
+ */
73
+ private $_is_override_exact;
74
+ /**
75
+ * @since 1.1.3
76
+ *
77
+ * @var array<string,bool>
78
+ */
79
+ private $_default_submenu_items;
80
+ /**
81
+ * @since 1.1.3
82
+ *
83
+ * @var string
84
+ */
85
+ private $_first_time_path;
86
+ /**
87
+ * @since 1.2.2
88
+ *
89
+ * @var bool
90
+ */
91
+ private $_menu_exists;
92
+ /**
93
+ * @since 2.0.0
94
+ *
95
+ * @var bool
96
+ */
97
+ private $_network_menu_exists;
98
+
99
+ #endregion Properties
100
+
101
+ /**
102
+ * @var FS_Logger
103
+ */
104
+ protected $_logger;
105
+
106
+ #region Singleton
107
+
108
+ /**
109
+ * @var FS_Admin_Menu_Manager[]
110
+ */
111
+ private static $_instances = array();
112
+
113
+ /**
114
+ * @param number $module_id
115
+ * @param string $module_type
116
+ * @param string $module_unique_affix
117
+ *
118
+ * @return FS_Admin_Menu_Manager
119
+ */
120
+ static function instance( $module_id, $module_type, $module_unique_affix ) {
121
+ $key = 'm_' . $module_id;
122
+
123
+ if ( ! isset( self::$_instances[ $key ] ) ) {
124
+ self::$_instances[ $key ] = new FS_Admin_Menu_Manager( $module_id, $module_type, $module_unique_affix );
125
+ }
126
+
127
+ return self::$_instances[ $key ];
128
+ }
129
+
130
+ protected function __construct( $module_id, $module_type, $module_unique_affix ) {
131
+ $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $module_id . '_admin_menu', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK );
132
+
133
+ $this->_module_id = $module_id;
134
+ $this->_module_type = $module_type;
135
+ $this->_module_unique_affix = $module_unique_affix;
136
+ }
137
+
138
+ #endregion Singleton
139
+
140
+ #region Helpers
141
+
142
+ private function get_option( &$options, $key, $default = false ) {
143
+ return ! empty( $options[ $key ] ) ? $options[ $key ] : $default;
144
+ }
145
+
146
+ private function get_bool_option( &$options, $key, $default = false ) {
147
+ return isset( $options[ $key ] ) && is_bool( $options[ $key ] ) ? $options[ $key ] : $default;
148
+ }
149
+
150
+ #endregion Helpers
151
+
152
+ /**
153
+ * @param array $menu
154
+ * @param bool $is_addon
155
+ */
156
+ function init( $menu, $is_addon = false ) {
157
+ $this->_menu_exists = ( isset( $menu['slug'] ) && ! empty( $menu['slug'] ) );
158
+ $this->_network_menu_exists = ( ! empty( $menu['network'] ) && true === $menu['network'] );
159
+
160
+ $this->_menu_slug = ( $this->_menu_exists ? $menu['slug'] : $this->_module_unique_affix );
161
+
162
+ $this->_default_submenu_items = array();
163
+ // @deprecated
164
+ $this->_type = 'page';
165
+ $this->_is_top_level = true;
166
+ $this->_is_override_exact = false;
167
+ $this->_parent_slug = false;
168
+ // @deprecated
169
+ $this->_parent_type = 'page';
170
+
171
+ if ( isset( $menu ) ) {
172
+ if ( ! $is_addon ) {
173
+ $this->_default_submenu_items = array(
174
+ 'contact' => $this->get_bool_option( $menu, 'contact', true ),
175
+ 'support' => $this->get_bool_option( $menu, 'support', true ),
176
+ 'affiliation' => $this->get_bool_option( $menu, 'affiliation', true ),
177
+ 'account' => $this->get_bool_option( $menu, 'account', true ),
178
+ 'pricing' => $this->get_bool_option( $menu, 'pricing', true ),
179
+ 'addons' => $this->get_bool_option( $menu, 'addons', true ),
180
+ );
181
+
182
+ // @deprecated
183
+ $this->_type = $this->get_option( $menu, 'type', 'page' );
184
+
185
+ $this->_first_time_path = $this->get_option( $menu, 'first-path', false );
186
+ if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
187
+ $this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
188
+ }
189
+ }
190
+
191
+ $this->_is_override_exact = $this->get_bool_option( $menu, 'override_exact' );
192
+
193
+ if ( isset( $menu['parent'] ) ) {
194
+ $this->_parent_slug = $this->get_option( $menu['parent'], 'slug' );
195
+ // @deprecated
196
+ $this->_parent_type = $this->get_option( $menu['parent'], 'type', 'page' );
197
+
198
+ // If parent's slug is different, then it's NOT a top level menu item.
199
+ $this->_is_top_level = ( $this->_parent_slug === $this->_menu_slug );
200
+ } else {
201
+ /**
202
+ * If no parent then top level if:
203
+ * - Has custom admin menu ('page')
204
+ * - CPT menu type ('cpt')
205
+ */
206
+ // $this->_is_top_level = in_array( $this->_type, array(
207
+ // 'cpt',
208
+ // 'page'
209
+ // ) );
210
+ }
211
+ }
212
+ }
213
+
214
+ /**
215
+ * Check if top level menu.
216
+ *
217
+ * @author Vova Feldman (@svovaf)
218
+ * @since 1.1.3
219
+ *
220
+ * @return bool False if submenu item.
221
+ */
222
+ function is_top_level() {
223
+ return $this->_is_top_level;
224
+ }
225
+
226
+ /**
227
+ * Check if the page should be override on exact URL match.
228
+ *
229
+ * @author Vova Feldman (@svovaf)
230
+ * @since 1.1.3
231
+ *
232
+ * @return bool False if submenu item.
233
+ */
234
+ function is_override_exact() {
235
+ return $this->_is_override_exact;
236
+ }
237
+
238
+
239
+ /**
240
+ * Get the path of the page the user should be forwarded to after first activation.
241
+ *
242
+ * @author Vova Feldman (@svovaf)
243
+ * @since 1.1.3
244
+ *
245
+ * @return string
246
+ */
247
+ function get_first_time_path() {
248
+ return $this->_first_time_path;
249
+ }
250
+
251
+ /**
252
+ * Check if plugin's menu item is part of a custom top level menu.
253
+ *
254
+ * @author Vova Feldman (@svovaf)
255
+ * @since 1.1.3
256
+ *
257
+ * @return bool
258
+ */
259
+ function has_custom_parent() {
260
+ return ! $this->_is_top_level && is_string( $this->_parent_slug );
261
+ }
262
+
263
+ /**
264
+ * @author Leo Fajardo (@leorw)
265
+ * @since 1.2.2
266
+ *
267
+ * @return bool
268
+ */
269
+ function has_menu() {
270
+ return $this->_menu_exists;
271
+ }
272
+
273
+ /**
274
+ * @author Vova Feldman (@svovaf)
275
+ * @since 2.0.0
276
+ *
277
+ * @return bool
278
+ */
279
+ function has_network_menu() {
280
+ return $this->_network_menu_exists;
281
+ }
282
+
283
+ /**
284
+ * @author Leo Fajardo (@leorw)
285
+ *
286
+ * @param string $menu_slug
287
+ *
288
+ * @since 2.1.3
289
+ */
290
+ function set_slug_and_network_menu_exists_flag($menu_slug ) {
291
+ $this->_menu_slug = $menu_slug;
292
+ $this->_network_menu_exists = false;
293
+ }
294
+
295
+ /**
296
+ * @author Vova Feldman (@svovaf)
297
+ * @since 1.1.3
298
+ *
299
+ * @param string $id
300
+ * @param bool $default
301
+ * @param bool $ignore_menu_existence Since 1.2.2.7 If true, check if the submenu item visible even if there's no parent menu.
302
+ *
303
+ * @return bool
304
+ */
305
+ function is_submenu_item_visible( $id, $default = true, $ignore_menu_existence = false ) {
306
+ if ( ! $ignore_menu_existence && ! $this->has_menu() ) {
307
+ return false;
308
+ }
309
+
310
+ return fs_apply_filter(
311
+ $this->_module_unique_affix,
312
+ 'is_submenu_visible',
313
+ $this->get_bool_option( $this->_default_submenu_items, $id, $default ),
314
+ $id
315
+ );
316
+ }
317
+
318
+ /**
319
+ * Calculates admin settings menu slug.
320
+ * If plugin's menu slug is a file (e.g. CPT), uses plugin's slug as the menu slug.
321
+ *
322
+ * @author Vova Feldman (@svovaf)
323
+ * @since 1.1.3
324
+ *
325
+ * @param string $page
326
+ *
327
+ * @return string
328
+ */
329
+ function get_slug( $page = '' ) {
330
+ return ( ( false === strpos( $this->_menu_slug, '.php?' ) ) ?
331
+ $this->_menu_slug :
332
+ $this->_module_unique_affix ) . ( empty( $page ) ? '' : ( '-' . $page ) );
333
+ }
334
+
335
+ /**
336
+ * @author Vova Feldman (@svovaf)
337
+ * @since 1.1.3
338
+ *
339
+ * @return string
340
+ */
341
+ function get_parent_slug() {
342
+ return $this->_parent_slug;
343
+ }
344
+
345
+ /**
346
+ * @author Vova Feldman (@svovaf)
347
+ * @since 1.1.3
348
+ *
349
+ * @return string
350
+ */
351
+ function get_type() {
352
+ return $this->_type;
353
+ }
354
+
355
+ /**
356
+ * @author Vova Feldman (@svovaf)
357
+ * @since 1.1.3
358
+ *
359
+ * @return bool
360
+ */
361
+ function is_cpt() {
362
+ return ( 0 === strpos( $this->_menu_slug, 'edit.php?post_type=' ) ||
363
+ // Back compatibility.
364
+ 'cpt' === $this->_type
365
+ );
366
+ }
367
+
368
+ /**
369
+ * @author Vova Feldman (@svovaf)
370
+ * @since 1.1.3
371
+ *
372
+ * @return string
373
+ */
374
+ function get_parent_type() {
375
+ return $this->_parent_type;
376
+ }
377
+
378
+ /**
379
+ * @author Vova Feldman (@svovaf)
380
+ * @since 1.1.3
381
+ *
382
+ * @return string
383
+ */
384
+ function get_raw_slug() {
385
+ return $this->_menu_slug;
386
+ }
387
+
388
+ /**
389
+ * Get plugin's original menu slug.
390
+ *
391
+ * @author Vova Feldman (@svovaf)
392
+ * @since 1.1.3
393
+ *
394
+ * @return string
395
+ */
396
+ function get_original_menu_slug() {
397
+ if ( 'cpt' === $this->_type ) {
398
+ return add_query_arg( array(
399
+ 'post_type' => $this->_menu_slug
400
+ ), 'edit.php' );
401
+ }
402
+
403
+ if ( false === strpos( $this->_menu_slug, '.php?' ) ) {
404
+ return $this->_menu_slug;
405
+ } else {
406
+ return $this->_module_unique_affix;
407
+ }
408
+ }
409
+
410
+ /**
411
+ * @author Vova Feldman (@svovaf)
412
+ * @since 1.1.3
413
+ *
414
+ * @return string
415
+ */
416
+ function get_top_level_menu_slug() {
417
+ return $this->has_custom_parent() ?
418
+ $this->get_parent_slug() :
419
+ $this->get_raw_slug();
420
+ }
421
+
422
+ /**
423
+ * Is user on plugin's admin activation page.
424
+ *
425
+ * @author Vova Feldman (@svovaf)
426
+ * @since 1.0.8
427
+ *
428
+ * @return bool
429
+ */
430
+ function is_main_settings_page() {
431
+ if ( $this->_menu_exists &&
432
+ ( fs_is_plugin_page( $this->_menu_slug ) || fs_is_plugin_page( $this->_module_unique_affix ) )
433
+ ) {
434
+ /**
435
+ * Module has a settings menu and the context page is the main settings page, so assume it's in
436
+ * activation (doesn't really check if already opted-in/skipped or not).
437
+ *
438
+ * @since 1.2.2
439
+ */
440
+ return true;
441
+ }
442
+
443
+ global $pagenow;
444
+ if ( ( WP_FS__MODULE_TYPE_THEME === $this->_module_type ) && Freemius::is_themes_page() ) {
445
+ /**
446
+ * In activation only when show_optin query string param is given.
447
+ *
448
+ * @since 1.2.2
449
+ */
450
+ return fs_request_get_bool( $this->_module_unique_affix . '_show_optin' );
451
+ }
452
+
453
+ return false;
454
+ }
455
+
456
+ #region Submenu Override
457
+
458
+ /**
459
+ * Override submenu's action.
460
+ *
461
+ * @author Vova Feldman (@svovaf)
462
+ * @since 1.1.0
463
+ *
464
+ * @param string $parent_slug
465
+ * @param string $menu_slug
466
+ * @param callable $function
467
+ *
468
+ * @return false|string If submenu exist, will return the hook name.
469
+ */
470
+ function override_submenu_action( $parent_slug, $menu_slug, $function ) {
471
+ global $submenu;
472
+
473
+ $menu_slug = plugin_basename( $menu_slug );
474
+ $parent_slug = plugin_basename( $parent_slug );
475
+
476
+ if ( ! isset( $submenu[ $parent_slug ] ) ) {
477
+ // Parent menu not exist.
478
+ return false;
479
+ }
480
+
481
+ $found_submenu_item = false;
482
+ foreach ( $submenu[ $parent_slug ] as $submenu_item ) {
483
+ if ( $menu_slug === $submenu_item[2] ) {
484
+ $found_submenu_item = $submenu_item;
485
+ break;
486
+ }
487
+ }
488
+
489
+ if ( false === $found_submenu_item ) {
490
+ // Submenu item not found.
491
+ return false;
492
+ }
493
+
494
+ // Remove current function.
495
+ $hookname = get_plugin_page_hookname( $menu_slug, $parent_slug );
496
+ remove_all_actions( $hookname );
497
+
498
+ // Attach new action.
499
+ add_action( $hookname, $function );
500
+
501
+ return $hookname;
502
+ }
503
+
504
+ #endregion Submenu Override
505
+
506
+ #region Top level menu Override
507
+
508
+ /**
509
+ * Find plugin's admin dashboard main menu item.
510
+ *
511
+ * @author Vova Feldman (@svovaf)
512
+ * @since 1.0.2
513
+ *
514
+ * @return string[]|false
515
+ */
516
+ private function find_top_level_menu() {
517
+ global $menu;
518
+
519
+ $position = - 1;
520
+ $found_menu = false;
521
+
522
+ $menu_slug = $this->get_raw_slug();
523
+
524
+ $hook_name = get_plugin_page_hookname( $menu_slug, '' );
525
+ foreach ( $menu as $pos => $m ) {
526
+ if ( $menu_slug === $m[2] ) {
527
+ $position = $pos;
528
+ $found_menu = $m;
529
+ break;
530
+ }
531
+ }
532
+
533
+ if ( false === $found_menu ) {
534
+ return false;
535
+ }
536
+
537
+ return array(
538
+ 'menu' => $found_menu,
539
+ 'position' => $position,
540
+ 'hook_name' => $hook_name
541
+ );
542
+ }
543
+
544
+ /**
545
+ * Find plugin's admin dashboard main submenu item.
546
+ *
547
+ * @author Vova Feldman (@svovaf)
548
+ * @since 1.2.1.6
549
+ *
550
+ * @return array|false
551
+ */
552
+ private function find_main_submenu() {
553
+ global $submenu;
554
+
555
+ $top_level_menu_slug = $this->get_top_level_menu_slug();
556
+
557
+ if ( ! isset( $submenu[ $top_level_menu_slug ] ) ) {
558
+ return false;
559
+ }
560
+
561
+ $submenu_slug = $this->get_raw_slug();
562
+
563
+ $position = - 1;
564
+ $found_submenu = false;
565
+
566
+ $hook_name = get_plugin_page_hookname( $submenu_slug, '' );
567
+
568
+ foreach ( $submenu[ $top_level_menu_slug ] as $pos => $sub ) {
569
+ if ( $submenu_slug === $sub[2] ) {
570
+ $position = $pos;
571
+ $found_submenu = $sub;
572
+ }
573
+ }
574
+
575
+ if ( false === $found_submenu ) {
576
+ return false;
577
+ }
578
+
579
+ return array(
580
+ 'menu' => $found_submenu,
581
+ 'parent_slug' => $top_level_menu_slug,
582
+ 'position' => $position,
583
+ 'hook_name' => $hook_name
584
+ );
585
+ }
586
+
587
+ /**
588
+ * Remove all sub-menu items.
589
+ *
590
+ * @author Vova Feldman (@svovaf)
591
+ * @since 1.0.7
592
+ *
593
+ * @return bool If submenu with plugin's menu slug was found.
594
+ */
595
+ private function remove_all_submenu_items() {
596
+ global $submenu;
597
+
598
+ $menu_slug = $this->get_raw_slug();
599
+
600
+ if ( ! isset( $submenu[ $menu_slug ] ) ) {
601
+ return false;
602
+ }
603
+
604
+ /**
605
+ * This method is NOT executed for WordPress.org themes.
606
+ * Since we maintain only one version of the SDK we added this small
607
+ * hack to avoid the error from Theme Check since it's a false-positive.
608
+ *
609
+ * @author Vova Feldman (@svovaf)
610
+ * @since 1.2.2.7
611
+ */
612
+ $submenu_ref = &$submenu;
613
+ $submenu_ref[ $menu_slug ] = array();
614
+
615
+ return true;
616
+ }
617
+
618
+ /**
619
+ *
620
+ * @author Vova Feldman (@svovaf)
621
+ * @since 1.0.9
622
+ *
623
+ * @param bool $remove_top_level_menu
624
+ *
625
+ * @return false|array[string]mixed
626
+ */
627
+ function remove_menu_item( $remove_top_level_menu = false ) {
628
+ $this->_logger->entrance();
629
+
630
+ // Find main menu item.
631
+ $top_level_menu = $this->find_top_level_menu();
632
+
633
+ if ( false === $top_level_menu ) {
634
+ return false;
635
+ }
636
+
637
+ // Remove it with its actions.
638
+ remove_all_actions( $top_level_menu['hook_name'] );
639
+
640
+ // Remove all submenu items.
641
+ $this->remove_all_submenu_items();
642
+
643
+ if ( $remove_top_level_menu ) {
644
+ global $menu;
645
+ unset( $menu[ $top_level_menu['position'] ] );
646
+ }
647
+
648
+ return $top_level_menu;
649
+ }
650
+
651
+ /**
652
+ * Get module's main admin setting page URL.
653
+ *
654
+ * @todo This method was only tested for wp.org compliant themes with a submenu item. Need to test for plugins with top level, submenu, and CPT top level, menu items.
655
+ *
656
+ * @author Vova Feldman (@svovaf)
657
+ * @since 1.2.2.7
658
+ *
659
+ * @return string
660
+ */
661
+ function main_menu_url() {
662
+ $this->_logger->entrance();
663
+
664
+ if ( $this->_is_top_level ) {
665
+ $menu = $this->find_top_level_menu();
666
+ } else {
667
+ $menu = $this->find_main_submenu();
668
+ }
669
+
670
+ $parent_slug = isset( $menu['parent_slug'] ) ?
671
+ $menu['parent_slug'] :
672
+ 'admin.php';
673
+
674
+ return admin_url( $parent_slug . '?page=' . $menu['menu'][2] );
675
+ }
676
+
677
+ /**
678
+ * @author Vova Feldman (@svovaf)
679
+ * @since 1.1.4
680
+ *
681
+ * @param callable $function
682
+ *
683
+ * @return false|array[string]mixed
684
+ */
685
+ function override_menu_item( $function ) {
686
+ $found_menu = $this->remove_menu_item();
687
+
688
+ if ( false === $found_menu ) {
689
+ return false;
690
+ }
691
+
692
+ if ( ! $this->is_top_level() || ! $this->is_cpt() ) {
693
+ $menu_slug = plugin_basename( $this->get_slug() );
694
+
695
+ $hookname = get_plugin_page_hookname( $menu_slug, '' );
696
+
697
+ // Override menu action.
698
+ add_action( $hookname, $function );
699
+ } else {
700
+ global $menu;
701
+
702
+ // Remove original CPT menu.
703
+ unset( $menu[ $found_menu['position'] ] );
704
+
705
+ // Create new top-level menu action.
706
+ $hookname = self::add_page(
707
+ $found_menu['menu'][3],
708
+ $found_menu['menu'][0],
709
+ 'manage_options',
710
+ $this->get_slug(),
711
+ $function,
712
+ $found_menu['menu'][6],
713
+ $found_menu['position']
714
+ );
715
+ }
716
+
717
+ return $hookname;
718
+ }
719
+
720
+ /**
721
+ * Adds a counter to the module's top level menu item.
722
+ *
723
+ * @author Vova Feldman (@svovaf)
724
+ * @since 1.2.1.5
725
+ *
726
+ * @param int $counter
727
+ * @param string $class
728
+ */
729
+ function add_counter_to_menu_item( $counter = 1, $class = '' ) {
730
+ global $menu, $submenu;
731
+
732
+ $mask = '%s <span class="update-plugins %s count-%3$s" aria-hidden="true"><span>%3$s<span class="screen-reader-text">%3$s notifications</span></span></span>';
733
+
734
+ /**
735
+ * This method is NOT executed for WordPress.org themes.
736
+ * Since we maintain only one version of the SDK we added this small
737
+ * hack to avoid the error from Theme Check since it's a false-positive.
738
+ *
739
+ * @author Vova Feldman (@svovaf)
740
+ * @since 1.2.2.7
741
+ */
742
+ $menu_ref = &$menu;
743
+ $submenu_ref = &$submenu;
744
+
745
+ if ( $this->_is_top_level ) {
746
+ // Find main menu item.
747
+ $found_menu = $this->find_top_level_menu();
748
+
749
+ if ( false !== $found_menu ) {
750
+ // Override menu label.
751
+ $menu_ref[ $found_menu['position'] ][0] = sprintf(
752
+ $mask,
753
+ $found_menu['menu'][0],
754
+ $class,
755
+ $counter
756
+ );
757
+ }
758
+ } else {
759
+ $found_submenu = $this->find_main_submenu();
760
+
761
+ if ( false !== $found_submenu ) {
762
+ // Override menu label.
763
+ $submenu_ref[ $found_submenu['parent_slug'] ][ $found_submenu['position'] ][0] = sprintf(
764
+ $mask,
765
+ $found_submenu['menu'][0],
766
+ $class,
767
+ $counter
768
+ );
769
+ }
770
+ }
771
+ }
772
+
773
+ #endregion Top level menu Override
774
+
775
+ /**
776
+ * Add a top-level menu page.
777
+ *
778
+ * Note for WordPress.org Theme/Plugin reviewer:
779
+ *
780
+ * This is a replication of `add_menu_page()` to avoid Theme Check warning.
781
+ *
782
+ * Why?
783
+ * ====
784
+ * Freemius is an SDK for plugin and theme developers. Since the core
785
+ * of the SDK is relevant both for plugins and themes, for obvious reasons,
786
+ * we only develop and maintain one code base.
787
+ *
788
+ * This method will not run for wp.org themes (only plugins) since theme
789
+ * admin settings/options are now only allowed in the customizer.
790
+ *
791
+ * If you have any questions or need clarifications, please don't hesitate
792
+ * pinging me on slack, my username is @svovaf.
793
+ *
794
+ * @author Vova Feldman (@svovaf)
795
+ * @since 1.2.2
796
+ *
797
+ * @param string $page_title The text to be displayed in the title tags of the page when the menu is
798
+ * selected.
799
+ * @param string $menu_title The text to be used for the menu.
800
+ * @param string $capability The capability required for this menu to be displayed to the user.
801
+ * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu).
802
+ * @param callable|string $function The function to be called to output the content for this page.
803
+ * @param string $icon_url The URL to the icon to be used for this menu.
804
+ * * Pass a base64-encoded SVG using a data URI, which will be colored to
805
+ * match the color scheme. This should begin with
806
+ * 'data:image/svg+xml;base64,'.
807
+ * * Pass the name of a Dashicons helper class to use a font icon,
808
+ * e.g. 'dashicons-chart-pie'.
809
+ * * Pass 'none' to leave div.wp-menu-image empty so an icon can be added
810
+ * via CSS.
811
+ * @param int $position The position in the menu order this one should appear.
812
+ *
813
+ * @return string The resulting page's hook_suffix.
814
+ */
815
+ static function add_page(
816
+ $page_title,
817
+ $menu_title,
818
+ $capability,
819
+ $menu_slug,
820
+ $function = '',
821
+ $icon_url = '',
822
+ $position = null
823
+ ) {
824
+ $fn = 'add_menu' . '_page';
825
+
826
+ return $fn(
827
+ $page_title,
828
+ $menu_title,
829
+ $capability,
830
+ $menu_slug,
831
+ $function,
832
+ $icon_url,
833
+ $position
834
+ );
835
+ }
836
+
837
+ /**
838
+ * Add page and update menu instance settings.
839
+ *
840
+ * @author Vova Feldman (@svovaf)
841
+ * @since 2.0.0
842
+ *
843
+ * @param string $page_title
844
+ * @param string $menu_title
845
+ * @param string $capability
846
+ * @param string $menu_slug
847
+ * @param callable|string $function
848
+ * @param string $icon_url
849
+ * @param int|null $position
850
+ *
851
+ * @return string
852
+ */
853
+ function add_page_and_update(
854
+ $page_title,
855
+ $menu_title,
856
+ $capability,
857
+ $menu_slug,
858
+ $function = '',
859
+ $icon_url = '',
860
+ $position = null
861
+ ) {
862
+ $this->_menu_slug = $menu_slug;
863
+ $this->_is_top_level = true;
864
+ $this->_menu_exists = true;
865
+ $this->_network_menu_exists = true;
866
+
867
+ return self::add_page(
868
+ $page_title,
869
+ $menu_title,
870
+ $capability,
871
+ $menu_slug,
872
+ $function,
873
+ $icon_url,
874
+ $position
875
+ );
876
+ }
877
+
878
+ /**
879
+ * Add a submenu page.
880
+ *
881
+ * Note for WordPress.org Theme/Plugin reviewer:
882
+ *
883
+ * This is a replication of `add_submenu_page()` to avoid Theme Check warning.
884
+ *
885
+ * Why?
886
+ * ====
887
+ * Freemius is an SDK for plugin and theme developers. Since the core
888
+ * of the SDK is relevant both for plugins and themes, for obvious reasons,
889
+ * we only develop and maintain one code base.
890
+ *
891
+ * This method will not run for wp.org themes (only plugins) since theme
892
+ * admin settings/options are now only allowed in the customizer.
893
+ *
894
+ * If you have any questions or need clarifications, please don't hesitate
895
+ * pinging me on slack, my username is @svovaf.
896
+ *
897
+ * @author Vova Feldman (@svovaf)
898
+ * @since 1.2.2
899
+ *
900
+ * @param string $parent_slug The slug name for the parent menu (or the file name of a standard
901
+ * WordPress admin page).
902
+ * @param string $page_title The text to be displayed in the title tags of the page when the menu is
903
+ * selected.
904
+ * @param string $menu_title The text to be used for the menu.
905
+ * @param string $capability The capability required for this menu to be displayed to the user.
906
+ * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu).
907
+ * @param callable|string $function The function to be called to output the content for this page.
908
+ *
909
+ * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability
910
+ * required.
911
+ */
912
+ static function add_subpage(
913
+ $parent_slug,
914
+ $page_title,
915
+ $menu_title,
916
+ $capability,
917
+ $menu_slug,
918
+ $function = ''
919
+ ) {
920
+ $fn = 'add_submenu' . '_page';
921
+
922
+ return $fn( $parent_slug,
923
+ $page_title,
924
+ $menu_title,
925
+ $capability,
926
+ $menu_slug,
927
+ $function
928
+ );
929
+ }
930
+
931
+ /**
932
+ * Add sub page and update menu instance settings.
933
+ *
934
+ * @author Vova Feldman (@svovaf)
935
+ * @since 2.0.0
936
+ *
937
+ * @param string $parent_slug
938
+ * @param string $page_title
939
+ * @param string $menu_title
940
+ * @param string $capability
941
+ * @param string $menu_slug
942
+ * @param callable|string $function
943
+ *
944
+ * @return string
945
+ */
946
+ function add_subpage_and_update(
947
+ $parent_slug,
948
+ $page_title,
949
+ $menu_title,
950
+ $capability,
951
+ $menu_slug,
952
+ $function = ''
953
+ ) {
954
+ $this->_menu_slug = $menu_slug;
955
+ $this->_parent_slug = $parent_slug;
956
+ $this->_is_top_level = false;
957
+ $this->_menu_exists = true;
958
+ $this->_network_menu_exists = true;
959
+
960
+ return self::add_subpage(
961
+ $parent_slug,
962
+ $page_title,
963
+ $menu_title,
964
+ $capability,
965
+ $menu_slug,
966
+ $function
967
+ );
968
+ }
969
  }
freemius/includes/supplements/fs-essential-functions-1.1.7.1.php CHANGED
@@ -1,43 +1,43 @@
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 1.1.7
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- /**
14
- * Find the plugin main file path based on any given file inside the plugin's folder.
15
- *
16
- * @author Vova Feldman (@svovaf)
17
- * @since 1.1.7.1
18
- *
19
- * @param string $file Absolute path to a file inside a plugin's folder.
20
- *
21
- * @return string
22
- */
23
- function fs_find_direct_caller_plugin_file( $file ) {
24
- /**
25
- * All the code below will be executed once on activation.
26
- * If the user changes the main plugin's file name, the file_exists()
27
- * will catch it.
28
- */
29
- $all_plugins = fs_get_plugins( true );
30
-
31
- $file_real_path = fs_normalize_path( realpath( $file ) );
32
-
33
- // Get active plugin's main files real full names (might be symlinks).
34
- foreach ( $all_plugins as $relative_path => $data ) {
35
- if ( 0 === strpos( $file_real_path, fs_normalize_path( dirname( realpath( WP_PLUGIN_DIR . '/' . $relative_path ) ) ) ) ) {
36
- if ( '.' !== dirname( trailingslashit( $relative_path ) ) ) {
37
- return $relative_path;
38
- }
39
- }
40
- }
41
-
42
- return null;
43
- }
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 1.1.7
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ /**
14
+ * Find the plugin main file path based on any given file inside the plugin's folder.
15
+ *
16
+ * @author Vova Feldman (@svovaf)
17
+ * @since 1.1.7.1
18
+ *
19
+ * @param string $file Absolute path to a file inside a plugin's folder.
20
+ *
21
+ * @return string
22
+ */
23
+ function fs_find_direct_caller_plugin_file( $file ) {
24
+ /**
25
+ * All the code below will be executed once on activation.
26
+ * If the user changes the main plugin's file name, the file_exists()
27
+ * will catch it.
28
+ */
29
+ $all_plugins = fs_get_plugins( true );
30
+
31
+ $file_real_path = fs_normalize_path( realpath( $file ) );
32
+
33
+ // Get active plugin's main files real full names (might be symlinks).
34
+ foreach ( $all_plugins as $relative_path => $data ) {
35
+ if ( 0 === strpos( $file_real_path, fs_normalize_path( dirname( realpath( WP_PLUGIN_DIR . '/' . $relative_path ) ) ) ) ) {
36
+ if ( '.' !== dirname( trailingslashit( $relative_path ) ) ) {
37
+ return $relative_path;
38
+ }
39
+ }
40
+ }
41
+
42
+ return null;
43
+ }
freemius/includes/supplements/fs-essential-functions-2.2.1.php CHANGED
@@ -1,45 +1,45 @@
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.2.1
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- if ( ! function_exists( 'fs_get_plugins' ) ) {
14
- /**
15
- * @author Leo Fajardo (@leorw)
16
- * @since 2.2.1
17
- *
18
- * @param bool $delete_cache
19
- *
20
- * @return array
21
- */
22
- function fs_get_plugins( $delete_cache = false ) {
23
- $cached_plugins = wp_cache_get( 'plugins', 'plugins' );
24
- if ( ! is_array( $cached_plugins ) ) {
25
- $cached_plugins = array();
26
- }
27
-
28
- $plugin_folder = '';
29
- if ( isset( $cached_plugins[ $plugin_folder ] ) ) {
30
- $plugins = $cached_plugins[ $plugin_folder ];
31
- } else {
32
- if ( ! function_exists( 'get_plugins' ) ) {
33
- require_once ABSPATH . 'wp-admin/includes/plugin.php';
34
- }
35
-
36
- $plugins = get_plugins();
37
-
38
- if ( $delete_cache && is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
39
- wp_cache_delete( 'plugins', 'plugins' );
40
- }
41
- }
42
-
43
- return $plugins;
44
- }
45
  }
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.2.1
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ if ( ! function_exists( 'fs_get_plugins' ) ) {
14
+ /**
15
+ * @author Leo Fajardo (@leorw)
16
+ * @since 2.2.1
17
+ *
18
+ * @param bool $delete_cache
19
+ *
20
+ * @return array
21
+ */
22
+ function fs_get_plugins( $delete_cache = false ) {
23
+ $cached_plugins = wp_cache_get( 'plugins', 'plugins' );
24
+ if ( ! is_array( $cached_plugins ) ) {
25
+ $cached_plugins = array();
26
+ }
27
+
28
+ $plugin_folder = '';
29
+ if ( isset( $cached_plugins[ $plugin_folder ] ) ) {
30
+ $plugins = $cached_plugins[ $plugin_folder ];
31
+ } else {
32
+ if ( ! function_exists( 'get_plugins' ) ) {
33
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
34
+ }
35
+
36
+ $plugins = get_plugins();
37
+
38
+ if ( $delete_cache && is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
39
+ wp_cache_delete( 'plugins', 'plugins' );
40
+ }
41
+ }
42
+
43
+ return $plugins;
44
+ }
45
  }
freemius/languages/freemius-da_DK.po CHANGED
@@ -1,2434 +1,2434 @@
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
- # Lars Koudal, 2018
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: WordPress SDK\n"
9
- "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
- "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2018-11-25 07:22+0000\n"
12
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
- "Language: da_DK\n"
14
- "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "MIME-Version: 1.0\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
- "X-Poedit-SourceCharset: UTF-8\n"
24
-
25
- #: includes/class-freemius.php:1602
26
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
- msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
-
29
- #: includes/class-freemius.php:1604
30
- msgid "Error"
31
- msgstr "Fejl"
32
-
33
- #: includes/class-freemius.php:1925
34
- msgid "I found a better %s"
35
- msgstr "Jeg fandt et bedre %s"
36
-
37
- #: includes/class-freemius.php:1927
38
- msgid "What's the %s's name?"
39
- msgstr "Hvad er navnet på %s?"
40
-
41
- #: includes/class-freemius.php:1933
42
- msgid "It's a temporary %s. I'm just debugging an issue."
43
- msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
44
-
45
- #: includes/class-freemius.php:1935
46
- msgid "Deactivation"
47
- msgstr "Deaktivering"
48
-
49
- #: includes/class-freemius.php:1936
50
- msgid "Theme Switch"
51
- msgstr "Temaskift"
52
-
53
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
- msgid "Other"
55
- msgstr "Andet"
56
-
57
- #: includes/class-freemius.php:1953
58
- msgid "I no longer need the %s"
59
- msgstr "Jeg har ikke længere brug for %s"
60
-
61
- #: includes/class-freemius.php:1960
62
- msgid "I only needed the %s for a short period"
63
- msgstr "Jeg behøvede kun %s i en kort periode"
64
-
65
- #: includes/class-freemius.php:1966
66
- msgid "The %s broke my site"
67
- msgstr "%s ødelagde min webside"
68
-
69
- #: includes/class-freemius.php:1973
70
- msgid "The %s suddenly stopped working"
71
- msgstr "%s stoppede pludseligt med at virke"
72
-
73
- #: includes/class-freemius.php:1983
74
- msgid "I can't pay for it anymore"
75
- msgstr "Jeg kan ikke længere betale for det"
76
-
77
- #: includes/class-freemius.php:1985
78
- msgid "What price would you feel comfortable paying?"
79
- msgstr "Hvilken pris ville du foretrække at betale?"
80
-
81
- #: includes/class-freemius.php:1991
82
- msgid "I don't like to share my information with you"
83
- msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
84
-
85
- #: includes/class-freemius.php:2012
86
- msgid "The %s didn't work"
87
- msgstr "%s virkede ikke"
88
-
89
- #: includes/class-freemius.php:2022
90
- msgid "I couldn't understand how to make it work"
91
- msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
92
-
93
- #: includes/class-freemius.php:2030
94
- msgid "The %s is great, but I need specific feature that you don't support"
95
- msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
96
-
97
- #: includes/class-freemius.php:2032
98
- msgid "What feature?"
99
- msgstr "Hvilken feature?"
100
-
101
- #: includes/class-freemius.php:2036
102
- msgid "The %s is not working"
103
- msgstr "%s virker ikke"
104
-
105
- #: includes/class-freemius.php:2038
106
- msgid "Kindly share what didn't work so we can fix it for future users..."
107
- msgstr "Kindly share what didn't work so we can fix it for future users..."
108
-
109
- #: includes/class-freemius.php:2042
110
- msgid "It's not what I was looking for"
111
- msgstr "Det er ikke, hvad jeg søgte"
112
-
113
- #: includes/class-freemius.php:2044
114
- msgid "What you've been looking for?"
115
- msgstr "Hvad har du ledt efter?"
116
-
117
- #: includes/class-freemius.php:2048
118
- msgid "The %s didn't work as expected"
119
- msgstr "%s virkede ikke som forventet"
120
-
121
- #: includes/class-freemius.php:2050
122
- msgid "What did you expect?"
123
- msgstr "Hvad forventede du?"
124
-
125
- #: includes/class-freemius.php2853, templates/debug.php:20
126
- msgid "Freemius Debug"
127
- msgstr "Freemius Debug"
128
-
129
- #: includes/class-freemius.php:3581
130
- msgid "I don't know what is cURL or how to install it, help me!"
131
- msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
132
-
133
- #: includes/class-freemius.php:3583
134
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
- msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
136
-
137
- #: includes/class-freemius.php:3590
138
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
- msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
-
141
- #: includes/class-freemius.php:3695
142
- msgid "Yes - do your thing"
143
- msgstr "Ja - fortsæt bare"
144
-
145
- #: includes/class-freemius.php:3700
146
- msgid "No - just deactivate"
147
- msgstr "Nej - bare deaktiver"
148
-
149
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
- #: includes/class-freemius.php18705, templates/add-ons.php:43
156
- msgctxt "exclamation"
157
- msgid "Oops"
158
- msgstr "Ups"
159
-
160
- #: includes/class-freemius.php:3814
161
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
- msgstr "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed."
163
-
164
- #: includes/class-freemius.php:4250
165
- msgctxt "addonX cannot run without pluginY"
166
- msgid "%s cannot run without %s."
167
- msgstr "%s virker ikke uden %s."
168
-
169
- #: includes/class-freemius.php:4251
170
- msgctxt "addonX cannot run..."
171
- msgid "%s cannot run without the plugin."
172
- msgstr "%s virker ikke uden pluginnet."
173
-
174
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
- #: includes/class-freemius.php:17659
176
- msgid "Unexpected API error. Please contact the %s's author with the following error."
177
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
-
179
- #: includes/class-freemius.php:5006
180
- msgid "Premium %s version was successfully activated."
181
- msgstr "Premium-versionen af %s blev aktiveret."
182
-
183
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
- msgctxt ""
185
- msgid "W00t"
186
- msgstr "W00t"
187
-
188
- #: includes/class-freemius.php:5033
189
- msgid "You have a %s license."
190
- msgstr "Du har en %s licens."
191
-
192
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
- #: includes/class-freemius.php:17413
196
- msgctxt "interjection expressing joy or exuberance"
197
- msgid "Yee-haw"
198
- msgstr "Yee-haw"
199
-
200
- #: includes/class-freemius.php:5301
201
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
- msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
-
204
- #: includes/class-freemius.php:5305
205
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
- msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
-
208
- #: includes/class-freemius.php5314, templates/add-ons.php103,
209
- #: templates/account/partials/addon.php:288
210
- msgid "More information about %s"
211
- msgstr "Mere information om %s"
212
-
213
- #: includes/class-freemius.php:5315
214
- msgid "Purchase License"
215
- msgstr "Køb licens"
216
-
217
- #: includes/class-freemius.php6230, templates/connect.php:163
218
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
- msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
-
221
- #: includes/class-freemius.php:6234
222
- msgid "start the trial"
223
- msgstr "start prøveperioden"
224
-
225
- #: includes/class-freemius.php6235, templates/connect.php:167
226
- msgid "complete the install"
227
- msgstr "færdiggør installeringen"
228
-
229
- #: includes/class-freemius.php:6348
230
- msgid "You are just one step away - %s"
231
- msgstr "Du mangler kun ét skridt - %s"
232
-
233
- #: includes/class-freemius.php:6351
234
- msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
- msgid "Complete \"%s\" Activation Now"
236
- msgstr "Færdiggør aktivering af \"%s\" nu"
237
-
238
- #: includes/class-freemius.php:6429
239
- msgid "We made a few tweaks to the %s, %s"
240
- msgstr "Vi har foretaget nogle rettelser til %s, %s"
241
-
242
- #: includes/class-freemius.php:6433
243
- msgid "Opt in to make \"%s\" better!"
244
- msgstr "Opt in to make \"%s\" better!"
245
-
246
- #: includes/class-freemius.php:6861
247
- msgid "The upgrade of %s was successfully completed."
248
- msgstr "Opgraderingen af %s blev fuldendt."
249
-
250
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
- #: includes/class-fs-plugin-updater.php1077,
252
- #: includes/class-fs-plugin-updater.php1084,
253
- #: templates/auto-installation.php:32
254
- msgid "Add-On"
255
- msgstr "Tilføjelse"
256
-
257
- #: includes/class-freemius.php8707, templates/debug.php359,
258
- #: templates/debug.php:520
259
- msgid "Plugin"
260
- msgstr "Plugin"
261
-
262
- #: includes/class-freemius.php8708, templates/debug.php359,
263
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
- msgid "Theme"
265
- msgstr "Tema"
266
-
267
- #: includes/class-freemius.php:11183
268
- msgid "Invalid site details collection."
269
- msgstr "Invalid site details collection."
270
-
271
- #: includes/class-freemius.php:11303
272
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
- msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
274
-
275
- #: includes/class-freemius.php:11305
276
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
- msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
278
-
279
- #: includes/class-freemius.php:11541
280
- msgid "Account is pending activation."
281
- msgstr "Konto afventer aktivering."
282
-
283
- #: includes/class-freemius.php11653,
284
- #: templates/forms/premium-versions-upgrade-handler.php:47
285
- msgid "Buy a license now"
286
- msgstr "Buy a license now"
287
-
288
- #: includes/class-freemius.php11665,
289
- #: templates/forms/premium-versions-upgrade-handler.php:46
290
- msgid "Renew your license now"
291
- msgstr "Renew your license now"
292
-
293
- #: includes/class-freemius.php:11669
294
- msgid "%s to access version %s security & feature updates, and support."
295
- msgstr "%s to access version %s security & feature updates, and support."
296
-
297
- #: includes/class-freemius.php:14052
298
- msgid "%s activation was successfully completed."
299
- msgstr "Aktivering af %s blev gennemført."
300
-
301
- #: includes/class-freemius.php:14066
302
- msgid "Your account was successfully activated with the %s plan."
303
- msgstr "Din konto blev aktiveret med planen %s."
304
-
305
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
- msgid "Your trial has been successfully started."
307
- msgstr "Din prøveperiode er begyndt."
308
-
309
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
- #: includes/class-freemius.php:14761
311
- msgid "Couldn't activate %s."
312
- msgstr "Kunne ikke aktivere %s."
313
-
314
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
- #: includes/class-freemius.php:14762
316
- msgid "Please contact us with the following message:"
317
- msgstr "Kontakt os venligst med følgende besked:"
318
-
319
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
- msgid "Upgrade"
321
- msgstr "Opgrader"
322
-
323
- #: includes/class-freemius.php:15117
324
- msgid "Start Trial"
325
- msgstr "Start prøveperiode"
326
-
327
- #: includes/class-freemius.php:15119
328
- msgid "Pricing"
329
- msgstr "Priser"
330
-
331
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
- msgid "Affiliation"
333
- msgstr "Affiliation"
334
-
335
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
- #: templates/account.php150, templates/debug.php:324
337
- msgid "Account"
338
- msgstr "Konto"
339
-
340
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
- #: includes/customizer/class-fs-customizer-support-section.php:60
342
- msgid "Contact Us"
343
- msgstr "Kontakt os"
344
-
345
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
- #: includes/class-freemius.php19553, templates/account.php100,
347
- #: templates/account/partials/addon.php:41
348
- msgid "Add-Ons"
349
- msgstr "Tilføjelser"
350
-
351
- #: includes/class-freemius.php:15274
352
- msgctxt "ASCII arrow left icon"
353
- msgid "&#x2190;"
354
- msgstr "&#x2190;"
355
-
356
- #: includes/class-freemius.php:15274
357
- msgctxt "ASCII arrow right icon"
358
- msgid "&#x27a4;"
359
- msgstr "&#x27a4;"
360
-
361
- #: includes/class-freemius.php15276, templates/pricing.php:97
362
- msgctxt "noun"
363
- msgid "Pricing"
364
- msgstr "Priser"
365
-
366
- #: includes/class-freemius.php15479,
367
- #: includes/customizer/class-fs-customizer-support-section.php:67
368
- msgid "Support Forum"
369
- msgstr "Supportforum"
370
-
371
- #: includes/class-freemius.php:16265
372
- msgid "Your email has been successfully verified - you are AWESOME!"
373
- msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
374
-
375
- #: includes/class-freemius.php:16266
376
- msgctxt "a positive response"
377
- msgid "Right on"
378
- msgstr "Sådan"
379
-
380
- #: includes/class-freemius.php:16888
381
- msgid "Your %s Add-on plan was successfully upgraded."
382
- msgstr "Your %s Add-on plan was successfully upgraded."
383
-
384
- #: includes/class-freemius.php:16890
385
- msgid "%s Add-on was successfully purchased."
386
- msgstr "Betalingen for tilføjelsen %s blev gennemført."
387
-
388
- #: includes/class-freemius.php:16893
389
- msgid "Download the latest version"
390
- msgstr "Download den seneste version"
391
-
392
- #: includes/class-freemius.php:16965
393
- msgctxt "%1s - plugin title, %2s - API domain"
394
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
-
397
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
- #: includes/class-freemius.php:17461
399
- msgid "Error received from the server:"
400
- msgstr "Fejl modtager fra serveren:"
401
-
402
- #: includes/class-freemius.php:16978
403
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
- msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
-
406
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
- msgctxt ""
409
- msgid "Hmm"
410
- msgstr "Hmm"
411
-
412
- #: includes/class-freemius.php:17173
413
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
- msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
-
416
- #: includes/class-freemius.php17174, templates/account.php102,
417
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
- msgctxt "trial period"
419
- msgid "Trial"
420
- msgstr "Prøveperiode"
421
-
422
- #: includes/class-freemius.php:17179
423
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
- msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
425
-
426
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
- msgid "Please contact us here"
428
- msgstr "Kontakt os her"
429
-
430
- #: includes/class-freemius.php:17193
431
- msgid "Your plan was successfully upgraded."
432
- msgstr "Din plan er blevet opgraderet."
433
-
434
- #: includes/class-freemius.php:17211
435
- msgid "Your plan was successfully changed to %s."
436
- msgstr "Din plan er blevet ændret til %s."
437
-
438
- #: includes/class-freemius.php:17227
439
- msgid "Your license has expired. You can still continue using the free %s forever."
440
- msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
441
-
442
- #: includes/class-freemius.php:17229
443
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
- msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
445
-
446
- #: includes/class-freemius.php:17237
447
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
- msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
449
-
450
- #: includes/class-freemius.php:17250
451
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
- msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
453
-
454
- #: includes/class-freemius.php:17273
455
- msgid "Your free trial has expired. You can still continue using all our free features."
456
- msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
457
-
458
- #: includes/class-freemius.php:17275
459
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
- msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
-
462
- #: includes/class-freemius.php:17380
463
- msgid "It looks like the license could not be activated."
464
- msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
465
-
466
- #: includes/class-freemius.php:17410
467
- msgid "Your license was successfully activated."
468
- msgstr "Din licens er blevet aktiveret."
469
-
470
- #: includes/class-freemius.php:17436
471
- msgid "It looks like your site currently doesn't have an active license."
472
- msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
473
-
474
- #: includes/class-freemius.php:17460
475
- msgid "It looks like the license deactivation failed."
476
- msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
477
-
478
- #: includes/class-freemius.php:17488
479
- msgid "Your license was successfully deactivated, you are back to the %s plan."
480
- msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
481
-
482
- #: includes/class-freemius.php:17489
483
- msgid "O.K"
484
- msgstr "O.K"
485
-
486
- #: includes/class-freemius.php:17542
487
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
- msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
-
490
- #: includes/class-freemius.php:17551
491
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
- msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
-
494
- #: includes/class-freemius.php:17593
495
- msgid "You are already running the %s in a trial mode."
496
- msgstr "Du benytter allerede %s under en prøveperiode."
497
-
498
- #: includes/class-freemius.php:17604
499
- msgid "You already utilized a trial before."
500
- msgstr "Du har allerede brugt din prøveperiode."
501
-
502
- #: includes/class-freemius.php:17618
503
- msgid "Plan %s do not exist, therefore, can't start a trial."
504
- msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
505
-
506
- #: includes/class-freemius.php:17629
507
- msgid "Plan %s does not support a trial period."
508
- msgstr "Plan %s understøtter ikke en prøveperiode."
509
-
510
- #: includes/class-freemius.php:17640
511
- msgid "None of the %s's plans supports a trial period."
512
- msgstr "None of the %s's plans supports a trial period."
513
-
514
- #: includes/class-freemius.php:17690
515
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
- msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
517
-
518
- #: includes/class-freemius.php:17726
519
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
- msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
521
-
522
- #: includes/class-freemius.php:17745
523
- msgid "Your %s free trial was successfully cancelled."
524
- msgstr "Din gratis prøveperiode for %s er blevet annulleret."
525
-
526
- #: includes/class-freemius.php:18052
527
- msgid "Version %s was released."
528
- msgstr "Version %s er blevet udgivet."
529
-
530
- #: includes/class-freemius.php:18052
531
- msgid "Please download %s."
532
- msgstr "Download venligst %s."
533
-
534
- #: includes/class-freemius.php:18059
535
- msgid "the latest %s version here"
536
- msgstr "den seneste version af %s her"
537
-
538
- #: includes/class-freemius.php:18064
539
- msgid "New"
540
- msgstr "Ny"
541
-
542
- #: includes/class-freemius.php:18069
543
- msgid "Seems like you got the latest release."
544
- msgstr "Det ser ud til, at du har den seneste udgivelse."
545
-
546
- #: includes/class-freemius.php:18070
547
- msgid "You are all good!"
548
- msgstr "Det var det!"
549
-
550
- #: includes/class-freemius.php:18338
551
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
- msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
-
554
- #: includes/class-freemius.php:18473
555
- msgid "Site successfully opted in."
556
- msgstr "Websted er tilmeldt."
557
-
558
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
- msgid "Awesome"
560
- msgstr "Sejt"
561
-
562
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
- msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
565
-
566
- #: includes/class-freemius.php:18491
567
- msgid "Thank you!"
568
- msgstr "Mange tak!"
569
-
570
- #: includes/class-freemius.php:18498
571
- msgid "We will no longer be sending any usage data of %s on %s to %s."
572
- msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
573
-
574
- #: includes/class-freemius.php:18627
575
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
- msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
-
578
- #: includes/class-freemius.php:18633
579
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
- msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
581
-
582
- #: includes/class-freemius.php:18638
583
- msgid "%s is the new owner of the account."
584
- msgstr "%s er den nye ejer af kontoen."
585
-
586
- #: includes/class-freemius.php:18640
587
- msgctxt "as congratulations"
588
- msgid "Congrats"
589
- msgstr "Tillykke"
590
-
591
- #: includes/class-freemius.php:18660
592
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
- msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
-
595
- #: includes/class-freemius.php:18661
596
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
-
599
- #: includes/class-freemius.php:18668
600
- msgid "Change Ownership"
601
- msgstr "Skift ejerskab"
602
-
603
- #: includes/class-freemius.php:18676
604
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
- msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
606
-
607
- #: includes/class-freemius.php:18688
608
- msgid "Please provide your full name."
609
- msgstr "Indtast venligst dit fulde navn."
610
-
611
- #: includes/class-freemius.php:18693
612
- msgid "Your name was successfully updated."
613
- msgstr "Dit navn er blevet opdateret."
614
-
615
- #: includes/class-freemius.php:18754
616
- msgid "You have successfully updated your %s."
617
- msgstr "Opdatering af %s blev gennemført."
618
-
619
- #: includes/class-freemius.php:18894
620
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
- msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
-
623
- #: includes/class-freemius.php:18895
624
- msgctxt "advance notice of something that will need attention."
625
- msgid "Heads up"
626
- msgstr "Se her"
627
-
628
- #: includes/class-freemius.php:19325
629
- msgctxt "exclamation"
630
- msgid "Hey"
631
- msgstr "Hey"
632
-
633
- #: includes/class-freemius.php:19325
634
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
- msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
636
-
637
- #: includes/class-freemius.php:19333
638
- msgid "No commitment for %s days - cancel anytime!"
639
- msgstr "Ingen bindinger i %s dage - annuller når som helst!"
640
-
641
- #: includes/class-freemius.php:19334
642
- msgid "No credit card required"
643
- msgstr "Betalingskort ikke påkrævet"
644
-
645
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
646
- msgctxt "call to action"
647
- msgid "Start free trial"
648
- msgstr "Start gratis prøveperiode"
649
-
650
- #: includes/class-freemius.php:19418
651
- msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
- msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
-
654
- #: includes/class-freemius.php:19427
655
- msgid "Learn more"
656
- msgstr "Læs mere"
657
-
658
- #: includes/class-freemius.php19577, templates/account.php406,
659
- #: templates/account.php509, templates/connect.php171,
660
- #: templates/connect.php421, templates/forms/license-activation.php24,
661
- #: templates/account/partials/addon.php:235
662
- msgid "Activate License"
663
- msgstr "Aktiver licens"
664
-
665
- #: includes/class-freemius.php19578, templates/account.php469,
666
- #: templates/account.php508, templates/account/partials/site.php:256
667
- msgid "Change License"
668
- msgstr "Skift licens"
669
-
670
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
671
- msgid "Opt Out"
672
- msgstr "Frameld"
673
-
674
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
675
- #: templates/account/partials/site.php43,
676
- #: templates/account/partials/site.php:161
677
- msgid "Opt In"
678
- msgstr "Tilmeld"
679
-
680
- #: includes/class-freemius.php:19891
681
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
-
684
- #: includes/class-freemius.php:19899
685
- msgid "Activate %s features"
686
- msgstr "Activate %s features"
687
-
688
- #: includes/class-freemius.php:19912
689
- msgid "Please follow these steps to complete the upgrade"
690
- msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
691
-
692
- #: includes/class-freemius.php:19916
693
- msgid "Download the latest %s version"
694
- msgstr "Download den seneste version af %s"
695
-
696
- #: includes/class-freemius.php:19920
697
- msgid "Upload and activate the downloaded version"
698
- msgstr "Upload og aktiver den downloadede version"
699
-
700
- #: includes/class-freemius.php:19922
701
- msgid "How to upload and activate?"
702
- msgstr "Upload og aktivering, hvordan?"
703
-
704
- #: includes/class-freemius.php:20056
705
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
- msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
-
708
- #: includes/class-freemius.php:20217
709
- msgid "Auto installation only works for opted-in users."
710
- msgstr "Auto-installation fungerer kun for tilmeldte brugere."
711
-
712
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
713
- #: includes/class-fs-plugin-updater.php1056,
714
- #: includes/class-fs-plugin-updater.php:1070
715
- msgid "Invalid module ID."
716
- msgstr "Ugyldigt modul-ID."
717
-
718
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
719
- msgid "Premium version already active."
720
- msgstr "Premium version allerede aktiv."
721
-
722
- #: includes/class-freemius.php:20243
723
- msgid "You do not have a valid license to access the premium version."
724
- msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
725
-
726
- #: includes/class-freemius.php:20250
727
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
- msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
-
730
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
731
- msgid "Premium add-on version already installed."
732
- msgstr "Premium tilføjelse er allerede installeret."
733
-
734
- #: includes/class-freemius.php:20613
735
- msgid "View paid features"
736
- msgstr "Vis betalte features"
737
-
738
- #: includes/class-freemius.php:20927
739
- msgid "Thank you so much for using %s and its add-ons!"
740
- msgstr "Thank you so much for using %s and its add-ons!"
741
-
742
- #: includes/class-freemius.php:20928
743
- msgid "Thank you so much for using %s!"
744
- msgstr "Tak fordi du benytter %s!"
745
-
746
- #: includes/class-freemius.php:20934
747
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
- msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
749
-
750
- #: includes/class-freemius.php:20938
751
- msgid "Thank you so much for using our products!"
752
- msgstr "Mange tak for at benytte vores produkter!"
753
-
754
- #: includes/class-freemius.php:20939
755
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
- msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
757
-
758
- #: includes/class-freemius.php:20958
759
- msgid "%s and its add-ons"
760
- msgstr "%s og tilføjelser"
761
-
762
- #: includes/class-freemius.php:20967
763
- msgid "Products"
764
- msgstr "Produkter"
765
-
766
- #: includes/class-freemius.php20974, templates/connect.php:272
767
- msgid "Yes"
768
- msgstr "Ja"
769
-
770
- #: includes/class-freemius.php20975, templates/connect.php:273
771
- msgid "send me security & feature updates, educational content and offers."
772
- msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
773
-
774
- #: includes/class-freemius.php20976, templates/connect.php:278
775
- msgid "No"
776
- msgstr "Nej"
777
-
778
- #: includes/class-freemius.php20978, templates/connect.php:280
779
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
- msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
781
-
782
- #: includes/class-freemius.php:20988
783
- msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
- msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
785
-
786
- #: includes/class-freemius.php20990, templates/connect.php:287
787
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
- msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
789
-
790
- #: includes/class-freemius.php:21272
791
- msgid "License key is empty."
792
- msgstr "Licensnøglen er tom."
793
-
794
- #: includes/class-fs-plugin-updater.php184,
795
- #: templates/forms/premium-versions-upgrade-handler.php:57
796
- msgid "Renew license"
797
- msgstr "Forny licens"
798
-
799
- #: includes/class-fs-plugin-updater.php189,
800
- #: templates/forms/premium-versions-upgrade-handler.php:58
801
- msgid "Buy license"
802
- msgstr "Buy license"
803
-
804
- #: includes/class-fs-plugin-updater.php:278
805
- msgid "There is a %s of %s available."
806
- msgstr "There is a %s of %s available."
807
-
808
- #: includes/class-fs-plugin-updater.php:282
809
- msgid "new version"
810
- msgstr "new version"
811
-
812
- #: includes/class-fs-plugin-updater.php:301
813
- msgid "Important Upgrade Notice:"
814
- msgstr "Important Upgrade Notice:"
815
-
816
- #: includes/class-fs-plugin-updater.php:1121
817
- msgid "Installing plugin: %s"
818
- msgstr "Installerer plugin: %s"
819
-
820
- #: includes/class-fs-plugin-updater.php:1162
821
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
- msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
-
824
- #: includes/class-fs-plugin-updater.php:1335
825
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
- msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
-
828
- #: includes/fs-plugin-info-dialog.php369,
829
- #: templates/account/partials/addon.php:292
830
- msgctxt "verb"
831
- msgid "Purchase"
832
- msgstr "Køb"
833
-
834
- #: includes/fs-plugin-info-dialog.php:372
835
- msgid "Start my free %s"
836
- msgstr "Start min gratis %s"
837
-
838
- #: includes/fs-plugin-info-dialog.php:413
839
- msgid "Install Free Version Now"
840
- msgstr "Installer gratis version nu"
841
-
842
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
843
- #: templates/account/partials/addon.php272,
844
- #: templates/account/partials/addon.php:322
845
- msgid "Install Now"
846
- msgstr "Installer nu"
847
-
848
- #: includes/fs-plugin-info-dialog.php:425
849
- msgctxt "as download latest version"
850
- msgid "Download Latest Free Version"
851
- msgstr "Download seneste gratis version"
852
-
853
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
854
- #: templates/account/partials/addon.php:21
855
- msgctxt "as download latest version"
856
- msgid "Download Latest"
857
- msgstr "Download seneste"
858
-
859
- #: includes/fs-plugin-info-dialog.php:436
860
- msgid "Install Free Version Update Now"
861
- msgstr "Installer opdatering til gratis version nu"
862
-
863
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
864
- msgid "Install Update Now"
865
- msgstr "Installer opdatering nu"
866
-
867
- #: includes/fs-plugin-info-dialog.php:448
868
- msgid "Newer Free Version (%s) Installed"
869
- msgstr "Nyere gratis version (%s) installeret"
870
-
871
- #: includes/fs-plugin-info-dialog.php:449
872
- msgid "Newer Version (%s) Installed"
873
- msgstr "Nyere version (%s) installeret"
874
-
875
- #: includes/fs-plugin-info-dialog.php:457
876
- msgid "Latest Free Version Installed"
877
- msgstr "Seneste gratis version installeret"
878
-
879
- #: includes/fs-plugin-info-dialog.php:458
880
- msgid "Latest Version Installed"
881
- msgstr "Seneste version installeret"
882
-
883
- #: includes/fs-plugin-info-dialog.php:613
884
- msgctxt "Plugin installer section title"
885
- msgid "Description"
886
- msgstr "Beskrivelse"
887
-
888
- #: includes/fs-plugin-info-dialog.php:614
889
- msgctxt "Plugin installer section title"
890
- msgid "Installation"
891
- msgstr "Installering"
892
-
893
- #: includes/fs-plugin-info-dialog.php:615
894
- msgctxt "Plugin installer section title"
895
- msgid "FAQ"
896
- msgstr "FAQ"
897
-
898
- #: includes/fs-plugin-info-dialog.php616,
899
- #: templates/plugin-info/description.php:55
900
- msgid "Screenshots"
901
- msgstr "Skærmbilleder"
902
-
903
- #: includes/fs-plugin-info-dialog.php:617
904
- msgctxt "Plugin installer section title"
905
- msgid "Changelog"
906
- msgstr "Ændringslog"
907
-
908
- #: includes/fs-plugin-info-dialog.php:618
909
- msgctxt "Plugin installer section title"
910
- msgid "Reviews"
911
- msgstr "Anmeldelser"
912
-
913
- #: includes/fs-plugin-info-dialog.php:619
914
- msgctxt "Plugin installer section title"
915
- msgid "Other Notes"
916
- msgstr "Andre noter"
917
-
918
- #: includes/fs-plugin-info-dialog.php:634
919
- msgctxt "Plugin installer section title"
920
- msgid "Features & Pricing"
921
- msgstr "Funktioner og priser"
922
-
923
- #: includes/fs-plugin-info-dialog.php:644
924
- msgid "Plugin Install"
925
- msgstr "Plugin-installering"
926
-
927
- #: includes/fs-plugin-info-dialog.php:716
928
- msgctxt "e.g. Professional Plan"
929
- msgid "%s Plan"
930
- msgstr "%s Plan"
931
-
932
- #: includes/fs-plugin-info-dialog.php:742
933
- msgctxt "e.g. the best product"
934
- msgid "Best"
935
- msgstr "Bedste"
936
-
937
- #: includes/fs-plugin-info-dialog.php748,
938
- #: includes/fs-plugin-info-dialog.php:768
939
- msgctxt "as every month"
940
- msgid "Monthly"
941
- msgstr "Månedligt"
942
-
943
- #: includes/fs-plugin-info-dialog.php:751
944
- msgctxt "as once a year"
945
- msgid "Annual"
946
- msgstr "Årligt"
947
-
948
- #: includes/fs-plugin-info-dialog.php:754
949
- msgid "Lifetime"
950
- msgstr "Livstid"
951
-
952
- #: includes/fs-plugin-info-dialog.php768,
953
- #: includes/fs-plugin-info-dialog.php770,
954
- #: includes/fs-plugin-info-dialog.php:772
955
- msgctxt "e.g. billed monthly"
956
- msgid "Billed %s"
957
- msgstr "Faktureret %s"
958
-
959
- #: includes/fs-plugin-info-dialog.php:770
960
- msgctxt "as once a year"
961
- msgid "Annually"
962
- msgstr "Årligt"
963
-
964
- #: includes/fs-plugin-info-dialog.php:772
965
- msgctxt "as once a year"
966
- msgid "Once"
967
- msgstr "Engangsbeløb"
968
-
969
- #: includes/fs-plugin-info-dialog.php:778
970
- msgid "Single Site License"
971
- msgstr "Single Site License"
972
-
973
- #: includes/fs-plugin-info-dialog.php:780
974
- msgid "Unlimited Licenses"
975
- msgstr "Ubegrænsede licenser"
976
-
977
- #: includes/fs-plugin-info-dialog.php:782
978
- msgid "Up to %s Sites"
979
- msgstr "Op til %s websteder"
980
-
981
- #: includes/fs-plugin-info-dialog.php792,
982
- #: templates/plugin-info/features.php:82
983
- msgctxt "as monthly period"
984
- msgid "mo"
985
- msgstr "md"
986
-
987
- #: includes/fs-plugin-info-dialog.php799,
988
- #: templates/plugin-info/features.php:80
989
- msgctxt "as annual period"
990
- msgid "year"
991
- msgstr "år"
992
-
993
- #: includes/fs-plugin-info-dialog.php:853
994
- msgctxt "noun"
995
- msgid "Price"
996
- msgstr "Pris"
997
-
998
- #: includes/fs-plugin-info-dialog.php:901
999
- msgid "Save %s"
1000
- msgstr "Spar %s"
1001
-
1002
- #: includes/fs-plugin-info-dialog.php:911
1003
- msgid "No commitment for %s - cancel anytime"
1004
- msgstr "Ingen bindinger ved %s - annuller når som helst"
1005
-
1006
- #: includes/fs-plugin-info-dialog.php:914
1007
- msgid "After your free %s, pay as little as %s"
1008
- msgstr "Efter din gratis %s er prisen kun %s"
1009
-
1010
- #: includes/fs-plugin-info-dialog.php:925
1011
- msgid "Details"
1012
- msgstr "Detaljer"
1013
-
1014
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1015
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1016
- #: templates/account/partials/addon.php:32
1017
- msgctxt "product version"
1018
- msgid "Version"
1019
- msgstr "Version"
1020
-
1021
- #: includes/fs-plugin-info-dialog.php:936
1022
- msgctxt "as the plugin author"
1023
- msgid "Author"
1024
- msgstr "Forfatter"
1025
-
1026
- #: includes/fs-plugin-info-dialog.php:943
1027
- msgid "Last Updated"
1028
- msgstr "Senest opdateret"
1029
-
1030
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1031
- msgctxt "x-ago"
1032
- msgid "%s ago"
1033
- msgstr "%s siden"
1034
-
1035
- #: includes/fs-plugin-info-dialog.php:957
1036
- msgid "Requires WordPress Version"
1037
- msgstr "Kræver WordPress-version"
1038
-
1039
- #: includes/fs-plugin-info-dialog.php:958
1040
- msgid "%s or higher"
1041
- msgstr "%s eller højere"
1042
-
1043
- #: includes/fs-plugin-info-dialog.php:965
1044
- msgid "Compatible up to"
1045
- msgstr "Kompatibel op til"
1046
-
1047
- #: includes/fs-plugin-info-dialog.php:973
1048
- msgid "Downloaded"
1049
- msgstr "Downloadet"
1050
-
1051
- #: includes/fs-plugin-info-dialog.php:977
1052
- msgid "%s time"
1053
- msgstr "%s gang"
1054
-
1055
- #: includes/fs-plugin-info-dialog.php:979
1056
- msgid "%s times"
1057
- msgstr "%s gange"
1058
-
1059
- #: includes/fs-plugin-info-dialog.php:989
1060
- msgid "WordPress.org Plugin Page"
1061
- msgstr "WordPress.org Plugin-side"
1062
-
1063
- #: includes/fs-plugin-info-dialog.php:997
1064
- msgid "Plugin Homepage"
1065
- msgstr "Plugin-websted"
1066
-
1067
- #: includes/fs-plugin-info-dialog.php1005,
1068
- #: includes/fs-plugin-info-dialog.php:1087
1069
- msgid "Donate to this plugin"
1070
- msgstr "Donér til dette plugin"
1071
-
1072
- #: includes/fs-plugin-info-dialog.php:1012
1073
- msgid "Average Rating"
1074
- msgstr "Gennemsnitlig vurdering"
1075
-
1076
- #: includes/fs-plugin-info-dialog.php:1019
1077
- msgid "based on %s"
1078
- msgstr "baseret på %s"
1079
-
1080
- #: includes/fs-plugin-info-dialog.php:1023
1081
- msgid "%s rating"
1082
- msgstr "%s vurdering"
1083
-
1084
- #: includes/fs-plugin-info-dialog.php:1025
1085
- msgid "%s ratings"
1086
- msgstr "%s vurderinger"
1087
-
1088
- #: includes/fs-plugin-info-dialog.php:1040
1089
- msgid "%s star"
1090
- msgstr "%s stjerne"
1091
-
1092
- #: includes/fs-plugin-info-dialog.php:1042
1093
- msgid "%s stars"
1094
- msgstr "%s stjerner"
1095
-
1096
- #: includes/fs-plugin-info-dialog.php:1053
1097
- msgid "Click to see reviews that provided a rating of %s"
1098
- msgstr "Click to see reviews that provided a rating of %s"
1099
-
1100
- #: includes/fs-plugin-info-dialog.php:1066
1101
- msgid "Contributors"
1102
- msgstr "Bidragsydere"
1103
-
1104
- #: includes/fs-plugin-info-dialog.php1095,
1105
- #: includes/fs-plugin-info-dialog.php:1097
1106
- msgid "Warning"
1107
- msgstr "Advarsel"
1108
-
1109
- #: includes/fs-plugin-info-dialog.php:1095
1110
- msgid "This plugin has not been tested with your current version of WordPress."
1111
- msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1112
-
1113
- #: includes/fs-plugin-info-dialog.php:1097
1114
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1115
- msgstr "This plugin has not been marked as compatible with your version of WordPress."
1116
-
1117
- #: includes/fs-plugin-info-dialog.php:1116
1118
- msgid "Paid add-on must be deployed to Freemius."
1119
- msgstr "Paid add-on must be deployed to Freemius."
1120
-
1121
- #: includes/fs-plugin-info-dialog.php:1117
1122
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1123
- msgstr "Add-on must be deployed to WordPress.org or Freemius."
1124
-
1125
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1126
- #: templates/account/partials/addon.php22,
1127
- #: templates/account/partials/site.php:295
1128
- msgid "Downgrading your plan"
1129
- msgstr "Downgrading your plan"
1130
-
1131
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1132
- #: templates/account/partials/addon.php23,
1133
- #: templates/account/partials/site.php:296
1134
- msgid "Cancelling the subscription"
1135
- msgstr "Cancelling the subscription"
1136
-
1137
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1138
- #. subscription'
1139
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1140
- #: templates/account/partials/addon.php25,
1141
- #: templates/account/partials/site.php:298
1142
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1144
-
1145
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1146
- #: templates/account/partials/addon.php26,
1147
- #: templates/account/partials/site.php:299
1148
- msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
- msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1150
-
1151
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1152
- #: templates/account/partials/addon.php:27
1153
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
- msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1155
-
1156
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1157
- #: templates/account/partials/addon.php28,
1158
- #: templates/account/partials/site.php:300
1159
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1161
-
1162
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1163
- #: templates/account/partials/addon.php29,
1164
- #: templates/account/partials/site.php:301
1165
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
- msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1167
-
1168
- #. translators: %s: Plan title (e.g. "Professional")
1169
- #: templates/account.php90,
1170
- #: templates/account/partials/activate-license-button.php31,
1171
- #: templates/account/partials/addon.php:31
1172
- msgid "Activate %s Plan"
1173
- msgstr "Aktiver %s plan"
1174
-
1175
- #. translators: %s: Time period (e.g. Auto renews in "2 months")
1176
- #: templates/account.php93, templates/account/partials/addon.php34,
1177
- #: templates/account/partials/site.php:275
1178
- msgid "Auto renews in %s"
1179
- msgstr "Auto-fornyer om %s"
1180
-
1181
- #. translators: %s: Time period (e.g. Expires in "2 months")
1182
- #: templates/account.php95, templates/account/partials/addon.php36,
1183
- #: templates/account/partials/site.php:277
1184
- msgid "Expires in %s"
1185
- msgstr "Udløber om %s"
1186
-
1187
- #: templates/account.php96, templates/account/partials/addon.php:37
1188
- msgctxt "as synchronize license"
1189
- msgid "Sync License"
1190
- msgstr "Synkroniser licens"
1191
-
1192
- #: templates/account.php97, templates/account/partials/addon.php:38
1193
- msgid "Cancel Trial"
1194
- msgstr "Annuller prøveperiode"
1195
-
1196
- #: templates/account.php98, templates/account/partials/addon.php:39
1197
- msgid "Change Plan"
1198
- msgstr "Skift plan"
1199
-
1200
- #: templates/account.php99, templates/account/partials/addon.php:40
1201
- msgctxt "verb"
1202
- msgid "Upgrade"
1203
- msgstr "Opgrader"
1204
-
1205
- #: templates/account.php101, templates/account/partials/addon.php42,
1206
- #: templates/account/partials/site.php:302
1207
- msgctxt "verb"
1208
- msgid "Downgrade"
1209
- msgstr "Nedgrader"
1210
-
1211
- #: templates/account.php103, templates/add-ons.php130,
1212
- #: templates/plugin-info/features.php72,
1213
- #: templates/account/partials/addon.php44,
1214
- #: templates/account/partials/site.php:31
1215
- msgid "Free"
1216
- msgstr "Gratis"
1217
-
1218
- #: templates/account.php104, templates/account/partials/addon.php:45
1219
- msgid "Activate"
1220
- msgstr "Aktiver"
1221
-
1222
- #: templates/account.php105, templates/debug.php371,
1223
- #: includes/customizer/class-fs-customizer-upsell-control.php106,
1224
- #: templates/account/partials/addon.php:46
1225
- msgctxt "as product pricing plan"
1226
- msgid "Plan"
1227
- msgstr "Plan"
1228
-
1229
- #: templates/account.php:158
1230
- msgid "Free Trial"
1231
- msgstr "Gratis prøveperiode"
1232
-
1233
- #: templates/account.php:169
1234
- msgid "Account Details"
1235
- msgstr "Kontodetaljer"
1236
-
1237
- #: templates/account.php:179
1238
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1239
- msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1240
-
1241
- #: templates/account.php:181
1242
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1243
- msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1244
-
1245
- #: templates/account.php:184
1246
- msgid "Delete Account"
1247
- msgstr "Slet konto"
1248
-
1249
- #: templates/account.php196, templates/account/partials/addon.php159,
1250
- #: templates/account/partials/deactivate-license-button.php:35
1251
- msgid "Deactivate License"
1252
- msgstr "Deaktiver licens"
1253
-
1254
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1255
- msgid "Are you sure you want to proceed?"
1256
- msgstr "Er du sikker på, du vil fortsætte?"
1257
-
1258
- #: templates/account.php219, templates/account/partials/addon.php:182
1259
- msgid "Cancel Subscription"
1260
- msgstr "Annuller abonnement"
1261
-
1262
- #: templates/account.php:247
1263
- msgctxt "as synchronize"
1264
- msgid "Sync"
1265
- msgstr "Synkroniser"
1266
-
1267
- #: templates/account.php261, templates/debug.php:487
1268
- msgid "Name"
1269
- msgstr "Navn"
1270
-
1271
- #: templates/account.php267, templates/debug.php:488
1272
- msgid "Email"
1273
- msgstr "E-mail"
1274
-
1275
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1276
- msgid "User ID"
1277
- msgstr "Bruger-ID"
1278
-
1279
- #: templates/account.php:282
1280
- msgid "Site ID"
1281
- msgstr "Websteds-ID"
1282
-
1283
- #: templates/account.php:285
1284
- msgid "No ID"
1285
- msgstr "Intet ID"
1286
-
1287
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1288
- #: templates/debug.php453, templates/debug.php490,
1289
- #: templates/account/partials/site.php:219
1290
- msgid "Public Key"
1291
- msgstr "Offentlig nøgle"
1292
-
1293
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1294
- #: templates/debug.php491, templates/account/partials/site.php:231
1295
- msgid "Secret Key"
1296
- msgstr "Privat nøgle"
1297
-
1298
- #: templates/account.php:299
1299
- msgctxt "as secret encryption key missing"
1300
- msgid "No Secret"
1301
- msgstr "Ingen privat nøgle"
1302
-
1303
- #: templates/account.php318, templates/account/partials/site.php112,
1304
- #: templates/account/partials/site.php:114
1305
- msgid "Trial"
1306
- msgstr "Prøveperiode"
1307
-
1308
- #: templates/account.php337, templates/debug.php531,
1309
- #: templates/account/partials/site.php:248
1310
- msgid "License Key"
1311
- msgstr "Licensnøgle"
1312
-
1313
- #: templates/account.php:367
1314
- msgid "not verified"
1315
- msgstr "ikke verificeret"
1316
-
1317
- #: templates/account.php376, templates/account/partials/addon.php:120
1318
- msgid "Expired"
1319
- msgstr "Udløbet"
1320
-
1321
- #: templates/account.php:428
1322
- msgid "Premium version"
1323
- msgstr "Premium version"
1324
-
1325
- #: templates/account.php:430
1326
- msgid "Free version"
1327
- msgstr "Gratis version"
1328
-
1329
- #: templates/account.php:442
1330
- msgid "Verify Email"
1331
- msgstr "Verificer e-mail"
1332
-
1333
- #: templates/account.php:453
1334
- msgid "Download %s Version"
1335
- msgstr "Download 1%s version"
1336
-
1337
- #: templates/account.php467, templates/account.php649,
1338
- #: templates/account/partials/site.php237,
1339
- #: templates/account/partials/site.php:255
1340
- msgctxt "verb"
1341
- msgid "Show"
1342
- msgstr "Vis"
1343
-
1344
- #: templates/account.php:481
1345
- msgid "What is your %s?"
1346
- msgstr "Angiv venligst %s?"
1347
-
1348
- #: templates/account.php489, templates/account/billing.php:27
1349
- msgctxt "verb"
1350
- msgid "Edit"
1351
- msgstr "Rediger"
1352
-
1353
- #: templates/account.php:502
1354
- msgid "Sites"
1355
- msgstr "Websteder"
1356
-
1357
- #: templates/account.php:513
1358
- msgid "Search by address"
1359
- msgstr "Søg efter adresse"
1360
-
1361
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1362
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1363
- #: templates/debug.php524, templates/debug.php597,
1364
- #: templates/account/payments.php35, templates/debug/logger.php:21
1365
- msgid "ID"
1366
- msgstr "ID"
1367
-
1368
- #: templates/account.php523, templates/debug.php:367
1369
- msgid "Address"
1370
- msgstr "Adresse"
1371
-
1372
- #: templates/account.php:524
1373
- msgid "License"
1374
- msgstr "Licens"
1375
-
1376
- #: templates/account.php:525
1377
- msgid "Plan"
1378
- msgstr "Plan"
1379
-
1380
- #: templates/account.php:573
1381
- msgctxt "as software license"
1382
- msgid "License"
1383
- msgstr "Licens"
1384
-
1385
- #: templates/account.php:643
1386
- msgctxt "verb"
1387
- msgid "Hide"
1388
- msgstr "Skjul"
1389
-
1390
- #: templates/account.php:686
1391
- msgid "Cancelling %s"
1392
- msgstr "Cancelling %s"
1393
-
1394
- #: templates/account.php686, templates/account.php703,
1395
- #: templates/forms/subscription-cancellation.php27,
1396
- #: templates/forms/deactivation/form.php:117
1397
- msgid "trial"
1398
- msgstr "trial"
1399
-
1400
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1401
- msgid "Cancelling %s..."
1402
- msgstr "Cancelling %s..."
1403
-
1404
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1405
- #: templates/forms/deactivation/form.php:118
1406
- msgid "subscription"
1407
- msgstr "subscription"
1408
-
1409
- #: templates/account.php:718
1410
- msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1411
- msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1412
-
1413
- #: templates/add-ons.php:36
1414
- msgid "Add Ons for %s"
1415
- msgstr "Tilføjelser til %s"
1416
-
1417
- #: templates/add-ons.php:44
1418
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
- msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1420
-
1421
- #: templates/add-ons.php:139
1422
- msgid "View details"
1423
- msgstr "Vis detaljer"
1424
-
1425
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1426
- #: templates/forms/resend-key.php:77
1427
- msgctxt "as close a window"
1428
- msgid "Dismiss"
1429
- msgstr "Fjern"
1430
-
1431
- #: templates/auto-installation.php:45
1432
- msgid "%s sec"
1433
- msgstr "1%s sek"
1434
-
1435
- #: templates/auto-installation.php:83
1436
- msgid "Automatic Installation"
1437
- msgstr "Automatisk installering"
1438
-
1439
- #: templates/auto-installation.php:93
1440
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1441
- msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1442
-
1443
- #: templates/auto-installation.php:104
1444
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1445
- msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1446
-
1447
- #: templates/auto-installation.php:109
1448
- msgid "Cancel Installation"
1449
- msgstr "Annuller installering"
1450
-
1451
- #: templates/checkout.php:172
1452
- msgid "Checkout"
1453
- msgstr "Udtjekning"
1454
-
1455
- #: templates/checkout.php:172
1456
- msgid "PCI compliant"
1457
- msgstr "PCI compliant"
1458
-
1459
- #. translators: %s: name (e.g. Hey John,)
1460
- #: templates/connect.php:112
1461
- msgctxt "greeting"
1462
- msgid "Hey %s,"
1463
- msgstr "Hey %s,"
1464
-
1465
- #: templates/connect.php:154
1466
- msgid "Allow & Continue"
1467
- msgstr "Tillad & Fortsæt"
1468
-
1469
- #: templates/connect.php:158
1470
- msgid "Re-send activation email"
1471
- msgstr "Gensend e-mail om aktivering"
1472
-
1473
- #: templates/connect.php:162
1474
- msgid "Thanks %s!"
1475
- msgstr "Tak %s!"
1476
-
1477
- #: templates/connect.php172, templates/forms/license-activation.php:43
1478
- msgid "Agree & Activate License"
1479
- msgstr "Accepter & aktiver licens"
1480
-
1481
- #: templates/connect.php:181
1482
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1483
- msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
1484
-
1485
- #: templates/connect.php:188
1486
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1487
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1488
-
1489
- #: templates/connect.php:189
1490
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1491
- msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1492
-
1493
- #: templates/connect.php:195
1494
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1495
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1496
-
1497
- #: templates/connect.php:196
1498
- msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1499
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1500
-
1501
- #: templates/connect.php:230
1502
- msgid "We're excited to introduce the Freemius network-level integration."
1503
- msgstr "We're excited to introduce the Freemius network-level integration."
1504
-
1505
- #: templates/connect.php:233
1506
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1507
- msgstr "During the update process we detected %d site(s) that are still pending license activation."
1508
-
1509
- #: templates/connect.php:235
1510
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1511
- msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1512
-
1513
- #: templates/connect.php:237
1514
- msgid "%s's paid features"
1515
- msgstr "%s's paid features"
1516
-
1517
- #: templates/connect.php:242
1518
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1519
- msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1520
-
1521
- #: templates/connect.php:244
1522
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
- msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1524
-
1525
- #: templates/connect.php253, templates/forms/license-activation.php:46
1526
- msgid "License key"
1527
- msgstr "Licensnøgle"
1528
-
1529
- #: templates/connect.php256, templates/forms/license-activation.php:19
1530
- msgid "Can't find your license key?"
1531
- msgstr "Kan du ikke finde din licensnøgle?"
1532
-
1533
- #: templates/connect.php315, templates/connect.php630,
1534
- #: templates/forms/deactivation/retry-skip.php:20
1535
- msgctxt "verb"
1536
- msgid "Skip"
1537
- msgstr "Spring over"
1538
-
1539
- #: templates/connect.php:318
1540
- msgid "Delegate to Site Admins"
1541
- msgstr "Delegate to Site Admins"
1542
-
1543
- #: templates/connect.php:318
1544
- msgid "If you click it, this decision will be delegated to the sites administrators."
1545
- msgstr "If you click it, this decision will be delegated to the sites administrators."
1546
-
1547
- #: templates/connect.php:346
1548
- msgid "Your Profile Overview"
1549
- msgstr "Overblik af din profil"
1550
-
1551
- #: templates/connect.php:347
1552
- msgid "Name and email address"
1553
- msgstr "Navn og e-mailadresse"
1554
-
1555
- #: templates/connect.php:352
1556
- msgid "Your Site Overview"
1557
- msgstr "Overblik af dit websted"
1558
-
1559
- #: templates/connect.php:353
1560
- msgid "Site URL, WP version, PHP info, plugins & themes"
1561
- msgstr "Websteds-URL, WP version, PHP info, plugins og temaer"
1562
-
1563
- #: templates/connect.php:358
1564
- msgid "Admin Notices"
1565
- msgstr "Admin-meddelelser"
1566
-
1567
- #: templates/connect.php359, templates/connect.php:375
1568
- msgid "Updates, announcements, marketing, no spam"
1569
- msgstr "Updates, announcements, marketing, no spam"
1570
-
1571
- #: templates/connect.php:364
1572
- msgid "Current %s Events"
1573
- msgstr "Current %s Events"
1574
-
1575
- #: templates/connect.php:365
1576
- msgid "Activation, deactivation and uninstall"
1577
- msgstr "Aktivering, deaktivering og afinstallering"
1578
-
1579
- #: templates/connect.php:374
1580
- msgid "Newsletter"
1581
- msgstr "Nyhedsbrev"
1582
-
1583
- #: templates/connect.php391, templates/forms/license-activation.php:38
1584
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1585
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1586
-
1587
- #: templates/connect.php:396
1588
- msgid "What permissions are being granted?"
1589
- msgstr "Hvilke tilladelser bliver givet?"
1590
-
1591
- #: templates/connect.php:417
1592
- msgid "Don't have a license key?"
1593
- msgstr "Har du ikke en licensnøgle?"
1594
-
1595
- #: templates/connect.php:418
1596
- msgid "Activate Free Version"
1597
- msgstr "Aktiver gratis version"
1598
-
1599
- #: templates/connect.php:420
1600
- msgid "Have a license key?"
1601
- msgstr "Har du en licensnøgle?"
1602
-
1603
- #: templates/connect.php:428
1604
- msgid "Privacy Policy"
1605
- msgstr "Privatlivspolitik"
1606
-
1607
- #: templates/connect.php:430
1608
- msgid "License Agreement"
1609
- msgstr "License Agreement"
1610
-
1611
- #: templates/connect.php:430
1612
- msgid "Terms of Service"
1613
- msgstr "Servicevilkår"
1614
-
1615
- #: templates/connect.php:766
1616
- msgctxt "as in the process of sending an email"
1617
- msgid "Sending email"
1618
- msgstr "Sender e-mail"
1619
-
1620
- #: templates/connect.php:767
1621
- msgctxt "as activating plugin"
1622
- msgid "Activating"
1623
- msgstr "Aktiverer"
1624
-
1625
- #: templates/contact.php:78
1626
- msgid "Contact"
1627
- msgstr "Kontakt"
1628
-
1629
- #: templates/debug.php:17
1630
- msgctxt "as turned off"
1631
- msgid "Off"
1632
- msgstr "Fra"
1633
-
1634
- #: templates/debug.php:18
1635
- msgctxt "as turned on"
1636
- msgid "On"
1637
- msgstr "Til"
1638
-
1639
- #: templates/debug.php:20
1640
- msgid "SDK"
1641
- msgstr "SDK"
1642
-
1643
- #: templates/debug.php:24
1644
- msgctxt "as code debugging"
1645
- msgid "Debugging"
1646
- msgstr "Fejlfinding"
1647
-
1648
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1649
- #: templates/debug.php:492
1650
- msgid "Actions"
1651
- msgstr "Handlinger"
1652
-
1653
- #: templates/debug.php:64
1654
- msgid "Are you sure you want to delete all Freemius data?"
1655
- msgstr "Er du sikker på, du vil slette al Freemius data?"
1656
-
1657
- #: templates/debug.php:64
1658
- msgid "Delete All Accounts"
1659
- msgstr "Slet alle konti"
1660
-
1661
- #: templates/debug.php:71
1662
- msgid "Clear API Cache"
1663
- msgstr "Ryd API-cache"
1664
-
1665
- #: templates/debug.php:79
1666
- msgid "Clear Updates Transients"
1667
- msgstr "Clear Updates Transients"
1668
-
1669
- #: templates/debug.php:86
1670
- msgid "Sync Data From Server"
1671
- msgstr "Synkroniser data fra server"
1672
-
1673
- #: templates/debug.php:95
1674
- msgid "Migrate Options to Network"
1675
- msgstr "Migrate Options to Network"
1676
-
1677
- #: templates/debug.php:100
1678
- msgid "Load DB Option"
1679
- msgstr "Hent DB-indstilling"
1680
-
1681
- #: templates/debug.php:103
1682
- msgid "Set DB Option"
1683
- msgstr "Sæt DB-indstilling"
1684
-
1685
- #: templates/debug.php:180
1686
- msgid "Key"
1687
- msgstr "Nøgle"
1688
-
1689
- #: templates/debug.php:181
1690
- msgid "Value"
1691
- msgstr "Værdi"
1692
-
1693
- #: templates/debug.php:197
1694
- msgctxt "as software development kit versions"
1695
- msgid "SDK Versions"
1696
- msgstr "SDK-versioner"
1697
-
1698
- #: templates/debug.php:202
1699
- msgid "SDK Path"
1700
- msgstr "SDK-sti"
1701
-
1702
- #: templates/debug.php203, templates/debug.php:242
1703
- msgid "Module Path"
1704
- msgstr "Modul-sti"
1705
-
1706
- #: templates/debug.php:204
1707
- msgid "Is Active"
1708
- msgstr "Er aktiv"
1709
-
1710
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1711
- msgid "Plugins"
1712
- msgstr "Plugins"
1713
-
1714
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1715
- msgid "Themes"
1716
- msgstr "Temaer"
1717
-
1718
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1719
- #: templates/debug/scheduled-crons.php:80
1720
- msgid "Slug"
1721
- msgstr "Kortnavn"
1722
-
1723
- #: templates/debug.php239, templates/debug.php:450
1724
- msgid "Title"
1725
- msgstr "Titel"
1726
-
1727
- #: templates/debug.php:240
1728
- msgctxt "as application program interface"
1729
- msgid "API"
1730
- msgstr "API"
1731
-
1732
- #: templates/debug.php:241
1733
- msgid "Freemius State"
1734
- msgstr "Freemius tilstand"
1735
-
1736
- #: templates/debug.php:245
1737
- msgid "Network Blog"
1738
- msgstr "Netværksblog"
1739
-
1740
- #: templates/debug.php:246
1741
- msgid "Network User"
1742
- msgstr "Netværksbruger"
1743
-
1744
- #: templates/debug.php:283
1745
- msgctxt "as connection was successful"
1746
- msgid "Connected"
1747
- msgstr "Forbundet"
1748
-
1749
- #: templates/debug.php:284
1750
- msgctxt "as connection blocked"
1751
- msgid "Blocked"
1752
- msgstr "Blokeret"
1753
-
1754
- #: templates/debug.php:320
1755
- msgid "Simulate Trial Promotion"
1756
- msgstr "Simulate Trial Promotion"
1757
-
1758
- #: templates/debug.php:332
1759
- msgid "Simulate Network Upgrade"
1760
- msgstr "Simuler netværksopgradering"
1761
-
1762
- #: templates/debug.php:358
1763
- msgid "%s Installs"
1764
- msgstr "%s installeringer"
1765
-
1766
- #: templates/debug.php:360
1767
- msgctxt "like websites"
1768
- msgid "Sites"
1769
- msgstr "Websteder"
1770
-
1771
- #: templates/debug.php366, templates/account/partials/site.php:148
1772
- msgid "Blog ID"
1773
- msgstr "Blog-ID"
1774
-
1775
- #: templates/debug.php431, templates/debug.php509,
1776
- #: templates/account/partials/addon.php:339
1777
- msgctxt "verb"
1778
- msgid "Delete"
1779
- msgstr "Slet"
1780
-
1781
- #: templates/debug.php:445
1782
- msgid "Add Ons of module %s"
1783
- msgstr "Tilføjelser til modul %s"
1784
-
1785
- #: templates/debug.php:482
1786
- msgid "Users"
1787
- msgstr "Brugere"
1788
-
1789
- #: templates/debug.php:489
1790
- msgid "Verified"
1791
- msgstr "Verificeret"
1792
-
1793
- #: templates/debug.php:520
1794
- msgid "%s Licenses"
1795
- msgstr "1%s licenser"
1796
-
1797
- #: templates/debug.php:525
1798
- msgid "Plugin ID"
1799
- msgstr "Plugin-ID"
1800
-
1801
- #: templates/debug.php:527
1802
- msgid "Plan ID"
1803
- msgstr "Plan-ID"
1804
-
1805
- #: templates/debug.php:528
1806
- msgid "Quota"
1807
- msgstr "Kvote"
1808
-
1809
- #: templates/debug.php:529
1810
- msgid "Activated"
1811
- msgstr "Aktiveret"
1812
-
1813
- #: templates/debug.php:530
1814
- msgid "Blocking"
1815
- msgstr "Blokerer"
1816
-
1817
- #: templates/debug.php:532
1818
- msgctxt "as expiration date"
1819
- msgid "Expiration"
1820
- msgstr "Udløber"
1821
-
1822
- #: templates/debug.php:555
1823
- msgid "Debug Log"
1824
- msgstr "Fejlfindingslog"
1825
-
1826
- #: templates/debug.php:559
1827
- msgid "All Types"
1828
- msgstr "Alle typer"
1829
-
1830
- #: templates/debug.php:566
1831
- msgid "All Requests"
1832
- msgstr "Alle forespørgsler"
1833
-
1834
- #: templates/debug.php571, templates/debug.php600,
1835
- #: templates/debug/logger.php:25
1836
- msgid "File"
1837
- msgstr "Fil"
1838
-
1839
- #: templates/debug.php572, templates/debug.php598,
1840
- #: templates/debug/logger.php:23
1841
- msgid "Function"
1842
- msgstr "Funktion"
1843
-
1844
- #: templates/debug.php:573
1845
- msgid "Process ID"
1846
- msgstr "Proces-ID"
1847
-
1848
- #: templates/debug.php:574
1849
- msgid "Logger"
1850
- msgstr "Logger"
1851
-
1852
- #: templates/debug.php575, templates/debug.php599,
1853
- #: templates/debug/logger.php:24
1854
- msgid "Message"
1855
- msgstr "Besked"
1856
-
1857
- #: templates/debug.php:577
1858
- msgid "Filter"
1859
- msgstr "Filter"
1860
-
1861
- #: templates/debug.php:585
1862
- msgid "Download"
1863
- msgstr "Download"
1864
-
1865
- #: templates/debug.php596, templates/debug/logger.php:22
1866
- msgid "Type"
1867
- msgstr "Type"
1868
-
1869
- #: templates/debug.php601, templates/debug/logger.php:26
1870
- msgid "Timestamp"
1871
- msgstr "Tidsstempel"
1872
-
1873
- #: templates/secure-https-header.php:28
1874
- msgid "Secure HTTPS %s page, running from an external domain"
1875
- msgstr "Secure HTTPS %s page, running from an external domain"
1876
-
1877
- #: includes/customizer/class-fs-customizer-support-section.php55,
1878
- #: templates/plugin-info/features.php:43
1879
- msgid "Support"
1880
- msgstr "Support"
1881
-
1882
- #: includes/debug/class-fs-debug-bar-panel.php48,
1883
- #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1884
- msgctxt "milliseconds"
1885
- msgid "ms"
1886
- msgstr "ms"
1887
-
1888
- #: includes/debug/debug-bar-start.php:41
1889
- msgid "Freemius API"
1890
- msgstr "Freemius API"
1891
-
1892
- #: includes/debug/debug-bar-start.php:42
1893
- msgid "Requests"
1894
- msgstr "Requests"
1895
-
1896
- #: templates/account/billing.php:28
1897
- msgctxt "verb"
1898
- msgid "Update"
1899
- msgstr "Opdater"
1900
-
1901
- #: templates/account/billing.php:39
1902
- msgid "Billing"
1903
- msgstr "Betaling"
1904
-
1905
- #: templates/account/billing.php44, templates/account/billing.php:44
1906
- msgid "Business name"
1907
- msgstr "Firmanavn"
1908
-
1909
- #: templates/account/billing.php45, templates/account/billing.php:45
1910
- msgid "Tax / VAT ID"
1911
- msgstr "Moms / VAT ID"
1912
-
1913
- #: templates/account/billing.php48, templates/account/billing.php48,
1914
- #: templates/account/billing.php49, templates/account/billing.php:49
1915
- msgid "Address Line %d"
1916
- msgstr "Adresselinje %d"
1917
-
1918
- #: templates/account/billing.php52, templates/account/billing.php:52
1919
- msgid "City"
1920
- msgstr "By"
1921
-
1922
- #: templates/account/billing.php52, templates/account/billing.php:52
1923
- msgid "Town"
1924
- msgstr "By"
1925
-
1926
- #: templates/account/billing.php53, templates/account/billing.php:53
1927
- msgid "ZIP / Postal Code"
1928
- msgstr "ZIP / Postnummer"
1929
-
1930
- #: templates/account/billing.php:308
1931
- msgid "Country"
1932
- msgstr "Land"
1933
-
1934
- #: templates/account/billing.php:310
1935
- msgid "Select Country"
1936
- msgstr "Vælg land"
1937
-
1938
- #: templates/account/billing.php317, templates/account/billing.php:318
1939
- msgid "State"
1940
- msgstr "Stat"
1941
-
1942
- #: templates/account/billing.php317, templates/account/billing.php:318
1943
- msgid "Province"
1944
- msgstr "Provins"
1945
-
1946
- #: templates/account/payments.php:29
1947
- msgid "Payments"
1948
- msgstr "Betalinger"
1949
-
1950
- #: templates/account/payments.php:36
1951
- msgid "Date"
1952
- msgstr "Dato"
1953
-
1954
- #: templates/account/payments.php:37
1955
- msgid "Amount"
1956
- msgstr "Beløb"
1957
-
1958
- #: templates/account/payments.php38, templates/account/payments.php:50
1959
- msgid "Invoice"
1960
- msgstr "Faktura"
1961
-
1962
- #: templates/debug/api-calls.php:56
1963
- msgid "API"
1964
- msgstr "API"
1965
-
1966
- #: templates/debug/api-calls.php:68
1967
- msgid "Method"
1968
- msgstr "Metode"
1969
-
1970
- #: templates/debug/api-calls.php:69
1971
- msgid "Code"
1972
- msgstr "Kode"
1973
-
1974
- #: templates/debug/api-calls.php:70
1975
- msgid "Length"
1976
- msgstr "Længde"
1977
-
1978
- #: templates/debug/api-calls.php:71
1979
- msgctxt "as file/folder path"
1980
- msgid "Path"
1981
- msgstr "Sti"
1982
-
1983
- #: templates/debug/api-calls.php:73
1984
- msgid "Body"
1985
- msgstr "Body"
1986
-
1987
- #: templates/debug/api-calls.php:75
1988
- msgid "Result"
1989
- msgstr "Resultat"
1990
-
1991
- #: templates/debug/api-calls.php:76
1992
- msgid "Start"
1993
- msgstr "Start"
1994
-
1995
- #: templates/debug/api-calls.php:77
1996
- msgid "End"
1997
- msgstr "Slut"
1998
-
1999
- #: templates/debug/logger.php:15
2000
- msgid "Log"
2001
- msgstr "Log"
2002
-
2003
- #. translators: %s: time period (e.g. In "2 hours")
2004
- #: templates/debug/plugins-themes-sync.php18,
2005
- #: templates/debug/scheduled-crons.php:91
2006
- msgid "In %s"
2007
- msgstr "Om %s"
2008
-
2009
- #. translators: %s: time period (e.g. "2 hours" ago)
2010
- #: templates/debug/plugins-themes-sync.php20,
2011
- #: templates/debug/scheduled-crons.php:93
2012
- msgid "%s ago"
2013
- msgstr "%s siden"
2014
-
2015
- #: templates/debug/plugins-themes-sync.php21,
2016
- #: templates/debug/scheduled-crons.php:74
2017
- msgctxt "seconds"
2018
- msgid "sec"
2019
- msgstr "sek"
2020
-
2021
- #: templates/debug/plugins-themes-sync.php:23
2022
- msgid "Plugins & Themes Sync"
2023
- msgstr "Synkronisering af plugins og temaer"
2024
-
2025
- #: templates/debug/plugins-themes-sync.php:28
2026
- msgid "Total"
2027
- msgstr "Total"
2028
-
2029
- #: templates/debug/plugins-themes-sync.php29,
2030
- #: templates/debug/scheduled-crons.php:84
2031
- msgid "Last"
2032
- msgstr "Sidste"
2033
-
2034
- #: templates/debug/scheduled-crons.php:76
2035
- msgid "Scheduled Crons"
2036
- msgstr "Planlagte cron jobs"
2037
-
2038
- #: templates/debug/scheduled-crons.php:81
2039
- msgid "Module"
2040
- msgstr "Modul"
2041
-
2042
- #: templates/debug/scheduled-crons.php:82
2043
- msgid "Module Type"
2044
- msgstr "Modultype"
2045
-
2046
- #: templates/debug/scheduled-crons.php:83
2047
- msgid "Cron Type"
2048
- msgstr "Cron Type"
2049
-
2050
- #: templates/debug/scheduled-crons.php:85
2051
- msgid "Next"
2052
- msgstr "Næste"
2053
-
2054
- #: templates/forms/affiliation.php:82
2055
- msgid "Non-expiring"
2056
- msgstr "Udløber ikke"
2057
-
2058
- #: templates/forms/affiliation.php:85
2059
- msgid "Apply to become an affiliate"
2060
- msgstr "Apply to become an affiliate"
2061
-
2062
- #: templates/forms/affiliation.php:104
2063
- msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2064
- msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2065
-
2066
- #: templates/forms/affiliation.php:119
2067
- msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2068
- msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2069
-
2070
- #: templates/forms/affiliation.php:122
2071
- msgid "Your affiliation account was temporarily suspended."
2072
- msgstr "Your affiliation account was temporarily suspended."
2073
-
2074
- #: templates/forms/affiliation.php:125
2075
- msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2076
- msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2077
-
2078
- #: templates/forms/affiliation.php:128
2079
- msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2080
- msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2081
-
2082
- #: templates/forms/affiliation.php:141
2083
- msgid "Like the %s? Become our ambassador and earn cash ;-)"
2084
- msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2085
-
2086
- #: templates/forms/affiliation.php:142
2087
- msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2088
- msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2089
-
2090
- #: templates/forms/affiliation.php:145
2091
- msgid "Program Summary"
2092
- msgstr "Programoversigt"
2093
-
2094
- #: templates/forms/affiliation.php:147
2095
- msgid "%s commission when a customer purchases a new license."
2096
- msgstr "%s commission when a customer purchases a new license."
2097
-
2098
- #: templates/forms/affiliation.php:149
2099
- msgid "Get commission for automated subscription renewals."
2100
- msgstr "Get commission for automated subscription renewals."
2101
-
2102
- #: templates/forms/affiliation.php:152
2103
- msgid "%s tracking cookie after the first visit to maximize earnings potential."
2104
- msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2105
-
2106
- #: templates/forms/affiliation.php:155
2107
- msgid "Unlimited commissions."
2108
- msgstr "Unlimited commissions."
2109
-
2110
- #: templates/forms/affiliation.php:157
2111
- msgid "%s minimum payout amount."
2112
- msgstr "%s minimum payout amount."
2113
-
2114
- #: templates/forms/affiliation.php:158
2115
- msgid "Payouts are in USD and processed monthly via PayPal."
2116
- msgstr "Payouts are in USD and processed monthly via PayPal."
2117
-
2118
- #: templates/forms/affiliation.php:159
2119
- msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2120
- msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2121
-
2122
- #: templates/forms/affiliation.php:162
2123
- msgid "Affiliate"
2124
- msgstr "Affiliate"
2125
-
2126
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2127
- msgid "Email address"
2128
- msgstr "E-mailadresse"
2129
-
2130
- #: templates/forms/affiliation.php:169
2131
- msgid "Full name"
2132
- msgstr "Fulde navn"
2133
-
2134
- #: templates/forms/affiliation.php:173
2135
- msgid "PayPal account email address"
2136
- msgstr "E-mailadresse til PayPal-konto"
2137
-
2138
- #: templates/forms/affiliation.php:177
2139
- msgid "Where are you going to promote the %s?"
2140
- msgstr "Hvor vil du promovere %s?"
2141
-
2142
- #: templates/forms/affiliation.php:179
2143
- msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2144
- msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2145
-
2146
- #: templates/forms/affiliation.php:181
2147
- msgid "Add another domain"
2148
- msgstr "Tilføj andet domæne"
2149
-
2150
- #: templates/forms/affiliation.php:185
2151
- msgid "Extra Domains"
2152
- msgstr "Ekstra domæner"
2153
-
2154
- #: templates/forms/affiliation.php:186
2155
- msgid "Extra domains where you will be marketing the product from."
2156
- msgstr "Andre domæner du vil markedsføre produktet fra."
2157
-
2158
- #: templates/forms/affiliation.php:196
2159
- msgid "Promotion methods"
2160
- msgstr "Promoveringsmetoder"
2161
-
2162
- #: templates/forms/affiliation.php:199
2163
- msgid "Social media (Facebook, Twitter, etc.)"
2164
- msgstr "Sociale medier (Facebook, Twitter osv.)"
2165
-
2166
- #: templates/forms/affiliation.php:203
2167
- msgid "Mobile apps"
2168
- msgstr "Mobil-apps"
2169
-
2170
- #: templates/forms/affiliation.php:207
2171
- msgid "Website, email, and social media statistics (optional)"
2172
- msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2173
-
2174
- #: templates/forms/affiliation.php:210
2175
- msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2176
- msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2177
-
2178
- #: templates/forms/affiliation.php:214
2179
- msgid "How will you promote us?"
2180
- msgstr "Hvordan vil du promovere os?"
2181
-
2182
- #: templates/forms/affiliation.php:217
2183
- msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2184
- msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2185
-
2186
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2187
- msgid "Cancel"
2188
- msgstr "Annuller"
2189
-
2190
- #: templates/forms/affiliation.php:225
2191
- msgid "Become an affiliate"
2192
- msgstr "Bliv en affiliate"
2193
-
2194
- #: templates/forms/license-activation.php:20
2195
- msgid "Please enter the license key that you received in the email right after the purchase:"
2196
- msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:"
2197
-
2198
- #: templates/forms/license-activation.php:25
2199
- msgid "Update License"
2200
- msgstr "Opdater licens"
2201
-
2202
- #: templates/forms/optout.php:30
2203
- msgctxt "verb"
2204
- msgid "Opt Out"
2205
- msgstr "Frameld"
2206
-
2207
- #: templates/forms/optout.php:31
2208
- msgctxt "verb"
2209
- msgid "Opt In"
2210
- msgstr "Tilmeld"
2211
-
2212
- #: templates/forms/optout.php:33
2213
- msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2214
- msgstr "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2215
-
2216
- #: templates/forms/optout.php:35
2217
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2218
- msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
2219
-
2220
- #: templates/forms/premium-versions-upgrade-handler.php:40
2221
- msgid "There is a new version of %s available."
2222
- msgstr "En ny version af %s er tilgængelig."
2223
-
2224
- #: templates/forms/premium-versions-upgrade-handler.php:41
2225
- msgid " %s to access version %s security & feature updates, and support."
2226
- msgstr " %s to access version %s security & feature updates, and support."
2227
-
2228
- #: templates/forms/premium-versions-upgrade-handler.php:54
2229
- msgid "New Version Available"
2230
- msgstr "Ny version tilgængelig"
2231
-
2232
- #: templates/forms/premium-versions-upgrade-handler.php:75
2233
- msgctxt "close a window"
2234
- msgid "Dismiss"
2235
- msgstr "Fjern"
2236
-
2237
- #: templates/forms/resend-key.php:21
2238
- msgid "Send License Key"
2239
- msgstr "Send licensnøgle"
2240
-
2241
- #: templates/forms/resend-key.php:57
2242
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2243
- msgstr "Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi vil gensende licensnøglen til dig."
2244
-
2245
- #: templates/forms/subscription-cancellation.php:37
2246
- msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
- msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2248
-
2249
- #: templates/forms/subscription-cancellation.php:47
2250
- msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
- msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2252
-
2253
- #: templates/forms/subscription-cancellation.php:52
2254
- msgid "license"
2255
- msgstr "license"
2256
-
2257
- #: templates/forms/subscription-cancellation.php:57
2258
- msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
- msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2260
-
2261
- #: templates/forms/subscription-cancellation.php:68
2262
- msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
- msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2264
-
2265
- #: templates/forms/subscription-cancellation.php:103
2266
- msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
- msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2268
-
2269
- #: templates/forms/subscription-cancellation.php:136
2270
- msgid "Cancel %s?"
2271
- msgstr "Cancel %s?"
2272
-
2273
- #: templates/forms/subscription-cancellation.php:143
2274
- msgid "Proceed"
2275
- msgstr "Proceed"
2276
-
2277
- #: templates/forms/subscription-cancellation.php191,
2278
- #: templates/forms/deactivation/form.php:150
2279
- msgid "Cancel %s & Proceed"
2280
- msgstr "Cancel %s & Proceed"
2281
-
2282
- #: templates/forms/trial-start.php:22
2283
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2284
- msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
2285
-
2286
- #: templates/forms/trial-start.php:28
2287
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2288
- msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2289
-
2290
- #: templates/js/style-premium-theme.php:37
2291
- msgid "Premium"
2292
- msgstr "Premium"
2293
-
2294
- #: templates/partials/network-activation.php:23
2295
- msgid "Activate license on all sites in the network."
2296
- msgstr "Aktiver licens på alle websteder i netværket."
2297
-
2298
- #: templates/partials/network-activation.php:24
2299
- msgid "Apply on all sites in the network."
2300
- msgstr "Anvend på alle websteder i netværket."
2301
-
2302
- #: templates/partials/network-activation.php:27
2303
- msgid "Activate license on all pending sites."
2304
- msgstr "Akiver licens på alle afventende websteder."
2305
-
2306
- #: templates/partials/network-activation.php:28
2307
- msgid "Apply on all pending sites."
2308
- msgstr "Anvend på alle afventende websteder."
2309
-
2310
- #: templates/partials/network-activation.php36,
2311
- #: templates/partials/network-activation.php:68
2312
- msgid "allow"
2313
- msgstr "tillad"
2314
-
2315
- #: templates/partials/network-activation.php38,
2316
- #: templates/partials/network-activation.php:70
2317
- msgid "delegate"
2318
- msgstr "delegér"
2319
-
2320
- #: templates/partials/network-activation.php41,
2321
- #: templates/partials/network-activation.php:73
2322
- msgid "skip"
2323
- msgstr "spring over"
2324
-
2325
- #: templates/plugin-info/description.php72,
2326
- #: templates/plugin-info/screenshots.php:31
2327
- msgid "Click to view full-size screenshot %d"
2328
- msgstr "Klik for at vise skærmbillede %d i fuld skærm"
2329
-
2330
- #: templates/plugin-info/features.php:56
2331
- msgid "Unlimited Updates"
2332
- msgstr "Ubegrænsede opdateringer"
2333
-
2334
- #: templates/account/partials/activate-license-button.php:46
2335
- msgid "Localhost"
2336
- msgstr "Localhost"
2337
-
2338
- #: templates/account/partials/activate-license-button.php:50
2339
- msgctxt "as 5 licenses left"
2340
- msgid "%s left"
2341
- msgstr "%s tilbage"
2342
-
2343
- #: templates/account/partials/activate-license-button.php:51
2344
- msgid "Last license"
2345
- msgstr "Seneste license"
2346
-
2347
- #: templates/account/partials/addon.php:115
2348
- msgid "Cancelled"
2349
- msgstr "Annulleret"
2350
-
2351
- #: templates/account/partials/addon.php:125
2352
- msgid "No expiration"
2353
- msgstr "Udløber ikke"
2354
-
2355
- #: templates/account/partials/addon.php264,
2356
- #: templates/account/partials/addon.php:317
2357
- msgid "Activate this add-on"
2358
- msgstr "Aktiver denne tilføjelse"
2359
-
2360
- #: templates/account/partials/site.php:181
2361
- msgid "Owner Name"
2362
- msgstr "Ejer-navn"
2363
-
2364
- #: templates/account/partials/site.php:193
2365
- msgid "Owner Email"
2366
- msgstr "E-mailadresse for ejer"
2367
-
2368
- #: templates/account/partials/site.php:205
2369
- msgid "Owner ID"
2370
- msgstr "Ejer-ID"
2371
-
2372
- #: templates/account/partials/site.php:270
2373
- msgid "Subscription"
2374
- msgstr "Abonnement"
2375
-
2376
- #: templates/forms/deactivation/contact.php:19
2377
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2378
- msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
2379
-
2380
- #: templates/forms/deactivation/contact.php:22
2381
- msgid "Contact Support"
2382
- msgstr "Kontakt support"
2383
-
2384
- #: templates/forms/deactivation/form.php:59
2385
- msgid "Anonymous feedback"
2386
- msgstr "Anonym feedback"
2387
-
2388
- #: templates/forms/deactivation/form.php:66
2389
- msgid "Deactivate"
2390
- msgstr "Deaktiver"
2391
-
2392
- #: templates/forms/deactivation/form.php:68
2393
- msgid "Activate %s"
2394
- msgstr "Aktiver %s"
2395
-
2396
- #: templates/forms/deactivation/form.php:80
2397
- msgid "Quick Feedback"
2398
- msgstr "Quick Feedback"
2399
-
2400
- #: templates/forms/deactivation/form.php:84
2401
- msgid "If you have a moment, please let us know why you are %s"
2402
- msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
2403
-
2404
- #: templates/forms/deactivation/form.php:84
2405
- msgid "deactivating"
2406
- msgstr "deaktiverer"
2407
-
2408
- #: templates/forms/deactivation/form.php:84
2409
- msgid "switching"
2410
- msgstr "skifter"
2411
-
2412
- #: templates/forms/deactivation/form.php:332
2413
- msgid "Submit & %s"
2414
- msgstr "Send & %s"
2415
-
2416
- #: templates/forms/deactivation/form.php:353
2417
- msgid "Kindly tell us the reason so we can improve."
2418
- msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2419
-
2420
- #: templates/forms/deactivation/form.php:478
2421
- msgid "Yes - %s"
2422
- msgstr "Ja - %s"
2423
-
2424
- #: templates/forms/deactivation/form.php:485
2425
- msgid "Skip & %s"
2426
- msgstr "Spring over & %s"
2427
-
2428
- #: templates/forms/deactivation/retry-skip.php:21
2429
- msgid "Click here to use the plugin anonymously"
2430
- msgstr "Klik her for at benytte pluginnet anonymt"
2431
-
2432
- #: templates/forms/deactivation/retry-skip.php:23
2433
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2434
- msgstr "Du har måske overset det, men du behøver ikke at dele data og kan blot %s tilmeldingen."
1
+ # 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
+ # Lars Koudal, 2018
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WordPress SDK\n"
9
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
+ "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2018-11-25 07:22+0000\n"
12
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
+ "Language: da_DK\n"
14
+ "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "MIME-Version: 1.0\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+
25
+ #: includes/class-freemius.php:1602
26
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
+
29
+ #: includes/class-freemius.php:1604
30
+ msgid "Error"
31
+ msgstr "Fejl"
32
+
33
+ #: includes/class-freemius.php:1925
34
+ msgid "I found a better %s"
35
+ msgstr "Jeg fandt et bedre %s"
36
+
37
+ #: includes/class-freemius.php:1927
38
+ msgid "What's the %s's name?"
39
+ msgstr "Hvad er navnet på %s?"
40
+
41
+ #: includes/class-freemius.php:1933
42
+ msgid "It's a temporary %s. I'm just debugging an issue."
43
+ msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
44
+
45
+ #: includes/class-freemius.php:1935
46
+ msgid "Deactivation"
47
+ msgstr "Deaktivering"
48
+
49
+ #: includes/class-freemius.php:1936
50
+ msgid "Theme Switch"
51
+ msgstr "Temaskift"
52
+
53
+ #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
+ msgid "Other"
55
+ msgstr "Andet"
56
+
57
+ #: includes/class-freemius.php:1953
58
+ msgid "I no longer need the %s"
59
+ msgstr "Jeg har ikke længere brug for %s"
60
+
61
+ #: includes/class-freemius.php:1960
62
+ msgid "I only needed the %s for a short period"
63
+ msgstr "Jeg behøvede kun %s i en kort periode"
64
+
65
+ #: includes/class-freemius.php:1966
66
+ msgid "The %s broke my site"
67
+ msgstr "%s ødelagde min webside"
68
+
69
+ #: includes/class-freemius.php:1973
70
+ msgid "The %s suddenly stopped working"
71
+ msgstr "%s stoppede pludseligt med at virke"
72
+
73
+ #: includes/class-freemius.php:1983
74
+ msgid "I can't pay for it anymore"
75
+ msgstr "Jeg kan ikke længere betale for det"
76
+
77
+ #: includes/class-freemius.php:1985
78
+ msgid "What price would you feel comfortable paying?"
79
+ msgstr "Hvilken pris ville du foretrække at betale?"
80
+
81
+ #: includes/class-freemius.php:1991
82
+ msgid "I don't like to share my information with you"
83
+ msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
84
+
85
+ #: includes/class-freemius.php:2012
86
+ msgid "The %s didn't work"
87
+ msgstr "%s virkede ikke"
88
+
89
+ #: includes/class-freemius.php:2022
90
+ msgid "I couldn't understand how to make it work"
91
+ msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
92
+
93
+ #: includes/class-freemius.php:2030
94
+ msgid "The %s is great, but I need specific feature that you don't support"
95
+ msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
96
+
97
+ #: includes/class-freemius.php:2032
98
+ msgid "What feature?"
99
+ msgstr "Hvilken feature?"
100
+
101
+ #: includes/class-freemius.php:2036
102
+ msgid "The %s is not working"
103
+ msgstr "%s virker ikke"
104
+
105
+ #: includes/class-freemius.php:2038
106
+ msgid "Kindly share what didn't work so we can fix it for future users..."
107
+ msgstr "Kindly share what didn't work so we can fix it for future users..."
108
+
109
+ #: includes/class-freemius.php:2042
110
+ msgid "It's not what I was looking for"
111
+ msgstr "Det er ikke, hvad jeg søgte"
112
+
113
+ #: includes/class-freemius.php:2044
114
+ msgid "What you've been looking for?"
115
+ msgstr "Hvad har du ledt efter?"
116
+
117
+ #: includes/class-freemius.php:2048
118
+ msgid "The %s didn't work as expected"
119
+ msgstr "%s virkede ikke som forventet"
120
+
121
+ #: includes/class-freemius.php:2050
122
+ msgid "What did you expect?"
123
+ msgstr "Hvad forventede du?"
124
+
125
+ #: includes/class-freemius.php2853, templates/debug.php:20
126
+ msgid "Freemius Debug"
127
+ msgstr "Freemius Debug"
128
+
129
+ #: includes/class-freemius.php:3581
130
+ msgid "I don't know what is cURL or how to install it, help me!"
131
+ msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
132
+
133
+ #: includes/class-freemius.php:3583
134
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
+ msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
136
+
137
+ #: includes/class-freemius.php:3590
138
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
+
141
+ #: includes/class-freemius.php:3695
142
+ msgid "Yes - do your thing"
143
+ msgstr "Ja - fortsæt bare"
144
+
145
+ #: includes/class-freemius.php:3700
146
+ msgid "No - just deactivate"
147
+ msgstr "Nej - bare deaktiver"
148
+
149
+ #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
+ #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
+ #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
+ #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
+ #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
+ #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
+ #: includes/class-freemius.php18705, templates/add-ons.php:43
156
+ msgctxt "exclamation"
157
+ msgid "Oops"
158
+ msgstr "Ups"
159
+
160
+ #: includes/class-freemius.php:3814
161
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
+ msgstr "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed."
163
+
164
+ #: includes/class-freemius.php:4250
165
+ msgctxt "addonX cannot run without pluginY"
166
+ msgid "%s cannot run without %s."
167
+ msgstr "%s virker ikke uden %s."
168
+
169
+ #: includes/class-freemius.php:4251
170
+ msgctxt "addonX cannot run..."
171
+ msgid "%s cannot run without the plugin."
172
+ msgstr "%s virker ikke uden pluginnet."
173
+
174
+ #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
+ #: includes/class-freemius.php:17659
176
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
177
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
+
179
+ #: includes/class-freemius.php:5006
180
+ msgid "Premium %s version was successfully activated."
181
+ msgstr "Premium-versionen af %s blev aktiveret."
182
+
183
+ #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
+ msgctxt ""
185
+ msgid "W00t"
186
+ msgstr "W00t"
187
+
188
+ #: includes/class-freemius.php:5033
189
+ msgid "You have a %s license."
190
+ msgstr "Du har en %s licens."
191
+
192
+ #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
+ #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
+ #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
+ #: includes/class-freemius.php:17413
196
+ msgctxt "interjection expressing joy or exuberance"
197
+ msgid "Yee-haw"
198
+ msgstr "Yee-haw"
199
+
200
+ #: includes/class-freemius.php:5301
201
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
+ msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
+
204
+ #: includes/class-freemius.php:5305
205
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
+
208
+ #: includes/class-freemius.php5314, templates/add-ons.php103,
209
+ #: templates/account/partials/addon.php:288
210
+ msgid "More information about %s"
211
+ msgstr "Mere information om %s"
212
+
213
+ #: includes/class-freemius.php:5315
214
+ msgid "Purchase License"
215
+ msgstr "Køb licens"
216
+
217
+ #: includes/class-freemius.php6230, templates/connect.php:163
218
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
+ msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
+
221
+ #: includes/class-freemius.php:6234
222
+ msgid "start the trial"
223
+ msgstr "start prøveperioden"
224
+
225
+ #: includes/class-freemius.php6235, templates/connect.php:167
226
+ msgid "complete the install"
227
+ msgstr "færdiggør installeringen"
228
+
229
+ #: includes/class-freemius.php:6348
230
+ msgid "You are just one step away - %s"
231
+ msgstr "Du mangler kun ét skridt - %s"
232
+
233
+ #: includes/class-freemius.php:6351
234
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
+ msgid "Complete \"%s\" Activation Now"
236
+ msgstr "Færdiggør aktivering af \"%s\" nu"
237
+
238
+ #: includes/class-freemius.php:6429
239
+ msgid "We made a few tweaks to the %s, %s"
240
+ msgstr "Vi har foretaget nogle rettelser til %s, %s"
241
+
242
+ #: includes/class-freemius.php:6433
243
+ msgid "Opt in to make \"%s\" better!"
244
+ msgstr "Opt in to make \"%s\" better!"
245
+
246
+ #: includes/class-freemius.php:6861
247
+ msgid "The upgrade of %s was successfully completed."
248
+ msgstr "Opgraderingen af %s blev fuldendt."
249
+
250
+ #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
+ #: includes/class-fs-plugin-updater.php1077,
252
+ #: includes/class-fs-plugin-updater.php1084,
253
+ #: templates/auto-installation.php:32
254
+ msgid "Add-On"
255
+ msgstr "Tilføjelse"
256
+
257
+ #: includes/class-freemius.php8707, templates/debug.php359,
258
+ #: templates/debug.php:520
259
+ msgid "Plugin"
260
+ msgstr "Plugin"
261
+
262
+ #: includes/class-freemius.php8708, templates/debug.php359,
263
+ #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
+ msgid "Theme"
265
+ msgstr "Tema"
266
+
267
+ #: includes/class-freemius.php:11183
268
+ msgid "Invalid site details collection."
269
+ msgstr "Invalid site details collection."
270
+
271
+ #: includes/class-freemius.php:11303
272
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
+ msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
274
+
275
+ #: includes/class-freemius.php:11305
276
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
+ msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
278
+
279
+ #: includes/class-freemius.php:11541
280
+ msgid "Account is pending activation."
281
+ msgstr "Konto afventer aktivering."
282
+
283
+ #: includes/class-freemius.php11653,
284
+ #: templates/forms/premium-versions-upgrade-handler.php:47
285
+ msgid "Buy a license now"
286
+ msgstr "Buy a license now"
287
+
288
+ #: includes/class-freemius.php11665,
289
+ #: templates/forms/premium-versions-upgrade-handler.php:46
290
+ msgid "Renew your license now"
291
+ msgstr "Renew your license now"
292
+
293
+ #: includes/class-freemius.php:11669
294
+ msgid "%s to access version %s security & feature updates, and support."
295
+ msgstr "%s to access version %s security & feature updates, and support."
296
+
297
+ #: includes/class-freemius.php:14052
298
+ msgid "%s activation was successfully completed."
299
+ msgstr "Aktivering af %s blev gennemført."
300
+
301
+ #: includes/class-freemius.php:14066
302
+ msgid "Your account was successfully activated with the %s plan."
303
+ msgstr "Din konto blev aktiveret med planen %s."
304
+
305
+ #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
+ msgid "Your trial has been successfully started."
307
+ msgstr "Din prøveperiode er begyndt."
308
+
309
+ #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
+ #: includes/class-freemius.php:14761
311
+ msgid "Couldn't activate %s."
312
+ msgstr "Kunne ikke aktivere %s."
313
+
314
+ #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
+ #: includes/class-freemius.php:14762
316
+ msgid "Please contact us with the following message:"
317
+ msgstr "Kontakt os venligst med følgende besked:"
318
+
319
+ #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
+ msgid "Upgrade"
321
+ msgstr "Opgrader"
322
+
323
+ #: includes/class-freemius.php:15117
324
+ msgid "Start Trial"
325
+ msgstr "Start prøveperiode"
326
+
327
+ #: includes/class-freemius.php:15119
328
+ msgid "Pricing"
329
+ msgstr "Priser"
330
+
331
+ #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
+ msgid "Affiliation"
333
+ msgstr "Affiliation"
334
+
335
+ #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
+ #: templates/account.php150, templates/debug.php:324
337
+ msgid "Account"
338
+ msgstr "Konto"
339
+
340
+ #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
+ #: includes/customizer/class-fs-customizer-support-section.php:60
342
+ msgid "Contact Us"
343
+ msgstr "Kontakt os"
344
+
345
+ #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
+ #: includes/class-freemius.php19553, templates/account.php100,
347
+ #: templates/account/partials/addon.php:41
348
+ msgid "Add-Ons"
349
+ msgstr "Tilføjelser"
350
+
351
+ #: includes/class-freemius.php:15274
352
+ msgctxt "ASCII arrow left icon"
353
+ msgid "&#x2190;"
354
+ msgstr "&#x2190;"
355
+
356
+ #: includes/class-freemius.php:15274
357
+ msgctxt "ASCII arrow right icon"
358
+ msgid "&#x27a4;"
359
+ msgstr "&#x27a4;"
360
+
361
+ #: includes/class-freemius.php15276, templates/pricing.php:97
362
+ msgctxt "noun"
363
+ msgid "Pricing"
364
+ msgstr "Priser"
365
+
366
+ #: includes/class-freemius.php15479,
367
+ #: includes/customizer/class-fs-customizer-support-section.php:67
368
+ msgid "Support Forum"
369
+ msgstr "Supportforum"
370
+
371
+ #: includes/class-freemius.php:16265
372
+ msgid "Your email has been successfully verified - you are AWESOME!"
373
+ msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
374
+
375
+ #: includes/class-freemius.php:16266
376
+ msgctxt "a positive response"
377
+ msgid "Right on"
378
+ msgstr "Sådan"
379
+
380
+ #: includes/class-freemius.php:16888
381
+ msgid "Your %s Add-on plan was successfully upgraded."
382
+ msgstr "Your %s Add-on plan was successfully upgraded."
383
+
384
+ #: includes/class-freemius.php:16890
385
+ msgid "%s Add-on was successfully purchased."
386
+ msgstr "Betalingen for tilføjelsen %s blev gennemført."
387
+
388
+ #: includes/class-freemius.php:16893
389
+ msgid "Download the latest version"
390
+ msgstr "Download den seneste version"
391
+
392
+ #: includes/class-freemius.php:16965
393
+ msgctxt "%1s - plugin title, %2s - API domain"
394
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
+
397
+ #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
+ #: includes/class-freemius.php:17461
399
+ msgid "Error received from the server:"
400
+ msgstr "Fejl modtager fra serveren:"
401
+
402
+ #: includes/class-freemius.php:16978
403
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
+
406
+ #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
+ #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
+ msgctxt ""
409
+ msgid "Hmm"
410
+ msgstr "Hmm"
411
+
412
+ #: includes/class-freemius.php:17173
413
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
+ msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
+
416
+ #: includes/class-freemius.php17174, templates/account.php102,
417
+ #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
+ msgctxt "trial period"
419
+ msgid "Trial"
420
+ msgstr "Prøveperiode"
421
+
422
+ #: includes/class-freemius.php:17179
423
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
+ msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
425
+
426
+ #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
+ msgid "Please contact us here"
428
+ msgstr "Kontakt os her"
429
+
430
+ #: includes/class-freemius.php:17193
431
+ msgid "Your plan was successfully upgraded."
432
+ msgstr "Din plan er blevet opgraderet."
433
+
434
+ #: includes/class-freemius.php:17211
435
+ msgid "Your plan was successfully changed to %s."
436
+ msgstr "Din plan er blevet ændret til %s."
437
+
438
+ #: includes/class-freemius.php:17227
439
+ msgid "Your license has expired. You can still continue using the free %s forever."
440
+ msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
441
+
442
+ #: includes/class-freemius.php:17229
443
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
+ msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
445
+
446
+ #: includes/class-freemius.php:17237
447
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
+ msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
449
+
450
+ #: includes/class-freemius.php:17250
451
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
+ msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
453
+
454
+ #: includes/class-freemius.php:17273
455
+ msgid "Your free trial has expired. You can still continue using all our free features."
456
+ msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
457
+
458
+ #: includes/class-freemius.php:17275
459
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
+
462
+ #: includes/class-freemius.php:17380
463
+ msgid "It looks like the license could not be activated."
464
+ msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
465
+
466
+ #: includes/class-freemius.php:17410
467
+ msgid "Your license was successfully activated."
468
+ msgstr "Din licens er blevet aktiveret."
469
+
470
+ #: includes/class-freemius.php:17436
471
+ msgid "It looks like your site currently doesn't have an active license."
472
+ msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
473
+
474
+ #: includes/class-freemius.php:17460
475
+ msgid "It looks like the license deactivation failed."
476
+ msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
477
+
478
+ #: includes/class-freemius.php:17488
479
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
480
+ msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
481
+
482
+ #: includes/class-freemius.php:17489
483
+ msgid "O.K"
484
+ msgstr "O.K"
485
+
486
+ #: includes/class-freemius.php:17542
487
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
+
490
+ #: includes/class-freemius.php:17551
491
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
+
494
+ #: includes/class-freemius.php:17593
495
+ msgid "You are already running the %s in a trial mode."
496
+ msgstr "Du benytter allerede %s under en prøveperiode."
497
+
498
+ #: includes/class-freemius.php:17604
499
+ msgid "You already utilized a trial before."
500
+ msgstr "Du har allerede brugt din prøveperiode."
501
+
502
+ #: includes/class-freemius.php:17618
503
+ msgid "Plan %s do not exist, therefore, can't start a trial."
504
+ msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
505
+
506
+ #: includes/class-freemius.php:17629
507
+ msgid "Plan %s does not support a trial period."
508
+ msgstr "Plan %s understøtter ikke en prøveperiode."
509
+
510
+ #: includes/class-freemius.php:17640
511
+ msgid "None of the %s's plans supports a trial period."
512
+ msgstr "None of the %s's plans supports a trial period."
513
+
514
+ #: includes/class-freemius.php:17690
515
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
+ msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
517
+
518
+ #: includes/class-freemius.php:17726
519
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
521
+
522
+ #: includes/class-freemius.php:17745
523
+ msgid "Your %s free trial was successfully cancelled."
524
+ msgstr "Din gratis prøveperiode for %s er blevet annulleret."
525
+
526
+ #: includes/class-freemius.php:18052
527
+ msgid "Version %s was released."
528
+ msgstr "Version %s er blevet udgivet."
529
+
530
+ #: includes/class-freemius.php:18052
531
+ msgid "Please download %s."
532
+ msgstr "Download venligst %s."
533
+
534
+ #: includes/class-freemius.php:18059
535
+ msgid "the latest %s version here"
536
+ msgstr "den seneste version af %s her"
537
+
538
+ #: includes/class-freemius.php:18064
539
+ msgid "New"
540
+ msgstr "Ny"
541
+
542
+ #: includes/class-freemius.php:18069
543
+ msgid "Seems like you got the latest release."
544
+ msgstr "Det ser ud til, at du har den seneste udgivelse."
545
+
546
+ #: includes/class-freemius.php:18070
547
+ msgid "You are all good!"
548
+ msgstr "Det var det!"
549
+
550
+ #: includes/class-freemius.php:18338
551
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
+
554
+ #: includes/class-freemius.php:18473
555
+ msgid "Site successfully opted in."
556
+ msgstr "Websted er tilmeldt."
557
+
558
+ #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
+ msgid "Awesome"
560
+ msgstr "Sejt"
561
+
562
+ #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
+ msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
565
+
566
+ #: includes/class-freemius.php:18491
567
+ msgid "Thank you!"
568
+ msgstr "Mange tak!"
569
+
570
+ #: includes/class-freemius.php:18498
571
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
572
+ msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
573
+
574
+ #: includes/class-freemius.php:18627
575
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
+ msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
+
578
+ #: includes/class-freemius.php:18633
579
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
+ msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
581
+
582
+ #: includes/class-freemius.php:18638
583
+ msgid "%s is the new owner of the account."
584
+ msgstr "%s er den nye ejer af kontoen."
585
+
586
+ #: includes/class-freemius.php:18640
587
+ msgctxt "as congratulations"
588
+ msgid "Congrats"
589
+ msgstr "Tillykke"
590
+
591
+ #: includes/class-freemius.php:18660
592
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
+
595
+ #: includes/class-freemius.php:18661
596
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
+
599
+ #: includes/class-freemius.php:18668
600
+ msgid "Change Ownership"
601
+ msgstr "Skift ejerskab"
602
+
603
+ #: includes/class-freemius.php:18676
604
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
606
+
607
+ #: includes/class-freemius.php:18688
608
+ msgid "Please provide your full name."
609
+ msgstr "Indtast venligst dit fulde navn."
610
+
611
+ #: includes/class-freemius.php:18693
612
+ msgid "Your name was successfully updated."
613
+ msgstr "Dit navn er blevet opdateret."
614
+
615
+ #: includes/class-freemius.php:18754
616
+ msgid "You have successfully updated your %s."
617
+ msgstr "Opdatering af %s blev gennemført."
618
+
619
+ #: includes/class-freemius.php:18894
620
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
+
623
+ #: includes/class-freemius.php:18895
624
+ msgctxt "advance notice of something that will need attention."
625
+ msgid "Heads up"
626
+ msgstr "Se her"
627
+
628
+ #: includes/class-freemius.php:19325
629
+ msgctxt "exclamation"
630
+ msgid "Hey"
631
+ msgstr "Hey"
632
+
633
+ #: includes/class-freemius.php:19325
634
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
+ msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
636
+
637
+ #: includes/class-freemius.php:19333
638
+ msgid "No commitment for %s days - cancel anytime!"
639
+ msgstr "Ingen bindinger i %s dage - annuller når som helst!"
640
+
641
+ #: includes/class-freemius.php:19334
642
+ msgid "No credit card required"
643
+ msgstr "Betalingskort ikke påkrævet"
644
+
645
+ #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
646
+ msgctxt "call to action"
647
+ msgid "Start free trial"
648
+ msgstr "Start gratis prøveperiode"
649
+
650
+ #: includes/class-freemius.php:19418
651
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
+ msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
+
654
+ #: includes/class-freemius.php:19427
655
+ msgid "Learn more"
656
+ msgstr "Læs mere"
657
+
658
+ #: includes/class-freemius.php19577, templates/account.php406,
659
+ #: templates/account.php509, templates/connect.php171,
660
+ #: templates/connect.php421, templates/forms/license-activation.php24,
661
+ #: templates/account/partials/addon.php:235
662
+ msgid "Activate License"
663
+ msgstr "Aktiver licens"
664
+
665
+ #: includes/class-freemius.php19578, templates/account.php469,
666
+ #: templates/account.php508, templates/account/partials/site.php:256
667
+ msgid "Change License"
668
+ msgstr "Skift licens"
669
+
670
+ #: includes/class-freemius.php19660, templates/account/partials/site.php:161
671
+ msgid "Opt Out"
672
+ msgstr "Frameld"
673
+
674
+ #: includes/class-freemius.php19662, includes/class-freemius.php19667,
675
+ #: templates/account/partials/site.php43,
676
+ #: templates/account/partials/site.php:161
677
+ msgid "Opt In"
678
+ msgstr "Tilmeld"
679
+
680
+ #: includes/class-freemius.php:19891
681
+ msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
+ msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
+
684
+ #: includes/class-freemius.php:19899
685
+ msgid "Activate %s features"
686
+ msgstr "Activate %s features"
687
+
688
+ #: includes/class-freemius.php:19912
689
+ msgid "Please follow these steps to complete the upgrade"
690
+ msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
691
+
692
+ #: includes/class-freemius.php:19916
693
+ msgid "Download the latest %s version"
694
+ msgstr "Download den seneste version af %s"
695
+
696
+ #: includes/class-freemius.php:19920
697
+ msgid "Upload and activate the downloaded version"
698
+ msgstr "Upload og aktiver den downloadede version"
699
+
700
+ #: includes/class-freemius.php:19922
701
+ msgid "How to upload and activate?"
702
+ msgstr "Upload og aktivering, hvordan?"
703
+
704
+ #: includes/class-freemius.php:20056
705
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
+
708
+ #: includes/class-freemius.php:20217
709
+ msgid "Auto installation only works for opted-in users."
710
+ msgstr "Auto-installation fungerer kun for tilmeldte brugere."
711
+
712
+ #: includes/class-freemius.php20227, includes/class-freemius.php20260,
713
+ #: includes/class-fs-plugin-updater.php1056,
714
+ #: includes/class-fs-plugin-updater.php:1070
715
+ msgid "Invalid module ID."
716
+ msgstr "Ugyldigt modul-ID."
717
+
718
+ #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
719
+ msgid "Premium version already active."
720
+ msgstr "Premium version allerede aktiv."
721
+
722
+ #: includes/class-freemius.php:20243
723
+ msgid "You do not have a valid license to access the premium version."
724
+ msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
725
+
726
+ #: includes/class-freemius.php:20250
727
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
+
730
+ #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
731
+ msgid "Premium add-on version already installed."
732
+ msgstr "Premium tilføjelse er allerede installeret."
733
+
734
+ #: includes/class-freemius.php:20613
735
+ msgid "View paid features"
736
+ msgstr "Vis betalte features"
737
+
738
+ #: includes/class-freemius.php:20927
739
+ msgid "Thank you so much for using %s and its add-ons!"
740
+ msgstr "Thank you so much for using %s and its add-ons!"
741
+
742
+ #: includes/class-freemius.php:20928
743
+ msgid "Thank you so much for using %s!"
744
+ msgstr "Tak fordi du benytter %s!"
745
+
746
+ #: includes/class-freemius.php:20934
747
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
+ msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
749
+
750
+ #: includes/class-freemius.php:20938
751
+ msgid "Thank you so much for using our products!"
752
+ msgstr "Mange tak for at benytte vores produkter!"
753
+
754
+ #: includes/class-freemius.php:20939
755
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
+ msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
757
+
758
+ #: includes/class-freemius.php:20958
759
+ msgid "%s and its add-ons"
760
+ msgstr "%s og tilføjelser"
761
+
762
+ #: includes/class-freemius.php:20967
763
+ msgid "Products"
764
+ msgstr "Produkter"
765
+
766
+ #: includes/class-freemius.php20974, templates/connect.php:272
767
+ msgid "Yes"
768
+ msgstr "Ja"
769
+
770
+ #: includes/class-freemius.php20975, templates/connect.php:273
771
+ msgid "send me security & feature updates, educational content and offers."
772
+ msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
773
+
774
+ #: includes/class-freemius.php20976, templates/connect.php:278
775
+ msgid "No"
776
+ msgstr "Nej"
777
+
778
+ #: includes/class-freemius.php20978, templates/connect.php:280
779
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
+ msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
781
+
782
+ #: includes/class-freemius.php:20988
783
+ msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
+ msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
785
+
786
+ #: includes/class-freemius.php20990, templates/connect.php:287
787
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
+ msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
789
+
790
+ #: includes/class-freemius.php:21272
791
+ msgid "License key is empty."
792
+ msgstr "Licensnøglen er tom."
793
+
794
+ #: includes/class-fs-plugin-updater.php184,
795
+ #: templates/forms/premium-versions-upgrade-handler.php:57
796
+ msgid "Renew license"
797
+ msgstr "Forny licens"
798
+
799
+ #: includes/class-fs-plugin-updater.php189,
800
+ #: templates/forms/premium-versions-upgrade-handler.php:58
801
+ msgid "Buy license"
802
+ msgstr "Buy license"
803
+
804
+ #: includes/class-fs-plugin-updater.php:278
805
+ msgid "There is a %s of %s available."
806
+ msgstr "There is a %s of %s available."
807
+
808
+ #: includes/class-fs-plugin-updater.php:282
809
+ msgid "new version"
810
+ msgstr "new version"
811
+
812
+ #: includes/class-fs-plugin-updater.php:301
813
+ msgid "Important Upgrade Notice:"
814
+ msgstr "Important Upgrade Notice:"
815
+
816
+ #: includes/class-fs-plugin-updater.php:1121
817
+ msgid "Installing plugin: %s"
818
+ msgstr "Installerer plugin: %s"
819
+
820
+ #: includes/class-fs-plugin-updater.php:1162
821
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
+
824
+ #: includes/class-fs-plugin-updater.php:1335
825
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
+
828
+ #: includes/fs-plugin-info-dialog.php369,
829
+ #: templates/account/partials/addon.php:292
830
+ msgctxt "verb"
831
+ msgid "Purchase"
832
+ msgstr "Køb"
833
+
834
+ #: includes/fs-plugin-info-dialog.php:372
835
+ msgid "Start my free %s"
836
+ msgstr "Start min gratis %s"
837
+
838
+ #: includes/fs-plugin-info-dialog.php:413
839
+ msgid "Install Free Version Now"
840
+ msgstr "Installer gratis version nu"
841
+
842
+ #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
843
+ #: templates/account/partials/addon.php272,
844
+ #: templates/account/partials/addon.php:322
845
+ msgid "Install Now"
846
+ msgstr "Installer nu"
847
+
848
+ #: includes/fs-plugin-info-dialog.php:425
849
+ msgctxt "as download latest version"
850
+ msgid "Download Latest Free Version"
851
+ msgstr "Download seneste gratis version"
852
+
853
+ #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
854
+ #: templates/account/partials/addon.php:21
855
+ msgctxt "as download latest version"
856
+ msgid "Download Latest"
857
+ msgstr "Download seneste"
858
+
859
+ #: includes/fs-plugin-info-dialog.php:436
860
+ msgid "Install Free Version Update Now"
861
+ msgstr "Installer opdatering til gratis version nu"
862
+
863
+ #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
864
+ msgid "Install Update Now"
865
+ msgstr "Installer opdatering nu"
866
+
867
+ #: includes/fs-plugin-info-dialog.php:448
868
+ msgid "Newer Free Version (%s) Installed"
869
+ msgstr "Nyere gratis version (%s) installeret"
870
+
871
+ #: includes/fs-plugin-info-dialog.php:449
872
+ msgid "Newer Version (%s) Installed"
873
+ msgstr "Nyere version (%s) installeret"
874
+
875
+ #: includes/fs-plugin-info-dialog.php:457
876
+ msgid "Latest Free Version Installed"
877
+ msgstr "Seneste gratis version installeret"
878
+
879
+ #: includes/fs-plugin-info-dialog.php:458
880
+ msgid "Latest Version Installed"
881
+ msgstr "Seneste version installeret"
882
+
883
+ #: includes/fs-plugin-info-dialog.php:613
884
+ msgctxt "Plugin installer section title"
885
+ msgid "Description"
886
+ msgstr "Beskrivelse"
887
+
888
+ #: includes/fs-plugin-info-dialog.php:614
889
+ msgctxt "Plugin installer section title"
890
+ msgid "Installation"
891
+ msgstr "Installering"
892
+
893
+ #: includes/fs-plugin-info-dialog.php:615
894
+ msgctxt "Plugin installer section title"
895
+ msgid "FAQ"
896
+ msgstr "FAQ"
897
+
898
+ #: includes/fs-plugin-info-dialog.php616,
899
+ #: templates/plugin-info/description.php:55
900
+ msgid "Screenshots"
901
+ msgstr "Skærmbilleder"
902
+
903
+ #: includes/fs-plugin-info-dialog.php:617
904
+ msgctxt "Plugin installer section title"
905
+ msgid "Changelog"
906
+ msgstr "Ændringslog"
907
+
908
+ #: includes/fs-plugin-info-dialog.php:618
909
+ msgctxt "Plugin installer section title"
910
+ msgid "Reviews"
911
+ msgstr "Anmeldelser"
912
+
913
+ #: includes/fs-plugin-info-dialog.php:619
914
+ msgctxt "Plugin installer section title"
915
+ msgid "Other Notes"
916
+ msgstr "Andre noter"
917
+
918
+ #: includes/fs-plugin-info-dialog.php:634
919
+ msgctxt "Plugin installer section title"
920
+ msgid "Features & Pricing"
921
+ msgstr "Funktioner og priser"
922
+
923
+ #: includes/fs-plugin-info-dialog.php:644
924
+ msgid "Plugin Install"
925
+ msgstr "Plugin-installering"
926
+
927
+ #: includes/fs-plugin-info-dialog.php:716
928
+ msgctxt "e.g. Professional Plan"
929
+ msgid "%s Plan"
930
+ msgstr "%s Plan"
931
+
932
+ #: includes/fs-plugin-info-dialog.php:742
933
+ msgctxt "e.g. the best product"
934
+ msgid "Best"
935
+ msgstr "Bedste"
936
+
937
+ #: includes/fs-plugin-info-dialog.php748,
938
+ #: includes/fs-plugin-info-dialog.php:768
939
+ msgctxt "as every month"
940
+ msgid "Monthly"
941
+ msgstr "Månedligt"
942
+
943
+ #: includes/fs-plugin-info-dialog.php:751
944
+ msgctxt "as once a year"
945
+ msgid "Annual"
946
+ msgstr "Årligt"
947
+
948
+ #: includes/fs-plugin-info-dialog.php:754
949
+ msgid "Lifetime"
950
+ msgstr "Livstid"
951
+
952
+ #: includes/fs-plugin-info-dialog.php768,
953
+ #: includes/fs-plugin-info-dialog.php770,
954
+ #: includes/fs-plugin-info-dialog.php:772
955
+ msgctxt "e.g. billed monthly"
956
+ msgid "Billed %s"
957
+ msgstr "Faktureret %s"
958
+
959
+ #: includes/fs-plugin-info-dialog.php:770
960
+ msgctxt "as once a year"
961
+ msgid "Annually"
962
+ msgstr "Årligt"
963
+
964
+ #: includes/fs-plugin-info-dialog.php:772
965
+ msgctxt "as once a year"
966
+ msgid "Once"
967
+ msgstr "Engangsbeløb"
968
+
969
+ #: includes/fs-plugin-info-dialog.php:778
970
+ msgid "Single Site License"
971
+ msgstr "Single Site License"
972
+
973
+ #: includes/fs-plugin-info-dialog.php:780
974
+ msgid "Unlimited Licenses"
975
+ msgstr "Ubegrænsede licenser"
976
+
977
+ #: includes/fs-plugin-info-dialog.php:782
978
+ msgid "Up to %s Sites"
979
+ msgstr "Op til %s websteder"
980
+
981
+ #: includes/fs-plugin-info-dialog.php792,
982
+ #: templates/plugin-info/features.php:82
983
+ msgctxt "as monthly period"
984
+ msgid "mo"
985
+ msgstr "md"
986
+
987
+ #: includes/fs-plugin-info-dialog.php799,
988
+ #: templates/plugin-info/features.php:80
989
+ msgctxt "as annual period"
990
+ msgid "year"
991
+ msgstr "år"
992
+
993
+ #: includes/fs-plugin-info-dialog.php:853
994
+ msgctxt "noun"
995
+ msgid "Price"
996
+ msgstr "Pris"
997
+
998
+ #: includes/fs-plugin-info-dialog.php:901
999
+ msgid "Save %s"
1000
+ msgstr "Spar %s"
1001
+
1002
+ #: includes/fs-plugin-info-dialog.php:911
1003
+ msgid "No commitment for %s - cancel anytime"
1004
+ msgstr "Ingen bindinger ved %s - annuller når som helst"
1005
+
1006
+ #: includes/fs-plugin-info-dialog.php:914
1007
+ msgid "After your free %s, pay as little as %s"
1008
+ msgstr "Efter din gratis %s er prisen kun %s"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php:925
1011
+ msgid "Details"
1012
+ msgstr "Detaljer"
1013
+
1014
+ #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1015
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1016
+ #: templates/account/partials/addon.php:32
1017
+ msgctxt "product version"
1018
+ msgid "Version"
1019
+ msgstr "Version"
1020
+
1021
+ #: includes/fs-plugin-info-dialog.php:936
1022
+ msgctxt "as the plugin author"
1023
+ msgid "Author"
1024
+ msgstr "Forfatter"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php:943
1027
+ msgid "Last Updated"
1028
+ msgstr "Senest opdateret"
1029
+
1030
+ #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1031
+ msgctxt "x-ago"
1032
+ msgid "%s ago"
1033
+ msgstr "%s siden"
1034
+
1035
+ #: includes/fs-plugin-info-dialog.php:957
1036
+ msgid "Requires WordPress Version"
1037
+ msgstr "Kræver WordPress-version"
1038
+
1039
+ #: includes/fs-plugin-info-dialog.php:958
1040
+ msgid "%s or higher"
1041
+ msgstr "%s eller højere"
1042
+
1043
+ #: includes/fs-plugin-info-dialog.php:965
1044
+ msgid "Compatible up to"
1045
+ msgstr "Kompatibel op til"
1046
+
1047
+ #: includes/fs-plugin-info-dialog.php:973
1048
+ msgid "Downloaded"
1049
+ msgstr "Downloadet"
1050
+
1051
+ #: includes/fs-plugin-info-dialog.php:977
1052
+ msgid "%s time"
1053
+ msgstr "%s gang"
1054
+
1055
+ #: includes/fs-plugin-info-dialog.php:979
1056
+ msgid "%s times"
1057
+ msgstr "%s gange"
1058
+
1059
+ #: includes/fs-plugin-info-dialog.php:989
1060
+ msgid "WordPress.org Plugin Page"
1061
+ msgstr "WordPress.org Plugin-side"
1062
+
1063
+ #: includes/fs-plugin-info-dialog.php:997
1064
+ msgid "Plugin Homepage"
1065
+ msgstr "Plugin-websted"
1066
+
1067
+ #: includes/fs-plugin-info-dialog.php1005,
1068
+ #: includes/fs-plugin-info-dialog.php:1087
1069
+ msgid "Donate to this plugin"
1070
+ msgstr "Donér til dette plugin"
1071
+
1072
+ #: includes/fs-plugin-info-dialog.php:1012
1073
+ msgid "Average Rating"
1074
+ msgstr "Gennemsnitlig vurdering"
1075
+
1076
+ #: includes/fs-plugin-info-dialog.php:1019
1077
+ msgid "based on %s"
1078
+ msgstr "baseret på %s"
1079
+
1080
+ #: includes/fs-plugin-info-dialog.php:1023
1081
+ msgid "%s rating"
1082
+ msgstr "%s vurdering"
1083
+
1084
+ #: includes/fs-plugin-info-dialog.php:1025
1085
+ msgid "%s ratings"
1086
+ msgstr "%s vurderinger"
1087
+
1088
+ #: includes/fs-plugin-info-dialog.php:1040
1089
+ msgid "%s star"
1090
+ msgstr "%s stjerne"
1091
+
1092
+ #: includes/fs-plugin-info-dialog.php:1042
1093
+ msgid "%s stars"
1094
+ msgstr "%s stjerner"
1095
+
1096
+ #: includes/fs-plugin-info-dialog.php:1053
1097
+ msgid "Click to see reviews that provided a rating of %s"
1098
+ msgstr "Click to see reviews that provided a rating of %s"
1099
+
1100
+ #: includes/fs-plugin-info-dialog.php:1066
1101
+ msgid "Contributors"
1102
+ msgstr "Bidragsydere"
1103
+
1104
+ #: includes/fs-plugin-info-dialog.php1095,
1105
+ #: includes/fs-plugin-info-dialog.php:1097
1106
+ msgid "Warning"
1107
+ msgstr "Advarsel"
1108
+
1109
+ #: includes/fs-plugin-info-dialog.php:1095
1110
+ msgid "This plugin has not been tested with your current version of WordPress."
1111
+ msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1112
+
1113
+ #: includes/fs-plugin-info-dialog.php:1097
1114
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1115
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
1116
+
1117
+ #: includes/fs-plugin-info-dialog.php:1116
1118
+ msgid "Paid add-on must be deployed to Freemius."
1119
+ msgstr "Paid add-on must be deployed to Freemius."
1120
+
1121
+ #: includes/fs-plugin-info-dialog.php:1117
1122
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1123
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1124
+
1125
+ #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1126
+ #: templates/account/partials/addon.php22,
1127
+ #: templates/account/partials/site.php:295
1128
+ msgid "Downgrading your plan"
1129
+ msgstr "Downgrading your plan"
1130
+
1131
+ #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1132
+ #: templates/account/partials/addon.php23,
1133
+ #: templates/account/partials/site.php:296
1134
+ msgid "Cancelling the subscription"
1135
+ msgstr "Cancelling the subscription"
1136
+
1137
+ #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1138
+ #. subscription'
1139
+ #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1140
+ #: templates/account/partials/addon.php25,
1141
+ #: templates/account/partials/site.php:298
1142
+ msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
+ msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1144
+
1145
+ #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1146
+ #: templates/account/partials/addon.php26,
1147
+ #: templates/account/partials/site.php:299
1148
+ msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
+ msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1150
+
1151
+ #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1152
+ #: templates/account/partials/addon.php:27
1153
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1155
+
1156
+ #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1157
+ #: templates/account/partials/addon.php28,
1158
+ #: templates/account/partials/site.php:300
1159
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1161
+
1162
+ #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1163
+ #: templates/account/partials/addon.php29,
1164
+ #: templates/account/partials/site.php:301
1165
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1167
+
1168
+ #. translators: %s: Plan title (e.g. "Professional")
1169
+ #: templates/account.php90,
1170
+ #: templates/account/partials/activate-license-button.php31,
1171
+ #: templates/account/partials/addon.php:31
1172
+ msgid "Activate %s Plan"
1173
+ msgstr "Aktiver %s plan"
1174
+
1175
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1176
+ #: templates/account.php93, templates/account/partials/addon.php34,
1177
+ #: templates/account/partials/site.php:275
1178
+ msgid "Auto renews in %s"
1179
+ msgstr "Auto-fornyer om %s"
1180
+
1181
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1182
+ #: templates/account.php95, templates/account/partials/addon.php36,
1183
+ #: templates/account/partials/site.php:277
1184
+ msgid "Expires in %s"
1185
+ msgstr "Udløber om %s"
1186
+
1187
+ #: templates/account.php96, templates/account/partials/addon.php:37
1188
+ msgctxt "as synchronize license"
1189
+ msgid "Sync License"
1190
+ msgstr "Synkroniser licens"
1191
+
1192
+ #: templates/account.php97, templates/account/partials/addon.php:38
1193
+ msgid "Cancel Trial"
1194
+ msgstr "Annuller prøveperiode"
1195
+
1196
+ #: templates/account.php98, templates/account/partials/addon.php:39
1197
+ msgid "Change Plan"
1198
+ msgstr "Skift plan"
1199
+
1200
+ #: templates/account.php99, templates/account/partials/addon.php:40
1201
+ msgctxt "verb"
1202
+ msgid "Upgrade"
1203
+ msgstr "Opgrader"
1204
+
1205
+ #: templates/account.php101, templates/account/partials/addon.php42,
1206
+ #: templates/account/partials/site.php:302
1207
+ msgctxt "verb"
1208
+ msgid "Downgrade"
1209
+ msgstr "Nedgrader"
1210
+
1211
+ #: templates/account.php103, templates/add-ons.php130,
1212
+ #: templates/plugin-info/features.php72,
1213
+ #: templates/account/partials/addon.php44,
1214
+ #: templates/account/partials/site.php:31
1215
+ msgid "Free"
1216
+ msgstr "Gratis"
1217
+
1218
+ #: templates/account.php104, templates/account/partials/addon.php:45
1219
+ msgid "Activate"
1220
+ msgstr "Aktiver"
1221
+
1222
+ #: templates/account.php105, templates/debug.php371,
1223
+ #: includes/customizer/class-fs-customizer-upsell-control.php106,
1224
+ #: templates/account/partials/addon.php:46
1225
+ msgctxt "as product pricing plan"
1226
+ msgid "Plan"
1227
+ msgstr "Plan"
1228
+
1229
+ #: templates/account.php:158
1230
+ msgid "Free Trial"
1231
+ msgstr "Gratis prøveperiode"
1232
+
1233
+ #: templates/account.php:169
1234
+ msgid "Account Details"
1235
+ msgstr "Kontodetaljer"
1236
+
1237
+ #: templates/account.php:179
1238
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1239
+ msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1240
+
1241
+ #: templates/account.php:181
1242
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1243
+ msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1244
+
1245
+ #: templates/account.php:184
1246
+ msgid "Delete Account"
1247
+ msgstr "Slet konto"
1248
+
1249
+ #: templates/account.php196, templates/account/partials/addon.php159,
1250
+ #: templates/account/partials/deactivate-license-button.php:35
1251
+ msgid "Deactivate License"
1252
+ msgstr "Deaktiver licens"
1253
+
1254
+ #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1255
+ msgid "Are you sure you want to proceed?"
1256
+ msgstr "Er du sikker på, du vil fortsætte?"
1257
+
1258
+ #: templates/account.php219, templates/account/partials/addon.php:182
1259
+ msgid "Cancel Subscription"
1260
+ msgstr "Annuller abonnement"
1261
+
1262
+ #: templates/account.php:247
1263
+ msgctxt "as synchronize"
1264
+ msgid "Sync"
1265
+ msgstr "Synkroniser"
1266
+
1267
+ #: templates/account.php261, templates/debug.php:487
1268
+ msgid "Name"
1269
+ msgstr "Navn"
1270
+
1271
+ #: templates/account.php267, templates/debug.php:488
1272
+ msgid "Email"
1273
+ msgstr "E-mail"
1274
+
1275
+ #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1276
+ msgid "User ID"
1277
+ msgstr "Bruger-ID"
1278
+
1279
+ #: templates/account.php:282
1280
+ msgid "Site ID"
1281
+ msgstr "Websteds-ID"
1282
+
1283
+ #: templates/account.php:285
1284
+ msgid "No ID"
1285
+ msgstr "Intet ID"
1286
+
1287
+ #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1288
+ #: templates/debug.php453, templates/debug.php490,
1289
+ #: templates/account/partials/site.php:219
1290
+ msgid "Public Key"
1291
+ msgstr "Offentlig nøgle"
1292
+
1293
+ #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1294
+ #: templates/debug.php491, templates/account/partials/site.php:231
1295
+ msgid "Secret Key"
1296
+ msgstr "Privat nøgle"
1297
+
1298
+ #: templates/account.php:299
1299
+ msgctxt "as secret encryption key missing"
1300
+ msgid "No Secret"
1301
+ msgstr "Ingen privat nøgle"
1302
+
1303
+ #: templates/account.php318, templates/account/partials/site.php112,
1304
+ #: templates/account/partials/site.php:114
1305
+ msgid "Trial"
1306
+ msgstr "Prøveperiode"
1307
+
1308
+ #: templates/account.php337, templates/debug.php531,
1309
+ #: templates/account/partials/site.php:248
1310
+ msgid "License Key"
1311
+ msgstr "Licensnøgle"
1312
+
1313
+ #: templates/account.php:367
1314
+ msgid "not verified"
1315
+ msgstr "ikke verificeret"
1316
+
1317
+ #: templates/account.php376, templates/account/partials/addon.php:120
1318
+ msgid "Expired"
1319
+ msgstr "Udløbet"
1320
+
1321
+ #: templates/account.php:428
1322
+ msgid "Premium version"
1323
+ msgstr "Premium version"
1324
+
1325
+ #: templates/account.php:430
1326
+ msgid "Free version"
1327
+ msgstr "Gratis version"
1328
+
1329
+ #: templates/account.php:442
1330
+ msgid "Verify Email"
1331
+ msgstr "Verificer e-mail"
1332
+
1333
+ #: templates/account.php:453
1334
+ msgid "Download %s Version"
1335
+ msgstr "Download 1%s version"
1336
+
1337
+ #: templates/account.php467, templates/account.php649,
1338
+ #: templates/account/partials/site.php237,
1339
+ #: templates/account/partials/site.php:255
1340
+ msgctxt "verb"
1341
+ msgid "Show"
1342
+ msgstr "Vis"
1343
+
1344
+ #: templates/account.php:481
1345
+ msgid "What is your %s?"
1346
+ msgstr "Angiv venligst %s?"
1347
+
1348
+ #: templates/account.php489, templates/account/billing.php:27
1349
+ msgctxt "verb"
1350
+ msgid "Edit"
1351
+ msgstr "Rediger"
1352
+
1353
+ #: templates/account.php:502
1354
+ msgid "Sites"
1355
+ msgstr "Websteder"
1356
+
1357
+ #: templates/account.php:513
1358
+ msgid "Search by address"
1359
+ msgstr "Søg efter adresse"
1360
+
1361
+ #: templates/account.php522, templates/account.php570, templates/debug.php236,
1362
+ #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1363
+ #: templates/debug.php524, templates/debug.php597,
1364
+ #: templates/account/payments.php35, templates/debug/logger.php:21
1365
+ msgid "ID"
1366
+ msgstr "ID"
1367
+
1368
+ #: templates/account.php523, templates/debug.php:367
1369
+ msgid "Address"
1370
+ msgstr "Adresse"
1371
+
1372
+ #: templates/account.php:524
1373
+ msgid "License"
1374
+ msgstr "Licens"
1375
+
1376
+ #: templates/account.php:525
1377
+ msgid "Plan"
1378
+ msgstr "Plan"
1379
+
1380
+ #: templates/account.php:573
1381
+ msgctxt "as software license"
1382
+ msgid "License"
1383
+ msgstr "Licens"
1384
+
1385
+ #: templates/account.php:643
1386
+ msgctxt "verb"
1387
+ msgid "Hide"
1388
+ msgstr "Skjul"
1389
+
1390
+ #: templates/account.php:686
1391
+ msgid "Cancelling %s"
1392
+ msgstr "Cancelling %s"
1393
+
1394
+ #: templates/account.php686, templates/account.php703,
1395
+ #: templates/forms/subscription-cancellation.php27,
1396
+ #: templates/forms/deactivation/form.php:117
1397
+ msgid "trial"
1398
+ msgstr "trial"
1399
+
1400
+ #: templates/account.php701, templates/forms/deactivation/form.php:134
1401
+ msgid "Cancelling %s..."
1402
+ msgstr "Cancelling %s..."
1403
+
1404
+ #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1405
+ #: templates/forms/deactivation/form.php:118
1406
+ msgid "subscription"
1407
+ msgstr "subscription"
1408
+
1409
+ #: templates/account.php:718
1410
+ msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1411
+ msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1412
+
1413
+ #: templates/add-ons.php:36
1414
+ msgid "Add Ons for %s"
1415
+ msgstr "Tilføjelser til %s"
1416
+
1417
+ #: templates/add-ons.php:44
1418
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
+ msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1420
+
1421
+ #: templates/add-ons.php:139
1422
+ msgid "View details"
1423
+ msgstr "Vis detaljer"
1424
+
1425
+ #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1426
+ #: templates/forms/resend-key.php:77
1427
+ msgctxt "as close a window"
1428
+ msgid "Dismiss"
1429
+ msgstr "Fjern"
1430
+
1431
+ #: templates/auto-installation.php:45
1432
+ msgid "%s sec"
1433
+ msgstr "1%s sek"
1434
+
1435
+ #: templates/auto-installation.php:83
1436
+ msgid "Automatic Installation"
1437
+ msgstr "Automatisk installering"
1438
+
1439
+ #: templates/auto-installation.php:93
1440
+ msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1441
+ msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1442
+
1443
+ #: templates/auto-installation.php:104
1444
+ msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1445
+ msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1446
+
1447
+ #: templates/auto-installation.php:109
1448
+ msgid "Cancel Installation"
1449
+ msgstr "Annuller installering"
1450
+
1451
+ #: templates/checkout.php:172
1452
+ msgid "Checkout"
1453
+ msgstr "Udtjekning"
1454
+
1455
+ #: templates/checkout.php:172
1456
+ msgid "PCI compliant"
1457
+ msgstr "PCI compliant"
1458
+
1459
+ #. translators: %s: name (e.g. Hey John,)
1460
+ #: templates/connect.php:112
1461
+ msgctxt "greeting"
1462
+ msgid "Hey %s,"
1463
+ msgstr "Hey %s,"
1464
+
1465
+ #: templates/connect.php:154
1466
+ msgid "Allow & Continue"
1467
+ msgstr "Tillad & Fortsæt"
1468
+
1469
+ #: templates/connect.php:158
1470
+ msgid "Re-send activation email"
1471
+ msgstr "Gensend e-mail om aktivering"
1472
+
1473
+ #: templates/connect.php:162
1474
+ msgid "Thanks %s!"
1475
+ msgstr "Tak %s!"
1476
+
1477
+ #: templates/connect.php172, templates/forms/license-activation.php:43
1478
+ msgid "Agree & Activate License"
1479
+ msgstr "Accepter & aktiver licens"
1480
+
1481
+ #: templates/connect.php:181
1482
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1483
+ msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
1484
+
1485
+ #: templates/connect.php:188
1486
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1487
+ msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1488
+
1489
+ #: templates/connect.php:189
1490
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1491
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1492
+
1493
+ #: templates/connect.php:195
1494
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1495
+ msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1496
+
1497
+ #: templates/connect.php:196
1498
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1499
+ msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1500
+
1501
+ #: templates/connect.php:230
1502
+ msgid "We're excited to introduce the Freemius network-level integration."
1503
+ msgstr "We're excited to introduce the Freemius network-level integration."
1504
+
1505
+ #: templates/connect.php:233
1506
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1507
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1508
+
1509
+ #: templates/connect.php:235
1510
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1511
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1512
+
1513
+ #: templates/connect.php:237
1514
+ msgid "%s's paid features"
1515
+ msgstr "%s's paid features"
1516
+
1517
+ #: templates/connect.php:242
1518
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1519
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1520
+
1521
+ #: templates/connect.php:244
1522
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1524
+
1525
+ #: templates/connect.php253, templates/forms/license-activation.php:46
1526
+ msgid "License key"
1527
+ msgstr "Licensnøgle"
1528
+
1529
+ #: templates/connect.php256, templates/forms/license-activation.php:19
1530
+ msgid "Can't find your license key?"
1531
+ msgstr "Kan du ikke finde din licensnøgle?"
1532
+
1533
+ #: templates/connect.php315, templates/connect.php630,
1534
+ #: templates/forms/deactivation/retry-skip.php:20
1535
+ msgctxt "verb"
1536
+ msgid "Skip"
1537
+ msgstr "Spring over"
1538
+
1539
+ #: templates/connect.php:318
1540
+ msgid "Delegate to Site Admins"
1541
+ msgstr "Delegate to Site Admins"
1542
+
1543
+ #: templates/connect.php:318
1544
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1545
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1546
+
1547
+ #: templates/connect.php:346
1548
+ msgid "Your Profile Overview"
1549
+ msgstr "Overblik af din profil"
1550
+
1551
+ #: templates/connect.php:347
1552
+ msgid "Name and email address"
1553
+ msgstr "Navn og e-mailadresse"
1554
+
1555
+ #: templates/connect.php:352
1556
+ msgid "Your Site Overview"
1557
+ msgstr "Overblik af dit websted"
1558
+
1559
+ #: templates/connect.php:353
1560
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1561
+ msgstr "Websteds-URL, WP version, PHP info, plugins og temaer"
1562
+
1563
+ #: templates/connect.php:358
1564
+ msgid "Admin Notices"
1565
+ msgstr "Admin-meddelelser"
1566
+
1567
+ #: templates/connect.php359, templates/connect.php:375
1568
+ msgid "Updates, announcements, marketing, no spam"
1569
+ msgstr "Updates, announcements, marketing, no spam"
1570
+
1571
+ #: templates/connect.php:364
1572
+ msgid "Current %s Events"
1573
+ msgstr "Current %s Events"
1574
+
1575
+ #: templates/connect.php:365
1576
+ msgid "Activation, deactivation and uninstall"
1577
+ msgstr "Aktivering, deaktivering og afinstallering"
1578
+
1579
+ #: templates/connect.php:374
1580
+ msgid "Newsletter"
1581
+ msgstr "Nyhedsbrev"
1582
+
1583
+ #: templates/connect.php391, templates/forms/license-activation.php:38
1584
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1585
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1586
+
1587
+ #: templates/connect.php:396
1588
+ msgid "What permissions are being granted?"
1589
+ msgstr "Hvilke tilladelser bliver givet?"
1590
+
1591
+ #: templates/connect.php:417
1592
+ msgid "Don't have a license key?"
1593
+ msgstr "Har du ikke en licensnøgle?"
1594
+
1595
+ #: templates/connect.php:418
1596
+ msgid "Activate Free Version"
1597
+ msgstr "Aktiver gratis version"
1598
+
1599
+ #: templates/connect.php:420
1600
+ msgid "Have a license key?"
1601
+ msgstr "Har du en licensnøgle?"
1602
+
1603
+ #: templates/connect.php:428
1604
+ msgid "Privacy Policy"
1605
+ msgstr "Privatlivspolitik"
1606
+
1607
+ #: templates/connect.php:430
1608
+ msgid "License Agreement"
1609
+ msgstr "License Agreement"
1610
+
1611
+ #: templates/connect.php:430
1612
+ msgid "Terms of Service"
1613
+ msgstr "Servicevilkår"
1614
+
1615
+ #: templates/connect.php:766
1616
+ msgctxt "as in the process of sending an email"
1617
+ msgid "Sending email"
1618
+ msgstr "Sender e-mail"
1619
+
1620
+ #: templates/connect.php:767
1621
+ msgctxt "as activating plugin"
1622
+ msgid "Activating"
1623
+ msgstr "Aktiverer"
1624
+
1625
+ #: templates/contact.php:78
1626
+ msgid "Contact"
1627
+ msgstr "Kontakt"
1628
+
1629
+ #: templates/debug.php:17
1630
+ msgctxt "as turned off"
1631
+ msgid "Off"
1632
+ msgstr "Fra"
1633
+
1634
+ #: templates/debug.php:18
1635
+ msgctxt "as turned on"
1636
+ msgid "On"
1637
+ msgstr "Til"
1638
+
1639
+ #: templates/debug.php:20
1640
+ msgid "SDK"
1641
+ msgstr "SDK"
1642
+
1643
+ #: templates/debug.php:24
1644
+ msgctxt "as code debugging"
1645
+ msgid "Debugging"
1646
+ msgstr "Fejlfinding"
1647
+
1648
+ #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1649
+ #: templates/debug.php:492
1650
+ msgid "Actions"
1651
+ msgstr "Handlinger"
1652
+
1653
+ #: templates/debug.php:64
1654
+ msgid "Are you sure you want to delete all Freemius data?"
1655
+ msgstr "Er du sikker på, du vil slette al Freemius data?"
1656
+
1657
+ #: templates/debug.php:64
1658
+ msgid "Delete All Accounts"
1659
+ msgstr "Slet alle konti"
1660
+
1661
+ #: templates/debug.php:71
1662
+ msgid "Clear API Cache"
1663
+ msgstr "Ryd API-cache"
1664
+
1665
+ #: templates/debug.php:79
1666
+ msgid "Clear Updates Transients"
1667
+ msgstr "Clear Updates Transients"
1668
+
1669
+ #: templates/debug.php:86
1670
+ msgid "Sync Data From Server"
1671
+ msgstr "Synkroniser data fra server"
1672
+
1673
+ #: templates/debug.php:95
1674
+ msgid "Migrate Options to Network"
1675
+ msgstr "Migrate Options to Network"
1676
+
1677
+ #: templates/debug.php:100
1678
+ msgid "Load DB Option"
1679
+ msgstr "Hent DB-indstilling"
1680
+
1681
+ #: templates/debug.php:103
1682
+ msgid "Set DB Option"
1683
+ msgstr "Sæt DB-indstilling"
1684
+
1685
+ #: templates/debug.php:180
1686
+ msgid "Key"
1687
+ msgstr "Nøgle"
1688
+
1689
+ #: templates/debug.php:181
1690
+ msgid "Value"
1691
+ msgstr "Værdi"
1692
+
1693
+ #: templates/debug.php:197
1694
+ msgctxt "as software development kit versions"
1695
+ msgid "SDK Versions"
1696
+ msgstr "SDK-versioner"
1697
+
1698
+ #: templates/debug.php:202
1699
+ msgid "SDK Path"
1700
+ msgstr "SDK-sti"
1701
+
1702
+ #: templates/debug.php203, templates/debug.php:242
1703
+ msgid "Module Path"
1704
+ msgstr "Modul-sti"
1705
+
1706
+ #: templates/debug.php:204
1707
+ msgid "Is Active"
1708
+ msgstr "Er aktiv"
1709
+
1710
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1711
+ msgid "Plugins"
1712
+ msgstr "Plugins"
1713
+
1714
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1715
+ msgid "Themes"
1716
+ msgstr "Temaer"
1717
+
1718
+ #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1719
+ #: templates/debug/scheduled-crons.php:80
1720
+ msgid "Slug"
1721
+ msgstr "Kortnavn"
1722
+
1723
+ #: templates/debug.php239, templates/debug.php:450
1724
+ msgid "Title"
1725
+ msgstr "Titel"
1726
+
1727
+ #: templates/debug.php:240
1728
+ msgctxt "as application program interface"
1729
+ msgid "API"
1730
+ msgstr "API"
1731
+
1732
+ #: templates/debug.php:241
1733
+ msgid "Freemius State"
1734
+ msgstr "Freemius tilstand"
1735
+
1736
+ #: templates/debug.php:245
1737
+ msgid "Network Blog"
1738
+ msgstr "Netværksblog"
1739
+
1740
+ #: templates/debug.php:246
1741
+ msgid "Network User"
1742
+ msgstr "Netværksbruger"
1743
+
1744
+ #: templates/debug.php:283
1745
+ msgctxt "as connection was successful"
1746
+ msgid "Connected"
1747
+ msgstr "Forbundet"
1748
+
1749
+ #: templates/debug.php:284
1750
+ msgctxt "as connection blocked"
1751
+ msgid "Blocked"
1752
+ msgstr "Blokeret"
1753
+
1754
+ #: templates/debug.php:320
1755
+ msgid "Simulate Trial Promotion"
1756
+ msgstr "Simulate Trial Promotion"
1757
+
1758
+ #: templates/debug.php:332
1759
+ msgid "Simulate Network Upgrade"
1760
+ msgstr "Simuler netværksopgradering"
1761
+
1762
+ #: templates/debug.php:358
1763
+ msgid "%s Installs"
1764
+ msgstr "%s installeringer"
1765
+
1766
+ #: templates/debug.php:360
1767
+ msgctxt "like websites"
1768
+ msgid "Sites"
1769
+ msgstr "Websteder"
1770
+
1771
+ #: templates/debug.php366, templates/account/partials/site.php:148
1772
+ msgid "Blog ID"
1773
+ msgstr "Blog-ID"
1774
+
1775
+ #: templates/debug.php431, templates/debug.php509,
1776
+ #: templates/account/partials/addon.php:339
1777
+ msgctxt "verb"
1778
+ msgid "Delete"
1779
+ msgstr "Slet"
1780
+
1781
+ #: templates/debug.php:445
1782
+ msgid "Add Ons of module %s"
1783
+ msgstr "Tilføjelser til modul %s"
1784
+
1785
+ #: templates/debug.php:482
1786
+ msgid "Users"
1787
+ msgstr "Brugere"
1788
+
1789
+ #: templates/debug.php:489
1790
+ msgid "Verified"
1791
+ msgstr "Verificeret"
1792
+
1793
+ #: templates/debug.php:520
1794
+ msgid "%s Licenses"
1795
+ msgstr "1%s licenser"
1796
+
1797
+ #: templates/debug.php:525
1798
+ msgid "Plugin ID"
1799
+ msgstr "Plugin-ID"
1800
+
1801
+ #: templates/debug.php:527
1802
+ msgid "Plan ID"
1803
+ msgstr "Plan-ID"
1804
+
1805
+ #: templates/debug.php:528
1806
+ msgid "Quota"
1807
+ msgstr "Kvote"
1808
+
1809
+ #: templates/debug.php:529
1810
+ msgid "Activated"
1811
+ msgstr "Aktiveret"
1812
+
1813
+ #: templates/debug.php:530
1814
+ msgid "Blocking"
1815
+ msgstr "Blokerer"
1816
+
1817
+ #: templates/debug.php:532
1818
+ msgctxt "as expiration date"
1819
+ msgid "Expiration"
1820
+ msgstr "Udløber"
1821
+
1822
+ #: templates/debug.php:555
1823
+ msgid "Debug Log"
1824
+ msgstr "Fejlfindingslog"
1825
+
1826
+ #: templates/debug.php:559
1827
+ msgid "All Types"
1828
+ msgstr "Alle typer"
1829
+
1830
+ #: templates/debug.php:566
1831
+ msgid "All Requests"
1832
+ msgstr "Alle forespørgsler"
1833
+
1834
+ #: templates/debug.php571, templates/debug.php600,
1835
+ #: templates/debug/logger.php:25
1836
+ msgid "File"
1837
+ msgstr "Fil"
1838
+
1839
+ #: templates/debug.php572, templates/debug.php598,
1840
+ #: templates/debug/logger.php:23
1841
+ msgid "Function"
1842
+ msgstr "Funktion"
1843
+
1844
+ #: templates/debug.php:573
1845
+ msgid "Process ID"
1846
+ msgstr "Proces-ID"
1847
+
1848
+ #: templates/debug.php:574
1849
+ msgid "Logger"
1850
+ msgstr "Logger"
1851
+
1852
+ #: templates/debug.php575, templates/debug.php599,
1853
+ #: templates/debug/logger.php:24
1854
+ msgid "Message"
1855
+ msgstr "Besked"
1856
+
1857
+ #: templates/debug.php:577
1858
+ msgid "Filter"
1859
+ msgstr "Filter"
1860
+
1861
+ #: templates/debug.php:585
1862
+ msgid "Download"
1863
+ msgstr "Download"
1864
+
1865
+ #: templates/debug.php596, templates/debug/logger.php:22
1866
+ msgid "Type"
1867
+ msgstr "Type"
1868
+
1869
+ #: templates/debug.php601, templates/debug/logger.php:26
1870
+ msgid "Timestamp"
1871
+ msgstr "Tidsstempel"
1872
+
1873
+ #: templates/secure-https-header.php:28
1874
+ msgid "Secure HTTPS %s page, running from an external domain"
1875
+ msgstr "Secure HTTPS %s page, running from an external domain"
1876
+
1877
+ #: includes/customizer/class-fs-customizer-support-section.php55,
1878
+ #: templates/plugin-info/features.php:43
1879
+ msgid "Support"
1880
+ msgstr "Support"
1881
+
1882
+ #: includes/debug/class-fs-debug-bar-panel.php48,
1883
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1884
+ msgctxt "milliseconds"
1885
+ msgid "ms"
1886
+ msgstr "ms"
1887
+
1888
+ #: includes/debug/debug-bar-start.php:41
1889
+ msgid "Freemius API"
1890
+ msgstr "Freemius API"
1891
+
1892
+ #: includes/debug/debug-bar-start.php:42
1893
+ msgid "Requests"
1894
+ msgstr "Requests"
1895
+
1896
+ #: templates/account/billing.php:28
1897
+ msgctxt "verb"
1898
+ msgid "Update"
1899
+ msgstr "Opdater"
1900
+
1901
+ #: templates/account/billing.php:39
1902
+ msgid "Billing"
1903
+ msgstr "Betaling"
1904
+
1905
+ #: templates/account/billing.php44, templates/account/billing.php:44
1906
+ msgid "Business name"
1907
+ msgstr "Firmanavn"
1908
+
1909
+ #: templates/account/billing.php45, templates/account/billing.php:45
1910
+ msgid "Tax / VAT ID"
1911
+ msgstr "Moms / VAT ID"
1912
+
1913
+ #: templates/account/billing.php48, templates/account/billing.php48,
1914
+ #: templates/account/billing.php49, templates/account/billing.php:49
1915
+ msgid "Address Line %d"
1916
+ msgstr "Adresselinje %d"
1917
+
1918
+ #: templates/account/billing.php52, templates/account/billing.php:52
1919
+ msgid "City"
1920
+ msgstr "By"
1921
+
1922
+ #: templates/account/billing.php52, templates/account/billing.php:52
1923
+ msgid "Town"
1924
+ msgstr "By"
1925
+
1926
+ #: templates/account/billing.php53, templates/account/billing.php:53
1927
+ msgid "ZIP / Postal Code"
1928
+ msgstr "ZIP / Postnummer"
1929
+
1930
+ #: templates/account/billing.php:308
1931
+ msgid "Country"
1932
+ msgstr "Land"
1933
+
1934
+ #: templates/account/billing.php:310
1935
+ msgid "Select Country"
1936
+ msgstr "Vælg land"
1937
+
1938
+ #: templates/account/billing.php317, templates/account/billing.php:318
1939
+ msgid "State"
1940
+ msgstr "Stat"
1941
+
1942
+ #: templates/account/billing.php317, templates/account/billing.php:318
1943
+ msgid "Province"
1944
+ msgstr "Provins"
1945
+
1946
+ #: templates/account/payments.php:29
1947
+ msgid "Payments"
1948
+ msgstr "Betalinger"
1949
+
1950
+ #: templates/account/payments.php:36
1951
+ msgid "Date"
1952
+ msgstr "Dato"
1953
+
1954
+ #: templates/account/payments.php:37
1955
+ msgid "Amount"
1956
+ msgstr "Beløb"
1957
+
1958
+ #: templates/account/payments.php38, templates/account/payments.php:50
1959
+ msgid "Invoice"
1960
+ msgstr "Faktura"
1961
+
1962
+ #: templates/debug/api-calls.php:56
1963
+ msgid "API"
1964
+ msgstr "API"
1965
+
1966
+ #: templates/debug/api-calls.php:68
1967
+ msgid "Method"
1968
+ msgstr "Metode"
1969
+
1970
+ #: templates/debug/api-calls.php:69
1971
+ msgid "Code"
1972
+ msgstr "Kode"
1973
+
1974
+ #: templates/debug/api-calls.php:70
1975
+ msgid "Length"
1976
+ msgstr "Længde"
1977
+
1978
+ #: templates/debug/api-calls.php:71
1979
+ msgctxt "as file/folder path"
1980
+ msgid "Path"
1981
+ msgstr "Sti"
1982
+
1983
+ #: templates/debug/api-calls.php:73
1984
+ msgid "Body"
1985
+ msgstr "Body"
1986
+
1987
+ #: templates/debug/api-calls.php:75
1988
+ msgid "Result"
1989
+ msgstr "Resultat"
1990
+
1991
+ #: templates/debug/api-calls.php:76
1992
+ msgid "Start"
1993
+ msgstr "Start"
1994
+
1995
+ #: templates/debug/api-calls.php:77
1996
+ msgid "End"
1997
+ msgstr "Slut"
1998
+
1999
+ #: templates/debug/logger.php:15
2000
+ msgid "Log"
2001
+ msgstr "Log"
2002
+
2003
+ #. translators: %s: time period (e.g. In "2 hours")
2004
+ #: templates/debug/plugins-themes-sync.php18,
2005
+ #: templates/debug/scheduled-crons.php:91
2006
+ msgid "In %s"
2007
+ msgstr "Om %s"
2008
+
2009
+ #. translators: %s: time period (e.g. "2 hours" ago)
2010
+ #: templates/debug/plugins-themes-sync.php20,
2011
+ #: templates/debug/scheduled-crons.php:93
2012
+ msgid "%s ago"
2013
+ msgstr "%s siden"
2014
+
2015
+ #: templates/debug/plugins-themes-sync.php21,
2016
+ #: templates/debug/scheduled-crons.php:74
2017
+ msgctxt "seconds"
2018
+ msgid "sec"
2019
+ msgstr "sek"
2020
+
2021
+ #: templates/debug/plugins-themes-sync.php:23
2022
+ msgid "Plugins & Themes Sync"
2023
+ msgstr "Synkronisering af plugins og temaer"
2024
+
2025
+ #: templates/debug/plugins-themes-sync.php:28
2026
+ msgid "Total"
2027
+ msgstr "Total"
2028
+
2029
+ #: templates/debug/plugins-themes-sync.php29,
2030
+ #: templates/debug/scheduled-crons.php:84
2031
+ msgid "Last"
2032
+ msgstr "Sidste"
2033
+
2034
+ #: templates/debug/scheduled-crons.php:76
2035
+ msgid "Scheduled Crons"
2036
+ msgstr "Planlagte cron jobs"
2037
+
2038
+ #: templates/debug/scheduled-crons.php:81
2039
+ msgid "Module"
2040
+ msgstr "Modul"
2041
+
2042
+ #: templates/debug/scheduled-crons.php:82
2043
+ msgid "Module Type"
2044
+ msgstr "Modultype"
2045
+
2046
+ #: templates/debug/scheduled-crons.php:83
2047
+ msgid "Cron Type"
2048
+ msgstr "Cron Type"
2049
+
2050
+ #: templates/debug/scheduled-crons.php:85
2051
+ msgid "Next"
2052
+ msgstr "Næste"
2053
+
2054
+ #: templates/forms/affiliation.php:82
2055
+ msgid "Non-expiring"
2056
+ msgstr "Udløber ikke"
2057
+
2058
+ #: templates/forms/affiliation.php:85
2059
+ msgid "Apply to become an affiliate"
2060
+ msgstr "Apply to become an affiliate"
2061
+
2062
+ #: templates/forms/affiliation.php:104
2063
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2064
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2065
+
2066
+ #: templates/forms/affiliation.php:119
2067
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2068
+ msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2069
+
2070
+ #: templates/forms/affiliation.php:122
2071
+ msgid "Your affiliation account was temporarily suspended."
2072
+ msgstr "Your affiliation account was temporarily suspended."
2073
+
2074
+ #: templates/forms/affiliation.php:125
2075
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2076
+ msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2077
+
2078
+ #: templates/forms/affiliation.php:128
2079
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2080
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2081
+
2082
+ #: templates/forms/affiliation.php:141
2083
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2084
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2085
+
2086
+ #: templates/forms/affiliation.php:142
2087
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2088
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2089
+
2090
+ #: templates/forms/affiliation.php:145
2091
+ msgid "Program Summary"
2092
+ msgstr "Programoversigt"
2093
+
2094
+ #: templates/forms/affiliation.php:147
2095
+ msgid "%s commission when a customer purchases a new license."
2096
+ msgstr "%s commission when a customer purchases a new license."
2097
+
2098
+ #: templates/forms/affiliation.php:149
2099
+ msgid "Get commission for automated subscription renewals."
2100
+ msgstr "Get commission for automated subscription renewals."
2101
+
2102
+ #: templates/forms/affiliation.php:152
2103
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2104
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2105
+
2106
+ #: templates/forms/affiliation.php:155
2107
+ msgid "Unlimited commissions."
2108
+ msgstr "Unlimited commissions."
2109
+
2110
+ #: templates/forms/affiliation.php:157
2111
+ msgid "%s minimum payout amount."
2112
+ msgstr "%s minimum payout amount."
2113
+
2114
+ #: templates/forms/affiliation.php:158
2115
+ msgid "Payouts are in USD and processed monthly via PayPal."
2116
+ msgstr "Payouts are in USD and processed monthly via PayPal."
2117
+
2118
+ #: templates/forms/affiliation.php:159
2119
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2120
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2121
+
2122
+ #: templates/forms/affiliation.php:162
2123
+ msgid "Affiliate"
2124
+ msgstr "Affiliate"
2125
+
2126
+ #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2127
+ msgid "Email address"
2128
+ msgstr "E-mailadresse"
2129
+
2130
+ #: templates/forms/affiliation.php:169
2131
+ msgid "Full name"
2132
+ msgstr "Fulde navn"
2133
+
2134
+ #: templates/forms/affiliation.php:173
2135
+ msgid "PayPal account email address"
2136
+ msgstr "E-mailadresse til PayPal-konto"
2137
+
2138
+ #: templates/forms/affiliation.php:177
2139
+ msgid "Where are you going to promote the %s?"
2140
+ msgstr "Hvor vil du promovere %s?"
2141
+
2142
+ #: templates/forms/affiliation.php:179
2143
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2144
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2145
+
2146
+ #: templates/forms/affiliation.php:181
2147
+ msgid "Add another domain"
2148
+ msgstr "Tilføj andet domæne"
2149
+
2150
+ #: templates/forms/affiliation.php:185
2151
+ msgid "Extra Domains"
2152
+ msgstr "Ekstra domæner"
2153
+
2154
+ #: templates/forms/affiliation.php:186
2155
+ msgid "Extra domains where you will be marketing the product from."
2156
+ msgstr "Andre domæner du vil markedsføre produktet fra."
2157
+
2158
+ #: templates/forms/affiliation.php:196
2159
+ msgid "Promotion methods"
2160
+ msgstr "Promoveringsmetoder"
2161
+
2162
+ #: templates/forms/affiliation.php:199
2163
+ msgid "Social media (Facebook, Twitter, etc.)"
2164
+ msgstr "Sociale medier (Facebook, Twitter osv.)"
2165
+
2166
+ #: templates/forms/affiliation.php:203
2167
+ msgid "Mobile apps"
2168
+ msgstr "Mobil-apps"
2169
+
2170
+ #: templates/forms/affiliation.php:207
2171
+ msgid "Website, email, and social media statistics (optional)"
2172
+ msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2173
+
2174
+ #: templates/forms/affiliation.php:210
2175
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2176
+ msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2177
+
2178
+ #: templates/forms/affiliation.php:214
2179
+ msgid "How will you promote us?"
2180
+ msgstr "Hvordan vil du promovere os?"
2181
+
2182
+ #: templates/forms/affiliation.php:217
2183
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2184
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2185
+
2186
+ #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2187
+ msgid "Cancel"
2188
+ msgstr "Annuller"
2189
+
2190
+ #: templates/forms/affiliation.php:225
2191
+ msgid "Become an affiliate"
2192
+ msgstr "Bliv en affiliate"
2193
+
2194
+ #: templates/forms/license-activation.php:20
2195
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2196
+ msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:"
2197
+
2198
+ #: templates/forms/license-activation.php:25
2199
+ msgid "Update License"
2200
+ msgstr "Opdater licens"
2201
+
2202
+ #: templates/forms/optout.php:30
2203
+ msgctxt "verb"
2204
+ msgid "Opt Out"
2205
+ msgstr "Frameld"
2206
+
2207
+ #: templates/forms/optout.php:31
2208
+ msgctxt "verb"
2209
+ msgid "Opt In"
2210
+ msgstr "Tilmeld"
2211
+
2212
+ #: templates/forms/optout.php:33
2213
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2214
+ msgstr "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2215
+
2216
+ #: templates/forms/optout.php:35
2217
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2218
+ msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
2219
+
2220
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2221
+ msgid "There is a new version of %s available."
2222
+ msgstr "En ny version af %s er tilgængelig."
2223
+
2224
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2225
+ msgid " %s to access version %s security & feature updates, and support."
2226
+ msgstr " %s to access version %s security & feature updates, and support."
2227
+
2228
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2229
+ msgid "New Version Available"
2230
+ msgstr "Ny version tilgængelig"
2231
+
2232
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2233
+ msgctxt "close a window"
2234
+ msgid "Dismiss"
2235
+ msgstr "Fjern"
2236
+
2237
+ #: templates/forms/resend-key.php:21
2238
+ msgid "Send License Key"
2239
+ msgstr "Send licensnøgle"
2240
+
2241
+ #: templates/forms/resend-key.php:57
2242
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2243
+ msgstr "Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi vil gensende licensnøglen til dig."
2244
+
2245
+ #: templates/forms/subscription-cancellation.php:37
2246
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2248
+
2249
+ #: templates/forms/subscription-cancellation.php:47
2250
+ msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
+ msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2252
+
2253
+ #: templates/forms/subscription-cancellation.php:52
2254
+ msgid "license"
2255
+ msgstr "license"
2256
+
2257
+ #: templates/forms/subscription-cancellation.php:57
2258
+ msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
+ msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2260
+
2261
+ #: templates/forms/subscription-cancellation.php:68
2262
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2264
+
2265
+ #: templates/forms/subscription-cancellation.php:103
2266
+ msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
+ msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2268
+
2269
+ #: templates/forms/subscription-cancellation.php:136
2270
+ msgid "Cancel %s?"
2271
+ msgstr "Cancel %s?"
2272
+
2273
+ #: templates/forms/subscription-cancellation.php:143
2274
+ msgid "Proceed"
2275
+ msgstr "Proceed"
2276
+
2277
+ #: templates/forms/subscription-cancellation.php191,
2278
+ #: templates/forms/deactivation/form.php:150
2279
+ msgid "Cancel %s & Proceed"
2280
+ msgstr "Cancel %s & Proceed"
2281
+
2282
+ #: templates/forms/trial-start.php:22
2283
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2284
+ msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
2285
+
2286
+ #: templates/forms/trial-start.php:28
2287
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2288
+ msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2289
+
2290
+ #: templates/js/style-premium-theme.php:37
2291
+ msgid "Premium"
2292
+ msgstr "Premium"
2293
+
2294
+ #: templates/partials/network-activation.php:23
2295
+ msgid "Activate license on all sites in the network."
2296
+ msgstr "Aktiver licens på alle websteder i netværket."
2297
+
2298
+ #: templates/partials/network-activation.php:24
2299
+ msgid "Apply on all sites in the network."
2300
+ msgstr "Anvend på alle websteder i netværket."
2301
+
2302
+ #: templates/partials/network-activation.php:27
2303
+ msgid "Activate license on all pending sites."
2304
+ msgstr "Akiver licens på alle afventende websteder."
2305
+
2306
+ #: templates/partials/network-activation.php:28
2307
+ msgid "Apply on all pending sites."
2308
+ msgstr "Anvend på alle afventende websteder."
2309
+
2310
+ #: templates/partials/network-activation.php36,
2311
+ #: templates/partials/network-activation.php:68
2312
+ msgid "allow"
2313
+ msgstr "tillad"
2314
+
2315
+ #: templates/partials/network-activation.php38,
2316
+ #: templates/partials/network-activation.php:70
2317
+ msgid "delegate"
2318
+ msgstr "delegér"
2319
+
2320
+ #: templates/partials/network-activation.php41,
2321
+ #: templates/partials/network-activation.php:73
2322
+ msgid "skip"
2323
+ msgstr "spring over"
2324
+
2325
+ #: templates/plugin-info/description.php72,
2326
+ #: templates/plugin-info/screenshots.php:31
2327
+ msgid "Click to view full-size screenshot %d"
2328
+ msgstr "Klik for at vise skærmbillede %d i fuld skærm"
2329
+
2330
+ #: templates/plugin-info/features.php:56
2331
+ msgid "Unlimited Updates"
2332
+ msgstr "Ubegrænsede opdateringer"
2333
+
2334
+ #: templates/account/partials/activate-license-button.php:46
2335
+ msgid "Localhost"
2336
+ msgstr "Localhost"
2337
+
2338
+ #: templates/account/partials/activate-license-button.php:50
2339
+ msgctxt "as 5 licenses left"
2340
+ msgid "%s left"
2341
+ msgstr "%s tilbage"
2342
+
2343
+ #: templates/account/partials/activate-license-button.php:51
2344
+ msgid "Last license"
2345
+ msgstr "Seneste license"
2346
+
2347
+ #: templates/account/partials/addon.php:115
2348
+ msgid "Cancelled"
2349
+ msgstr "Annulleret"
2350
+
2351
+ #: templates/account/partials/addon.php:125
2352
+ msgid "No expiration"
2353
+ msgstr "Udløber ikke"
2354
+
2355
+ #: templates/account/partials/addon.php264,
2356
+ #: templates/account/partials/addon.php:317
2357
+ msgid "Activate this add-on"
2358
+ msgstr "Aktiver denne tilføjelse"
2359
+
2360
+ #: templates/account/partials/site.php:181
2361
+ msgid "Owner Name"
2362
+ msgstr "Ejer-navn"
2363
+
2364
+ #: templates/account/partials/site.php:193
2365
+ msgid "Owner Email"
2366
+ msgstr "E-mailadresse for ejer"
2367
+
2368
+ #: templates/account/partials/site.php:205
2369
+ msgid "Owner ID"
2370
+ msgstr "Ejer-ID"
2371
+
2372
+ #: templates/account/partials/site.php:270
2373
+ msgid "Subscription"
2374
+ msgstr "Abonnement"
2375
+
2376
+ #: templates/forms/deactivation/contact.php:19
2377
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2378
+ msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
2379
+
2380
+ #: templates/forms/deactivation/contact.php:22
2381
+ msgid "Contact Support"
2382
+ msgstr "Kontakt support"
2383
+
2384
+ #: templates/forms/deactivation/form.php:59
2385
+ msgid "Anonymous feedback"
2386
+ msgstr "Anonym feedback"
2387
+
2388
+ #: templates/forms/deactivation/form.php:66
2389
+ msgid "Deactivate"
2390
+ msgstr "Deaktiver"
2391
+
2392
+ #: templates/forms/deactivation/form.php:68
2393
+ msgid "Activate %s"
2394
+ msgstr "Aktiver %s"
2395
+
2396
+ #: templates/forms/deactivation/form.php:80
2397
+ msgid "Quick Feedback"
2398
+ msgstr "Quick Feedback"
2399
+
2400
+ #: templates/forms/deactivation/form.php:84
2401
+ msgid "If you have a moment, please let us know why you are %s"
2402
+ msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
2403
+
2404
+ #: templates/forms/deactivation/form.php:84
2405
+ msgid "deactivating"
2406
+ msgstr "deaktiverer"
2407
+
2408
+ #: templates/forms/deactivation/form.php:84
2409
+ msgid "switching"
2410
+ msgstr "skifter"
2411
+
2412
+ #: templates/forms/deactivation/form.php:332
2413
+ msgid "Submit & %s"
2414
+ msgstr "Send & %s"
2415
+
2416
+ #: templates/forms/deactivation/form.php:353
2417
+ msgid "Kindly tell us the reason so we can improve."
2418
+ msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2419
+
2420
+ #: templates/forms/deactivation/form.php:478
2421
+ msgid "Yes - %s"
2422
+ msgstr "Ja - %s"
2423
+
2424
+ #: templates/forms/deactivation/form.php:485
2425
+ msgid "Skip & %s"
2426
+ msgstr "Spring over & %s"
2427
+
2428
+ #: templates/forms/deactivation/retry-skip.php:21
2429
+ msgid "Click here to use the plugin anonymously"
2430
+ msgstr "Klik her for at benytte pluginnet anonymt"
2431
+
2432
+ #: templates/forms/deactivation/retry-skip.php:23
2433
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2434
+ msgstr "Du har måske overset det, men du behøver ikke at dele data og kan blot %s tilmeldingen."
freemius/languages/freemius-en.po CHANGED
@@ -1,2320 +1,2320 @@
1
- # Copyright (C) 2018 freemius
2
- # This file is distributed under the same license as the freemius package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: freemius\n"
6
- "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
7
- "POT-Creation-Date: \n"
8
- "PO-Revision-Date: \n"
9
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
10
- "Language: \n"
11
- "Language-Team: Freemius Team <admin@freemius.com>\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "MIME-Version: 1.0\n"
16
- "X-Poedit-Basepath: ..\n"
17
- "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"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPathExcluded-0: *.js\n"
20
- "X-Poedit-SourceCharset: UTF-8\n"
21
-
22
- #: includes/class-freemius.php:1602
23
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
24
- msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
25
-
26
- #: includes/class-freemius.php:1604
27
- msgid "Error"
28
- msgstr "Error"
29
-
30
- #: includes/class-freemius.php:1925
31
- msgid "I found a better %s"
32
- msgstr "I found a better %s"
33
-
34
- #: includes/class-freemius.php:1927
35
- msgid "What's the %s's name?"
36
- msgstr "What's the %s's name?"
37
-
38
- #: includes/class-freemius.php:1933
39
- msgid "It's a temporary %s. I'm just debugging an issue."
40
- msgstr "It's a temporary %s. I'm just debugging an issue."
41
-
42
- #: includes/class-freemius.php:1935
43
- msgid "Deactivation"
44
- msgstr "Deactivation"
45
-
46
- #: includes/class-freemius.php:1936
47
- msgid "Theme Switch"
48
- msgstr "Theme Switch"
49
-
50
- #: includes/class-freemius.php:1945, templates/forms/resend-key.php:24
51
- msgid "Other"
52
- msgstr "Other"
53
-
54
- #: includes/class-freemius.php:1953
55
- msgid "I no longer need the %s"
56
- msgstr "I no longer need the %s"
57
-
58
- #: includes/class-freemius.php:1960
59
- msgid "I only needed the %s for a short period"
60
- msgstr "I only needed the %s for a short period"
61
-
62
- #: includes/class-freemius.php:1966
63
- msgid "The %s broke my site"
64
- msgstr "The %s broke my site"
65
-
66
- #: includes/class-freemius.php:1973
67
- msgid "The %s suddenly stopped working"
68
- msgstr "The %s suddenly stopped working"
69
-
70
- #: includes/class-freemius.php:1983
71
- msgid "I can't pay for it anymore"
72
- msgstr "I can't pay for it anymore"
73
-
74
- #: includes/class-freemius.php:1985
75
- msgid "What price would you feel comfortable paying?"
76
- msgstr "What price would you feel comfortable paying?"
77
-
78
- #: includes/class-freemius.php:1991
79
- msgid "I don't like to share my information with you"
80
- msgstr "I don't like to share my information with you"
81
-
82
- #: includes/class-freemius.php:2012
83
- msgid "The %s didn't work"
84
- msgstr "The %s didn't work"
85
-
86
- #: includes/class-freemius.php:2022
87
- msgid "I couldn't understand how to make it work"
88
- msgstr "I couldn't understand how to make it work"
89
-
90
- #: includes/class-freemius.php:2030
91
- msgid "The %s is great, but I need specific feature that you don't support"
92
- msgstr "The %s is great, but I need specific feature that you don't support"
93
-
94
- #: includes/class-freemius.php:2032
95
- msgid "What feature?"
96
- msgstr "What feature?"
97
-
98
- #: includes/class-freemius.php:2036
99
- msgid "The %s is not working"
100
- msgstr "The %s is not working"
101
-
102
- #: includes/class-freemius.php:2038
103
- msgid "Kindly share what didn't work so we can fix it for future users..."
104
- msgstr "Kindly share what didn't work so we can fix it for future users..."
105
-
106
- #: includes/class-freemius.php:2042
107
- msgid "It's not what I was looking for"
108
- msgstr "It's not what I was looking for"
109
-
110
- #: includes/class-freemius.php:2044
111
- msgid "What you've been looking for?"
112
- msgstr "What you've been looking for?"
113
-
114
- #: includes/class-freemius.php:2048
115
- msgid "The %s didn't work as expected"
116
- msgstr "The %s didn't work as expected"
117
-
118
- #: includes/class-freemius.php:2050
119
- msgid "What did you expect?"
120
- msgstr "What did you expect?"
121
-
122
- #: includes/class-freemius.php:2853, templates/debug.php:20
123
- msgid "Freemius Debug"
124
- msgstr "Freemius Debug"
125
-
126
- #: includes/class-freemius.php:3581
127
- msgid "I don't know what is cURL or how to install it, help me!"
128
- msgstr "I don't know what is cURL or how to install it, help me!"
129
-
130
- #: includes/class-freemius.php:3583
131
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
132
- msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
133
-
134
- #: includes/class-freemius.php:3590
135
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
136
- msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
137
-
138
- #: includes/class-freemius.php:3695
139
- msgid "Yes - do your thing"
140
- msgstr "Yes - do your thing"
141
-
142
- #: includes/class-freemius.php:3700
143
- msgid "No - just deactivate"
144
- msgstr "No - just deactivate"
145
-
146
- #: includes/class-freemius.php:3745, includes/class-freemius.php:4253, includes/class-freemius.php:5318, includes/class-freemius.php:11316, includes/class-freemius.php:14649, includes/class-freemius.php:14701, includes/class-freemius.php:14763, includes/class-freemius.php:16969, includes/class-freemius.php:16979, includes/class-freemius.php:17588, includes/class-freemius.php:18446, includes/class-freemius.php:18561, includes/class-freemius.php:18705, templates/add-ons.php:43
147
- msgctxt "exclamation"
148
- msgid "Oops"
149
- msgstr "Oops"
150
-
151
- #: includes/class-freemius.php:3814
152
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
153
- msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
154
-
155
- #: includes/class-freemius.php:4250
156
- msgctxt "addonX cannot run without pluginY"
157
- msgid "%s cannot run without %s."
158
- msgstr "%s cannot run without %s."
159
-
160
- #: includes/class-freemius.php:4251
161
- msgctxt "addonX cannot run..."
162
- msgid "%s cannot run without the plugin."
163
- msgstr "%s cannot run without the plugin."
164
-
165
- #: includes/class-freemius.php:4363, includes/class-freemius.php:4388, includes/class-freemius.php:17659
166
- msgid "Unexpected API error. Please contact the %s's author with the following error."
167
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
168
-
169
- #: includes/class-freemius.php:5006
170
- msgid "Premium %s version was successfully activated."
171
- msgstr "Premium %s version was successfully activated."
172
-
173
- #: includes/class-freemius.php:5018, includes/class-freemius.php:6862
174
- msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
175
- msgid "W00t"
176
- msgstr "W00t"
177
-
178
- #: includes/class-freemius.php:5033
179
- msgid "You have a %s license."
180
- msgstr "You have a %s license."
181
-
182
- #: includes/class-freemius.php:5037, includes/class-freemius.php:14070, includes/class-freemius.php:14081, includes/class-freemius.php:16897, includes/class-freemius.php:17197, includes/class-freemius.php:17263, includes/class-freemius.php:17413
183
- msgctxt "interjection expressing joy or exuberance"
184
- msgid "Yee-haw"
185
- msgstr "Yee-haw"
186
-
187
- #: includes/class-freemius.php:5301
188
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
189
- msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
190
-
191
- #: includes/class-freemius.php:5305
192
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
193
- msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
194
-
195
- #: includes/class-freemius.php:5314, templates/add-ons.php:103, templates/account/partials/addon.php:288
196
- msgid "More information about %s"
197
- msgstr "More information about %s"
198
-
199
- #: includes/class-freemius.php:5315
200
- msgid "Purchase License"
201
- msgstr "Purchase License"
202
-
203
- #: includes/class-freemius.php:6230, templates/connect.php:163
204
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
205
- msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
206
-
207
- #: includes/class-freemius.php:6234
208
- msgid "start the trial"
209
- msgstr "start the trial"
210
-
211
- #: includes/class-freemius.php:6235, templates/connect.php:167
212
- msgid "complete the install"
213
- msgstr "complete the install"
214
-
215
- #: includes/class-freemius.php:6348
216
- msgid "You are just one step away - %s"
217
- msgstr "You are just one step away - %s"
218
-
219
- #: includes/class-freemius.php:6351
220
- msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
221
- msgid "Complete \"%s\" Activation Now"
222
- msgstr "Complete \"%s\" Activation Now"
223
-
224
- #: includes/class-freemius.php:6429
225
- msgid "We made a few tweaks to the %s, %s"
226
- msgstr "We made a few tweaks to the %s, %s"
227
-
228
- #: includes/class-freemius.php:6433
229
- msgid "Opt in to make \"%s\" better!"
230
- msgstr "Opt in to make \"%s\" better!"
231
-
232
- #: includes/class-freemius.php:6861
233
- msgid "The upgrade of %s was successfully completed."
234
- msgstr "The upgrade of %s was successfully completed."
235
-
236
- #: includes/class-freemius.php:8705, includes/class-fs-plugin-updater.php:882, includes/class-fs-plugin-updater.php:1077, includes/class-fs-plugin-updater.php:1084, templates/auto-installation.php:32
237
- msgid "Add-On"
238
- msgstr "Add-On"
239
-
240
- #: includes/class-freemius.php:8707, templates/debug.php:359, templates/debug.php:520
241
- msgid "Plugin"
242
- msgstr "Plugin"
243
-
244
- #: includes/class-freemius.php:8708, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
245
- msgid "Theme"
246
- msgstr "Theme"
247
-
248
- #: includes/class-freemius.php:11183
249
- msgid "Invalid site details collection."
250
- msgstr "Invalid site details collection."
251
-
252
- #: includes/class-freemius.php:11303
253
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
254
- msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
255
-
256
- #: includes/class-freemius.php:11305
257
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
258
- msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
259
-
260
- #: includes/class-freemius.php:11541
261
- msgid "Account is pending activation."
262
- msgstr "Account is pending activation."
263
-
264
- #: includes/class-freemius.php:11653, templates/forms/premium-versions-upgrade-handler.php:47
265
- msgid "Buy a license now"
266
- msgstr "Buy a license now"
267
-
268
- #: includes/class-freemius.php:11665, templates/forms/premium-versions-upgrade-handler.php:46
269
- msgid "Renew your license now"
270
- msgstr "Renew your license now"
271
-
272
- #: includes/class-freemius.php:11669
273
- msgid "%s to access version %s security & feature updates, and support."
274
- msgstr "%s to access version %s security & feature updates, and support."
275
-
276
- #: includes/class-freemius.php:14052
277
- msgid "%s activation was successfully completed."
278
- msgstr "%s activation was successfully completed."
279
-
280
- #: includes/class-freemius.php:14066
281
- msgid "Your account was successfully activated with the %s plan."
282
- msgstr "Your account was successfully activated with the %s plan."
283
-
284
- #: includes/class-freemius.php:14077, includes/class-freemius.php:17259
285
- msgid "Your trial has been successfully started."
286
- msgstr "Your trial has been successfully started."
287
-
288
- #: includes/class-freemius.php:14647, includes/class-freemius.php:14699, includes/class-freemius.php:14761
289
- msgid "Couldn't activate %s."
290
- msgstr "Couldn't activate %s."
291
-
292
- #: includes/class-freemius.php:14648, includes/class-freemius.php:14700, includes/class-freemius.php:14762
293
- msgid "Please contact us with the following message:"
294
- msgstr "Please contact us with the following message:"
295
-
296
- #: includes/class-freemius.php:15111, includes/class-freemius.php:19543
297
- msgid "Upgrade"
298
- msgstr "Upgrade"
299
-
300
- #: includes/class-freemius.php:15117
301
- msgid "Start Trial"
302
- msgstr "Start Trial"
303
-
304
- #: includes/class-freemius.php:15119
305
- msgid "Pricing"
306
- msgstr "Pricing"
307
-
308
- #: includes/class-freemius.php:15181, includes/class-freemius.php:15183
309
- msgid "Affiliation"
310
- msgstr "Affiliation"
311
-
312
- #: includes/class-freemius.php:15211, includes/class-freemius.php:15213, templates/account.php:150, templates/debug.php:324
313
- msgid "Account"
314
- msgstr "Account"
315
-
316
- #: includes/class-freemius.php:15226, includes/class-freemius.php:15228, includes/customizer/class-fs-customizer-support-section.php:60
317
- msgid "Contact Us"
318
- msgstr "Contact Us"
319
-
320
- #: includes/class-freemius.php:15238, includes/class-freemius.php:15240, includes/class-freemius.php:19553, templates/account.php:100, templates/account/partials/addon.php:41
321
- msgid "Add-Ons"
322
- msgstr "Add-Ons"
323
-
324
- #: includes/class-freemius.php:15274
325
- msgctxt "ASCII arrow left icon"
326
- msgid "&#x2190;"
327
- msgstr "&#x2190;"
328
-
329
- #: includes/class-freemius.php:15274
330
- msgctxt "ASCII arrow right icon"
331
- msgid "&#x27a4;"
332
- msgstr "&#x27a4;"
333
-
334
- #: includes/class-freemius.php:15276, templates/pricing.php:97
335
- msgctxt "noun"
336
- msgid "Pricing"
337
- msgstr "Pricing"
338
-
339
- #: includes/class-freemius.php:15479, includes/customizer/class-fs-customizer-support-section.php:67
340
- msgid "Support Forum"
341
- msgstr "Support Forum"
342
-
343
- #: includes/class-freemius.php:16265
344
- msgid "Your email has been successfully verified - you are AWESOME!"
345
- msgstr "Your email has been successfully verified - you are AWESOME!"
346
-
347
- #: includes/class-freemius.php:16266
348
- msgctxt "a positive response"
349
- msgid "Right on"
350
- msgstr "Right on"
351
-
352
- #: includes/class-freemius.php:16888
353
- msgid "Your %s Add-on plan was successfully upgraded."
354
- msgstr "Your %s Add-on plan was successfully upgraded."
355
-
356
- #: includes/class-freemius.php:16890
357
- msgid "%s Add-on was successfully purchased."
358
- msgstr "%s Add-on was successfully purchased."
359
-
360
- #: includes/class-freemius.php:16893
361
- msgid "Download the latest version"
362
- msgstr "Download the latest version"
363
-
364
- #: includes/class-freemius.php:16965
365
- msgctxt "%1s - plugin title, %2s - API domain"
366
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
368
-
369
- #: includes/class-freemius.php:16968, includes/class-freemius.php:17384, includes/class-freemius.php:17461
370
- msgid "Error received from the server:"
371
- msgstr "Error received from the server:"
372
-
373
- #: includes/class-freemius.php:16978
374
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
- msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
-
377
- #: includes/class-freemius.php:17160, includes/class-freemius.php:17389, includes/class-freemius.php:17432, includes/class-freemius.php:17535
378
- msgctxt "something somebody says when they are thinking about what you have just said."
379
- msgid "Hmm"
380
- msgstr "Hmm"
381
-
382
- #: includes/class-freemius.php:17173
383
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
384
- msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
-
386
- #: includes/class-freemius.php:17174, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
387
- msgctxt "trial period"
388
- msgid "Trial"
389
- msgstr "Trial"
390
-
391
- #: includes/class-freemius.php:17179
392
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
393
- msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
-
395
- #: includes/class-freemius.php:17183, includes/class-freemius.php:17241
396
- msgid "Please contact us here"
397
- msgstr "Please contact us here"
398
-
399
- #: includes/class-freemius.php:17193
400
- msgid "Your plan was successfully upgraded."
401
- msgstr "Your plan was successfully upgraded."
402
-
403
- #: includes/class-freemius.php:17211
404
- msgid "Your plan was successfully changed to %s."
405
- msgstr "Your plan was successfully changed to %s."
406
-
407
- #: includes/class-freemius.php:17227
408
- msgid "Your license has expired. You can still continue using the free %s forever."
409
- msgstr "Your license has expired. You can still continue using the free %s forever."
410
-
411
- #: includes/class-freemius.php:17229
412
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
413
- msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
414
-
415
- #: includes/class-freemius.php:17237
416
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
417
- msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
418
-
419
- #: includes/class-freemius.php:17250
420
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
421
- msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
422
-
423
- #: includes/class-freemius.php:17273
424
- msgid "Your free trial has expired. You can still continue using all our free features."
425
- msgstr "Your free trial has expired. You can still continue using all our free features."
426
-
427
- #: includes/class-freemius.php:17275
428
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
429
- msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
430
-
431
- #: includes/class-freemius.php:17380
432
- msgid "It looks like the license could not be activated."
433
- msgstr "It looks like the license could not be activated."
434
-
435
- #: includes/class-freemius.php:17410
436
- msgid "Your license was successfully activated."
437
- msgstr "Your license was successfully activated."
438
-
439
- #: includes/class-freemius.php:17436
440
- msgid "It looks like your site currently doesn't have an active license."
441
- msgstr "It looks like your site currently doesn't have an active license."
442
-
443
- #: includes/class-freemius.php:17460
444
- msgid "It looks like the license deactivation failed."
445
- msgstr "It looks like the license deactivation failed."
446
-
447
- #: includes/class-freemius.php:17488
448
- msgid "Your license was successfully deactivated, you are back to the %s plan."
449
- msgstr "Your license was successfully deactivated, you are back to the %s plan."
450
-
451
- #: includes/class-freemius.php:17489
452
- msgid "O.K"
453
- msgstr "O.K"
454
-
455
- #: includes/class-freemius.php:17542
456
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
457
- msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
458
-
459
- #: includes/class-freemius.php:17551
460
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
461
- msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
462
-
463
- #: includes/class-freemius.php:17593
464
- msgid "You are already running the %s in a trial mode."
465
- msgstr "You are already running the %s in a trial mode."
466
-
467
- #: includes/class-freemius.php:17604
468
- msgid "You already utilized a trial before."
469
- msgstr "You already utilized a trial before."
470
-
471
- #: includes/class-freemius.php:17618
472
- msgid "Plan %s do not exist, therefore, can't start a trial."
473
- msgstr "Plan %s do not exist, therefore, can't start a trial."
474
-
475
- #: includes/class-freemius.php:17629
476
- msgid "Plan %s does not support a trial period."
477
- msgstr "Plan %s does not support a trial period."
478
-
479
- #: includes/class-freemius.php:17640
480
- msgid "None of the %s's plans supports a trial period."
481
- msgstr "None of the %s's plans supports a trial period."
482
-
483
- #: includes/class-freemius.php:17690
484
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
485
- msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
486
-
487
- #: includes/class-freemius.php:17726
488
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
489
- msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
490
-
491
- #: includes/class-freemius.php:17745
492
- msgid "Your %s free trial was successfully cancelled."
493
- msgstr "Your %s free trial was successfully cancelled."
494
-
495
- #: includes/class-freemius.php:18052
496
- msgid "Version %s was released."
497
- msgstr "Version %s was released."
498
-
499
- #: includes/class-freemius.php:18052
500
- msgid "Please download %s."
501
- msgstr "Please download %s."
502
-
503
- #: includes/class-freemius.php:18059
504
- msgid "the latest %s version here"
505
- msgstr "the latest %s version here"
506
-
507
- #: includes/class-freemius.php:18064
508
- msgid "New"
509
- msgstr "New"
510
-
511
- #: includes/class-freemius.php:18069
512
- msgid "Seems like you got the latest release."
513
- msgstr "Seems like you got the latest release."
514
-
515
- #: includes/class-freemius.php:18070
516
- msgid "You are all good!"
517
- msgstr "You are all good!"
518
-
519
- #: includes/class-freemius.php:18338
520
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
521
- msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
522
-
523
- #: includes/class-freemius.php:18473
524
- msgid "Site successfully opted in."
525
- msgstr "Site successfully opted in."
526
-
527
- #: includes/class-freemius.php:18474, includes/class-freemius.php:19285
528
- msgid "Awesome"
529
- msgstr "Awesome"
530
-
531
- #: includes/class-freemius.php:18490, templates/forms/optout.php:32
532
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
533
- msgstr "We appreciate your help in making the %s better by letting us track some usage data."
534
-
535
- #: includes/class-freemius.php:18491
536
- msgid "Thank you!"
537
- msgstr "Thank you!"
538
-
539
- #: includes/class-freemius.php:18498
540
- msgid "We will no longer be sending any usage data of %s on %s to %s."
541
- msgstr "We will no longer be sending any usage data of %s on %s to %s."
542
-
543
- #: includes/class-freemius.php:18627
544
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
545
- msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
546
-
547
- #: includes/class-freemius.php:18633
548
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
549
- msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
550
-
551
- #: includes/class-freemius.php:18638
552
- msgid "%s is the new owner of the account."
553
- msgstr "%s is the new owner of the account."
554
-
555
- #: includes/class-freemius.php:18640
556
- msgctxt "as congratulations"
557
- msgid "Congrats"
558
- msgstr "Congrats"
559
-
560
- #: includes/class-freemius.php:18660
561
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
562
- msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
563
-
564
- #: includes/class-freemius.php:18661
565
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
566
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
567
-
568
- #: includes/class-freemius.php:18668
569
- msgid "Change Ownership"
570
- msgstr "Change Ownership"
571
-
572
- #: includes/class-freemius.php:18676
573
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
574
- msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
575
-
576
- #: includes/class-freemius.php:18688
577
- msgid "Please provide your full name."
578
- msgstr "Please provide your full name."
579
-
580
- #: includes/class-freemius.php:18693
581
- msgid "Your name was successfully updated."
582
- msgstr "Your name was successfully updated."
583
-
584
- #: includes/class-freemius.php:18754
585
- msgid "You have successfully updated your %s."
586
- msgstr "You have successfully updated your %s."
587
-
588
- #: includes/class-freemius.php:18894
589
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
590
- msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
591
-
592
- #: includes/class-freemius.php:18895
593
- msgctxt "advance notice of something that will need attention."
594
- msgid "Heads up"
595
- msgstr "Heads up"
596
-
597
- #: includes/class-freemius.php:19325
598
- msgctxt "exclamation"
599
- msgid "Hey"
600
- msgstr "Hey"
601
-
602
- #: includes/class-freemius.php:19325
603
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
604
- msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
605
-
606
- #: includes/class-freemius.php:19333
607
- msgid "No commitment for %s days - cancel anytime!"
608
- msgstr "No commitment for %s days - cancel anytime!"
609
-
610
- #: includes/class-freemius.php:19334
611
- msgid "No credit card required"
612
- msgstr "No credit card required"
613
-
614
- #: includes/class-freemius.php:19341, templates/forms/trial-start.php:53
615
- msgctxt "call to action"
616
- msgid "Start free trial"
617
- msgstr "Start free trial"
618
-
619
- #: includes/class-freemius.php:19418
620
- msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
621
- msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
622
-
623
- #: includes/class-freemius.php:19427
624
- msgid "Learn more"
625
- msgstr "Learn more"
626
-
627
- #: includes/class-freemius.php:19577, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
628
- msgid "Activate License"
629
- msgstr "Activate License"
630
-
631
- #: includes/class-freemius.php:19578, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
632
- msgid "Change License"
633
- msgstr "Change License"
634
-
635
- #: includes/class-freemius.php:19660, templates/account/partials/site.php:161
636
- msgid "Opt Out"
637
- msgstr "Opt Out"
638
-
639
- #: includes/class-freemius.php:19662, includes/class-freemius.php:19667, templates/account/partials/site.php:43, templates/account/partials/site.php:161
640
- msgid "Opt In"
641
- msgstr "Opt In"
642
-
643
- #: includes/class-freemius.php:19891
644
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
645
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
646
-
647
- #: includes/class-freemius.php:19899
648
- msgid "Activate %s features"
649
- msgstr "Activate %s features"
650
-
651
- #: includes/class-freemius.php:19912
652
- msgid "Please follow these steps to complete the upgrade"
653
- msgstr "Please follow these steps to complete the upgrade"
654
-
655
- #: includes/class-freemius.php:19916
656
- msgid "Download the latest %s version"
657
- msgstr "Download the latest %s version"
658
-
659
- #: includes/class-freemius.php:19920
660
- msgid "Upload and activate the downloaded version"
661
- msgstr "Upload and activate the downloaded version"
662
-
663
- #: includes/class-freemius.php:19922
664
- msgid "How to upload and activate?"
665
- msgstr "How to upload and activate?"
666
-
667
- #: includes/class-freemius.php:20056
668
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
669
- msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
670
-
671
- #: includes/class-freemius.php:20217
672
- msgid "Auto installation only works for opted-in users."
673
- msgstr "Auto installation only works for opted-in users."
674
-
675
- #: includes/class-freemius.php:20227, includes/class-freemius.php:20260, includes/class-fs-plugin-updater.php:1056, includes/class-fs-plugin-updater.php:1070
676
- msgid "Invalid module ID."
677
- msgstr "Invalid module ID."
678
-
679
- #: includes/class-freemius.php:20236, includes/class-fs-plugin-updater.php:1092
680
- msgid "Premium version already active."
681
- msgstr "Premium version already active."
682
-
683
- #: includes/class-freemius.php:20243
684
- msgid "You do not have a valid license to access the premium version."
685
- msgstr "You do not have a valid license to access the premium version."
686
-
687
- #: includes/class-freemius.php:20250
688
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
689
- msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
690
-
691
- #: includes/class-freemius.php:20268, includes/class-fs-plugin-updater.php:1091
692
- msgid "Premium add-on version already installed."
693
- msgstr "Premium add-on version already installed."
694
-
695
- #: includes/class-freemius.php:20613
696
- msgid "View paid features"
697
- msgstr "View paid features"
698
-
699
- #: includes/class-freemius.php:20927
700
- msgid "Thank you so much for using %s and its add-ons!"
701
- msgstr "Thank you so much for using %s and its add-ons!"
702
-
703
- #: includes/class-freemius.php:20928
704
- msgid "Thank you so much for using %s!"
705
- msgstr "Thank you so much for using %s!"
706
-
707
- #: includes/class-freemius.php:20934
708
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
709
- msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
710
-
711
- #: includes/class-freemius.php:20938
712
- msgid "Thank you so much for using our products!"
713
- msgstr "Thank you so much for using our products!"
714
-
715
- #: includes/class-freemius.php:20939
716
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
717
- msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
718
-
719
- #: includes/class-freemius.php:20958
720
- msgid "%s and its add-ons"
721
- msgstr "%s and its add-ons"
722
-
723
- #: includes/class-freemius.php:20967
724
- msgid "Products"
725
- msgstr "Products"
726
-
727
- #: includes/class-freemius.php:20974, templates/connect.php:272
728
- msgid "Yes"
729
- msgstr "Yes"
730
-
731
- #: includes/class-freemius.php:20975, templates/connect.php:273
732
- msgid "send me security & feature updates, educational content and offers."
733
- msgstr "send me security & feature updates, educational content and offers."
734
-
735
- #: includes/class-freemius.php:20976, templates/connect.php:278
736
- msgid "No"
737
- msgstr "No"
738
-
739
- #: includes/class-freemius.php:20978, templates/connect.php:280
740
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
741
- msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
742
-
743
- #: includes/class-freemius.php:20988
744
- msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
745
- msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
746
-
747
- #: includes/class-freemius.php:20990, templates/connect.php:287
748
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
749
- msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
750
-
751
- #: includes/class-freemius.php:21272
752
- msgid "License key is empty."
753
- msgstr "License key is empty."
754
-
755
- #: includes/class-fs-plugin-updater.php:184, templates/forms/premium-versions-upgrade-handler.php:57
756
- msgid "Renew license"
757
- msgstr "Renew license"
758
-
759
- #: includes/class-fs-plugin-updater.php:189, templates/forms/premium-versions-upgrade-handler.php:58
760
- msgid "Buy license"
761
- msgstr "Buy license"
762
-
763
- #: includes/class-fs-plugin-updater.php:278
764
- msgid "There is a %s of %s available."
765
- msgstr "There is a %s of %s available."
766
-
767
- #: includes/class-fs-plugin-updater.php:282
768
- msgid "new version"
769
- msgstr "new version"
770
-
771
- #: includes/class-fs-plugin-updater.php:301
772
- msgid "Important Upgrade Notice:"
773
- msgstr "Important Upgrade Notice:"
774
-
775
- #: includes/class-fs-plugin-updater.php:1121
776
- msgid "Installing plugin: %s"
777
- msgstr "Installing plugin: %s"
778
-
779
- #: includes/class-fs-plugin-updater.php:1162
780
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
781
- msgstr "Unable to connect to the filesystem. Please confirm your credentials."
782
-
783
- #: includes/class-fs-plugin-updater.php:1335
784
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
785
- msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
786
-
787
- #: includes/fs-plugin-info-dialog.php:369, templates/account/partials/addon.php:292
788
- msgctxt "verb"
789
- msgid "Purchase"
790
- msgstr "Purchase"
791
-
792
- #: includes/fs-plugin-info-dialog.php:372
793
- msgid "Start my free %s"
794
- msgstr "Start my free %s"
795
-
796
- #: includes/fs-plugin-info-dialog.php:413
797
- msgid "Install Free Version Now"
798
- msgstr "Install Free Version Now"
799
-
800
- #: includes/fs-plugin-info-dialog.php:414, templates/auto-installation.php:111, templates/account/partials/addon.php:272, templates/account/partials/addon.php:322
801
- msgid "Install Now"
802
- msgstr "Install Now"
803
-
804
- #: includes/fs-plugin-info-dialog.php:425
805
- msgctxt "as download latest version"
806
- msgid "Download Latest Free Version"
807
- msgstr "Download Latest Free Version"
808
-
809
- #: includes/fs-plugin-info-dialog.php:426, templates/account.php:80, templates/account/partials/addon.php:21
810
- msgctxt "as download latest version"
811
- msgid "Download Latest"
812
- msgstr "Download Latest"
813
-
814
- #: includes/fs-plugin-info-dialog.php:436
815
- msgid "Install Free Version Update Now"
816
- msgstr "Install Free Version Update Now"
817
-
818
- #: includes/fs-plugin-info-dialog.php:437, templates/account.php:460
819
- msgid "Install Update Now"
820
- msgstr "Install Update Now"
821
-
822
- #: includes/fs-plugin-info-dialog.php:448
823
- msgid "Newer Free Version (%s) Installed"
824
- msgstr "Newer Free Version (%s) Installed"
825
-
826
- #: includes/fs-plugin-info-dialog.php:449
827
- msgid "Newer Version (%s) Installed"
828
- msgstr "Newer Version (%s) Installed"
829
-
830
- #: includes/fs-plugin-info-dialog.php:457
831
- msgid "Latest Free Version Installed"
832
- msgstr "Latest Free Version Installed"
833
-
834
- #: includes/fs-plugin-info-dialog.php:458
835
- msgid "Latest Version Installed"
836
- msgstr "Latest Version Installed"
837
-
838
- #: includes/fs-plugin-info-dialog.php:613
839
- msgctxt "Plugin installer section title"
840
- msgid "Description"
841
- msgstr "Description"
842
-
843
- #: includes/fs-plugin-info-dialog.php:614
844
- msgctxt "Plugin installer section title"
845
- msgid "Installation"
846
- msgstr "Installation"
847
-
848
- #: includes/fs-plugin-info-dialog.php:615
849
- msgctxt "Plugin installer section title"
850
- msgid "FAQ"
851
- msgstr "FAQ"
852
-
853
- #: includes/fs-plugin-info-dialog.php:616, templates/plugin-info/description.php:55
854
- msgid "Screenshots"
855
- msgstr "Screenshots"
856
-
857
- #: includes/fs-plugin-info-dialog.php:617
858
- msgctxt "Plugin installer section title"
859
- msgid "Changelog"
860
- msgstr "Changelog"
861
-
862
- #: includes/fs-plugin-info-dialog.php:618
863
- msgctxt "Plugin installer section title"
864
- msgid "Reviews"
865
- msgstr "Reviews"
866
-
867
- #: includes/fs-plugin-info-dialog.php:619
868
- msgctxt "Plugin installer section title"
869
- msgid "Other Notes"
870
- msgstr "Other Notes"
871
-
872
- #: includes/fs-plugin-info-dialog.php:634
873
- msgctxt "Plugin installer section title"
874
- msgid "Features & Pricing"
875
- msgstr "Features & Pricing"
876
-
877
- #: includes/fs-plugin-info-dialog.php:644
878
- msgid "Plugin Install"
879
- msgstr "Plugin Install"
880
-
881
- #: includes/fs-plugin-info-dialog.php:716
882
- msgctxt "e.g. Professional Plan"
883
- msgid "%s Plan"
884
- msgstr "%s Plan"
885
-
886
- #: includes/fs-plugin-info-dialog.php:742
887
- msgctxt "e.g. the best product"
888
- msgid "Best"
889
- msgstr "Best"
890
-
891
- #: includes/fs-plugin-info-dialog.php:748, includes/fs-plugin-info-dialog.php:768
892
- msgctxt "as every month"
893
- msgid "Monthly"
894
- msgstr "Monthly"
895
-
896
- #: includes/fs-plugin-info-dialog.php:751
897
- msgctxt "as once a year"
898
- msgid "Annual"
899
- msgstr "Annual"
900
-
901
- #: includes/fs-plugin-info-dialog.php:754
902
- msgid "Lifetime"
903
- msgstr "Lifetime"
904
-
905
- #: includes/fs-plugin-info-dialog.php:768, includes/fs-plugin-info-dialog.php:770, includes/fs-plugin-info-dialog.php:772
906
- msgctxt "e.g. billed monthly"
907
- msgid "Billed %s"
908
- msgstr "Billed %s"
909
-
910
- #: includes/fs-plugin-info-dialog.php:770
911
- msgctxt "as once a year"
912
- msgid "Annually"
913
- msgstr "Annually"
914
-
915
- #: includes/fs-plugin-info-dialog.php:772
916
- msgctxt "as once a year"
917
- msgid "Once"
918
- msgstr "Once"
919
-
920
- #: includes/fs-plugin-info-dialog.php:778
921
- msgid "Single Site License"
922
- msgstr "Single Site License"
923
-
924
- #: includes/fs-plugin-info-dialog.php:780
925
- msgid "Unlimited Licenses"
926
- msgstr "Unlimited Licenses"
927
-
928
- #: includes/fs-plugin-info-dialog.php:782
929
- msgid "Up to %s Sites"
930
- msgstr "Up to %s Sites"
931
-
932
- #: includes/fs-plugin-info-dialog.php:792, templates/plugin-info/features.php:82
933
- msgctxt "as monthly period"
934
- msgid "mo"
935
- msgstr "mo"
936
-
937
- #: includes/fs-plugin-info-dialog.php:799, templates/plugin-info/features.php:80
938
- msgctxt "as annual period"
939
- msgid "year"
940
- msgstr "year"
941
-
942
- #: includes/fs-plugin-info-dialog.php:853
943
- msgctxt "noun"
944
- msgid "Price"
945
- msgstr "Price"
946
-
947
- #: includes/fs-plugin-info-dialog.php:901
948
- msgid "Save %s"
949
- msgstr "Save %s"
950
-
951
- #: includes/fs-plugin-info-dialog.php:911
952
- msgid "No commitment for %s - cancel anytime"
953
- msgstr "No commitment for %s - cancel anytime"
954
-
955
- #: includes/fs-plugin-info-dialog.php:914
956
- msgid "After your free %s, pay as little as %s"
957
- msgstr "After your free %s, pay as little as %s"
958
-
959
- #: includes/fs-plugin-info-dialog.php:925
960
- msgid "Details"
961
- msgstr "Details"
962
-
963
- #: includes/fs-plugin-info-dialog.php:929, templates/account.php:91, templates/debug.php:201, templates/debug.php:238, templates/debug.php:452, templates/account/partials/addon.php:32
964
- msgctxt "product version"
965
- msgid "Version"
966
- msgstr "Version"
967
-
968
- #: includes/fs-plugin-info-dialog.php:936
969
- msgctxt "as the plugin author"
970
- msgid "Author"
971
- msgstr "Author"
972
-
973
- #: includes/fs-plugin-info-dialog.php:943
974
- msgid "Last Updated"
975
- msgstr "Last Updated"
976
-
977
- #: includes/fs-plugin-info-dialog.php:948, templates/account.php:376
978
- msgctxt "x-ago"
979
- msgid "%s ago"
980
- msgstr "%s ago"
981
-
982
- #: includes/fs-plugin-info-dialog.php:957
983
- msgid "Requires WordPress Version"
984
- msgstr "Requires WordPress Version"
985
-
986
- #: includes/fs-plugin-info-dialog.php:958
987
- msgid "%s or higher"
988
- msgstr "%s or higher"
989
-
990
- #: includes/fs-plugin-info-dialog.php:965
991
- msgid "Compatible up to"
992
- msgstr "Compatible up to"
993
-
994
- #: includes/fs-plugin-info-dialog.php:973
995
- msgid "Downloaded"
996
- msgstr "Downloaded"
997
-
998
- #: includes/fs-plugin-info-dialog.php:977
999
- msgid "%s time"
1000
- msgstr "%s time"
1001
-
1002
- #: includes/fs-plugin-info-dialog.php:979
1003
- msgid "%s times"
1004
- msgstr "%s times"
1005
-
1006
- #: includes/fs-plugin-info-dialog.php:989
1007
- msgid "WordPress.org Plugin Page"
1008
- msgstr "WordPress.org Plugin Page"
1009
-
1010
- #: includes/fs-plugin-info-dialog.php:997
1011
- msgid "Plugin Homepage"
1012
- msgstr "Plugin Homepage"
1013
-
1014
- #: includes/fs-plugin-info-dialog.php:1005, includes/fs-plugin-info-dialog.php:1087
1015
- msgid "Donate to this plugin"
1016
- msgstr "Donate to this plugin"
1017
-
1018
- #: includes/fs-plugin-info-dialog.php:1012
1019
- msgid "Average Rating"
1020
- msgstr "Average Rating"
1021
-
1022
- #: includes/fs-plugin-info-dialog.php:1019
1023
- msgid "based on %s"
1024
- msgstr "based on %s"
1025
-
1026
- #: includes/fs-plugin-info-dialog.php:1023
1027
- msgid "%s rating"
1028
- msgstr "%s rating"
1029
-
1030
- #: includes/fs-plugin-info-dialog.php:1025
1031
- msgid "%s ratings"
1032
- msgstr "%s ratings"
1033
-
1034
- #: includes/fs-plugin-info-dialog.php:1040
1035
- msgid "%s star"
1036
- msgstr "%s star"
1037
-
1038
- #: includes/fs-plugin-info-dialog.php:1042
1039
- msgid "%s stars"
1040
- msgstr "%s stars"
1041
-
1042
- #: includes/fs-plugin-info-dialog.php:1053
1043
- msgid "Click to see reviews that provided a rating of %s"
1044
- msgstr "Click to see reviews that provided a rating of %s"
1045
-
1046
- #: includes/fs-plugin-info-dialog.php:1066
1047
- msgid "Contributors"
1048
- msgstr "Contributors"
1049
-
1050
- #: includes/fs-plugin-info-dialog.php:1095, includes/fs-plugin-info-dialog.php:1097
1051
- msgid "Warning"
1052
- msgstr "Warning"
1053
-
1054
- #: includes/fs-plugin-info-dialog.php:1095
1055
- msgid "This plugin has not been tested with your current version of WordPress."
1056
- msgstr "This plugin has not been tested with your current version of WordPress."
1057
-
1058
- #: includes/fs-plugin-info-dialog.php:1097
1059
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1060
- msgstr "This plugin has not been marked as compatible with your version of WordPress."
1061
-
1062
- #: includes/fs-plugin-info-dialog.php:1116
1063
- msgid "Paid add-on must be deployed to Freemius."
1064
- msgstr "Paid add-on must be deployed to Freemius."
1065
-
1066
- #: includes/fs-plugin-info-dialog.php:1117
1067
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1068
- msgstr "Add-on must be deployed to WordPress.org or Freemius."
1069
-
1070
- #: templates/account.php:81, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:22, templates/account/partials/site.php:295
1071
- msgid "Downgrading your plan"
1072
- msgstr "Downgrading your plan"
1073
-
1074
- #: templates/account.php:82, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:23, templates/account/partials/site.php:296
1075
- msgid "Cancelling the subscription"
1076
- msgstr "Cancelling the subscription"
1077
-
1078
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1079
- #: templates/account.php:84, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:25, templates/account/partials/site.php:298
1080
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1081
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1082
-
1083
- #: templates/account.php:85, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:26, templates/account/partials/site.php:299
1084
- msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1085
- msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1086
-
1087
- #: templates/account.php:86, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:27
1088
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1089
- msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1090
-
1091
- #: templates/account.php:87, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:28, templates/account/partials/site.php:300
1092
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1093
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1094
-
1095
- #: templates/account.php:88, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:29, templates/account/partials/site.php:301
1096
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1097
- msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1098
-
1099
- #. translators: %s: Plan title (e.g. "Professional")
1100
- #: templates/account.php:90, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:31
1101
- msgid "Activate %s Plan"
1102
- msgstr "Activate %s Plan"
1103
-
1104
- #. translators: %s: Time period (e.g. Auto renews in "2 months")
1105
- #: templates/account.php:93, templates/account/partials/addon.php:34, templates/account/partials/site.php:275
1106
- msgid "Auto renews in %s"
1107
- msgstr "Auto renews in %s"
1108
-
1109
- #. translators: %s: Time period (e.g. Expires in "2 months")
1110
- #: templates/account.php:95, templates/account/partials/addon.php:36, templates/account/partials/site.php:277
1111
- msgid "Expires in %s"
1112
- msgstr "Expires in %s"
1113
-
1114
- #: templates/account.php:96, templates/account/partials/addon.php:37
1115
- msgctxt "as synchronize license"
1116
- msgid "Sync License"
1117
- msgstr "Sync License"
1118
-
1119
- #: templates/account.php:97, templates/account/partials/addon.php:38
1120
- msgid "Cancel Trial"
1121
- msgstr "Cancel Trial"
1122
-
1123
- #: templates/account.php:98, templates/account/partials/addon.php:39
1124
- msgid "Change Plan"
1125
- msgstr "Change Plan"
1126
-
1127
- #: templates/account.php:99, templates/account/partials/addon.php:40
1128
- msgctxt "verb"
1129
- msgid "Upgrade"
1130
- msgstr "Upgrade"
1131
-
1132
- #: templates/account.php:101, templates/account/partials/addon.php:42, templates/account/partials/site.php:302
1133
- msgctxt "verb"
1134
- msgid "Downgrade"
1135
- msgstr "Downgrade"
1136
-
1137
- #: templates/account.php:103, templates/add-ons.php:130, templates/plugin-info/features.php:72, templates/account/partials/addon.php:44, templates/account/partials/site.php:31
1138
- msgid "Free"
1139
- msgstr "Free"
1140
-
1141
- #: templates/account.php:104, templates/account/partials/addon.php:45
1142
- msgid "Activate"
1143
- msgstr "Activate"
1144
-
1145
- #: templates/account.php:105, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:46
1146
- msgctxt "as product pricing plan"
1147
- msgid "Plan"
1148
- msgstr "Plan"
1149
-
1150
- #: templates/account.php:158
1151
- msgid "Free Trial"
1152
- msgstr "Free Trial"
1153
-
1154
- #: templates/account.php:169
1155
- msgid "Account Details"
1156
- msgstr "Account Details"
1157
-
1158
- #: templates/account.php:179
1159
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1160
- msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1161
-
1162
- #: templates/account.php:181
1163
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1164
- msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1165
-
1166
- #: templates/account.php:184
1167
- msgid "Delete Account"
1168
- msgstr "Delete Account"
1169
-
1170
- #: templates/account.php:196, templates/account/partials/addon.php:159, templates/account/partials/deactivate-license-button.php:35
1171
- msgid "Deactivate License"
1172
- msgstr "Deactivate License"
1173
-
1174
- #: templates/account.php:219, templates/forms/subscription-cancellation.php:125
1175
- msgid "Are you sure you want to proceed?"
1176
- msgstr "Are you sure you want to proceed?"
1177
-
1178
- #: templates/account.php:219, templates/account/partials/addon.php:182
1179
- msgid "Cancel Subscription"
1180
- msgstr "Cancel Subscription"
1181
-
1182
- #: templates/account.php:247
1183
- msgctxt "as synchronize"
1184
- msgid "Sync"
1185
- msgstr "Sync"
1186
-
1187
- #: templates/account.php:261, templates/debug.php:487
1188
- msgid "Name"
1189
- msgstr "Name"
1190
-
1191
- #: templates/account.php:267, templates/debug.php:488
1192
- msgid "Email"
1193
- msgstr "Email"
1194
-
1195
- #: templates/account.php:274, templates/debug.php:370, templates/debug.php:526
1196
- msgid "User ID"
1197
- msgstr "User ID"
1198
-
1199
- #: templates/account.php:282
1200
- msgid "Site ID"
1201
- msgstr "Site ID"
1202
-
1203
- #: templates/account.php:285
1204
- msgid "No ID"
1205
- msgstr "No ID"
1206
-
1207
- #: templates/account.php:290, templates/debug.php:243, templates/debug.php:372, templates/debug.php:453, templates/debug.php:490, templates/account/partials/site.php:219
1208
- msgid "Public Key"
1209
- msgstr "Public Key"
1210
-
1211
- #: templates/account.php:296, templates/debug.php:373, templates/debug.php:454, templates/debug.php:491, templates/account/partials/site.php:231
1212
- msgid "Secret Key"
1213
- msgstr "Secret Key"
1214
-
1215
- #: templates/account.php:299
1216
- msgctxt "as secret encryption key missing"
1217
- msgid "No Secret"
1218
- msgstr "No Secret"
1219
-
1220
- #: templates/account.php:318, templates/account/partials/site.php:112, templates/account/partials/site.php:114
1221
- msgid "Trial"
1222
- msgstr "Trial"
1223
-
1224
- #: templates/account.php:337, templates/debug.php:531, templates/account/partials/site.php:248
1225
- msgid "License Key"
1226
- msgstr "License Key"
1227
-
1228
- #: templates/account.php:367
1229
- msgid "not verified"
1230
- msgstr "not verified"
1231
-
1232
- #: templates/account.php:376, templates/account/partials/addon.php:120
1233
- msgid "Expired"
1234
- msgstr "Expired"
1235
-
1236
- #: templates/account.php:428
1237
- msgid "Premium version"
1238
- msgstr "Premium version"
1239
-
1240
- #: templates/account.php:430
1241
- msgid "Free version"
1242
- msgstr "Free version"
1243
-
1244
- #: templates/account.php:442
1245
- msgid "Verify Email"
1246
- msgstr "Verify Email"
1247
-
1248
- #: templates/account.php:453
1249
- msgid "Download %s Version"
1250
- msgstr "Download %s Version"
1251
-
1252
- #: templates/account.php:467, templates/account.php:649, templates/account/partials/site.php:237, templates/account/partials/site.php:255
1253
- msgctxt "verb"
1254
- msgid "Show"
1255
- msgstr "Show"
1256
-
1257
- #: templates/account.php:481
1258
- msgid "What is your %s?"
1259
- msgstr "What is your %s?"
1260
-
1261
- #: templates/account.php:489, templates/account/billing.php:27
1262
- msgctxt "verb"
1263
- msgid "Edit"
1264
- msgstr "Edit"
1265
-
1266
- #: templates/account.php:502
1267
- msgid "Sites"
1268
- msgstr "Sites"
1269
-
1270
- #: templates/account.php:513
1271
- msgid "Search by address"
1272
- msgstr "Search by address"
1273
-
1274
- #: templates/account.php:522, templates/account.php:570, templates/debug.php:236, templates/debug.php:364, templates/debug.php:449, templates/debug.php:486, templates/debug.php:524, templates/debug.php:597, templates/account/payments.php:35, templates/debug/logger.php:21
1275
- msgid "ID"
1276
- msgstr "ID"
1277
-
1278
- #: templates/account.php:523, templates/debug.php:367
1279
- msgid "Address"
1280
- msgstr "Address"
1281
-
1282
- #: templates/account.php:524
1283
- msgid "License"
1284
- msgstr "License"
1285
-
1286
- #: templates/account.php:525
1287
- msgid "Plan"
1288
- msgstr "Plan"
1289
-
1290
- #: templates/account.php:573
1291
- msgctxt "as software license"
1292
- msgid "License"
1293
- msgstr "License"
1294
-
1295
- #: templates/account.php:643
1296
- msgctxt "verb"
1297
- msgid "Hide"
1298
- msgstr "Hide"
1299
-
1300
- #: templates/account.php:686
1301
- msgid "Cancelling %s"
1302
- msgstr "Cancelling %s"
1303
-
1304
- #: templates/account.php:686, templates/account.php:703, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:117
1305
- msgid "trial"
1306
- msgstr "trial"
1307
-
1308
- #: templates/account.php:701, templates/forms/deactivation/form.php:134
1309
- msgid "Cancelling %s..."
1310
- msgstr "Cancelling %s..."
1311
-
1312
- #: templates/account.php:704, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:118
1313
- msgid "subscription"
1314
- msgstr "subscription"
1315
-
1316
- #: templates/account.php:718
1317
- msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1318
- msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1319
-
1320
- #: templates/add-ons.php:36
1321
- msgid "Add Ons for %s"
1322
- msgstr "Add Ons for %s"
1323
-
1324
- #: templates/add-ons.php:44
1325
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1326
- msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1327
-
1328
- #: templates/add-ons.php:139
1329
- msgid "View details"
1330
- msgstr "View details"
1331
-
1332
- #: templates/admin-notice.php:13, templates/forms/license-activation.php:208, templates/forms/resend-key.php:77
1333
- msgctxt "as close a window"
1334
- msgid "Dismiss"
1335
- msgstr "Dismiss"
1336
-
1337
- #: templates/auto-installation.php:45
1338
- msgid "%s sec"
1339
- msgstr "%s sec"
1340
-
1341
- #: templates/auto-installation.php:83
1342
- msgid "Automatic Installation"
1343
- msgstr "Automatic Installation"
1344
-
1345
- #: templates/auto-installation.php:93
1346
- 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."
1347
- 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."
1348
-
1349
- #: templates/auto-installation.php:104
1350
- 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."
1351
- 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."
1352
-
1353
- #: templates/auto-installation.php:109
1354
- msgid "Cancel Installation"
1355
- msgstr "Cancel Installation"
1356
-
1357
- #: templates/checkout.php:172
1358
- msgid "Checkout"
1359
- msgstr "Checkout"
1360
-
1361
- #: templates/checkout.php:172
1362
- msgid "PCI compliant"
1363
- msgstr "PCI compliant"
1364
-
1365
- #. translators: %s: name (e.g. Hey John,)
1366
- #: templates/connect.php:112
1367
- msgctxt "greeting"
1368
- msgid "Hey %s,"
1369
- msgstr "Hey %s,"
1370
-
1371
- #: templates/connect.php:154
1372
- msgid "Allow & Continue"
1373
- msgstr "Allow & Continue"
1374
-
1375
- #: templates/connect.php:158
1376
- msgid "Re-send activation email"
1377
- msgstr "Re-send activation email"
1378
-
1379
- #: templates/connect.php:162
1380
- msgid "Thanks %s!"
1381
- msgstr "Thanks %s!"
1382
-
1383
- #: templates/connect.php:172, templates/forms/license-activation.php:43
1384
- msgid "Agree & Activate License"
1385
- msgstr "Agree & Activate License"
1386
-
1387
- #: templates/connect.php:181
1388
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1389
- msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
1390
-
1391
- #: templates/connect.php:188
1392
- 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."
1393
- 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."
1394
-
1395
- #: templates/connect.php:189
1396
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1397
- msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1398
-
1399
- #: templates/connect.php:195
1400
- 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."
1401
- 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."
1402
-
1403
- #: templates/connect.php:196
1404
- 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."
1405
- 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."
1406
-
1407
- #: templates/connect.php:230
1408
- msgid "We're excited to introduce the Freemius network-level integration."
1409
- msgstr "We're excited to introduce the Freemius network-level integration."
1410
-
1411
- #: templates/connect.php:233
1412
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1413
- msgstr "During the update process we detected %d site(s) that are still pending license activation."
1414
-
1415
- #: templates/connect.php:235
1416
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1417
- msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1418
-
1419
- #: templates/connect.php:237
1420
- msgid "%s's paid features"
1421
- msgstr "%s's paid features"
1422
-
1423
- #: templates/connect.php:242
1424
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1425
- msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1426
-
1427
- #: templates/connect.php:244
1428
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1429
- msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1430
-
1431
- #: templates/connect.php:253, templates/forms/license-activation.php:46
1432
- msgid "License key"
1433
- msgstr "License key"
1434
-
1435
- #: templates/connect.php:256, templates/forms/license-activation.php:19
1436
- msgid "Can't find your license key?"
1437
- msgstr "Can't find your license key?"
1438
-
1439
- #: templates/connect.php:315, templates/connect.php:630, templates/forms/deactivation/retry-skip.php:20
1440
- msgctxt "verb"
1441
- msgid "Skip"
1442
- msgstr "Skip"
1443
-
1444
- #: templates/connect.php:318
1445
- msgid "Delegate to Site Admins"
1446
- msgstr "Delegate to Site Admins"
1447
-
1448
- #: templates/connect.php:318
1449
- msgid "If you click it, this decision will be delegated to the sites administrators."
1450
- msgstr "If you click it, this decision will be delegated to the sites administrators."
1451
-
1452
- #: templates/connect.php:346
1453
- msgid "Your Profile Overview"
1454
- msgstr "Your Profile Overview"
1455
-
1456
- #: templates/connect.php:347
1457
- msgid "Name and email address"
1458
- msgstr "Name and email address"
1459
-
1460
- #: templates/connect.php:352
1461
- msgid "Your Site Overview"
1462
- msgstr "Your Site Overview"
1463
-
1464
- #: templates/connect.php:353
1465
- msgid "Site URL, WP version, PHP info, plugins & themes"
1466
- msgstr "Site URL, WP version, PHP info, plugins & themes"
1467
-
1468
- #: templates/connect.php:358
1469
- msgid "Admin Notices"
1470
- msgstr "Admin Notices"
1471
-
1472
- #: templates/connect.php:359, templates/connect.php:375
1473
- msgid "Updates, announcements, marketing, no spam"
1474
- msgstr "Updates, announcements, marketing, no spam"
1475
-
1476
- #: templates/connect.php:364
1477
- msgid "Current %s Events"
1478
- msgstr "Current %s Events"
1479
-
1480
- #: templates/connect.php:365
1481
- msgid "Activation, deactivation and uninstall"
1482
- msgstr "Activation, deactivation and uninstall"
1483
-
1484
- #: templates/connect.php:374
1485
- msgid "Newsletter"
1486
- msgstr "Newsletter"
1487
-
1488
- #: templates/connect.php:391, templates/forms/license-activation.php:38
1489
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1490
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1491
-
1492
- #: templates/connect.php:396
1493
- msgid "What permissions are being granted?"
1494
- msgstr "What permissions are being granted?"
1495
-
1496
- #: templates/connect.php:417
1497
- msgid "Don't have a license key?"
1498
- msgstr "Don't have a license key?"
1499
-
1500
- #: templates/connect.php:418
1501
- msgid "Activate Free Version"
1502
- msgstr "Activate Free Version"
1503
-
1504
- #: templates/connect.php:420
1505
- msgid "Have a license key?"
1506
- msgstr "Have a license key?"
1507
-
1508
- #: templates/connect.php:428
1509
- msgid "Privacy Policy"
1510
- msgstr "Privacy Policy"
1511
-
1512
- #: templates/connect.php:430
1513
- msgid "License Agreement"
1514
- msgstr "License Agreement"
1515
-
1516
- #: templates/connect.php:430
1517
- msgid "Terms of Service"
1518
- msgstr "Terms of Service"
1519
-
1520
- #: templates/connect.php:766
1521
- msgctxt "as in the process of sending an email"
1522
- msgid "Sending email"
1523
- msgstr "Sending email"
1524
-
1525
- #: templates/connect.php:767
1526
- msgctxt "as activating plugin"
1527
- msgid "Activating"
1528
- msgstr "Activating"
1529
-
1530
- #: templates/contact.php:78
1531
- msgid "Contact"
1532
- msgstr "Contact"
1533
-
1534
- #: templates/debug.php:17
1535
- msgctxt "as turned off"
1536
- msgid "Off"
1537
- msgstr "Off"
1538
-
1539
- #: templates/debug.php:18
1540
- msgctxt "as turned on"
1541
- msgid "On"
1542
- msgstr "On"
1543
-
1544
- #: templates/debug.php:20
1545
- msgid "SDK"
1546
- msgstr "SDK"
1547
-
1548
- #: templates/debug.php:24
1549
- msgctxt "as code debugging"
1550
- msgid "Debugging"
1551
- msgstr "Debugging"
1552
-
1553
- #: templates/debug.php:54, templates/debug.php:248, templates/debug.php:374, templates/debug.php:492
1554
- msgid "Actions"
1555
- msgstr "Actions"
1556
-
1557
- #: templates/debug.php:64
1558
- msgid "Are you sure you want to delete all Freemius data?"
1559
- msgstr "Are you sure you want to delete all Freemius data?"
1560
-
1561
- #: templates/debug.php:64
1562
- msgid "Delete All Accounts"
1563
- msgstr "Delete All Accounts"
1564
-
1565
- #: templates/debug.php:71
1566
- msgid "Clear API Cache"
1567
- msgstr "Clear API Cache"
1568
-
1569
- #: templates/debug.php:79
1570
- msgid "Clear Updates Transients"
1571
- msgstr "Clear Updates Transients"
1572
-
1573
- #: templates/debug.php:86
1574
- msgid "Sync Data From Server"
1575
- msgstr "Sync Data From Server"
1576
-
1577
- #: templates/debug.php:95
1578
- msgid "Migrate Options to Network"
1579
- msgstr "Migrate Options to Network"
1580
-
1581
- #: templates/debug.php:100
1582
- msgid "Load DB Option"
1583
- msgstr "Load DB Option"
1584
-
1585
- #: templates/debug.php:103
1586
- msgid "Set DB Option"
1587
- msgstr "Set DB Option"
1588
-
1589
- #: templates/debug.php:180
1590
- msgid "Key"
1591
- msgstr "Key"
1592
-
1593
- #: templates/debug.php:181
1594
- msgid "Value"
1595
- msgstr "Value"
1596
-
1597
- #: templates/debug.php:197
1598
- msgctxt "as software development kit versions"
1599
- msgid "SDK Versions"
1600
- msgstr "SDK Versions"
1601
-
1602
- #: templates/debug.php:202
1603
- msgid "SDK Path"
1604
- msgstr "SDK Path"
1605
-
1606
- #: templates/debug.php:203, templates/debug.php:242
1607
- msgid "Module Path"
1608
- msgstr "Module Path"
1609
-
1610
- #: templates/debug.php:204
1611
- msgid "Is Active"
1612
- msgstr "Is Active"
1613
-
1614
- #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:35
1615
- msgid "Plugins"
1616
- msgstr "Plugins"
1617
-
1618
- #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:56
1619
- msgid "Themes"
1620
- msgstr "Themes"
1621
-
1622
- #: templates/debug.php:237, templates/debug.php:369, templates/debug.php:451, templates/debug/scheduled-crons.php:80
1623
- msgid "Slug"
1624
- msgstr "Slug"
1625
-
1626
- #: templates/debug.php:239, templates/debug.php:450
1627
- msgid "Title"
1628
- msgstr "Title"
1629
-
1630
- #: templates/debug.php:240
1631
- msgctxt "as application program interface"
1632
- msgid "API"
1633
- msgstr "API"
1634
-
1635
- #: templates/debug.php:241
1636
- msgid "Freemius State"
1637
- msgstr "Freemius State"
1638
-
1639
- #: templates/debug.php:245
1640
- msgid "Network Blog"
1641
- msgstr "Network Blog"
1642
-
1643
- #: templates/debug.php:246
1644
- msgid "Network User"
1645
- msgstr "Network User"
1646
-
1647
- #: templates/debug.php:283
1648
- msgctxt "as connection was successful"
1649
- msgid "Connected"
1650
- msgstr "Connected"
1651
-
1652
- #: templates/debug.php:284
1653
- msgctxt "as connection blocked"
1654
- msgid "Blocked"
1655
- msgstr "Blocked"
1656
-
1657
- #: templates/debug.php:320
1658
- msgid "Simulate Trial Promotion"
1659
- msgstr "Simulate Trial Promotion"
1660
-
1661
- #: templates/debug.php:332
1662
- msgid "Simulate Network Upgrade"
1663
- msgstr "Simulate Network Upgrade"
1664
-
1665
- #: templates/debug.php:358
1666
- msgid "%s Installs"
1667
- msgstr "%s Installs"
1668
-
1669
- #: templates/debug.php:360
1670
- msgctxt "like websites"
1671
- msgid "Sites"
1672
- msgstr "Sites"
1673
-
1674
- #: templates/debug.php:366, templates/account/partials/site.php:148
1675
- msgid "Blog ID"
1676
- msgstr "Blog ID"
1677
-
1678
- #: templates/debug.php:431, templates/debug.php:509, templates/account/partials/addon.php:339
1679
- msgctxt "verb"
1680
- msgid "Delete"
1681
- msgstr "Delete"
1682
-
1683
- #: templates/debug.php:445
1684
- msgid "Add Ons of module %s"
1685
- msgstr "Add Ons of module %s"
1686
-
1687
- #: templates/debug.php:482
1688
- msgid "Users"
1689
- msgstr "Users"
1690
-
1691
- #: templates/debug.php:489
1692
- msgid "Verified"
1693
- msgstr "Verified"
1694
-
1695
- #: templates/debug.php:520
1696
- msgid "%s Licenses"
1697
- msgstr "%s Licenses"
1698
-
1699
- #: templates/debug.php:525
1700
- msgid "Plugin ID"
1701
- msgstr "Plugin ID"
1702
-
1703
- #: templates/debug.php:527
1704
- msgid "Plan ID"
1705
- msgstr "Plan ID"
1706
-
1707
- #: templates/debug.php:528
1708
- msgid "Quota"
1709
- msgstr "Quota"
1710
-
1711
- #: templates/debug.php:529
1712
- msgid "Activated"
1713
- msgstr "Activated"
1714
-
1715
- #: templates/debug.php:530
1716
- msgid "Blocking"
1717
- msgstr "Blocking"
1718
-
1719
- #: templates/debug.php:532
1720
- msgctxt "as expiration date"
1721
- msgid "Expiration"
1722
- msgstr "Expiration"
1723
-
1724
- #: templates/debug.php:555
1725
- msgid "Debug Log"
1726
- msgstr "Debug Log"
1727
-
1728
- #: templates/debug.php:559
1729
- msgid "All Types"
1730
- msgstr "All Types"
1731
-
1732
- #: templates/debug.php:566
1733
- msgid "All Requests"
1734
- msgstr "All Requests"
1735
-
1736
- #: templates/debug.php:571, templates/debug.php:600, templates/debug/logger.php:25
1737
- msgid "File"
1738
- msgstr "File"
1739
-
1740
- #: templates/debug.php:572, templates/debug.php:598, templates/debug/logger.php:23
1741
- msgid "Function"
1742
- msgstr "Function"
1743
-
1744
- #: templates/debug.php:573
1745
- msgid "Process ID"
1746
- msgstr "Process ID"
1747
-
1748
- #: templates/debug.php:574
1749
- msgid "Logger"
1750
- msgstr "Logger"
1751
-
1752
- #: templates/debug.php:575, templates/debug.php:599, templates/debug/logger.php:24
1753
- msgid "Message"
1754
- msgstr "Message"
1755
-
1756
- #: templates/debug.php:577
1757
- msgid "Filter"
1758
- msgstr "Filter"
1759
-
1760
- #: templates/debug.php:585
1761
- msgid "Download"
1762
- msgstr "Download"
1763
-
1764
- #: templates/debug.php:596, templates/debug/logger.php:22
1765
- msgid "Type"
1766
- msgstr "Type"
1767
-
1768
- #: templates/debug.php:601, templates/debug/logger.php:26
1769
- msgid "Timestamp"
1770
- msgstr "Timestamp"
1771
-
1772
- #: templates/secure-https-header.php:28
1773
- msgid "Secure HTTPS %s page, running from an external domain"
1774
- msgstr "Secure HTTPS %s page, running from an external domain"
1775
-
1776
- #: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
1777
- msgid "Support"
1778
- msgstr "Support"
1779
-
1780
- #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
1781
- msgctxt "milliseconds"
1782
- msgid "ms"
1783
- msgstr "ms"
1784
-
1785
- #: includes/debug/debug-bar-start.php:41
1786
- msgid "Freemius API"
1787
- msgstr "Freemius API"
1788
-
1789
- #: includes/debug/debug-bar-start.php:42
1790
- msgid "Requests"
1791
- msgstr "Requests"
1792
-
1793
- #: templates/account/billing.php:28
1794
- msgctxt "verb"
1795
- msgid "Update"
1796
- msgstr "Update"
1797
-
1798
- #: templates/account/billing.php:39
1799
- msgid "Billing"
1800
- msgstr "Billing"
1801
-
1802
- #: templates/account/billing.php:44, templates/account/billing.php:44
1803
- msgid "Business name"
1804
- msgstr "Business name"
1805
-
1806
- #: templates/account/billing.php:45, templates/account/billing.php:45
1807
- msgid "Tax / VAT ID"
1808
- msgstr "Tax / VAT ID"
1809
-
1810
- #: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49
1811
- msgid "Address Line %d"
1812
- msgstr "Address Line %d"
1813
-
1814
- #: templates/account/billing.php:52, templates/account/billing.php:52
1815
- msgid "City"
1816
- msgstr "City"
1817
-
1818
- #: templates/account/billing.php:52, templates/account/billing.php:52
1819
- msgid "Town"
1820
- msgstr "Town"
1821
-
1822
- #: templates/account/billing.php:53, templates/account/billing.php:53
1823
- msgid "ZIP / Postal Code"
1824
- msgstr "ZIP / Postal Code"
1825
-
1826
- #: templates/account/billing.php:308
1827
- msgid "Country"
1828
- msgstr "Country"
1829
-
1830
- #: templates/account/billing.php:310
1831
- msgid "Select Country"
1832
- msgstr "Select Country"
1833
-
1834
- #: templates/account/billing.php:317, templates/account/billing.php:318
1835
- msgid "State"
1836
- msgstr "State"
1837
-
1838
- #: templates/account/billing.php:317, templates/account/billing.php:318
1839
- msgid "Province"
1840
- msgstr "Province"
1841
-
1842
- #: templates/account/payments.php:29
1843
- msgid "Payments"
1844
- msgstr "Payments"
1845
-
1846
- #: templates/account/payments.php:36
1847
- msgid "Date"
1848
- msgstr "Date"
1849
-
1850
- #: templates/account/payments.php:37
1851
- msgid "Amount"
1852
- msgstr "Amount"
1853
-
1854
- #: templates/account/payments.php:38, templates/account/payments.php:50
1855
- msgid "Invoice"
1856
- msgstr "Invoice"
1857
-
1858
- #: templates/debug/api-calls.php:56
1859
- msgid "API"
1860
- msgstr "API"
1861
-
1862
- #: templates/debug/api-calls.php:68
1863
- msgid "Method"
1864
- msgstr "Method"
1865
-
1866
- #: templates/debug/api-calls.php:69
1867
- msgid "Code"
1868
- msgstr "Code"
1869
-
1870
- #: templates/debug/api-calls.php:70
1871
- msgid "Length"
1872
- msgstr "Length"
1873
-
1874
- #: templates/debug/api-calls.php:71
1875
- msgctxt "as file/folder path"
1876
- msgid "Path"
1877
- msgstr "Path"
1878
-
1879
- #: templates/debug/api-calls.php:73
1880
- msgid "Body"
1881
- msgstr "Body"
1882
-
1883
- #: templates/debug/api-calls.php:75
1884
- msgid "Result"
1885
- msgstr "Result"
1886
-
1887
- #: templates/debug/api-calls.php:76
1888
- msgid "Start"
1889
- msgstr "Start"
1890
-
1891
- #: templates/debug/api-calls.php:77
1892
- msgid "End"
1893
- msgstr "End"
1894
-
1895
- #: templates/debug/logger.php:15
1896
- msgid "Log"
1897
- msgstr "Log"
1898
-
1899
- #. translators: %s: time period (e.g. In "2 hours")
1900
- #: templates/debug/plugins-themes-sync.php:18, templates/debug/scheduled-crons.php:91
1901
- msgid "In %s"
1902
- msgstr "In %s"
1903
-
1904
- #. translators: %s: time period (e.g. "2 hours" ago)
1905
- #: templates/debug/plugins-themes-sync.php:20, templates/debug/scheduled-crons.php:93
1906
- msgid "%s ago"
1907
- msgstr "%s ago"
1908
-
1909
- #: templates/debug/plugins-themes-sync.php:21, templates/debug/scheduled-crons.php:74
1910
- msgctxt "seconds"
1911
- msgid "sec"
1912
- msgstr "sec"
1913
-
1914
- #: templates/debug/plugins-themes-sync.php:23
1915
- msgid "Plugins & Themes Sync"
1916
- msgstr "Plugins & Themes Sync"
1917
-
1918
- #: templates/debug/plugins-themes-sync.php:28
1919
- msgid "Total"
1920
- msgstr "Total"
1921
-
1922
- #: templates/debug/plugins-themes-sync.php:29, templates/debug/scheduled-crons.php:84
1923
- msgid "Last"
1924
- msgstr "Last"
1925
-
1926
- #: templates/debug/scheduled-crons.php:76
1927
- msgid "Scheduled Crons"
1928
- msgstr "Scheduled Crons"
1929
-
1930
- #: templates/debug/scheduled-crons.php:81
1931
- msgid "Module"
1932
- msgstr "Module"
1933
-
1934
- #: templates/debug/scheduled-crons.php:82
1935
- msgid "Module Type"
1936
- msgstr "Module Type"
1937
-
1938
- #: templates/debug/scheduled-crons.php:83
1939
- msgid "Cron Type"
1940
- msgstr "Cron Type"
1941
-
1942
- #: templates/debug/scheduled-crons.php:85
1943
- msgid "Next"
1944
- msgstr "Next"
1945
-
1946
- #: templates/forms/affiliation.php:82
1947
- msgid "Non-expiring"
1948
- msgstr "Non-expiring"
1949
-
1950
- #: templates/forms/affiliation.php:85
1951
- msgid "Apply to become an affiliate"
1952
- msgstr "Apply to become an affiliate"
1953
-
1954
- #: templates/forms/affiliation.php:104
1955
- msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1956
- msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1957
-
1958
- #: templates/forms/affiliation.php:119
1959
- 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."
1960
- 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."
1961
-
1962
- #: templates/forms/affiliation.php:122
1963
- msgid "Your affiliation account was temporarily suspended."
1964
- msgstr "Your affiliation account was temporarily suspended."
1965
-
1966
- #: templates/forms/affiliation.php:125
1967
- 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."
1968
- 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."
1969
-
1970
- #: templates/forms/affiliation.php:128
1971
- msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1972
- msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1973
-
1974
- #: templates/forms/affiliation.php:141
1975
- msgid "Like the %s? Become our ambassador and earn cash ;-)"
1976
- msgstr "Like the %s? Become our ambassador and earn cash ;-)"
1977
-
1978
- #: templates/forms/affiliation.php:142
1979
- msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1980
- msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1981
-
1982
- #: templates/forms/affiliation.php:145
1983
- msgid "Program Summary"
1984
- msgstr "Program Summary"
1985
-
1986
- #: templates/forms/affiliation.php:147
1987
- msgid "%s commission when a customer purchases a new license."
1988
- msgstr "%s commission when a customer purchases a new license."
1989
-
1990
- #: templates/forms/affiliation.php:149
1991
- msgid "Get commission for automated subscription renewals."
1992
- msgstr "Get commission for automated subscription renewals."
1993
-
1994
- #: templates/forms/affiliation.php:152
1995
- msgid "%s tracking cookie after the first visit to maximize earnings potential."
1996
- msgstr "%s tracking cookie after the first visit to maximize earnings potential."
1997
-
1998
- #: templates/forms/affiliation.php:155
1999
- msgid "Unlimited commissions."
2000
- msgstr "Unlimited commissions."
2001
-
2002
- #: templates/forms/affiliation.php:157
2003
- msgid "%s minimum payout amount."
2004
- msgstr "%s minimum payout amount."
2005
-
2006
- #: templates/forms/affiliation.php:158
2007
- msgid "Payouts are in USD and processed monthly via PayPal."
2008
- msgstr "Payouts are in USD and processed monthly via PayPal."
2009
-
2010
- #: templates/forms/affiliation.php:159
2011
- msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2012
- msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2013
-
2014
- #: templates/forms/affiliation.php:162
2015
- msgid "Affiliate"
2016
- msgstr "Affiliate"
2017
-
2018
- #: templates/forms/affiliation.php:165, templates/forms/resend-key.php:23
2019
- msgid "Email address"
2020
- msgstr "Email address"
2021
-
2022
- #: templates/forms/affiliation.php:169
2023
- msgid "Full name"
2024
- msgstr "Full name"
2025
-
2026
- #: templates/forms/affiliation.php:173
2027
- msgid "PayPal account email address"
2028
- msgstr "PayPal account email address"
2029
-
2030
- #: templates/forms/affiliation.php:177
2031
- msgid "Where are you going to promote the %s?"
2032
- msgstr "Where are you going to promote the %s?"
2033
-
2034
- #: templates/forms/affiliation.php:179
2035
- msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2036
- msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2037
-
2038
- #: templates/forms/affiliation.php:181
2039
- msgid "Add another domain"
2040
- msgstr "Add another domain"
2041
-
2042
- #: templates/forms/affiliation.php:185
2043
- msgid "Extra Domains"
2044
- msgstr "Extra Domains"
2045
-
2046
- #: templates/forms/affiliation.php:186
2047
- msgid "Extra domains where you will be marketing the product from."
2048
- msgstr "Extra domains where you will be marketing the product from."
2049
-
2050
- #: templates/forms/affiliation.php:196
2051
- msgid "Promotion methods"
2052
- msgstr "Promotion methods"
2053
-
2054
- #: templates/forms/affiliation.php:199
2055
- msgid "Social media (Facebook, Twitter, etc.)"
2056
- msgstr "Social media (Facebook, Twitter, etc.)"
2057
-
2058
- #: templates/forms/affiliation.php:203
2059
- msgid "Mobile apps"
2060
- msgstr "Mobile apps"
2061
-
2062
- #: templates/forms/affiliation.php:207
2063
- msgid "Website, email, and social media statistics (optional)"
2064
- msgstr "Website, email, and social media statistics (optional)"
2065
-
2066
- #: templates/forms/affiliation.php:210
2067
- 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)."
2068
- 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)."
2069
-
2070
- #: templates/forms/affiliation.php:214
2071
- msgid "How will you promote us?"
2072
- msgstr "How will you promote us?"
2073
-
2074
- #: templates/forms/affiliation.php:217
2075
- msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2076
- msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2077
-
2078
- #: templates/forms/affiliation.php:223, templates/forms/resend-key.php:22
2079
- msgid "Cancel"
2080
- msgstr "Cancel"
2081
-
2082
- #: templates/forms/affiliation.php:225
2083
- msgid "Become an affiliate"
2084
- msgstr "Become an affiliate"
2085
-
2086
- #: templates/forms/license-activation.php:20
2087
- msgid "Please enter the license key that you received in the email right after the purchase:"
2088
- msgstr "Please enter the license key that you received in the email right after the purchase:"
2089
-
2090
- #: templates/forms/license-activation.php:25
2091
- msgid "Update License"
2092
- msgstr "Update License"
2093
-
2094
- #: templates/forms/optout.php:30
2095
- msgctxt "verb"
2096
- msgid "Opt Out"
2097
- msgstr "Opt Out"
2098
-
2099
- #: templates/forms/optout.php:31
2100
- msgctxt "verb"
2101
- msgid "Opt In"
2102
- msgstr "Opt In"
2103
-
2104
- #: templates/forms/optout.php:33
2105
- 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."
2106
- 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."
2107
-
2108
- #: templates/forms/optout.php:35
2109
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2110
- msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2111
-
2112
- #: templates/forms/premium-versions-upgrade-handler.php:40
2113
- msgid "There is a new version of %s available."
2114
- msgstr "There is a new version of %s available."
2115
-
2116
- #: templates/forms/premium-versions-upgrade-handler.php:41
2117
- msgid " %s to access version %s security & feature updates, and support."
2118
- msgstr " %s to access version %s security & feature updates, and support."
2119
-
2120
- #: templates/forms/premium-versions-upgrade-handler.php:54
2121
- msgid "New Version Available"
2122
- msgstr "New Version Available"
2123
-
2124
- #: templates/forms/premium-versions-upgrade-handler.php:75
2125
- msgctxt "close a window"
2126
- msgid "Dismiss"
2127
- msgstr "Dismiss"
2128
-
2129
- #: templates/forms/resend-key.php:21
2130
- msgid "Send License Key"
2131
- msgstr "Send License Key"
2132
-
2133
- #: templates/forms/resend-key.php:57
2134
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2135
- msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key."
2136
-
2137
- #: templates/forms/subscription-cancellation.php:37
2138
- msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2139
- msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2140
-
2141
- #: templates/forms/subscription-cancellation.php:47
2142
- msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2143
- msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2144
-
2145
- #: templates/forms/subscription-cancellation.php:52
2146
- msgid "license"
2147
- msgstr "license"
2148
-
2149
- #: templates/forms/subscription-cancellation.php:57
2150
- msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2151
- msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2152
-
2153
- #: templates/forms/subscription-cancellation.php:68
2154
- msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2155
- msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2156
-
2157
- #: templates/forms/subscription-cancellation.php:103
2158
- msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2159
- msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2160
-
2161
- #: templates/forms/subscription-cancellation.php:136
2162
- msgid "Cancel %s?"
2163
- msgstr "Cancel %s?"
2164
-
2165
- #: templates/forms/subscription-cancellation.php:143
2166
- msgid "Proceed"
2167
- msgstr "Proceed"
2168
-
2169
- #: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:150
2170
- msgid "Cancel %s & Proceed"
2171
- msgstr "Cancel %s & Proceed"
2172
-
2173
- #: templates/forms/trial-start.php:22
2174
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2175
- msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2176
-
2177
- #: templates/forms/trial-start.php:28
2178
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2179
- msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2180
-
2181
- #: templates/js/style-premium-theme.php:37
2182
- msgid "Premium"
2183
- msgstr "Premium"
2184
-
2185
- #: templates/partials/network-activation.php:23
2186
- msgid "Activate license on all sites in the network."
2187
- msgstr "Activate license on all sites in the network."
2188
-
2189
- #: templates/partials/network-activation.php:24
2190
- msgid "Apply on all sites in the network."
2191
- msgstr "Apply on all sites in the network."
2192
-
2193
- #: templates/partials/network-activation.php:27
2194
- msgid "Activate license on all pending sites."
2195
- msgstr "Activate license on all pending sites."
2196
-
2197
- #: templates/partials/network-activation.php:28
2198
- msgid "Apply on all pending sites."
2199
- msgstr "Apply on all pending sites."
2200
-
2201
- #: templates/partials/network-activation.php:36, templates/partials/network-activation.php:68
2202
- msgid "allow"
2203
- msgstr "allow"
2204
-
2205
- #: templates/partials/network-activation.php:38, templates/partials/network-activation.php:70
2206
- msgid "delegate"
2207
- msgstr "delegate"
2208
-
2209
- #: templates/partials/network-activation.php:41, templates/partials/network-activation.php:73
2210
- msgid "skip"
2211
- msgstr "skip"
2212
-
2213
- #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
2214
- msgid "Click to view full-size screenshot %d"
2215
- msgstr "Click to view full-size screenshot %d"
2216
-
2217
- #: templates/plugin-info/features.php:56
2218
- msgid "Unlimited Updates"
2219
- msgstr "Unlimited Updates"
2220
-
2221
- #: templates/account/partials/activate-license-button.php:46
2222
- msgid "Localhost"
2223
- msgstr "Localhost"
2224
-
2225
- #: templates/account/partials/activate-license-button.php:50
2226
- msgctxt "as 5 licenses left"
2227
- msgid "%s left"
2228
- msgstr "%s left"
2229
-
2230
- #: templates/account/partials/activate-license-button.php:51
2231
- msgid "Last license"
2232
- msgstr "Last license"
2233
-
2234
- #: templates/account/partials/addon.php:115
2235
- msgid "Cancelled"
2236
- msgstr "Cancelled"
2237
-
2238
- #: templates/account/partials/addon.php:125
2239
- msgid "No expiration"
2240
- msgstr "No expiration"
2241
-
2242
- #: templates/account/partials/addon.php:264, templates/account/partials/addon.php:317
2243
- msgid "Activate this add-on"
2244
- msgstr "Activate this add-on"
2245
-
2246
- #: templates/account/partials/site.php:181
2247
- msgid "Owner Name"
2248
- msgstr "Owner Name"
2249
-
2250
- #: templates/account/partials/site.php:193
2251
- msgid "Owner Email"
2252
- msgstr "Owner Email"
2253
-
2254
- #: templates/account/partials/site.php:205
2255
- msgid "Owner ID"
2256
- msgstr "Owner ID"
2257
-
2258
- #: templates/account/partials/site.php:270
2259
- msgid "Subscription"
2260
- msgstr "Subscription"
2261
-
2262
- #: templates/forms/deactivation/contact.php:19
2263
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2264
- msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
2265
-
2266
- #: templates/forms/deactivation/contact.php:22
2267
- msgid "Contact Support"
2268
- msgstr "Contact Support"
2269
-
2270
- #: templates/forms/deactivation/form.php:59
2271
- msgid "Anonymous feedback"
2272
- msgstr "Anonymous feedback"
2273
-
2274
- #: templates/forms/deactivation/form.php:66
2275
- msgid "Deactivate"
2276
- msgstr "Deactivate"
2277
-
2278
- #: templates/forms/deactivation/form.php:68
2279
- msgid "Activate %s"
2280
- msgstr "Activate %s"
2281
-
2282
- #: templates/forms/deactivation/form.php:80
2283
- msgid "Quick Feedback"
2284
- msgstr "Quick Feedback"
2285
-
2286
- #: templates/forms/deactivation/form.php:84
2287
- msgid "If you have a moment, please let us know why you are %s"
2288
- msgstr "If you have a moment, please let us know why you are %s"
2289
-
2290
- #: templates/forms/deactivation/form.php:84
2291
- msgid "deactivating"
2292
- msgstr "deactivating"
2293
-
2294
- #: templates/forms/deactivation/form.php:84
2295
- msgid "switching"
2296
- msgstr "switching"
2297
-
2298
- #: templates/forms/deactivation/form.php:332
2299
- msgid "Submit & %s"
2300
- msgstr "Submit & %s"
2301
-
2302
- #: templates/forms/deactivation/form.php:353
2303
- msgid "Kindly tell us the reason so we can improve."
2304
- msgstr "Kindly tell us the reason so we can improve."
2305
-
2306
- #: templates/forms/deactivation/form.php:478
2307
- msgid "Yes - %s"
2308
- msgstr "Yes - %s"
2309
-
2310
- #: templates/forms/deactivation/form.php:485
2311
- msgid "Skip & %s"
2312
- msgstr "Skip & %s"
2313
-
2314
- #: templates/forms/deactivation/retry-skip.php:21
2315
- msgid "Click here to use the plugin anonymously"
2316
- msgstr "Click here to use the plugin anonymously"
2317
-
2318
- #: templates/forms/deactivation/retry-skip.php:23
2319
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2320
- msgstr "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
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: freemius\n"
6
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
7
+ "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: \n"
9
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
10
+ "Language: \n"
11
+ "Language-Team: Freemius Team <admin@freemius.com>\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "MIME-Version: 1.0\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "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"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+
22
+ #: includes/class-freemius.php:1602
23
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
24
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
25
+
26
+ #: includes/class-freemius.php:1604
27
+ msgid "Error"
28
+ msgstr "Error"
29
+
30
+ #: includes/class-freemius.php:1925
31
+ msgid "I found a better %s"
32
+ msgstr "I found a better %s"
33
+
34
+ #: includes/class-freemius.php:1927
35
+ msgid "What's the %s's name?"
36
+ msgstr "What's the %s's name?"
37
+
38
+ #: includes/class-freemius.php:1933
39
+ msgid "It's a temporary %s. I'm just debugging an issue."
40
+ msgstr "It's a temporary %s. I'm just debugging an issue."
41
+
42
+ #: includes/class-freemius.php:1935
43
+ msgid "Deactivation"
44
+ msgstr "Deactivation"
45
+
46
+ #: includes/class-freemius.php:1936
47
+ msgid "Theme Switch"
48
+ msgstr "Theme Switch"
49
+
50
+ #: includes/class-freemius.php:1945, templates/forms/resend-key.php:24
51
+ msgid "Other"
52
+ msgstr "Other"
53
+
54
+ #: includes/class-freemius.php:1953
55
+ msgid "I no longer need the %s"
56
+ msgstr "I no longer need the %s"
57
+
58
+ #: includes/class-freemius.php:1960
59
+ msgid "I only needed the %s for a short period"
60
+ msgstr "I only needed the %s for a short period"
61
+
62
+ #: includes/class-freemius.php:1966
63
+ msgid "The %s broke my site"
64
+ msgstr "The %s broke my site"
65
+
66
+ #: includes/class-freemius.php:1973
67
+ msgid "The %s suddenly stopped working"
68
+ msgstr "The %s suddenly stopped working"
69
+
70
+ #: includes/class-freemius.php:1983
71
+ msgid "I can't pay for it anymore"
72
+ msgstr "I can't pay for it anymore"
73
+
74
+ #: includes/class-freemius.php:1985
75
+ msgid "What price would you feel comfortable paying?"
76
+ msgstr "What price would you feel comfortable paying?"
77
+
78
+ #: includes/class-freemius.php:1991
79
+ msgid "I don't like to share my information with you"
80
+ msgstr "I don't like to share my information with you"
81
+
82
+ #: includes/class-freemius.php:2012
83
+ msgid "The %s didn't work"
84
+ msgstr "The %s didn't work"
85
+
86
+ #: includes/class-freemius.php:2022
87
+ msgid "I couldn't understand how to make it work"
88
+ msgstr "I couldn't understand how to make it work"
89
+
90
+ #: includes/class-freemius.php:2030
91
+ msgid "The %s is great, but I need specific feature that you don't support"
92
+ msgstr "The %s is great, but I need specific feature that you don't support"
93
+
94
+ #: includes/class-freemius.php:2032
95
+ msgid "What feature?"
96
+ msgstr "What feature?"
97
+
98
+ #: includes/class-freemius.php:2036
99
+ msgid "The %s is not working"
100
+ msgstr "The %s is not working"
101
+
102
+ #: includes/class-freemius.php:2038
103
+ msgid "Kindly share what didn't work so we can fix it for future users..."
104
+ msgstr "Kindly share what didn't work so we can fix it for future users..."
105
+
106
+ #: includes/class-freemius.php:2042
107
+ msgid "It's not what I was looking for"
108
+ msgstr "It's not what I was looking for"
109
+
110
+ #: includes/class-freemius.php:2044
111
+ msgid "What you've been looking for?"
112
+ msgstr "What you've been looking for?"
113
+
114
+ #: includes/class-freemius.php:2048
115
+ msgid "The %s didn't work as expected"
116
+ msgstr "The %s didn't work as expected"
117
+
118
+ #: includes/class-freemius.php:2050
119
+ msgid "What did you expect?"
120
+ msgstr "What did you expect?"
121
+
122
+ #: includes/class-freemius.php:2853, templates/debug.php:20
123
+ msgid "Freemius Debug"
124
+ msgstr "Freemius Debug"
125
+
126
+ #: includes/class-freemius.php:3581
127
+ msgid "I don't know what is cURL or how to install it, help me!"
128
+ msgstr "I don't know what is cURL or how to install it, help me!"
129
+
130
+ #: includes/class-freemius.php:3583
131
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
132
+ msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
133
+
134
+ #: includes/class-freemius.php:3590
135
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
136
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
137
+
138
+ #: includes/class-freemius.php:3695
139
+ msgid "Yes - do your thing"
140
+ msgstr "Yes - do your thing"
141
+
142
+ #: includes/class-freemius.php:3700
143
+ msgid "No - just deactivate"
144
+ msgstr "No - just deactivate"
145
+
146
+ #: includes/class-freemius.php:3745, includes/class-freemius.php:4253, includes/class-freemius.php:5318, includes/class-freemius.php:11316, includes/class-freemius.php:14649, includes/class-freemius.php:14701, includes/class-freemius.php:14763, includes/class-freemius.php:16969, includes/class-freemius.php:16979, includes/class-freemius.php:17588, includes/class-freemius.php:18446, includes/class-freemius.php:18561, includes/class-freemius.php:18705, templates/add-ons.php:43
147
+ msgctxt "exclamation"
148
+ msgid "Oops"
149
+ msgstr "Oops"
150
+
151
+ #: includes/class-freemius.php:3814
152
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
153
+ msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
154
+
155
+ #: includes/class-freemius.php:4250
156
+ msgctxt "addonX cannot run without pluginY"
157
+ msgid "%s cannot run without %s."
158
+ msgstr "%s cannot run without %s."
159
+
160
+ #: includes/class-freemius.php:4251
161
+ msgctxt "addonX cannot run..."
162
+ msgid "%s cannot run without the plugin."
163
+ msgstr "%s cannot run without the plugin."
164
+
165
+ #: includes/class-freemius.php:4363, includes/class-freemius.php:4388, includes/class-freemius.php:17659
166
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
167
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
168
+
169
+ #: includes/class-freemius.php:5006
170
+ msgid "Premium %s version was successfully activated."
171
+ msgstr "Premium %s version was successfully activated."
172
+
173
+ #: includes/class-freemius.php:5018, includes/class-freemius.php:6862
174
+ msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
175
+ msgid "W00t"
176
+ msgstr "W00t"
177
+
178
+ #: includes/class-freemius.php:5033
179
+ msgid "You have a %s license."
180
+ msgstr "You have a %s license."
181
+
182
+ #: includes/class-freemius.php:5037, includes/class-freemius.php:14070, includes/class-freemius.php:14081, includes/class-freemius.php:16897, includes/class-freemius.php:17197, includes/class-freemius.php:17263, includes/class-freemius.php:17413
183
+ msgctxt "interjection expressing joy or exuberance"
184
+ msgid "Yee-haw"
185
+ msgstr "Yee-haw"
186
+
187
+ #: includes/class-freemius.php:5301
188
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
189
+ msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
190
+
191
+ #: includes/class-freemius.php:5305
192
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
193
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
194
+
195
+ #: includes/class-freemius.php:5314, templates/add-ons.php:103, templates/account/partials/addon.php:288
196
+ msgid "More information about %s"
197
+ msgstr "More information about %s"
198
+
199
+ #: includes/class-freemius.php:5315
200
+ msgid "Purchase License"
201
+ msgstr "Purchase License"
202
+
203
+ #: includes/class-freemius.php:6230, templates/connect.php:163
204
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
205
+ msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
206
+
207
+ #: includes/class-freemius.php:6234
208
+ msgid "start the trial"
209
+ msgstr "start the trial"
210
+
211
+ #: includes/class-freemius.php:6235, templates/connect.php:167
212
+ msgid "complete the install"
213
+ msgstr "complete the install"
214
+
215
+ #: includes/class-freemius.php:6348
216
+ msgid "You are just one step away - %s"
217
+ msgstr "You are just one step away - %s"
218
+
219
+ #: includes/class-freemius.php:6351
220
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
221
+ msgid "Complete \"%s\" Activation Now"
222
+ msgstr "Complete \"%s\" Activation Now"
223
+
224
+ #: includes/class-freemius.php:6429
225
+ msgid "We made a few tweaks to the %s, %s"
226
+ msgstr "We made a few tweaks to the %s, %s"
227
+
228
+ #: includes/class-freemius.php:6433
229
+ msgid "Opt in to make \"%s\" better!"
230
+ msgstr "Opt in to make \"%s\" better!"
231
+
232
+ #: includes/class-freemius.php:6861
233
+ msgid "The upgrade of %s was successfully completed."
234
+ msgstr "The upgrade of %s was successfully completed."
235
+
236
+ #: includes/class-freemius.php:8705, includes/class-fs-plugin-updater.php:882, includes/class-fs-plugin-updater.php:1077, includes/class-fs-plugin-updater.php:1084, templates/auto-installation.php:32
237
+ msgid "Add-On"
238
+ msgstr "Add-On"
239
+
240
+ #: includes/class-freemius.php:8707, templates/debug.php:359, templates/debug.php:520
241
+ msgid "Plugin"
242
+ msgstr "Plugin"
243
+
244
+ #: includes/class-freemius.php:8708, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
245
+ msgid "Theme"
246
+ msgstr "Theme"
247
+
248
+ #: includes/class-freemius.php:11183
249
+ msgid "Invalid site details collection."
250
+ msgstr "Invalid site details collection."
251
+
252
+ #: includes/class-freemius.php:11303
253
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
254
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
255
+
256
+ #: includes/class-freemius.php:11305
257
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
258
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
259
+
260
+ #: includes/class-freemius.php:11541
261
+ msgid "Account is pending activation."
262
+ msgstr "Account is pending activation."
263
+
264
+ #: includes/class-freemius.php:11653, templates/forms/premium-versions-upgrade-handler.php:47
265
+ msgid "Buy a license now"
266
+ msgstr "Buy a license now"
267
+
268
+ #: includes/class-freemius.php:11665, templates/forms/premium-versions-upgrade-handler.php:46
269
+ msgid "Renew your license now"
270
+ msgstr "Renew your license now"
271
+
272
+ #: includes/class-freemius.php:11669
273
+ msgid "%s to access version %s security & feature updates, and support."
274
+ msgstr "%s to access version %s security & feature updates, and support."
275
+
276
+ #: includes/class-freemius.php:14052
277
+ msgid "%s activation was successfully completed."
278
+ msgstr "%s activation was successfully completed."
279
+
280
+ #: includes/class-freemius.php:14066
281
+ msgid "Your account was successfully activated with the %s plan."
282
+ msgstr "Your account was successfully activated with the %s plan."
283
+
284
+ #: includes/class-freemius.php:14077, includes/class-freemius.php:17259
285
+ msgid "Your trial has been successfully started."
286
+ msgstr "Your trial has been successfully started."
287
+
288
+ #: includes/class-freemius.php:14647, includes/class-freemius.php:14699, includes/class-freemius.php:14761
289
+ msgid "Couldn't activate %s."
290
+ msgstr "Couldn't activate %s."
291
+
292
+ #: includes/class-freemius.php:14648, includes/class-freemius.php:14700, includes/class-freemius.php:14762
293
+ msgid "Please contact us with the following message:"
294
+ msgstr "Please contact us with the following message:"
295
+
296
+ #: includes/class-freemius.php:15111, includes/class-freemius.php:19543
297
+ msgid "Upgrade"
298
+ msgstr "Upgrade"
299
+
300
+ #: includes/class-freemius.php:15117
301
+ msgid "Start Trial"
302
+ msgstr "Start Trial"
303
+
304
+ #: includes/class-freemius.php:15119
305
+ msgid "Pricing"
306
+ msgstr "Pricing"
307
+
308
+ #: includes/class-freemius.php:15181, includes/class-freemius.php:15183
309
+ msgid "Affiliation"
310
+ msgstr "Affiliation"
311
+
312
+ #: includes/class-freemius.php:15211, includes/class-freemius.php:15213, templates/account.php:150, templates/debug.php:324
313
+ msgid "Account"
314
+ msgstr "Account"
315
+
316
+ #: includes/class-freemius.php:15226, includes/class-freemius.php:15228, includes/customizer/class-fs-customizer-support-section.php:60
317
+ msgid "Contact Us"
318
+ msgstr "Contact Us"
319
+
320
+ #: includes/class-freemius.php:15238, includes/class-freemius.php:15240, includes/class-freemius.php:19553, templates/account.php:100, templates/account/partials/addon.php:41
321
+ msgid "Add-Ons"
322
+ msgstr "Add-Ons"
323
+
324
+ #: includes/class-freemius.php:15274
325
+ msgctxt "ASCII arrow left icon"
326
+ msgid "&#x2190;"
327
+ msgstr "&#x2190;"
328
+
329
+ #: includes/class-freemius.php:15274
330
+ msgctxt "ASCII arrow right icon"
331
+ msgid "&#x27a4;"
332
+ msgstr "&#x27a4;"
333
+
334
+ #: includes/class-freemius.php:15276, templates/pricing.php:97
335
+ msgctxt "noun"
336
+ msgid "Pricing"
337
+ msgstr "Pricing"
338
+
339
+ #: includes/class-freemius.php:15479, includes/customizer/class-fs-customizer-support-section.php:67
340
+ msgid "Support Forum"
341
+ msgstr "Support Forum"
342
+
343
+ #: includes/class-freemius.php:16265
344
+ msgid "Your email has been successfully verified - you are AWESOME!"
345
+ msgstr "Your email has been successfully verified - you are AWESOME!"
346
+
347
+ #: includes/class-freemius.php:16266
348
+ msgctxt "a positive response"
349
+ msgid "Right on"
350
+ msgstr "Right on"
351
+
352
+ #: includes/class-freemius.php:16888
353
+ msgid "Your %s Add-on plan was successfully upgraded."
354
+ msgstr "Your %s Add-on plan was successfully upgraded."
355
+
356
+ #: includes/class-freemius.php:16890
357
+ msgid "%s Add-on was successfully purchased."
358
+ msgstr "%s Add-on was successfully purchased."
359
+
360
+ #: includes/class-freemius.php:16893
361
+ msgid "Download the latest version"
362
+ msgstr "Download the latest version"
363
+
364
+ #: includes/class-freemius.php:16965
365
+ msgctxt "%1s - plugin title, %2s - API domain"
366
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
368
+
369
+ #: includes/class-freemius.php:16968, includes/class-freemius.php:17384, includes/class-freemius.php:17461
370
+ msgid "Error received from the server:"
371
+ msgstr "Error received from the server:"
372
+
373
+ #: includes/class-freemius.php:16978
374
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
+
377
+ #: includes/class-freemius.php:17160, includes/class-freemius.php:17389, includes/class-freemius.php:17432, includes/class-freemius.php:17535
378
+ msgctxt "something somebody says when they are thinking about what you have just said."
379
+ msgid "Hmm"
380
+ msgstr "Hmm"
381
+
382
+ #: includes/class-freemius.php:17173
383
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
384
+ msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
+
386
+ #: includes/class-freemius.php:17174, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
387
+ msgctxt "trial period"
388
+ msgid "Trial"
389
+ msgstr "Trial"
390
+
391
+ #: includes/class-freemius.php:17179
392
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
393
+ msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
+
395
+ #: includes/class-freemius.php:17183, includes/class-freemius.php:17241
396
+ msgid "Please contact us here"
397
+ msgstr "Please contact us here"
398
+
399
+ #: includes/class-freemius.php:17193
400
+ msgid "Your plan was successfully upgraded."
401
+ msgstr "Your plan was successfully upgraded."
402
+
403
+ #: includes/class-freemius.php:17211
404
+ msgid "Your plan was successfully changed to %s."
405
+ msgstr "Your plan was successfully changed to %s."
406
+
407
+ #: includes/class-freemius.php:17227
408
+ msgid "Your license has expired. You can still continue using the free %s forever."
409
+ msgstr "Your license has expired. You can still continue using the free %s forever."
410
+
411
+ #: includes/class-freemius.php:17229
412
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
413
+ msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
414
+
415
+ #: includes/class-freemius.php:17237
416
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
417
+ msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
418
+
419
+ #: includes/class-freemius.php:17250
420
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
421
+ msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
422
+
423
+ #: includes/class-freemius.php:17273
424
+ msgid "Your free trial has expired. You can still continue using all our free features."
425
+ msgstr "Your free trial has expired. You can still continue using all our free features."
426
+
427
+ #: includes/class-freemius.php:17275
428
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
429
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
430
+
431
+ #: includes/class-freemius.php:17380
432
+ msgid "It looks like the license could not be activated."
433
+ msgstr "It looks like the license could not be activated."
434
+
435
+ #: includes/class-freemius.php:17410
436
+ msgid "Your license was successfully activated."
437
+ msgstr "Your license was successfully activated."
438
+
439
+ #: includes/class-freemius.php:17436
440
+ msgid "It looks like your site currently doesn't have an active license."
441
+ msgstr "It looks like your site currently doesn't have an active license."
442
+
443
+ #: includes/class-freemius.php:17460
444
+ msgid "It looks like the license deactivation failed."
445
+ msgstr "It looks like the license deactivation failed."
446
+
447
+ #: includes/class-freemius.php:17488
448
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
449
+ msgstr "Your license was successfully deactivated, you are back to the %s plan."
450
+
451
+ #: includes/class-freemius.php:17489
452
+ msgid "O.K"
453
+ msgstr "O.K"
454
+
455
+ #: includes/class-freemius.php:17542
456
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
457
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
458
+
459
+ #: includes/class-freemius.php:17551
460
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
461
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
462
+
463
+ #: includes/class-freemius.php:17593
464
+ msgid "You are already running the %s in a trial mode."
465
+ msgstr "You are already running the %s in a trial mode."
466
+
467
+ #: includes/class-freemius.php:17604
468
+ msgid "You already utilized a trial before."
469
+ msgstr "You already utilized a trial before."
470
+
471
+ #: includes/class-freemius.php:17618
472
+ msgid "Plan %s do not exist, therefore, can't start a trial."
473
+ msgstr "Plan %s do not exist, therefore, can't start a trial."
474
+
475
+ #: includes/class-freemius.php:17629
476
+ msgid "Plan %s does not support a trial period."
477
+ msgstr "Plan %s does not support a trial period."
478
+
479
+ #: includes/class-freemius.php:17640
480
+ msgid "None of the %s's plans supports a trial period."
481
+ msgstr "None of the %s's plans supports a trial period."
482
+
483
+ #: includes/class-freemius.php:17690
484
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
485
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
486
+
487
+ #: includes/class-freemius.php:17726
488
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
489
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
490
+
491
+ #: includes/class-freemius.php:17745
492
+ msgid "Your %s free trial was successfully cancelled."
493
+ msgstr "Your %s free trial was successfully cancelled."
494
+
495
+ #: includes/class-freemius.php:18052
496
+ msgid "Version %s was released."
497
+ msgstr "Version %s was released."
498
+
499
+ #: includes/class-freemius.php:18052
500
+ msgid "Please download %s."
501
+ msgstr "Please download %s."
502
+
503
+ #: includes/class-freemius.php:18059
504
+ msgid "the latest %s version here"
505
+ msgstr "the latest %s version here"
506
+
507
+ #: includes/class-freemius.php:18064
508
+ msgid "New"
509
+ msgstr "New"
510
+
511
+ #: includes/class-freemius.php:18069
512
+ msgid "Seems like you got the latest release."
513
+ msgstr "Seems like you got the latest release."
514
+
515
+ #: includes/class-freemius.php:18070
516
+ msgid "You are all good!"
517
+ msgstr "You are all good!"
518
+
519
+ #: includes/class-freemius.php:18338
520
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
521
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
522
+
523
+ #: includes/class-freemius.php:18473
524
+ msgid "Site successfully opted in."
525
+ msgstr "Site successfully opted in."
526
+
527
+ #: includes/class-freemius.php:18474, includes/class-freemius.php:19285
528
+ msgid "Awesome"
529
+ msgstr "Awesome"
530
+
531
+ #: includes/class-freemius.php:18490, templates/forms/optout.php:32
532
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
533
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
534
+
535
+ #: includes/class-freemius.php:18491
536
+ msgid "Thank you!"
537
+ msgstr "Thank you!"
538
+
539
+ #: includes/class-freemius.php:18498
540
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
541
+ msgstr "We will no longer be sending any usage data of %s on %s to %s."
542
+
543
+ #: includes/class-freemius.php:18627
544
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
545
+ msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
546
+
547
+ #: includes/class-freemius.php:18633
548
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
549
+ msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
550
+
551
+ #: includes/class-freemius.php:18638
552
+ msgid "%s is the new owner of the account."
553
+ msgstr "%s is the new owner of the account."
554
+
555
+ #: includes/class-freemius.php:18640
556
+ msgctxt "as congratulations"
557
+ msgid "Congrats"
558
+ msgstr "Congrats"
559
+
560
+ #: includes/class-freemius.php:18660
561
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
562
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
563
+
564
+ #: includes/class-freemius.php:18661
565
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
566
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
567
+
568
+ #: includes/class-freemius.php:18668
569
+ msgid "Change Ownership"
570
+ msgstr "Change Ownership"
571
+
572
+ #: includes/class-freemius.php:18676
573
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
574
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
575
+
576
+ #: includes/class-freemius.php:18688
577
+ msgid "Please provide your full name."
578
+ msgstr "Please provide your full name."
579
+
580
+ #: includes/class-freemius.php:18693
581
+ msgid "Your name was successfully updated."
582
+ msgstr "Your name was successfully updated."
583
+
584
+ #: includes/class-freemius.php:18754
585
+ msgid "You have successfully updated your %s."
586
+ msgstr "You have successfully updated your %s."
587
+
588
+ #: includes/class-freemius.php:18894
589
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
590
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
591
+
592
+ #: includes/class-freemius.php:18895
593
+ msgctxt "advance notice of something that will need attention."
594
+ msgid "Heads up"
595
+ msgstr "Heads up"
596
+
597
+ #: includes/class-freemius.php:19325
598
+ msgctxt "exclamation"
599
+ msgid "Hey"
600
+ msgstr "Hey"
601
+
602
+ #: includes/class-freemius.php:19325
603
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
604
+ msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
605
+
606
+ #: includes/class-freemius.php:19333
607
+ msgid "No commitment for %s days - cancel anytime!"
608
+ msgstr "No commitment for %s days - cancel anytime!"
609
+
610
+ #: includes/class-freemius.php:19334
611
+ msgid "No credit card required"
612
+ msgstr "No credit card required"
613
+
614
+ #: includes/class-freemius.php:19341, templates/forms/trial-start.php:53
615
+ msgctxt "call to action"
616
+ msgid "Start free trial"
617
+ msgstr "Start free trial"
618
+
619
+ #: includes/class-freemius.php:19418
620
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
621
+ msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
622
+
623
+ #: includes/class-freemius.php:19427
624
+ msgid "Learn more"
625
+ msgstr "Learn more"
626
+
627
+ #: includes/class-freemius.php:19577, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
628
+ msgid "Activate License"
629
+ msgstr "Activate License"
630
+
631
+ #: includes/class-freemius.php:19578, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
632
+ msgid "Change License"
633
+ msgstr "Change License"
634
+
635
+ #: includes/class-freemius.php:19660, templates/account/partials/site.php:161
636
+ msgid "Opt Out"
637
+ msgstr "Opt Out"
638
+
639
+ #: includes/class-freemius.php:19662, includes/class-freemius.php:19667, templates/account/partials/site.php:43, templates/account/partials/site.php:161
640
+ msgid "Opt In"
641
+ msgstr "Opt In"
642
+
643
+ #: includes/class-freemius.php:19891
644
+ msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
645
+ msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
646
+
647
+ #: includes/class-freemius.php:19899
648
+ msgid "Activate %s features"
649
+ msgstr "Activate %s features"
650
+
651
+ #: includes/class-freemius.php:19912
652
+ msgid "Please follow these steps to complete the upgrade"
653
+ msgstr "Please follow these steps to complete the upgrade"
654
+
655
+ #: includes/class-freemius.php:19916
656
+ msgid "Download the latest %s version"
657
+ msgstr "Download the latest %s version"
658
+
659
+ #: includes/class-freemius.php:19920
660
+ msgid "Upload and activate the downloaded version"
661
+ msgstr "Upload and activate the downloaded version"
662
+
663
+ #: includes/class-freemius.php:19922
664
+ msgid "How to upload and activate?"
665
+ msgstr "How to upload and activate?"
666
+
667
+ #: includes/class-freemius.php:20056
668
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
669
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
670
+
671
+ #: includes/class-freemius.php:20217
672
+ msgid "Auto installation only works for opted-in users."
673
+ msgstr "Auto installation only works for opted-in users."
674
+
675
+ #: includes/class-freemius.php:20227, includes/class-freemius.php:20260, includes/class-fs-plugin-updater.php:1056, includes/class-fs-plugin-updater.php:1070
676
+ msgid "Invalid module ID."
677
+ msgstr "Invalid module ID."
678
+
679
+ #: includes/class-freemius.php:20236, includes/class-fs-plugin-updater.php:1092
680
+ msgid "Premium version already active."
681
+ msgstr "Premium version already active."
682
+
683
+ #: includes/class-freemius.php:20243
684
+ msgid "You do not have a valid license to access the premium version."
685
+ msgstr "You do not have a valid license to access the premium version."
686
+
687
+ #: includes/class-freemius.php:20250
688
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
689
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
690
+
691
+ #: includes/class-freemius.php:20268, includes/class-fs-plugin-updater.php:1091
692
+ msgid "Premium add-on version already installed."
693
+ msgstr "Premium add-on version already installed."
694
+
695
+ #: includes/class-freemius.php:20613
696
+ msgid "View paid features"
697
+ msgstr "View paid features"
698
+
699
+ #: includes/class-freemius.php:20927
700
+ msgid "Thank you so much for using %s and its add-ons!"
701
+ msgstr "Thank you so much for using %s and its add-ons!"
702
+
703
+ #: includes/class-freemius.php:20928
704
+ msgid "Thank you so much for using %s!"
705
+ msgstr "Thank you so much for using %s!"
706
+
707
+ #: includes/class-freemius.php:20934
708
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
709
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
710
+
711
+ #: includes/class-freemius.php:20938
712
+ msgid "Thank you so much for using our products!"
713
+ msgstr "Thank you so much for using our products!"
714
+
715
+ #: includes/class-freemius.php:20939
716
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
717
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
718
+
719
+ #: includes/class-freemius.php:20958
720
+ msgid "%s and its add-ons"
721
+ msgstr "%s and its add-ons"
722
+
723
+ #: includes/class-freemius.php:20967
724
+ msgid "Products"
725
+ msgstr "Products"
726
+
727
+ #: includes/class-freemius.php:20974, templates/connect.php:272
728
+ msgid "Yes"
729
+ msgstr "Yes"
730
+
731
+ #: includes/class-freemius.php:20975, templates/connect.php:273
732
+ msgid "send me security & feature updates, educational content and offers."
733
+ msgstr "send me security & feature updates, educational content and offers."
734
+
735
+ #: includes/class-freemius.php:20976, templates/connect.php:278
736
+ msgid "No"
737
+ msgstr "No"
738
+
739
+ #: includes/class-freemius.php:20978, templates/connect.php:280
740
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
741
+ msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
742
+
743
+ #: includes/class-freemius.php:20988
744
+ msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
745
+ msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
746
+
747
+ #: includes/class-freemius.php:20990, templates/connect.php:287
748
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
749
+ msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
750
+
751
+ #: includes/class-freemius.php:21272
752
+ msgid "License key is empty."
753
+ msgstr "License key is empty."
754
+
755
+ #: includes/class-fs-plugin-updater.php:184, templates/forms/premium-versions-upgrade-handler.php:57
756
+ msgid "Renew license"
757
+ msgstr "Renew license"
758
+
759
+ #: includes/class-fs-plugin-updater.php:189, templates/forms/premium-versions-upgrade-handler.php:58
760
+ msgid "Buy license"
761
+ msgstr "Buy license"
762
+
763
+ #: includes/class-fs-plugin-updater.php:278
764
+ msgid "There is a %s of %s available."
765
+ msgstr "There is a %s of %s available."
766
+
767
+ #: includes/class-fs-plugin-updater.php:282
768
+ msgid "new version"
769
+ msgstr "new version"
770
+
771
+ #: includes/class-fs-plugin-updater.php:301
772
+ msgid "Important Upgrade Notice:"
773
+ msgstr "Important Upgrade Notice:"
774
+
775
+ #: includes/class-fs-plugin-updater.php:1121
776
+ msgid "Installing plugin: %s"
777
+ msgstr "Installing plugin: %s"
778
+
779
+ #: includes/class-fs-plugin-updater.php:1162
780
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
781
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
782
+
783
+ #: includes/class-fs-plugin-updater.php:1335
784
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
785
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
786
+
787
+ #: includes/fs-plugin-info-dialog.php:369, templates/account/partials/addon.php:292
788
+ msgctxt "verb"
789
+ msgid "Purchase"
790
+ msgstr "Purchase"
791
+
792
+ #: includes/fs-plugin-info-dialog.php:372
793
+ msgid "Start my free %s"
794
+ msgstr "Start my free %s"
795
+
796
+ #: includes/fs-plugin-info-dialog.php:413
797
+ msgid "Install Free Version Now"
798
+ msgstr "Install Free Version Now"
799
+
800
+ #: includes/fs-plugin-info-dialog.php:414, templates/auto-installation.php:111, templates/account/partials/addon.php:272, templates/account/partials/addon.php:322
801
+ msgid "Install Now"
802
+ msgstr "Install Now"
803
+
804
+ #: includes/fs-plugin-info-dialog.php:425
805
+ msgctxt "as download latest version"
806
+ msgid "Download Latest Free Version"
807
+ msgstr "Download Latest Free Version"
808
+
809
+ #: includes/fs-plugin-info-dialog.php:426, templates/account.php:80, templates/account/partials/addon.php:21
810
+ msgctxt "as download latest version"
811
+ msgid "Download Latest"
812
+ msgstr "Download Latest"
813
+
814
+ #: includes/fs-plugin-info-dialog.php:436
815
+ msgid "Install Free Version Update Now"
816
+ msgstr "Install Free Version Update Now"
817
+
818
+ #: includes/fs-plugin-info-dialog.php:437, templates/account.php:460
819
+ msgid "Install Update Now"
820
+ msgstr "Install Update Now"
821
+
822
+ #: includes/fs-plugin-info-dialog.php:448
823
+ msgid "Newer Free Version (%s) Installed"
824
+ msgstr "Newer Free Version (%s) Installed"
825
+
826
+ #: includes/fs-plugin-info-dialog.php:449
827
+ msgid "Newer Version (%s) Installed"
828
+ msgstr "Newer Version (%s) Installed"
829
+
830
+ #: includes/fs-plugin-info-dialog.php:457
831
+ msgid "Latest Free Version Installed"
832
+ msgstr "Latest Free Version Installed"
833
+
834
+ #: includes/fs-plugin-info-dialog.php:458
835
+ msgid "Latest Version Installed"
836
+ msgstr "Latest Version Installed"
837
+
838
+ #: includes/fs-plugin-info-dialog.php:613
839
+ msgctxt "Plugin installer section title"
840
+ msgid "Description"
841
+ msgstr "Description"
842
+
843
+ #: includes/fs-plugin-info-dialog.php:614
844
+ msgctxt "Plugin installer section title"
845
+ msgid "Installation"
846
+ msgstr "Installation"
847
+
848
+ #: includes/fs-plugin-info-dialog.php:615
849
+ msgctxt "Plugin installer section title"
850
+ msgid "FAQ"
851
+ msgstr "FAQ"
852
+
853
+ #: includes/fs-plugin-info-dialog.php:616, templates/plugin-info/description.php:55
854
+ msgid "Screenshots"
855
+ msgstr "Screenshots"
856
+
857
+ #: includes/fs-plugin-info-dialog.php:617
858
+ msgctxt "Plugin installer section title"
859
+ msgid "Changelog"
860
+ msgstr "Changelog"
861
+
862
+ #: includes/fs-plugin-info-dialog.php:618
863
+ msgctxt "Plugin installer section title"
864
+ msgid "Reviews"
865
+ msgstr "Reviews"
866
+
867
+ #: includes/fs-plugin-info-dialog.php:619
868
+ msgctxt "Plugin installer section title"
869
+ msgid "Other Notes"
870
+ msgstr "Other Notes"
871
+
872
+ #: includes/fs-plugin-info-dialog.php:634
873
+ msgctxt "Plugin installer section title"
874
+ msgid "Features & Pricing"
875
+ msgstr "Features & Pricing"
876
+
877
+ #: includes/fs-plugin-info-dialog.php:644
878
+ msgid "Plugin Install"
879
+ msgstr "Plugin Install"
880
+
881
+ #: includes/fs-plugin-info-dialog.php:716
882
+ msgctxt "e.g. Professional Plan"
883
+ msgid "%s Plan"
884
+ msgstr "%s Plan"
885
+
886
+ #: includes/fs-plugin-info-dialog.php:742
887
+ msgctxt "e.g. the best product"
888
+ msgid "Best"
889
+ msgstr "Best"
890
+
891
+ #: includes/fs-plugin-info-dialog.php:748, includes/fs-plugin-info-dialog.php:768
892
+ msgctxt "as every month"
893
+ msgid "Monthly"
894
+ msgstr "Monthly"
895
+
896
+ #: includes/fs-plugin-info-dialog.php:751
897
+ msgctxt "as once a year"
898
+ msgid "Annual"
899
+ msgstr "Annual"
900
+
901
+ #: includes/fs-plugin-info-dialog.php:754
902
+ msgid "Lifetime"
903
+ msgstr "Lifetime"
904
+
905
+ #: includes/fs-plugin-info-dialog.php:768, includes/fs-plugin-info-dialog.php:770, includes/fs-plugin-info-dialog.php:772
906
+ msgctxt "e.g. billed monthly"
907
+ msgid "Billed %s"
908
+ msgstr "Billed %s"
909
+
910
+ #: includes/fs-plugin-info-dialog.php:770
911
+ msgctxt "as once a year"
912
+ msgid "Annually"
913
+ msgstr "Annually"
914
+
915
+ #: includes/fs-plugin-info-dialog.php:772
916
+ msgctxt "as once a year"
917
+ msgid "Once"
918
+ msgstr "Once"
919
+
920
+ #: includes/fs-plugin-info-dialog.php:778
921
+ msgid "Single Site License"
922
+ msgstr "Single Site License"
923
+
924
+ #: includes/fs-plugin-info-dialog.php:780
925
+ msgid "Unlimited Licenses"
926
+ msgstr "Unlimited Licenses"
927
+
928
+ #: includes/fs-plugin-info-dialog.php:782
929
+ msgid "Up to %s Sites"
930
+ msgstr "Up to %s Sites"
931
+
932
+ #: includes/fs-plugin-info-dialog.php:792, templates/plugin-info/features.php:82
933
+ msgctxt "as monthly period"
934
+ msgid "mo"
935
+ msgstr "mo"
936
+
937
+ #: includes/fs-plugin-info-dialog.php:799, templates/plugin-info/features.php:80
938
+ msgctxt "as annual period"
939
+ msgid "year"
940
+ msgstr "year"
941
+
942
+ #: includes/fs-plugin-info-dialog.php:853
943
+ msgctxt "noun"
944
+ msgid "Price"
945
+ msgstr "Price"
946
+
947
+ #: includes/fs-plugin-info-dialog.php:901
948
+ msgid "Save %s"
949
+ msgstr "Save %s"
950
+
951
+ #: includes/fs-plugin-info-dialog.php:911
952
+ msgid "No commitment for %s - cancel anytime"
953
+ msgstr "No commitment for %s - cancel anytime"
954
+
955
+ #: includes/fs-plugin-info-dialog.php:914
956
+ msgid "After your free %s, pay as little as %s"
957
+ msgstr "After your free %s, pay as little as %s"
958
+
959
+ #: includes/fs-plugin-info-dialog.php:925
960
+ msgid "Details"
961
+ msgstr "Details"
962
+
963
+ #: includes/fs-plugin-info-dialog.php:929, templates/account.php:91, templates/debug.php:201, templates/debug.php:238, templates/debug.php:452, templates/account/partials/addon.php:32
964
+ msgctxt "product version"
965
+ msgid "Version"
966
+ msgstr "Version"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:936
969
+ msgctxt "as the plugin author"
970
+ msgid "Author"
971
+ msgstr "Author"
972
+
973
+ #: includes/fs-plugin-info-dialog.php:943
974
+ msgid "Last Updated"
975
+ msgstr "Last Updated"
976
+
977
+ #: includes/fs-plugin-info-dialog.php:948, templates/account.php:376
978
+ msgctxt "x-ago"
979
+ msgid "%s ago"
980
+ msgstr "%s ago"
981
+
982
+ #: includes/fs-plugin-info-dialog.php:957
983
+ msgid "Requires WordPress Version"
984
+ msgstr "Requires WordPress Version"
985
+
986
+ #: includes/fs-plugin-info-dialog.php:958
987
+ msgid "%s or higher"
988
+ msgstr "%s or higher"
989
+
990
+ #: includes/fs-plugin-info-dialog.php:965
991
+ msgid "Compatible up to"
992
+ msgstr "Compatible up to"
993
+
994
+ #: includes/fs-plugin-info-dialog.php:973
995
+ msgid "Downloaded"
996
+ msgstr "Downloaded"
997
+
998
+ #: includes/fs-plugin-info-dialog.php:977
999
+ msgid "%s time"
1000
+ msgstr "%s time"
1001
+
1002
+ #: includes/fs-plugin-info-dialog.php:979
1003
+ msgid "%s times"
1004
+ msgstr "%s times"
1005
+
1006
+ #: includes/fs-plugin-info-dialog.php:989
1007
+ msgid "WordPress.org Plugin Page"
1008
+ msgstr "WordPress.org Plugin Page"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php:997
1011
+ msgid "Plugin Homepage"
1012
+ msgstr "Plugin Homepage"
1013
+
1014
+ #: includes/fs-plugin-info-dialog.php:1005, includes/fs-plugin-info-dialog.php:1087
1015
+ msgid "Donate to this plugin"
1016
+ msgstr "Donate to this plugin"
1017
+
1018
+ #: includes/fs-plugin-info-dialog.php:1012
1019
+ msgid "Average Rating"
1020
+ msgstr "Average Rating"
1021
+
1022
+ #: includes/fs-plugin-info-dialog.php:1019
1023
+ msgid "based on %s"
1024
+ msgstr "based on %s"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php:1023
1027
+ msgid "%s rating"
1028
+ msgstr "%s rating"
1029
+
1030
+ #: includes/fs-plugin-info-dialog.php:1025
1031
+ msgid "%s ratings"
1032
+ msgstr "%s ratings"
1033
+
1034
+ #: includes/fs-plugin-info-dialog.php:1040
1035
+ msgid "%s star"
1036
+ msgstr "%s star"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:1042
1039
+ msgid "%s stars"
1040
+ msgstr "%s stars"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:1053
1043
+ msgid "Click to see reviews that provided a rating of %s"
1044
+ msgstr "Click to see reviews that provided a rating of %s"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:1066
1047
+ msgid "Contributors"
1048
+ msgstr "Contributors"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:1095, includes/fs-plugin-info-dialog.php:1097
1051
+ msgid "Warning"
1052
+ msgstr "Warning"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php:1095
1055
+ msgid "This plugin has not been tested with your current version of WordPress."
1056
+ msgstr "This plugin has not been tested with your current version of WordPress."
1057
+
1058
+ #: includes/fs-plugin-info-dialog.php:1097
1059
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1060
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
1061
+
1062
+ #: includes/fs-plugin-info-dialog.php:1116
1063
+ msgid "Paid add-on must be deployed to Freemius."
1064
+ msgstr "Paid add-on must be deployed to Freemius."
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php:1117
1067
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1068
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1069
+
1070
+ #: templates/account.php:81, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:22, templates/account/partials/site.php:295
1071
+ msgid "Downgrading your plan"
1072
+ msgstr "Downgrading your plan"
1073
+
1074
+ #: templates/account.php:82, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:23, templates/account/partials/site.php:296
1075
+ msgid "Cancelling the subscription"
1076
+ msgstr "Cancelling the subscription"
1077
+
1078
+ #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1079
+ #: templates/account.php:84, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:25, templates/account/partials/site.php:298
1080
+ msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1081
+ msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1082
+
1083
+ #: templates/account.php:85, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:26, templates/account/partials/site.php:299
1084
+ msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1085
+ msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1086
+
1087
+ #: templates/account.php:86, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:27
1088
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1089
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1090
+
1091
+ #: templates/account.php:87, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:28, templates/account/partials/site.php:300
1092
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1093
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1094
+
1095
+ #: templates/account.php:88, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:29, templates/account/partials/site.php:301
1096
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1097
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1098
+
1099
+ #. translators: %s: Plan title (e.g. "Professional")
1100
+ #: templates/account.php:90, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:31
1101
+ msgid "Activate %s Plan"
1102
+ msgstr "Activate %s Plan"
1103
+
1104
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1105
+ #: templates/account.php:93, templates/account/partials/addon.php:34, templates/account/partials/site.php:275
1106
+ msgid "Auto renews in %s"
1107
+ msgstr "Auto renews in %s"
1108
+
1109
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1110
+ #: templates/account.php:95, templates/account/partials/addon.php:36, templates/account/partials/site.php:277
1111
+ msgid "Expires in %s"
1112
+ msgstr "Expires in %s"
1113
+
1114
+ #: templates/account.php:96, templates/account/partials/addon.php:37
1115
+ msgctxt "as synchronize license"
1116
+ msgid "Sync License"
1117
+ msgstr "Sync License"
1118
+
1119
+ #: templates/account.php:97, templates/account/partials/addon.php:38
1120
+ msgid "Cancel Trial"
1121
+ msgstr "Cancel Trial"
1122
+
1123
+ #: templates/account.php:98, templates/account/partials/addon.php:39
1124
+ msgid "Change Plan"
1125
+ msgstr "Change Plan"
1126
+
1127
+ #: templates/account.php:99, templates/account/partials/addon.php:40
1128
+ msgctxt "verb"
1129
+ msgid "Upgrade"
1130
+ msgstr "Upgrade"
1131
+
1132
+ #: templates/account.php:101, templates/account/partials/addon.php:42, templates/account/partials/site.php:302
1133
+ msgctxt "verb"
1134
+ msgid "Downgrade"
1135
+ msgstr "Downgrade"
1136
+
1137
+ #: templates/account.php:103, templates/add-ons.php:130, templates/plugin-info/features.php:72, templates/account/partials/addon.php:44, templates/account/partials/site.php:31
1138
+ msgid "Free"
1139
+ msgstr "Free"
1140
+
1141
+ #: templates/account.php:104, templates/account/partials/addon.php:45
1142
+ msgid "Activate"
1143
+ msgstr "Activate"
1144
+
1145
+ #: templates/account.php:105, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:46
1146
+ msgctxt "as product pricing plan"
1147
+ msgid "Plan"
1148
+ msgstr "Plan"
1149
+
1150
+ #: templates/account.php:158
1151
+ msgid "Free Trial"
1152
+ msgstr "Free Trial"
1153
+
1154
+ #: templates/account.php:169
1155
+ msgid "Account Details"
1156
+ msgstr "Account Details"
1157
+
1158
+ #: templates/account.php:179
1159
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1160
+ msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1161
+
1162
+ #: templates/account.php:181
1163
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1164
+ msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1165
+
1166
+ #: templates/account.php:184
1167
+ msgid "Delete Account"
1168
+ msgstr "Delete Account"
1169
+
1170
+ #: templates/account.php:196, templates/account/partials/addon.php:159, templates/account/partials/deactivate-license-button.php:35
1171
+ msgid "Deactivate License"
1172
+ msgstr "Deactivate License"
1173
+
1174
+ #: templates/account.php:219, templates/forms/subscription-cancellation.php:125
1175
+ msgid "Are you sure you want to proceed?"
1176
+ msgstr "Are you sure you want to proceed?"
1177
+
1178
+ #: templates/account.php:219, templates/account/partials/addon.php:182
1179
+ msgid "Cancel Subscription"
1180
+ msgstr "Cancel Subscription"
1181
+
1182
+ #: templates/account.php:247
1183
+ msgctxt "as synchronize"
1184
+ msgid "Sync"
1185
+ msgstr "Sync"
1186
+
1187
+ #: templates/account.php:261, templates/debug.php:487
1188
+ msgid "Name"
1189
+ msgstr "Name"
1190
+
1191
+ #: templates/account.php:267, templates/debug.php:488
1192
+ msgid "Email"
1193
+ msgstr "Email"
1194
+
1195
+ #: templates/account.php:274, templates/debug.php:370, templates/debug.php:526
1196
+ msgid "User ID"
1197
+ msgstr "User ID"
1198
+
1199
+ #: templates/account.php:282
1200
+ msgid "Site ID"
1201
+ msgstr "Site ID"
1202
+
1203
+ #: templates/account.php:285
1204
+ msgid "No ID"
1205
+ msgstr "No ID"
1206
+
1207
+ #: templates/account.php:290, templates/debug.php:243, templates/debug.php:372, templates/debug.php:453, templates/debug.php:490, templates/account/partials/site.php:219
1208
+ msgid "Public Key"
1209
+ msgstr "Public Key"
1210
+
1211
+ #: templates/account.php:296, templates/debug.php:373, templates/debug.php:454, templates/debug.php:491, templates/account/partials/site.php:231
1212
+ msgid "Secret Key"
1213
+ msgstr "Secret Key"
1214
+
1215
+ #: templates/account.php:299
1216
+ msgctxt "as secret encryption key missing"
1217
+ msgid "No Secret"
1218
+ msgstr "No Secret"
1219
+
1220
+ #: templates/account.php:318, templates/account/partials/site.php:112, templates/account/partials/site.php:114
1221
+ msgid "Trial"
1222
+ msgstr "Trial"
1223
+
1224
+ #: templates/account.php:337, templates/debug.php:531, templates/account/partials/site.php:248
1225
+ msgid "License Key"
1226
+ msgstr "License Key"
1227
+
1228
+ #: templates/account.php:367
1229
+ msgid "not verified"
1230
+ msgstr "not verified"
1231
+
1232
+ #: templates/account.php:376, templates/account/partials/addon.php:120
1233
+ msgid "Expired"
1234
+ msgstr "Expired"
1235
+
1236
+ #: templates/account.php:428
1237
+ msgid "Premium version"
1238
+ msgstr "Premium version"
1239
+
1240
+ #: templates/account.php:430
1241
+ msgid "Free version"
1242
+ msgstr "Free version"
1243
+
1244
+ #: templates/account.php:442
1245
+ msgid "Verify Email"
1246
+ msgstr "Verify Email"
1247
+
1248
+ #: templates/account.php:453
1249
+ msgid "Download %s Version"
1250
+ msgstr "Download %s Version"
1251
+
1252
+ #: templates/account.php:467, templates/account.php:649, templates/account/partials/site.php:237, templates/account/partials/site.php:255
1253
+ msgctxt "verb"
1254
+ msgid "Show"
1255
+ msgstr "Show"
1256
+
1257
+ #: templates/account.php:481
1258
+ msgid "What is your %s?"
1259
+ msgstr "What is your %s?"
1260
+
1261
+ #: templates/account.php:489, templates/account/billing.php:27
1262
+ msgctxt "verb"
1263
+ msgid "Edit"
1264
+ msgstr "Edit"
1265
+
1266
+ #: templates/account.php:502
1267
+ msgid "Sites"
1268
+ msgstr "Sites"
1269
+
1270
+ #: templates/account.php:513
1271
+ msgid "Search by address"
1272
+ msgstr "Search by address"
1273
+
1274
+ #: templates/account.php:522, templates/account.php:570, templates/debug.php:236, templates/debug.php:364, templates/debug.php:449, templates/debug.php:486, templates/debug.php:524, templates/debug.php:597, templates/account/payments.php:35, templates/debug/logger.php:21
1275
+ msgid "ID"
1276
+ msgstr "ID"
1277
+
1278
+ #: templates/account.php:523, templates/debug.php:367
1279
+ msgid "Address"
1280
+ msgstr "Address"
1281
+
1282
+ #: templates/account.php:524
1283
+ msgid "License"
1284
+ msgstr "License"
1285
+
1286
+ #: templates/account.php:525
1287
+ msgid "Plan"
1288
+ msgstr "Plan"
1289
+
1290
+ #: templates/account.php:573
1291
+ msgctxt "as software license"
1292
+ msgid "License"
1293
+ msgstr "License"
1294
+
1295
+ #: templates/account.php:643
1296
+ msgctxt "verb"
1297
+ msgid "Hide"
1298
+ msgstr "Hide"
1299
+
1300
+ #: templates/account.php:686
1301
+ msgid "Cancelling %s"
1302
+ msgstr "Cancelling %s"
1303
+
1304
+ #: templates/account.php:686, templates/account.php:703, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:117
1305
+ msgid "trial"
1306
+ msgstr "trial"
1307
+
1308
+ #: templates/account.php:701, templates/forms/deactivation/form.php:134
1309
+ msgid "Cancelling %s..."
1310
+ msgstr "Cancelling %s..."
1311
+
1312
+ #: templates/account.php:704, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:118
1313
+ msgid "subscription"
1314
+ msgstr "subscription"
1315
+
1316
+ #: templates/account.php:718
1317
+ msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1318
+ msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1319
+
1320
+ #: templates/add-ons.php:36
1321
+ msgid "Add Ons for %s"
1322
+ msgstr "Add Ons for %s"
1323
+
1324
+ #: templates/add-ons.php:44
1325
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1326
+ msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1327
+
1328
+ #: templates/add-ons.php:139
1329
+ msgid "View details"
1330
+ msgstr "View details"
1331
+
1332
+ #: templates/admin-notice.php:13, templates/forms/license-activation.php:208, templates/forms/resend-key.php:77
1333
+ msgctxt "as close a window"
1334
+ msgid "Dismiss"
1335
+ msgstr "Dismiss"
1336
+
1337
+ #: templates/auto-installation.php:45
1338
+ msgid "%s sec"
1339
+ msgstr "%s sec"
1340
+
1341
+ #: templates/auto-installation.php:83
1342
+ msgid "Automatic Installation"
1343
+ msgstr "Automatic Installation"
1344
+
1345
+ #: templates/auto-installation.php:93
1346
+ 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."
1347
+ 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."
1348
+
1349
+ #: templates/auto-installation.php:104
1350
+ 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."
1351
+ 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."
1352
+
1353
+ #: templates/auto-installation.php:109
1354
+ msgid "Cancel Installation"
1355
+ msgstr "Cancel Installation"
1356
+
1357
+ #: templates/checkout.php:172
1358
+ msgid "Checkout"
1359
+ msgstr "Checkout"
1360
+
1361
+ #: templates/checkout.php:172
1362
+ msgid "PCI compliant"
1363
+ msgstr "PCI compliant"
1364
+
1365
+ #. translators: %s: name (e.g. Hey John,)
1366
+ #: templates/connect.php:112
1367
+ msgctxt "greeting"
1368
+ msgid "Hey %s,"
1369
+ msgstr "Hey %s,"
1370
+
1371
+ #: templates/connect.php:154
1372
+ msgid "Allow & Continue"
1373
+ msgstr "Allow & Continue"
1374
+
1375
+ #: templates/connect.php:158
1376
+ msgid "Re-send activation email"
1377
+ msgstr "Re-send activation email"
1378
+
1379
+ #: templates/connect.php:162
1380
+ msgid "Thanks %s!"
1381
+ msgstr "Thanks %s!"
1382
+
1383
+ #: templates/connect.php:172, templates/forms/license-activation.php:43
1384
+ msgid "Agree & Activate License"
1385
+ msgstr "Agree & Activate License"
1386
+
1387
+ #: templates/connect.php:181
1388
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1389
+ msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
1390
+
1391
+ #: templates/connect.php:188
1392
+ 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."
1393
+ 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."
1394
+
1395
+ #: templates/connect.php:189
1396
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1397
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1398
+
1399
+ #: templates/connect.php:195
1400
+ 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."
1401
+ 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."
1402
+
1403
+ #: templates/connect.php:196
1404
+ 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."
1405
+ 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."
1406
+
1407
+ #: templates/connect.php:230
1408
+ msgid "We're excited to introduce the Freemius network-level integration."
1409
+ msgstr "We're excited to introduce the Freemius network-level integration."
1410
+
1411
+ #: templates/connect.php:233
1412
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1413
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1414
+
1415
+ #: templates/connect.php:235
1416
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1417
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1418
+
1419
+ #: templates/connect.php:237
1420
+ msgid "%s's paid features"
1421
+ msgstr "%s's paid features"
1422
+
1423
+ #: templates/connect.php:242
1424
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1425
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1426
+
1427
+ #: templates/connect.php:244
1428
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1429
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1430
+
1431
+ #: templates/connect.php:253, templates/forms/license-activation.php:46
1432
+ msgid "License key"
1433
+ msgstr "License key"
1434
+
1435
+ #: templates/connect.php:256, templates/forms/license-activation.php:19
1436
+ msgid "Can't find your license key?"
1437
+ msgstr "Can't find your license key?"
1438
+
1439
+ #: templates/connect.php:315, templates/connect.php:630, templates/forms/deactivation/retry-skip.php:20
1440
+ msgctxt "verb"
1441
+ msgid "Skip"
1442
+ msgstr "Skip"
1443
+
1444
+ #: templates/connect.php:318
1445
+ msgid "Delegate to Site Admins"
1446
+ msgstr "Delegate to Site Admins"
1447
+
1448
+ #: templates/connect.php:318
1449
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1450
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1451
+
1452
+ #: templates/connect.php:346
1453
+ msgid "Your Profile Overview"
1454
+ msgstr "Your Profile Overview"
1455
+
1456
+ #: templates/connect.php:347
1457
+ msgid "Name and email address"
1458
+ msgstr "Name and email address"
1459
+
1460
+ #: templates/connect.php:352
1461
+ msgid "Your Site Overview"
1462
+ msgstr "Your Site Overview"
1463
+
1464
+ #: templates/connect.php:353
1465
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1466
+ msgstr "Site URL, WP version, PHP info, plugins & themes"
1467
+
1468
+ #: templates/connect.php:358
1469
+ msgid "Admin Notices"
1470
+ msgstr "Admin Notices"
1471
+
1472
+ #: templates/connect.php:359, templates/connect.php:375
1473
+ msgid "Updates, announcements, marketing, no spam"
1474
+ msgstr "Updates, announcements, marketing, no spam"
1475
+
1476
+ #: templates/connect.php:364
1477
+ msgid "Current %s Events"
1478
+ msgstr "Current %s Events"
1479
+
1480
+ #: templates/connect.php:365
1481
+ msgid "Activation, deactivation and uninstall"
1482
+ msgstr "Activation, deactivation and uninstall"
1483
+
1484
+ #: templates/connect.php:374
1485
+ msgid "Newsletter"
1486
+ msgstr "Newsletter"
1487
+
1488
+ #: templates/connect.php:391, templates/forms/license-activation.php:38
1489
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1490
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1491
+
1492
+ #: templates/connect.php:396
1493
+ msgid "What permissions are being granted?"
1494
+ msgstr "What permissions are being granted?"
1495
+
1496
+ #: templates/connect.php:417
1497
+ msgid "Don't have a license key?"
1498
+ msgstr "Don't have a license key?"
1499
+
1500
+ #: templates/connect.php:418
1501
+ msgid "Activate Free Version"
1502
+ msgstr "Activate Free Version"
1503
+
1504
+ #: templates/connect.php:420
1505
+ msgid "Have a license key?"
1506
+ msgstr "Have a license key?"
1507
+
1508
+ #: templates/connect.php:428
1509
+ msgid "Privacy Policy"
1510
+ msgstr "Privacy Policy"
1511
+
1512
+ #: templates/connect.php:430
1513
+ msgid "License Agreement"
1514
+ msgstr "License Agreement"
1515
+
1516
+ #: templates/connect.php:430
1517
+ msgid "Terms of Service"
1518
+ msgstr "Terms of Service"
1519
+
1520
+ #: templates/connect.php:766
1521
+ msgctxt "as in the process of sending an email"
1522
+ msgid "Sending email"
1523
+ msgstr "Sending email"
1524
+
1525
+ #: templates/connect.php:767
1526
+ msgctxt "as activating plugin"
1527
+ msgid "Activating"
1528
+ msgstr "Activating"
1529
+
1530
+ #: templates/contact.php:78
1531
+ msgid "Contact"
1532
+ msgstr "Contact"
1533
+
1534
+ #: templates/debug.php:17
1535
+ msgctxt "as turned off"
1536
+ msgid "Off"
1537
+ msgstr "Off"
1538
+
1539
+ #: templates/debug.php:18
1540
+ msgctxt "as turned on"
1541
+ msgid "On"
1542
+ msgstr "On"
1543
+
1544
+ #: templates/debug.php:20
1545
+ msgid "SDK"
1546
+ msgstr "SDK"
1547
+
1548
+ #: templates/debug.php:24
1549
+ msgctxt "as code debugging"
1550
+ msgid "Debugging"
1551
+ msgstr "Debugging"
1552
+
1553
+ #: templates/debug.php:54, templates/debug.php:248, templates/debug.php:374, templates/debug.php:492
1554
+ msgid "Actions"
1555
+ msgstr "Actions"
1556
+
1557
+ #: templates/debug.php:64
1558
+ msgid "Are you sure you want to delete all Freemius data?"
1559
+ msgstr "Are you sure you want to delete all Freemius data?"
1560
+
1561
+ #: templates/debug.php:64
1562
+ msgid "Delete All Accounts"
1563
+ msgstr "Delete All Accounts"
1564
+
1565
+ #: templates/debug.php:71
1566
+ msgid "Clear API Cache"
1567
+ msgstr "Clear API Cache"
1568
+
1569
+ #: templates/debug.php:79
1570
+ msgid "Clear Updates Transients"
1571
+ msgstr "Clear Updates Transients"
1572
+
1573
+ #: templates/debug.php:86
1574
+ msgid "Sync Data From Server"
1575
+ msgstr "Sync Data From Server"
1576
+
1577
+ #: templates/debug.php:95
1578
+ msgid "Migrate Options to Network"
1579
+ msgstr "Migrate Options to Network"
1580
+
1581
+ #: templates/debug.php:100
1582
+ msgid "Load DB Option"
1583
+ msgstr "Load DB Option"
1584
+
1585
+ #: templates/debug.php:103
1586
+ msgid "Set DB Option"
1587
+ msgstr "Set DB Option"
1588
+
1589
+ #: templates/debug.php:180
1590
+ msgid "Key"
1591
+ msgstr "Key"
1592
+
1593
+ #: templates/debug.php:181
1594
+ msgid "Value"
1595
+ msgstr "Value"
1596
+
1597
+ #: templates/debug.php:197
1598
+ msgctxt "as software development kit versions"
1599
+ msgid "SDK Versions"
1600
+ msgstr "SDK Versions"
1601
+
1602
+ #: templates/debug.php:202
1603
+ msgid "SDK Path"
1604
+ msgstr "SDK Path"
1605
+
1606
+ #: templates/debug.php:203, templates/debug.php:242
1607
+ msgid "Module Path"
1608
+ msgstr "Module Path"
1609
+
1610
+ #: templates/debug.php:204
1611
+ msgid "Is Active"
1612
+ msgstr "Is Active"
1613
+
1614
+ #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:35
1615
+ msgid "Plugins"
1616
+ msgstr "Plugins"
1617
+
1618
+ #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:56
1619
+ msgid "Themes"
1620
+ msgstr "Themes"
1621
+
1622
+ #: templates/debug.php:237, templates/debug.php:369, templates/debug.php:451, templates/debug/scheduled-crons.php:80
1623
+ msgid "Slug"
1624
+ msgstr "Slug"
1625
+
1626
+ #: templates/debug.php:239, templates/debug.php:450
1627
+ msgid "Title"
1628
+ msgstr "Title"
1629
+
1630
+ #: templates/debug.php:240
1631
+ msgctxt "as application program interface"
1632
+ msgid "API"
1633
+ msgstr "API"
1634
+
1635
+ #: templates/debug.php:241
1636
+ msgid "Freemius State"
1637
+ msgstr "Freemius State"
1638
+
1639
+ #: templates/debug.php:245
1640
+ msgid "Network Blog"
1641
+ msgstr "Network Blog"
1642
+
1643
+ #: templates/debug.php:246
1644
+ msgid "Network User"
1645
+ msgstr "Network User"
1646
+
1647
+ #: templates/debug.php:283
1648
+ msgctxt "as connection was successful"
1649
+ msgid "Connected"
1650
+ msgstr "Connected"
1651
+
1652
+ #: templates/debug.php:284
1653
+ msgctxt "as connection blocked"
1654
+ msgid "Blocked"
1655
+ msgstr "Blocked"
1656
+
1657
+ #: templates/debug.php:320
1658
+ msgid "Simulate Trial Promotion"
1659
+ msgstr "Simulate Trial Promotion"
1660
+
1661
+ #: templates/debug.php:332
1662
+ msgid "Simulate Network Upgrade"
1663
+ msgstr "Simulate Network Upgrade"
1664
+
1665
+ #: templates/debug.php:358
1666
+ msgid "%s Installs"
1667
+ msgstr "%s Installs"
1668
+
1669
+ #: templates/debug.php:360
1670
+ msgctxt "like websites"
1671
+ msgid "Sites"
1672
+ msgstr "Sites"
1673
+
1674
+ #: templates/debug.php:366, templates/account/partials/site.php:148
1675
+ msgid "Blog ID"
1676
+ msgstr "Blog ID"
1677
+
1678
+ #: templates/debug.php:431, templates/debug.php:509, templates/account/partials/addon.php:339
1679
+ msgctxt "verb"
1680
+ msgid "Delete"
1681
+ msgstr "Delete"
1682
+
1683
+ #: templates/debug.php:445
1684
+ msgid "Add Ons of module %s"
1685
+ msgstr "Add Ons of module %s"
1686
+
1687
+ #: templates/debug.php:482
1688
+ msgid "Users"
1689
+ msgstr "Users"
1690
+
1691
+ #: templates/debug.php:489
1692
+ msgid "Verified"
1693
+ msgstr "Verified"
1694
+
1695
+ #: templates/debug.php:520
1696
+ msgid "%s Licenses"
1697
+ msgstr "%s Licenses"
1698
+
1699
+ #: templates/debug.php:525
1700
+ msgid "Plugin ID"
1701
+ msgstr "Plugin ID"
1702
+
1703
+ #: templates/debug.php:527
1704
+ msgid "Plan ID"
1705
+ msgstr "Plan ID"
1706
+
1707
+ #: templates/debug.php:528
1708
+ msgid "Quota"
1709
+ msgstr "Quota"
1710
+
1711
+ #: templates/debug.php:529
1712
+ msgid "Activated"
1713
+ msgstr "Activated"
1714
+
1715
+ #: templates/debug.php:530
1716
+ msgid "Blocking"
1717
+ msgstr "Blocking"
1718
+
1719
+ #: templates/debug.php:532
1720
+ msgctxt "as expiration date"
1721
+ msgid "Expiration"
1722
+ msgstr "Expiration"
1723
+
1724
+ #: templates/debug.php:555
1725
+ msgid "Debug Log"
1726
+ msgstr "Debug Log"
1727
+
1728
+ #: templates/debug.php:559
1729
+ msgid "All Types"
1730
+ msgstr "All Types"
1731
+
1732
+ #: templates/debug.php:566
1733
+ msgid "All Requests"
1734
+ msgstr "All Requests"
1735
+
1736
+ #: templates/debug.php:571, templates/debug.php:600, templates/debug/logger.php:25
1737
+ msgid "File"
1738
+ msgstr "File"
1739
+
1740
+ #: templates/debug.php:572, templates/debug.php:598, templates/debug/logger.php:23
1741
+ msgid "Function"
1742
+ msgstr "Function"
1743
+
1744
+ #: templates/debug.php:573
1745
+ msgid "Process ID"
1746
+ msgstr "Process ID"
1747
+
1748
+ #: templates/debug.php:574
1749
+ msgid "Logger"
1750
+ msgstr "Logger"
1751
+
1752
+ #: templates/debug.php:575, templates/debug.php:599, templates/debug/logger.php:24
1753
+ msgid "Message"
1754
+ msgstr "Message"
1755
+
1756
+ #: templates/debug.php:577
1757
+ msgid "Filter"
1758
+ msgstr "Filter"
1759
+
1760
+ #: templates/debug.php:585
1761
+ msgid "Download"
1762
+ msgstr "Download"
1763
+
1764
+ #: templates/debug.php:596, templates/debug/logger.php:22
1765
+ msgid "Type"
1766
+ msgstr "Type"
1767
+
1768
+ #: templates/debug.php:601, templates/debug/logger.php:26
1769
+ msgid "Timestamp"
1770
+ msgstr "Timestamp"
1771
+
1772
+ #: templates/secure-https-header.php:28
1773
+ msgid "Secure HTTPS %s page, running from an external domain"
1774
+ msgstr "Secure HTTPS %s page, running from an external domain"
1775
+
1776
+ #: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
1777
+ msgid "Support"
1778
+ msgstr "Support"
1779
+
1780
+ #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
1781
+ msgctxt "milliseconds"
1782
+ msgid "ms"
1783
+ msgstr "ms"
1784
+
1785
+ #: includes/debug/debug-bar-start.php:41
1786
+ msgid "Freemius API"
1787
+ msgstr "Freemius API"
1788
+
1789
+ #: includes/debug/debug-bar-start.php:42
1790
+ msgid "Requests"
1791
+ msgstr "Requests"
1792
+
1793
+ #: templates/account/billing.php:28
1794
+ msgctxt "verb"
1795
+ msgid "Update"
1796
+ msgstr "Update"
1797
+
1798
+ #: templates/account/billing.php:39
1799
+ msgid "Billing"
1800
+ msgstr "Billing"
1801
+
1802
+ #: templates/account/billing.php:44, templates/account/billing.php:44
1803
+ msgid "Business name"
1804
+ msgstr "Business name"
1805
+
1806
+ #: templates/account/billing.php:45, templates/account/billing.php:45
1807
+ msgid "Tax / VAT ID"
1808
+ msgstr "Tax / VAT ID"
1809
+
1810
+ #: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49
1811
+ msgid "Address Line %d"
1812
+ msgstr "Address Line %d"
1813
+
1814
+ #: templates/account/billing.php:52, templates/account/billing.php:52
1815
+ msgid "City"
1816
+ msgstr "City"
1817
+
1818
+ #: templates/account/billing.php:52, templates/account/billing.php:52
1819
+ msgid "Town"
1820
+ msgstr "Town"
1821
+
1822
+ #: templates/account/billing.php:53, templates/account/billing.php:53
1823
+ msgid "ZIP / Postal Code"
1824
+ msgstr "ZIP / Postal Code"
1825
+
1826
+ #: templates/account/billing.php:308
1827
+ msgid "Country"
1828
+ msgstr "Country"
1829
+
1830
+ #: templates/account/billing.php:310
1831
+ msgid "Select Country"
1832
+ msgstr "Select Country"
1833
+
1834
+ #: templates/account/billing.php:317, templates/account/billing.php:318
1835
+ msgid "State"
1836
+ msgstr "State"
1837
+
1838
+ #: templates/account/billing.php:317, templates/account/billing.php:318
1839
+ msgid "Province"
1840
+ msgstr "Province"
1841
+
1842
+ #: templates/account/payments.php:29
1843
+ msgid "Payments"
1844
+ msgstr "Payments"
1845
+
1846
+ #: templates/account/payments.php:36
1847
+ msgid "Date"
1848
+ msgstr "Date"
1849
+
1850
+ #: templates/account/payments.php:37
1851
+ msgid "Amount"
1852
+ msgstr "Amount"
1853
+
1854
+ #: templates/account/payments.php:38, templates/account/payments.php:50
1855
+ msgid "Invoice"
1856
+ msgstr "Invoice"
1857
+
1858
+ #: templates/debug/api-calls.php:56
1859
+ msgid "API"
1860
+ msgstr "API"
1861
+
1862
+ #: templates/debug/api-calls.php:68
1863
+ msgid "Method"
1864
+ msgstr "Method"
1865
+
1866
+ #: templates/debug/api-calls.php:69
1867
+ msgid "Code"
1868
+ msgstr "Code"
1869
+
1870
+ #: templates/debug/api-calls.php:70
1871
+ msgid "Length"
1872
+ msgstr "Length"
1873
+
1874
+ #: templates/debug/api-calls.php:71
1875
+ msgctxt "as file/folder path"
1876
+ msgid "Path"
1877
+ msgstr "Path"
1878
+
1879
+ #: templates/debug/api-calls.php:73
1880
+ msgid "Body"
1881
+ msgstr "Body"
1882
+
1883
+ #: templates/debug/api-calls.php:75
1884
+ msgid "Result"
1885
+ msgstr "Result"
1886
+
1887
+ #: templates/debug/api-calls.php:76
1888
+ msgid "Start"
1889
+ msgstr "Start"
1890
+
1891
+ #: templates/debug/api-calls.php:77
1892
+ msgid "End"
1893
+ msgstr "End"
1894
+
1895
+ #: templates/debug/logger.php:15
1896
+ msgid "Log"
1897
+ msgstr "Log"
1898
+
1899
+ #. translators: %s: time period (e.g. In "2 hours")
1900
+ #: templates/debug/plugins-themes-sync.php:18, templates/debug/scheduled-crons.php:91
1901
+ msgid "In %s"
1902
+ msgstr "In %s"
1903
+
1904
+ #. translators: %s: time period (e.g. "2 hours" ago)
1905
+ #: templates/debug/plugins-themes-sync.php:20, templates/debug/scheduled-crons.php:93
1906
+ msgid "%s ago"
1907
+ msgstr "%s ago"
1908
+
1909
+ #: templates/debug/plugins-themes-sync.php:21, templates/debug/scheduled-crons.php:74
1910
+ msgctxt "seconds"
1911
+ msgid "sec"
1912
+ msgstr "sec"
1913
+
1914
+ #: templates/debug/plugins-themes-sync.php:23
1915
+ msgid "Plugins & Themes Sync"
1916
+ msgstr "Plugins & Themes Sync"
1917
+
1918
+ #: templates/debug/plugins-themes-sync.php:28
1919
+ msgid "Total"
1920
+ msgstr "Total"
1921
+
1922
+ #: templates/debug/plugins-themes-sync.php:29, templates/debug/scheduled-crons.php:84
1923
+ msgid "Last"
1924
+ msgstr "Last"
1925
+
1926
+ #: templates/debug/scheduled-crons.php:76
1927
+ msgid "Scheduled Crons"
1928
+ msgstr "Scheduled Crons"
1929
+
1930
+ #: templates/debug/scheduled-crons.php:81
1931
+ msgid "Module"
1932
+ msgstr "Module"
1933
+
1934
+ #: templates/debug/scheduled-crons.php:82
1935
+ msgid "Module Type"
1936
+ msgstr "Module Type"
1937
+
1938
+ #: templates/debug/scheduled-crons.php:83
1939
+ msgid "Cron Type"
1940
+ msgstr "Cron Type"
1941
+
1942
+ #: templates/debug/scheduled-crons.php:85
1943
+ msgid "Next"
1944
+ msgstr "Next"
1945
+
1946
+ #: templates/forms/affiliation.php:82
1947
+ msgid "Non-expiring"
1948
+ msgstr "Non-expiring"
1949
+
1950
+ #: templates/forms/affiliation.php:85
1951
+ msgid "Apply to become an affiliate"
1952
+ msgstr "Apply to become an affiliate"
1953
+
1954
+ #: templates/forms/affiliation.php:104
1955
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1956
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1957
+
1958
+ #: templates/forms/affiliation.php:119
1959
+ 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."
1960
+ 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."
1961
+
1962
+ #: templates/forms/affiliation.php:122
1963
+ msgid "Your affiliation account was temporarily suspended."
1964
+ msgstr "Your affiliation account was temporarily suspended."
1965
+
1966
+ #: templates/forms/affiliation.php:125
1967
+ 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."
1968
+ 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."
1969
+
1970
+ #: templates/forms/affiliation.php:128
1971
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1972
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1973
+
1974
+ #: templates/forms/affiliation.php:141
1975
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
1976
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
1977
+
1978
+ #: templates/forms/affiliation.php:142
1979
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1980
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1981
+
1982
+ #: templates/forms/affiliation.php:145
1983
+ msgid "Program Summary"
1984
+ msgstr "Program Summary"
1985
+
1986
+ #: templates/forms/affiliation.php:147
1987
+ msgid "%s commission when a customer purchases a new license."
1988
+ msgstr "%s commission when a customer purchases a new license."
1989
+
1990
+ #: templates/forms/affiliation.php:149
1991
+ msgid "Get commission for automated subscription renewals."
1992
+ msgstr "Get commission for automated subscription renewals."
1993
+
1994
+ #: templates/forms/affiliation.php:152
1995
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
1996
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
1997
+
1998
+ #: templates/forms/affiliation.php:155
1999
+ msgid "Unlimited commissions."
2000
+ msgstr "Unlimited commissions."
2001
+
2002
+ #: templates/forms/affiliation.php:157
2003
+ msgid "%s minimum payout amount."
2004
+ msgstr "%s minimum payout amount."
2005
+
2006
+ #: templates/forms/affiliation.php:158
2007
+ msgid "Payouts are in USD and processed monthly via PayPal."
2008
+ msgstr "Payouts are in USD and processed monthly via PayPal."
2009
+
2010
+ #: templates/forms/affiliation.php:159
2011
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2012
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2013
+
2014
+ #: templates/forms/affiliation.php:162
2015
+ msgid "Affiliate"
2016
+ msgstr "Affiliate"
2017
+
2018
+ #: templates/forms/affiliation.php:165, templates/forms/resend-key.php:23
2019
+ msgid "Email address"
2020
+ msgstr "Email address"
2021
+
2022
+ #: templates/forms/affiliation.php:169
2023
+ msgid "Full name"
2024
+ msgstr "Full name"
2025
+
2026
+ #: templates/forms/affiliation.php:173
2027
+ msgid "PayPal account email address"
2028
+ msgstr "PayPal account email address"
2029
+
2030
+ #: templates/forms/affiliation.php:177
2031
+ msgid "Where are you going to promote the %s?"
2032
+ msgstr "Where are you going to promote the %s?"
2033
+
2034
+ #: templates/forms/affiliation.php:179
2035
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2036
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2037
+
2038
+ #: templates/forms/affiliation.php:181
2039
+ msgid "Add another domain"
2040
+ msgstr "Add another domain"
2041
+
2042
+ #: templates/forms/affiliation.php:185
2043
+ msgid "Extra Domains"
2044
+ msgstr "Extra Domains"
2045
+
2046
+ #: templates/forms/affiliation.php:186
2047
+ msgid "Extra domains where you will be marketing the product from."
2048
+ msgstr "Extra domains where you will be marketing the product from."
2049
+
2050
+ #: templates/forms/affiliation.php:196
2051
+ msgid "Promotion methods"
2052
+ msgstr "Promotion methods"
2053
+
2054
+ #: templates/forms/affiliation.php:199
2055
+ msgid "Social media (Facebook, Twitter, etc.)"
2056
+ msgstr "Social media (Facebook, Twitter, etc.)"
2057
+
2058
+ #: templates/forms/affiliation.php:203
2059
+ msgid "Mobile apps"
2060
+ msgstr "Mobile apps"
2061
+
2062
+ #: templates/forms/affiliation.php:207
2063
+ msgid "Website, email, and social media statistics (optional)"
2064
+ msgstr "Website, email, and social media statistics (optional)"
2065
+
2066
+ #: templates/forms/affiliation.php:210
2067
+ 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)."
2068
+ 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)."
2069
+
2070
+ #: templates/forms/affiliation.php:214
2071
+ msgid "How will you promote us?"
2072
+ msgstr "How will you promote us?"
2073
+
2074
+ #: templates/forms/affiliation.php:217
2075
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2076
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2077
+
2078
+ #: templates/forms/affiliation.php:223, templates/forms/resend-key.php:22
2079
+ msgid "Cancel"
2080
+ msgstr "Cancel"
2081
+
2082
+ #: templates/forms/affiliation.php:225
2083
+ msgid "Become an affiliate"
2084
+ msgstr "Become an affiliate"
2085
+
2086
+ #: templates/forms/license-activation.php:20
2087
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2088
+ msgstr "Please enter the license key that you received in the email right after the purchase:"
2089
+
2090
+ #: templates/forms/license-activation.php:25
2091
+ msgid "Update License"
2092
+ msgstr "Update License"
2093
+
2094
+ #: templates/forms/optout.php:30
2095
+ msgctxt "verb"
2096
+ msgid "Opt Out"
2097
+ msgstr "Opt Out"
2098
+
2099
+ #: templates/forms/optout.php:31
2100
+ msgctxt "verb"
2101
+ msgid "Opt In"
2102
+ msgstr "Opt In"
2103
+
2104
+ #: templates/forms/optout.php:33
2105
+ 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."
2106
+ 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."
2107
+
2108
+ #: templates/forms/optout.php:35
2109
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2110
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2111
+
2112
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2113
+ msgid "There is a new version of %s available."
2114
+ msgstr "There is a new version of %s available."
2115
+
2116
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2117
+ msgid " %s to access version %s security & feature updates, and support."
2118
+ msgstr " %s to access version %s security & feature updates, and support."
2119
+
2120
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2121
+ msgid "New Version Available"
2122
+ msgstr "New Version Available"
2123
+
2124
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2125
+ msgctxt "close a window"
2126
+ msgid "Dismiss"
2127
+ msgstr "Dismiss"
2128
+
2129
+ #: templates/forms/resend-key.php:21
2130
+ msgid "Send License Key"
2131
+ msgstr "Send License Key"
2132
+
2133
+ #: templates/forms/resend-key.php:57
2134
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2135
+ msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key."
2136
+
2137
+ #: templates/forms/subscription-cancellation.php:37
2138
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2139
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2140
+
2141
+ #: templates/forms/subscription-cancellation.php:47
2142
+ msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2143
+ msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2144
+
2145
+ #: templates/forms/subscription-cancellation.php:52
2146
+ msgid "license"
2147
+ msgstr "license"
2148
+
2149
+ #: templates/forms/subscription-cancellation.php:57
2150
+ msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2151
+ msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2152
+
2153
+ #: templates/forms/subscription-cancellation.php:68
2154
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2155
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2156
+
2157
+ #: templates/forms/subscription-cancellation.php:103
2158
+ msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2159
+ msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2160
+
2161
+ #: templates/forms/subscription-cancellation.php:136
2162
+ msgid "Cancel %s?"
2163
+ msgstr "Cancel %s?"
2164
+
2165
+ #: templates/forms/subscription-cancellation.php:143
2166
+ msgid "Proceed"
2167
+ msgstr "Proceed"
2168
+
2169
+ #: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:150
2170
+ msgid "Cancel %s & Proceed"
2171
+ msgstr "Cancel %s & Proceed"
2172
+
2173
+ #: templates/forms/trial-start.php:22
2174
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2175
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2176
+
2177
+ #: templates/forms/trial-start.php:28
2178
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2179
+ msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2180
+
2181
+ #: templates/js/style-premium-theme.php:37
2182
+ msgid "Premium"
2183
+ msgstr "Premium"
2184
+
2185
+ #: templates/partials/network-activation.php:23
2186
+ msgid "Activate license on all sites in the network."
2187
+ msgstr "Activate license on all sites in the network."
2188
+
2189
+ #: templates/partials/network-activation.php:24
2190
+ msgid "Apply on all sites in the network."
2191
+ msgstr "Apply on all sites in the network."
2192
+
2193
+ #: templates/partials/network-activation.php:27
2194
+ msgid "Activate license on all pending sites."
2195
+ msgstr "Activate license on all pending sites."
2196
+
2197
+ #: templates/partials/network-activation.php:28
2198
+ msgid "Apply on all pending sites."
2199
+ msgstr "Apply on all pending sites."
2200
+
2201
+ #: templates/partials/network-activation.php:36, templates/partials/network-activation.php:68
2202
+ msgid "allow"
2203
+ msgstr "allow"
2204
+
2205
+ #: templates/partials/network-activation.php:38, templates/partials/network-activation.php:70
2206
+ msgid "delegate"
2207
+ msgstr "delegate"
2208
+
2209
+ #: templates/partials/network-activation.php:41, templates/partials/network-activation.php:73
2210
+ msgid "skip"
2211
+ msgstr "skip"
2212
+
2213
+ #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
2214
+ msgid "Click to view full-size screenshot %d"
2215
+ msgstr "Click to view full-size screenshot %d"
2216
+
2217
+ #: templates/plugin-info/features.php:56
2218
+ msgid "Unlimited Updates"
2219
+ msgstr "Unlimited Updates"
2220
+
2221
+ #: templates/account/partials/activate-license-button.php:46
2222
+ msgid "Localhost"
2223
+ msgstr "Localhost"
2224
+
2225
+ #: templates/account/partials/activate-license-button.php:50
2226
+ msgctxt "as 5 licenses left"
2227
+ msgid "%s left"
2228
+ msgstr "%s left"
2229
+
2230
+ #: templates/account/partials/activate-license-button.php:51
2231
+ msgid "Last license"
2232
+ msgstr "Last license"
2233
+
2234
+ #: templates/account/partials/addon.php:115
2235
+ msgid "Cancelled"
2236
+ msgstr "Cancelled"
2237
+
2238
+ #: templates/account/partials/addon.php:125
2239
+ msgid "No expiration"
2240
+ msgstr "No expiration"
2241
+
2242
+ #: templates/account/partials/addon.php:264, templates/account/partials/addon.php:317
2243
+ msgid "Activate this add-on"
2244
+ msgstr "Activate this add-on"
2245
+
2246
+ #: templates/account/partials/site.php:181
2247
+ msgid "Owner Name"
2248
+ msgstr "Owner Name"
2249
+
2250
+ #: templates/account/partials/site.php:193
2251
+ msgid "Owner Email"
2252
+ msgstr "Owner Email"
2253
+
2254
+ #: templates/account/partials/site.php:205
2255
+ msgid "Owner ID"
2256
+ msgstr "Owner ID"
2257
+
2258
+ #: templates/account/partials/site.php:270
2259
+ msgid "Subscription"
2260
+ msgstr "Subscription"
2261
+
2262
+ #: templates/forms/deactivation/contact.php:19
2263
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2264
+ msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
2265
+
2266
+ #: templates/forms/deactivation/contact.php:22
2267
+ msgid "Contact Support"
2268
+ msgstr "Contact Support"
2269
+
2270
+ #: templates/forms/deactivation/form.php:59
2271
+ msgid "Anonymous feedback"
2272
+ msgstr "Anonymous feedback"
2273
+
2274
+ #: templates/forms/deactivation/form.php:66
2275
+ msgid "Deactivate"
2276
+ msgstr "Deactivate"
2277
+
2278
+ #: templates/forms/deactivation/form.php:68
2279
+ msgid "Activate %s"
2280
+ msgstr "Activate %s"
2281
+
2282
+ #: templates/forms/deactivation/form.php:80
2283
+ msgid "Quick Feedback"
2284
+ msgstr "Quick Feedback"
2285
+
2286
+ #: templates/forms/deactivation/form.php:84
2287
+ msgid "If you have a moment, please let us know why you are %s"
2288
+ msgstr "If you have a moment, please let us know why you are %s"
2289
+
2290
+ #: templates/forms/deactivation/form.php:84
2291
+ msgid "deactivating"
2292
+ msgstr "deactivating"
2293
+
2294
+ #: templates/forms/deactivation/form.php:84
2295
+ msgid "switching"
2296
+ msgstr "switching"
2297
+
2298
+ #: templates/forms/deactivation/form.php:332
2299
+ msgid "Submit & %s"
2300
+ msgstr "Submit & %s"
2301
+
2302
+ #: templates/forms/deactivation/form.php:353
2303
+ msgid "Kindly tell us the reason so we can improve."
2304
+ msgstr "Kindly tell us the reason so we can improve."
2305
+
2306
+ #: templates/forms/deactivation/form.php:478
2307
+ msgid "Yes - %s"
2308
+ msgstr "Yes - %s"
2309
+
2310
+ #: templates/forms/deactivation/form.php:485
2311
+ msgid "Skip & %s"
2312
+ msgstr "Skip & %s"
2313
+
2314
+ #: templates/forms/deactivation/retry-skip.php:21
2315
+ msgid "Click here to use the plugin anonymously"
2316
+ msgstr "Click here to use the plugin anonymously"
2317
+
2318
+ #: templates/forms/deactivation/retry-skip.php:23
2319
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2320
+ msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in."
freemius/languages/freemius-es_ES.po CHANGED
@@ -1,2433 +1,2433 @@
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-11-25 12:57+0000\n"
11
- "Last-Translator: Carlos Longarela <carlos@longarela.eu>\n"
12
- "Language: es_ES\n"
13
- "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
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:1602
25
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
- msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
-
28
- #: includes/class-freemius.php:1604
29
- msgid "Error"
30
- msgstr "Error"
31
-
32
- #: includes/class-freemius.php:1925
33
- msgid "I found a better %s"
34
- msgstr "He encontrado un %s mejor"
35
-
36
- #: includes/class-freemius.php:1927
37
- msgid "What's the %s's name?"
38
- msgstr "¿Cuál es el nombre de %s?"
39
-
40
- #: includes/class-freemius.php:1933
41
- msgid "It's a temporary %s. I'm just debugging an issue."
42
- msgstr "Es una %stemporal . Sólo estoy depurando un problema"
43
-
44
- #: includes/class-freemius.php:1935
45
- msgid "Deactivation"
46
- msgstr "Desactivación"
47
-
48
- #: includes/class-freemius.php:1936
49
- msgid "Theme Switch"
50
- msgstr "Cambiar tema"
51
-
52
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
- msgid "Other"
54
- msgstr "Otra"
55
-
56
- #: includes/class-freemius.php:1953
57
- msgid "I no longer need the %s"
58
- msgstr "Ya no necesito el %s"
59
-
60
- #: includes/class-freemius.php:1960
61
- msgid "I only needed the %s for a short period"
62
- msgstr "Sólo necesitaba la %s por un corto período"
63
-
64
- #: includes/class-freemius.php:1966
65
- msgid "The %s broke my site"
66
- msgstr "%s ha roto mi sitio"
67
-
68
- #: includes/class-freemius.php:1973
69
- msgid "The %s suddenly stopped working"
70
- msgstr "%s de repente ha dejado de funcionar"
71
-
72
- #: includes/class-freemius.php:1983
73
- msgid "I can't pay for it anymore"
74
- msgstr "No puedo pagarlo durante más tiempo"
75
-
76
- #: includes/class-freemius.php:1985
77
- msgid "What price would you feel comfortable paying?"
78
- msgstr "¿Con qué precio te sentirías cómodo pagando?"
79
-
80
- #: includes/class-freemius.php:1991
81
- msgid "I don't like to share my information with you"
82
- msgstr "No me gusta compartir mi información contigo"
83
-
84
- #: includes/class-freemius.php:2012
85
- msgid "The %s didn't work"
86
- msgstr "El %s no funcionaba"
87
-
88
- #: includes/class-freemius.php:2022
89
- msgid "I couldn't understand how to make it work"
90
- msgstr "No entiendo cómo hacerlo funcionar"
91
-
92
- #: includes/class-freemius.php:2030
93
- msgid "The %s is great, but I need specific feature that you don't support"
94
- msgstr "%s es genial, pero necesito una característica que no soportáis"
95
-
96
- #: includes/class-freemius.php:2032
97
- msgid "What feature?"
98
- msgstr "¿Qué característica?"
99
-
100
- #: includes/class-freemius.php:2036
101
- msgid "The %s is not working"
102
- msgstr " El %s no funciona"
103
-
104
- #: includes/class-freemius.php:2038
105
- msgid "Kindly share what didn't work so we can fix it for future users..."
106
- msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
-
108
- #: includes/class-freemius.php:2042
109
- msgid "It's not what I was looking for"
110
- msgstr "No es lo que estaba buscando"
111
-
112
- #: includes/class-freemius.php:2044
113
- msgid "What you've been looking for?"
114
- msgstr "¿Que has estado buscando?"
115
-
116
- #: includes/class-freemius.php:2048
117
- msgid "The %s didn't work as expected"
118
- msgstr " El %s no funciona como esperaba"
119
-
120
- #: includes/class-freemius.php:2050
121
- msgid "What did you expect?"
122
- msgstr "¿Qué esperas?"
123
-
124
- #: includes/class-freemius.php2853, templates/debug.php:20
125
- msgid "Freemius Debug"
126
- msgstr "Debug Freemius"
127
-
128
- #: includes/class-freemius.php:3581
129
- msgid "I don't know what is cURL or how to install it, help me!"
130
- msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
-
132
- #: includes/class-freemius.php:3583
133
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
- msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización."
135
-
136
- #: includes/class-freemius.php:3590
137
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
- msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo."
139
-
140
- #: includes/class-freemius.php:3695
141
- msgid "Yes - do your thing"
142
- msgstr "Vamos, adelante"
143
-
144
- #: includes/class-freemius.php:3700
145
- msgid "No - just deactivate"
146
- msgstr "No - sólo desactivar"
147
-
148
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
- #: includes/class-freemius.php18705, templates/add-ons.php:43
155
- msgctxt "exclamation"
156
- msgid "Oops"
157
- msgstr "Oops"
158
-
159
- #: includes/class-freemius.php:3814
160
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
- msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia."
162
-
163
- #: includes/class-freemius.php:4250
164
- msgctxt "addonX cannot run without pluginY"
165
- msgid "%s cannot run without %s."
166
- msgstr "%s no se puede ejecutar sin %s."
167
-
168
- #: includes/class-freemius.php:4251
169
- msgctxt "addonX cannot run..."
170
- msgid "%s cannot run without the plugin."
171
- msgstr "%s no se puede ejecutar sin el plugin."
172
-
173
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
- #: includes/class-freemius.php:17659
175
- msgid "Unexpected API error. Please contact the %s's author with the following error."
176
- msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
-
178
- #: includes/class-freemius.php:5006
179
- msgid "Premium %s version was successfully activated."
180
- msgstr "La versión Premium %s ha sido activada con éxito."
181
-
182
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
- msgctxt ""
184
- msgid "W00t"
185
- msgstr "W00t"
186
-
187
- #: includes/class-freemius.php:5033
188
- msgid "You have a %s license."
189
- msgstr "Tienes una licencia %s."
190
-
191
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
- #: includes/class-freemius.php:17413
195
- msgctxt "interjection expressing joy or exuberance"
196
- msgid "Yee-haw"
197
- msgstr "Vaya"
198
-
199
- #: includes/class-freemius.php:5301
200
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
- msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia."
202
-
203
- #: includes/class-freemius.php:5305
204
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
- msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
-
207
- #: includes/class-freemius.php5314, templates/add-ons.php103,
208
- #: templates/account/partials/addon.php:288
209
- msgid "More information about %s"
210
- msgstr "Más información sobre %s"
211
-
212
- #: includes/class-freemius.php:5315
213
- msgid "Purchase License"
214
- msgstr "Comprar licencia"
215
-
216
- #: includes/class-freemius.php6230, templates/connect.php:163
217
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
- msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
219
-
220
- #: includes/class-freemius.php:6234
221
- msgid "start the trial"
222
- msgstr "comenzar el período de prueba"
223
-
224
- #: includes/class-freemius.php6235, templates/connect.php:167
225
- msgid "complete the install"
226
- msgstr "completar la instalación"
227
-
228
- #: includes/class-freemius.php:6348
229
- msgid "You are just one step away - %s"
230
- msgstr "Estás a sólo un paso - %s"
231
-
232
- #: includes/class-freemius.php:6351
233
- msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
- msgid "Complete \"%s\" Activation Now"
235
- msgstr "Completar la activación de \"%s\" ahora"
236
-
237
- #: includes/class-freemius.php:6429
238
- msgid "We made a few tweaks to the %s, %s"
239
- msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
-
241
- #: includes/class-freemius.php:6433
242
- msgid "Opt in to make \"%s\" better!"
243
- msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
244
-
245
- #: includes/class-freemius.php:6861
246
- msgid "The upgrade of %s was successfully completed."
247
- msgstr "La actualización de %s se completó con éxito."
248
-
249
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
- #: includes/class-fs-plugin-updater.php1077,
251
- #: includes/class-fs-plugin-updater.php1084,
252
- #: templates/auto-installation.php:32
253
- msgid "Add-On"
254
- msgstr "Complemento"
255
-
256
- #: includes/class-freemius.php8707, templates/debug.php359,
257
- #: templates/debug.php:520
258
- msgid "Plugin"
259
- msgstr "Plugin"
260
-
261
- #: includes/class-freemius.php8708, templates/debug.php359,
262
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
- msgid "Theme"
264
- msgstr "Tema"
265
-
266
- #: includes/class-freemius.php:11183
267
- msgid "Invalid site details collection."
268
- msgstr "Colección de detalles del sitio no válida."
269
-
270
- #: includes/class-freemius.php:11303
271
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
- msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?"
273
-
274
- #: includes/class-freemius.php:11305
275
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
- msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?"
277
-
278
- #: includes/class-freemius.php:11541
279
- msgid "Account is pending activation."
280
- msgstr "La cuenta está pendiente de activación"
281
-
282
- #: includes/class-freemius.php11653,
283
- #: templates/forms/premium-versions-upgrade-handler.php:47
284
- msgid "Buy a license now"
285
- msgstr "Compra una licencia ahora"
286
-
287
- #: includes/class-freemius.php11665,
288
- #: templates/forms/premium-versions-upgrade-handler.php:46
289
- msgid "Renew your license now"
290
- msgstr "Renueva tu licencia ahora"
291
-
292
- #: includes/class-freemius.php:11669
293
- msgid "%s to access version %s security & feature updates, and support."
294
- msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
295
-
296
- #: includes/class-freemius.php:14052
297
- msgid "%s activation was successfully completed."
298
- msgstr "%s activación se completó con éxito."
299
-
300
- #: includes/class-freemius.php:14066
301
- msgid "Your account was successfully activated with the %s plan."
302
- msgstr "Tu cuenta se ha activado correctamente con el plan %s."
303
-
304
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
- msgid "Your trial has been successfully started."
306
- msgstr "Tu versión de prueba se ha iniciado con éxito."
307
-
308
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
- #: includes/class-freemius.php:14761
310
- msgid "Couldn't activate %s."
311
- msgstr "No se puede activar %s."
312
-
313
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
- #: includes/class-freemius.php:14762
315
- msgid "Please contact us with the following message:"
316
- msgstr "Por favor contáctanos con el siguiente mensaje:"
317
-
318
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
- msgid "Upgrade"
320
- msgstr "Actualizar"
321
-
322
- #: includes/class-freemius.php:15117
323
- msgid "Start Trial"
324
- msgstr "Comenzar el período de prueba"
325
-
326
- #: includes/class-freemius.php:15119
327
- msgid "Pricing"
328
- msgstr "Precio"
329
-
330
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
- msgid "Affiliation"
332
- msgstr "Afiliación"
333
-
334
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
- #: templates/account.php150, templates/debug.php:324
336
- msgid "Account"
337
- msgstr "Cuenta"
338
-
339
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
- #: includes/customizer/class-fs-customizer-support-section.php:60
341
- msgid "Contact Us"
342
- msgstr "Contáctanos"
343
-
344
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
- #: includes/class-freemius.php19553, templates/account.php100,
346
- #: templates/account/partials/addon.php:41
347
- msgid "Add-Ons"
348
- msgstr "Complementos"
349
-
350
- #: includes/class-freemius.php:15274
351
- msgctxt "ASCII arrow left icon"
352
- msgid "&#x2190;"
353
- msgstr "&#x2190;"
354
-
355
- #: includes/class-freemius.php:15274
356
- msgctxt "ASCII arrow right icon"
357
- msgid "&#x27a4;"
358
- msgstr "&#x27a4;"
359
-
360
- #: includes/class-freemius.php15276, templates/pricing.php:97
361
- msgctxt "noun"
362
- msgid "Pricing"
363
- msgstr "Precio"
364
-
365
- #: includes/class-freemius.php15479,
366
- #: includes/customizer/class-fs-customizer-support-section.php:67
367
- msgid "Support Forum"
368
- msgstr "Foro de soporte"
369
-
370
- #: includes/class-freemius.php:16265
371
- msgid "Your email has been successfully verified - you are AWESOME!"
372
- msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
373
-
374
- #: includes/class-freemius.php:16266
375
- msgctxt "a positive response"
376
- msgid "Right on"
377
- msgstr "Bien hecho"
378
-
379
- #: includes/class-freemius.php:16888
380
- msgid "Your %s Add-on plan was successfully upgraded."
381
- msgstr "Tu complemento %s del plan se actualizó con éxito."
382
-
383
- #: includes/class-freemius.php:16890
384
- msgid "%s Add-on was successfully purchased."
385
- msgstr "El complemento %s ha sido comprado correctamente."
386
-
387
- #: includes/class-freemius.php:16893
388
- msgid "Download the latest version"
389
- msgstr "Descargar la última versión"
390
-
391
- #: includes/class-freemius.php:16965
392
- msgctxt "%1s - plugin title, %2s - API domain"
393
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
- msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
395
-
396
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
- #: includes/class-freemius.php:17461
398
- msgid "Error received from the server:"
399
- msgstr "Error recibido del servidor:"
400
-
401
- #: includes/class-freemius.php:16978
402
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
- msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo."
404
-
405
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
- msgctxt ""
408
- msgid "Hmm"
409
- msgstr "Hmm"
410
-
411
- #: includes/class-freemius.php:17173
412
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
- msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos."
414
-
415
- #: includes/class-freemius.php17174, templates/account.php102,
416
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
- msgctxt "trial period"
418
- msgid "Trial"
419
- msgstr "Período de Prueba Gratuito"
420
-
421
- #: includes/class-freemius.php:17179
422
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
- msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
424
-
425
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
- msgid "Please contact us here"
427
- msgstr "Contacta aquí con nosotros"
428
-
429
- #: includes/class-freemius.php:17193
430
- msgid "Your plan was successfully upgraded."
431
- msgstr "Tu plan se actualizó con éxito."
432
-
433
- #: includes/class-freemius.php:17211
434
- msgid "Your plan was successfully changed to %s."
435
- msgstr "Tu plan se cambió correctamente a %s."
436
-
437
- #: includes/class-freemius.php:17227
438
- msgid "Your license has expired. You can still continue using the free %s forever."
439
- msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
440
-
441
- #: includes/class-freemius.php:17229
442
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
- msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
444
-
445
- #: includes/class-freemius.php:17237
446
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
- msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
448
-
449
- #: includes/class-freemius.php:17250
450
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
- msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte."
452
-
453
- #: includes/class-freemius.php:17273
454
- msgid "Your free trial has expired. You can still continue using all our free features."
455
- msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
456
-
457
- #: includes/class-freemius.php:17275
458
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
- msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
460
-
461
- #: includes/class-freemius.php:17380
462
- msgid "It looks like the license could not be activated."
463
- msgstr "Parece que la licencia no se pudo activar."
464
-
465
- #: includes/class-freemius.php:17410
466
- msgid "Your license was successfully activated."
467
- msgstr "Tu licencia fue activada correctamente."
468
-
469
- #: includes/class-freemius.php:17436
470
- msgid "It looks like your site currently doesn't have an active license."
471
- msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
472
-
473
- #: includes/class-freemius.php:17460
474
- msgid "It looks like the license deactivation failed."
475
- msgstr "Parece que la desactivación de licencia ha fallado."
476
-
477
- #: includes/class-freemius.php:17488
478
- msgid "Your license was successfully deactivated, you are back to the %s plan."
479
- msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
480
-
481
- #: includes/class-freemius.php:17489
482
- msgid "O.K"
483
- msgstr "O.K"
484
-
485
- #: includes/class-freemius.php:17542
486
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
- msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
488
-
489
- #: includes/class-freemius.php:17551
490
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
- msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
492
-
493
- #: includes/class-freemius.php:17593
494
- msgid "You are already running the %s in a trial mode."
495
- msgstr "Estás ejecutando %s en modo de prueba."
496
-
497
- #: includes/class-freemius.php:17604
498
- msgid "You already utilized a trial before."
499
- msgstr "Ya utilizaste un período de prueba antes."
500
-
501
- #: includes/class-freemius.php:17618
502
- msgid "Plan %s do not exist, therefore, can't start a trial."
503
- msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
504
-
505
- #: includes/class-freemius.php:17629
506
- msgid "Plan %s does not support a trial period."
507
- msgstr "El plan %s no admite un período de prueba."
508
-
509
- #: includes/class-freemius.php:17640
510
- msgid "None of the %s's plans supports a trial period."
511
- msgstr "Ninguno de los planes de %s soportan un período de prueba."
512
-
513
- #: includes/class-freemius.php:17690
514
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
- msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
516
-
517
- #: includes/class-freemius.php:17726
518
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
- msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
520
-
521
- #: includes/class-freemius.php:17745
522
- msgid "Your %s free trial was successfully cancelled."
523
- msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
524
-
525
- #: includes/class-freemius.php:18052
526
- msgid "Version %s was released."
527
- msgstr "La versión %s se ha lanzado."
528
-
529
- #: includes/class-freemius.php:18052
530
- msgid "Please download %s."
531
- msgstr "Por favor descarga %s."
532
-
533
- #: includes/class-freemius.php:18059
534
- msgid "the latest %s version here"
535
- msgstr "la última versión %s aquí"
536
-
537
- #: includes/class-freemius.php:18064
538
- msgid "New"
539
- msgstr "Nuevo"
540
-
541
- #: includes/class-freemius.php:18069
542
- msgid "Seems like you got the latest release."
543
- msgstr "Parece que tienes la última versión."
544
-
545
- #: includes/class-freemius.php:18070
546
- msgid "You are all good!"
547
- msgstr "¡Está todo listo!"
548
-
549
- #: includes/class-freemius.php:18338
550
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
- msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam."
552
-
553
- #: includes/class-freemius.php:18473
554
- msgid "Site successfully opted in."
555
- msgstr "Sitio dado de alta correctamente."
556
-
557
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
- msgid "Awesome"
559
- msgstr "Increíble"
560
-
561
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
- msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
564
-
565
- #: includes/class-freemius.php:18491
566
- msgid "Thank you!"
567
- msgstr "¡Gracias!"
568
-
569
- #: includes/class-freemius.php:18498
570
- msgid "We will no longer be sending any usage data of %s on %s to %s."
571
- msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
572
-
573
- #: includes/class-freemius.php:18627
574
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
- msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
576
-
577
- #: includes/class-freemius.php:18633
578
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
- msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
580
-
581
- #: includes/class-freemius.php:18638
582
- msgid "%s is the new owner of the account."
583
- msgstr "%s es el nuevo dueño de la cuenta."
584
-
585
- #: includes/class-freemius.php:18640
586
- msgctxt "as congratulations"
587
- msgid "Congrats"
588
- msgstr "Felicidades"
589
-
590
- #: includes/class-freemius.php:18660
591
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
- msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico."
593
-
594
- #: includes/class-freemius.php:18661
595
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
- msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
597
-
598
- #: includes/class-freemius.php:18668
599
- msgid "Change Ownership"
600
- msgstr "Cambiar propietario"
601
-
602
- #: includes/class-freemius.php:18676
603
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
- msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
605
-
606
- #: includes/class-freemius.php:18688
607
- msgid "Please provide your full name."
608
- msgstr "Por favor, dinos tu nombre completo."
609
-
610
- #: includes/class-freemius.php:18693
611
- msgid "Your name was successfully updated."
612
- msgstr "Tu nombre fue actualizado correctamente."
613
-
614
- #: includes/class-freemius.php:18754
615
- msgid "You have successfully updated your %s."
616
- msgstr "Has actualizado correctamente tu %s."
617
-
618
- #: includes/class-freemius.php:18894
619
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
- msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
621
-
622
- #: includes/class-freemius.php:18895
623
- msgctxt "advance notice of something that will need attention."
624
- msgid "Heads up"
625
- msgstr "Atención"
626
-
627
- #: includes/class-freemius.php:19325
628
- msgctxt "exclamation"
629
- msgid "Hey"
630
- msgstr "Hey"
631
-
632
- #: includes/class-freemius.php:19325
633
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
- msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
635
-
636
- #: includes/class-freemius.php:19333
637
- msgid "No commitment for %s days - cancel anytime!"
638
- msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
639
-
640
- #: includes/class-freemius.php:19334
641
- msgid "No credit card required"
642
- msgstr "No se necesita tarjeta de crédito"
643
-
644
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
- msgctxt "call to action"
646
- msgid "Start free trial"
647
- msgstr "Comenzar el período de prueba gratuito"
648
-
649
- #: includes/class-freemius.php:19418
650
- msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
- msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
652
-
653
- #: includes/class-freemius.php:19427
654
- msgid "Learn more"
655
- msgstr "Saber más"
656
-
657
- #: includes/class-freemius.php19577, templates/account.php406,
658
- #: templates/account.php509, templates/connect.php171,
659
- #: templates/connect.php421, templates/forms/license-activation.php24,
660
- #: templates/account/partials/addon.php:235
661
- msgid "Activate License"
662
- msgstr "Activar licencia"
663
-
664
- #: includes/class-freemius.php19578, templates/account.php469,
665
- #: templates/account.php508, templates/account/partials/site.php:256
666
- msgid "Change License"
667
- msgstr "Cambiar licencia"
668
-
669
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
- msgid "Opt Out"
671
- msgstr "Darse de baja"
672
-
673
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
- #: templates/account/partials/site.php43,
675
- #: templates/account/partials/site.php:161
676
- msgid "Opt In"
677
- msgstr "Inscribirse"
678
-
679
- #: includes/class-freemius.php:19891
680
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
- msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
682
-
683
- #: includes/class-freemius.php:19899
684
- msgid "Activate %s features"
685
- msgstr "Activar características %s"
686
-
687
- #: includes/class-freemius.php:19912
688
- msgid "Please follow these steps to complete the upgrade"
689
- msgstr "Por favor, sigue estos pasos para completar la actualización"
690
-
691
- #: includes/class-freemius.php:19916
692
- msgid "Download the latest %s version"
693
- msgstr "Descargar la última versión %s"
694
-
695
- #: includes/class-freemius.php:19920
696
- msgid "Upload and activate the downloaded version"
697
- msgstr "Cargar y activar la versión descargada"
698
-
699
- #: includes/class-freemius.php:19922
700
- msgid "How to upload and activate?"
701
- msgstr "¿Cómo subirlo y activarlo?"
702
-
703
- #: includes/class-freemius.php:20056
704
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
- msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
706
-
707
- #: includes/class-freemius.php:20217
708
- msgid "Auto installation only works for opted-in users."
709
- msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
710
-
711
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
- #: includes/class-fs-plugin-updater.php1056,
713
- #: includes/class-fs-plugin-updater.php:1070
714
- msgid "Invalid module ID."
715
- msgstr "Id de módulo no válido."
716
-
717
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
- msgid "Premium version already active."
719
- msgstr "Versión premium ya activa."
720
-
721
- #: includes/class-freemius.php:20243
722
- msgid "You do not have a valid license to access the premium version."
723
- msgstr "No tienes una licencia válida para acceder a la versión premium."
724
-
725
- #: includes/class-freemius.php:20250
726
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
- msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
728
-
729
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
- msgid "Premium add-on version already installed."
731
- msgstr "Versión del complemento premium ya instalada."
732
-
733
- #: includes/class-freemius.php:20613
734
- msgid "View paid features"
735
- msgstr "Ver las funciones de pago"
736
-
737
- #: includes/class-freemius.php:20927
738
- msgid "Thank you so much for using %s and its add-ons!"
739
- msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
740
-
741
- #: includes/class-freemius.php:20928
742
- msgid "Thank you so much for using %s!"
743
- msgstr "¡Muchas gracias por utilizar %s!"
744
-
745
- #: includes/class-freemius.php:20934
746
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
- msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
748
-
749
- #: includes/class-freemius.php:20938
750
- msgid "Thank you so much for using our products!"
751
- msgstr "¡Muchas gracias por utilizar nuestros productos!"
752
-
753
- #: includes/class-freemius.php:20939
754
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
- msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
756
-
757
- #: includes/class-freemius.php:20958
758
- msgid "%s and its add-ons"
759
- msgstr "%s y sus complementos"
760
-
761
- #: includes/class-freemius.php:20967
762
- msgid "Products"
763
- msgstr "Productos"
764
-
765
- #: includes/class-freemius.php20974, templates/connect.php:272
766
- msgid "Yes"
767
- msgstr "Si"
768
-
769
- #: includes/class-freemius.php20975, templates/connect.php:273
770
- msgid "send me security & feature updates, educational content and offers."
771
- msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
772
-
773
- #: includes/class-freemius.php20976, templates/connect.php:278
774
- msgid "No"
775
- msgstr "No"
776
-
777
- #: includes/class-freemius.php20978, templates/connect.php:280
778
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
- msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
780
-
781
- #: includes/class-freemius.php:20988
782
- msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
- msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
784
-
785
- #: includes/class-freemius.php20990, templates/connect.php:287
786
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
- msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
788
-
789
- #: includes/class-freemius.php:21272
790
- msgid "License key is empty."
791
- msgstr "La clave de licencia está vacía."
792
-
793
- #: includes/class-fs-plugin-updater.php184,
794
- #: templates/forms/premium-versions-upgrade-handler.php:57
795
- msgid "Renew license"
796
- msgstr "Renovar la licencia"
797
-
798
- #: includes/class-fs-plugin-updater.php189,
799
- #: templates/forms/premium-versions-upgrade-handler.php:58
800
- msgid "Buy license"
801
- msgstr "Comprar licencia"
802
-
803
- #: includes/class-fs-plugin-updater.php:278
804
- msgid "There is a %s of %s available."
805
- msgstr "Hay una %s de %s disponible."
806
-
807
- #: includes/class-fs-plugin-updater.php:282
808
- msgid "new version"
809
- msgstr "nueva versión"
810
-
811
- #: includes/class-fs-plugin-updater.php:301
812
- msgid "Important Upgrade Notice:"
813
- msgstr "Aviso importante de actualización:"
814
-
815
- #: includes/class-fs-plugin-updater.php:1121
816
- msgid "Installing plugin: %s"
817
- msgstr "Instalando plugin: %s"
818
-
819
- #: includes/class-fs-plugin-updater.php:1162
820
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
- msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
822
-
823
- #: includes/class-fs-plugin-updater.php:1335
824
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
- msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
826
-
827
- #: includes/fs-plugin-info-dialog.php369,
828
- #: templates/account/partials/addon.php:292
829
- msgctxt "verb"
830
- msgid "Purchase"
831
- msgstr "Comprar"
832
-
833
- #: includes/fs-plugin-info-dialog.php:372
834
- msgid "Start my free %s"
835
- msgstr "Comenzar mi período gratuito de %s"
836
-
837
- #: includes/fs-plugin-info-dialog.php:413
838
- msgid "Install Free Version Now"
839
- msgstr "Instalar la versión gratuita ahora"
840
-
841
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
- #: templates/account/partials/addon.php272,
843
- #: templates/account/partials/addon.php:322
844
- msgid "Install Now"
845
- msgstr "Instalar ahora"
846
-
847
- #: includes/fs-plugin-info-dialog.php:425
848
- msgctxt "as download latest version"
849
- msgid "Download Latest Free Version"
850
- msgstr "Descargar la última versión gratuita"
851
-
852
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
- #: templates/account/partials/addon.php:21
854
- msgctxt "as download latest version"
855
- msgid "Download Latest"
856
- msgstr "Descargar la última"
857
-
858
- #: includes/fs-plugin-info-dialog.php:436
859
- msgid "Install Free Version Update Now"
860
- msgstr "Instalar la actualización gratuita ahora"
861
-
862
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
- msgid "Install Update Now"
864
- msgstr "Instalar actualización ahora"
865
-
866
- #: includes/fs-plugin-info-dialog.php:448
867
- msgid "Newer Free Version (%s) Installed"
868
- msgstr "Versión gratuita más reciente (%s) instalada"
869
-
870
- #: includes/fs-plugin-info-dialog.php:449
871
- msgid "Newer Version (%s) Installed"
872
- msgstr "Versión más reciente (%s) instalada"
873
-
874
- #: includes/fs-plugin-info-dialog.php:457
875
- msgid "Latest Free Version Installed"
876
- msgstr "Última versión gratuita instalada"
877
-
878
- #: includes/fs-plugin-info-dialog.php:458
879
- msgid "Latest Version Installed"
880
- msgstr "Última versión instalada"
881
-
882
- #: includes/fs-plugin-info-dialog.php:613
883
- msgctxt "Plugin installer section title"
884
- msgid "Description"
885
- msgstr "Descripción"
886
-
887
- #: includes/fs-plugin-info-dialog.php:614
888
- msgctxt "Plugin installer section title"
889
- msgid "Installation"
890
- msgstr "Instalación"
891
-
892
- #: includes/fs-plugin-info-dialog.php:615
893
- msgctxt "Plugin installer section title"
894
- msgid "FAQ"
895
- msgstr "FAQ"
896
-
897
- #: includes/fs-plugin-info-dialog.php616,
898
- #: templates/plugin-info/description.php:55
899
- msgid "Screenshots"
900
- msgstr "Capturas de pantalla"
901
-
902
- #: includes/fs-plugin-info-dialog.php:617
903
- msgctxt "Plugin installer section title"
904
- msgid "Changelog"
905
- msgstr "Registro de cambios"
906
-
907
- #: includes/fs-plugin-info-dialog.php:618
908
- msgctxt "Plugin installer section title"
909
- msgid "Reviews"
910
- msgstr "Valoraciones"
911
-
912
- #: includes/fs-plugin-info-dialog.php:619
913
- msgctxt "Plugin installer section title"
914
- msgid "Other Notes"
915
- msgstr "Otras notas"
916
-
917
- #: includes/fs-plugin-info-dialog.php:634
918
- msgctxt "Plugin installer section title"
919
- msgid "Features & Pricing"
920
- msgstr "Características y precios"
921
-
922
- #: includes/fs-plugin-info-dialog.php:644
923
- msgid "Plugin Install"
924
- msgstr "Instalar plugin"
925
-
926
- #: includes/fs-plugin-info-dialog.php:716
927
- msgctxt "e.g. Professional Plan"
928
- msgid "%s Plan"
929
- msgstr "Plan %s"
930
-
931
- #: includes/fs-plugin-info-dialog.php:742
932
- msgctxt "e.g. the best product"
933
- msgid "Best"
934
- msgstr "El mejor"
935
-
936
- #: includes/fs-plugin-info-dialog.php748,
937
- #: includes/fs-plugin-info-dialog.php:768
938
- msgctxt "as every month"
939
- msgid "Monthly"
940
- msgstr "Mensual"
941
-
942
- #: includes/fs-plugin-info-dialog.php:751
943
- msgctxt "as once a year"
944
- msgid "Annual"
945
- msgstr "Anual"
946
-
947
- #: includes/fs-plugin-info-dialog.php:754
948
- msgid "Lifetime"
949
- msgstr "Permanente"
950
-
951
- #: includes/fs-plugin-info-dialog.php768,
952
- #: includes/fs-plugin-info-dialog.php770,
953
- #: includes/fs-plugin-info-dialog.php:772
954
- msgctxt "e.g. billed monthly"
955
- msgid "Billed %s"
956
- msgstr "Facturado %s"
957
-
958
- #: includes/fs-plugin-info-dialog.php:770
959
- msgctxt "as once a year"
960
- msgid "Annually"
961
- msgstr "Anualmente"
962
-
963
- #: includes/fs-plugin-info-dialog.php:772
964
- msgctxt "as once a year"
965
- msgid "Once"
966
- msgstr "Una vez"
967
-
968
- #: includes/fs-plugin-info-dialog.php:778
969
- msgid "Single Site License"
970
- msgstr "Licencia para un único sitio"
971
-
972
- #: includes/fs-plugin-info-dialog.php:780
973
- msgid "Unlimited Licenses"
974
- msgstr "Licencias ilimitadas"
975
-
976
- #: includes/fs-plugin-info-dialog.php:782
977
- msgid "Up to %s Sites"
978
- msgstr "Hasta %s sitios"
979
-
980
- #: includes/fs-plugin-info-dialog.php792,
981
- #: templates/plugin-info/features.php:82
982
- msgctxt "as monthly period"
983
- msgid "mo"
984
- msgstr "me"
985
-
986
- #: includes/fs-plugin-info-dialog.php799,
987
- #: templates/plugin-info/features.php:80
988
- msgctxt "as annual period"
989
- msgid "year"
990
- msgstr "año"
991
-
992
- #: includes/fs-plugin-info-dialog.php:853
993
- msgctxt "noun"
994
- msgid "Price"
995
- msgstr "Precio"
996
-
997
- #: includes/fs-plugin-info-dialog.php:901
998
- msgid "Save %s"
999
- msgstr "Guardar %s"
1000
-
1001
- #: includes/fs-plugin-info-dialog.php:911
1002
- msgid "No commitment for %s - cancel anytime"
1003
- msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1004
-
1005
- #: includes/fs-plugin-info-dialog.php:914
1006
- msgid "After your free %s, pay as little as %s"
1007
- msgstr "Después de su período gratuito %s, pague sólo %s"
1008
-
1009
- #: includes/fs-plugin-info-dialog.php:925
1010
- msgid "Details"
1011
- msgstr "Detalles"
1012
-
1013
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
- #: templates/account/partials/addon.php:32
1016
- msgctxt "product version"
1017
- msgid "Version"
1018
- msgstr "Versión"
1019
-
1020
- #: includes/fs-plugin-info-dialog.php:936
1021
- msgctxt "as the plugin author"
1022
- msgid "Author"
1023
- msgstr "Autor"
1024
-
1025
- #: includes/fs-plugin-info-dialog.php:943
1026
- msgid "Last Updated"
1027
- msgstr "Última actualización"
1028
-
1029
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
- msgctxt "x-ago"
1031
- msgid "%s ago"
1032
- msgstr "hace %s"
1033
-
1034
- #: includes/fs-plugin-info-dialog.php:957
1035
- msgid "Requires WordPress Version"
1036
- msgstr "Necesita la versión de WordPress"
1037
-
1038
- #: includes/fs-plugin-info-dialog.php:958
1039
- msgid "%s or higher"
1040
- msgstr "%s o mayor"
1041
-
1042
- #: includes/fs-plugin-info-dialog.php:965
1043
- msgid "Compatible up to"
1044
- msgstr "Compatible hasta"
1045
-
1046
- #: includes/fs-plugin-info-dialog.php:973
1047
- msgid "Downloaded"
1048
- msgstr "Descargado"
1049
-
1050
- #: includes/fs-plugin-info-dialog.php:977
1051
- msgid "%s time"
1052
- msgstr "% vez"
1053
-
1054
- #: includes/fs-plugin-info-dialog.php:979
1055
- msgid "%s times"
1056
- msgstr "%s veces"
1057
-
1058
- #: includes/fs-plugin-info-dialog.php:989
1059
- msgid "WordPress.org Plugin Page"
1060
- msgstr "Página del plugin en WordPress.org"
1061
-
1062
- #: includes/fs-plugin-info-dialog.php:997
1063
- msgid "Plugin Homepage"
1064
- msgstr "Página web del plugin"
1065
-
1066
- #: includes/fs-plugin-info-dialog.php1005,
1067
- #: includes/fs-plugin-info-dialog.php:1087
1068
- msgid "Donate to this plugin"
1069
- msgstr "Donar a este plugin"
1070
-
1071
- #: includes/fs-plugin-info-dialog.php:1012
1072
- msgid "Average Rating"
1073
- msgstr "Calificación media"
1074
-
1075
- #: includes/fs-plugin-info-dialog.php:1019
1076
- msgid "based on %s"
1077
- msgstr "basado en %s"
1078
-
1079
- #: includes/fs-plugin-info-dialog.php:1023
1080
- msgid "%s rating"
1081
- msgstr "%s calificación"
1082
-
1083
- #: includes/fs-plugin-info-dialog.php:1025
1084
- msgid "%s ratings"
1085
- msgstr "%s calificaciones"
1086
-
1087
- #: includes/fs-plugin-info-dialog.php:1040
1088
- msgid "%s star"
1089
- msgstr "%s estrella"
1090
-
1091
- #: includes/fs-plugin-info-dialog.php:1042
1092
- msgid "%s stars"
1093
- msgstr "%s estrellas"
1094
-
1095
- #: includes/fs-plugin-info-dialog.php:1053
1096
- msgid "Click to see reviews that provided a rating of %s"
1097
- msgstr "Haz clic para ver los comentarios con una valoración de %s"
1098
-
1099
- #: includes/fs-plugin-info-dialog.php:1066
1100
- msgid "Contributors"
1101
- msgstr "Colaboradores"
1102
-
1103
- #: includes/fs-plugin-info-dialog.php1095,
1104
- #: includes/fs-plugin-info-dialog.php:1097
1105
- msgid "Warning"
1106
- msgstr "Atencion"
1107
-
1108
- #: includes/fs-plugin-info-dialog.php:1095
1109
- msgid "This plugin has not been tested with your current version of WordPress."
1110
- msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1111
-
1112
- #: includes/fs-plugin-info-dialog.php:1097
1113
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
- msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1115
-
1116
- #: includes/fs-plugin-info-dialog.php:1116
1117
- msgid "Paid add-on must be deployed to Freemius."
1118
- msgstr "El complemento de pago se debe implementar en Freemius."
1119
-
1120
- #: includes/fs-plugin-info-dialog.php:1117
1121
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
- msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1123
-
1124
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
- #: templates/account/partials/addon.php22,
1126
- #: templates/account/partials/site.php:295
1127
- msgid "Downgrading your plan"
1128
- msgstr "Bajando tu plan"
1129
-
1130
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
- #: templates/account/partials/addon.php23,
1132
- #: templates/account/partials/site.php:296
1133
- msgid "Cancelling the subscription"
1134
- msgstr "Cancelando la suscripción"
1135
-
1136
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
- #. subscription'
1138
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
- #: templates/account/partials/addon.php25,
1140
- #: templates/account/partials/site.php:298
1141
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
- msgstr "%1s detendrá inmediatamente todos los pagos recurrentes futuros y tu %s licencia del plan caducará en %s."
1143
-
1144
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
- #: templates/account/partials/addon.php26,
1146
- #: templates/account/partials/site.php:299
1147
- msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
- msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado."
1149
-
1150
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
- #: templates/account/partials/addon.php:27
1152
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
- msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1154
-
1155
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
- #: templates/account/partials/addon.php28,
1157
- #: templates/account/partials/site.php:300
1158
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
- msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1160
-
1161
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
- #: templates/account/partials/addon.php29,
1163
- #: templates/account/partials/site.php:301
1164
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
- msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
1166
-
1167
- #. translators: %s: Plan title (e.g. "Professional")
1168
- #: templates/account.php90,
1169
- #: templates/account/partials/activate-license-button.php31,
1170
- #: templates/account/partials/addon.php:31
1171
- msgid "Activate %s Plan"
1172
- msgstr "Activar plan %s"
1173
-
1174
- #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
- #: templates/account.php93, templates/account/partials/addon.php34,
1176
- #: templates/account/partials/site.php:275
1177
- msgid "Auto renews in %s"
1178
- msgstr "Auto renovaciones en %s"
1179
-
1180
- #. translators: %s: Time period (e.g. Expires in "2 months")
1181
- #: templates/account.php95, templates/account/partials/addon.php36,
1182
- #: templates/account/partials/site.php:277
1183
- msgid "Expires in %s"
1184
- msgstr "Caduca en %s"
1185
-
1186
- #: templates/account.php96, templates/account/partials/addon.php:37
1187
- msgctxt "as synchronize license"
1188
- msgid "Sync License"
1189
- msgstr "Sincronizar licencia"
1190
-
1191
- #: templates/account.php97, templates/account/partials/addon.php:38
1192
- msgid "Cancel Trial"
1193
- msgstr "Cancelar período de prueba"
1194
-
1195
- #: templates/account.php98, templates/account/partials/addon.php:39
1196
- msgid "Change Plan"
1197
- msgstr "Cambiar Plan"
1198
-
1199
- #: templates/account.php99, templates/account/partials/addon.php:40
1200
- msgctxt "verb"
1201
- msgid "Upgrade"
1202
- msgstr "Actualizar"
1203
-
1204
- #: templates/account.php101, templates/account/partials/addon.php42,
1205
- #: templates/account/partials/site.php:302
1206
- msgctxt "verb"
1207
- msgid "Downgrade"
1208
- msgstr "Degradar"
1209
-
1210
- #: templates/account.php103, templates/add-ons.php130,
1211
- #: templates/plugin-info/features.php72,
1212
- #: templates/account/partials/addon.php44,
1213
- #: templates/account/partials/site.php:31
1214
- msgid "Free"
1215
- msgstr "Gratis"
1216
-
1217
- #: templates/account.php104, templates/account/partials/addon.php:45
1218
- msgid "Activate"
1219
- msgstr "Activar"
1220
-
1221
- #: templates/account.php105, templates/debug.php371,
1222
- #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
- #: templates/account/partials/addon.php:46
1224
- msgctxt "as product pricing plan"
1225
- msgid "Plan"
1226
- msgstr "Plan"
1227
-
1228
- #: templates/account.php:158
1229
- msgid "Free Trial"
1230
- msgstr "Período de prueba gratuito"
1231
-
1232
- #: templates/account.php:169
1233
- msgid "Account Details"
1234
- msgstr "Detalles de la cuenta"
1235
-
1236
- #: templates/account.php:179
1237
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1238
- msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
1239
-
1240
- #: templates/account.php:181
1241
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1242
- msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
1243
-
1244
- #: templates/account.php:184
1245
- msgid "Delete Account"
1246
- msgstr "Borrar cuenta"
1247
-
1248
- #: templates/account.php196, templates/account/partials/addon.php159,
1249
- #: templates/account/partials/deactivate-license-button.php:35
1250
- msgid "Deactivate License"
1251
- msgstr "Desactivar licencia"
1252
-
1253
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
- msgid "Are you sure you want to proceed?"
1255
- msgstr "¿Estás seguro que quieres proceder?"
1256
-
1257
- #: templates/account.php219, templates/account/partials/addon.php:182
1258
- msgid "Cancel Subscription"
1259
- msgstr "Cancelar suscripción"
1260
-
1261
- #: templates/account.php:247
1262
- msgctxt "as synchronize"
1263
- msgid "Sync"
1264
- msgstr "Sincronizar"
1265
-
1266
- #: templates/account.php261, templates/debug.php:487
1267
- msgid "Name"
1268
- msgstr "Nombre"
1269
-
1270
- #: templates/account.php267, templates/debug.php:488
1271
- msgid "Email"
1272
- msgstr "Correo electrónico"
1273
-
1274
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
- msgid "User ID"
1276
- msgstr "ID de usuario"
1277
-
1278
- #: templates/account.php:282
1279
- msgid "Site ID"
1280
- msgstr "ID del sitio"
1281
-
1282
- #: templates/account.php:285
1283
- msgid "No ID"
1284
- msgstr "Sin ID"
1285
-
1286
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
- #: templates/debug.php453, templates/debug.php490,
1288
- #: templates/account/partials/site.php:219
1289
- msgid "Public Key"
1290
- msgstr "Clave pública"
1291
-
1292
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
- #: templates/debug.php491, templates/account/partials/site.php:231
1294
- msgid "Secret Key"
1295
- msgstr "Clave secreta"
1296
-
1297
- #: templates/account.php:299
1298
- msgctxt "as secret encryption key missing"
1299
- msgid "No Secret"
1300
- msgstr "Sin clave secreta"
1301
-
1302
- #: templates/account.php318, templates/account/partials/site.php112,
1303
- #: templates/account/partials/site.php:114
1304
- msgid "Trial"
1305
- msgstr "Período de prueba gratuito"
1306
-
1307
- #: templates/account.php337, templates/debug.php531,
1308
- #: templates/account/partials/site.php:248
1309
- msgid "License Key"
1310
- msgstr "Clave de licencia"
1311
-
1312
- #: templates/account.php:367
1313
- msgid "not verified"
1314
- msgstr "no verificado"
1315
-
1316
- #: templates/account.php376, templates/account/partials/addon.php:120
1317
- msgid "Expired"
1318
- msgstr "Caducado"
1319
-
1320
- #: templates/account.php:428
1321
- msgid "Premium version"
1322
- msgstr "Versión premium"
1323
-
1324
- #: templates/account.php:430
1325
- msgid "Free version"
1326
- msgstr "Versión gratuita"
1327
-
1328
- #: templates/account.php:442
1329
- msgid "Verify Email"
1330
- msgstr "Verificar correo electrónico"
1331
-
1332
- #: templates/account.php:453
1333
- msgid "Download %s Version"
1334
- msgstr "Descargar versión %s"
1335
-
1336
- #: templates/account.php467, templates/account.php649,
1337
- #: templates/account/partials/site.php237,
1338
- #: templates/account/partials/site.php:255
1339
- msgctxt "verb"
1340
- msgid "Show"
1341
- msgstr "Mostrar"
1342
-
1343
- #: templates/account.php:481
1344
- msgid "What is your %s?"
1345
- msgstr "¿Cual es tú %s?"
1346
-
1347
- #: templates/account.php489, templates/account/billing.php:27
1348
- msgctxt "verb"
1349
- msgid "Edit"
1350
- msgstr "Editar"
1351
-
1352
- #: templates/account.php:502
1353
- msgid "Sites"
1354
- msgstr "Sitios"
1355
-
1356
- #: templates/account.php:513
1357
- msgid "Search by address"
1358
- msgstr "Buscar por dirección"
1359
-
1360
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
- #: templates/debug.php524, templates/debug.php597,
1363
- #: templates/account/payments.php35, templates/debug/logger.php:21
1364
- msgid "ID"
1365
- msgstr "ID"
1366
-
1367
- #: templates/account.php523, templates/debug.php:367
1368
- msgid "Address"
1369
- msgstr "Dirección"
1370
-
1371
- #: templates/account.php:524
1372
- msgid "License"
1373
- msgstr "Licencia"
1374
-
1375
- #: templates/account.php:525
1376
- msgid "Plan"
1377
- msgstr "Plan"
1378
-
1379
- #: templates/account.php:573
1380
- msgctxt "as software license"
1381
- msgid "License"
1382
- msgstr "Licencia"
1383
-
1384
- #: templates/account.php:643
1385
- msgctxt "verb"
1386
- msgid "Hide"
1387
- msgstr "Ocultar"
1388
-
1389
- #: templates/account.php:686
1390
- msgid "Cancelling %s"
1391
- msgstr "Cancelando %s"
1392
-
1393
- #: templates/account.php686, templates/account.php703,
1394
- #: templates/forms/subscription-cancellation.php27,
1395
- #: templates/forms/deactivation/form.php:117
1396
- msgid "trial"
1397
- msgstr "período de prueba"
1398
-
1399
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
- msgid "Cancelling %s..."
1401
- msgstr "Cancelando %s..."
1402
-
1403
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
- #: templates/forms/deactivation/form.php:118
1405
- msgid "subscription"
1406
- msgstr "suscripción"
1407
-
1408
- #: templates/account.php:718
1409
- msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1410
- msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?"
1411
-
1412
- #: templates/add-ons.php:36
1413
- msgid "Add Ons for %s"
1414
- msgstr "Complementos para %s"
1415
-
1416
- #: templates/add-ons.php:44
1417
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
- msgstr "No podemos cargar la lista de complementos. Probablemente es un problema por nuestro parte, por favor inténtalo de nuevo en unos minutos."
1419
-
1420
- #: templates/add-ons.php:139
1421
- msgid "View details"
1422
- msgstr "Ver detalles"
1423
-
1424
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
- #: templates/forms/resend-key.php:77
1426
- msgctxt "as close a window"
1427
- msgid "Dismiss"
1428
- msgstr "Descartar"
1429
-
1430
- #: templates/auto-installation.php:45
1431
- msgid "%s sec"
1432
- msgstr "%s seg"
1433
-
1434
- #: templates/auto-installation.php:83
1435
- msgid "Automatic Installation"
1436
- msgstr "Instalación automática"
1437
-
1438
- #: templates/auto-installation.php:93
1439
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1440
- msgstr "Una descarga automatizada y la instalación de %s (versión de pago) de %s comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de cancelación."
1441
-
1442
- #: templates/auto-installation.php:104
1443
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1444
- msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en completarse. Por favor, espera hasta que se finalice - no actualices esta página."
1445
-
1446
- #: templates/auto-installation.php:109
1447
- msgid "Cancel Installation"
1448
- msgstr "Cancelar instalación"
1449
-
1450
- #: templates/checkout.php:172
1451
- msgid "Checkout"
1452
- msgstr "Pagar"
1453
-
1454
- #: templates/checkout.php:172
1455
- msgid "PCI compliant"
1456
- msgstr "Compatible con PCI"
1457
-
1458
- #. translators: %s: name (e.g. Hey John,)
1459
- #: templates/connect.php:112
1460
- msgctxt "greeting"
1461
- msgid "Hey %s,"
1462
- msgstr "Hey %s,"
1463
-
1464
- #: templates/connect.php:154
1465
- msgid "Allow & Continue"
1466
- msgstr "Permitir y continuar"
1467
-
1468
- #: templates/connect.php:158
1469
- msgid "Re-send activation email"
1470
- msgstr "Reenviar correo electrónico de activación"
1471
-
1472
- #: templates/connect.php:162
1473
- msgid "Thanks %s!"
1474
- msgstr "¡Gracias %s!"
1475
-
1476
- #: templates/connect.php172, templates/forms/license-activation.php:43
1477
- msgid "Agree & Activate License"
1478
- msgstr "De acuerdo y activar licencia"
1479
-
1480
- #: templates/connect.php:181
1481
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1482
- msgstr "¡Gracias por comprar %s! Para empezar, escribe tu clave de licencia:"
1483
-
1484
- #: templates/connect.php:188
1485
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1486
- msgstr "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."
1487
-
1488
- #: templates/connect.php:189
1489
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1490
- msgstr "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."
1491
-
1492
- #: templates/connect.php:195
1493
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1494
- msgstr "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."
1495
-
1496
- #: templates/connect.php:196
1497
- msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1498
- msgstr "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."
1499
-
1500
- #: templates/connect.php:230
1501
- msgid "We're excited to introduce the Freemius network-level integration."
1502
- msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red."
1503
-
1504
- #: templates/connect.php:233
1505
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1506
- msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia."
1507
-
1508
- #: templates/connect.php:235
1509
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1510
- msgstr "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."
1511
-
1512
- #: templates/connect.php:237
1513
- msgid "%s's paid features"
1514
- msgstr "%s características de pago"
1515
-
1516
- #: templates/connect.php:242
1517
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1518
- msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red."
1519
-
1520
- #: templates/connect.php:244
1521
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
- msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1523
-
1524
- #: templates/connect.php253, templates/forms/license-activation.php:46
1525
- msgid "License key"
1526
- msgstr "Clave de licencia"
1527
-
1528
- #: templates/connect.php256, templates/forms/license-activation.php:19
1529
- msgid "Can't find your license key?"
1530
- msgstr "¿No puedes encontrar tu clave de licencia?"
1531
-
1532
- #: templates/connect.php315, templates/connect.php630,
1533
- #: templates/forms/deactivation/retry-skip.php:20
1534
- msgctxt "verb"
1535
- msgid "Skip"
1536
- msgstr "Saltar"
1537
-
1538
- #: templates/connect.php:318
1539
- msgid "Delegate to Site Admins"
1540
- msgstr "Delegar a administradores del sitio"
1541
-
1542
- #: templates/connect.php:318
1543
- msgid "If you click it, this decision will be delegated to the sites administrators."
1544
- msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios."
1545
-
1546
- #: templates/connect.php:346
1547
- msgid "Your Profile Overview"
1548
- msgstr "Resumen del perfil"
1549
-
1550
- #: templates/connect.php:347
1551
- msgid "Name and email address"
1552
- msgstr "Nombre y dirección de correo electrónico"
1553
-
1554
- #: templates/connect.php:352
1555
- msgid "Your Site Overview"
1556
- msgstr "Resumen del sitio"
1557
-
1558
- #: templates/connect.php:353
1559
- msgid "Site URL, WP version, PHP info, plugins & themes"
1560
- msgstr "URL del sitio web, versión de WP, PHP info, plugins y temas"
1561
-
1562
- #: templates/connect.php:358
1563
- msgid "Admin Notices"
1564
- msgstr "Avisos de administración"
1565
-
1566
- #: templates/connect.php359, templates/connect.php:375
1567
- msgid "Updates, announcements, marketing, no spam"
1568
- msgstr "Actualizaciones, anuncios, marketing, sin spam"
1569
-
1570
- #: templates/connect.php:364
1571
- msgid "Current %s Events"
1572
- msgstr "Eventos de %s actuales"
1573
-
1574
- #: templates/connect.php:365
1575
- msgid "Activation, deactivation and uninstall"
1576
- msgstr "Activación, desactivación y desinstalación"
1577
-
1578
- #: templates/connect.php:374
1579
- msgid "Newsletter"
1580
- msgstr "Boletín"
1581
-
1582
- #: templates/connect.php391, templates/forms/license-activation.php:38
1583
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1584
- msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
1585
-
1586
- #: templates/connect.php:396
1587
- msgid "What permissions are being granted?"
1588
- msgstr "¿Qué permisos se otorgan?"
1589
-
1590
- #: templates/connect.php:417
1591
- msgid "Don't have a license key?"
1592
- msgstr "¿No tienes una clave de licencia?"
1593
-
1594
- #: templates/connect.php:418
1595
- msgid "Activate Free Version"
1596
- msgstr "Activar versión gratuita"
1597
-
1598
- #: templates/connect.php:420
1599
- msgid "Have a license key?"
1600
- msgstr "¿Tienes una clave de licencia?"
1601
-
1602
- #: templates/connect.php:428
1603
- msgid "Privacy Policy"
1604
- msgstr "Política de privacidad"
1605
-
1606
- #: templates/connect.php:430
1607
- msgid "License Agreement"
1608
- msgstr "Acuerdo de licencia"
1609
-
1610
- #: templates/connect.php:430
1611
- msgid "Terms of Service"
1612
- msgstr "Términos de servicio"
1613
-
1614
- #: templates/connect.php:766
1615
- msgctxt "as in the process of sending an email"
1616
- msgid "Sending email"
1617
- msgstr "Enviando correo electrónico"
1618
-
1619
- #: templates/connect.php:767
1620
- msgctxt "as activating plugin"
1621
- msgid "Activating"
1622
- msgstr "Activando"
1623
-
1624
- #: templates/contact.php:78
1625
- msgid "Contact"
1626
- msgstr "Contacto"
1627
-
1628
- #: templates/debug.php:17
1629
- msgctxt "as turned off"
1630
- msgid "Off"
1631
- msgstr "Apagado"
1632
-
1633
- #: templates/debug.php:18
1634
- msgctxt "as turned on"
1635
- msgid "On"
1636
- msgstr "Encendido"
1637
-
1638
- #: templates/debug.php:20
1639
- msgid "SDK"
1640
- msgstr "SDK"
1641
-
1642
- #: templates/debug.php:24
1643
- msgctxt "as code debugging"
1644
- msgid "Debugging"
1645
- msgstr "Depurando"
1646
-
1647
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
- #: templates/debug.php:492
1649
- msgid "Actions"
1650
- msgstr "Acciones"
1651
-
1652
- #: templates/debug.php:64
1653
- msgid "Are you sure you want to delete all Freemius data?"
1654
- msgstr "¿Está seguro que desea eliminar todos los datos de Freemius?"
1655
-
1656
- #: templates/debug.php:64
1657
- msgid "Delete All Accounts"
1658
- msgstr "Borrar todas las cuentas"
1659
-
1660
- #: templates/debug.php:71
1661
- msgid "Clear API Cache"
1662
- msgstr "Borrar caché de la API"
1663
-
1664
- #: templates/debug.php:79
1665
- msgid "Clear Updates Transients"
1666
- msgstr "Borrar transients de actualizaciones"
1667
-
1668
- #: templates/debug.php:86
1669
- msgid "Sync Data From Server"
1670
- msgstr "Sincronizar datos desde el servidor"
1671
-
1672
- #: templates/debug.php:95
1673
- msgid "Migrate Options to Network"
1674
- msgstr "Migrar opciones a la red"
1675
-
1676
- #: templates/debug.php:100
1677
- msgid "Load DB Option"
1678
- msgstr "Cargar opción de BD"
1679
-
1680
- #: templates/debug.php:103
1681
- msgid "Set DB Option"
1682
- msgstr "Guardar opción en BD"
1683
-
1684
- #: templates/debug.php:180
1685
- msgid "Key"
1686
- msgstr "Clave"
1687
-
1688
- #: templates/debug.php:181
1689
- msgid "Value"
1690
- msgstr "Valor"
1691
-
1692
- #: templates/debug.php:197
1693
- msgctxt "as software development kit versions"
1694
- msgid "SDK Versions"
1695
- msgstr "Versiones SDK"
1696
-
1697
- #: templates/debug.php:202
1698
- msgid "SDK Path"
1699
- msgstr "Ruta del SDK"
1700
-
1701
- #: templates/debug.php203, templates/debug.php:242
1702
- msgid "Module Path"
1703
- msgstr "Ruta del módulo"
1704
-
1705
- #: templates/debug.php:204
1706
- msgid "Is Active"
1707
- msgstr "Está activo"
1708
-
1709
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
- msgid "Plugins"
1711
- msgstr "Plugins"
1712
-
1713
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
- msgid "Themes"
1715
- msgstr "Temas"
1716
-
1717
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
- #: templates/debug/scheduled-crons.php:80
1719
- msgid "Slug"
1720
- msgstr "Ruta"
1721
-
1722
- #: templates/debug.php239, templates/debug.php:450
1723
- msgid "Title"
1724
- msgstr "Título"
1725
-
1726
- #: templates/debug.php:240
1727
- msgctxt "as application program interface"
1728
- msgid "API"
1729
- msgstr "API"
1730
-
1731
- #: templates/debug.php:241
1732
- msgid "Freemius State"
1733
- msgstr "Estado Freemius"
1734
-
1735
- #: templates/debug.php:245
1736
- msgid "Network Blog"
1737
- msgstr "Blog de red"
1738
-
1739
- #: templates/debug.php:246
1740
- msgid "Network User"
1741
- msgstr "Usuario de red"
1742
-
1743
- #: templates/debug.php:283
1744
- msgctxt "as connection was successful"
1745
- msgid "Connected"
1746
- msgstr "Conectado"
1747
-
1748
- #: templates/debug.php:284
1749
- msgctxt "as connection blocked"
1750
- msgid "Blocked"
1751
- msgstr "Bloqueado"
1752
-
1753
- #: templates/debug.php:320
1754
- msgid "Simulate Trial Promotion"
1755
- msgstr "Simular período de prueba"
1756
-
1757
- #: templates/debug.php:332
1758
- msgid "Simulate Network Upgrade"
1759
- msgstr "Simular actualización de red"
1760
-
1761
- #: templates/debug.php:358
1762
- msgid "%s Installs"
1763
- msgstr "%s Instalaciones"
1764
-
1765
- #: templates/debug.php:360
1766
- msgctxt "like websites"
1767
- msgid "Sites"
1768
- msgstr "Sitios"
1769
-
1770
- #: templates/debug.php366, templates/account/partials/site.php:148
1771
- msgid "Blog ID"
1772
- msgstr "ID del blog"
1773
-
1774
- #: templates/debug.php431, templates/debug.php509,
1775
- #: templates/account/partials/addon.php:339
1776
- msgctxt "verb"
1777
- msgid "Delete"
1778
- msgstr "Borrar"
1779
-
1780
- #: templates/debug.php:445
1781
- msgid "Add Ons of module %s"
1782
- msgstr "Complementos del módulo %s"
1783
-
1784
- #: templates/debug.php:482
1785
- msgid "Users"
1786
- msgstr "Usuarios"
1787
-
1788
- #: templates/debug.php:489
1789
- msgid "Verified"
1790
- msgstr "Verificado"
1791
-
1792
- #: templates/debug.php:520
1793
- msgid "%s Licenses"
1794
- msgstr "%s Licencias"
1795
-
1796
- #: templates/debug.php:525
1797
- msgid "Plugin ID"
1798
- msgstr "ID del plugin"
1799
-
1800
- #: templates/debug.php:527
1801
- msgid "Plan ID"
1802
- msgstr "ID del plan"
1803
-
1804
- #: templates/debug.php:528
1805
- msgid "Quota"
1806
- msgstr "Cuota"
1807
-
1808
- #: templates/debug.php:529
1809
- msgid "Activated"
1810
- msgstr "Activado"
1811
-
1812
- #: templates/debug.php:530
1813
- msgid "Blocking"
1814
- msgstr "Bloqueando"
1815
-
1816
- #: templates/debug.php:532
1817
- msgctxt "as expiration date"
1818
- msgid "Expiration"
1819
- msgstr "Caducidad"
1820
-
1821
- #: templates/debug.php:555
1822
- msgid "Debug Log"
1823
- msgstr "Log de Debug"
1824
-
1825
- #: templates/debug.php:559
1826
- msgid "All Types"
1827
- msgstr "Todos los Tipos"
1828
-
1829
- #: templates/debug.php:566
1830
- msgid "All Requests"
1831
- msgstr "Todas las peticiones"
1832
-
1833
- #: templates/debug.php571, templates/debug.php600,
1834
- #: templates/debug/logger.php:25
1835
- msgid "File"
1836
- msgstr "Archivo"
1837
-
1838
- #: templates/debug.php572, templates/debug.php598,
1839
- #: templates/debug/logger.php:23
1840
- msgid "Function"
1841
- msgstr "Función"
1842
-
1843
- #: templates/debug.php:573
1844
- msgid "Process ID"
1845
- msgstr "ID del proceso"
1846
-
1847
- #: templates/debug.php:574
1848
- msgid "Logger"
1849
- msgstr "Logger"
1850
-
1851
- #: templates/debug.php575, templates/debug.php599,
1852
- #: templates/debug/logger.php:24
1853
- msgid "Message"
1854
- msgstr "Mensaje"
1855
-
1856
- #: templates/debug.php:577
1857
- msgid "Filter"
1858
- msgstr "Filtro"
1859
-
1860
- #: templates/debug.php:585
1861
- msgid "Download"
1862
- msgstr "Descarga"
1863
-
1864
- #: templates/debug.php596, templates/debug/logger.php:22
1865
- msgid "Type"
1866
- msgstr "Tipo"
1867
-
1868
- #: templates/debug.php601, templates/debug/logger.php:26
1869
- msgid "Timestamp"
1870
- msgstr "Timestamp"
1871
-
1872
- #: templates/secure-https-header.php:28
1873
- msgid "Secure HTTPS %s page, running from an external domain"
1874
- msgstr "Página segura HTTPS %s, desde un dominio externo"
1875
-
1876
- #: includes/customizer/class-fs-customizer-support-section.php55,
1877
- #: templates/plugin-info/features.php:43
1878
- msgid "Support"
1879
- msgstr "Soporte"
1880
-
1881
- #: includes/debug/class-fs-debug-bar-panel.php48,
1882
- #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1883
- msgctxt "milliseconds"
1884
- msgid "ms"
1885
- msgstr "ms"
1886
-
1887
- #: includes/debug/debug-bar-start.php:41
1888
- msgid "Freemius API"
1889
- msgstr "API Freemius"
1890
-
1891
- #: includes/debug/debug-bar-start.php:42
1892
- msgid "Requests"
1893
- msgstr "Peticiones"
1894
-
1895
- #: templates/account/billing.php:28
1896
- msgctxt "verb"
1897
- msgid "Update"
1898
- msgstr "Actualizar"
1899
-
1900
- #: templates/account/billing.php:39
1901
- msgid "Billing"
1902
- msgstr "Facturación"
1903
-
1904
- #: templates/account/billing.php44, templates/account/billing.php:44
1905
- msgid "Business name"
1906
- msgstr "Nombre de la empresa"
1907
-
1908
- #: templates/account/billing.php45, templates/account/billing.php:45
1909
- msgid "Tax / VAT ID"
1910
- msgstr "Tax / Núm IVA"
1911
-
1912
- #: templates/account/billing.php48, templates/account/billing.php48,
1913
- #: templates/account/billing.php49, templates/account/billing.php:49
1914
- msgid "Address Line %d"
1915
- msgstr "Línea de la dirección %d"
1916
-
1917
- #: templates/account/billing.php52, templates/account/billing.php:52
1918
- msgid "City"
1919
- msgstr "Ciudad"
1920
-
1921
- #: templates/account/billing.php52, templates/account/billing.php:52
1922
- msgid "Town"
1923
- msgstr "Municipio"
1924
-
1925
- #: templates/account/billing.php53, templates/account/billing.php:53
1926
- msgid "ZIP / Postal Code"
1927
- msgstr "Código postal"
1928
-
1929
- #: templates/account/billing.php:308
1930
- msgid "Country"
1931
- msgstr "País"
1932
-
1933
- #: templates/account/billing.php:310
1934
- msgid "Select Country"
1935
- msgstr "Seleccionar país"
1936
-
1937
- #: templates/account/billing.php317, templates/account/billing.php:318
1938
- msgid "State"
1939
- msgstr "Estado"
1940
-
1941
- #: templates/account/billing.php317, templates/account/billing.php:318
1942
- msgid "Province"
1943
- msgstr "Provincia"
1944
-
1945
- #: templates/account/payments.php:29
1946
- msgid "Payments"
1947
- msgstr "Pagos"
1948
-
1949
- #: templates/account/payments.php:36
1950
- msgid "Date"
1951
- msgstr "Fecha"
1952
-
1953
- #: templates/account/payments.php:37
1954
- msgid "Amount"
1955
- msgstr "Cantidad"
1956
-
1957
- #: templates/account/payments.php38, templates/account/payments.php:50
1958
- msgid "Invoice"
1959
- msgstr "Factura"
1960
-
1961
- #: templates/debug/api-calls.php:56
1962
- msgid "API"
1963
- msgstr "API"
1964
-
1965
- #: templates/debug/api-calls.php:68
1966
- msgid "Method"
1967
- msgstr "Método"
1968
-
1969
- #: templates/debug/api-calls.php:69
1970
- msgid "Code"
1971
- msgstr "Código"
1972
-
1973
- #: templates/debug/api-calls.php:70
1974
- msgid "Length"
1975
- msgstr "Longitud"
1976
-
1977
- #: templates/debug/api-calls.php:71
1978
- msgctxt "as file/folder path"
1979
- msgid "Path"
1980
- msgstr "Ruta"
1981
-
1982
- #: templates/debug/api-calls.php:73
1983
- msgid "Body"
1984
- msgstr "Cuerpo"
1985
-
1986
- #: templates/debug/api-calls.php:75
1987
- msgid "Result"
1988
- msgstr "Resultado"
1989
-
1990
- #: templates/debug/api-calls.php:76
1991
- msgid "Start"
1992
- msgstr "Inicio"
1993
-
1994
- #: templates/debug/api-calls.php:77
1995
- msgid "End"
1996
- msgstr "Fin"
1997
-
1998
- #: templates/debug/logger.php:15
1999
- msgid "Log"
2000
- msgstr "Log"
2001
-
2002
- #. translators: %s: time period (e.g. In "2 hours")
2003
- #: templates/debug/plugins-themes-sync.php18,
2004
- #: templates/debug/scheduled-crons.php:91
2005
- msgid "In %s"
2006
- msgstr "En %s"
2007
-
2008
- #. translators: %s: time period (e.g. "2 hours" ago)
2009
- #: templates/debug/plugins-themes-sync.php20,
2010
- #: templates/debug/scheduled-crons.php:93
2011
- msgid "%s ago"
2012
- msgstr "hace %s"
2013
-
2014
- #: templates/debug/plugins-themes-sync.php21,
2015
- #: templates/debug/scheduled-crons.php:74
2016
- msgctxt "seconds"
2017
- msgid "sec"
2018
- msgstr "seg"
2019
-
2020
- #: templates/debug/plugins-themes-sync.php:23
2021
- msgid "Plugins & Themes Sync"
2022
- msgstr "Sincronizar plugins y temas"
2023
-
2024
- #: templates/debug/plugins-themes-sync.php:28
2025
- msgid "Total"
2026
- msgstr "Total"
2027
-
2028
- #: templates/debug/plugins-themes-sync.php29,
2029
- #: templates/debug/scheduled-crons.php:84
2030
- msgid "Last"
2031
- msgstr "Último"
2032
-
2033
- #: templates/debug/scheduled-crons.php:76
2034
- msgid "Scheduled Crons"
2035
- msgstr "Crons programados"
2036
-
2037
- #: templates/debug/scheduled-crons.php:81
2038
- msgid "Module"
2039
- msgstr "Módulo"
2040
-
2041
- #: templates/debug/scheduled-crons.php:82
2042
- msgid "Module Type"
2043
- msgstr "Tipo de módulo"
2044
-
2045
- #: templates/debug/scheduled-crons.php:83
2046
- msgid "Cron Type"
2047
- msgstr "Tipo de cron"
2048
-
2049
- #: templates/debug/scheduled-crons.php:85
2050
- msgid "Next"
2051
- msgstr "Siguiente"
2052
-
2053
- #: templates/forms/affiliation.php:82
2054
- msgid "Non-expiring"
2055
- msgstr "Sin caducidad"
2056
-
2057
- #: templates/forms/affiliation.php:85
2058
- msgid "Apply to become an affiliate"
2059
- msgstr "Aceptar para hacerse afiliado"
2060
-
2061
- #: templates/forms/affiliation.php:104
2062
- msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2063
- msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s."
2064
-
2065
- #: templates/forms/affiliation.php:119
2066
- msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2067
- msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional."
2068
-
2069
- #: templates/forms/affiliation.php:122
2070
- msgid "Your affiliation account was temporarily suspended."
2071
- msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente."
2072
-
2073
- #: templates/forms/affiliation.php:125
2074
- msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2075
- msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días."
2076
-
2077
- #: templates/forms/affiliation.php:128
2078
- msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2079
- msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte."
2080
-
2081
- #: templates/forms/affiliation.php:141
2082
- msgid "Like the %s? Become our ambassador and earn cash ;-)"
2083
- msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)"
2084
-
2085
- #: templates/forms/affiliation.php:142
2086
- msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2087
- msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!"
2088
-
2089
- #: templates/forms/affiliation.php:145
2090
- msgid "Program Summary"
2091
- msgstr "Sumario del programa"
2092
-
2093
- #: templates/forms/affiliation.php:147
2094
- msgid "%s commission when a customer purchases a new license."
2095
- msgstr "%s comisión cuando un cliente compra una nueva licencia."
2096
-
2097
- #: templates/forms/affiliation.php:149
2098
- msgid "Get commission for automated subscription renewals."
2099
- msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones."
2100
-
2101
- #: templates/forms/affiliation.php:152
2102
- msgid "%s tracking cookie after the first visit to maximize earnings potential."
2103
- msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales."
2104
-
2105
- #: templates/forms/affiliation.php:155
2106
- msgid "Unlimited commissions."
2107
- msgstr "Comisiones Ilimitadas"
2108
-
2109
- #: templates/forms/affiliation.php:157
2110
- msgid "%s minimum payout amount."
2111
- msgstr "%s cantidad mínima a pagar."
2112
-
2113
- #: templates/forms/affiliation.php:158
2114
- msgid "Payouts are in USD and processed monthly via PayPal."
2115
- msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal."
2116
-
2117
- #: templates/forms/affiliation.php:159
2118
- msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2119
- msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días."
2120
-
2121
- #: templates/forms/affiliation.php:162
2122
- msgid "Affiliate"
2123
- msgstr "Afiliado"
2124
-
2125
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2126
- msgid "Email address"
2127
- msgstr "Dirección de correo electrónico"
2128
-
2129
- #: templates/forms/affiliation.php:169
2130
- msgid "Full name"
2131
- msgstr "Nombre completo"
2132
-
2133
- #: templates/forms/affiliation.php:173
2134
- msgid "PayPal account email address"
2135
- msgstr "Dirección de correo electrónico de PayPal"
2136
-
2137
- #: templates/forms/affiliation.php:177
2138
- msgid "Where are you going to promote the %s?"
2139
- msgstr "¿Dónde vas a promocionar %s?"
2140
-
2141
- #: templates/forms/affiliation.php:179
2142
- msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2143
- msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s."
2144
-
2145
- #: templates/forms/affiliation.php:181
2146
- msgid "Add another domain"
2147
- msgstr "Añadir otro dominio"
2148
-
2149
- #: templates/forms/affiliation.php:185
2150
- msgid "Extra Domains"
2151
- msgstr "Dominios extra"
2152
-
2153
- #: templates/forms/affiliation.php:186
2154
- msgid "Extra domains where you will be marketing the product from."
2155
- msgstr "Dominios extra desde donde promocionarás el producto."
2156
-
2157
- #: templates/forms/affiliation.php:196
2158
- msgid "Promotion methods"
2159
- msgstr "Métodos de promoción"
2160
-
2161
- #: templates/forms/affiliation.php:199
2162
- msgid "Social media (Facebook, Twitter, etc.)"
2163
- msgstr "Social media (Facebook, Twitter, etc.)"
2164
-
2165
- #: templates/forms/affiliation.php:203
2166
- msgid "Mobile apps"
2167
- msgstr "Apps móviles "
2168
-
2169
- #: templates/forms/affiliation.php:207
2170
- msgid "Website, email, and social media statistics (optional)"
2171
- msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)"
2172
-
2173
- #: templates/forms/affiliation.php:210
2174
- msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2175
- msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)"
2176
-
2177
- #: templates/forms/affiliation.php:214
2178
- msgid "How will you promote us?"
2179
- msgstr "¿Como nos promocionarás?"
2180
-
2181
- #: templates/forms/affiliation.php:217
2182
- msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2183
- msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)"
2184
-
2185
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2186
- msgid "Cancel"
2187
- msgstr "Cancelar"
2188
-
2189
- #: templates/forms/affiliation.php:225
2190
- msgid "Become an affiliate"
2191
- msgstr "Hacerse afiliado"
2192
-
2193
- #: templates/forms/license-activation.php:20
2194
- msgid "Please enter the license key that you received in the email right after the purchase:"
2195
- msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:"
2196
-
2197
- #: templates/forms/license-activation.php:25
2198
- msgid "Update License"
2199
- msgstr "Activar licencia"
2200
-
2201
- #: templates/forms/optout.php:30
2202
- msgctxt "verb"
2203
- msgid "Opt Out"
2204
- msgstr "Darse de baja"
2205
-
2206
- #: templates/forms/optout.php:31
2207
- msgctxt "verb"
2208
- msgid "Opt In"
2209
- msgstr "Inscribirse"
2210
-
2211
- #: templates/forms/optout.php:33
2212
- msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2213
- msgstr "El uso del seguimiento se hace con la intención de mejorar %s. Crear una mejor experiencia de usuario, priorizando nuevas características y cosas mejores. Realmente apreciaríamos que considerases permitirnos continuar con el seguimiento."
2214
-
2215
- #: templates/forms/optout.php:35
2216
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2217
- msgstr "Haciendo clic en \"Desistir\", ya no enviaremos los datos de %s a %s."
2218
-
2219
- #: templates/forms/premium-versions-upgrade-handler.php:40
2220
- msgid "There is a new version of %s available."
2221
- msgstr "Hay una nueva versión de %s disponible."
2222
-
2223
- #: templates/forms/premium-versions-upgrade-handler.php:41
2224
- msgid " %s to access version %s security & feature updates, and support."
2225
- msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
2226
-
2227
- #: templates/forms/premium-versions-upgrade-handler.php:54
2228
- msgid "New Version Available"
2229
- msgstr "Nueva versión disponible"
2230
-
2231
- #: templates/forms/premium-versions-upgrade-handler.php:75
2232
- msgctxt "close a window"
2233
- msgid "Dismiss"
2234
- msgstr "Descartar"
2235
-
2236
- #: templates/forms/resend-key.php:21
2237
- msgid "Send License Key"
2238
- msgstr "Enviar clave de licencia"
2239
-
2240
- #: templates/forms/resend-key.php:57
2241
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2242
- msgstr "Escribe abajo la dirección de correo electrónico que has usado para la actualización y te reenviaremos la clave de licencia."
2243
-
2244
- #: templates/forms/subscription-cancellation.php:37
2245
- msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
- msgstr "Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que podrás usar en otro sitio."
2247
-
2248
- #: templates/forms/subscription-cancellation.php:47
2249
- msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
- msgstr "En caso de que NO estés planeando utilizar este %s en este sitio (o en cualquier otro sitio), ¿te gustaría cancelar también %s?"
2251
-
2252
- #: templates/forms/subscription-cancellation.php:52
2253
- msgid "license"
2254
- msgstr "licencia"
2255
-
2256
- #: templates/forms/subscription-cancellation.php:57
2257
- msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
- msgstr "Cancelar %s - No necesito más actualizaciones de características y seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro sitio."
2259
-
2260
- #: templates/forms/subscription-cancellation.php:68
2261
- msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
- msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte."
2263
-
2264
- #: templates/forms/subscription-cancellation.php:103
2265
- msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
- msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida."
2267
-
2268
- #: templates/forms/subscription-cancellation.php:136
2269
- msgid "Cancel %s?"
2270
- msgstr "¿Cancelar %s?"
2271
-
2272
- #: templates/forms/subscription-cancellation.php:143
2273
- msgid "Proceed"
2274
- msgstr "Proceder"
2275
-
2276
- #: templates/forms/subscription-cancellation.php191,
2277
- #: templates/forms/deactivation/form.php:150
2278
- msgid "Cancel %s & Proceed"
2279
- msgstr "Cancelar %s y proceder"
2280
-
2281
- #: templates/forms/trial-start.php:22
2282
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2283
- msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan %2$s."
2284
-
2285
- #: templates/forms/trial-start.php:28
2286
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2287
- msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba."
2288
-
2289
- #: templates/js/style-premium-theme.php:37
2290
- msgid "Premium"
2291
- msgstr "Premium"
2292
-
2293
- #: templates/partials/network-activation.php:23
2294
- msgid "Activate license on all sites in the network."
2295
- msgstr "Activar licencia en todos los sitios de la red"
2296
-
2297
- #: templates/partials/network-activation.php:24
2298
- msgid "Apply on all sites in the network."
2299
- msgstr "Aplicar en todos los sitios de la red"
2300
-
2301
- #: templates/partials/network-activation.php:27
2302
- msgid "Activate license on all pending sites."
2303
- msgstr "Aplicar licencia en todos los sitios pendientes"
2304
-
2305
- #: templates/partials/network-activation.php:28
2306
- msgid "Apply on all pending sites."
2307
- msgstr "Aplicar en todos los sitios pendientes"
2308
-
2309
- #: templates/partials/network-activation.php36,
2310
- #: templates/partials/network-activation.php:68
2311
- msgid "allow"
2312
- msgstr "permitir"
2313
-
2314
- #: templates/partials/network-activation.php38,
2315
- #: templates/partials/network-activation.php:70
2316
- msgid "delegate"
2317
- msgstr "delegar"
2318
-
2319
- #: templates/partials/network-activation.php41,
2320
- #: templates/partials/network-activation.php:73
2321
- msgid "skip"
2322
- msgstr "saltar"
2323
-
2324
- #: templates/plugin-info/description.php72,
2325
- #: templates/plugin-info/screenshots.php:31
2326
- msgid "Click to view full-size screenshot %d"
2327
- msgstr "Click para ver la captura de pantalla a tamaño completo %d"
2328
-
2329
- #: templates/plugin-info/features.php:56
2330
- msgid "Unlimited Updates"
2331
- msgstr "Actualizaciones Ilimitadas"
2332
-
2333
- #: templates/account/partials/activate-license-button.php:46
2334
- msgid "Localhost"
2335
- msgstr "Localhost"
2336
-
2337
- #: templates/account/partials/activate-license-button.php:50
2338
- msgctxt "as 5 licenses left"
2339
- msgid "%s left"
2340
- msgstr "quedan %s"
2341
-
2342
- #: templates/account/partials/activate-license-button.php:51
2343
- msgid "Last license"
2344
- msgstr "Última licencia"
2345
-
2346
- #: templates/account/partials/addon.php:115
2347
- msgid "Cancelled"
2348
- msgstr "Cancelado"
2349
-
2350
- #: templates/account/partials/addon.php:125
2351
- msgid "No expiration"
2352
- msgstr "Sin caducidad"
2353
-
2354
- #: templates/account/partials/addon.php264,
2355
- #: templates/account/partials/addon.php:317
2356
- msgid "Activate this add-on"
2357
- msgstr "Activar este complemento"
2358
-
2359
- #: templates/account/partials/site.php:181
2360
- msgid "Owner Name"
2361
- msgstr "Nombre del propietario"
2362
-
2363
- #: templates/account/partials/site.php:193
2364
- msgid "Owner Email"
2365
- msgstr "Correo electrónico del propietario"
2366
-
2367
- #: templates/account/partials/site.php:205
2368
- msgid "Owner ID"
2369
- msgstr "ID del propietario"
2370
-
2371
- #: templates/account/partials/site.php:270
2372
- msgid "Subscription"
2373
- msgstr "Suscripción"
2374
-
2375
- #: templates/forms/deactivation/contact.php:19
2376
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2377
- msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una oportunidad."
2378
-
2379
- #: templates/forms/deactivation/contact.php:22
2380
- msgid "Contact Support"
2381
- msgstr "Contactar soporte"
2382
-
2383
- #: templates/forms/deactivation/form.php:59
2384
- msgid "Anonymous feedback"
2385
- msgstr "Comentarios anónimos"
2386
-
2387
- #: templates/forms/deactivation/form.php:66
2388
- msgid "Deactivate"
2389
- msgstr "Desactivar"
2390
-
2391
- #: templates/forms/deactivation/form.php:68
2392
- msgid "Activate %s"
2393
- msgstr "Activar %s"
2394
-
2395
- #: templates/forms/deactivation/form.php:80
2396
- msgid "Quick Feedback"
2397
- msgstr "Comentarios rápidos"
2398
-
2399
- #: templates/forms/deactivation/form.php:84
2400
- msgid "If you have a moment, please let us know why you are %s"
2401
- msgstr "Si tienes un momento, por favor, dinos por qué estás %s"
2402
-
2403
- #: templates/forms/deactivation/form.php:84
2404
- msgid "deactivating"
2405
- msgstr "desactivando"
2406
-
2407
- #: templates/forms/deactivation/form.php:84
2408
- msgid "switching"
2409
- msgstr "cambiando"
2410
-
2411
- #: templates/forms/deactivation/form.php:332
2412
- msgid "Submit & %s"
2413
- msgstr "Enviar y %s"
2414
-
2415
- #: templates/forms/deactivation/form.php:353
2416
- msgid "Kindly tell us the reason so we can improve."
2417
- msgstr "Por favor, dínos la razón para que podamos mejorar."
2418
-
2419
- #: templates/forms/deactivation/form.php:478
2420
- msgid "Yes - %s"
2421
- msgstr "Si - %s"
2422
-
2423
- #: templates/forms/deactivation/form.php:485
2424
- msgid "Skip & %s"
2425
- msgstr "Saltar y %s"
2426
-
2427
- #: templates/forms/deactivation/retry-skip.php:21
2428
- msgid "Click here to use the plugin anonymously"
2429
- msgstr "Haz click aquí para utilizar el plugin de forma anónima"
2430
-
2431
- #: templates/forms/deactivation/retry-skip.php:23
2432
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2433
- msgstr "Es posible que te lo hayas perdido, pero no tienes que compartir ningún dato y puedes solo aceptar %s."
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-11-25 12:57+0000\n"
11
+ "Last-Translator: Carlos Longarela <carlos@longarela.eu>\n"
12
+ "Language: es_ES\n"
13
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
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:1602
25
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
+ msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
+
28
+ #: includes/class-freemius.php:1604
29
+ msgid "Error"
30
+ msgstr "Error"
31
+
32
+ #: includes/class-freemius.php:1925
33
+ msgid "I found a better %s"
34
+ msgstr "He encontrado un %s mejor"
35
+
36
+ #: includes/class-freemius.php:1927
37
+ msgid "What's the %s's name?"
38
+ msgstr "¿Cuál es el nombre de %s?"
39
+
40
+ #: includes/class-freemius.php:1933
41
+ msgid "It's a temporary %s. I'm just debugging an issue."
42
+ msgstr "Es una %stemporal . Sólo estoy depurando un problema"
43
+
44
+ #: includes/class-freemius.php:1935
45
+ msgid "Deactivation"
46
+ msgstr "Desactivación"
47
+
48
+ #: includes/class-freemius.php:1936
49
+ msgid "Theme Switch"
50
+ msgstr "Cambiar tema"
51
+
52
+ #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
+ msgid "Other"
54
+ msgstr "Otra"
55
+
56
+ #: includes/class-freemius.php:1953
57
+ msgid "I no longer need the %s"
58
+ msgstr "Ya no necesito el %s"
59
+
60
+ #: includes/class-freemius.php:1960
61
+ msgid "I only needed the %s for a short period"
62
+ msgstr "Sólo necesitaba la %s por un corto período"
63
+
64
+ #: includes/class-freemius.php:1966
65
+ msgid "The %s broke my site"
66
+ msgstr "%s ha roto mi sitio"
67
+
68
+ #: includes/class-freemius.php:1973
69
+ msgid "The %s suddenly stopped working"
70
+ msgstr "%s de repente ha dejado de funcionar"
71
+
72
+ #: includes/class-freemius.php:1983
73
+ msgid "I can't pay for it anymore"
74
+ msgstr "No puedo pagarlo durante más tiempo"
75
+
76
+ #: includes/class-freemius.php:1985
77
+ msgid "What price would you feel comfortable paying?"
78
+ msgstr "¿Con qué precio te sentirías cómodo pagando?"
79
+
80
+ #: includes/class-freemius.php:1991
81
+ msgid "I don't like to share my information with you"
82
+ msgstr "No me gusta compartir mi información contigo"
83
+
84
+ #: includes/class-freemius.php:2012
85
+ msgid "The %s didn't work"
86
+ msgstr "El %s no funcionaba"
87
+
88
+ #: includes/class-freemius.php:2022
89
+ msgid "I couldn't understand how to make it work"
90
+ msgstr "No entiendo cómo hacerlo funcionar"
91
+
92
+ #: includes/class-freemius.php:2030
93
+ msgid "The %s is great, but I need specific feature that you don't support"
94
+ msgstr "%s es genial, pero necesito una característica que no soportáis"
95
+
96
+ #: includes/class-freemius.php:2032
97
+ msgid "What feature?"
98
+ msgstr "¿Qué característica?"
99
+
100
+ #: includes/class-freemius.php:2036
101
+ msgid "The %s is not working"
102
+ msgstr " El %s no funciona"
103
+
104
+ #: includes/class-freemius.php:2038
105
+ msgid "Kindly share what didn't work so we can fix it for future users..."
106
+ msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
+
108
+ #: includes/class-freemius.php:2042
109
+ msgid "It's not what I was looking for"
110
+ msgstr "No es lo que estaba buscando"
111
+
112
+ #: includes/class-freemius.php:2044
113
+ msgid "What you've been looking for?"
114
+ msgstr "¿Que has estado buscando?"
115
+
116
+ #: includes/class-freemius.php:2048
117
+ msgid "The %s didn't work as expected"
118
+ msgstr " El %s no funciona como esperaba"
119
+
120
+ #: includes/class-freemius.php:2050
121
+ msgid "What did you expect?"
122
+ msgstr "¿Qué esperas?"
123
+
124
+ #: includes/class-freemius.php2853, templates/debug.php:20
125
+ msgid "Freemius Debug"
126
+ msgstr "Debug Freemius"
127
+
128
+ #: includes/class-freemius.php:3581
129
+ msgid "I don't know what is cURL or how to install it, help me!"
130
+ msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
+
132
+ #: includes/class-freemius.php:3583
133
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
+ msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización."
135
+
136
+ #: includes/class-freemius.php:3590
137
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
+ msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo."
139
+
140
+ #: includes/class-freemius.php:3695
141
+ msgid "Yes - do your thing"
142
+ msgstr "Vamos, adelante"
143
+
144
+ #: includes/class-freemius.php:3700
145
+ msgid "No - just deactivate"
146
+ msgstr "No - sólo desactivar"
147
+
148
+ #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
+ #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
+ #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
+ #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
+ #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
+ #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
+ #: includes/class-freemius.php18705, templates/add-ons.php:43
155
+ msgctxt "exclamation"
156
+ msgid "Oops"
157
+ msgstr "Oops"
158
+
159
+ #: includes/class-freemius.php:3814
160
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
+ msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia."
162
+
163
+ #: includes/class-freemius.php:4250
164
+ msgctxt "addonX cannot run without pluginY"
165
+ msgid "%s cannot run without %s."
166
+ msgstr "%s no se puede ejecutar sin %s."
167
+
168
+ #: includes/class-freemius.php:4251
169
+ msgctxt "addonX cannot run..."
170
+ msgid "%s cannot run without the plugin."
171
+ msgstr "%s no se puede ejecutar sin el plugin."
172
+
173
+ #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
+ #: includes/class-freemius.php:17659
175
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
176
+ msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
+
178
+ #: includes/class-freemius.php:5006
179
+ msgid "Premium %s version was successfully activated."
180
+ msgstr "La versión Premium %s ha sido activada con éxito."
181
+
182
+ #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
+ msgctxt ""
184
+ msgid "W00t"
185
+ msgstr "W00t"
186
+
187
+ #: includes/class-freemius.php:5033
188
+ msgid "You have a %s license."
189
+ msgstr "Tienes una licencia %s."
190
+
191
+ #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
+ #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
+ #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
+ #: includes/class-freemius.php:17413
195
+ msgctxt "interjection expressing joy or exuberance"
196
+ msgid "Yee-haw"
197
+ msgstr "Vaya"
198
+
199
+ #: includes/class-freemius.php:5301
200
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
+ msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia."
202
+
203
+ #: includes/class-freemius.php:5305
204
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
+ msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
+
207
+ #: includes/class-freemius.php5314, templates/add-ons.php103,
208
+ #: templates/account/partials/addon.php:288
209
+ msgid "More information about %s"
210
+ msgstr "Más información sobre %s"
211
+
212
+ #: includes/class-freemius.php:5315
213
+ msgid "Purchase License"
214
+ msgstr "Comprar licencia"
215
+
216
+ #: includes/class-freemius.php6230, templates/connect.php:163
217
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
+ msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
219
+
220
+ #: includes/class-freemius.php:6234
221
+ msgid "start the trial"
222
+ msgstr "comenzar el período de prueba"
223
+
224
+ #: includes/class-freemius.php6235, templates/connect.php:167
225
+ msgid "complete the install"
226
+ msgstr "completar la instalación"
227
+
228
+ #: includes/class-freemius.php:6348
229
+ msgid "You are just one step away - %s"
230
+ msgstr "Estás a sólo un paso - %s"
231
+
232
+ #: includes/class-freemius.php:6351
233
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
+ msgid "Complete \"%s\" Activation Now"
235
+ msgstr "Completar la activación de \"%s\" ahora"
236
+
237
+ #: includes/class-freemius.php:6429
238
+ msgid "We made a few tweaks to the %s, %s"
239
+ msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
+
241
+ #: includes/class-freemius.php:6433
242
+ msgid "Opt in to make \"%s\" better!"
243
+ msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
244
+
245
+ #: includes/class-freemius.php:6861
246
+ msgid "The upgrade of %s was successfully completed."
247
+ msgstr "La actualización de %s se completó con éxito."
248
+
249
+ #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
+ #: includes/class-fs-plugin-updater.php1077,
251
+ #: includes/class-fs-plugin-updater.php1084,
252
+ #: templates/auto-installation.php:32
253
+ msgid "Add-On"
254
+ msgstr "Complemento"
255
+
256
+ #: includes/class-freemius.php8707, templates/debug.php359,
257
+ #: templates/debug.php:520
258
+ msgid "Plugin"
259
+ msgstr "Plugin"
260
+
261
+ #: includes/class-freemius.php8708, templates/debug.php359,
262
+ #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
+ msgid "Theme"
264
+ msgstr "Tema"
265
+
266
+ #: includes/class-freemius.php:11183
267
+ msgid "Invalid site details collection."
268
+ msgstr "Colección de detalles del sitio no válida."
269
+
270
+ #: includes/class-freemius.php:11303
271
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
+ msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?"
273
+
274
+ #: includes/class-freemius.php:11305
275
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
+ msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?"
277
+
278
+ #: includes/class-freemius.php:11541
279
+ msgid "Account is pending activation."
280
+ msgstr "La cuenta está pendiente de activación"
281
+
282
+ #: includes/class-freemius.php11653,
283
+ #: templates/forms/premium-versions-upgrade-handler.php:47
284
+ msgid "Buy a license now"
285
+ msgstr "Compra una licencia ahora"
286
+
287
+ #: includes/class-freemius.php11665,
288
+ #: templates/forms/premium-versions-upgrade-handler.php:46
289
+ msgid "Renew your license now"
290
+ msgstr "Renueva tu licencia ahora"
291
+
292
+ #: includes/class-freemius.php:11669
293
+ msgid "%s to access version %s security & feature updates, and support."
294
+ msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
295
+
296
+ #: includes/class-freemius.php:14052
297
+ msgid "%s activation was successfully completed."
298
+ msgstr "%s activación se completó con éxito."
299
+
300
+ #: includes/class-freemius.php:14066
301
+ msgid "Your account was successfully activated with the %s plan."
302
+ msgstr "Tu cuenta se ha activado correctamente con el plan %s."
303
+
304
+ #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
+ msgid "Your trial has been successfully started."
306
+ msgstr "Tu versión de prueba se ha iniciado con éxito."
307
+
308
+ #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
+ #: includes/class-freemius.php:14761
310
+ msgid "Couldn't activate %s."
311
+ msgstr "No se puede activar %s."
312
+
313
+ #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
+ #: includes/class-freemius.php:14762
315
+ msgid "Please contact us with the following message:"
316
+ msgstr "Por favor contáctanos con el siguiente mensaje:"
317
+
318
+ #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
+ msgid "Upgrade"
320
+ msgstr "Actualizar"
321
+
322
+ #: includes/class-freemius.php:15117
323
+ msgid "Start Trial"
324
+ msgstr "Comenzar el período de prueba"
325
+
326
+ #: includes/class-freemius.php:15119
327
+ msgid "Pricing"
328
+ msgstr "Precio"
329
+
330
+ #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
+ msgid "Affiliation"
332
+ msgstr "Afiliación"
333
+
334
+ #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
+ #: templates/account.php150, templates/debug.php:324
336
+ msgid "Account"
337
+ msgstr "Cuenta"
338
+
339
+ #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
+ #: includes/customizer/class-fs-customizer-support-section.php:60
341
+ msgid "Contact Us"
342
+ msgstr "Contáctanos"
343
+
344
+ #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
+ #: includes/class-freemius.php19553, templates/account.php100,
346
+ #: templates/account/partials/addon.php:41
347
+ msgid "Add-Ons"
348
+ msgstr "Complementos"
349
+
350
+ #: includes/class-freemius.php:15274
351
+ msgctxt "ASCII arrow left icon"
352
+ msgid "&#x2190;"
353
+ msgstr "&#x2190;"
354
+
355
+ #: includes/class-freemius.php:15274
356
+ msgctxt "ASCII arrow right icon"
357
+ msgid "&#x27a4;"
358
+ msgstr "&#x27a4;"
359
+
360
+ #: includes/class-freemius.php15276, templates/pricing.php:97
361
+ msgctxt "noun"
362
+ msgid "Pricing"
363
+ msgstr "Precio"
364
+
365
+ #: includes/class-freemius.php15479,
366
+ #: includes/customizer/class-fs-customizer-support-section.php:67
367
+ msgid "Support Forum"
368
+ msgstr "Foro de soporte"
369
+
370
+ #: includes/class-freemius.php:16265
371
+ msgid "Your email has been successfully verified - you are AWESOME!"
372
+ msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
373
+
374
+ #: includes/class-freemius.php:16266
375
+ msgctxt "a positive response"
376
+ msgid "Right on"
377
+ msgstr "Bien hecho"
378
+
379
+ #: includes/class-freemius.php:16888
380
+ msgid "Your %s Add-on plan was successfully upgraded."
381
+ msgstr "Tu complemento %s del plan se actualizó con éxito."
382
+
383
+ #: includes/class-freemius.php:16890
384
+ msgid "%s Add-on was successfully purchased."
385
+ msgstr "El complemento %s ha sido comprado correctamente."
386
+
387
+ #: includes/class-freemius.php:16893
388
+ msgid "Download the latest version"
389
+ msgstr "Descargar la última versión"
390
+
391
+ #: includes/class-freemius.php:16965
392
+ msgctxt "%1s - plugin title, %2s - API domain"
393
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
+ msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
395
+
396
+ #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
+ #: includes/class-freemius.php:17461
398
+ msgid "Error received from the server:"
399
+ msgstr "Error recibido del servidor:"
400
+
401
+ #: includes/class-freemius.php:16978
402
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
+ msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo."
404
+
405
+ #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
+ #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
+ msgctxt ""
408
+ msgid "Hmm"
409
+ msgstr "Hmm"
410
+
411
+ #: includes/class-freemius.php:17173
412
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
+ msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos."
414
+
415
+ #: includes/class-freemius.php17174, templates/account.php102,
416
+ #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
+ msgctxt "trial period"
418
+ msgid "Trial"
419
+ msgstr "Período de Prueba Gratuito"
420
+
421
+ #: includes/class-freemius.php:17179
422
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
+ msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
424
+
425
+ #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
+ msgid "Please contact us here"
427
+ msgstr "Contacta aquí con nosotros"
428
+
429
+ #: includes/class-freemius.php:17193
430
+ msgid "Your plan was successfully upgraded."
431
+ msgstr "Tu plan se actualizó con éxito."
432
+
433
+ #: includes/class-freemius.php:17211
434
+ msgid "Your plan was successfully changed to %s."
435
+ msgstr "Tu plan se cambió correctamente a %s."
436
+
437
+ #: includes/class-freemius.php:17227
438
+ msgid "Your license has expired. You can still continue using the free %s forever."
439
+ msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
440
+
441
+ #: includes/class-freemius.php:17229
442
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
+ msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
444
+
445
+ #: includes/class-freemius.php:17237
446
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
+ msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
448
+
449
+ #: includes/class-freemius.php:17250
450
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
+ msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte."
452
+
453
+ #: includes/class-freemius.php:17273
454
+ msgid "Your free trial has expired. You can still continue using all our free features."
455
+ msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
456
+
457
+ #: includes/class-freemius.php:17275
458
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
+ msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
460
+
461
+ #: includes/class-freemius.php:17380
462
+ msgid "It looks like the license could not be activated."
463
+ msgstr "Parece que la licencia no se pudo activar."
464
+
465
+ #: includes/class-freemius.php:17410
466
+ msgid "Your license was successfully activated."
467
+ msgstr "Tu licencia fue activada correctamente."
468
+
469
+ #: includes/class-freemius.php:17436
470
+ msgid "It looks like your site currently doesn't have an active license."
471
+ msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
472
+
473
+ #: includes/class-freemius.php:17460
474
+ msgid "It looks like the license deactivation failed."
475
+ msgstr "Parece que la desactivación de licencia ha fallado."
476
+
477
+ #: includes/class-freemius.php:17488
478
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
479
+ msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
480
+
481
+ #: includes/class-freemius.php:17489
482
+ msgid "O.K"
483
+ msgstr "O.K"
484
+
485
+ #: includes/class-freemius.php:17542
486
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
+ msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
488
+
489
+ #: includes/class-freemius.php:17551
490
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
+ msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
492
+
493
+ #: includes/class-freemius.php:17593
494
+ msgid "You are already running the %s in a trial mode."
495
+ msgstr "Estás ejecutando %s en modo de prueba."
496
+
497
+ #: includes/class-freemius.php:17604
498
+ msgid "You already utilized a trial before."
499
+ msgstr "Ya utilizaste un período de prueba antes."
500
+
501
+ #: includes/class-freemius.php:17618
502
+ msgid "Plan %s do not exist, therefore, can't start a trial."
503
+ msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
504
+
505
+ #: includes/class-freemius.php:17629
506
+ msgid "Plan %s does not support a trial period."
507
+ msgstr "El plan %s no admite un período de prueba."
508
+
509
+ #: includes/class-freemius.php:17640
510
+ msgid "None of the %s's plans supports a trial period."
511
+ msgstr "Ninguno de los planes de %s soportan un período de prueba."
512
+
513
+ #: includes/class-freemius.php:17690
514
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
+ msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
516
+
517
+ #: includes/class-freemius.php:17726
518
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
+ msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
520
+
521
+ #: includes/class-freemius.php:17745
522
+ msgid "Your %s free trial was successfully cancelled."
523
+ msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
524
+
525
+ #: includes/class-freemius.php:18052
526
+ msgid "Version %s was released."
527
+ msgstr "La versión %s se ha lanzado."
528
+
529
+ #: includes/class-freemius.php:18052
530
+ msgid "Please download %s."
531
+ msgstr "Por favor descarga %s."
532
+
533
+ #: includes/class-freemius.php:18059
534
+ msgid "the latest %s version here"
535
+ msgstr "la última versión %s aquí"
536
+
537
+ #: includes/class-freemius.php:18064
538
+ msgid "New"
539
+ msgstr "Nuevo"
540
+
541
+ #: includes/class-freemius.php:18069
542
+ msgid "Seems like you got the latest release."
543
+ msgstr "Parece que tienes la última versión."
544
+
545
+ #: includes/class-freemius.php:18070
546
+ msgid "You are all good!"
547
+ msgstr "¡Está todo listo!"
548
+
549
+ #: includes/class-freemius.php:18338
550
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
+ msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam."
552
+
553
+ #: includes/class-freemius.php:18473
554
+ msgid "Site successfully opted in."
555
+ msgstr "Sitio dado de alta correctamente."
556
+
557
+ #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
+ msgid "Awesome"
559
+ msgstr "Increíble"
560
+
561
+ #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
+ msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
564
+
565
+ #: includes/class-freemius.php:18491
566
+ msgid "Thank you!"
567
+ msgstr "¡Gracias!"
568
+
569
+ #: includes/class-freemius.php:18498
570
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
571
+ msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
572
+
573
+ #: includes/class-freemius.php:18627
574
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
+ msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
576
+
577
+ #: includes/class-freemius.php:18633
578
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
+ msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
580
+
581
+ #: includes/class-freemius.php:18638
582
+ msgid "%s is the new owner of the account."
583
+ msgstr "%s es el nuevo dueño de la cuenta."
584
+
585
+ #: includes/class-freemius.php:18640
586
+ msgctxt "as congratulations"
587
+ msgid "Congrats"
588
+ msgstr "Felicidades"
589
+
590
+ #: includes/class-freemius.php:18660
591
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
+ msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico."
593
+
594
+ #: includes/class-freemius.php:18661
595
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
+ msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
597
+
598
+ #: includes/class-freemius.php:18668
599
+ msgid "Change Ownership"
600
+ msgstr "Cambiar propietario"
601
+
602
+ #: includes/class-freemius.php:18676
603
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
+ msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
605
+
606
+ #: includes/class-freemius.php:18688
607
+ msgid "Please provide your full name."
608
+ msgstr "Por favor, dinos tu nombre completo."
609
+
610
+ #: includes/class-freemius.php:18693
611
+ msgid "Your name was successfully updated."
612
+ msgstr "Tu nombre fue actualizado correctamente."
613
+
614
+ #: includes/class-freemius.php:18754
615
+ msgid "You have successfully updated your %s."
616
+ msgstr "Has actualizado correctamente tu %s."
617
+
618
+ #: includes/class-freemius.php:18894
619
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
+ msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
621
+
622
+ #: includes/class-freemius.php:18895
623
+ msgctxt "advance notice of something that will need attention."
624
+ msgid "Heads up"
625
+ msgstr "Atención"
626
+
627
+ #: includes/class-freemius.php:19325
628
+ msgctxt "exclamation"
629
+ msgid "Hey"
630
+ msgstr "Hey"
631
+
632
+ #: includes/class-freemius.php:19325
633
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
+ msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
635
+
636
+ #: includes/class-freemius.php:19333
637
+ msgid "No commitment for %s days - cancel anytime!"
638
+ msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
639
+
640
+ #: includes/class-freemius.php:19334
641
+ msgid "No credit card required"
642
+ msgstr "No se necesita tarjeta de crédito"
643
+
644
+ #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
+ msgctxt "call to action"
646
+ msgid "Start free trial"
647
+ msgstr "Comenzar el período de prueba gratuito"
648
+
649
+ #: includes/class-freemius.php:19418
650
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
+ msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
652
+
653
+ #: includes/class-freemius.php:19427
654
+ msgid "Learn more"
655
+ msgstr "Saber más"
656
+
657
+ #: includes/class-freemius.php19577, templates/account.php406,
658
+ #: templates/account.php509, templates/connect.php171,
659
+ #: templates/connect.php421, templates/forms/license-activation.php24,
660
+ #: templates/account/partials/addon.php:235
661
+ msgid "Activate License"
662
+ msgstr "Activar licencia"
663
+
664
+ #: includes/class-freemius.php19578, templates/account.php469,
665
+ #: templates/account.php508, templates/account/partials/site.php:256
666
+ msgid "Change License"
667
+ msgstr "Cambiar licencia"
668
+
669
+ #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
+ msgid "Opt Out"
671
+ msgstr "Darse de baja"
672
+
673
+ #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
+ #: templates/account/partials/site.php43,
675
+ #: templates/account/partials/site.php:161
676
+ msgid "Opt In"
677
+ msgstr "Inscribirse"
678
+
679
+ #: includes/class-freemius.php:19891
680
+ msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
+ msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
682
+
683
+ #: includes/class-freemius.php:19899
684
+ msgid "Activate %s features"
685
+ msgstr "Activar características %s"
686
+
687
+ #: includes/class-freemius.php:19912
688
+ msgid "Please follow these steps to complete the upgrade"
689
+ msgstr "Por favor, sigue estos pasos para completar la actualización"
690
+
691
+ #: includes/class-freemius.php:19916
692
+ msgid "Download the latest %s version"
693
+ msgstr "Descargar la última versión %s"
694
+
695
+ #: includes/class-freemius.php:19920
696
+ msgid "Upload and activate the downloaded version"
697
+ msgstr "Cargar y activar la versión descargada"
698
+
699
+ #: includes/class-freemius.php:19922
700
+ msgid "How to upload and activate?"
701
+ msgstr "¿Cómo subirlo y activarlo?"
702
+
703
+ #: includes/class-freemius.php:20056
704
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
+ msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
706
+
707
+ #: includes/class-freemius.php:20217
708
+ msgid "Auto installation only works for opted-in users."
709
+ msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
710
+
711
+ #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
+ #: includes/class-fs-plugin-updater.php1056,
713
+ #: includes/class-fs-plugin-updater.php:1070
714
+ msgid "Invalid module ID."
715
+ msgstr "Id de módulo no válido."
716
+
717
+ #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
+ msgid "Premium version already active."
719
+ msgstr "Versión premium ya activa."
720
+
721
+ #: includes/class-freemius.php:20243
722
+ msgid "You do not have a valid license to access the premium version."
723
+ msgstr "No tienes una licencia válida para acceder a la versión premium."
724
+
725
+ #: includes/class-freemius.php:20250
726
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
+ msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
728
+
729
+ #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
+ msgid "Premium add-on version already installed."
731
+ msgstr "Versión del complemento premium ya instalada."
732
+
733
+ #: includes/class-freemius.php:20613
734
+ msgid "View paid features"
735
+ msgstr "Ver las funciones de pago"
736
+
737
+ #: includes/class-freemius.php:20927
738
+ msgid "Thank you so much for using %s and its add-ons!"
739
+ msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
740
+
741
+ #: includes/class-freemius.php:20928
742
+ msgid "Thank you so much for using %s!"
743
+ msgstr "¡Muchas gracias por utilizar %s!"
744
+
745
+ #: includes/class-freemius.php:20934
746
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
+ msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
748
+
749
+ #: includes/class-freemius.php:20938
750
+ msgid "Thank you so much for using our products!"
751
+ msgstr "¡Muchas gracias por utilizar nuestros productos!"
752
+
753
+ #: includes/class-freemius.php:20939
754
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
+ msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
756
+
757
+ #: includes/class-freemius.php:20958
758
+ msgid "%s and its add-ons"
759
+ msgstr "%s y sus complementos"
760
+
761
+ #: includes/class-freemius.php:20967
762
+ msgid "Products"
763
+ msgstr "Productos"
764
+
765
+ #: includes/class-freemius.php20974, templates/connect.php:272
766
+ msgid "Yes"
767
+ msgstr "Si"
768
+
769
+ #: includes/class-freemius.php20975, templates/connect.php:273
770
+ msgid "send me security & feature updates, educational content and offers."
771
+ msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
772
+
773
+ #: includes/class-freemius.php20976, templates/connect.php:278
774
+ msgid "No"
775
+ msgstr "No"
776
+
777
+ #: includes/class-freemius.php20978, templates/connect.php:280
778
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
+ msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
780
+
781
+ #: includes/class-freemius.php:20988
782
+ msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
+ msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
784
+
785
+ #: includes/class-freemius.php20990, templates/connect.php:287
786
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
+ msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
788
+
789
+ #: includes/class-freemius.php:21272
790
+ msgid "License key is empty."
791
+ msgstr "La clave de licencia está vacía."
792
+
793
+ #: includes/class-fs-plugin-updater.php184,
794
+ #: templates/forms/premium-versions-upgrade-handler.php:57
795
+ msgid "Renew license"
796
+ msgstr "Renovar la licencia"
797
+
798
+ #: includes/class-fs-plugin-updater.php189,
799
+ #: templates/forms/premium-versions-upgrade-handler.php:58
800
+ msgid "Buy license"
801
+ msgstr "Comprar licencia"
802
+
803
+ #: includes/class-fs-plugin-updater.php:278
804
+ msgid "There is a %s of %s available."
805
+ msgstr "Hay una %s de %s disponible."
806
+
807
+ #: includes/class-fs-plugin-updater.php:282
808
+ msgid "new version"
809
+ msgstr "nueva versión"
810
+
811
+ #: includes/class-fs-plugin-updater.php:301
812
+ msgid "Important Upgrade Notice:"
813
+ msgstr "Aviso importante de actualización:"
814
+
815
+ #: includes/class-fs-plugin-updater.php:1121
816
+ msgid "Installing plugin: %s"
817
+ msgstr "Instalando plugin: %s"
818
+
819
+ #: includes/class-fs-plugin-updater.php:1162
820
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
+ msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
822
+
823
+ #: includes/class-fs-plugin-updater.php:1335
824
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
+ msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
826
+
827
+ #: includes/fs-plugin-info-dialog.php369,
828
+ #: templates/account/partials/addon.php:292
829
+ msgctxt "verb"
830
+ msgid "Purchase"
831
+ msgstr "Comprar"
832
+
833
+ #: includes/fs-plugin-info-dialog.php:372
834
+ msgid "Start my free %s"
835
+ msgstr "Comenzar mi período gratuito de %s"
836
+
837
+ #: includes/fs-plugin-info-dialog.php:413
838
+ msgid "Install Free Version Now"
839
+ msgstr "Instalar la versión gratuita ahora"
840
+
841
+ #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
+ #: templates/account/partials/addon.php272,
843
+ #: templates/account/partials/addon.php:322
844
+ msgid "Install Now"
845
+ msgstr "Instalar ahora"
846
+
847
+ #: includes/fs-plugin-info-dialog.php:425
848
+ msgctxt "as download latest version"
849
+ msgid "Download Latest Free Version"
850
+ msgstr "Descargar la última versión gratuita"
851
+
852
+ #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
+ #: templates/account/partials/addon.php:21
854
+ msgctxt "as download latest version"
855
+ msgid "Download Latest"
856
+ msgstr "Descargar la última"
857
+
858
+ #: includes/fs-plugin-info-dialog.php:436
859
+ msgid "Install Free Version Update Now"
860
+ msgstr "Instalar la actualización gratuita ahora"
861
+
862
+ #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
+ msgid "Install Update Now"
864
+ msgstr "Instalar actualización ahora"
865
+
866
+ #: includes/fs-plugin-info-dialog.php:448
867
+ msgid "Newer Free Version (%s) Installed"
868
+ msgstr "Versión gratuita más reciente (%s) instalada"
869
+
870
+ #: includes/fs-plugin-info-dialog.php:449
871
+ msgid "Newer Version (%s) Installed"
872
+ msgstr "Versión más reciente (%s) instalada"
873
+
874
+ #: includes/fs-plugin-info-dialog.php:457
875
+ msgid "Latest Free Version Installed"
876
+ msgstr "Última versión gratuita instalada"
877
+
878
+ #: includes/fs-plugin-info-dialog.php:458
879
+ msgid "Latest Version Installed"
880
+ msgstr "Última versión instalada"
881
+
882
+ #: includes/fs-plugin-info-dialog.php:613
883
+ msgctxt "Plugin installer section title"
884
+ msgid "Description"
885
+ msgstr "Descripción"
886
+
887
+ #: includes/fs-plugin-info-dialog.php:614
888
+ msgctxt "Plugin installer section title"
889
+ msgid "Installation"
890
+ msgstr "Instalación"
891
+
892
+ #: includes/fs-plugin-info-dialog.php:615
893
+ msgctxt "Plugin installer section title"
894
+ msgid "FAQ"
895
+ msgstr "FAQ"
896
+
897
+ #: includes/fs-plugin-info-dialog.php616,
898
+ #: templates/plugin-info/description.php:55
899
+ msgid "Screenshots"
900
+ msgstr "Capturas de pantalla"
901
+
902
+ #: includes/fs-plugin-info-dialog.php:617
903
+ msgctxt "Plugin installer section title"
904
+ msgid "Changelog"
905
+ msgstr "Registro de cambios"
906
+
907
+ #: includes/fs-plugin-info-dialog.php:618
908
+ msgctxt "Plugin installer section title"
909
+ msgid "Reviews"
910
+ msgstr "Valoraciones"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:619
913
+ msgctxt "Plugin installer section title"
914
+ msgid "Other Notes"
915
+ msgstr "Otras notas"
916
+
917
+ #: includes/fs-plugin-info-dialog.php:634
918
+ msgctxt "Plugin installer section title"
919
+ msgid "Features & Pricing"
920
+ msgstr "Características y precios"
921
+
922
+ #: includes/fs-plugin-info-dialog.php:644
923
+ msgid "Plugin Install"
924
+ msgstr "Instalar plugin"
925
+
926
+ #: includes/fs-plugin-info-dialog.php:716
927
+ msgctxt "e.g. Professional Plan"
928
+ msgid "%s Plan"
929
+ msgstr "Plan %s"
930
+
931
+ #: includes/fs-plugin-info-dialog.php:742
932
+ msgctxt "e.g. the best product"
933
+ msgid "Best"
934
+ msgstr "El mejor"
935
+
936
+ #: includes/fs-plugin-info-dialog.php748,
937
+ #: includes/fs-plugin-info-dialog.php:768
938
+ msgctxt "as every month"
939
+ msgid "Monthly"
940
+ msgstr "Mensual"
941
+
942
+ #: includes/fs-plugin-info-dialog.php:751
943
+ msgctxt "as once a year"
944
+ msgid "Annual"
945
+ msgstr "Anual"
946
+
947
+ #: includes/fs-plugin-info-dialog.php:754
948
+ msgid "Lifetime"
949
+ msgstr "Permanente"
950
+
951
+ #: includes/fs-plugin-info-dialog.php768,
952
+ #: includes/fs-plugin-info-dialog.php770,
953
+ #: includes/fs-plugin-info-dialog.php:772
954
+ msgctxt "e.g. billed monthly"
955
+ msgid "Billed %s"
956
+ msgstr "Facturado %s"
957
+
958
+ #: includes/fs-plugin-info-dialog.php:770
959
+ msgctxt "as once a year"
960
+ msgid "Annually"
961
+ msgstr "Anualmente"
962
+
963
+ #: includes/fs-plugin-info-dialog.php:772
964
+ msgctxt "as once a year"
965
+ msgid "Once"
966
+ msgstr "Una vez"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:778
969
+ msgid "Single Site License"
970
+ msgstr "Licencia para un único sitio"
971
+
972
+ #: includes/fs-plugin-info-dialog.php:780
973
+ msgid "Unlimited Licenses"
974
+ msgstr "Licencias ilimitadas"
975
+
976
+ #: includes/fs-plugin-info-dialog.php:782
977
+ msgid "Up to %s Sites"
978
+ msgstr "Hasta %s sitios"
979
+
980
+ #: includes/fs-plugin-info-dialog.php792,
981
+ #: templates/plugin-info/features.php:82
982
+ msgctxt "as monthly period"
983
+ msgid "mo"
984
+ msgstr "me"
985
+
986
+ #: includes/fs-plugin-info-dialog.php799,
987
+ #: templates/plugin-info/features.php:80
988
+ msgctxt "as annual period"
989
+ msgid "year"
990
+ msgstr "año"
991
+
992
+ #: includes/fs-plugin-info-dialog.php:853
993
+ msgctxt "noun"
994
+ msgid "Price"
995
+ msgstr "Precio"
996
+
997
+ #: includes/fs-plugin-info-dialog.php:901
998
+ msgid "Save %s"
999
+ msgstr "Guardar %s"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:911
1002
+ msgid "No commitment for %s - cancel anytime"
1003
+ msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:914
1006
+ msgid "After your free %s, pay as little as %s"
1007
+ msgstr "Después de su período gratuito %s, pague sólo %s"
1008
+
1009
+ #: includes/fs-plugin-info-dialog.php:925
1010
+ msgid "Details"
1011
+ msgstr "Detalles"
1012
+
1013
+ #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
+ #: templates/account/partials/addon.php:32
1016
+ msgctxt "product version"
1017
+ msgid "Version"
1018
+ msgstr "Versión"
1019
+
1020
+ #: includes/fs-plugin-info-dialog.php:936
1021
+ msgctxt "as the plugin author"
1022
+ msgid "Author"
1023
+ msgstr "Autor"
1024
+
1025
+ #: includes/fs-plugin-info-dialog.php:943
1026
+ msgid "Last Updated"
1027
+ msgstr "Última actualización"
1028
+
1029
+ #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
+ msgctxt "x-ago"
1031
+ msgid "%s ago"
1032
+ msgstr "hace %s"
1033
+
1034
+ #: includes/fs-plugin-info-dialog.php:957
1035
+ msgid "Requires WordPress Version"
1036
+ msgstr "Necesita la versión de WordPress"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:958
1039
+ msgid "%s or higher"
1040
+ msgstr "%s o mayor"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:965
1043
+ msgid "Compatible up to"
1044
+ msgstr "Compatible hasta"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:973
1047
+ msgid "Downloaded"
1048
+ msgstr "Descargado"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:977
1051
+ msgid "%s time"
1052
+ msgstr "% vez"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php:979
1055
+ msgid "%s times"
1056
+ msgstr "%s veces"
1057
+
1058
+ #: includes/fs-plugin-info-dialog.php:989
1059
+ msgid "WordPress.org Plugin Page"
1060
+ msgstr "Página del plugin en WordPress.org"
1061
+
1062
+ #: includes/fs-plugin-info-dialog.php:997
1063
+ msgid "Plugin Homepage"
1064
+ msgstr "Página web del plugin"
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php1005,
1067
+ #: includes/fs-plugin-info-dialog.php:1087
1068
+ msgid "Donate to this plugin"
1069
+ msgstr "Donar a este plugin"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1012
1072
+ msgid "Average Rating"
1073
+ msgstr "Calificación media"
1074
+
1075
+ #: includes/fs-plugin-info-dialog.php:1019
1076
+ msgid "based on %s"
1077
+ msgstr "basado en %s"
1078
+
1079
+ #: includes/fs-plugin-info-dialog.php:1023
1080
+ msgid "%s rating"
1081
+ msgstr "%s calificación"
1082
+
1083
+ #: includes/fs-plugin-info-dialog.php:1025
1084
+ msgid "%s ratings"
1085
+ msgstr "%s calificaciones"
1086
+
1087
+ #: includes/fs-plugin-info-dialog.php:1040
1088
+ msgid "%s star"
1089
+ msgstr "%s estrella"
1090
+
1091
+ #: includes/fs-plugin-info-dialog.php:1042
1092
+ msgid "%s stars"
1093
+ msgstr "%s estrellas"
1094
+
1095
+ #: includes/fs-plugin-info-dialog.php:1053
1096
+ msgid "Click to see reviews that provided a rating of %s"
1097
+ msgstr "Haz clic para ver los comentarios con una valoración de %s"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1066
1100
+ msgid "Contributors"
1101
+ msgstr "Colaboradores"
1102
+
1103
+ #: includes/fs-plugin-info-dialog.php1095,
1104
+ #: includes/fs-plugin-info-dialog.php:1097
1105
+ msgid "Warning"
1106
+ msgstr "Atencion"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php:1095
1109
+ msgid "This plugin has not been tested with your current version of WordPress."
1110
+ msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1111
+
1112
+ #: includes/fs-plugin-info-dialog.php:1097
1113
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
+ msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1115
+
1116
+ #: includes/fs-plugin-info-dialog.php:1116
1117
+ msgid "Paid add-on must be deployed to Freemius."
1118
+ msgstr "El complemento de pago se debe implementar en Freemius."
1119
+
1120
+ #: includes/fs-plugin-info-dialog.php:1117
1121
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
+ msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1123
+
1124
+ #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
+ #: templates/account/partials/addon.php22,
1126
+ #: templates/account/partials/site.php:295
1127
+ msgid "Downgrading your plan"
1128
+ msgstr "Bajando tu plan"
1129
+
1130
+ #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
+ #: templates/account/partials/addon.php23,
1132
+ #: templates/account/partials/site.php:296
1133
+ msgid "Cancelling the subscription"
1134
+ msgstr "Cancelando la suscripción"
1135
+
1136
+ #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
+ #. subscription'
1138
+ #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
+ #: templates/account/partials/addon.php25,
1140
+ #: templates/account/partials/site.php:298
1141
+ msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
+ msgstr "%1s detendrá inmediatamente todos los pagos recurrentes futuros y tu %s licencia del plan caducará en %s."
1143
+
1144
+ #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
+ #: templates/account/partials/addon.php26,
1146
+ #: templates/account/partials/site.php:299
1147
+ msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
+ msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado."
1149
+
1150
+ #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
+ #: templates/account/partials/addon.php:27
1152
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
+ msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1154
+
1155
+ #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
+ #: templates/account/partials/addon.php28,
1157
+ #: templates/account/partials/site.php:300
1158
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
+ msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1160
+
1161
+ #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
+ #: templates/account/partials/addon.php29,
1163
+ #: templates/account/partials/site.php:301
1164
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
+ msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
1166
+
1167
+ #. translators: %s: Plan title (e.g. "Professional")
1168
+ #: templates/account.php90,
1169
+ #: templates/account/partials/activate-license-button.php31,
1170
+ #: templates/account/partials/addon.php:31
1171
+ msgid "Activate %s Plan"
1172
+ msgstr "Activar plan %s"
1173
+
1174
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
+ #: templates/account.php93, templates/account/partials/addon.php34,
1176
+ #: templates/account/partials/site.php:275
1177
+ msgid "Auto renews in %s"
1178
+ msgstr "Auto renovaciones en %s"
1179
+
1180
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1181
+ #: templates/account.php95, templates/account/partials/addon.php36,
1182
+ #: templates/account/partials/site.php:277
1183
+ msgid "Expires in %s"
1184
+ msgstr "Caduca en %s"
1185
+
1186
+ #: templates/account.php96, templates/account/partials/addon.php:37
1187
+ msgctxt "as synchronize license"
1188
+ msgid "Sync License"
1189
+ msgstr "Sincronizar licencia"
1190
+
1191
+ #: templates/account.php97, templates/account/partials/addon.php:38
1192
+ msgid "Cancel Trial"
1193
+ msgstr "Cancelar período de prueba"
1194
+
1195
+ #: templates/account.php98, templates/account/partials/addon.php:39
1196
+ msgid "Change Plan"
1197
+ msgstr "Cambiar Plan"
1198
+
1199
+ #: templates/account.php99, templates/account/partials/addon.php:40
1200
+ msgctxt "verb"
1201
+ msgid "Upgrade"
1202
+ msgstr "Actualizar"
1203
+
1204
+ #: templates/account.php101, templates/account/partials/addon.php42,
1205
+ #: templates/account/partials/site.php:302
1206
+ msgctxt "verb"
1207
+ msgid "Downgrade"
1208
+ msgstr "Degradar"
1209
+
1210
+ #: templates/account.php103, templates/add-ons.php130,
1211
+ #: templates/plugin-info/features.php72,
1212
+ #: templates/account/partials/addon.php44,
1213
+ #: templates/account/partials/site.php:31
1214
+ msgid "Free"
1215
+ msgstr "Gratis"
1216
+
1217
+ #: templates/account.php104, templates/account/partials/addon.php:45
1218
+ msgid "Activate"
1219
+ msgstr "Activar"
1220
+
1221
+ #: templates/account.php105, templates/debug.php371,
1222
+ #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
+ #: templates/account/partials/addon.php:46
1224
+ msgctxt "as product pricing plan"
1225
+ msgid "Plan"
1226
+ msgstr "Plan"
1227
+
1228
+ #: templates/account.php:158
1229
+ msgid "Free Trial"
1230
+ msgstr "Período de prueba gratuito"
1231
+
1232
+ #: templates/account.php:169
1233
+ msgid "Account Details"
1234
+ msgstr "Detalles de la cuenta"
1235
+
1236
+ #: templates/account.php:179
1237
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1238
+ msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
1239
+
1240
+ #: templates/account.php:181
1241
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1242
+ msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
1243
+
1244
+ #: templates/account.php:184
1245
+ msgid "Delete Account"
1246
+ msgstr "Borrar cuenta"
1247
+
1248
+ #: templates/account.php196, templates/account/partials/addon.php159,
1249
+ #: templates/account/partials/deactivate-license-button.php:35
1250
+ msgid "Deactivate License"
1251
+ msgstr "Desactivar licencia"
1252
+
1253
+ #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
+ msgid "Are you sure you want to proceed?"
1255
+ msgstr "¿Estás seguro que quieres proceder?"
1256
+
1257
+ #: templates/account.php219, templates/account/partials/addon.php:182
1258
+ msgid "Cancel Subscription"
1259
+ msgstr "Cancelar suscripción"
1260
+
1261
+ #: templates/account.php:247
1262
+ msgctxt "as synchronize"
1263
+ msgid "Sync"
1264
+ msgstr "Sincronizar"
1265
+
1266
+ #: templates/account.php261, templates/debug.php:487
1267
+ msgid "Name"
1268
+ msgstr "Nombre"
1269
+
1270
+ #: templates/account.php267, templates/debug.php:488
1271
+ msgid "Email"
1272
+ msgstr "Correo electrónico"
1273
+
1274
+ #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
+ msgid "User ID"
1276
+ msgstr "ID de usuario"
1277
+
1278
+ #: templates/account.php:282
1279
+ msgid "Site ID"
1280
+ msgstr "ID del sitio"
1281
+
1282
+ #: templates/account.php:285
1283
+ msgid "No ID"
1284
+ msgstr "Sin ID"
1285
+
1286
+ #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
+ #: templates/debug.php453, templates/debug.php490,
1288
+ #: templates/account/partials/site.php:219
1289
+ msgid "Public Key"
1290
+ msgstr "Clave pública"
1291
+
1292
+ #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
+ #: templates/debug.php491, templates/account/partials/site.php:231
1294
+ msgid "Secret Key"
1295
+ msgstr "Clave secreta"
1296
+
1297
+ #: templates/account.php:299
1298
+ msgctxt "as secret encryption key missing"
1299
+ msgid "No Secret"
1300
+ msgstr "Sin clave secreta"
1301
+
1302
+ #: templates/account.php318, templates/account/partials/site.php112,
1303
+ #: templates/account/partials/site.php:114
1304
+ msgid "Trial"
1305
+ msgstr "Período de prueba gratuito"
1306
+
1307
+ #: templates/account.php337, templates/debug.php531,
1308
+ #: templates/account/partials/site.php:248
1309
+ msgid "License Key"
1310
+ msgstr "Clave de licencia"
1311
+
1312
+ #: templates/account.php:367
1313
+ msgid "not verified"
1314
+ msgstr "no verificado"
1315
+
1316
+ #: templates/account.php376, templates/account/partials/addon.php:120
1317
+ msgid "Expired"
1318
+ msgstr "Caducado"
1319
+
1320
+ #: templates/account.php:428
1321
+ msgid "Premium version"
1322
+ msgstr "Versión premium"
1323
+
1324
+ #: templates/account.php:430
1325
+ msgid "Free version"
1326
+ msgstr "Versión gratuita"
1327
+
1328
+ #: templates/account.php:442
1329
+ msgid "Verify Email"
1330
+ msgstr "Verificar correo electrónico"
1331
+
1332
+ #: templates/account.php:453
1333
+ msgid "Download %s Version"
1334
+ msgstr "Descargar versión %s"
1335
+
1336
+ #: templates/account.php467, templates/account.php649,
1337
+ #: templates/account/partials/site.php237,
1338
+ #: templates/account/partials/site.php:255
1339
+ msgctxt "verb"
1340
+ msgid "Show"
1341
+ msgstr "Mostrar"
1342
+
1343
+ #: templates/account.php:481
1344
+ msgid "What is your %s?"
1345
+ msgstr "¿Cual es tú %s?"
1346
+
1347
+ #: templates/account.php489, templates/account/billing.php:27
1348
+ msgctxt "verb"
1349
+ msgid "Edit"
1350
+ msgstr "Editar"
1351
+
1352
+ #: templates/account.php:502
1353
+ msgid "Sites"
1354
+ msgstr "Sitios"
1355
+
1356
+ #: templates/account.php:513
1357
+ msgid "Search by address"
1358
+ msgstr "Buscar por dirección"
1359
+
1360
+ #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
+ #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
+ #: templates/debug.php524, templates/debug.php597,
1363
+ #: templates/account/payments.php35, templates/debug/logger.php:21
1364
+ msgid "ID"
1365
+ msgstr "ID"
1366
+
1367
+ #: templates/account.php523, templates/debug.php:367
1368
+ msgid "Address"
1369
+ msgstr "Dirección"
1370
+
1371
+ #: templates/account.php:524
1372
+ msgid "License"
1373
+ msgstr "Licencia"
1374
+
1375
+ #: templates/account.php:525
1376
+ msgid "Plan"
1377
+ msgstr "Plan"
1378
+
1379
+ #: templates/account.php:573
1380
+ msgctxt "as software license"
1381
+ msgid "License"
1382
+ msgstr "Licencia"
1383
+
1384
+ #: templates/account.php:643
1385
+ msgctxt "verb"
1386
+ msgid "Hide"
1387
+ msgstr "Ocultar"
1388
+
1389
+ #: templates/account.php:686
1390
+ msgid "Cancelling %s"
1391
+ msgstr "Cancelando %s"
1392
+
1393
+ #: templates/account.php686, templates/account.php703,
1394
+ #: templates/forms/subscription-cancellation.php27,
1395
+ #: templates/forms/deactivation/form.php:117
1396
+ msgid "trial"
1397
+ msgstr "período de prueba"
1398
+
1399
+ #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
+ msgid "Cancelling %s..."
1401
+ msgstr "Cancelando %s..."
1402
+
1403
+ #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
+ #: templates/forms/deactivation/form.php:118
1405
+ msgid "subscription"
1406
+ msgstr "suscripción"
1407
+
1408
+ #: templates/account.php:718
1409
+ msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1410
+ msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?"
1411
+
1412
+ #: templates/add-ons.php:36
1413
+ msgid "Add Ons for %s"
1414
+ msgstr "Complementos para %s"
1415
+
1416
+ #: templates/add-ons.php:44
1417
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
+ msgstr "No podemos cargar la lista de complementos. Probablemente es un problema por nuestro parte, por favor inténtalo de nuevo en unos minutos."
1419
+
1420
+ #: templates/add-ons.php:139
1421
+ msgid "View details"
1422
+ msgstr "Ver detalles"
1423
+
1424
+ #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
+ #: templates/forms/resend-key.php:77
1426
+ msgctxt "as close a window"
1427
+ msgid "Dismiss"
1428
+ msgstr "Descartar"
1429
+
1430
+ #: templates/auto-installation.php:45
1431
+ msgid "%s sec"
1432
+ msgstr "%s seg"
1433
+
1434
+ #: templates/auto-installation.php:83
1435
+ msgid "Automatic Installation"
1436
+ msgstr "Instalación automática"
1437
+
1438
+ #: templates/auto-installation.php:93
1439
+ msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1440
+ msgstr "Una descarga automatizada y la instalación de %s (versión de pago) de %s comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de cancelación."
1441
+
1442
+ #: templates/auto-installation.php:104
1443
+ msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1444
+ msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en completarse. Por favor, espera hasta que se finalice - no actualices esta página."
1445
+
1446
+ #: templates/auto-installation.php:109
1447
+ msgid "Cancel Installation"
1448
+ msgstr "Cancelar instalación"
1449
+
1450
+ #: templates/checkout.php:172
1451
+ msgid "Checkout"
1452
+ msgstr "Pagar"
1453
+
1454
+ #: templates/checkout.php:172
1455
+ msgid "PCI compliant"
1456
+ msgstr "Compatible con PCI"
1457
+
1458
+ #. translators: %s: name (e.g. Hey John,)
1459
+ #: templates/connect.php:112
1460
+ msgctxt "greeting"
1461
+ msgid "Hey %s,"
1462
+ msgstr "Hey %s,"
1463
+
1464
+ #: templates/connect.php:154
1465
+ msgid "Allow & Continue"
1466
+ msgstr "Permitir y continuar"
1467
+
1468
+ #: templates/connect.php:158
1469
+ msgid "Re-send activation email"
1470
+ msgstr "Reenviar correo electrónico de activación"
1471
+
1472
+ #: templates/connect.php:162
1473
+ msgid "Thanks %s!"
1474
+ msgstr "¡Gracias %s!"
1475
+
1476
+ #: templates/connect.php172, templates/forms/license-activation.php:43
1477
+ msgid "Agree & Activate License"
1478
+ msgstr "De acuerdo y activar licencia"
1479
+
1480
+ #: templates/connect.php:181
1481
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1482
+ msgstr "¡Gracias por comprar %s! Para empezar, escribe tu clave de licencia:"
1483
+
1484
+ #: templates/connect.php:188
1485
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1486
+ msgstr "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."
1487
+
1488
+ #: templates/connect.php:189
1489
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1490
+ msgstr "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."
1491
+
1492
+ #: templates/connect.php:195
1493
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1494
+ msgstr "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."
1495
+
1496
+ #: templates/connect.php:196
1497
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1498
+ msgstr "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."
1499
+
1500
+ #: templates/connect.php:230
1501
+ msgid "We're excited to introduce the Freemius network-level integration."
1502
+ msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red."
1503
+
1504
+ #: templates/connect.php:233
1505
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1506
+ msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia."
1507
+
1508
+ #: templates/connect.php:235
1509
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1510
+ msgstr "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."
1511
+
1512
+ #: templates/connect.php:237
1513
+ msgid "%s's paid features"
1514
+ msgstr "%s características de pago"
1515
+
1516
+ #: templates/connect.php:242
1517
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1518
+ msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red."
1519
+
1520
+ #: templates/connect.php:244
1521
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
+ msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1523
+
1524
+ #: templates/connect.php253, templates/forms/license-activation.php:46
1525
+ msgid "License key"
1526
+ msgstr "Clave de licencia"
1527
+
1528
+ #: templates/connect.php256, templates/forms/license-activation.php:19
1529
+ msgid "Can't find your license key?"
1530
+ msgstr "¿No puedes encontrar tu clave de licencia?"
1531
+
1532
+ #: templates/connect.php315, templates/connect.php630,
1533
+ #: templates/forms/deactivation/retry-skip.php:20
1534
+ msgctxt "verb"
1535
+ msgid "Skip"
1536
+ msgstr "Saltar"
1537
+
1538
+ #: templates/connect.php:318
1539
+ msgid "Delegate to Site Admins"
1540
+ msgstr "Delegar a administradores del sitio"
1541
+
1542
+ #: templates/connect.php:318
1543
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1544
+ msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios."
1545
+
1546
+ #: templates/connect.php:346
1547
+ msgid "Your Profile Overview"
1548
+ msgstr "Resumen del perfil"
1549
+
1550
+ #: templates/connect.php:347
1551
+ msgid "Name and email address"
1552
+ msgstr "Nombre y dirección de correo electrónico"
1553
+
1554
+ #: templates/connect.php:352
1555
+ msgid "Your Site Overview"
1556
+ msgstr "Resumen del sitio"
1557
+
1558
+ #: templates/connect.php:353
1559
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1560
+ msgstr "URL del sitio web, versión de WP, PHP info, plugins y temas"
1561
+
1562
+ #: templates/connect.php:358
1563
+ msgid "Admin Notices"
1564
+ msgstr "Avisos de administración"
1565
+
1566
+ #: templates/connect.php359, templates/connect.php:375
1567
+ msgid "Updates, announcements, marketing, no spam"
1568
+ msgstr "Actualizaciones, anuncios, marketing, sin spam"
1569
+
1570
+ #: templates/connect.php:364
1571
+ msgid "Current %s Events"
1572
+ msgstr "Eventos de %s actuales"
1573
+
1574
+ #: templates/connect.php:365
1575
+ msgid "Activation, deactivation and uninstall"
1576
+ msgstr "Activación, desactivación y desinstalación"
1577
+
1578
+ #: templates/connect.php:374
1579
+ msgid "Newsletter"
1580
+ msgstr "Boletín"
1581
+
1582
+ #: templates/connect.php391, templates/forms/license-activation.php:38
1583
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1584
+ msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
1585
+
1586
+ #: templates/connect.php:396
1587
+ msgid "What permissions are being granted?"
1588
+ msgstr "¿Qué permisos se otorgan?"
1589
+
1590
+ #: templates/connect.php:417
1591
+ msgid "Don't have a license key?"
1592
+ msgstr "¿No tienes una clave de licencia?"
1593
+
1594
+ #: templates/connect.php:418
1595
+ msgid "Activate Free Version"
1596
+ msgstr "Activar versión gratuita"
1597
+
1598
+ #: templates/connect.php:420
1599
+ msgid "Have a license key?"
1600
+ msgstr "¿Tienes una clave de licencia?"
1601
+
1602
+ #: templates/connect.php:428
1603
+ msgid "Privacy Policy"
1604
+ msgstr "Política de privacidad"
1605
+
1606
+ #: templates/connect.php:430
1607
+ msgid "License Agreement"
1608
+ msgstr "Acuerdo de licencia"
1609
+
1610
+ #: templates/connect.php:430
1611
+ msgid "Terms of Service"
1612
+ msgstr "Términos de servicio"
1613
+
1614
+ #: templates/connect.php:766
1615
+ msgctxt "as in the process of sending an email"
1616
+ msgid "Sending email"
1617
+ msgstr "Enviando correo electrónico"
1618
+
1619
+ #: templates/connect.php:767
1620
+ msgctxt "as activating plugin"
1621
+ msgid "Activating"
1622
+ msgstr "Activando"
1623
+
1624
+ #: templates/contact.php:78
1625
+ msgid "Contact"
1626
+ msgstr "Contacto"
1627
+
1628
+ #: templates/debug.php:17
1629
+ msgctxt "as turned off"
1630
+ msgid "Off"
1631
+ msgstr "Apagado"
1632
+
1633
+ #: templates/debug.php:18
1634
+ msgctxt "as turned on"
1635
+ msgid "On"
1636
+ msgstr "Encendido"
1637
+
1638
+ #: templates/debug.php:20
1639
+ msgid "SDK"
1640
+ msgstr "SDK"
1641
+
1642
+ #: templates/debug.php:24
1643
+ msgctxt "as code debugging"
1644
+ msgid "Debugging"
1645
+ msgstr "Depurando"
1646
+
1647
+ #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
+ #: templates/debug.php:492
1649
+ msgid "Actions"
1650
+ msgstr "Acciones"
1651
+
1652
+ #: templates/debug.php:64
1653
+ msgid "Are you sure you want to delete all Freemius data?"
1654
+ msgstr "¿Está seguro que desea eliminar todos los datos de Freemius?"
1655
+
1656
+ #: templates/debug.php:64
1657
+ msgid "Delete All Accounts"
1658
+ msgstr "Borrar todas las cuentas"
1659
+
1660
+ #: templates/debug.php:71
1661
+ msgid "Clear API Cache"
1662
+ msgstr "Borrar caché de la API"
1663
+
1664
+ #: templates/debug.php:79
1665
+ msgid "Clear Updates Transients"
1666
+ msgstr "Borrar transients de actualizaciones"
1667
+
1668
+ #: templates/debug.php:86
1669
+ msgid "Sync Data From Server"
1670
+ msgstr "Sincronizar datos desde el servidor"
1671
+
1672
+ #: templates/debug.php:95
1673
+ msgid "Migrate Options to Network"
1674
+ msgstr "Migrar opciones a la red"
1675
+
1676
+ #: templates/debug.php:100
1677
+ msgid "Load DB Option"
1678
+ msgstr "Cargar opción de BD"
1679
+
1680
+ #: templates/debug.php:103
1681
+ msgid "Set DB Option"
1682
+ msgstr "Guardar opción en BD"
1683
+
1684
+ #: templates/debug.php:180
1685
+ msgid "Key"
1686
+ msgstr "Clave"
1687
+
1688
+ #: templates/debug.php:181
1689
+ msgid "Value"
1690
+ msgstr "Valor"
1691
+
1692
+ #: templates/debug.php:197
1693
+ msgctxt "as software development kit versions"
1694
+ msgid "SDK Versions"
1695
+ msgstr "Versiones SDK"
1696
+
1697
+ #: templates/debug.php:202
1698
+ msgid "SDK Path"
1699
+ msgstr "Ruta del SDK"
1700
+
1701
+ #: templates/debug.php203, templates/debug.php:242
1702
+ msgid "Module Path"
1703
+ msgstr "Ruta del módulo"
1704
+
1705
+ #: templates/debug.php:204
1706
+ msgid "Is Active"
1707
+ msgstr "Está activo"
1708
+
1709
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
+ msgid "Plugins"
1711
+ msgstr "Plugins"
1712
+
1713
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
+ msgid "Themes"
1715
+ msgstr "Temas"
1716
+
1717
+ #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
+ #: templates/debug/scheduled-crons.php:80
1719
+ msgid "Slug"
1720
+ msgstr "Ruta"
1721
+
1722
+ #: templates/debug.php239, templates/debug.php:450
1723
+ msgid "Title"
1724
+ msgstr "Título"
1725
+
1726
+ #: templates/debug.php:240
1727
+ msgctxt "as application program interface"
1728
+ msgid "API"
1729
+ msgstr "API"
1730
+
1731
+ #: templates/debug.php:241
1732
+ msgid "Freemius State"
1733
+ msgstr "Estado Freemius"
1734
+
1735
+ #: templates/debug.php:245
1736
+ msgid "Network Blog"
1737
+ msgstr "Blog de red"
1738
+
1739
+ #: templates/debug.php:246
1740
+ msgid "Network User"
1741
+ msgstr "Usuario de red"
1742
+
1743
+ #: templates/debug.php:283
1744
+ msgctxt "as connection was successful"
1745
+ msgid "Connected"
1746
+ msgstr "Conectado"
1747
+
1748
+ #: templates/debug.php:284
1749
+ msgctxt "as connection blocked"
1750
+ msgid "Blocked"
1751
+ msgstr "Bloqueado"
1752
+
1753
+ #: templates/debug.php:320
1754
+ msgid "Simulate Trial Promotion"
1755
+ msgstr "Simular período de prueba"
1756
+
1757
+ #: templates/debug.php:332
1758
+ msgid "Simulate Network Upgrade"
1759
+ msgstr "Simular actualización de red"
1760
+
1761
+ #: templates/debug.php:358
1762
+ msgid "%s Installs"
1763
+ msgstr "%s Instalaciones"
1764
+
1765
+ #: templates/debug.php:360
1766
+ msgctxt "like websites"
1767
+ msgid "Sites"
1768
+ msgstr "Sitios"
1769
+
1770
+ #: templates/debug.php366, templates/account/partials/site.php:148
1771
+ msgid "Blog ID"
1772
+ msgstr "ID del blog"
1773
+
1774
+ #: templates/debug.php431, templates/debug.php509,
1775
+ #: templates/account/partials/addon.php:339
1776
+ msgctxt "verb"
1777
+ msgid "Delete"
1778
+ msgstr "Borrar"
1779
+
1780
+ #: templates/debug.php:445
1781
+ msgid "Add Ons of module %s"
1782
+ msgstr "Complementos del módulo %s"
1783
+
1784
+ #: templates/debug.php:482
1785
+ msgid "Users"
1786
+ msgstr "Usuarios"
1787
+
1788
+ #: templates/debug.php:489
1789
+ msgid "Verified"
1790
+ msgstr "Verificado"
1791
+
1792
+ #: templates/debug.php:520
1793
+ msgid "%s Licenses"
1794
+ msgstr "%s Licencias"
1795
+
1796
+ #: templates/debug.php:525
1797
+ msgid "Plugin ID"
1798
+ msgstr "ID del plugin"
1799
+
1800
+ #: templates/debug.php:527
1801
+ msgid "Plan ID"
1802
+ msgstr "ID del plan"
1803
+
1804
+ #: templates/debug.php:528
1805
+ msgid "Quota"
1806
+ msgstr "Cuota"
1807
+
1808
+ #: templates/debug.php:529
1809
+ msgid "Activated"
1810
+ msgstr "Activado"
1811
+
1812
+ #: templates/debug.php:530
1813
+ msgid "Blocking"
1814
+ msgstr "Bloqueando"
1815
+
1816
+ #: templates/debug.php:532
1817
+ msgctxt "as expiration date"
1818
+ msgid "Expiration"
1819
+ msgstr "Caducidad"
1820
+
1821
+ #: templates/debug.php:555
1822
+ msgid "Debug Log"
1823
+ msgstr "Log de Debug"
1824
+
1825
+ #: templates/debug.php:559
1826
+ msgid "All Types"
1827
+ msgstr "Todos los Tipos"
1828
+
1829
+ #: templates/debug.php:566
1830
+ msgid "All Requests"
1831
+ msgstr "Todas las peticiones"
1832
+
1833
+ #: templates/debug.php571, templates/debug.php600,
1834
+ #: templates/debug/logger.php:25
1835
+ msgid "File"
1836
+ msgstr "Archivo"
1837
+
1838
+ #: templates/debug.php572, templates/debug.php598,
1839
+ #: templates/debug/logger.php:23
1840
+ msgid "Function"
1841
+ msgstr "Función"
1842
+
1843
+ #: templates/debug.php:573
1844
+ msgid "Process ID"
1845
+ msgstr "ID del proceso"
1846
+
1847
+ #: templates/debug.php:574
1848
+ msgid "Logger"
1849
+ msgstr "Logger"
1850
+
1851
+ #: templates/debug.php575, templates/debug.php599,
1852
+ #: templates/debug/logger.php:24
1853
+ msgid "Message"
1854
+ msgstr "Mensaje"
1855
+
1856
+ #: templates/debug.php:577
1857
+ msgid "Filter"
1858
+ msgstr "Filtro"
1859
+
1860
+ #: templates/debug.php:585
1861
+ msgid "Download"
1862
+ msgstr "Descarga"
1863
+
1864
+ #: templates/debug.php596, templates/debug/logger.php:22
1865
+ msgid "Type"
1866
+ msgstr "Tipo"
1867
+
1868
+ #: templates/debug.php601, templates/debug/logger.php:26
1869
+ msgid "Timestamp"
1870
+ msgstr "Timestamp"
1871
+
1872
+ #: templates/secure-https-header.php:28
1873
+ msgid "Secure HTTPS %s page, running from an external domain"
1874
+ msgstr "Página segura HTTPS %s, desde un dominio externo"
1875
+
1876
+ #: includes/customizer/class-fs-customizer-support-section.php55,
1877
+ #: templates/plugin-info/features.php:43
1878
+ msgid "Support"
1879
+ msgstr "Soporte"
1880
+
1881
+ #: includes/debug/class-fs-debug-bar-panel.php48,
1882
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1883
+ msgctxt "milliseconds"
1884
+ msgid "ms"
1885
+ msgstr "ms"
1886
+
1887
+ #: includes/debug/debug-bar-start.php:41
1888
+ msgid "Freemius API"
1889
+ msgstr "API Freemius"
1890
+
1891
+ #: includes/debug/debug-bar-start.php:42
1892
+ msgid "Requests"
1893
+ msgstr "Peticiones"
1894
+
1895
+ #: templates/account/billing.php:28
1896
+ msgctxt "verb"
1897
+ msgid "Update"
1898
+ msgstr "Actualizar"
1899
+
1900
+ #: templates/account/billing.php:39
1901
+ msgid "Billing"
1902
+ msgstr "Facturación"
1903
+
1904
+ #: templates/account/billing.php44, templates/account/billing.php:44
1905
+ msgid "Business name"
1906
+ msgstr "Nombre de la empresa"
1907
+
1908
+ #: templates/account/billing.php45, templates/account/billing.php:45
1909
+ msgid "Tax / VAT ID"
1910
+ msgstr "Tax / Núm IVA"
1911
+
1912
+ #: templates/account/billing.php48, templates/account/billing.php48,
1913
+ #: templates/account/billing.php49, templates/account/billing.php:49
1914
+ msgid "Address Line %d"
1915
+ msgstr "Línea de la dirección %d"
1916
+
1917
+ #: templates/account/billing.php52, templates/account/billing.php:52
1918
+ msgid "City"
1919
+ msgstr "Ciudad"
1920
+
1921
+ #: templates/account/billing.php52, templates/account/billing.php:52
1922
+ msgid "Town"
1923
+ msgstr "Municipio"
1924
+
1925
+ #: templates/account/billing.php53, templates/account/billing.php:53
1926
+ msgid "ZIP / Postal Code"
1927
+ msgstr "Código postal"
1928
+
1929
+ #: templates/account/billing.php:308
1930
+ msgid "Country"
1931
+ msgstr "País"
1932
+
1933
+ #: templates/account/billing.php:310
1934
+ msgid "Select Country"
1935
+ msgstr "Seleccionar país"
1936
+
1937
+ #: templates/account/billing.php317, templates/account/billing.php:318
1938
+ msgid "State"
1939
+ msgstr "Estado"
1940
+
1941
+ #: templates/account/billing.php317, templates/account/billing.php:318
1942
+ msgid "Province"
1943
+ msgstr "Provincia"
1944
+
1945
+ #: templates/account/payments.php:29
1946
+ msgid "Payments"
1947
+ msgstr "Pagos"
1948
+
1949
+ #: templates/account/payments.php:36
1950
+ msgid "Date"
1951
+ msgstr "Fecha"
1952
+
1953
+ #: templates/account/payments.php:37
1954
+ msgid "Amount"
1955
+ msgstr "Cantidad"
1956
+
1957
+ #: templates/account/payments.php38, templates/account/payments.php:50
1958
+ msgid "Invoice"
1959
+ msgstr "Factura"
1960
+
1961
+ #: templates/debug/api-calls.php:56
1962
+ msgid "API"
1963
+ msgstr "API"
1964
+
1965
+ #: templates/debug/api-calls.php:68
1966
+ msgid "Method"
1967
+ msgstr "Método"
1968
+
1969
+ #: templates/debug/api-calls.php:69
1970
+ msgid "Code"
1971
+ msgstr "Código"
1972
+
1973
+ #: templates/debug/api-calls.php:70
1974
+ msgid "Length"
1975
+ msgstr "Longitud"
1976
+
1977
+ #: templates/debug/api-calls.php:71
1978
+ msgctxt "as file/folder path"
1979
+ msgid "Path"
1980
+ msgstr "Ruta"
1981
+
1982
+ #: templates/debug/api-calls.php:73
1983
+ msgid "Body"
1984
+ msgstr "Cuerpo"
1985
+
1986
+ #: templates/debug/api-calls.php:75
1987
+ msgid "Result"
1988
+ msgstr "Resultado"
1989
+
1990
+ #: templates/debug/api-calls.php:76
1991
+ msgid "Start"
1992
+ msgstr "Inicio"
1993
+
1994
+ #: templates/debug/api-calls.php:77
1995
+ msgid "End"
1996
+ msgstr "Fin"
1997
+
1998
+ #: templates/debug/logger.php:15
1999
+ msgid "Log"
2000
+ msgstr "Log"
2001
+
2002
+ #. translators: %s: time period (e.g. In "2 hours")
2003
+ #: templates/debug/plugins-themes-sync.php18,
2004
+ #: templates/debug/scheduled-crons.php:91
2005
+ msgid "In %s"
2006
+ msgstr "En %s"
2007
+
2008
+ #. translators: %s: time period (e.g. "2 hours" ago)
2009
+ #: templates/debug/plugins-themes-sync.php20,
2010
+ #: templates/debug/scheduled-crons.php:93
2011
+ msgid "%s ago"
2012
+ msgstr "hace %s"
2013
+
2014
+ #: templates/debug/plugins-themes-sync.php21,
2015
+ #: templates/debug/scheduled-crons.php:74
2016
+ msgctxt "seconds"
2017
+ msgid "sec"
2018
+ msgstr "seg"
2019
+
2020
+ #: templates/debug/plugins-themes-sync.php:23
2021
+ msgid "Plugins & Themes Sync"
2022
+ msgstr "Sincronizar plugins y temas"
2023
+
2024
+ #: templates/debug/plugins-themes-sync.php:28
2025
+ msgid "Total"
2026
+ msgstr "Total"
2027
+
2028
+ #: templates/debug/plugins-themes-sync.php29,
2029
+ #: templates/debug/scheduled-crons.php:84
2030
+ msgid "Last"
2031
+ msgstr "Último"
2032
+
2033
+ #: templates/debug/scheduled-crons.php:76
2034
+ msgid "Scheduled Crons"
2035
+ msgstr "Crons programados"
2036
+
2037
+ #: templates/debug/scheduled-crons.php:81
2038
+ msgid "Module"
2039
+ msgstr "Módulo"
2040
+
2041
+ #: templates/debug/scheduled-crons.php:82
2042
+ msgid "Module Type"
2043
+ msgstr "Tipo de módulo"
2044
+
2045
+ #: templates/debug/scheduled-crons.php:83
2046
+ msgid "Cron Type"
2047
+ msgstr "Tipo de cron"
2048
+
2049
+ #: templates/debug/scheduled-crons.php:85
2050
+ msgid "Next"
2051
+ msgstr "Siguiente"
2052
+
2053
+ #: templates/forms/affiliation.php:82
2054
+ msgid "Non-expiring"
2055
+ msgstr "Sin caducidad"
2056
+
2057
+ #: templates/forms/affiliation.php:85
2058
+ msgid "Apply to become an affiliate"
2059
+ msgstr "Aceptar para hacerse afiliado"
2060
+
2061
+ #: templates/forms/affiliation.php:104
2062
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2063
+ msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s."
2064
+
2065
+ #: templates/forms/affiliation.php:119
2066
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2067
+ msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional."
2068
+
2069
+ #: templates/forms/affiliation.php:122
2070
+ msgid "Your affiliation account was temporarily suspended."
2071
+ msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente."
2072
+
2073
+ #: templates/forms/affiliation.php:125
2074
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2075
+ msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días."
2076
+
2077
+ #: templates/forms/affiliation.php:128
2078
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2079
+ msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte."
2080
+
2081
+ #: templates/forms/affiliation.php:141
2082
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2083
+ msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)"
2084
+
2085
+ #: templates/forms/affiliation.php:142
2086
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2087
+ msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!"
2088
+
2089
+ #: templates/forms/affiliation.php:145
2090
+ msgid "Program Summary"
2091
+ msgstr "Sumario del programa"
2092
+
2093
+ #: templates/forms/affiliation.php:147
2094
+ msgid "%s commission when a customer purchases a new license."
2095
+ msgstr "%s comisión cuando un cliente compra una nueva licencia."
2096
+
2097
+ #: templates/forms/affiliation.php:149
2098
+ msgid "Get commission for automated subscription renewals."
2099
+ msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones."
2100
+
2101
+ #: templates/forms/affiliation.php:152
2102
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2103
+ msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales."
2104
+
2105
+ #: templates/forms/affiliation.php:155
2106
+ msgid "Unlimited commissions."
2107
+ msgstr "Comisiones Ilimitadas"
2108
+
2109
+ #: templates/forms/affiliation.php:157
2110
+ msgid "%s minimum payout amount."
2111
+ msgstr "%s cantidad mínima a pagar."
2112
+
2113
+ #: templates/forms/affiliation.php:158
2114
+ msgid "Payouts are in USD and processed monthly via PayPal."
2115
+ msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal."
2116
+
2117
+ #: templates/forms/affiliation.php:159
2118
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2119
+ msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días."
2120
+
2121
+ #: templates/forms/affiliation.php:162
2122
+ msgid "Affiliate"
2123
+ msgstr "Afiliado"
2124
+
2125
+ #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2126
+ msgid "Email address"
2127
+ msgstr "Dirección de correo electrónico"
2128
+
2129
+ #: templates/forms/affiliation.php:169
2130
+ msgid "Full name"
2131
+ msgstr "Nombre completo"
2132
+
2133
+ #: templates/forms/affiliation.php:173
2134
+ msgid "PayPal account email address"
2135
+ msgstr "Dirección de correo electrónico de PayPal"
2136
+
2137
+ #: templates/forms/affiliation.php:177
2138
+ msgid "Where are you going to promote the %s?"
2139
+ msgstr "¿Dónde vas a promocionar %s?"
2140
+
2141
+ #: templates/forms/affiliation.php:179
2142
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2143
+ msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s."
2144
+
2145
+ #: templates/forms/affiliation.php:181
2146
+ msgid "Add another domain"
2147
+ msgstr "Añadir otro dominio"
2148
+
2149
+ #: templates/forms/affiliation.php:185
2150
+ msgid "Extra Domains"
2151
+ msgstr "Dominios extra"
2152
+
2153
+ #: templates/forms/affiliation.php:186
2154
+ msgid "Extra domains where you will be marketing the product from."
2155
+ msgstr "Dominios extra desde donde promocionarás el producto."
2156
+
2157
+ #: templates/forms/affiliation.php:196
2158
+ msgid "Promotion methods"
2159
+ msgstr "Métodos de promoción"
2160
+
2161
+ #: templates/forms/affiliation.php:199
2162
+ msgid "Social media (Facebook, Twitter, etc.)"
2163
+ msgstr "Social media (Facebook, Twitter, etc.)"
2164
+
2165
+ #: templates/forms/affiliation.php:203
2166
+ msgid "Mobile apps"
2167
+ msgstr "Apps móviles "
2168
+
2169
+ #: templates/forms/affiliation.php:207
2170
+ msgid "Website, email, and social media statistics (optional)"
2171
+ msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)"
2172
+
2173
+ #: templates/forms/affiliation.php:210
2174
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2175
+ msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)"
2176
+
2177
+ #: templates/forms/affiliation.php:214
2178
+ msgid "How will you promote us?"
2179
+ msgstr "¿Como nos promocionarás?"
2180
+
2181
+ #: templates/forms/affiliation.php:217
2182
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2183
+ msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)"
2184
+
2185
+ #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2186
+ msgid "Cancel"
2187
+ msgstr "Cancelar"
2188
+
2189
+ #: templates/forms/affiliation.php:225
2190
+ msgid "Become an affiliate"
2191
+ msgstr "Hacerse afiliado"
2192
+
2193
+ #: templates/forms/license-activation.php:20
2194
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2195
+ msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:"
2196
+
2197
+ #: templates/forms/license-activation.php:25
2198
+ msgid "Update License"
2199
+ msgstr "Activar licencia"
2200
+
2201
+ #: templates/forms/optout.php:30
2202
+ msgctxt "verb"
2203
+ msgid "Opt Out"
2204
+ msgstr "Darse de baja"
2205
+
2206
+ #: templates/forms/optout.php:31
2207
+ msgctxt "verb"
2208
+ msgid "Opt In"
2209
+ msgstr "Inscribirse"
2210
+
2211
+ #: templates/forms/optout.php:33
2212
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2213
+ msgstr "El uso del seguimiento se hace con la intención de mejorar %s. Crear una mejor experiencia de usuario, priorizando nuevas características y cosas mejores. Realmente apreciaríamos que considerases permitirnos continuar con el seguimiento."
2214
+
2215
+ #: templates/forms/optout.php:35
2216
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2217
+ msgstr "Haciendo clic en \"Desistir\", ya no enviaremos los datos de %s a %s."
2218
+
2219
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2220
+ msgid "There is a new version of %s available."
2221
+ msgstr "Hay una nueva versión de %s disponible."
2222
+
2223
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2224
+ msgid " %s to access version %s security & feature updates, and support."
2225
+ msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
2226
+
2227
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2228
+ msgid "New Version Available"
2229
+ msgstr "Nueva versión disponible"
2230
+
2231
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2232
+ msgctxt "close a window"
2233
+ msgid "Dismiss"
2234
+ msgstr "Descartar"
2235
+
2236
+ #: templates/forms/resend-key.php:21
2237
+ msgid "Send License Key"
2238
+ msgstr "Enviar clave de licencia"
2239
+
2240
+ #: templates/forms/resend-key.php:57
2241
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2242
+ msgstr "Escribe abajo la dirección de correo electrónico que has usado para la actualización y te reenviaremos la clave de licencia."
2243
+
2244
+ #: templates/forms/subscription-cancellation.php:37
2245
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
+ msgstr "Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que podrás usar en otro sitio."
2247
+
2248
+ #: templates/forms/subscription-cancellation.php:47
2249
+ msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
+ msgstr "En caso de que NO estés planeando utilizar este %s en este sitio (o en cualquier otro sitio), ¿te gustaría cancelar también %s?"
2251
+
2252
+ #: templates/forms/subscription-cancellation.php:52
2253
+ msgid "license"
2254
+ msgstr "licencia"
2255
+
2256
+ #: templates/forms/subscription-cancellation.php:57
2257
+ msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
+ msgstr "Cancelar %s - No necesito más actualizaciones de características y seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro sitio."
2259
+
2260
+ #: templates/forms/subscription-cancellation.php:68
2261
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
+ msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte."
2263
+
2264
+ #: templates/forms/subscription-cancellation.php:103
2265
+ msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
+ msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida."
2267
+
2268
+ #: templates/forms/subscription-cancellation.php:136
2269
+ msgid "Cancel %s?"
2270
+ msgstr "¿Cancelar %s?"
2271
+
2272
+ #: templates/forms/subscription-cancellation.php:143
2273
+ msgid "Proceed"
2274
+ msgstr "Proceder"
2275
+
2276
+ #: templates/forms/subscription-cancellation.php191,
2277
+ #: templates/forms/deactivation/form.php:150
2278
+ msgid "Cancel %s & Proceed"
2279
+ msgstr "Cancelar %s y proceder"
2280
+
2281
+ #: templates/forms/trial-start.php:22
2282
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2283
+ msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan %2$s."
2284
+
2285
+ #: templates/forms/trial-start.php:28
2286
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2287
+ msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba."
2288
+
2289
+ #: templates/js/style-premium-theme.php:37
2290
+ msgid "Premium"
2291
+ msgstr "Premium"
2292
+
2293
+ #: templates/partials/network-activation.php:23
2294
+ msgid "Activate license on all sites in the network."
2295
+ msgstr "Activar licencia en todos los sitios de la red"
2296
+
2297
+ #: templates/partials/network-activation.php:24
2298
+ msgid "Apply on all sites in the network."
2299
+ msgstr "Aplicar en todos los sitios de la red"
2300
+
2301
+ #: templates/partials/network-activation.php:27
2302
+ msgid "Activate license on all pending sites."
2303
+ msgstr "Aplicar licencia en todos los sitios pendientes"
2304
+
2305
+ #: templates/partials/network-activation.php:28
2306
+ msgid "Apply on all pending sites."
2307
+ msgstr "Aplicar en todos los sitios pendientes"
2308
+
2309
+ #: templates/partials/network-activation.php36,
2310
+ #: templates/partials/network-activation.php:68
2311
+ msgid "allow"
2312
+ msgstr "permitir"
2313
+
2314
+ #: templates/partials/network-activation.php38,
2315
+ #: templates/partials/network-activation.php:70
2316
+ msgid "delegate"
2317
+ msgstr "delegar"
2318
+
2319
+ #: templates/partials/network-activation.php41,
2320
+ #: templates/partials/network-activation.php:73
2321
+ msgid "skip"
2322
+ msgstr "saltar"
2323
+
2324
+ #: templates/plugin-info/description.php72,
2325
+ #: templates/plugin-info/screenshots.php:31
2326
+ msgid "Click to view full-size screenshot %d"
2327
+ msgstr "Click para ver la captura de pantalla a tamaño completo %d"
2328
+
2329
+ #: templates/plugin-info/features.php:56
2330
+ msgid "Unlimited Updates"
2331
+ msgstr "Actualizaciones Ilimitadas"
2332
+
2333
+ #: templates/account/partials/activate-license-button.php:46
2334
+ msgid "Localhost"
2335
+ msgstr "Localhost"
2336
+
2337
+ #: templates/account/partials/activate-license-button.php:50
2338
+ msgctxt "as 5 licenses left"
2339
+ msgid "%s left"
2340
+ msgstr "quedan %s"
2341
+
2342
+ #: templates/account/partials/activate-license-button.php:51
2343
+ msgid "Last license"
2344
+ msgstr "Última licencia"
2345
+
2346
+ #: templates/account/partials/addon.php:115
2347
+ msgid "Cancelled"
2348
+ msgstr "Cancelado"
2349
+
2350
+ #: templates/account/partials/addon.php:125
2351
+ msgid "No expiration"
2352
+ msgstr "Sin caducidad"
2353
+
2354
+ #: templates/account/partials/addon.php264,
2355
+ #: templates/account/partials/addon.php:317
2356
+ msgid "Activate this add-on"
2357
+ msgstr "Activar este complemento"
2358
+
2359
+ #: templates/account/partials/site.php:181
2360
+ msgid "Owner Name"
2361
+ msgstr "Nombre del propietario"
2362
+
2363
+ #: templates/account/partials/site.php:193
2364
+ msgid "Owner Email"
2365
+ msgstr "Correo electrónico del propietario"
2366
+
2367
+ #: templates/account/partials/site.php:205
2368
+ msgid "Owner ID"
2369
+ msgstr "ID del propietario"
2370
+
2371
+ #: templates/account/partials/site.php:270
2372
+ msgid "Subscription"
2373
+ msgstr "Suscripción"
2374
+
2375
+ #: templates/forms/deactivation/contact.php:19
2376
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2377
+ msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una oportunidad."
2378
+
2379
+ #: templates/forms/deactivation/contact.php:22
2380
+ msgid "Contact Support"
2381
+ msgstr "Contactar soporte"
2382
+
2383
+ #: templates/forms/deactivation/form.php:59
2384
+ msgid "Anonymous feedback"
2385
+ msgstr "Comentarios anónimos"
2386
+
2387
+ #: templates/forms/deactivation/form.php:66
2388
+ msgid "Deactivate"
2389
+ msgstr "Desactivar"
2390
+
2391
+ #: templates/forms/deactivation/form.php:68
2392
+ msgid "Activate %s"
2393
+ msgstr "Activar %s"
2394
+
2395
+ #: templates/forms/deactivation/form.php:80
2396
+ msgid "Quick Feedback"
2397
+ msgstr "Comentarios rápidos"
2398
+
2399
+ #: templates/forms/deactivation/form.php:84
2400
+ msgid "If you have a moment, please let us know why you are %s"
2401
+ msgstr "Si tienes un momento, por favor, dinos por qué estás %s"
2402
+
2403
+ #: templates/forms/deactivation/form.php:84
2404
+ msgid "deactivating"
2405
+ msgstr "desactivando"
2406
+
2407
+ #: templates/forms/deactivation/form.php:84
2408
+ msgid "switching"
2409
+ msgstr "cambiando"
2410
+
2411
+ #: templates/forms/deactivation/form.php:332
2412
+ msgid "Submit & %s"
2413
+ msgstr "Enviar y %s"
2414
+
2415
+ #: templates/forms/deactivation/form.php:353
2416
+ msgid "Kindly tell us the reason so we can improve."
2417
+ msgstr "Por favor, dínos la razón para que podamos mejorar."
2418
+
2419
+ #: templates/forms/deactivation/form.php:478
2420
+ msgid "Yes - %s"
2421
+ msgstr "Si - %s"
2422
+
2423
+ #: templates/forms/deactivation/form.php:485
2424
+ msgid "Skip & %s"
2425
+ msgstr "Saltar y %s"
2426
+
2427
+ #: templates/forms/deactivation/retry-skip.php:21
2428
+ msgid "Click here to use the plugin anonymously"
2429
+ msgstr "Haz click aquí para utilizar el plugin de forma anónima"
2430
+
2431
+ #: templates/forms/deactivation/retry-skip.php:23
2432
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2433
+ msgstr "Es posible que te lo hayas perdido, pero no tienes que compartir ningún dato y puedes solo aceptar %s."
freemius/languages/freemius-fr_FR.po CHANGED
@@ -1,2433 +1,2433 @@
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-11-26 11:09+0000\n"
11
- "Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
12
- "Language: fr_FR\n"
13
- "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
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:1602
25
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
- msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
27
-
28
- #: includes/class-freemius.php:1604
29
- msgid "Error"
30
- msgstr "Erreur"
31
-
32
- #: includes/class-freemius.php:1925
33
- msgid "I found a better %s"
34
- msgstr "J'ai trouvé un meilleur %s"
35
-
36
- #: includes/class-freemius.php:1927
37
- msgid "What's the %s's name?"
38
- msgstr "Quel est le nom du %s ?"
39
-
40
- #: includes/class-freemius.php:1933
41
- msgid "It's a temporary %s. I'm just debugging an issue."
42
- msgstr "C'est une %s temporaire. Je corrige un problème."
43
-
44
- #: includes/class-freemius.php:1935
45
- msgid "Deactivation"
46
- msgstr "Désactivation"
47
-
48
- #: includes/class-freemius.php:1936
49
- msgid "Theme Switch"
50
- msgstr "Changement de Thème"
51
-
52
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
- msgid "Other"
54
- msgstr "Autre"
55
-
56
- #: includes/class-freemius.php:1953
57
- msgid "I no longer need the %s"
58
- msgstr "Je n'ai plus besoin du %s"
59
-
60
- #: includes/class-freemius.php:1960
61
- msgid "I only needed the %s for a short period"
62
- msgstr "Je n'ai besoin de %s que pour une courte période"
63
-
64
- #: includes/class-freemius.php:1966
65
- msgid "The %s broke my site"
66
- msgstr "Le %s a cassé mon site"
67
-
68
- #: includes/class-freemius.php:1973
69
- msgid "The %s suddenly stopped working"
70
- msgstr "Le %s a soudainement arrêté de fonctionner"
71
-
72
- #: includes/class-freemius.php:1983
73
- msgid "I can't pay for it anymore"
74
- msgstr "Je ne peux plus payer pour ça"
75
-
76
- #: includes/class-freemius.php:1985
77
- msgid "What price would you feel comfortable paying?"
78
- msgstr "Quel prix seriez-vous prêt à payer ?"
79
-
80
- #: includes/class-freemius.php:1991
81
- msgid "I don't like to share my information with you"
82
- msgstr "Je ne veux pas partager mes informations avec vous"
83
-
84
- #: includes/class-freemius.php:2012
85
- msgid "The %s didn't work"
86
- msgstr "Le %s n'a pas fonctionné"
87
-
88
- #: includes/class-freemius.php:2022
89
- msgid "I couldn't understand how to make it work"
90
- msgstr "Je ne comprends pas comment le faire fonctionner"
91
-
92
- #: includes/class-freemius.php:2030
93
- msgid "The %s is great, but I need specific feature that you don't support"
94
- msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
95
-
96
- #: includes/class-freemius.php:2032
97
- msgid "What feature?"
98
- msgstr "Quelle fonctionnalité ?"
99
-
100
- #: includes/class-freemius.php:2036
101
- msgid "The %s is not working"
102
- msgstr "Le %s ne fonctionne pas"
103
-
104
- #: includes/class-freemius.php:2038
105
- msgid "Kindly share what didn't work so we can fix it for future users..."
106
- msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
107
-
108
- #: includes/class-freemius.php:2042
109
- msgid "It's not what I was looking for"
110
- msgstr "Ce n'est pas ce que je recherche"
111
-
112
- #: includes/class-freemius.php:2044
113
- msgid "What you've been looking for?"
114
- msgstr "Que recherchez-vous ?"
115
-
116
- #: includes/class-freemius.php:2048
117
- msgid "The %s didn't work as expected"
118
- msgstr "Le %s n'a pas fonctionné comme prévu"
119
-
120
- #: includes/class-freemius.php:2050
121
- msgid "What did you expect?"
122
- msgstr "À quoi vous attendiez-vous ?"
123
-
124
- #: includes/class-freemius.php2853, templates/debug.php:20
125
- msgid "Freemius Debug"
126
- msgstr "Débuggage Freemius"
127
-
128
- #: includes/class-freemius.php:3581
129
- msgid "I don't know what is cURL or how to install it, help me!"
130
- msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
131
-
132
- #: includes/class-freemius.php:3583
133
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
- msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
135
-
136
- #: includes/class-freemius.php:3590
137
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
- msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
139
-
140
- #: includes/class-freemius.php:3695
141
- msgid "Yes - do your thing"
142
- msgstr "Oui - allez-y"
143
-
144
- #: includes/class-freemius.php:3700
145
- msgid "No - just deactivate"
146
- msgstr "Non - désactivation seulement"
147
-
148
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
- #: includes/class-freemius.php18705, templates/add-ons.php:43
155
- msgctxt "exclamation"
156
- msgid "Oops"
157
- msgstr "Oups"
158
-
159
- #: includes/class-freemius.php:3814
160
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
- msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
162
-
163
- #: includes/class-freemius.php:4250
164
- msgctxt "addonX cannot run without pluginY"
165
- msgid "%s cannot run without %s."
166
- msgstr "%s ne peut pas fonctionner sans %s."
167
-
168
- #: includes/class-freemius.php:4251
169
- msgctxt "addonX cannot run..."
170
- msgid "%s cannot run without the plugin."
171
- msgstr "%s ne peut pas fonctionner sans le plugin."
172
-
173
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
- #: includes/class-freemius.php:17659
175
- msgid "Unexpected API error. Please contact the %s's author with the following error."
176
- msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
177
-
178
- #: includes/class-freemius.php:5006
179
- msgid "Premium %s version was successfully activated."
180
- msgstr "La version premium de %s a été activée avec succès."
181
-
182
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
- msgctxt ""
184
- msgid "W00t"
185
- msgstr "Génial"
186
-
187
- #: includes/class-freemius.php:5033
188
- msgid "You have a %s license."
189
- msgstr "Vous avez une license pour %s."
190
-
191
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
- #: includes/class-freemius.php:17413
195
- msgctxt "interjection expressing joy or exuberance"
196
- msgid "Yee-haw"
197
- msgstr "Youpi"
198
-
199
- #: includes/class-freemius.php:5301
200
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
- msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence."
202
-
203
- #: includes/class-freemius.php:5305
204
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
- msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
206
-
207
- #: includes/class-freemius.php5314, templates/add-ons.php103,
208
- #: templates/account/partials/addon.php:288
209
- msgid "More information about %s"
210
- msgstr "Plus d'informations à propos de %s"
211
-
212
- #: includes/class-freemius.php:5315
213
- msgid "Purchase License"
214
- msgstr "Acheter une licence"
215
-
216
- #: includes/class-freemius.php6230, templates/connect.php:163
217
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
- msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
219
-
220
- #: includes/class-freemius.php:6234
221
- msgid "start the trial"
222
- msgstr "commencer la période d'essai"
223
-
224
- #: includes/class-freemius.php6235, templates/connect.php:167
225
- msgid "complete the install"
226
- msgstr "compléter l'installation"
227
-
228
- #: includes/class-freemius.php:6348
229
- msgid "You are just one step away - %s"
230
- msgstr "Il ne reste qu'une étape - %s"
231
-
232
- #: includes/class-freemius.php:6351
233
- msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
- msgid "Complete \"%s\" Activation Now"
235
- msgstr "Compléter \"%s\" Activer Maintenant"
236
-
237
- #: includes/class-freemius.php:6429
238
- msgid "We made a few tweaks to the %s, %s"
239
- msgstr "Nous avons fait quelques modifications au %s, %s"
240
-
241
- #: includes/class-freemius.php:6433
242
- msgid "Opt in to make \"%s\" better!"
243
- msgstr "Inscrivez-vous pour améliorer \"%s\" !"
244
-
245
- #: includes/class-freemius.php:6861
246
- msgid "The upgrade of %s was successfully completed."
247
- msgstr "La mise à jour du %s s'est terminée avec succès "
248
-
249
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
- #: includes/class-fs-plugin-updater.php1077,
251
- #: includes/class-fs-plugin-updater.php1084,
252
- #: templates/auto-installation.php:32
253
- msgid "Add-On"
254
- msgstr "Add-On"
255
-
256
- #: includes/class-freemius.php8707, templates/debug.php359,
257
- #: templates/debug.php:520
258
- msgid "Plugin"
259
- msgstr "Plugin"
260
-
261
- #: includes/class-freemius.php8708, templates/debug.php359,
262
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
- msgid "Theme"
264
- msgstr "Thème"
265
-
266
- #: includes/class-freemius.php:11183
267
- msgid "Invalid site details collection."
268
- msgstr "Invalid site details collection."
269
-
270
- #: includes/class-freemius.php:11303
271
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
- msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
273
-
274
- #: includes/class-freemius.php:11305
275
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
- msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
277
-
278
- #: includes/class-freemius.php:11541
279
- msgid "Account is pending activation."
280
- msgstr "Compte en cours d'activation."
281
-
282
- #: includes/class-freemius.php11653,
283
- #: templates/forms/premium-versions-upgrade-handler.php:47
284
- msgid "Buy a license now"
285
- msgstr "Acheter une licence maintenant"
286
-
287
- #: includes/class-freemius.php11665,
288
- #: templates/forms/premium-versions-upgrade-handler.php:46
289
- msgid "Renew your license now"
290
- msgstr "Renouvelez votre licence maintenant"
291
-
292
- #: includes/class-freemius.php:11669
293
- msgid "%s to access version %s security & feature updates, and support."
294
- msgstr "%s to access version %s security & feature updates, and support."
295
-
296
- #: includes/class-freemius.php:14052
297
- msgid "%s activation was successfully completed."
298
- msgstr "L'activation de %s s'est terminée avec succès."
299
-
300
- #: includes/class-freemius.php:14066
301
- msgid "Your account was successfully activated with the %s plan."
302
- msgstr "Votre compte a été activé avec succès avec la formule %s."
303
-
304
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
- msgid "Your trial has been successfully started."
306
- msgstr "Votre période d'essai a bien démarré."
307
-
308
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
- #: includes/class-freemius.php:14761
310
- msgid "Couldn't activate %s."
311
- msgstr "Impossible d'activer %s."
312
-
313
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
- #: includes/class-freemius.php:14762
315
- msgid "Please contact us with the following message:"
316
- msgstr "Merci de nous contacter avec le message suivant :"
317
-
318
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
- msgid "Upgrade"
320
- msgstr "Mise à jour"
321
-
322
- #: includes/class-freemius.php:15117
323
- msgid "Start Trial"
324
- msgstr "Essai gratuit"
325
-
326
- #: includes/class-freemius.php:15119
327
- msgid "Pricing"
328
- msgstr "Tarifs"
329
-
330
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
- msgid "Affiliation"
332
- msgstr "Affiliation"
333
-
334
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
- #: templates/account.php150, templates/debug.php:324
336
- msgid "Account"
337
- msgstr "Compte"
338
-
339
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
- #: includes/customizer/class-fs-customizer-support-section.php:60
341
- msgid "Contact Us"
342
- msgstr "Contactez Nous"
343
-
344
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
- #: includes/class-freemius.php19553, templates/account.php100,
346
- #: templates/account/partials/addon.php:41
347
- msgid "Add-Ons"
348
- msgstr "Add-Ons"
349
-
350
- #: includes/class-freemius.php:15274
351
- msgctxt "ASCII arrow left icon"
352
- msgid "&#x2190;"
353
- msgstr "&#x2190;"
354
-
355
- #: includes/class-freemius.php:15274
356
- msgctxt "ASCII arrow right icon"
357
- msgid "&#x27a4;"
358
- msgstr "&#x27a4;"
359
-
360
- #: includes/class-freemius.php15276, templates/pricing.php:97
361
- msgctxt "noun"
362
- msgid "Pricing"
363
- msgstr "Tarifs"
364
-
365
- #: includes/class-freemius.php15479,
366
- #: includes/customizer/class-fs-customizer-support-section.php:67
367
- msgid "Support Forum"
368
- msgstr "Forum de Support"
369
-
370
- #: includes/class-freemius.php:16265
371
- msgid "Your email has been successfully verified - you are AWESOME!"
372
- msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
373
-
374
- #: includes/class-freemius.php:16266
375
- msgctxt "a positive response"
376
- msgid "Right on"
377
- msgstr "Directement"
378
-
379
- #: includes/class-freemius.php:16888
380
- msgid "Your %s Add-on plan was successfully upgraded."
381
- msgstr "Votre Add-on %s a bien été mis à jour."
382
-
383
- #: includes/class-freemius.php:16890
384
- msgid "%s Add-on was successfully purchased."
385
- msgstr "L'Add-on %s a bien été acheté."
386
-
387
- #: includes/class-freemius.php:16893
388
- msgid "Download the latest version"
389
- msgstr "Télécharger la dernière version"
390
-
391
- #: includes/class-freemius.php:16965
392
- msgctxt "%1s - plugin title, %2s - API domain"
393
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
- msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
395
-
396
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
- #: includes/class-freemius.php:17461
398
- msgid "Error received from the server:"
399
- msgstr "Une erreur a été reçu depuis le serveur :"
400
-
401
- #: includes/class-freemius.php:16978
402
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
- msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau."
404
-
405
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
- msgctxt ""
408
- msgid "Hmm"
409
- msgstr "Hmm"
410
-
411
- #: includes/class-freemius.php:17173
412
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
- msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé."
414
-
415
- #: includes/class-freemius.php17174, templates/account.php102,
416
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
- msgctxt "trial period"
418
- msgid "Trial"
419
- msgstr "Période d'essai"
420
-
421
- #: includes/class-freemius.php:17179
422
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
- msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
424
-
425
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
- msgid "Please contact us here"
427
- msgstr "Merci de nous contacter ici"
428
-
429
- #: includes/class-freemius.php:17193
430
- msgid "Your plan was successfully upgraded."
431
- msgstr "Votre formule a bien été mise à jour."
432
-
433
- #: includes/class-freemius.php:17211
434
- msgid "Your plan was successfully changed to %s."
435
- msgstr "Votre formule a bien été modifié vers %s. "
436
-
437
- #: includes/class-freemius.php:17227
438
- msgid "Your license has expired. You can still continue using the free %s forever."
439
- msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
440
-
441
- #: includes/class-freemius.php:17229
442
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
- msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
444
-
445
- #: includes/class-freemius.php:17237
446
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
- msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
448
-
449
- #: includes/class-freemius.php:17250
450
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
- msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance."
452
-
453
- #: includes/class-freemius.php:17273
454
- msgid "Your free trial has expired. You can still continue using all our free features."
455
- msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
456
-
457
- #: includes/class-freemius.php:17275
458
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
- msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
460
-
461
- #: includes/class-freemius.php:17380
462
- msgid "It looks like the license could not be activated."
463
- msgstr "Il semble que la licence ne puisse être activée."
464
-
465
- #: includes/class-freemius.php:17410
466
- msgid "Your license was successfully activated."
467
- msgstr "Votre licence a bien été activée."
468
-
469
- #: includes/class-freemius.php:17436
470
- msgid "It looks like your site currently doesn't have an active license."
471
- msgstr "Il semble que votre site n'ait pas de licence active."
472
-
473
- #: includes/class-freemius.php:17460
474
- msgid "It looks like the license deactivation failed."
475
- msgstr "Il semble que la désactivation de la licence a échoué."
476
-
477
- #: includes/class-freemius.php:17488
478
- msgid "Your license was successfully deactivated, you are back to the %s plan."
479
- msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
480
-
481
- #: includes/class-freemius.php:17489
482
- msgid "O.K"
483
- msgstr "O.K"
484
-
485
- #: includes/class-freemius.php:17542
486
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
- msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
488
-
489
- #: includes/class-freemius.php:17551
490
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
- msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
-
493
- #: includes/class-freemius.php:17593
494
- msgid "You are already running the %s in a trial mode."
495
- msgstr "Vous utilisez déjà le %s en période d'essai. "
496
-
497
- #: includes/class-freemius.php:17604
498
- msgid "You already utilized a trial before."
499
- msgstr "Vous avez déjà utilisé la période d'essai."
500
-
501
- #: includes/class-freemius.php:17618
502
- msgid "Plan %s do not exist, therefore, can't start a trial."
503
- msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
504
-
505
- #: includes/class-freemius.php:17629
506
- msgid "Plan %s does not support a trial period."
507
- msgstr "La formule %s ne propose pas de période d'essai."
508
-
509
- #: includes/class-freemius.php:17640
510
- msgid "None of the %s's plans supports a trial period."
511
- msgstr "Aucune formule du %s ne propose de période d'essai."
512
-
513
- #: includes/class-freemius.php:17690
514
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
- msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
516
-
517
- #: includes/class-freemius.php:17726
518
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
- msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
520
-
521
- #: includes/class-freemius.php:17745
522
- msgid "Your %s free trial was successfully cancelled."
523
- msgstr "Votre période d'essai %s a bien été annulé."
524
-
525
- #: includes/class-freemius.php:18052
526
- msgid "Version %s was released."
527
- msgstr "La version %s vient d'être publiée."
528
-
529
- #: includes/class-freemius.php:18052
530
- msgid "Please download %s."
531
- msgstr "Merci de télécharger %s."
532
-
533
- #: includes/class-freemius.php:18059
534
- msgid "the latest %s version here"
535
- msgstr "la dernière version de %s ici"
536
-
537
- #: includes/class-freemius.php:18064
538
- msgid "New"
539
- msgstr "Nouveau"
540
-
541
- #: includes/class-freemius.php:18069
542
- msgid "Seems like you got the latest release."
543
- msgstr "Il semble que vous ayez la dernière version."
544
-
545
- #: includes/class-freemius.php:18070
546
- msgid "You are all good!"
547
- msgstr "Vous êtes tout bon !"
548
-
549
- #: includes/class-freemius.php:18338
550
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
- msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams."
552
-
553
- #: includes/class-freemius.php:18473
554
- msgid "Site successfully opted in."
555
- msgstr "Site ajouté avec succès."
556
-
557
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
- msgid "Awesome"
559
- msgstr "Formidable"
560
-
561
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
- msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
564
-
565
- #: includes/class-freemius.php:18491
566
- msgid "Thank you!"
567
- msgstr "Merci !"
568
-
569
- #: includes/class-freemius.php:18498
570
- msgid "We will no longer be sending any usage data of %s on %s to %s."
571
- msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
572
-
573
- #: includes/class-freemius.php:18627
574
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
- msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
576
-
577
- #: includes/class-freemius.php:18633
578
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
- msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
580
-
581
- #: includes/class-freemius.php:18638
582
- msgid "%s is the new owner of the account."
583
- msgstr "%s est le nouveau propriétaire du compte."
584
-
585
- #: includes/class-freemius.php:18640
586
- msgctxt "as congratulations"
587
- msgid "Congrats"
588
- msgstr "Félicitations"
589
-
590
- #: includes/class-freemius.php:18660
591
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
- msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
593
-
594
- #: includes/class-freemius.php:18661
595
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
- msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
597
-
598
- #: includes/class-freemius.php:18668
599
- msgid "Change Ownership"
600
- msgstr "Changement De Propriétaire"
601
-
602
- #: includes/class-freemius.php:18676
603
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
- msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
605
-
606
- #: includes/class-freemius.php:18688
607
- msgid "Please provide your full name."
608
- msgstr "Merci d'indiquer vos prénom et nom."
609
-
610
- #: includes/class-freemius.php:18693
611
- msgid "Your name was successfully updated."
612
- msgstr "Votre nom a été mis à jour."
613
-
614
- #: includes/class-freemius.php:18754
615
- msgid "You have successfully updated your %s."
616
- msgstr "Votre %s a bien été mis à jour."
617
-
618
- #: includes/class-freemius.php:18894
619
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
- msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
621
-
622
- #: includes/class-freemius.php:18895
623
- msgctxt "advance notice of something that will need attention."
624
- msgid "Heads up"
625
- msgstr "Avertissement"
626
-
627
- #: includes/class-freemius.php:19325
628
- msgctxt "exclamation"
629
- msgid "Hey"
630
- msgstr "Hey"
631
-
632
- #: includes/class-freemius.php:19325
633
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
- msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
635
-
636
- #: includes/class-freemius.php:19333
637
- msgid "No commitment for %s days - cancel anytime!"
638
- msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
639
-
640
- #: includes/class-freemius.php:19334
641
- msgid "No credit card required"
642
- msgstr "Pas besoin de carte bancaire"
643
-
644
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
- msgctxt "call to action"
646
- msgid "Start free trial"
647
- msgstr "Commencer l'essai gratuit"
648
-
649
- #: includes/class-freemius.php:19418
650
- msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
- msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !"
652
-
653
- #: includes/class-freemius.php:19427
654
- msgid "Learn more"
655
- msgstr "En savoir plus"
656
-
657
- #: includes/class-freemius.php19577, templates/account.php406,
658
- #: templates/account.php509, templates/connect.php171,
659
- #: templates/connect.php421, templates/forms/license-activation.php24,
660
- #: templates/account/partials/addon.php:235
661
- msgid "Activate License"
662
- msgstr "Activer la licence"
663
-
664
- #: includes/class-freemius.php19578, templates/account.php469,
665
- #: templates/account.php508, templates/account/partials/site.php:256
666
- msgid "Change License"
667
- msgstr "Changer la licence"
668
-
669
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
- msgid "Opt Out"
671
- msgstr "Désinscription"
672
-
673
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
- #: templates/account/partials/site.php43,
675
- #: templates/account/partials/site.php:161
676
- msgid "Opt In"
677
- msgstr "Inscription"
678
-
679
- #: includes/class-freemius.php:19891
680
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
-
683
- #: includes/class-freemius.php:19899
684
- msgid "Activate %s features"
685
- msgstr "Activate %s features"
686
-
687
- #: includes/class-freemius.php:19912
688
- msgid "Please follow these steps to complete the upgrade"
689
- msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
690
-
691
- #: includes/class-freemius.php:19916
692
- msgid "Download the latest %s version"
693
- msgstr "Télécharger la dernière version %s"
694
-
695
- #: includes/class-freemius.php:19920
696
- msgid "Upload and activate the downloaded version"
697
- msgstr "Téléverser et activer la version téléchargée"
698
-
699
- #: includes/class-freemius.php:19922
700
- msgid "How to upload and activate?"
701
- msgstr "Comment téléverser et activer ?"
702
-
703
- #: includes/class-freemius.php:20056
704
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
- msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
706
-
707
- #: includes/class-freemius.php:20217
708
- msgid "Auto installation only works for opted-in users."
709
- msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
710
-
711
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
- #: includes/class-fs-plugin-updater.php1056,
713
- #: includes/class-fs-plugin-updater.php:1070
714
- msgid "Invalid module ID."
715
- msgstr "ID du module non valide."
716
-
717
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
- msgid "Premium version already active."
719
- msgstr "Version premium déjà active."
720
-
721
- #: includes/class-freemius.php:20243
722
- msgid "You do not have a valid license to access the premium version."
723
- msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
724
-
725
- #: includes/class-freemius.php:20250
726
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
- msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
728
-
729
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
- msgid "Premium add-on version already installed."
731
- msgstr "La version premium de l'add-on est déjà installée."
732
-
733
- #: includes/class-freemius.php:20613
734
- msgid "View paid features"
735
- msgstr "Voir les fonctionnalités payantes"
736
-
737
- #: includes/class-freemius.php:20927
738
- msgid "Thank you so much for using %s and its add-ons!"
739
- msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
740
-
741
- #: includes/class-freemius.php:20928
742
- msgid "Thank you so much for using %s!"
743
- msgstr "Merci beaucoup d'utiliser %s !"
744
-
745
- #: includes/class-freemius.php:20934
746
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
- msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
748
-
749
- #: includes/class-freemius.php:20938
750
- msgid "Thank you so much for using our products!"
751
- msgstr "Merci beaucoup d'utiliser nos produits !"
752
-
753
- #: includes/class-freemius.php:20939
754
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
- msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
756
-
757
- #: includes/class-freemius.php:20958
758
- msgid "%s and its add-ons"
759
- msgstr "%s et ses add-ons"
760
-
761
- #: includes/class-freemius.php:20967
762
- msgid "Products"
763
- msgstr "Produits"
764
-
765
- #: includes/class-freemius.php20974, templates/connect.php:272
766
- msgid "Yes"
767
- msgstr "Oui"
768
-
769
- #: includes/class-freemius.php20975, templates/connect.php:273
770
- msgid "send me security & feature updates, educational content and offers."
771
- msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
772
-
773
- #: includes/class-freemius.php20976, templates/connect.php:278
774
- msgid "No"
775
- msgstr "Non"
776
-
777
- #: includes/class-freemius.php20978, templates/connect.php:280
778
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
- msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
780
-
781
- #: includes/class-freemius.php:20988
782
- msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
- msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
784
-
785
- #: includes/class-freemius.php20990, templates/connect.php:287
786
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
- msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :"
788
-
789
- #: includes/class-freemius.php:21272
790
- msgid "License key is empty."
791
- msgstr "La clé de licence est vide."
792
-
793
- #: includes/class-fs-plugin-updater.php184,
794
- #: templates/forms/premium-versions-upgrade-handler.php:57
795
- msgid "Renew license"
796
- msgstr "Renouvelez votre licence"
797
-
798
- #: includes/class-fs-plugin-updater.php189,
799
- #: templates/forms/premium-versions-upgrade-handler.php:58
800
- msgid "Buy license"
801
- msgstr "Buy license"
802
-
803
- #: includes/class-fs-plugin-updater.php:278
804
- msgid "There is a %s of %s available."
805
- msgstr "There is a %s of %s available."
806
-
807
- #: includes/class-fs-plugin-updater.php:282
808
- msgid "new version"
809
- msgstr "new version"
810
-
811
- #: includes/class-fs-plugin-updater.php:301
812
- msgid "Important Upgrade Notice:"
813
- msgstr "Important Upgrade Notice:"
814
-
815
- #: includes/class-fs-plugin-updater.php:1121
816
- msgid "Installing plugin: %s"
817
- msgstr "Installation du plugin : %s"
818
-
819
- #: includes/class-fs-plugin-updater.php:1162
820
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
- msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
822
-
823
- #: includes/class-fs-plugin-updater.php:1335
824
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
- msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer."
826
-
827
- #: includes/fs-plugin-info-dialog.php369,
828
- #: templates/account/partials/addon.php:292
829
- msgctxt "verb"
830
- msgid "Purchase"
831
- msgstr "Acheter"
832
-
833
- #: includes/fs-plugin-info-dialog.php:372
834
- msgid "Start my free %s"
835
- msgstr "Commencer ma %s gratuite"
836
-
837
- #: includes/fs-plugin-info-dialog.php:413
838
- msgid "Install Free Version Now"
839
- msgstr "Installer la version gratuite maintenant"
840
-
841
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
- #: templates/account/partials/addon.php272,
843
- #: templates/account/partials/addon.php:322
844
- msgid "Install Now"
845
- msgstr "Installer maintenant"
846
-
847
- #: includes/fs-plugin-info-dialog.php:425
848
- msgctxt "as download latest version"
849
- msgid "Download Latest Free Version"
850
- msgstr "Télécharger la dernière version gratuite"
851
-
852
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
- #: templates/account/partials/addon.php:21
854
- msgctxt "as download latest version"
855
- msgid "Download Latest"
856
- msgstr "Télécharger la dernière version"
857
-
858
- #: includes/fs-plugin-info-dialog.php:436
859
- msgid "Install Free Version Update Now"
860
- msgstr "Installer la dernière mise à jour gratuite maintenant"
861
-
862
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
- msgid "Install Update Now"
864
- msgstr "Installer la mise à jour maintenant"
865
-
866
- #: includes/fs-plugin-info-dialog.php:448
867
- msgid "Newer Free Version (%s) Installed"
868
- msgstr "La nouvelle version gratuite ( %s ) a été installé"
869
-
870
- #: includes/fs-plugin-info-dialog.php:449
871
- msgid "Newer Version (%s) Installed"
872
- msgstr "Nouvelle Version (%s) Installée"
873
-
874
- #: includes/fs-plugin-info-dialog.php:457
875
- msgid "Latest Free Version Installed"
876
- msgstr "La dernière version gratuite a été installé"
877
-
878
- #: includes/fs-plugin-info-dialog.php:458
879
- msgid "Latest Version Installed"
880
- msgstr "Dernière Version Installée"
881
-
882
- #: includes/fs-plugin-info-dialog.php:613
883
- msgctxt "Plugin installer section title"
884
- msgid "Description"
885
- msgstr "Description"
886
-
887
- #: includes/fs-plugin-info-dialog.php:614
888
- msgctxt "Plugin installer section title"
889
- msgid "Installation"
890
- msgstr "Installation"
891
-
892
- #: includes/fs-plugin-info-dialog.php:615
893
- msgctxt "Plugin installer section title"
894
- msgid "FAQ"
895
- msgstr "FAQ"
896
-
897
- #: includes/fs-plugin-info-dialog.php616,
898
- #: templates/plugin-info/description.php:55
899
- msgid "Screenshots"
900
- msgstr "Captures d'écran"
901
-
902
- #: includes/fs-plugin-info-dialog.php:617
903
- msgctxt "Plugin installer section title"
904
- msgid "Changelog"
905
- msgstr "Changelog"
906
-
907
- #: includes/fs-plugin-info-dialog.php:618
908
- msgctxt "Plugin installer section title"
909
- msgid "Reviews"
910
- msgstr "Commentaires"
911
-
912
- #: includes/fs-plugin-info-dialog.php:619
913
- msgctxt "Plugin installer section title"
914
- msgid "Other Notes"
915
- msgstr "Autres Informations"
916
-
917
- #: includes/fs-plugin-info-dialog.php:634
918
- msgctxt "Plugin installer section title"
919
- msgid "Features & Pricing"
920
- msgstr "Fonctionnalités & Tarifs"
921
-
922
- #: includes/fs-plugin-info-dialog.php:644
923
- msgid "Plugin Install"
924
- msgstr "Installation du Plugin"
925
-
926
- #: includes/fs-plugin-info-dialog.php:716
927
- msgctxt "e.g. Professional Plan"
928
- msgid "%s Plan"
929
- msgstr "Formule %s"
930
-
931
- #: includes/fs-plugin-info-dialog.php:742
932
- msgctxt "e.g. the best product"
933
- msgid "Best"
934
- msgstr "Best"
935
-
936
- #: includes/fs-plugin-info-dialog.php748,
937
- #: includes/fs-plugin-info-dialog.php:768
938
- msgctxt "as every month"
939
- msgid "Monthly"
940
- msgstr "Mensuel"
941
-
942
- #: includes/fs-plugin-info-dialog.php:751
943
- msgctxt "as once a year"
944
- msgid "Annual"
945
- msgstr "Annuel"
946
-
947
- #: includes/fs-plugin-info-dialog.php:754
948
- msgid "Lifetime"
949
- msgstr "À vie"
950
-
951
- #: includes/fs-plugin-info-dialog.php768,
952
- #: includes/fs-plugin-info-dialog.php770,
953
- #: includes/fs-plugin-info-dialog.php:772
954
- msgctxt "e.g. billed monthly"
955
- msgid "Billed %s"
956
- msgstr "%s Facturé"
957
-
958
- #: includes/fs-plugin-info-dialog.php:770
959
- msgctxt "as once a year"
960
- msgid "Annually"
961
- msgstr "Annuel"
962
-
963
- #: includes/fs-plugin-info-dialog.php:772
964
- msgctxt "as once a year"
965
- msgid "Once"
966
- msgstr "Une fois"
967
-
968
- #: includes/fs-plugin-info-dialog.php:778
969
- msgid "Single Site License"
970
- msgstr "Licence 1 site"
971
-
972
- #: includes/fs-plugin-info-dialog.php:780
973
- msgid "Unlimited Licenses"
974
- msgstr "Licences sites illimités"
975
-
976
- #: includes/fs-plugin-info-dialog.php:782
977
- msgid "Up to %s Sites"
978
- msgstr "Jusqu'à %s Sites"
979
-
980
- #: includes/fs-plugin-info-dialog.php792,
981
- #: templates/plugin-info/features.php:82
982
- msgctxt "as monthly period"
983
- msgid "mo"
984
- msgstr "mois"
985
-
986
- #: includes/fs-plugin-info-dialog.php799,
987
- #: templates/plugin-info/features.php:80
988
- msgctxt "as annual period"
989
- msgid "year"
990
- msgstr "année"
991
-
992
- #: includes/fs-plugin-info-dialog.php:853
993
- msgctxt "noun"
994
- msgid "Price"
995
- msgstr "Tarif"
996
-
997
- #: includes/fs-plugin-info-dialog.php:901
998
- msgid "Save %s"
999
- msgstr "Économisez %s"
1000
-
1001
- #: includes/fs-plugin-info-dialog.php:911
1002
- msgid "No commitment for %s - cancel anytime"
1003
- msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1004
-
1005
- #: includes/fs-plugin-info-dialog.php:914
1006
- msgid "After your free %s, pay as little as %s"
1007
- msgstr "Après vos %s gratuits, payez seulement %s"
1008
-
1009
- #: includes/fs-plugin-info-dialog.php:925
1010
- msgid "Details"
1011
- msgstr "Détails"
1012
-
1013
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
- #: templates/account/partials/addon.php:32
1016
- msgctxt "product version"
1017
- msgid "Version"
1018
- msgstr "Version"
1019
-
1020
- #: includes/fs-plugin-info-dialog.php:936
1021
- msgctxt "as the plugin author"
1022
- msgid "Author"
1023
- msgstr "Auteur"
1024
-
1025
- #: includes/fs-plugin-info-dialog.php:943
1026
- msgid "Last Updated"
1027
- msgstr "Dernière mise à jour"
1028
-
1029
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
- msgctxt "x-ago"
1031
- msgid "%s ago"
1032
- msgstr "Il y a %s"
1033
-
1034
- #: includes/fs-plugin-info-dialog.php:957
1035
- msgid "Requires WordPress Version"
1036
- msgstr "Version de WordPress requise"
1037
-
1038
- #: includes/fs-plugin-info-dialog.php:958
1039
- msgid "%s or higher"
1040
- msgstr "%s ou plus"
1041
-
1042
- #: includes/fs-plugin-info-dialog.php:965
1043
- msgid "Compatible up to"
1044
- msgstr "Compatible jusqu'à"
1045
-
1046
- #: includes/fs-plugin-info-dialog.php:973
1047
- msgid "Downloaded"
1048
- msgstr "Téléchargé"
1049
-
1050
- #: includes/fs-plugin-info-dialog.php:977
1051
- msgid "%s time"
1052
- msgstr "%s fois"
1053
-
1054
- #: includes/fs-plugin-info-dialog.php:979
1055
- msgid "%s times"
1056
- msgstr "%s fois"
1057
-
1058
- #: includes/fs-plugin-info-dialog.php:989
1059
- msgid "WordPress.org Plugin Page"
1060
- msgstr "Page WordPress.org du plugin"
1061
-
1062
- #: includes/fs-plugin-info-dialog.php:997
1063
- msgid "Plugin Homepage"
1064
- msgstr "Site Web du plugin"
1065
-
1066
- #: includes/fs-plugin-info-dialog.php1005,
1067
- #: includes/fs-plugin-info-dialog.php:1087
1068
- msgid "Donate to this plugin"
1069
- msgstr "Faire une donation pour ce plugin"
1070
-
1071
- #: includes/fs-plugin-info-dialog.php:1012
1072
- msgid "Average Rating"
1073
- msgstr "Note moyenne"
1074
-
1075
- #: includes/fs-plugin-info-dialog.php:1019
1076
- msgid "based on %s"
1077
- msgstr "Basé sur %s"
1078
-
1079
- #: includes/fs-plugin-info-dialog.php:1023
1080
- msgid "%s rating"
1081
- msgstr "%s notation"
1082
-
1083
- #: includes/fs-plugin-info-dialog.php:1025
1084
- msgid "%s ratings"
1085
- msgstr "%snotations "
1086
-
1087
- #: includes/fs-plugin-info-dialog.php:1040
1088
- msgid "%s star"
1089
- msgstr "%s étoile"
1090
-
1091
- #: includes/fs-plugin-info-dialog.php:1042
1092
- msgid "%s stars"
1093
- msgstr "%s étoiles"
1094
-
1095
- #: includes/fs-plugin-info-dialog.php:1053
1096
- msgid "Click to see reviews that provided a rating of %s"
1097
- msgstr "Cliquez pour voir les avis avec une notation de %s"
1098
-
1099
- #: includes/fs-plugin-info-dialog.php:1066
1100
- msgid "Contributors"
1101
- msgstr "Contributeurs"
1102
-
1103
- #: includes/fs-plugin-info-dialog.php1095,
1104
- #: includes/fs-plugin-info-dialog.php:1097
1105
- msgid "Warning"
1106
- msgstr "Attention"
1107
-
1108
- #: includes/fs-plugin-info-dialog.php:1095
1109
- msgid "This plugin has not been tested with your current version of WordPress."
1110
- msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1111
-
1112
- #: includes/fs-plugin-info-dialog.php:1097
1113
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
- msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1115
-
1116
- #: includes/fs-plugin-info-dialog.php:1116
1117
- msgid "Paid add-on must be deployed to Freemius."
1118
- msgstr "Les add-ons payant doivent être déposés sur Freemius"
1119
-
1120
- #: includes/fs-plugin-info-dialog.php:1117
1121
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
- msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1123
-
1124
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
- #: templates/account/partials/addon.php22,
1126
- #: templates/account/partials/site.php:295
1127
- msgid "Downgrading your plan"
1128
- msgstr "Downgrading your plan"
1129
-
1130
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
- #: templates/account/partials/addon.php23,
1132
- #: templates/account/partials/site.php:296
1133
- msgid "Cancelling the subscription"
1134
- msgstr "Cancelling the subscription"
1135
-
1136
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
- #. subscription'
1138
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
- #: templates/account/partials/addon.php25,
1140
- #: templates/account/partials/site.php:298
1141
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
-
1144
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
- #: templates/account/partials/addon.php26,
1146
- #: templates/account/partials/site.php:299
1147
- msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
- msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
-
1150
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
- #: templates/account/partials/addon.php:27
1152
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
- msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1154
-
1155
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
- #: templates/account/partials/addon.php28,
1157
- #: templates/account/partials/site.php:300
1158
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
-
1161
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
- #: templates/account/partials/addon.php29,
1163
- #: templates/account/partials/site.php:301
1164
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
- msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s."
1166
-
1167
- #. translators: %s: Plan title (e.g. "Professional")
1168
- #: templates/account.php90,
1169
- #: templates/account/partials/activate-license-button.php31,
1170
- #: templates/account/partials/addon.php:31
1171
- msgid "Activate %s Plan"
1172
- msgstr "Activer la formule %s"
1173
-
1174
- #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
- #: templates/account.php93, templates/account/partials/addon.php34,
1176
- #: templates/account/partials/site.php:275
1177
- msgid "Auto renews in %s"
1178
- msgstr "Renouvellements automatique dans %s"
1179
-
1180
- #. translators: %s: Time period (e.g. Expires in "2 months")
1181
- #: templates/account.php95, templates/account/partials/addon.php36,
1182
- #: templates/account/partials/site.php:277
1183
- msgid "Expires in %s"
1184
- msgstr "Expire dans %s"
1185
-
1186
- #: templates/account.php96, templates/account/partials/addon.php:37
1187
- msgctxt "as synchronize license"
1188
- msgid "Sync License"
1189
- msgstr "Synchroniser la licence"
1190
-
1191
- #: templates/account.php97, templates/account/partials/addon.php:38
1192
- msgid "Cancel Trial"
1193
- msgstr "Annuler la période d'essai"
1194
-
1195
- #: templates/account.php98, templates/account/partials/addon.php:39
1196
- msgid "Change Plan"
1197
- msgstr "Changer de formule"
1198
-
1199
- #: templates/account.php99, templates/account/partials/addon.php:40
1200
- msgctxt "verb"
1201
- msgid "Upgrade"
1202
- msgstr "Mise à jour"
1203
-
1204
- #: templates/account.php101, templates/account/partials/addon.php42,
1205
- #: templates/account/partials/site.php:302
1206
- msgctxt "verb"
1207
- msgid "Downgrade"
1208
- msgstr "Rétrograder"
1209
-
1210
- #: templates/account.php103, templates/add-ons.php130,
1211
- #: templates/plugin-info/features.php72,
1212
- #: templates/account/partials/addon.php44,
1213
- #: templates/account/partials/site.php:31
1214
- msgid "Free"
1215
- msgstr "Gratuit"
1216
-
1217
- #: templates/account.php104, templates/account/partials/addon.php:45
1218
- msgid "Activate"
1219
- msgstr "Activer"
1220
-
1221
- #: templates/account.php105, templates/debug.php371,
1222
- #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
- #: templates/account/partials/addon.php:46
1224
- msgctxt "as product pricing plan"
1225
- msgid "Plan"
1226
- msgstr "Formule"
1227
-
1228
- #: templates/account.php:158
1229
- msgid "Free Trial"
1230
- msgstr "Essai gratuit"
1231
-
1232
- #: templates/account.php:169
1233
- msgid "Account Details"
1234
- msgstr "Détails du compte"
1235
-
1236
- #: templates/account.php:179
1237
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1238
- msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? "
1239
-
1240
- #: templates/account.php:181
1241
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1242
- msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?"
1243
-
1244
- #: templates/account.php:184
1245
- msgid "Delete Account"
1246
- msgstr "Supprimer le compte"
1247
-
1248
- #: templates/account.php196, templates/account/partials/addon.php159,
1249
- #: templates/account/partials/deactivate-license-button.php:35
1250
- msgid "Deactivate License"
1251
- msgstr "Désactiver la licence"
1252
-
1253
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
- msgid "Are you sure you want to proceed?"
1255
- msgstr "Êtes-vous de vouloir continuer ?"
1256
-
1257
- #: templates/account.php219, templates/account/partials/addon.php:182
1258
- msgid "Cancel Subscription"
1259
- msgstr "Annuler l'abonnement"
1260
-
1261
- #: templates/account.php:247
1262
- msgctxt "as synchronize"
1263
- msgid "Sync"
1264
- msgstr "Synchroniser"
1265
-
1266
- #: templates/account.php261, templates/debug.php:487
1267
- msgid "Name"
1268
- msgstr "Nom"
1269
-
1270
- #: templates/account.php267, templates/debug.php:488
1271
- msgid "Email"
1272
- msgstr "Email"
1273
-
1274
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
- msgid "User ID"
1276
- msgstr "User ID"
1277
-
1278
- #: templates/account.php:282
1279
- msgid "Site ID"
1280
- msgstr "Site ID"
1281
-
1282
- #: templates/account.php:285
1283
- msgid "No ID"
1284
- msgstr "ID manquant"
1285
-
1286
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
- #: templates/debug.php453, templates/debug.php490,
1288
- #: templates/account/partials/site.php:219
1289
- msgid "Public Key"
1290
- msgstr "Clef publique"
1291
-
1292
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
- #: templates/debug.php491, templates/account/partials/site.php:231
1294
- msgid "Secret Key"
1295
- msgstr "Clef secrête"
1296
-
1297
- #: templates/account.php:299
1298
- msgctxt "as secret encryption key missing"
1299
- msgid "No Secret"
1300
- msgstr "Clef secrète manquante"
1301
-
1302
- #: templates/account.php318, templates/account/partials/site.php112,
1303
- #: templates/account/partials/site.php:114
1304
- msgid "Trial"
1305
- msgstr "Période d'essai"
1306
-
1307
- #: templates/account.php337, templates/debug.php531,
1308
- #: templates/account/partials/site.php:248
1309
- msgid "License Key"
1310
- msgstr "Clef de licence"
1311
-
1312
- #: templates/account.php:367
1313
- msgid "not verified"
1314
- msgstr "Non vérifié"
1315
-
1316
- #: templates/account.php376, templates/account/partials/addon.php:120
1317
- msgid "Expired"
1318
- msgstr "Expiré"
1319
-
1320
- #: templates/account.php:428
1321
- msgid "Premium version"
1322
- msgstr "Version premium"
1323
-
1324
- #: templates/account.php:430
1325
- msgid "Free version"
1326
- msgstr "Version gratuite"
1327
-
1328
- #: templates/account.php:442
1329
- msgid "Verify Email"
1330
- msgstr "Vérifier l'email"
1331
-
1332
- #: templates/account.php:453
1333
- msgid "Download %s Version"
1334
- msgstr "Télécharger la version %s"
1335
-
1336
- #: templates/account.php467, templates/account.php649,
1337
- #: templates/account/partials/site.php237,
1338
- #: templates/account/partials/site.php:255
1339
- msgctxt "verb"
1340
- msgid "Show"
1341
- msgstr "Afficher"
1342
-
1343
- #: templates/account.php:481
1344
- msgid "What is your %s?"
1345
- msgstr "Quel est votre %s ?"
1346
-
1347
- #: templates/account.php489, templates/account/billing.php:27
1348
- msgctxt "verb"
1349
- msgid "Edit"
1350
- msgstr "Éditer"
1351
-
1352
- #: templates/account.php:502
1353
- msgid "Sites"
1354
- msgstr "Sites"
1355
-
1356
- #: templates/account.php:513
1357
- msgid "Search by address"
1358
- msgstr "Recherche par adresse"
1359
-
1360
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
- #: templates/debug.php524, templates/debug.php597,
1363
- #: templates/account/payments.php35, templates/debug/logger.php:21
1364
- msgid "ID"
1365
- msgstr "ID"
1366
-
1367
- #: templates/account.php523, templates/debug.php:367
1368
- msgid "Address"
1369
- msgstr "Adresse"
1370
-
1371
- #: templates/account.php:524
1372
- msgid "License"
1373
- msgstr "Licence"
1374
-
1375
- #: templates/account.php:525
1376
- msgid "Plan"
1377
- msgstr "Formule"
1378
-
1379
- #: templates/account.php:573
1380
- msgctxt "as software license"
1381
- msgid "License"
1382
- msgstr "Licence"
1383
-
1384
- #: templates/account.php:643
1385
- msgctxt "verb"
1386
- msgid "Hide"
1387
- msgstr "Cacher"
1388
-
1389
- #: templates/account.php:686
1390
- msgid "Cancelling %s"
1391
- msgstr "Cancelling %s"
1392
-
1393
- #: templates/account.php686, templates/account.php703,
1394
- #: templates/forms/subscription-cancellation.php27,
1395
- #: templates/forms/deactivation/form.php:117
1396
- msgid "trial"
1397
- msgstr "trial"
1398
-
1399
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
- msgid "Cancelling %s..."
1401
- msgstr "Cancelling %s..."
1402
-
1403
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
- #: templates/forms/deactivation/form.php:118
1405
- msgid "subscription"
1406
- msgstr "subscription"
1407
-
1408
- #: templates/account.php:718
1409
- msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1410
- msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?"
1411
-
1412
- #: templates/add-ons.php:36
1413
- msgid "Add Ons for %s"
1414
- msgstr "Add Ons pour %s"
1415
-
1416
- #: templates/add-ons.php:44
1417
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
- msgstr "Nous n'avons pas pu charger la liste des add-ons. C'est probablement une difficulté de notre côté, merci de d'essayer à nouveau dans quelques minutes."
1419
-
1420
- #: templates/add-ons.php:139
1421
- msgid "View details"
1422
- msgstr "Voir les détails"
1423
-
1424
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
- #: templates/forms/resend-key.php:77
1426
- msgctxt "as close a window"
1427
- msgid "Dismiss"
1428
- msgstr "Fermer"
1429
-
1430
- #: templates/auto-installation.php:45
1431
- msgid "%s sec"
1432
- msgstr "%s sec"
1433
-
1434
- #: templates/auto-installation.php:83
1435
- msgid "Automatic Installation"
1436
- msgstr "Installation automatique"
1437
-
1438
- #: templates/auto-installation.php:93
1439
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1440
- msgstr "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."
1441
-
1442
- #: templates/auto-installation.php:104
1443
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1444
- msgstr "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."
1445
-
1446
- #: templates/auto-installation.php:109
1447
- msgid "Cancel Installation"
1448
- msgstr "Annuler l'installation"
1449
-
1450
- #: templates/checkout.php:172
1451
- msgid "Checkout"
1452
- msgstr "Paiement"
1453
-
1454
- #: templates/checkout.php:172
1455
- msgid "PCI compliant"
1456
- msgstr "Compatible PCI"
1457
-
1458
- #. translators: %s: name (e.g. Hey John,)
1459
- #: templates/connect.php:112
1460
- msgctxt "greeting"
1461
- msgid "Hey %s,"
1462
- msgstr "Hey %s,"
1463
-
1464
- #: templates/connect.php:154
1465
- msgid "Allow & Continue"
1466
- msgstr "Autoriser & Continuer"
1467
-
1468
- #: templates/connect.php:158
1469
- msgid "Re-send activation email"
1470
- msgstr "Renvoyer l'email d'activation"
1471
-
1472
- #: templates/connect.php:162
1473
- msgid "Thanks %s!"
1474
- msgstr "Merci %s !"
1475
-
1476
- #: templates/connect.php172, templates/forms/license-activation.php:43
1477
- msgid "Agree & Activate License"
1478
- msgstr "Valider & Activer la licence"
1479
-
1480
- #: templates/connect.php:181
1481
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1482
- msgstr "Merci d'avoir acheté %s ! Pour commencer, veuillez indiquer votre clef de licence :"
1483
-
1484
- #: templates/connect.php:188
1485
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1486
- msgstr "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."
1487
-
1488
- #: templates/connect.php:189
1489
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1490
- msgstr "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."
1491
-
1492
- #: templates/connect.php:195
1493
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1494
- msgstr "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."
1495
-
1496
- #: templates/connect.php:196
1497
- msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1498
- msgstr "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."
1499
-
1500
- #: templates/connect.php:230
1501
- msgid "We're excited to introduce the Freemius network-level integration."
1502
- msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau."
1503
-
1504
- #: templates/connect.php:233
1505
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1506
- msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence."
1507
-
1508
- #: templates/connect.php:235
1509
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1510
- msgstr "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."
1511
-
1512
- #: templates/connect.php:237
1513
- msgid "%s's paid features"
1514
- msgstr "Fonctionnalités payantes de %s"
1515
-
1516
- #: templates/connect.php:242
1517
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1518
- msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s."
1519
-
1520
- #: templates/connect.php:244
1521
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
- msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1523
-
1524
- #: templates/connect.php253, templates/forms/license-activation.php:46
1525
- msgid "License key"
1526
- msgstr "Clef de licence"
1527
-
1528
- #: templates/connect.php256, templates/forms/license-activation.php:19
1529
- msgid "Can't find your license key?"
1530
- msgstr "Vous ne trouvez pas votre clef de licence ?"
1531
-
1532
- #: templates/connect.php315, templates/connect.php630,
1533
- #: templates/forms/deactivation/retry-skip.php:20
1534
- msgctxt "verb"
1535
- msgid "Skip"
1536
- msgstr "Passer"
1537
-
1538
- #: templates/connect.php:318
1539
- msgid "Delegate to Site Admins"
1540
- msgstr "Déléguer aux administrateurs du site"
1541
-
1542
- #: templates/connect.php:318
1543
- msgid "If you click it, this decision will be delegated to the sites administrators."
1544
- msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites."
1545
-
1546
- #: templates/connect.php:346
1547
- msgid "Your Profile Overview"
1548
- msgstr "Résumé de votre profil"
1549
-
1550
- #: templates/connect.php:347
1551
- msgid "Name and email address"
1552
- msgstr "Nom et adresse email"
1553
-
1554
- #: templates/connect.php:352
1555
- msgid "Your Site Overview"
1556
- msgstr "Résumé de votre site"
1557
-
1558
- #: templates/connect.php:353
1559
- msgid "Site URL, WP version, PHP info, plugins & themes"
1560
- msgstr "Site URL, WP version, PHP info, plugins & themes"
1561
-
1562
- #: templates/connect.php:358
1563
- msgid "Admin Notices"
1564
- msgstr "Notifications Administrateur"
1565
-
1566
- #: templates/connect.php359, templates/connect.php:375
1567
- msgid "Updates, announcements, marketing, no spam"
1568
- msgstr "Mises à jour, annonces, marketing, pas de spam"
1569
-
1570
- #: templates/connect.php:364
1571
- msgid "Current %s Events"
1572
- msgstr "Évènements du %s actuel"
1573
-
1574
- #: templates/connect.php:365
1575
- msgid "Activation, deactivation and uninstall"
1576
- msgstr "Activation, désactivation et désintallation"
1577
-
1578
- #: templates/connect.php:374
1579
- msgid "Newsletter"
1580
- msgstr "Newsletter"
1581
-
1582
- #: templates/connect.php391, templates/forms/license-activation.php:38
1583
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1584
- msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence."
1585
-
1586
- #: templates/connect.php:396
1587
- msgid "What permissions are being granted?"
1588
- msgstr "Quelles autorisations sont accordées ?"
1589
-
1590
- #: templates/connect.php:417
1591
- msgid "Don't have a license key?"
1592
- msgstr "Vous n'avez pas de clef de licence ?"
1593
-
1594
- #: templates/connect.php:418
1595
- msgid "Activate Free Version"
1596
- msgstr "Activez la version gratuite"
1597
-
1598
- #: templates/connect.php:420
1599
- msgid "Have a license key?"
1600
- msgstr "Vous avez une clef de licence ?"
1601
-
1602
- #: templates/connect.php:428
1603
- msgid "Privacy Policy"
1604
- msgstr "Politique de confidentialité"
1605
-
1606
- #: templates/connect.php:430
1607
- msgid "License Agreement"
1608
- msgstr "License Agreement"
1609
-
1610
- #: templates/connect.php:430
1611
- msgid "Terms of Service"
1612
- msgstr "Conditions générales de service"
1613
-
1614
- #: templates/connect.php:766
1615
- msgctxt "as in the process of sending an email"
1616
- msgid "Sending email"
1617
- msgstr "Email en cours d'envoi"
1618
-
1619
- #: templates/connect.php:767
1620
- msgctxt "as activating plugin"
1621
- msgid "Activating"
1622
- msgstr "Activation en cours"
1623
-
1624
- #: templates/contact.php:78
1625
- msgid "Contact"
1626
- msgstr "Contact"
1627
-
1628
- #: templates/debug.php:17
1629
- msgctxt "as turned off"
1630
- msgid "Off"
1631
- msgstr "Off"
1632
-
1633
- #: templates/debug.php:18
1634
- msgctxt "as turned on"
1635
- msgid "On"
1636
- msgstr "On"
1637
-
1638
- #: templates/debug.php:20
1639
- msgid "SDK"
1640
- msgstr "SDK"
1641
-
1642
- #: templates/debug.php:24
1643
- msgctxt "as code debugging"
1644
- msgid "Debugging"
1645
- msgstr "Debuggage"
1646
-
1647
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
- #: templates/debug.php:492
1649
- msgid "Actions"
1650
- msgstr "Actions"
1651
-
1652
- #: templates/debug.php:64
1653
- msgid "Are you sure you want to delete all Freemius data?"
1654
- msgstr "Êtes-vous sûr de vouloir supprimer toutes les données de Freemius ?"
1655
-
1656
- #: templates/debug.php:64
1657
- msgid "Delete All Accounts"
1658
- msgstr "Supprimer tous les comptes"
1659
-
1660
- #: templates/debug.php:71
1661
- msgid "Clear API Cache"
1662
- msgstr "Vider le cache API"
1663
-
1664
- #: templates/debug.php:79
1665
- msgid "Clear Updates Transients"
1666
- msgstr "Vider les transients de mise à jour"
1667
-
1668
- #: templates/debug.php:86
1669
- msgid "Sync Data From Server"
1670
- msgstr "Synchronisation des données depuis le serveur"
1671
-
1672
- #: templates/debug.php:95
1673
- msgid "Migrate Options to Network"
1674
- msgstr "Migrate Options to Network"
1675
-
1676
- #: templates/debug.php:100
1677
- msgid "Load DB Option"
1678
- msgstr "Chargement des options de la base de données"
1679
-
1680
- #: templates/debug.php:103
1681
- msgid "Set DB Option"
1682
- msgstr "Mise en place des options de la base de données"
1683
-
1684
- #: templates/debug.php:180
1685
- msgid "Key"
1686
- msgstr "Clef"
1687
-
1688
- #: templates/debug.php:181
1689
- msgid "Value"
1690
- msgstr "Valeur"
1691
-
1692
- #: templates/debug.php:197
1693
- msgctxt "as software development kit versions"
1694
- msgid "SDK Versions"
1695
- msgstr "Versions du SDK"
1696
-
1697
- #: templates/debug.php:202
1698
- msgid "SDK Path"
1699
- msgstr "Chemin d'accès du SDK"
1700
-
1701
- #: templates/debug.php203, templates/debug.php:242
1702
- msgid "Module Path"
1703
- msgstr "Chemin d'accès du module"
1704
-
1705
- #: templates/debug.php:204
1706
- msgid "Is Active"
1707
- msgstr "Est actif"
1708
-
1709
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
- msgid "Plugins"
1711
- msgstr "Plugins"
1712
-
1713
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
- msgid "Themes"
1715
- msgstr "Thèmes"
1716
-
1717
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
- #: templates/debug/scheduled-crons.php:80
1719
- msgid "Slug"
1720
- msgstr "Slug"
1721
-
1722
- #: templates/debug.php239, templates/debug.php:450
1723
- msgid "Title"
1724
- msgstr "Titre"
1725
-
1726
- #: templates/debug.php:240
1727
- msgctxt "as application program interface"
1728
- msgid "API"
1729
- msgstr "API"
1730
-
1731
- #: templates/debug.php:241
1732
- msgid "Freemius State"
1733
- msgstr "État de Freemius"
1734
-
1735
- #: templates/debug.php:245
1736
- msgid "Network Blog"
1737
- msgstr "Réseau de Blog"
1738
-
1739
- #: templates/debug.php:246
1740
- msgid "Network User"
1741
- msgstr "Réseau d'Utilisateur"
1742
-
1743
- #: templates/debug.php:283
1744
- msgctxt "as connection was successful"
1745
- msgid "Connected"
1746
- msgstr "Connecté"
1747
-
1748
- #: templates/debug.php:284
1749
- msgctxt "as connection blocked"
1750
- msgid "Blocked"
1751
- msgstr "Bloqué"
1752
-
1753
- #: templates/debug.php:320
1754
- msgid "Simulate Trial Promotion"
1755
- msgstr "Simulate Trial Promotion"
1756
-
1757
- #: templates/debug.php:332
1758
- msgid "Simulate Network Upgrade"
1759
- msgstr "Simuler la mise à jour du réseau"
1760
-
1761
- #: templates/debug.php:358
1762
- msgid "%s Installs"
1763
- msgstr "%s Installations"
1764
-
1765
- #: templates/debug.php:360
1766
- msgctxt "like websites"
1767
- msgid "Sites"
1768
- msgstr "Sites"
1769
-
1770
- #: templates/debug.php366, templates/account/partials/site.php:148
1771
- msgid "Blog ID"
1772
- msgstr "Blog ID"
1773
-
1774
- #: templates/debug.php431, templates/debug.php509,
1775
- #: templates/account/partials/addon.php:339
1776
- msgctxt "verb"
1777
- msgid "Delete"
1778
- msgstr "Supprimer"
1779
-
1780
- #: templates/debug.php:445
1781
- msgid "Add Ons of module %s"
1782
- msgstr "Add Ons du module %s"
1783
-
1784
- #: templates/debug.php:482
1785
- msgid "Users"
1786
- msgstr "Utilisateurs"
1787
-
1788
- #: templates/debug.php:489
1789
- msgid "Verified"
1790
- msgstr "Vérifié"
1791
-
1792
- #: templates/debug.php:520
1793
- msgid "%s Licenses"
1794
- msgstr "%s Licences"
1795
-
1796
- #: templates/debug.php:525
1797
- msgid "Plugin ID"
1798
- msgstr "ID du plugin"
1799
-
1800
- #: templates/debug.php:527
1801
- msgid "Plan ID"
1802
- msgstr "ID de la formule"
1803
-
1804
- #: templates/debug.php:528
1805
- msgid "Quota"
1806
- msgstr "Quota"
1807
-
1808
- #: templates/debug.php:529
1809
- msgid "Activated"
1810
- msgstr "Activé"
1811
-
1812
- #: templates/debug.php:530
1813
- msgid "Blocking"
1814
- msgstr "Bloquant"
1815
-
1816
- #: templates/debug.php:532
1817
- msgctxt "as expiration date"
1818
- msgid "Expiration"
1819
- msgstr "Expiration"
1820
-
1821
- #: templates/debug.php:555
1822
- msgid "Debug Log"
1823
- msgstr "Debug Log"
1824
-
1825
- #: templates/debug.php:559
1826
- msgid "All Types"
1827
- msgstr "Tous les types"
1828
-
1829
- #: templates/debug.php:566
1830
- msgid "All Requests"
1831
- msgstr "Toutes les demandes"
1832
-
1833
- #: templates/debug.php571, templates/debug.php600,
1834
- #: templates/debug/logger.php:25
1835
- msgid "File"
1836
- msgstr "Fichier"
1837
-
1838
- #: templates/debug.php572, templates/debug.php598,
1839
- #: templates/debug/logger.php:23
1840
- msgid "Function"
1841
- msgstr "Fonction"
1842
-
1843
- #: templates/debug.php:573
1844
- msgid "Process ID"
1845
- msgstr "ID du processus"
1846
-
1847
- #: templates/debug.php:574
1848
- msgid "Logger"
1849
- msgstr "Logger"
1850
-
1851
- #: templates/debug.php575, templates/debug.php599,
1852
- #: templates/debug/logger.php:24
1853
- msgid "Message"
1854
- msgstr "Message"
1855
-
1856
- #: templates/debug.php:577
1857
- msgid "Filter"
1858
- msgstr "Filter"
1859
-
1860
- #: templates/debug.php:585
1861
- msgid "Download"
1862
- msgstr "Téléchargement"
1863
-
1864
- #: templates/debug.php596, templates/debug/logger.php:22
1865
- msgid "Type"
1866
- msgstr "Type"
1867
-
1868
- #: templates/debug.php601, templates/debug/logger.php:26
1869
- msgid "Timestamp"
1870
- msgstr "Timestamp"
1871
-
1872
- #: templates/secure-https-header.php:28
1873
- msgid "Secure HTTPS %s page, running from an external domain"
1874
- msgstr "Page %s sécurisée HTTPS, s'exécutant sur un domaine externe"
1875
-
1876
- #: includes/customizer/class-fs-customizer-support-section.php55,
1877
- #: templates/plugin-info/features.php:43
1878
- msgid "Support"
1879
- msgstr "Support"
1880
-
1881
- #: includes/debug/class-fs-debug-bar-panel.php48,
1882
- #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1883
- msgctxt "milliseconds"
1884
- msgid "ms"
1885
- msgstr "ms"
1886
-
1887
- #: includes/debug/debug-bar-start.php:41
1888
- msgid "Freemius API"
1889
- msgstr "API Freemius"
1890
-
1891
- #: includes/debug/debug-bar-start.php:42
1892
- msgid "Requests"
1893
- msgstr "Demandes"
1894
-
1895
- #: templates/account/billing.php:28
1896
- msgctxt "verb"
1897
- msgid "Update"
1898
- msgstr "Mise à jour"
1899
-
1900
- #: templates/account/billing.php:39
1901
- msgid "Billing"
1902
- msgstr "Facturation"
1903
-
1904
- #: templates/account/billing.php44, templates/account/billing.php:44
1905
- msgid "Business name"
1906
- msgstr "Raison sociale"
1907
-
1908
- #: templates/account/billing.php45, templates/account/billing.php:45
1909
- msgid "Tax / VAT ID"
1910
- msgstr "Code TVA"
1911
-
1912
- #: templates/account/billing.php48, templates/account/billing.php48,
1913
- #: templates/account/billing.php49, templates/account/billing.php:49
1914
- msgid "Address Line %d"
1915
- msgstr "Adresse ligne %d"
1916
-
1917
- #: templates/account/billing.php52, templates/account/billing.php:52
1918
- msgid "City"
1919
- msgstr "Ville"
1920
-
1921
- #: templates/account/billing.php52, templates/account/billing.php:52
1922
- msgid "Town"
1923
- msgstr "Ville"
1924
-
1925
- #: templates/account/billing.php53, templates/account/billing.php:53
1926
- msgid "ZIP / Postal Code"
1927
- msgstr "Code postal"
1928
-
1929
- #: templates/account/billing.php:308
1930
- msgid "Country"
1931
- msgstr "Pays"
1932
-
1933
- #: templates/account/billing.php:310
1934
- msgid "Select Country"
1935
- msgstr "Choisir le pays"
1936
-
1937
- #: templates/account/billing.php317, templates/account/billing.php:318
1938
- msgid "State"
1939
- msgstr "État"
1940
-
1941
- #: templates/account/billing.php317, templates/account/billing.php:318
1942
- msgid "Province"
1943
- msgstr "Région"
1944
-
1945
- #: templates/account/payments.php:29
1946
- msgid "Payments"
1947
- msgstr "Paiements"
1948
-
1949
- #: templates/account/payments.php:36
1950
- msgid "Date"
1951
- msgstr "Date"
1952
-
1953
- #: templates/account/payments.php:37
1954
- msgid "Amount"
1955
- msgstr "Montant"
1956
-
1957
- #: templates/account/payments.php38, templates/account/payments.php:50
1958
- msgid "Invoice"
1959
- msgstr "Facture"
1960
-
1961
- #: templates/debug/api-calls.php:56
1962
- msgid "API"
1963
- msgstr "API"
1964
-
1965
- #: templates/debug/api-calls.php:68
1966
- msgid "Method"
1967
- msgstr "Méthode"
1968
-
1969
- #: templates/debug/api-calls.php:69
1970
- msgid "Code"
1971
- msgstr "Code"
1972
-
1973
- #: templates/debug/api-calls.php:70
1974
- msgid "Length"
1975
- msgstr "Longueur"
1976
-
1977
- #: templates/debug/api-calls.php:71
1978
- msgctxt "as file/folder path"
1979
- msgid "Path"
1980
- msgstr "Chemin"
1981
-
1982
- #: templates/debug/api-calls.php:73
1983
- msgid "Body"
1984
- msgstr "Body"
1985
-
1986
- #: templates/debug/api-calls.php:75
1987
- msgid "Result"
1988
- msgstr "Résultat"
1989
-
1990
- #: templates/debug/api-calls.php:76
1991
- msgid "Start"
1992
- msgstr "Début"
1993
-
1994
- #: templates/debug/api-calls.php:77
1995
- msgid "End"
1996
- msgstr "Fin"
1997
-
1998
- #: templates/debug/logger.php:15
1999
- msgid "Log"
2000
- msgstr "Log"
2001
-
2002
- #. translators: %s: time period (e.g. In "2 hours")
2003
- #: templates/debug/plugins-themes-sync.php18,
2004
- #: templates/debug/scheduled-crons.php:91
2005
- msgid "In %s"
2006
- msgstr "Dans %s"
2007
-
2008
- #. translators: %s: time period (e.g. "2 hours" ago)
2009
- #: templates/debug/plugins-themes-sync.php20,
2010
- #: templates/debug/scheduled-crons.php:93
2011
- msgid "%s ago"
2012
- msgstr "Il y a %s"
2013
-
2014
- #: templates/debug/plugins-themes-sync.php21,
2015
- #: templates/debug/scheduled-crons.php:74
2016
- msgctxt "seconds"
2017
- msgid "sec"
2018
- msgstr "sec"
2019
-
2020
- #: templates/debug/plugins-themes-sync.php:23
2021
- msgid "Plugins & Themes Sync"
2022
- msgstr "Synchronisation des plugin et des thèmes"
2023
-
2024
- #: templates/debug/plugins-themes-sync.php:28
2025
- msgid "Total"
2026
- msgstr "Total"
2027
-
2028
- #: templates/debug/plugins-themes-sync.php29,
2029
- #: templates/debug/scheduled-crons.php:84
2030
- msgid "Last"
2031
- msgstr "Dernier"
2032
-
2033
- #: templates/debug/scheduled-crons.php:76
2034
- msgid "Scheduled Crons"
2035
- msgstr "Crons programmés"
2036
-
2037
- #: templates/debug/scheduled-crons.php:81
2038
- msgid "Module"
2039
- msgstr "Module"
2040
-
2041
- #: templates/debug/scheduled-crons.php:82
2042
- msgid "Module Type"
2043
- msgstr "Type de module"
2044
-
2045
- #: templates/debug/scheduled-crons.php:83
2046
- msgid "Cron Type"
2047
- msgstr "Type de Cron"
2048
-
2049
- #: templates/debug/scheduled-crons.php:85
2050
- msgid "Next"
2051
- msgstr "Suivant"
2052
-
2053
- #: templates/forms/affiliation.php:82
2054
- msgid "Non-expiring"
2055
- msgstr "Sans expiration"
2056
-
2057
- #: templates/forms/affiliation.php:85
2058
- msgid "Apply to become an affiliate"
2059
- msgstr "Postuler pour devenir un affilié"
2060
-
2061
- #: templates/forms/affiliation.php:104
2062
- msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2063
- msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s."
2064
-
2065
- #: templates/forms/affiliation.php:119
2066
- msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2067
- msgstr "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."
2068
-
2069
- #: templates/forms/affiliation.php:122
2070
- msgid "Your affiliation account was temporarily suspended."
2071
- msgstr "Votre compte affilié a été suspendu temporairement."
2072
-
2073
- #: templates/forms/affiliation.php:125
2074
- msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2075
- msgstr "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."
2076
-
2077
- #: templates/forms/affiliation.php:128
2078
- msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2079
- msgstr "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."
2080
-
2081
- #: templates/forms/affiliation.php:141
2082
- msgid "Like the %s? Become our ambassador and earn cash ;-)"
2083
- msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)"
2084
-
2085
- #: templates/forms/affiliation.php:142
2086
- msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2087
- msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez."
2088
-
2089
- #: templates/forms/affiliation.php:145
2090
- msgid "Program Summary"
2091
- msgstr "Sommaire du programme"
2092
-
2093
- #: templates/forms/affiliation.php:147
2094
- msgid "%s commission when a customer purchases a new license."
2095
- msgstr "Commission de %s quand un client achète une nouvelle licence."
2096
-
2097
- #: templates/forms/affiliation.php:149
2098
- msgid "Get commission for automated subscription renewals."
2099
- msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement."
2100
-
2101
- #: templates/forms/affiliation.php:152
2102
- msgid "%s tracking cookie after the first visit to maximize earnings potential."
2103
- msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain."
2104
-
2105
- #: templates/forms/affiliation.php:155
2106
- msgid "Unlimited commissions."
2107
- msgstr "Commissions illimitées."
2108
-
2109
- #: templates/forms/affiliation.php:157
2110
- msgid "%s minimum payout amount."
2111
- msgstr "Montant de paiement minimum %s."
2112
-
2113
- #: templates/forms/affiliation.php:158
2114
- msgid "Payouts are in USD and processed monthly via PayPal."
2115
- msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal."
2116
-
2117
- #: templates/forms/affiliation.php:159
2118
- msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2119
- msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours."
2120
-
2121
- #: templates/forms/affiliation.php:162
2122
- msgid "Affiliate"
2123
- msgstr "Affiliation"
2124
-
2125
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2126
- msgid "Email address"
2127
- msgstr "Adresse email"
2128
-
2129
- #: templates/forms/affiliation.php:169
2130
- msgid "Full name"
2131
- msgstr "Nom complet"
2132
-
2133
- #: templates/forms/affiliation.php:173
2134
- msgid "PayPal account email address"
2135
- msgstr "Adresse email du compte PayPal"
2136
-
2137
- #: templates/forms/affiliation.php:177
2138
- msgid "Where are you going to promote the %s?"
2139
- msgstr "Où allez-vous faire la promotion du %s ? "
2140
-
2141
- #: templates/forms/affiliation.php:179
2142
- msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2143
- msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s"
2144
-
2145
- #: templates/forms/affiliation.php:181
2146
- msgid "Add another domain"
2147
- msgstr "Ajouter une autre adresse"
2148
-
2149
- #: templates/forms/affiliation.php:185
2150
- msgid "Extra Domains"
2151
- msgstr "Adresses supplémentaires"
2152
-
2153
- #: templates/forms/affiliation.php:186
2154
- msgid "Extra domains where you will be marketing the product from."
2155
- msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit."
2156
-
2157
- #: templates/forms/affiliation.php:196
2158
- msgid "Promotion methods"
2159
- msgstr "Méthodes de promotion"
2160
-
2161
- #: templates/forms/affiliation.php:199
2162
- msgid "Social media (Facebook, Twitter, etc.)"
2163
- msgstr "Réseaux sociaux (Facebook, Twitter, etc.)"
2164
-
2165
- #: templates/forms/affiliation.php:203
2166
- msgid "Mobile apps"
2167
- msgstr "Applications mobiles"
2168
-
2169
- #: templates/forms/affiliation.php:207
2170
- msgid "Website, email, and social media statistics (optional)"
2171
- msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)"
2172
-
2173
- #: templates/forms/affiliation.php:210
2174
- msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2175
- msgstr "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)"
2176
-
2177
- #: templates/forms/affiliation.php:214
2178
- msgid "How will you promote us?"
2179
- msgstr "Comment allez-vous faire de la promotion ?"
2180
-
2181
- #: templates/forms/affiliation.php:217
2182
- msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2183
- msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)"
2184
-
2185
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2186
- msgid "Cancel"
2187
- msgstr "Annuler"
2188
-
2189
- #: templates/forms/affiliation.php:225
2190
- msgid "Become an affiliate"
2191
- msgstr "Devenir un affilié"
2192
-
2193
- #: templates/forms/license-activation.php:20
2194
- msgid "Please enter the license key that you received in the email right after the purchase:"
2195
- msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :"
2196
-
2197
- #: templates/forms/license-activation.php:25
2198
- msgid "Update License"
2199
- msgstr "Mettre à jour la licence"
2200
-
2201
- #: templates/forms/optout.php:30
2202
- msgctxt "verb"
2203
- msgid "Opt Out"
2204
- msgstr "Désinscription"
2205
-
2206
- #: templates/forms/optout.php:31
2207
- msgctxt "verb"
2208
- msgid "Opt In"
2209
- msgstr "Inscription"
2210
-
2211
- #: templates/forms/optout.php:33
2212
- msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2213
- msgstr "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."
2214
-
2215
- #: templates/forms/optout.php:35
2216
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2217
- msgstr "En cliquant \"Désincription\", nous n'enverrons plus d'informations de %s à %s."
2218
-
2219
- #: templates/forms/premium-versions-upgrade-handler.php:40
2220
- msgid "There is a new version of %s available."
2221
- msgstr "Il y a une nouvelle version disponible de %s. "
2222
-
2223
- #: templates/forms/premium-versions-upgrade-handler.php:41
2224
- msgid " %s to access version %s security & feature updates, and support."
2225
- msgstr " %s to access version %s security & feature updates, and support."
2226
-
2227
- #: templates/forms/premium-versions-upgrade-handler.php:54
2228
- msgid "New Version Available"
2229
- msgstr "Une nouvelle version est disponible"
2230
-
2231
- #: templates/forms/premium-versions-upgrade-handler.php:75
2232
- msgctxt "close a window"
2233
- msgid "Dismiss"
2234
- msgstr "Fermer"
2235
-
2236
- #: templates/forms/resend-key.php:21
2237
- msgid "Send License Key"
2238
- msgstr "Envoyer le code de la licence"
2239
-
2240
- #: templates/forms/resend-key.php:57
2241
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2242
- msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à jour et nous allons vous renvoyer le code de la licence."
2243
-
2244
- #: templates/forms/subscription-cancellation.php:37
2245
- msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
- msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
-
2248
- #: templates/forms/subscription-cancellation.php:47
2249
- msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
- msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
-
2252
- #: templates/forms/subscription-cancellation.php:52
2253
- msgid "license"
2254
- msgstr "license"
2255
-
2256
- #: templates/forms/subscription-cancellation.php:57
2257
- msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
- msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
-
2260
- #: templates/forms/subscription-cancellation.php:68
2261
- msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
- msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
-
2264
- #: templates/forms/subscription-cancellation.php:103
2265
- msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
- msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
-
2268
- #: templates/forms/subscription-cancellation.php:136
2269
- msgid "Cancel %s?"
2270
- msgstr "Cancel %s?"
2271
-
2272
- #: templates/forms/subscription-cancellation.php:143
2273
- msgid "Proceed"
2274
- msgstr "Proceed"
2275
-
2276
- #: templates/forms/subscription-cancellation.php191,
2277
- #: templates/forms/deactivation/form.php:150
2278
- msgid "Cancel %s & Proceed"
2279
- msgstr "Cancel %s & Proceed"
2280
-
2281
- #: templates/forms/trial-start.php:22
2282
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2283
- msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s jours de la formule %2$s."
2284
-
2285
- #: templates/forms/trial-start.php:28
2286
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2287
- msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai."
2288
-
2289
- #: templates/js/style-premium-theme.php:37
2290
- msgid "Premium"
2291
- msgstr "Premium"
2292
-
2293
- #: templates/partials/network-activation.php:23
2294
- msgid "Activate license on all sites in the network."
2295
- msgstr "Activer la licence sur tous les sites du réseau."
2296
-
2297
- #: templates/partials/network-activation.php:24
2298
- msgid "Apply on all sites in the network."
2299
- msgstr "Effectuer sur tous les sites dans le réseau."
2300
-
2301
- #: templates/partials/network-activation.php:27
2302
- msgid "Activate license on all pending sites."
2303
- msgstr "Activer la licence sur tous les sites en attente."
2304
-
2305
- #: templates/partials/network-activation.php:28
2306
- msgid "Apply on all pending sites."
2307
- msgstr "Activer sur tous les sites en attente."
2308
-
2309
- #: templates/partials/network-activation.php36,
2310
- #: templates/partials/network-activation.php:68
2311
- msgid "allow"
2312
- msgstr "autoriser"
2313
-
2314
- #: templates/partials/network-activation.php38,
2315
- #: templates/partials/network-activation.php:70
2316
- msgid "delegate"
2317
- msgstr "déléguer"
2318
-
2319
- #: templates/partials/network-activation.php41,
2320
- #: templates/partials/network-activation.php:73
2321
- msgid "skip"
2322
- msgstr "passer"
2323
-
2324
- #: templates/plugin-info/description.php72,
2325
- #: templates/plugin-info/screenshots.php:31
2326
- msgid "Click to view full-size screenshot %d"
2327
- msgstr "Cliquez pour voir la capture d'écran %d en pleine taille"
2328
-
2329
- #: templates/plugin-info/features.php:56
2330
- msgid "Unlimited Updates"
2331
- msgstr "Mises à jour illimitées"
2332
-
2333
- #: templates/account/partials/activate-license-button.php:46
2334
- msgid "Localhost"
2335
- msgstr "Localhost"
2336
-
2337
- #: templates/account/partials/activate-license-button.php:50
2338
- msgctxt "as 5 licenses left"
2339
- msgid "%s left"
2340
- msgstr "%s restante(s)"
2341
-
2342
- #: templates/account/partials/activate-license-button.php:51
2343
- msgid "Last license"
2344
- msgstr "Dernière licence"
2345
-
2346
- #: templates/account/partials/addon.php:115
2347
- msgid "Cancelled"
2348
- msgstr "Annulé"
2349
-
2350
- #: templates/account/partials/addon.php:125
2351
- msgid "No expiration"
2352
- msgstr "Pas d'expiration"
2353
-
2354
- #: templates/account/partials/addon.php264,
2355
- #: templates/account/partials/addon.php:317
2356
- msgid "Activate this add-on"
2357
- msgstr "Activer cet add-on"
2358
-
2359
- #: templates/account/partials/site.php:181
2360
- msgid "Owner Name"
2361
- msgstr "Nom du propriétaire"
2362
-
2363
- #: templates/account/partials/site.php:193
2364
- msgid "Owner Email"
2365
- msgstr "Email du propriétaire"
2366
-
2367
- #: templates/account/partials/site.php:205
2368
- msgid "Owner ID"
2369
- msgstr "ID du propriétaire"
2370
-
2371
- #: templates/account/partials/site.php:270
2372
- msgid "Subscription"
2373
- msgstr "Inscription"
2374
-
2375
- #: templates/forms/deactivation/contact.php:19
2376
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2377
- msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous nous le permettez."
2378
-
2379
- #: templates/forms/deactivation/contact.php:22
2380
- msgid "Contact Support"
2381
- msgstr "Contacter l'Assistance"
2382
-
2383
- #: templates/forms/deactivation/form.php:59
2384
- msgid "Anonymous feedback"
2385
- msgstr "Commentaire anonyme"
2386
-
2387
- #: templates/forms/deactivation/form.php:66
2388
- msgid "Deactivate"
2389
- msgstr "Désactiver"
2390
-
2391
- #: templates/forms/deactivation/form.php:68
2392
- msgid "Activate %s"
2393
- msgstr "Activer %s"
2394
-
2395
- #: templates/forms/deactivation/form.php:80
2396
- msgid "Quick Feedback"
2397
- msgstr "Quick Feedback"
2398
-
2399
- #: templates/forms/deactivation/form.php:84
2400
- msgid "If you have a moment, please let us know why you are %s"
2401
- msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s"
2402
-
2403
- #: templates/forms/deactivation/form.php:84
2404
- msgid "deactivating"
2405
- msgstr "Désactivation"
2406
-
2407
- #: templates/forms/deactivation/form.php:84
2408
- msgid "switching"
2409
- msgstr "Changement"
2410
-
2411
- #: templates/forms/deactivation/form.php:332
2412
- msgid "Submit & %s"
2413
- msgstr "Envoyer & %s"
2414
-
2415
- #: templates/forms/deactivation/form.php:353
2416
- msgid "Kindly tell us the reason so we can improve."
2417
- msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2418
-
2419
- #: templates/forms/deactivation/form.php:478
2420
- msgid "Yes - %s"
2421
- msgstr "Oui - %s"
2422
-
2423
- #: templates/forms/deactivation/form.php:485
2424
- msgid "Skip & %s"
2425
- msgstr "Passer & %s"
2426
-
2427
- #: templates/forms/deactivation/retry-skip.php:21
2428
- msgid "Click here to use the plugin anonymously"
2429
- msgstr "Cliquer ici pour utiliser le plugin anonymement"
2430
-
2431
- #: templates/forms/deactivation/retry-skip.php:23
2432
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2433
- msgstr "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."
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-11-26 11:09+0000\n"
11
+ "Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
12
+ "Language: fr_FR\n"
13
+ "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
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:1602
25
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
+ msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
27
+
28
+ #: includes/class-freemius.php:1604
29
+ msgid "Error"
30
+ msgstr "Erreur"
31
+
32
+ #: includes/class-freemius.php:1925
33
+ msgid "I found a better %s"
34
+ msgstr "J'ai trouvé un meilleur %s"
35
+
36
+ #: includes/class-freemius.php:1927
37
+ msgid "What's the %s's name?"
38
+ msgstr "Quel est le nom du %s ?"
39
+
40
+ #: includes/class-freemius.php:1933
41
+ msgid "It's a temporary %s. I'm just debugging an issue."
42
+ msgstr "C'est une %s temporaire. Je corrige un problème."
43
+
44
+ #: includes/class-freemius.php:1935
45
+ msgid "Deactivation"
46
+ msgstr "Désactivation"
47
+
48
+ #: includes/class-freemius.php:1936
49
+ msgid "Theme Switch"
50
+ msgstr "Changement de Thème"
51
+
52
+ #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
53
+ msgid "Other"
54
+ msgstr "Autre"
55
+
56
+ #: includes/class-freemius.php:1953
57
+ msgid "I no longer need the %s"
58
+ msgstr "Je n'ai plus besoin du %s"
59
+
60
+ #: includes/class-freemius.php:1960
61
+ msgid "I only needed the %s for a short period"
62
+ msgstr "Je n'ai besoin de %s que pour une courte période"
63
+
64
+ #: includes/class-freemius.php:1966
65
+ msgid "The %s broke my site"
66
+ msgstr "Le %s a cassé mon site"
67
+
68
+ #: includes/class-freemius.php:1973
69
+ msgid "The %s suddenly stopped working"
70
+ msgstr "Le %s a soudainement arrêté de fonctionner"
71
+
72
+ #: includes/class-freemius.php:1983
73
+ msgid "I can't pay for it anymore"
74
+ msgstr "Je ne peux plus payer pour ça"
75
+
76
+ #: includes/class-freemius.php:1985
77
+ msgid "What price would you feel comfortable paying?"
78
+ msgstr "Quel prix seriez-vous prêt à payer ?"
79
+
80
+ #: includes/class-freemius.php:1991
81
+ msgid "I don't like to share my information with you"
82
+ msgstr "Je ne veux pas partager mes informations avec vous"
83
+
84
+ #: includes/class-freemius.php:2012
85
+ msgid "The %s didn't work"
86
+ msgstr "Le %s n'a pas fonctionné"
87
+
88
+ #: includes/class-freemius.php:2022
89
+ msgid "I couldn't understand how to make it work"
90
+ msgstr "Je ne comprends pas comment le faire fonctionner"
91
+
92
+ #: includes/class-freemius.php:2030
93
+ msgid "The %s is great, but I need specific feature that you don't support"
94
+ msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
95
+
96
+ #: includes/class-freemius.php:2032
97
+ msgid "What feature?"
98
+ msgstr "Quelle fonctionnalité ?"
99
+
100
+ #: includes/class-freemius.php:2036
101
+ msgid "The %s is not working"
102
+ msgstr "Le %s ne fonctionne pas"
103
+
104
+ #: includes/class-freemius.php:2038
105
+ msgid "Kindly share what didn't work so we can fix it for future users..."
106
+ msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
107
+
108
+ #: includes/class-freemius.php:2042
109
+ msgid "It's not what I was looking for"
110
+ msgstr "Ce n'est pas ce que je recherche"
111
+
112
+ #: includes/class-freemius.php:2044
113
+ msgid "What you've been looking for?"
114
+ msgstr "Que recherchez-vous ?"
115
+
116
+ #: includes/class-freemius.php:2048
117
+ msgid "The %s didn't work as expected"
118
+ msgstr "Le %s n'a pas fonctionné comme prévu"
119
+
120
+ #: includes/class-freemius.php:2050
121
+ msgid "What did you expect?"
122
+ msgstr "À quoi vous attendiez-vous ?"
123
+
124
+ #: includes/class-freemius.php2853, templates/debug.php:20
125
+ msgid "Freemius Debug"
126
+ msgstr "Débuggage Freemius"
127
+
128
+ #: includes/class-freemius.php:3581
129
+ msgid "I don't know what is cURL or how to install it, help me!"
130
+ msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
131
+
132
+ #: includes/class-freemius.php:3583
133
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
+ msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
135
+
136
+ #: includes/class-freemius.php:3590
137
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
+ msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
139
+
140
+ #: includes/class-freemius.php:3695
141
+ msgid "Yes - do your thing"
142
+ msgstr "Oui - allez-y"
143
+
144
+ #: includes/class-freemius.php:3700
145
+ msgid "No - just deactivate"
146
+ msgstr "Non - désactivation seulement"
147
+
148
+ #: includes/class-freemius.php3745, includes/class-freemius.php4253,
149
+ #: includes/class-freemius.php5318, includes/class-freemius.php11316,
150
+ #: includes/class-freemius.php14649, includes/class-freemius.php14701,
151
+ #: includes/class-freemius.php14763, includes/class-freemius.php16969,
152
+ #: includes/class-freemius.php16979, includes/class-freemius.php17588,
153
+ #: includes/class-freemius.php18446, includes/class-freemius.php18561,
154
+ #: includes/class-freemius.php18705, templates/add-ons.php:43
155
+ msgctxt "exclamation"
156
+ msgid "Oops"
157
+ msgstr "Oups"
158
+
159
+ #: includes/class-freemius.php:3814
160
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
+ msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
162
+
163
+ #: includes/class-freemius.php:4250
164
+ msgctxt "addonX cannot run without pluginY"
165
+ msgid "%s cannot run without %s."
166
+ msgstr "%s ne peut pas fonctionner sans %s."
167
+
168
+ #: includes/class-freemius.php:4251
169
+ msgctxt "addonX cannot run..."
170
+ msgid "%s cannot run without the plugin."
171
+ msgstr "%s ne peut pas fonctionner sans le plugin."
172
+
173
+ #: includes/class-freemius.php4363, includes/class-freemius.php4388,
174
+ #: includes/class-freemius.php:17659
175
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
176
+ msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
177
+
178
+ #: includes/class-freemius.php:5006
179
+ msgid "Premium %s version was successfully activated."
180
+ msgstr "La version premium de %s a été activée avec succès."
181
+
182
+ #: includes/class-freemius.php5018, includes/class-freemius.php:6862
183
+ msgctxt ""
184
+ msgid "W00t"
185
+ msgstr "Génial"
186
+
187
+ #: includes/class-freemius.php:5033
188
+ msgid "You have a %s license."
189
+ msgstr "Vous avez une license pour %s."
190
+
191
+ #: includes/class-freemius.php5037, includes/class-freemius.php14070,
192
+ #: includes/class-freemius.php14081, includes/class-freemius.php16897,
193
+ #: includes/class-freemius.php17197, includes/class-freemius.php17263,
194
+ #: includes/class-freemius.php:17413
195
+ msgctxt "interjection expressing joy or exuberance"
196
+ msgid "Yee-haw"
197
+ msgstr "Youpi"
198
+
199
+ #: includes/class-freemius.php:5301
200
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
+ msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence."
202
+
203
+ #: includes/class-freemius.php:5305
204
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
+ msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
206
+
207
+ #: includes/class-freemius.php5314, templates/add-ons.php103,
208
+ #: templates/account/partials/addon.php:288
209
+ msgid "More information about %s"
210
+ msgstr "Plus d'informations à propos de %s"
211
+
212
+ #: includes/class-freemius.php:5315
213
+ msgid "Purchase License"
214
+ msgstr "Acheter une licence"
215
+
216
+ #: includes/class-freemius.php6230, templates/connect.php:163
217
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
+ msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
219
+
220
+ #: includes/class-freemius.php:6234
221
+ msgid "start the trial"
222
+ msgstr "commencer la période d'essai"
223
+
224
+ #: includes/class-freemius.php6235, templates/connect.php:167
225
+ msgid "complete the install"
226
+ msgstr "compléter l'installation"
227
+
228
+ #: includes/class-freemius.php:6348
229
+ msgid "You are just one step away - %s"
230
+ msgstr "Il ne reste qu'une étape - %s"
231
+
232
+ #: includes/class-freemius.php:6351
233
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
+ msgid "Complete \"%s\" Activation Now"
235
+ msgstr "Compléter \"%s\" Activer Maintenant"
236
+
237
+ #: includes/class-freemius.php:6429
238
+ msgid "We made a few tweaks to the %s, %s"
239
+ msgstr "Nous avons fait quelques modifications au %s, %s"
240
+
241
+ #: includes/class-freemius.php:6433
242
+ msgid "Opt in to make \"%s\" better!"
243
+ msgstr "Inscrivez-vous pour améliorer \"%s\" !"
244
+
245
+ #: includes/class-freemius.php:6861
246
+ msgid "The upgrade of %s was successfully completed."
247
+ msgstr "La mise à jour du %s s'est terminée avec succès "
248
+
249
+ #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
250
+ #: includes/class-fs-plugin-updater.php1077,
251
+ #: includes/class-fs-plugin-updater.php1084,
252
+ #: templates/auto-installation.php:32
253
+ msgid "Add-On"
254
+ msgstr "Add-On"
255
+
256
+ #: includes/class-freemius.php8707, templates/debug.php359,
257
+ #: templates/debug.php:520
258
+ msgid "Plugin"
259
+ msgstr "Plugin"
260
+
261
+ #: includes/class-freemius.php8708, templates/debug.php359,
262
+ #: templates/debug.php520, templates/forms/deactivation/form.php:67
263
+ msgid "Theme"
264
+ msgstr "Thème"
265
+
266
+ #: includes/class-freemius.php:11183
267
+ msgid "Invalid site details collection."
268
+ msgstr "Invalid site details collection."
269
+
270
+ #: includes/class-freemius.php:11303
271
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
272
+ msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
273
+
274
+ #: includes/class-freemius.php:11305
275
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
276
+ msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
277
+
278
+ #: includes/class-freemius.php:11541
279
+ msgid "Account is pending activation."
280
+ msgstr "Compte en cours d'activation."
281
+
282
+ #: includes/class-freemius.php11653,
283
+ #: templates/forms/premium-versions-upgrade-handler.php:47
284
+ msgid "Buy a license now"
285
+ msgstr "Acheter une licence maintenant"
286
+
287
+ #: includes/class-freemius.php11665,
288
+ #: templates/forms/premium-versions-upgrade-handler.php:46
289
+ msgid "Renew your license now"
290
+ msgstr "Renouvelez votre licence maintenant"
291
+
292
+ #: includes/class-freemius.php:11669
293
+ msgid "%s to access version %s security & feature updates, and support."
294
+ msgstr "%s to access version %s security & feature updates, and support."
295
+
296
+ #: includes/class-freemius.php:14052
297
+ msgid "%s activation was successfully completed."
298
+ msgstr "L'activation de %s s'est terminée avec succès."
299
+
300
+ #: includes/class-freemius.php:14066
301
+ msgid "Your account was successfully activated with the %s plan."
302
+ msgstr "Votre compte a été activé avec succès avec la formule %s."
303
+
304
+ #: includes/class-freemius.php14077, includes/class-freemius.php:17259
305
+ msgid "Your trial has been successfully started."
306
+ msgstr "Votre période d'essai a bien démarré."
307
+
308
+ #: includes/class-freemius.php14647, includes/class-freemius.php14699,
309
+ #: includes/class-freemius.php:14761
310
+ msgid "Couldn't activate %s."
311
+ msgstr "Impossible d'activer %s."
312
+
313
+ #: includes/class-freemius.php14648, includes/class-freemius.php14700,
314
+ #: includes/class-freemius.php:14762
315
+ msgid "Please contact us with the following message:"
316
+ msgstr "Merci de nous contacter avec le message suivant :"
317
+
318
+ #: includes/class-freemius.php15111, includes/class-freemius.php:19543
319
+ msgid "Upgrade"
320
+ msgstr "Mise à jour"
321
+
322
+ #: includes/class-freemius.php:15117
323
+ msgid "Start Trial"
324
+ msgstr "Essai gratuit"
325
+
326
+ #: includes/class-freemius.php:15119
327
+ msgid "Pricing"
328
+ msgstr "Tarifs"
329
+
330
+ #: includes/class-freemius.php15181, includes/class-freemius.php:15183
331
+ msgid "Affiliation"
332
+ msgstr "Affiliation"
333
+
334
+ #: includes/class-freemius.php15211, includes/class-freemius.php15213,
335
+ #: templates/account.php150, templates/debug.php:324
336
+ msgid "Account"
337
+ msgstr "Compte"
338
+
339
+ #: includes/class-freemius.php15226, includes/class-freemius.php15228,
340
+ #: includes/customizer/class-fs-customizer-support-section.php:60
341
+ msgid "Contact Us"
342
+ msgstr "Contactez Nous"
343
+
344
+ #: includes/class-freemius.php15238, includes/class-freemius.php15240,
345
+ #: includes/class-freemius.php19553, templates/account.php100,
346
+ #: templates/account/partials/addon.php:41
347
+ msgid "Add-Ons"
348
+ msgstr "Add-Ons"
349
+
350
+ #: includes/class-freemius.php:15274
351
+ msgctxt "ASCII arrow left icon"
352
+ msgid "&#x2190;"
353
+ msgstr "&#x2190;"
354
+
355
+ #: includes/class-freemius.php:15274
356
+ msgctxt "ASCII arrow right icon"
357
+ msgid "&#x27a4;"
358
+ msgstr "&#x27a4;"
359
+
360
+ #: includes/class-freemius.php15276, templates/pricing.php:97
361
+ msgctxt "noun"
362
+ msgid "Pricing"
363
+ msgstr "Tarifs"
364
+
365
+ #: includes/class-freemius.php15479,
366
+ #: includes/customizer/class-fs-customizer-support-section.php:67
367
+ msgid "Support Forum"
368
+ msgstr "Forum de Support"
369
+
370
+ #: includes/class-freemius.php:16265
371
+ msgid "Your email has been successfully verified - you are AWESOME!"
372
+ msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
373
+
374
+ #: includes/class-freemius.php:16266
375
+ msgctxt "a positive response"
376
+ msgid "Right on"
377
+ msgstr "Directement"
378
+
379
+ #: includes/class-freemius.php:16888
380
+ msgid "Your %s Add-on plan was successfully upgraded."
381
+ msgstr "Votre Add-on %s a bien été mis à jour."
382
+
383
+ #: includes/class-freemius.php:16890
384
+ msgid "%s Add-on was successfully purchased."
385
+ msgstr "L'Add-on %s a bien été acheté."
386
+
387
+ #: includes/class-freemius.php:16893
388
+ msgid "Download the latest version"
389
+ msgstr "Télécharger la dernière version"
390
+
391
+ #: includes/class-freemius.php:16965
392
+ msgctxt "%1s - plugin title, %2s - API domain"
393
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
394
+ msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
395
+
396
+ #: includes/class-freemius.php16968, includes/class-freemius.php17384,
397
+ #: includes/class-freemius.php:17461
398
+ msgid "Error received from the server:"
399
+ msgstr "Une erreur a été reçu depuis le serveur :"
400
+
401
+ #: includes/class-freemius.php:16978
402
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
403
+ msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau."
404
+
405
+ #: includes/class-freemius.php17160, includes/class-freemius.php17389,
406
+ #: includes/class-freemius.php17432, includes/class-freemius.php:17535
407
+ msgctxt ""
408
+ msgid "Hmm"
409
+ msgstr "Hmm"
410
+
411
+ #: includes/class-freemius.php:17173
412
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
413
+ msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé."
414
+
415
+ #: includes/class-freemius.php17174, templates/account.php102,
416
+ #: templates/add-ons.php134, templates/account/partials/addon.php:43
417
+ msgctxt "trial period"
418
+ msgid "Trial"
419
+ msgstr "Période d'essai"
420
+
421
+ #: includes/class-freemius.php:17179
422
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
423
+ msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
424
+
425
+ #: includes/class-freemius.php17183, includes/class-freemius.php:17241
426
+ msgid "Please contact us here"
427
+ msgstr "Merci de nous contacter ici"
428
+
429
+ #: includes/class-freemius.php:17193
430
+ msgid "Your plan was successfully upgraded."
431
+ msgstr "Votre formule a bien été mise à jour."
432
+
433
+ #: includes/class-freemius.php:17211
434
+ msgid "Your plan was successfully changed to %s."
435
+ msgstr "Votre formule a bien été modifié vers %s. "
436
+
437
+ #: includes/class-freemius.php:17227
438
+ msgid "Your license has expired. You can still continue using the free %s forever."
439
+ msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
440
+
441
+ #: includes/class-freemius.php:17229
442
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
443
+ msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
444
+
445
+ #: includes/class-freemius.php:17237
446
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
447
+ msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
448
+
449
+ #: includes/class-freemius.php:17250
450
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
451
+ msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance."
452
+
453
+ #: includes/class-freemius.php:17273
454
+ msgid "Your free trial has expired. You can still continue using all our free features."
455
+ msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
456
+
457
+ #: includes/class-freemius.php:17275
458
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
459
+ msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
460
+
461
+ #: includes/class-freemius.php:17380
462
+ msgid "It looks like the license could not be activated."
463
+ msgstr "Il semble que la licence ne puisse être activée."
464
+
465
+ #: includes/class-freemius.php:17410
466
+ msgid "Your license was successfully activated."
467
+ msgstr "Votre licence a bien été activée."
468
+
469
+ #: includes/class-freemius.php:17436
470
+ msgid "It looks like your site currently doesn't have an active license."
471
+ msgstr "Il semble que votre site n'ait pas de licence active."
472
+
473
+ #: includes/class-freemius.php:17460
474
+ msgid "It looks like the license deactivation failed."
475
+ msgstr "Il semble que la désactivation de la licence a échoué."
476
+
477
+ #: includes/class-freemius.php:17488
478
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
479
+ msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
480
+
481
+ #: includes/class-freemius.php:17489
482
+ msgid "O.K"
483
+ msgstr "O.K"
484
+
485
+ #: includes/class-freemius.php:17542
486
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
487
+ msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
488
+
489
+ #: includes/class-freemius.php:17551
490
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
491
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
+
493
+ #: includes/class-freemius.php:17593
494
+ msgid "You are already running the %s in a trial mode."
495
+ msgstr "Vous utilisez déjà le %s en période d'essai. "
496
+
497
+ #: includes/class-freemius.php:17604
498
+ msgid "You already utilized a trial before."
499
+ msgstr "Vous avez déjà utilisé la période d'essai."
500
+
501
+ #: includes/class-freemius.php:17618
502
+ msgid "Plan %s do not exist, therefore, can't start a trial."
503
+ msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
504
+
505
+ #: includes/class-freemius.php:17629
506
+ msgid "Plan %s does not support a trial period."
507
+ msgstr "La formule %s ne propose pas de période d'essai."
508
+
509
+ #: includes/class-freemius.php:17640
510
+ msgid "None of the %s's plans supports a trial period."
511
+ msgstr "Aucune formule du %s ne propose de période d'essai."
512
+
513
+ #: includes/class-freemius.php:17690
514
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
515
+ msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
516
+
517
+ #: includes/class-freemius.php:17726
518
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
519
+ msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
520
+
521
+ #: includes/class-freemius.php:17745
522
+ msgid "Your %s free trial was successfully cancelled."
523
+ msgstr "Votre période d'essai %s a bien été annulé."
524
+
525
+ #: includes/class-freemius.php:18052
526
+ msgid "Version %s was released."
527
+ msgstr "La version %s vient d'être publiée."
528
+
529
+ #: includes/class-freemius.php:18052
530
+ msgid "Please download %s."
531
+ msgstr "Merci de télécharger %s."
532
+
533
+ #: includes/class-freemius.php:18059
534
+ msgid "the latest %s version here"
535
+ msgstr "la dernière version de %s ici"
536
+
537
+ #: includes/class-freemius.php:18064
538
+ msgid "New"
539
+ msgstr "Nouveau"
540
+
541
+ #: includes/class-freemius.php:18069
542
+ msgid "Seems like you got the latest release."
543
+ msgstr "Il semble que vous ayez la dernière version."
544
+
545
+ #: includes/class-freemius.php:18070
546
+ msgid "You are all good!"
547
+ msgstr "Vous êtes tout bon !"
548
+
549
+ #: includes/class-freemius.php:18338
550
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
551
+ msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams."
552
+
553
+ #: includes/class-freemius.php:18473
554
+ msgid "Site successfully opted in."
555
+ msgstr "Site ajouté avec succès."
556
+
557
+ #: includes/class-freemius.php18474, includes/class-freemius.php:19285
558
+ msgid "Awesome"
559
+ msgstr "Formidable"
560
+
561
+ #: includes/class-freemius.php18490, templates/forms/optout.php:32
562
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
563
+ msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
564
+
565
+ #: includes/class-freemius.php:18491
566
+ msgid "Thank you!"
567
+ msgstr "Merci !"
568
+
569
+ #: includes/class-freemius.php:18498
570
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
571
+ msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
572
+
573
+ #: includes/class-freemius.php:18627
574
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
575
+ msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
576
+
577
+ #: includes/class-freemius.php:18633
578
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
579
+ msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
580
+
581
+ #: includes/class-freemius.php:18638
582
+ msgid "%s is the new owner of the account."
583
+ msgstr "%s est le nouveau propriétaire du compte."
584
+
585
+ #: includes/class-freemius.php:18640
586
+ msgctxt "as congratulations"
587
+ msgid "Congrats"
588
+ msgstr "Félicitations"
589
+
590
+ #: includes/class-freemius.php:18660
591
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
592
+ msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
593
+
594
+ #: includes/class-freemius.php:18661
595
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
596
+ msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
597
+
598
+ #: includes/class-freemius.php:18668
599
+ msgid "Change Ownership"
600
+ msgstr "Changement De Propriétaire"
601
+
602
+ #: includes/class-freemius.php:18676
603
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
604
+ msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
605
+
606
+ #: includes/class-freemius.php:18688
607
+ msgid "Please provide your full name."
608
+ msgstr "Merci d'indiquer vos prénom et nom."
609
+
610
+ #: includes/class-freemius.php:18693
611
+ msgid "Your name was successfully updated."
612
+ msgstr "Votre nom a été mis à jour."
613
+
614
+ #: includes/class-freemius.php:18754
615
+ msgid "You have successfully updated your %s."
616
+ msgstr "Votre %s a bien été mis à jour."
617
+
618
+ #: includes/class-freemius.php:18894
619
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
620
+ msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
621
+
622
+ #: includes/class-freemius.php:18895
623
+ msgctxt "advance notice of something that will need attention."
624
+ msgid "Heads up"
625
+ msgstr "Avertissement"
626
+
627
+ #: includes/class-freemius.php:19325
628
+ msgctxt "exclamation"
629
+ msgid "Hey"
630
+ msgstr "Hey"
631
+
632
+ #: includes/class-freemius.php:19325
633
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
634
+ msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
635
+
636
+ #: includes/class-freemius.php:19333
637
+ msgid "No commitment for %s days - cancel anytime!"
638
+ msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
639
+
640
+ #: includes/class-freemius.php:19334
641
+ msgid "No credit card required"
642
+ msgstr "Pas besoin de carte bancaire"
643
+
644
+ #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
645
+ msgctxt "call to action"
646
+ msgid "Start free trial"
647
+ msgstr "Commencer l'essai gratuit"
648
+
649
+ #: includes/class-freemius.php:19418
650
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
651
+ msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !"
652
+
653
+ #: includes/class-freemius.php:19427
654
+ msgid "Learn more"
655
+ msgstr "En savoir plus"
656
+
657
+ #: includes/class-freemius.php19577, templates/account.php406,
658
+ #: templates/account.php509, templates/connect.php171,
659
+ #: templates/connect.php421, templates/forms/license-activation.php24,
660
+ #: templates/account/partials/addon.php:235
661
+ msgid "Activate License"
662
+ msgstr "Activer la licence"
663
+
664
+ #: includes/class-freemius.php19578, templates/account.php469,
665
+ #: templates/account.php508, templates/account/partials/site.php:256
666
+ msgid "Change License"
667
+ msgstr "Changer la licence"
668
+
669
+ #: includes/class-freemius.php19660, templates/account/partials/site.php:161
670
+ msgid "Opt Out"
671
+ msgstr "Désinscription"
672
+
673
+ #: includes/class-freemius.php19662, includes/class-freemius.php19667,
674
+ #: templates/account/partials/site.php43,
675
+ #: templates/account/partials/site.php:161
676
+ msgid "Opt In"
677
+ msgstr "Inscription"
678
+
679
+ #: includes/class-freemius.php:19891
680
+ msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
681
+ msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
+
683
+ #: includes/class-freemius.php:19899
684
+ msgid "Activate %s features"
685
+ msgstr "Activate %s features"
686
+
687
+ #: includes/class-freemius.php:19912
688
+ msgid "Please follow these steps to complete the upgrade"
689
+ msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
690
+
691
+ #: includes/class-freemius.php:19916
692
+ msgid "Download the latest %s version"
693
+ msgstr "Télécharger la dernière version %s"
694
+
695
+ #: includes/class-freemius.php:19920
696
+ msgid "Upload and activate the downloaded version"
697
+ msgstr "Téléverser et activer la version téléchargée"
698
+
699
+ #: includes/class-freemius.php:19922
700
+ msgid "How to upload and activate?"
701
+ msgstr "Comment téléverser et activer ?"
702
+
703
+ #: includes/class-freemius.php:20056
704
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
705
+ msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
706
+
707
+ #: includes/class-freemius.php:20217
708
+ msgid "Auto installation only works for opted-in users."
709
+ msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
710
+
711
+ #: includes/class-freemius.php20227, includes/class-freemius.php20260,
712
+ #: includes/class-fs-plugin-updater.php1056,
713
+ #: includes/class-fs-plugin-updater.php:1070
714
+ msgid "Invalid module ID."
715
+ msgstr "ID du module non valide."
716
+
717
+ #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
718
+ msgid "Premium version already active."
719
+ msgstr "Version premium déjà active."
720
+
721
+ #: includes/class-freemius.php:20243
722
+ msgid "You do not have a valid license to access the premium version."
723
+ msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
724
+
725
+ #: includes/class-freemius.php:20250
726
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
727
+ msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
728
+
729
+ #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
730
+ msgid "Premium add-on version already installed."
731
+ msgstr "La version premium de l'add-on est déjà installée."
732
+
733
+ #: includes/class-freemius.php:20613
734
+ msgid "View paid features"
735
+ msgstr "Voir les fonctionnalités payantes"
736
+
737
+ #: includes/class-freemius.php:20927
738
+ msgid "Thank you so much for using %s and its add-ons!"
739
+ msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
740
+
741
+ #: includes/class-freemius.php:20928
742
+ msgid "Thank you so much for using %s!"
743
+ msgstr "Merci beaucoup d'utiliser %s !"
744
+
745
+ #: includes/class-freemius.php:20934
746
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
747
+ msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
748
+
749
+ #: includes/class-freemius.php:20938
750
+ msgid "Thank you so much for using our products!"
751
+ msgstr "Merci beaucoup d'utiliser nos produits !"
752
+
753
+ #: includes/class-freemius.php:20939
754
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
755
+ msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
756
+
757
+ #: includes/class-freemius.php:20958
758
+ msgid "%s and its add-ons"
759
+ msgstr "%s et ses add-ons"
760
+
761
+ #: includes/class-freemius.php:20967
762
+ msgid "Products"
763
+ msgstr "Produits"
764
+
765
+ #: includes/class-freemius.php20974, templates/connect.php:272
766
+ msgid "Yes"
767
+ msgstr "Oui"
768
+
769
+ #: includes/class-freemius.php20975, templates/connect.php:273
770
+ msgid "send me security & feature updates, educational content and offers."
771
+ msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
772
+
773
+ #: includes/class-freemius.php20976, templates/connect.php:278
774
+ msgid "No"
775
+ msgstr "Non"
776
+
777
+ #: includes/class-freemius.php20978, templates/connect.php:280
778
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
779
+ msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
780
+
781
+ #: includes/class-freemius.php:20988
782
+ msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
783
+ msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
784
+
785
+ #: includes/class-freemius.php20990, templates/connect.php:287
786
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
787
+ msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :"
788
+
789
+ #: includes/class-freemius.php:21272
790
+ msgid "License key is empty."
791
+ msgstr "La clé de licence est vide."
792
+
793
+ #: includes/class-fs-plugin-updater.php184,
794
+ #: templates/forms/premium-versions-upgrade-handler.php:57
795
+ msgid "Renew license"
796
+ msgstr "Renouvelez votre licence"
797
+
798
+ #: includes/class-fs-plugin-updater.php189,
799
+ #: templates/forms/premium-versions-upgrade-handler.php:58
800
+ msgid "Buy license"
801
+ msgstr "Buy license"
802
+
803
+ #: includes/class-fs-plugin-updater.php:278
804
+ msgid "There is a %s of %s available."
805
+ msgstr "There is a %s of %s available."
806
+
807
+ #: includes/class-fs-plugin-updater.php:282
808
+ msgid "new version"
809
+ msgstr "new version"
810
+
811
+ #: includes/class-fs-plugin-updater.php:301
812
+ msgid "Important Upgrade Notice:"
813
+ msgstr "Important Upgrade Notice:"
814
+
815
+ #: includes/class-fs-plugin-updater.php:1121
816
+ msgid "Installing plugin: %s"
817
+ msgstr "Installation du plugin : %s"
818
+
819
+ #: includes/class-fs-plugin-updater.php:1162
820
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
821
+ msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
822
+
823
+ #: includes/class-fs-plugin-updater.php:1335
824
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
+ msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer."
826
+
827
+ #: includes/fs-plugin-info-dialog.php369,
828
+ #: templates/account/partials/addon.php:292
829
+ msgctxt "verb"
830
+ msgid "Purchase"
831
+ msgstr "Acheter"
832
+
833
+ #: includes/fs-plugin-info-dialog.php:372
834
+ msgid "Start my free %s"
835
+ msgstr "Commencer ma %s gratuite"
836
+
837
+ #: includes/fs-plugin-info-dialog.php:413
838
+ msgid "Install Free Version Now"
839
+ msgstr "Installer la version gratuite maintenant"
840
+
841
+ #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
842
+ #: templates/account/partials/addon.php272,
843
+ #: templates/account/partials/addon.php:322
844
+ msgid "Install Now"
845
+ msgstr "Installer maintenant"
846
+
847
+ #: includes/fs-plugin-info-dialog.php:425
848
+ msgctxt "as download latest version"
849
+ msgid "Download Latest Free Version"
850
+ msgstr "Télécharger la dernière version gratuite"
851
+
852
+ #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
853
+ #: templates/account/partials/addon.php:21
854
+ msgctxt "as download latest version"
855
+ msgid "Download Latest"
856
+ msgstr "Télécharger la dernière version"
857
+
858
+ #: includes/fs-plugin-info-dialog.php:436
859
+ msgid "Install Free Version Update Now"
860
+ msgstr "Installer la dernière mise à jour gratuite maintenant"
861
+
862
+ #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
863
+ msgid "Install Update Now"
864
+ msgstr "Installer la mise à jour maintenant"
865
+
866
+ #: includes/fs-plugin-info-dialog.php:448
867
+ msgid "Newer Free Version (%s) Installed"
868
+ msgstr "La nouvelle version gratuite ( %s ) a été installé"
869
+
870
+ #: includes/fs-plugin-info-dialog.php:449
871
+ msgid "Newer Version (%s) Installed"
872
+ msgstr "Nouvelle Version (%s) Installée"
873
+
874
+ #: includes/fs-plugin-info-dialog.php:457
875
+ msgid "Latest Free Version Installed"
876
+ msgstr "La dernière version gratuite a été installé"
877
+
878
+ #: includes/fs-plugin-info-dialog.php:458
879
+ msgid "Latest Version Installed"
880
+ msgstr "Dernière Version Installée"
881
+
882
+ #: includes/fs-plugin-info-dialog.php:613
883
+ msgctxt "Plugin installer section title"
884
+ msgid "Description"
885
+ msgstr "Description"
886
+
887
+ #: includes/fs-plugin-info-dialog.php:614
888
+ msgctxt "Plugin installer section title"
889
+ msgid "Installation"
890
+ msgstr "Installation"
891
+
892
+ #: includes/fs-plugin-info-dialog.php:615
893
+ msgctxt "Plugin installer section title"
894
+ msgid "FAQ"
895
+ msgstr "FAQ"
896
+
897
+ #: includes/fs-plugin-info-dialog.php616,
898
+ #: templates/plugin-info/description.php:55
899
+ msgid "Screenshots"
900
+ msgstr "Captures d'écran"
901
+
902
+ #: includes/fs-plugin-info-dialog.php:617
903
+ msgctxt "Plugin installer section title"
904
+ msgid "Changelog"
905
+ msgstr "Changelog"
906
+
907
+ #: includes/fs-plugin-info-dialog.php:618
908
+ msgctxt "Plugin installer section title"
909
+ msgid "Reviews"
910
+ msgstr "Commentaires"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:619
913
+ msgctxt "Plugin installer section title"
914
+ msgid "Other Notes"
915
+ msgstr "Autres Informations"
916
+
917
+ #: includes/fs-plugin-info-dialog.php:634
918
+ msgctxt "Plugin installer section title"
919
+ msgid "Features & Pricing"
920
+ msgstr "Fonctionnalités & Tarifs"
921
+
922
+ #: includes/fs-plugin-info-dialog.php:644
923
+ msgid "Plugin Install"
924
+ msgstr "Installation du Plugin"
925
+
926
+ #: includes/fs-plugin-info-dialog.php:716
927
+ msgctxt "e.g. Professional Plan"
928
+ msgid "%s Plan"
929
+ msgstr "Formule %s"
930
+
931
+ #: includes/fs-plugin-info-dialog.php:742
932
+ msgctxt "e.g. the best product"
933
+ msgid "Best"
934
+ msgstr "Best"
935
+
936
+ #: includes/fs-plugin-info-dialog.php748,
937
+ #: includes/fs-plugin-info-dialog.php:768
938
+ msgctxt "as every month"
939
+ msgid "Monthly"
940
+ msgstr "Mensuel"
941
+
942
+ #: includes/fs-plugin-info-dialog.php:751
943
+ msgctxt "as once a year"
944
+ msgid "Annual"
945
+ msgstr "Annuel"
946
+
947
+ #: includes/fs-plugin-info-dialog.php:754
948
+ msgid "Lifetime"
949
+ msgstr "À vie"
950
+
951
+ #: includes/fs-plugin-info-dialog.php768,
952
+ #: includes/fs-plugin-info-dialog.php770,
953
+ #: includes/fs-plugin-info-dialog.php:772
954
+ msgctxt "e.g. billed monthly"
955
+ msgid "Billed %s"
956
+ msgstr "%s Facturé"
957
+
958
+ #: includes/fs-plugin-info-dialog.php:770
959
+ msgctxt "as once a year"
960
+ msgid "Annually"
961
+ msgstr "Annuel"
962
+
963
+ #: includes/fs-plugin-info-dialog.php:772
964
+ msgctxt "as once a year"
965
+ msgid "Once"
966
+ msgstr "Une fois"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:778
969
+ msgid "Single Site License"
970
+ msgstr "Licence 1 site"
971
+
972
+ #: includes/fs-plugin-info-dialog.php:780
973
+ msgid "Unlimited Licenses"
974
+ msgstr "Licences sites illimités"
975
+
976
+ #: includes/fs-plugin-info-dialog.php:782
977
+ msgid "Up to %s Sites"
978
+ msgstr "Jusqu'à %s Sites"
979
+
980
+ #: includes/fs-plugin-info-dialog.php792,
981
+ #: templates/plugin-info/features.php:82
982
+ msgctxt "as monthly period"
983
+ msgid "mo"
984
+ msgstr "mois"
985
+
986
+ #: includes/fs-plugin-info-dialog.php799,
987
+ #: templates/plugin-info/features.php:80
988
+ msgctxt "as annual period"
989
+ msgid "year"
990
+ msgstr "année"
991
+
992
+ #: includes/fs-plugin-info-dialog.php:853
993
+ msgctxt "noun"
994
+ msgid "Price"
995
+ msgstr "Tarif"
996
+
997
+ #: includes/fs-plugin-info-dialog.php:901
998
+ msgid "Save %s"
999
+ msgstr "Économisez %s"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:911
1002
+ msgid "No commitment for %s - cancel anytime"
1003
+ msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:914
1006
+ msgid "After your free %s, pay as little as %s"
1007
+ msgstr "Après vos %s gratuits, payez seulement %s"
1008
+
1009
+ #: includes/fs-plugin-info-dialog.php:925
1010
+ msgid "Details"
1011
+ msgstr "Détails"
1012
+
1013
+ #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1014
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1015
+ #: templates/account/partials/addon.php:32
1016
+ msgctxt "product version"
1017
+ msgid "Version"
1018
+ msgstr "Version"
1019
+
1020
+ #: includes/fs-plugin-info-dialog.php:936
1021
+ msgctxt "as the plugin author"
1022
+ msgid "Author"
1023
+ msgstr "Auteur"
1024
+
1025
+ #: includes/fs-plugin-info-dialog.php:943
1026
+ msgid "Last Updated"
1027
+ msgstr "Dernière mise à jour"
1028
+
1029
+ #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1030
+ msgctxt "x-ago"
1031
+ msgid "%s ago"
1032
+ msgstr "Il y a %s"
1033
+
1034
+ #: includes/fs-plugin-info-dialog.php:957
1035
+ msgid "Requires WordPress Version"
1036
+ msgstr "Version de WordPress requise"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:958
1039
+ msgid "%s or higher"
1040
+ msgstr "%s ou plus"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:965
1043
+ msgid "Compatible up to"
1044
+ msgstr "Compatible jusqu'à"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:973
1047
+ msgid "Downloaded"
1048
+ msgstr "Téléchargé"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:977
1051
+ msgid "%s time"
1052
+ msgstr "%s fois"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php:979
1055
+ msgid "%s times"
1056
+ msgstr "%s fois"
1057
+
1058
+ #: includes/fs-plugin-info-dialog.php:989
1059
+ msgid "WordPress.org Plugin Page"
1060
+ msgstr "Page WordPress.org du plugin"
1061
+
1062
+ #: includes/fs-plugin-info-dialog.php:997
1063
+ msgid "Plugin Homepage"
1064
+ msgstr "Site Web du plugin"
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php1005,
1067
+ #: includes/fs-plugin-info-dialog.php:1087
1068
+ msgid "Donate to this plugin"
1069
+ msgstr "Faire une donation pour ce plugin"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1012
1072
+ msgid "Average Rating"
1073
+ msgstr "Note moyenne"
1074
+
1075
+ #: includes/fs-plugin-info-dialog.php:1019
1076
+ msgid "based on %s"
1077
+ msgstr "Basé sur %s"
1078
+
1079
+ #: includes/fs-plugin-info-dialog.php:1023
1080
+ msgid "%s rating"
1081
+ msgstr "%s notation"
1082
+
1083
+ #: includes/fs-plugin-info-dialog.php:1025
1084
+ msgid "%s ratings"
1085
+ msgstr "%snotations "
1086
+
1087
+ #: includes/fs-plugin-info-dialog.php:1040
1088
+ msgid "%s star"
1089
+ msgstr "%s étoile"
1090
+
1091
+ #: includes/fs-plugin-info-dialog.php:1042
1092
+ msgid "%s stars"
1093
+ msgstr "%s étoiles"
1094
+
1095
+ #: includes/fs-plugin-info-dialog.php:1053
1096
+ msgid "Click to see reviews that provided a rating of %s"
1097
+ msgstr "Cliquez pour voir les avis avec une notation de %s"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1066
1100
+ msgid "Contributors"
1101
+ msgstr "Contributeurs"
1102
+
1103
+ #: includes/fs-plugin-info-dialog.php1095,
1104
+ #: includes/fs-plugin-info-dialog.php:1097
1105
+ msgid "Warning"
1106
+ msgstr "Attention"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php:1095
1109
+ msgid "This plugin has not been tested with your current version of WordPress."
1110
+ msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1111
+
1112
+ #: includes/fs-plugin-info-dialog.php:1097
1113
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1114
+ msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1115
+
1116
+ #: includes/fs-plugin-info-dialog.php:1116
1117
+ msgid "Paid add-on must be deployed to Freemius."
1118
+ msgstr "Les add-ons payant doivent être déposés sur Freemius"
1119
+
1120
+ #: includes/fs-plugin-info-dialog.php:1117
1121
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1122
+ msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1123
+
1124
+ #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1125
+ #: templates/account/partials/addon.php22,
1126
+ #: templates/account/partials/site.php:295
1127
+ msgid "Downgrading your plan"
1128
+ msgstr "Downgrading your plan"
1129
+
1130
+ #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1131
+ #: templates/account/partials/addon.php23,
1132
+ #: templates/account/partials/site.php:296
1133
+ msgid "Cancelling the subscription"
1134
+ msgstr "Cancelling the subscription"
1135
+
1136
+ #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1137
+ #. subscription'
1138
+ #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1139
+ #: templates/account/partials/addon.php25,
1140
+ #: templates/account/partials/site.php:298
1141
+ msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1142
+ msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
+
1144
+ #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1145
+ #: templates/account/partials/addon.php26,
1146
+ #: templates/account/partials/site.php:299
1147
+ msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1148
+ msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
+
1150
+ #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1151
+ #: templates/account/partials/addon.php:27
1152
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1153
+ msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1154
+
1155
+ #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1156
+ #: templates/account/partials/addon.php28,
1157
+ #: templates/account/partials/site.php:300
1158
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1159
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
+
1161
+ #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1162
+ #: templates/account/partials/addon.php29,
1163
+ #: templates/account/partials/site.php:301
1164
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1165
+ msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s."
1166
+
1167
+ #. translators: %s: Plan title (e.g. "Professional")
1168
+ #: templates/account.php90,
1169
+ #: templates/account/partials/activate-license-button.php31,
1170
+ #: templates/account/partials/addon.php:31
1171
+ msgid "Activate %s Plan"
1172
+ msgstr "Activer la formule %s"
1173
+
1174
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1175
+ #: templates/account.php93, templates/account/partials/addon.php34,
1176
+ #: templates/account/partials/site.php:275
1177
+ msgid "Auto renews in %s"
1178
+ msgstr "Renouvellements automatique dans %s"
1179
+
1180
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1181
+ #: templates/account.php95, templates/account/partials/addon.php36,
1182
+ #: templates/account/partials/site.php:277
1183
+ msgid "Expires in %s"
1184
+ msgstr "Expire dans %s"
1185
+
1186
+ #: templates/account.php96, templates/account/partials/addon.php:37
1187
+ msgctxt "as synchronize license"
1188
+ msgid "Sync License"
1189
+ msgstr "Synchroniser la licence"
1190
+
1191
+ #: templates/account.php97, templates/account/partials/addon.php:38
1192
+ msgid "Cancel Trial"
1193
+ msgstr "Annuler la période d'essai"
1194
+
1195
+ #: templates/account.php98, templates/account/partials/addon.php:39
1196
+ msgid "Change Plan"
1197
+ msgstr "Changer de formule"
1198
+
1199
+ #: templates/account.php99, templates/account/partials/addon.php:40
1200
+ msgctxt "verb"
1201
+ msgid "Upgrade"
1202
+ msgstr "Mise à jour"
1203
+
1204
+ #: templates/account.php101, templates/account/partials/addon.php42,
1205
+ #: templates/account/partials/site.php:302
1206
+ msgctxt "verb"
1207
+ msgid "Downgrade"
1208
+ msgstr "Rétrograder"
1209
+
1210
+ #: templates/account.php103, templates/add-ons.php130,
1211
+ #: templates/plugin-info/features.php72,
1212
+ #: templates/account/partials/addon.php44,
1213
+ #: templates/account/partials/site.php:31
1214
+ msgid "Free"
1215
+ msgstr "Gratuit"
1216
+
1217
+ #: templates/account.php104, templates/account/partials/addon.php:45
1218
+ msgid "Activate"
1219
+ msgstr "Activer"
1220
+
1221
+ #: templates/account.php105, templates/debug.php371,
1222
+ #: includes/customizer/class-fs-customizer-upsell-control.php106,
1223
+ #: templates/account/partials/addon.php:46
1224
+ msgctxt "as product pricing plan"
1225
+ msgid "Plan"
1226
+ msgstr "Formule"
1227
+
1228
+ #: templates/account.php:158
1229
+ msgid "Free Trial"
1230
+ msgstr "Essai gratuit"
1231
+
1232
+ #: templates/account.php:169
1233
+ msgid "Account Details"
1234
+ msgstr "Détails du compte"
1235
+
1236
+ #: templates/account.php:179
1237
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1238
+ msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? "
1239
+
1240
+ #: templates/account.php:181
1241
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1242
+ msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?"
1243
+
1244
+ #: templates/account.php:184
1245
+ msgid "Delete Account"
1246
+ msgstr "Supprimer le compte"
1247
+
1248
+ #: templates/account.php196, templates/account/partials/addon.php159,
1249
+ #: templates/account/partials/deactivate-license-button.php:35
1250
+ msgid "Deactivate License"
1251
+ msgstr "Désactiver la licence"
1252
+
1253
+ #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1254
+ msgid "Are you sure you want to proceed?"
1255
+ msgstr "Êtes-vous de vouloir continuer ?"
1256
+
1257
+ #: templates/account.php219, templates/account/partials/addon.php:182
1258
+ msgid "Cancel Subscription"
1259
+ msgstr "Annuler l'abonnement"
1260
+
1261
+ #: templates/account.php:247
1262
+ msgctxt "as synchronize"
1263
+ msgid "Sync"
1264
+ msgstr "Synchroniser"
1265
+
1266
+ #: templates/account.php261, templates/debug.php:487
1267
+ msgid "Name"
1268
+ msgstr "Nom"
1269
+
1270
+ #: templates/account.php267, templates/debug.php:488
1271
+ msgid "Email"
1272
+ msgstr "Email"
1273
+
1274
+ #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1275
+ msgid "User ID"
1276
+ msgstr "User ID"
1277
+
1278
+ #: templates/account.php:282
1279
+ msgid "Site ID"
1280
+ msgstr "Site ID"
1281
+
1282
+ #: templates/account.php:285
1283
+ msgid "No ID"
1284
+ msgstr "ID manquant"
1285
+
1286
+ #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1287
+ #: templates/debug.php453, templates/debug.php490,
1288
+ #: templates/account/partials/site.php:219
1289
+ msgid "Public Key"
1290
+ msgstr "Clef publique"
1291
+
1292
+ #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1293
+ #: templates/debug.php491, templates/account/partials/site.php:231
1294
+ msgid "Secret Key"
1295
+ msgstr "Clef secrête"
1296
+
1297
+ #: templates/account.php:299
1298
+ msgctxt "as secret encryption key missing"
1299
+ msgid "No Secret"
1300
+ msgstr "Clef secrète manquante"
1301
+
1302
+ #: templates/account.php318, templates/account/partials/site.php112,
1303
+ #: templates/account/partials/site.php:114
1304
+ msgid "Trial"
1305
+ msgstr "Période d'essai"
1306
+
1307
+ #: templates/account.php337, templates/debug.php531,
1308
+ #: templates/account/partials/site.php:248
1309
+ msgid "License Key"
1310
+ msgstr "Clef de licence"
1311
+
1312
+ #: templates/account.php:367
1313
+ msgid "not verified"
1314
+ msgstr "Non vérifié"
1315
+
1316
+ #: templates/account.php376, templates/account/partials/addon.php:120
1317
+ msgid "Expired"
1318
+ msgstr "Expiré"
1319
+
1320
+ #: templates/account.php:428
1321
+ msgid "Premium version"
1322
+ msgstr "Version premium"
1323
+
1324
+ #: templates/account.php:430
1325
+ msgid "Free version"
1326
+ msgstr "Version gratuite"
1327
+
1328
+ #: templates/account.php:442
1329
+ msgid "Verify Email"
1330
+ msgstr "Vérifier l'email"
1331
+
1332
+ #: templates/account.php:453
1333
+ msgid "Download %s Version"
1334
+ msgstr "Télécharger la version %s"
1335
+
1336
+ #: templates/account.php467, templates/account.php649,
1337
+ #: templates/account/partials/site.php237,
1338
+ #: templates/account/partials/site.php:255
1339
+ msgctxt "verb"
1340
+ msgid "Show"
1341
+ msgstr "Afficher"
1342
+
1343
+ #: templates/account.php:481
1344
+ msgid "What is your %s?"
1345
+ msgstr "Quel est votre %s ?"
1346
+
1347
+ #: templates/account.php489, templates/account/billing.php:27
1348
+ msgctxt "verb"
1349
+ msgid "Edit"
1350
+ msgstr "Éditer"
1351
+
1352
+ #: templates/account.php:502
1353
+ msgid "Sites"
1354
+ msgstr "Sites"
1355
+
1356
+ #: templates/account.php:513
1357
+ msgid "Search by address"
1358
+ msgstr "Recherche par adresse"
1359
+
1360
+ #: templates/account.php522, templates/account.php570, templates/debug.php236,
1361
+ #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1362
+ #: templates/debug.php524, templates/debug.php597,
1363
+ #: templates/account/payments.php35, templates/debug/logger.php:21
1364
+ msgid "ID"
1365
+ msgstr "ID"
1366
+
1367
+ #: templates/account.php523, templates/debug.php:367
1368
+ msgid "Address"
1369
+ msgstr "Adresse"
1370
+
1371
+ #: templates/account.php:524
1372
+ msgid "License"
1373
+ msgstr "Licence"
1374
+
1375
+ #: templates/account.php:525
1376
+ msgid "Plan"
1377
+ msgstr "Formule"
1378
+
1379
+ #: templates/account.php:573
1380
+ msgctxt "as software license"
1381
+ msgid "License"
1382
+ msgstr "Licence"
1383
+
1384
+ #: templates/account.php:643
1385
+ msgctxt "verb"
1386
+ msgid "Hide"
1387
+ msgstr "Cacher"
1388
+
1389
+ #: templates/account.php:686
1390
+ msgid "Cancelling %s"
1391
+ msgstr "Cancelling %s"
1392
+
1393
+ #: templates/account.php686, templates/account.php703,
1394
+ #: templates/forms/subscription-cancellation.php27,
1395
+ #: templates/forms/deactivation/form.php:117
1396
+ msgid "trial"
1397
+ msgstr "trial"
1398
+
1399
+ #: templates/account.php701, templates/forms/deactivation/form.php:134
1400
+ msgid "Cancelling %s..."
1401
+ msgstr "Cancelling %s..."
1402
+
1403
+ #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1404
+ #: templates/forms/deactivation/form.php:118
1405
+ msgid "subscription"
1406
+ msgstr "subscription"
1407
+
1408
+ #: templates/account.php:718
1409
+ msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1410
+ msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?"
1411
+
1412
+ #: templates/add-ons.php:36
1413
+ msgid "Add Ons for %s"
1414
+ msgstr "Add Ons pour %s"
1415
+
1416
+ #: templates/add-ons.php:44
1417
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1418
+ msgstr "Nous n'avons pas pu charger la liste des add-ons. C'est probablement une difficulté de notre côté, merci de d'essayer à nouveau dans quelques minutes."
1419
+
1420
+ #: templates/add-ons.php:139
1421
+ msgid "View details"
1422
+ msgstr "Voir les détails"
1423
+
1424
+ #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1425
+ #: templates/forms/resend-key.php:77
1426
+ msgctxt "as close a window"
1427
+ msgid "Dismiss"
1428
+ msgstr "Fermer"
1429
+
1430
+ #: templates/auto-installation.php:45
1431
+ msgid "%s sec"
1432
+ msgstr "%s sec"
1433
+
1434
+ #: templates/auto-installation.php:83
1435
+ msgid "Automatic Installation"
1436
+ msgstr "Installation automatique"
1437
+
1438
+ #: templates/auto-installation.php:93
1439
+ msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1440
+ msgstr "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."
1441
+
1442
+ #: templates/auto-installation.php:104
1443
+ msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1444
+ msgstr "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."
1445
+
1446
+ #: templates/auto-installation.php:109
1447
+ msgid "Cancel Installation"
1448
+ msgstr "Annuler l'installation"
1449
+
1450
+ #: templates/checkout.php:172
1451
+ msgid "Checkout"
1452
+ msgstr "Paiement"
1453
+
1454
+ #: templates/checkout.php:172
1455
+ msgid "PCI compliant"
1456
+ msgstr "Compatible PCI"
1457
+
1458
+ #. translators: %s: name (e.g. Hey John,)
1459
+ #: templates/connect.php:112
1460
+ msgctxt "greeting"
1461
+ msgid "Hey %s,"
1462
+ msgstr "Hey %s,"
1463
+
1464
+ #: templates/connect.php:154
1465
+ msgid "Allow & Continue"
1466
+ msgstr "Autoriser & Continuer"
1467
+
1468
+ #: templates/connect.php:158
1469
+ msgid "Re-send activation email"
1470
+ msgstr "Renvoyer l'email d'activation"
1471
+
1472
+ #: templates/connect.php:162
1473
+ msgid "Thanks %s!"
1474
+ msgstr "Merci %s !"
1475
+
1476
+ #: templates/connect.php172, templates/forms/license-activation.php:43
1477
+ msgid "Agree & Activate License"
1478
+ msgstr "Valider & Activer la licence"
1479
+
1480
+ #: templates/connect.php:181
1481
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1482
+ msgstr "Merci d'avoir acheté %s ! Pour commencer, veuillez indiquer votre clef de licence :"
1483
+
1484
+ #: templates/connect.php:188
1485
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1486
+ msgstr "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."
1487
+
1488
+ #: templates/connect.php:189
1489
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1490
+ msgstr "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."
1491
+
1492
+ #: templates/connect.php:195
1493
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1494
+ msgstr "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."
1495
+
1496
+ #: templates/connect.php:196
1497
+ msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1498
+ msgstr "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."
1499
+
1500
+ #: templates/connect.php:230
1501
+ msgid "We're excited to introduce the Freemius network-level integration."
1502
+ msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau."
1503
+
1504
+ #: templates/connect.php:233
1505
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1506
+ msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence."
1507
+
1508
+ #: templates/connect.php:235
1509
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1510
+ msgstr "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."
1511
+
1512
+ #: templates/connect.php:237
1513
+ msgid "%s's paid features"
1514
+ msgstr "Fonctionnalités payantes de %s"
1515
+
1516
+ #: templates/connect.php:242
1517
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1518
+ msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s."
1519
+
1520
+ #: templates/connect.php:244
1521
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1522
+ msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1523
+
1524
+ #: templates/connect.php253, templates/forms/license-activation.php:46
1525
+ msgid "License key"
1526
+ msgstr "Clef de licence"
1527
+
1528
+ #: templates/connect.php256, templates/forms/license-activation.php:19
1529
+ msgid "Can't find your license key?"
1530
+ msgstr "Vous ne trouvez pas votre clef de licence ?"
1531
+
1532
+ #: templates/connect.php315, templates/connect.php630,
1533
+ #: templates/forms/deactivation/retry-skip.php:20
1534
+ msgctxt "verb"
1535
+ msgid "Skip"
1536
+ msgstr "Passer"
1537
+
1538
+ #: templates/connect.php:318
1539
+ msgid "Delegate to Site Admins"
1540
+ msgstr "Déléguer aux administrateurs du site"
1541
+
1542
+ #: templates/connect.php:318
1543
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1544
+ msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites."
1545
+
1546
+ #: templates/connect.php:346
1547
+ msgid "Your Profile Overview"
1548
+ msgstr "Résumé de votre profil"
1549
+
1550
+ #: templates/connect.php:347
1551
+ msgid "Name and email address"
1552
+ msgstr "Nom et adresse email"
1553
+
1554
+ #: templates/connect.php:352
1555
+ msgid "Your Site Overview"
1556
+ msgstr "Résumé de votre site"
1557
+
1558
+ #: templates/connect.php:353
1559
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1560
+ msgstr "Site URL, WP version, PHP info, plugins & themes"
1561
+
1562
+ #: templates/connect.php:358
1563
+ msgid "Admin Notices"
1564
+ msgstr "Notifications Administrateur"
1565
+
1566
+ #: templates/connect.php359, templates/connect.php:375
1567
+ msgid "Updates, announcements, marketing, no spam"
1568
+ msgstr "Mises à jour, annonces, marketing, pas de spam"
1569
+
1570
+ #: templates/connect.php:364
1571
+ msgid "Current %s Events"
1572
+ msgstr "Évènements du %s actuel"
1573
+
1574
+ #: templates/connect.php:365
1575
+ msgid "Activation, deactivation and uninstall"
1576
+ msgstr "Activation, désactivation et désintallation"
1577
+
1578
+ #: templates/connect.php:374
1579
+ msgid "Newsletter"
1580
+ msgstr "Newsletter"
1581
+
1582
+ #: templates/connect.php391, templates/forms/license-activation.php:38
1583
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1584
+ msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence."
1585
+
1586
+ #: templates/connect.php:396
1587
+ msgid "What permissions are being granted?"
1588
+ msgstr "Quelles autorisations sont accordées ?"
1589
+
1590
+ #: templates/connect.php:417
1591
+ msgid "Don't have a license key?"
1592
+ msgstr "Vous n'avez pas de clef de licence ?"
1593
+
1594
+ #: templates/connect.php:418
1595
+ msgid "Activate Free Version"
1596
+ msgstr "Activez la version gratuite"
1597
+
1598
+ #: templates/connect.php:420
1599
+ msgid "Have a license key?"
1600
+ msgstr "Vous avez une clef de licence ?"
1601
+
1602
+ #: templates/connect.php:428
1603
+ msgid "Privacy Policy"
1604
+ msgstr "Politique de confidentialité"
1605
+
1606
+ #: templates/connect.php:430
1607
+ msgid "License Agreement"
1608
+ msgstr "License Agreement"
1609
+
1610
+ #: templates/connect.php:430
1611
+ msgid "Terms of Service"
1612
+ msgstr "Conditions générales de service"
1613
+
1614
+ #: templates/connect.php:766
1615
+ msgctxt "as in the process of sending an email"
1616
+ msgid "Sending email"
1617
+ msgstr "Email en cours d'envoi"
1618
+
1619
+ #: templates/connect.php:767
1620
+ msgctxt "as activating plugin"
1621
+ msgid "Activating"
1622
+ msgstr "Activation en cours"
1623
+
1624
+ #: templates/contact.php:78
1625
+ msgid "Contact"
1626
+ msgstr "Contact"
1627
+
1628
+ #: templates/debug.php:17
1629
+ msgctxt "as turned off"
1630
+ msgid "Off"
1631
+ msgstr "Off"
1632
+
1633
+ #: templates/debug.php:18
1634
+ msgctxt "as turned on"
1635
+ msgid "On"
1636
+ msgstr "On"
1637
+
1638
+ #: templates/debug.php:20
1639
+ msgid "SDK"
1640
+ msgstr "SDK"
1641
+
1642
+ #: templates/debug.php:24
1643
+ msgctxt "as code debugging"
1644
+ msgid "Debugging"
1645
+ msgstr "Debuggage"
1646
+
1647
+ #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1648
+ #: templates/debug.php:492
1649
+ msgid "Actions"
1650
+ msgstr "Actions"
1651
+
1652
+ #: templates/debug.php:64
1653
+ msgid "Are you sure you want to delete all Freemius data?"
1654
+ msgstr "Êtes-vous sûr de vouloir supprimer toutes les données de Freemius ?"
1655
+
1656
+ #: templates/debug.php:64
1657
+ msgid "Delete All Accounts"
1658
+ msgstr "Supprimer tous les comptes"
1659
+
1660
+ #: templates/debug.php:71
1661
+ msgid "Clear API Cache"
1662
+ msgstr "Vider le cache API"
1663
+
1664
+ #: templates/debug.php:79
1665
+ msgid "Clear Updates Transients"
1666
+ msgstr "Vider les transients de mise à jour"
1667
+
1668
+ #: templates/debug.php:86
1669
+ msgid "Sync Data From Server"
1670
+ msgstr "Synchronisation des données depuis le serveur"
1671
+
1672
+ #: templates/debug.php:95
1673
+ msgid "Migrate Options to Network"
1674
+ msgstr "Migrate Options to Network"
1675
+
1676
+ #: templates/debug.php:100
1677
+ msgid "Load DB Option"
1678
+ msgstr "Chargement des options de la base de données"
1679
+
1680
+ #: templates/debug.php:103
1681
+ msgid "Set DB Option"
1682
+ msgstr "Mise en place des options de la base de données"
1683
+
1684
+ #: templates/debug.php:180
1685
+ msgid "Key"
1686
+ msgstr "Clef"
1687
+
1688
+ #: templates/debug.php:181
1689
+ msgid "Value"
1690
+ msgstr "Valeur"
1691
+
1692
+ #: templates/debug.php:197
1693
+ msgctxt "as software development kit versions"
1694
+ msgid "SDK Versions"
1695
+ msgstr "Versions du SDK"
1696
+
1697
+ #: templates/debug.php:202
1698
+ msgid "SDK Path"
1699
+ msgstr "Chemin d'accès du SDK"
1700
+
1701
+ #: templates/debug.php203, templates/debug.php:242
1702
+ msgid "Module Path"
1703
+ msgstr "Chemin d'accès du module"
1704
+
1705
+ #: templates/debug.php:204
1706
+ msgid "Is Active"
1707
+ msgstr "Est actif"
1708
+
1709
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1710
+ msgid "Plugins"
1711
+ msgstr "Plugins"
1712
+
1713
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1714
+ msgid "Themes"
1715
+ msgstr "Thèmes"
1716
+
1717
+ #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1718
+ #: templates/debug/scheduled-crons.php:80
1719
+ msgid "Slug"
1720
+ msgstr "Slug"
1721
+
1722
+ #: templates/debug.php239, templates/debug.php:450
1723
+ msgid "Title"
1724
+ msgstr "Titre"
1725
+
1726
+ #: templates/debug.php:240
1727
+ msgctxt "as application program interface"
1728
+ msgid "API"
1729
+ msgstr "API"
1730
+
1731
+ #: templates/debug.php:241
1732
+ msgid "Freemius State"
1733
+ msgstr "État de Freemius"
1734
+
1735
+ #: templates/debug.php:245
1736
+ msgid "Network Blog"
1737
+ msgstr "Réseau de Blog"
1738
+
1739
+ #: templates/debug.php:246
1740
+ msgid "Network User"
1741
+ msgstr "Réseau d'Utilisateur"
1742
+
1743
+ #: templates/debug.php:283
1744
+ msgctxt "as connection was successful"
1745
+ msgid "Connected"
1746
+ msgstr "Connecté"
1747
+
1748
+ #: templates/debug.php:284
1749
+ msgctxt "as connection blocked"
1750
+ msgid "Blocked"
1751
+ msgstr "Bloqué"
1752
+
1753
+ #: templates/debug.php:320
1754
+ msgid "Simulate Trial Promotion"
1755
+ msgstr "Simulate Trial Promotion"
1756
+
1757
+ #: templates/debug.php:332
1758
+ msgid "Simulate Network Upgrade"
1759
+ msgstr "Simuler la mise à jour du réseau"
1760
+
1761
+ #: templates/debug.php:358
1762
+ msgid "%s Installs"
1763
+ msgstr "%s Installations"
1764
+
1765
+ #: templates/debug.php:360
1766
+ msgctxt "like websites"
1767
+ msgid "Sites"
1768
+ msgstr "Sites"
1769
+
1770
+ #: templates/debug.php366, templates/account/partials/site.php:148
1771
+ msgid "Blog ID"
1772
+ msgstr "Blog ID"
1773
+
1774
+ #: templates/debug.php431, templates/debug.php509,
1775
+ #: templates/account/partials/addon.php:339
1776
+ msgctxt "verb"
1777
+ msgid "Delete"
1778
+ msgstr "Supprimer"
1779
+
1780
+ #: templates/debug.php:445
1781
+ msgid "Add Ons of module %s"
1782
+ msgstr "Add Ons du module %s"
1783
+
1784
+ #: templates/debug.php:482
1785
+ msgid "Users"
1786
+ msgstr "Utilisateurs"
1787
+
1788
+ #: templates/debug.php:489
1789
+ msgid "Verified"
1790
+ msgstr "Vérifié"
1791
+
1792
+ #: templates/debug.php:520
1793
+ msgid "%s Licenses"
1794
+ msgstr "%s Licences"
1795
+
1796
+ #: templates/debug.php:525
1797
+ msgid "Plugin ID"
1798
+ msgstr "ID du plugin"
1799
+
1800
+ #: templates/debug.php:527
1801
+ msgid "Plan ID"
1802
+ msgstr "ID de la formule"
1803
+
1804
+ #: templates/debug.php:528
1805
+ msgid "Quota"
1806
+ msgstr "Quota"
1807
+
1808
+ #: templates/debug.php:529
1809
+ msgid "Activated"
1810
+ msgstr "Activé"
1811
+
1812
+ #: templates/debug.php:530
1813
+ msgid "Blocking"
1814
+ msgstr "Bloquant"
1815
+
1816
+ #: templates/debug.php:532
1817
+ msgctxt "as expiration date"
1818
+ msgid "Expiration"
1819
+ msgstr "Expiration"
1820
+
1821
+ #: templates/debug.php:555
1822
+ msgid "Debug Log"
1823
+ msgstr "Debug Log"
1824
+
1825
+ #: templates/debug.php:559
1826
+ msgid "All Types"
1827
+ msgstr "Tous les types"
1828
+
1829
+ #: templates/debug.php:566
1830
+ msgid "All Requests"
1831
+ msgstr "Toutes les demandes"
1832
+
1833
+ #: templates/debug.php571, templates/debug.php600,
1834
+ #: templates/debug/logger.php:25
1835
+ msgid "File"
1836
+ msgstr "Fichier"
1837
+
1838
+ #: templates/debug.php572, templates/debug.php598,
1839
+ #: templates/debug/logger.php:23
1840
+ msgid "Function"
1841
+ msgstr "Fonction"
1842
+
1843
+ #: templates/debug.php:573
1844
+ msgid "Process ID"
1845
+ msgstr "ID du processus"
1846
+
1847
+ #: templates/debug.php:574
1848
+ msgid "Logger"
1849
+ msgstr "Logger"
1850
+
1851
+ #: templates/debug.php575, templates/debug.php599,
1852
+ #: templates/debug/logger.php:24
1853
+ msgid "Message"
1854
+ msgstr "Message"
1855
+
1856
+ #: templates/debug.php:577
1857
+ msgid "Filter"
1858
+ msgstr "Filter"
1859
+
1860
+ #: templates/debug.php:585
1861
+ msgid "Download"
1862
+ msgstr "Téléchargement"
1863
+
1864
+ #: templates/debug.php596, templates/debug/logger.php:22
1865
+ msgid "Type"
1866
+ msgstr "Type"
1867
+
1868
+ #: templates/debug.php601, templates/debug/logger.php:26
1869
+ msgid "Timestamp"
1870
+ msgstr "Timestamp"
1871
+
1872
+ #: templates/secure-https-header.php:28
1873
+ msgid "Secure HTTPS %s page, running from an external domain"
1874
+ msgstr "Page %s sécurisée HTTPS, s'exécutant sur un domaine externe"
1875
+
1876
+ #: includes/customizer/class-fs-customizer-support-section.php55,
1877
+ #: templates/plugin-info/features.php:43
1878
+ msgid "Support"
1879
+ msgstr "Support"
1880
+
1881
+ #: includes/debug/class-fs-debug-bar-panel.php48,
1882
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1883
+ msgctxt "milliseconds"
1884
+ msgid "ms"
1885
+ msgstr "ms"
1886
+
1887
+ #: includes/debug/debug-bar-start.php:41
1888
+ msgid "Freemius API"
1889
+ msgstr "API Freemius"
1890
+
1891
+ #: includes/debug/debug-bar-start.php:42
1892
+ msgid "Requests"
1893
+ msgstr "Demandes"
1894
+
1895
+ #: templates/account/billing.php:28
1896
+ msgctxt "verb"
1897
+ msgid "Update"
1898
+ msgstr "Mise à jour"
1899
+
1900
+ #: templates/account/billing.php:39
1901
+ msgid "Billing"
1902
+ msgstr "Facturation"
1903
+
1904
+ #: templates/account/billing.php44, templates/account/billing.php:44
1905
+ msgid "Business name"
1906
+ msgstr "Raison sociale"
1907
+
1908
+ #: templates/account/billing.php45, templates/account/billing.php:45
1909
+ msgid "Tax / VAT ID"
1910
+ msgstr "Code TVA"
1911
+
1912
+ #: templates/account/billing.php48, templates/account/billing.php48,
1913
+ #: templates/account/billing.php49, templates/account/billing.php:49
1914
+ msgid "Address Line %d"
1915
+ msgstr "Adresse ligne %d"
1916
+
1917
+ #: templates/account/billing.php52, templates/account/billing.php:52
1918
+ msgid "City"
1919
+ msgstr "Ville"
1920
+
1921
+ #: templates/account/billing.php52, templates/account/billing.php:52
1922
+ msgid "Town"
1923
+ msgstr "Ville"
1924
+
1925
+ #: templates/account/billing.php53, templates/account/billing.php:53
1926
+ msgid "ZIP / Postal Code"
1927
+ msgstr "Code postal"
1928
+
1929
+ #: templates/account/billing.php:308
1930
+ msgid "Country"
1931
+ msgstr "Pays"
1932
+
1933
+ #: templates/account/billing.php:310
1934
+ msgid "Select Country"
1935
+ msgstr "Choisir le pays"
1936
+
1937
+ #: templates/account/billing.php317, templates/account/billing.php:318
1938
+ msgid "State"
1939
+ msgstr "État"
1940
+
1941
+ #: templates/account/billing.php317, templates/account/billing.php:318
1942
+ msgid "Province"
1943
+ msgstr "Région"
1944
+
1945
+ #: templates/account/payments.php:29
1946
+ msgid "Payments"
1947
+ msgstr "Paiements"
1948
+
1949
+ #: templates/account/payments.php:36
1950
+ msgid "Date"
1951
+ msgstr "Date"
1952
+
1953
+ #: templates/account/payments.php:37
1954
+ msgid "Amount"
1955
+ msgstr "Montant"
1956
+
1957
+ #: templates/account/payments.php38, templates/account/payments.php:50
1958
+ msgid "Invoice"
1959
+ msgstr "Facture"
1960
+
1961
+ #: templates/debug/api-calls.php:56
1962
+ msgid "API"
1963
+ msgstr "API"
1964
+
1965
+ #: templates/debug/api-calls.php:68
1966
+ msgid "Method"
1967
+ msgstr "Méthode"
1968
+
1969
+ #: templates/debug/api-calls.php:69
1970
+ msgid "Code"
1971
+ msgstr "Code"
1972
+
1973
+ #: templates/debug/api-calls.php:70
1974
+ msgid "Length"
1975
+ msgstr "Longueur"
1976
+
1977
+ #: templates/debug/api-calls.php:71
1978
+ msgctxt "as file/folder path"
1979
+ msgid "Path"
1980
+ msgstr "Chemin"
1981
+
1982
+ #: templates/debug/api-calls.php:73
1983
+ msgid "Body"
1984
+ msgstr "Body"
1985
+
1986
+ #: templates/debug/api-calls.php:75
1987
+ msgid "Result"
1988
+ msgstr "Résultat"
1989
+
1990
+ #: templates/debug/api-calls.php:76
1991
+ msgid "Start"
1992
+ msgstr "Début"
1993
+
1994
+ #: templates/debug/api-calls.php:77
1995
+ msgid "End"
1996
+ msgstr "Fin"
1997
+
1998
+ #: templates/debug/logger.php:15
1999
+ msgid "Log"
2000
+ msgstr "Log"
2001
+
2002
+ #. translators: %s: time period (e.g. In "2 hours")
2003
+ #: templates/debug/plugins-themes-sync.php18,
2004
+ #: templates/debug/scheduled-crons.php:91
2005
+ msgid "In %s"
2006
+ msgstr "Dans %s"
2007
+
2008
+ #. translators: %s: time period (e.g. "2 hours" ago)
2009
+ #: templates/debug/plugins-themes-sync.php20,
2010
+ #: templates/debug/scheduled-crons.php:93
2011
+ msgid "%s ago"
2012
+ msgstr "Il y a %s"
2013
+
2014
+ #: templates/debug/plugins-themes-sync.php21,
2015
+ #: templates/debug/scheduled-crons.php:74
2016
+ msgctxt "seconds"
2017
+ msgid "sec"
2018
+ msgstr "sec"
2019
+
2020
+ #: templates/debug/plugins-themes-sync.php:23
2021
+ msgid "Plugins & Themes Sync"
2022
+ msgstr "Synchronisation des plugin et des thèmes"
2023
+
2024
+ #: templates/debug/plugins-themes-sync.php:28
2025
+ msgid "Total"
2026
+ msgstr "Total"
2027
+
2028
+ #: templates/debug/plugins-themes-sync.php29,
2029
+ #: templates/debug/scheduled-crons.php:84
2030
+ msgid "Last"
2031
+ msgstr "Dernier"
2032
+
2033
+ #: templates/debug/scheduled-crons.php:76
2034
+ msgid "Scheduled Crons"
2035
+ msgstr "Crons programmés"
2036
+
2037
+ #: templates/debug/scheduled-crons.php:81
2038
+ msgid "Module"
2039
+ msgstr "Module"
2040
+
2041
+ #: templates/debug/scheduled-crons.php:82
2042
+ msgid "Module Type"
2043
+ msgstr "Type de module"
2044
+
2045
+ #: templates/debug/scheduled-crons.php:83
2046
+ msgid "Cron Type"
2047
+ msgstr "Type de Cron"
2048
+
2049
+ #: templates/debug/scheduled-crons.php:85
2050
+ msgid "Next"
2051
+ msgstr "Suivant"
2052
+
2053
+ #: templates/forms/affiliation.php:82
2054
+ msgid "Non-expiring"
2055
+ msgstr "Sans expiration"
2056
+
2057
+ #: templates/forms/affiliation.php:85
2058
+ msgid "Apply to become an affiliate"
2059
+ msgstr "Postuler pour devenir un affilié"
2060
+
2061
+ #: templates/forms/affiliation.php:104
2062
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2063
+ msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s."
2064
+
2065
+ #: templates/forms/affiliation.php:119
2066
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2067
+ msgstr "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."
2068
+
2069
+ #: templates/forms/affiliation.php:122
2070
+ msgid "Your affiliation account was temporarily suspended."
2071
+ msgstr "Votre compte affilié a été suspendu temporairement."
2072
+
2073
+ #: templates/forms/affiliation.php:125
2074
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2075
+ msgstr "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."
2076
+
2077
+ #: templates/forms/affiliation.php:128
2078
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2079
+ msgstr "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."
2080
+
2081
+ #: templates/forms/affiliation.php:141
2082
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2083
+ msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)"
2084
+
2085
+ #: templates/forms/affiliation.php:142
2086
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2087
+ msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez."
2088
+
2089
+ #: templates/forms/affiliation.php:145
2090
+ msgid "Program Summary"
2091
+ msgstr "Sommaire du programme"
2092
+
2093
+ #: templates/forms/affiliation.php:147
2094
+ msgid "%s commission when a customer purchases a new license."
2095
+ msgstr "Commission de %s quand un client achète une nouvelle licence."
2096
+
2097
+ #: templates/forms/affiliation.php:149
2098
+ msgid "Get commission for automated subscription renewals."
2099
+ msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement."
2100
+
2101
+ #: templates/forms/affiliation.php:152
2102
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2103
+ msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain."
2104
+
2105
+ #: templates/forms/affiliation.php:155
2106
+ msgid "Unlimited commissions."
2107
+ msgstr "Commissions illimitées."
2108
+
2109
+ #: templates/forms/affiliation.php:157
2110
+ msgid "%s minimum payout amount."
2111
+ msgstr "Montant de paiement minimum %s."
2112
+
2113
+ #: templates/forms/affiliation.php:158
2114
+ msgid "Payouts are in USD and processed monthly via PayPal."
2115
+ msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal."
2116
+
2117
+ #: templates/forms/affiliation.php:159
2118
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2119
+ msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours."
2120
+
2121
+ #: templates/forms/affiliation.php:162
2122
+ msgid "Affiliate"
2123
+ msgstr "Affiliation"
2124
+
2125
+ #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2126
+ msgid "Email address"
2127
+ msgstr "Adresse email"
2128
+
2129
+ #: templates/forms/affiliation.php:169
2130
+ msgid "Full name"
2131
+ msgstr "Nom complet"
2132
+
2133
+ #: templates/forms/affiliation.php:173
2134
+ msgid "PayPal account email address"
2135
+ msgstr "Adresse email du compte PayPal"
2136
+
2137
+ #: templates/forms/affiliation.php:177
2138
+ msgid "Where are you going to promote the %s?"
2139
+ msgstr "Où allez-vous faire la promotion du %s ? "
2140
+
2141
+ #: templates/forms/affiliation.php:179
2142
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2143
+ msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s"
2144
+
2145
+ #: templates/forms/affiliation.php:181
2146
+ msgid "Add another domain"
2147
+ msgstr "Ajouter une autre adresse"
2148
+
2149
+ #: templates/forms/affiliation.php:185
2150
+ msgid "Extra Domains"
2151
+ msgstr "Adresses supplémentaires"
2152
+
2153
+ #: templates/forms/affiliation.php:186
2154
+ msgid "Extra domains where you will be marketing the product from."
2155
+ msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit."
2156
+
2157
+ #: templates/forms/affiliation.php:196
2158
+ msgid "Promotion methods"
2159
+ msgstr "Méthodes de promotion"
2160
+
2161
+ #: templates/forms/affiliation.php:199
2162
+ msgid "Social media (Facebook, Twitter, etc.)"
2163
+ msgstr "Réseaux sociaux (Facebook, Twitter, etc.)"
2164
+
2165
+ #: templates/forms/affiliation.php:203
2166
+ msgid "Mobile apps"
2167
+ msgstr "Applications mobiles"
2168
+
2169
+ #: templates/forms/affiliation.php:207
2170
+ msgid "Website, email, and social media statistics (optional)"
2171
+ msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)"
2172
+
2173
+ #: templates/forms/affiliation.php:210
2174
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2175
+ msgstr "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)"
2176
+
2177
+ #: templates/forms/affiliation.php:214
2178
+ msgid "How will you promote us?"
2179
+ msgstr "Comment allez-vous faire de la promotion ?"
2180
+
2181
+ #: templates/forms/affiliation.php:217
2182
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2183
+ msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)"
2184
+
2185
+ #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2186
+ msgid "Cancel"
2187
+ msgstr "Annuler"
2188
+
2189
+ #: templates/forms/affiliation.php:225
2190
+ msgid "Become an affiliate"
2191
+ msgstr "Devenir un affilié"
2192
+
2193
+ #: templates/forms/license-activation.php:20
2194
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2195
+ msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :"
2196
+
2197
+ #: templates/forms/license-activation.php:25
2198
+ msgid "Update License"
2199
+ msgstr "Mettre à jour la licence"
2200
+
2201
+ #: templates/forms/optout.php:30
2202
+ msgctxt "verb"
2203
+ msgid "Opt Out"
2204
+ msgstr "Désinscription"
2205
+
2206
+ #: templates/forms/optout.php:31
2207
+ msgctxt "verb"
2208
+ msgid "Opt In"
2209
+ msgstr "Inscription"
2210
+
2211
+ #: templates/forms/optout.php:33
2212
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2213
+ msgstr "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."
2214
+
2215
+ #: templates/forms/optout.php:35
2216
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2217
+ msgstr "En cliquant \"Désincription\", nous n'enverrons plus d'informations de %s à %s."
2218
+
2219
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2220
+ msgid "There is a new version of %s available."
2221
+ msgstr "Il y a une nouvelle version disponible de %s. "
2222
+
2223
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2224
+ msgid " %s to access version %s security & feature updates, and support."
2225
+ msgstr " %s to access version %s security & feature updates, and support."
2226
+
2227
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2228
+ msgid "New Version Available"
2229
+ msgstr "Une nouvelle version est disponible"
2230
+
2231
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2232
+ msgctxt "close a window"
2233
+ msgid "Dismiss"
2234
+ msgstr "Fermer"
2235
+
2236
+ #: templates/forms/resend-key.php:21
2237
+ msgid "Send License Key"
2238
+ msgstr "Envoyer le code de la licence"
2239
+
2240
+ #: templates/forms/resend-key.php:57
2241
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2242
+ msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à jour et nous allons vous renvoyer le code de la licence."
2243
+
2244
+ #: templates/forms/subscription-cancellation.php:37
2245
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2246
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
+
2248
+ #: templates/forms/subscription-cancellation.php:47
2249
+ msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2250
+ msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
+
2252
+ #: templates/forms/subscription-cancellation.php:52
2253
+ msgid "license"
2254
+ msgstr "license"
2255
+
2256
+ #: templates/forms/subscription-cancellation.php:57
2257
+ msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2258
+ msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
+
2260
+ #: templates/forms/subscription-cancellation.php:68
2261
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2262
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
+
2264
+ #: templates/forms/subscription-cancellation.php:103
2265
+ msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2266
+ msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
+
2268
+ #: templates/forms/subscription-cancellation.php:136
2269
+ msgid "Cancel %s?"
2270
+ msgstr "Cancel %s?"
2271
+
2272
+ #: templates/forms/subscription-cancellation.php:143
2273
+ msgid "Proceed"
2274
+ msgstr "Proceed"
2275
+
2276
+ #: templates/forms/subscription-cancellation.php191,
2277
+ #: templates/forms/deactivation/form.php:150
2278
+ msgid "Cancel %s & Proceed"
2279
+ msgstr "Cancel %s & Proceed"
2280
+
2281
+ #: templates/forms/trial-start.php:22
2282
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2283
+ msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s jours de la formule %2$s."
2284
+
2285
+ #: templates/forms/trial-start.php:28
2286
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2287
+ msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai."
2288
+
2289
+ #: templates/js/style-premium-theme.php:37
2290
+ msgid "Premium"
2291
+ msgstr "Premium"
2292
+
2293
+ #: templates/partials/network-activation.php:23
2294
+ msgid "Activate license on all sites in the network."
2295
+ msgstr "Activer la licence sur tous les sites du réseau."
2296
+
2297
+ #: templates/partials/network-activation.php:24
2298
+ msgid "Apply on all sites in the network."
2299
+ msgstr "Effectuer sur tous les sites dans le réseau."
2300
+
2301
+ #: templates/partials/network-activation.php:27
2302
+ msgid "Activate license on all pending sites."
2303
+ msgstr "Activer la licence sur tous les sites en attente."
2304
+
2305
+ #: templates/partials/network-activation.php:28
2306
+ msgid "Apply on all pending sites."
2307
+ msgstr "Activer sur tous les sites en attente."
2308
+
2309
+ #: templates/partials/network-activation.php36,
2310
+ #: templates/partials/network-activation.php:68
2311
+ msgid "allow"
2312
+ msgstr "autoriser"
2313
+
2314
+ #: templates/partials/network-activation.php38,
2315
+ #: templates/partials/network-activation.php:70
2316
+ msgid "delegate"
2317
+ msgstr "déléguer"
2318
+
2319
+ #: templates/partials/network-activation.php41,
2320
+ #: templates/partials/network-activation.php:73
2321
+ msgid "skip"
2322
+ msgstr "passer"
2323
+
2324
+ #: templates/plugin-info/description.php72,
2325
+ #: templates/plugin-info/screenshots.php:31
2326
+ msgid "Click to view full-size screenshot %d"
2327
+ msgstr "Cliquez pour voir la capture d'écran %d en pleine taille"
2328
+
2329
+ #: templates/plugin-info/features.php:56
2330
+ msgid "Unlimited Updates"
2331
+ msgstr "Mises à jour illimitées"
2332
+
2333
+ #: templates/account/partials/activate-license-button.php:46
2334
+ msgid "Localhost"
2335
+ msgstr "Localhost"
2336
+
2337
+ #: templates/account/partials/activate-license-button.php:50
2338
+ msgctxt "as 5 licenses left"
2339
+ msgid "%s left"
2340
+ msgstr "%s restante(s)"
2341
+
2342
+ #: templates/account/partials/activate-license-button.php:51
2343
+ msgid "Last license"
2344
+ msgstr "Dernière licence"
2345
+
2346
+ #: templates/account/partials/addon.php:115
2347
+ msgid "Cancelled"
2348
+ msgstr "Annulé"
2349
+
2350
+ #: templates/account/partials/addon.php:125
2351
+ msgid "No expiration"
2352
+ msgstr "Pas d'expiration"
2353
+
2354
+ #: templates/account/partials/addon.php264,
2355
+ #: templates/account/partials/addon.php:317
2356
+ msgid "Activate this add-on"
2357
+ msgstr "Activer cet add-on"
2358
+
2359
+ #: templates/account/partials/site.php:181
2360
+ msgid "Owner Name"
2361
+ msgstr "Nom du propriétaire"
2362
+
2363
+ #: templates/account/partials/site.php:193
2364
+ msgid "Owner Email"
2365
+ msgstr "Email du propriétaire"
2366
+
2367
+ #: templates/account/partials/site.php:205
2368
+ msgid "Owner ID"
2369
+ msgstr "ID du propriétaire"
2370
+
2371
+ #: templates/account/partials/site.php:270
2372
+ msgid "Subscription"
2373
+ msgstr "Inscription"
2374
+
2375
+ #: templates/forms/deactivation/contact.php:19
2376
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2377
+ msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous nous le permettez."
2378
+
2379
+ #: templates/forms/deactivation/contact.php:22
2380
+ msgid "Contact Support"
2381
+ msgstr "Contacter l'Assistance"
2382
+
2383
+ #: templates/forms/deactivation/form.php:59
2384
+ msgid "Anonymous feedback"
2385
+ msgstr "Commentaire anonyme"
2386
+
2387
+ #: templates/forms/deactivation/form.php:66
2388
+ msgid "Deactivate"
2389
+ msgstr "Désactiver"
2390
+
2391
+ #: templates/forms/deactivation/form.php:68
2392
+ msgid "Activate %s"
2393
+ msgstr "Activer %s"
2394
+
2395
+ #: templates/forms/deactivation/form.php:80
2396
+ msgid "Quick Feedback"
2397
+ msgstr "Quick Feedback"
2398
+
2399
+ #: templates/forms/deactivation/form.php:84
2400
+ msgid "If you have a moment, please let us know why you are %s"
2401
+ msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s"
2402
+
2403
+ #: templates/forms/deactivation/form.php:84
2404
+ msgid "deactivating"
2405
+ msgstr "Désactivation"
2406
+
2407
+ #: templates/forms/deactivation/form.php:84
2408
+ msgid "switching"
2409
+ msgstr "Changement"
2410
+
2411
+ #: templates/forms/deactivation/form.php:332
2412
+ msgid "Submit & %s"
2413
+ msgstr "Envoyer & %s"
2414
+
2415
+ #: templates/forms/deactivation/form.php:353
2416
+ msgid "Kindly tell us the reason so we can improve."
2417
+ msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2418
+
2419
+ #: templates/forms/deactivation/form.php:478
2420
+ msgid "Yes - %s"
2421
+ msgstr "Oui - %s"
2422
+
2423
+ #: templates/forms/deactivation/form.php:485
2424
+ msgid "Skip & %s"
2425
+ msgstr "Passer & %s"
2426
+
2427
+ #: templates/forms/deactivation/retry-skip.php:21
2428
+ msgid "Click here to use the plugin anonymously"
2429
+ msgstr "Cliquer ici pour utiliser le plugin anonymement"
2430
+
2431
+ #: templates/forms/deactivation/retry-skip.php:23
2432
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2433
+ msgstr "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."
freemius/languages/freemius-he_IL.po CHANGED
@@ -1,2434 +1,2434 @@
1
- # Copyright (C) 2018 freemius
2
- # This file is distributed under the same license as the freemius package.
3
- # Translators:
4
- # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
5
- # Vova Feldman <vova@freemius.com>, 2017-2018
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: WordPress SDK\n"
9
- "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
- "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2018-11-25 07:22+0000\n"
12
- "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
- "Language: 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"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
- "X-Poedit-SourceCharset: UTF-8\n"
24
-
25
- #: includes/class-freemius.php:1602
26
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
- msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
-
29
- #: includes/class-freemius.php:1604
30
- msgid "Error"
31
- msgstr "שגיאה"
32
-
33
- #: includes/class-freemius.php:1925
34
- msgid "I found a better %s"
35
- msgstr "מצאתי %s יותר טוב"
36
-
37
- #: includes/class-freemius.php:1927
38
- msgid "What's the %s's name?"
39
- msgstr "What's the %s's name?"
40
-
41
- #: includes/class-freemius.php:1933
42
- msgid "It's a temporary %s. I'm just debugging an issue."
43
- msgstr "It's a temporary %s. I'm just debugging an issue."
44
-
45
- #: includes/class-freemius.php:1935
46
- msgid "Deactivation"
47
- msgstr "דיאקטיבציה"
48
-
49
- #: includes/class-freemius.php:1936
50
- msgid "Theme Switch"
51
- msgstr "החלפת תֵמָה"
52
-
53
- #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
- msgid "Other"
55
- msgstr "אחר"
56
-
57
- #: includes/class-freemius.php:1953
58
- msgid "I no longer need the %s"
59
- msgstr "I no longer need the %s"
60
-
61
- #: includes/class-freemius.php:1960
62
- msgid "I only needed the %s for a short period"
63
- msgstr "I only needed the %s for a short period"
64
-
65
- #: includes/class-freemius.php:1966
66
- msgid "The %s broke my site"
67
- msgstr "ה%s הרס לי את האתר"
68
-
69
- #: includes/class-freemius.php:1973
70
- msgid "The %s suddenly stopped working"
71
- msgstr "ה%s הפסיק פתאום לעבוד"
72
-
73
- #: includes/class-freemius.php:1983
74
- msgid "I can't pay for it anymore"
75
- msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
-
77
- #: includes/class-freemius.php:1985
78
- msgid "What price would you feel comfortable paying?"
79
- msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
-
81
- #: includes/class-freemius.php:1991
82
- msgid "I don't like to share my information with you"
83
- msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
-
85
- #: includes/class-freemius.php:2012
86
- msgid "The %s didn't work"
87
- msgstr "ה%s לא עבד"
88
-
89
- #: includes/class-freemius.php:2022
90
- msgid "I couldn't understand how to make it work"
91
- msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
-
93
- #: includes/class-freemius.php:2030
94
- msgid "The %s is great, but I need specific feature that you don't support"
95
- msgstr "The %s is great, but I need specific feature that you don't support"
96
-
97
- #: includes/class-freemius.php:2032
98
- msgid "What feature?"
99
- msgstr "איזה פיטצ'ר?"
100
-
101
- #: includes/class-freemius.php:2036
102
- msgid "The %s is not working"
103
- msgstr "ה%s לא עובד"
104
-
105
- #: includes/class-freemius.php:2038
106
- msgid "Kindly share what didn't work so we can fix it for future users..."
107
- msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
-
109
- #: includes/class-freemius.php:2042
110
- msgid "It's not what I was looking for"
111
- msgstr "חיפשתי משהו אחר"
112
-
113
- #: includes/class-freemius.php:2044
114
- msgid "What you've been looking for?"
115
- msgstr "מה חיפשת?"
116
-
117
- #: includes/class-freemius.php:2048
118
- msgid "The %s didn't work as expected"
119
- msgstr "ה%s לא עבד כמצופה"
120
-
121
- #: includes/class-freemius.php:2050
122
- msgid "What did you expect?"
123
- msgstr "למה ציפית?"
124
-
125
- #: includes/class-freemius.php2853, templates/debug.php:20
126
- msgid "Freemius Debug"
127
- msgstr "ניפוי תקלות פרימיוס"
128
-
129
- #: includes/class-freemius.php:3581
130
- msgid "I don't know what is cURL or how to install it, help me!"
131
- msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
-
133
- #: includes/class-freemius.php:3583
134
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
- msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
136
-
137
- #: includes/class-freemius.php:3590
138
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
- msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
-
141
- #: includes/class-freemius.php:3695
142
- msgid "Yes - do your thing"
143
- msgstr "כן - בצעו את מה שצריך"
144
-
145
- #: includes/class-freemius.php:3700
146
- msgid "No - just deactivate"
147
- msgstr "לא - פשוט כבה"
148
-
149
- #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
- #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
- #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
- #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
- #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
- #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
- #: includes/class-freemius.php18705, templates/add-ons.php:43
156
- msgctxt "exclamation"
157
- msgid "Oops"
158
- msgstr "אופס"
159
-
160
- #: includes/class-freemius.php:3814
161
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
- msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
163
-
164
- #: includes/class-freemius.php:4250
165
- msgctxt "addonX cannot run without pluginY"
166
- msgid "%s cannot run without %s."
167
- msgstr "%s לא יכול לעבוד ללא %s."
168
-
169
- #: includes/class-freemius.php:4251
170
- msgctxt "addonX cannot run..."
171
- msgid "%s cannot run without the plugin."
172
- msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
-
174
- #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
- #: includes/class-freemius.php:17659
176
- msgid "Unexpected API error. Please contact the %s's author with the following error."
177
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
-
179
- #: includes/class-freemius.php:5006
180
- msgid "Premium %s version was successfully activated."
181
- msgstr "Premium %s version was successfully activated."
182
-
183
- #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
- msgctxt ""
185
- msgid "W00t"
186
- msgstr "יש"
187
-
188
- #: includes/class-freemius.php:5033
189
- msgid "You have a %s license."
190
- msgstr "יש לך רישיון %s."
191
-
192
- #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
- #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
- #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
- #: includes/class-freemius.php:17413
196
- msgctxt "interjection expressing joy or exuberance"
197
- msgid "Yee-haw"
198
- msgstr "יששש"
199
-
200
- #: includes/class-freemius.php:5301
201
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
- msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
-
204
- #: includes/class-freemius.php:5305
205
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
- msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
-
208
- #: includes/class-freemius.php5314, templates/add-ons.php103,
209
- #: templates/account/partials/addon.php:288
210
- msgid "More information about %s"
211
- msgstr "מידע נוסף אודות %s"
212
-
213
- #: includes/class-freemius.php:5315
214
- msgid "Purchase License"
215
- msgstr "קניית רישיון"
216
-
217
- #: includes/class-freemius.php6230, templates/connect.php:163
218
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
- msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
-
221
- #: includes/class-freemius.php:6234
222
- msgid "start the trial"
223
- msgstr "התחל תקופת ניסיון"
224
-
225
- #: includes/class-freemius.php6235, templates/connect.php:167
226
- msgid "complete the install"
227
- msgstr "השלם התקנה"
228
-
229
- #: includes/class-freemius.php:6348
230
- msgid "You are just one step away - %s"
231
- msgstr "You are just one step away - %s"
232
-
233
- #: includes/class-freemius.php:6351
234
- msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
- msgid "Complete \"%s\" Activation Now"
236
- msgstr "השלם הפעלת \"%s\" עכשיו"
237
-
238
- #: includes/class-freemius.php:6429
239
- msgid "We made a few tweaks to the %s, %s"
240
- msgstr "We made a few tweaks to the %s, %s"
241
-
242
- #: includes/class-freemius.php:6433
243
- msgid "Opt in to make \"%s\" better!"
244
- msgstr "Opt in to make \"%s\" better!"
245
-
246
- #: includes/class-freemius.php:6861
247
- msgid "The upgrade of %s was successfully completed."
248
- msgstr "The upgrade of %s was successfully completed."
249
-
250
- #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
- #: includes/class-fs-plugin-updater.php1077,
252
- #: includes/class-fs-plugin-updater.php1084,
253
- #: templates/auto-installation.php:32
254
- msgid "Add-On"
255
- msgstr "Add-On"
256
-
257
- #: includes/class-freemius.php8707, templates/debug.php359,
258
- #: templates/debug.php:520
259
- msgid "Plugin"
260
- msgstr "תוסף"
261
-
262
- #: includes/class-freemius.php8708, templates/debug.php359,
263
- #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
- msgid "Theme"
265
- msgstr "תבנית"
266
-
267
- #: includes/class-freemius.php:11183
268
- msgid "Invalid site details collection."
269
- msgstr "Invalid site details collection."
270
-
271
- #: includes/class-freemius.php:11303
272
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
- msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
274
-
275
- #: includes/class-freemius.php:11305
276
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
- msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
278
-
279
- #: includes/class-freemius.php:11541
280
- msgid "Account is pending activation."
281
- msgstr "Account is pending activation."
282
-
283
- #: includes/class-freemius.php11653,
284
- #: templates/forms/premium-versions-upgrade-handler.php:47
285
- msgid "Buy a license now"
286
- msgstr "Buy a license now"
287
-
288
- #: includes/class-freemius.php11665,
289
- #: templates/forms/premium-versions-upgrade-handler.php:46
290
- msgid "Renew your license now"
291
- msgstr "Renew your license now"
292
-
293
- #: includes/class-freemius.php:11669
294
- msgid "%s to access version %s security & feature updates, and support."
295
- msgstr "%s to access version %s security & feature updates, and support."
296
-
297
- #: includes/class-freemius.php:14052
298
- msgid "%s activation was successfully completed."
299
- msgstr "הפעלת %s הושלמה בהצלחה."
300
-
301
- #: includes/class-freemius.php:14066
302
- msgid "Your account was successfully activated with the %s plan."
303
- msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
304
-
305
- #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
- msgid "Your trial has been successfully started."
307
- msgstr "הניסיון שלך הופעל בהצלחה."
308
-
309
- #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
- #: includes/class-freemius.php:14761
311
- msgid "Couldn't activate %s."
312
- msgstr "לא ניתן להפעיל את %s."
313
-
314
- #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
- #: includes/class-freemius.php:14762
316
- msgid "Please contact us with the following message:"
317
- msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
318
-
319
- #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
- msgid "Upgrade"
321
- msgstr "שדרג"
322
-
323
- #: includes/class-freemius.php:15117
324
- msgid "Start Trial"
325
- msgstr "התחל תקופת ניסיון"
326
-
327
- #: includes/class-freemius.php:15119
328
- msgid "Pricing"
329
- msgstr "מחירון"
330
-
331
- #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
- msgid "Affiliation"
333
- msgstr "אפיליאציה"
334
-
335
- #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
- #: templates/account.php150, templates/debug.php:324
337
- msgid "Account"
338
- msgstr "חשבון"
339
-
340
- #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
- #: includes/customizer/class-fs-customizer-support-section.php:60
342
- msgid "Contact Us"
343
- msgstr "יצירת קשר"
344
-
345
- #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
- #: includes/class-freemius.php19553, templates/account.php100,
347
- #: templates/account/partials/addon.php:41
348
- msgid "Add-Ons"
349
- msgstr "Add-Ons"
350
-
351
- #: includes/class-freemius.php:15274
352
- msgctxt "ASCII arrow left icon"
353
- msgid "&#x2190;"
354
- msgstr "&#x2190;"
355
-
356
- #: includes/class-freemius.php:15274
357
- msgctxt "ASCII arrow right icon"
358
- msgid "&#x27a4;"
359
- msgstr "&#x27a4;"
360
-
361
- #: includes/class-freemius.php15276, templates/pricing.php:97
362
- msgctxt "noun"
363
- msgid "Pricing"
364
- msgstr "מחירון"
365
-
366
- #: includes/class-freemius.php15479,
367
- #: includes/customizer/class-fs-customizer-support-section.php:67
368
- msgid "Support Forum"
369
- msgstr "פורום תמיכה"
370
-
371
- #: includes/class-freemius.php:16265
372
- msgid "Your email has been successfully verified - you are AWESOME!"
373
- msgstr "Your email has been successfully verified - you are AWESOME!"
374
-
375
- #: includes/class-freemius.php:16266
376
- msgctxt "a positive response"
377
- msgid "Right on"
378
- msgstr "מעולה"
379
-
380
- #: includes/class-freemius.php:16888
381
- msgid "Your %s Add-on plan was successfully upgraded."
382
- msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
383
-
384
- #: includes/class-freemius.php:16890
385
- msgid "%s Add-on was successfully purchased."
386
- msgstr "ההרחבה %s נרכשה בהצלחה."
387
-
388
- #: includes/class-freemius.php:16893
389
- msgid "Download the latest version"
390
- msgstr "הורד את הגרסה האחרונה"
391
-
392
- #: includes/class-freemius.php:16965
393
- msgctxt "%1s - plugin title, %2s - API domain"
394
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
- msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
-
397
- #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
- #: includes/class-freemius.php:17461
399
- msgid "Error received from the server:"
400
- msgstr "הוחזרה שגיאה מהשרת:"
401
-
402
- #: includes/class-freemius.php:16978
403
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
- msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
-
406
- #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
- #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
- msgctxt ""
409
- msgid "Hmm"
410
- msgstr "אממ"
411
-
412
- #: includes/class-freemius.php:17173
413
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
- msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
-
416
- #: includes/class-freemius.php17174, templates/account.php102,
417
- #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
- msgctxt "trial period"
419
- msgid "Trial"
420
- msgstr "ניסיון"
421
-
422
- #: includes/class-freemius.php:17179
423
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
- msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
425
-
426
- #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
- msgid "Please contact us here"
428
- msgstr "אנא צור איתנו קשר כאן"
429
-
430
- #: includes/class-freemius.php:17193
431
- msgid "Your plan was successfully upgraded."
432
- msgstr "החבילה שודרגה בהצלחה."
433
-
434
- #: includes/class-freemius.php:17211
435
- msgid "Your plan was successfully changed to %s."
436
- msgstr "החבילה עודכנה בהצלחה אל %s."
437
-
438
- #: includes/class-freemius.php:17227
439
- msgid "Your license has expired. You can still continue using the free %s forever."
440
- msgstr "Your license has expired. You can still continue using the free %s forever."
441
-
442
- #: includes/class-freemius.php:17229
443
- msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
- msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
445
-
446
- #: includes/class-freemius.php:17237
447
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
- msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
449
-
450
- #: includes/class-freemius.php:17250
451
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
- msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
453
-
454
- #: includes/class-freemius.php:17273
455
- msgid "Your free trial has expired. You can still continue using all our free features."
456
- msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
457
-
458
- #: includes/class-freemius.php:17275
459
- msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
- msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
-
462
- #: includes/class-freemius.php:17380
463
- msgid "It looks like the license could not be activated."
464
- msgstr "נראה שלא ניתן להפעיל את הרישיון."
465
-
466
- #: includes/class-freemius.php:17410
467
- msgid "Your license was successfully activated."
468
- msgstr "הרישיון הופעל בהצלחה."
469
-
470
- #: includes/class-freemius.php:17436
471
- msgid "It looks like your site currently doesn't have an active license."
472
- msgstr "נראה לאתר עדיין אין רישיון פעיל."
473
-
474
- #: includes/class-freemius.php:17460
475
- msgid "It looks like the license deactivation failed."
476
- msgstr "נראה שניתוק הרישיון נכשל."
477
-
478
- #: includes/class-freemius.php:17488
479
- msgid "Your license was successfully deactivated, you are back to the %s plan."
480
- msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
481
-
482
- #: includes/class-freemius.php:17489
483
- msgid "O.K"
484
- msgstr "אוקיי"
485
-
486
- #: includes/class-freemius.php:17542
487
- msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
- msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
-
490
- #: includes/class-freemius.php:17551
491
- msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
- msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
-
494
- #: includes/class-freemius.php:17593
495
- msgid "You are already running the %s in a trial mode."
496
- msgstr "You are already running the %s in a trial mode."
497
-
498
- #: includes/class-freemius.php:17604
499
- msgid "You already utilized a trial before."
500
- msgstr "הניסיון כבר נוצל בעבר."
501
-
502
- #: includes/class-freemius.php:17618
503
- msgid "Plan %s do not exist, therefore, can't start a trial."
504
- msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
505
-
506
- #: includes/class-freemius.php:17629
507
- msgid "Plan %s does not support a trial period."
508
- msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
509
-
510
- #: includes/class-freemius.php:17640
511
- msgid "None of the %s's plans supports a trial period."
512
- msgstr "None of the %s's plans supports a trial period."
513
-
514
- #: includes/class-freemius.php:17690
515
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
- msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
517
-
518
- #: includes/class-freemius.php:17726
519
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
- msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
521
-
522
- #: includes/class-freemius.php:17745
523
- msgid "Your %s free trial was successfully cancelled."
524
- msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
525
-
526
- #: includes/class-freemius.php:18052
527
- msgid "Version %s was released."
528
- msgstr "גרסה %s הושקה."
529
-
530
- #: includes/class-freemius.php:18052
531
- msgid "Please download %s."
532
- msgstr "נא להוריד את %s."
533
-
534
- #: includes/class-freemius.php:18059
535
- msgid "the latest %s version here"
536
- msgstr "גרסת ה-%s האחרונה כאן"
537
-
538
- #: includes/class-freemius.php:18064
539
- msgid "New"
540
- msgstr "חדש"
541
-
542
- #: includes/class-freemius.php:18069
543
- msgid "Seems like you got the latest release."
544
- msgstr "נראה שיש לך את הגרסה האחרונה."
545
-
546
- #: includes/class-freemius.php:18070
547
- msgid "You are all good!"
548
- msgstr "את\\ה מסודר!"
549
-
550
- #: includes/class-freemius.php:18338
551
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
- msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
-
554
- #: includes/class-freemius.php:18473
555
- msgid "Site successfully opted in."
556
- msgstr "Site successfully opted in."
557
-
558
- #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
- msgid "Awesome"
560
- msgstr "אדיר"
561
-
562
- #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
- msgstr "We appreciate your help in making the %s better by letting us track some usage data."
565
-
566
- #: includes/class-freemius.php:18491
567
- msgid "Thank you!"
568
- msgstr "תודה רבה!"
569
-
570
- #: includes/class-freemius.php:18498
571
- msgid "We will no longer be sending any usage data of %s on %s to %s."
572
- msgstr "We will no longer be sending any usage data of %s on %s to %s."
573
-
574
- #: includes/class-freemius.php:18627
575
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
- msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
-
578
- #: includes/class-freemius.php:18633
579
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
- msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
581
-
582
- #: includes/class-freemius.php:18638
583
- msgid "%s is the new owner of the account."
584
- msgstr "%s הינו הבעלים החד של חשבון זה."
585
-
586
- #: includes/class-freemius.php:18640
587
- msgctxt "as congratulations"
588
- msgid "Congrats"
589
- msgstr "מזל טוב"
590
-
591
- #: includes/class-freemius.php:18660
592
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
593
- msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
594
-
595
- #: includes/class-freemius.php:18661
596
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
597
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
598
-
599
- #: includes/class-freemius.php:18668
600
- msgid "Change Ownership"
601
- msgstr "עדכון בעלות"
602
-
603
- #: includes/class-freemius.php:18676
604
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
605
- msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
606
-
607
- #: includes/class-freemius.php:18688
608
- msgid "Please provide your full name."
609
- msgstr "נא למלא את שמך המלא."
610
-
611
- #: includes/class-freemius.php:18693
612
- msgid "Your name was successfully updated."
613
- msgstr "שמך עודכן בהצלחה."
614
-
615
- #: includes/class-freemius.php:18754
616
- msgid "You have successfully updated your %s."
617
- msgstr "עידכנת בהצלחה את ה%s."
618
-
619
- #: includes/class-freemius.php:18894
620
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
621
- msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
622
-
623
- #: includes/class-freemius.php:18895
624
- msgctxt "advance notice of something that will need attention."
625
- msgid "Heads up"
626
- msgstr "לתשמות לבך"
627
-
628
- #: includes/class-freemius.php:19325
629
- msgctxt "exclamation"
630
- msgid "Hey"
631
- msgstr "היי"
632
-
633
- #: includes/class-freemius.php:19325
634
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
635
- msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
636
-
637
- #: includes/class-freemius.php:19333
638
- msgid "No commitment for %s days - cancel anytime!"
639
- msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
640
-
641
- #: includes/class-freemius.php:19334
642
- msgid "No credit card required"
643
- msgstr "לא נדרש כרטיס אשראי"
644
-
645
- #: includes/class-freemius.php19341, templates/forms/trial-start.php:53
646
- msgctxt "call to action"
647
- msgid "Start free trial"
648
- msgstr "התחלת ניסיון חינם"
649
-
650
- #: includes/class-freemius.php:19418
651
- msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
652
- msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
653
-
654
- #: includes/class-freemius.php:19427
655
- msgid "Learn more"
656
- msgstr "Learn more"
657
-
658
- #: includes/class-freemius.php19577, templates/account.php406,
659
- #: templates/account.php509, templates/connect.php171,
660
- #: templates/connect.php421, templates/forms/license-activation.php24,
661
- #: templates/account/partials/addon.php:235
662
- msgid "Activate License"
663
- msgstr "הפעלת רישיון"
664
-
665
- #: includes/class-freemius.php19578, templates/account.php469,
666
- #: templates/account.php508, templates/account/partials/site.php:256
667
- msgid "Change License"
668
- msgstr "שינוי רישיון"
669
-
670
- #: includes/class-freemius.php19660, templates/account/partials/site.php:161
671
- msgid "Opt Out"
672
- msgstr "Opt Out"
673
-
674
- #: includes/class-freemius.php19662, includes/class-freemius.php19667,
675
- #: templates/account/partials/site.php43,
676
- #: templates/account/partials/site.php:161
677
- msgid "Opt In"
678
- msgstr "Opt In"
679
-
680
- #: includes/class-freemius.php:19891
681
- msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
682
- msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
683
-
684
- #: includes/class-freemius.php:19899
685
- msgid "Activate %s features"
686
- msgstr "Activate %s features"
687
-
688
- #: includes/class-freemius.php:19912
689
- msgid "Please follow these steps to complete the upgrade"
690
- msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
691
-
692
- #: includes/class-freemius.php:19916
693
- msgid "Download the latest %s version"
694
- msgstr "הורד\\י את גרסת ה-%s העדכנית"
695
-
696
- #: includes/class-freemius.php:19920
697
- msgid "Upload and activate the downloaded version"
698
- msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
699
-
700
- #: includes/class-freemius.php:19922
701
- msgid "How to upload and activate?"
702
- msgstr "איך להעלות ולהפעיל?"
703
-
704
- #: includes/class-freemius.php:20056
705
- msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
706
- msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
707
-
708
- #: includes/class-freemius.php:20217
709
- msgid "Auto installation only works for opted-in users."
710
- msgstr "Auto installation only works for opted-in users."
711
-
712
- #: includes/class-freemius.php20227, includes/class-freemius.php20260,
713
- #: includes/class-fs-plugin-updater.php1056,
714
- #: includes/class-fs-plugin-updater.php:1070
715
- msgid "Invalid module ID."
716
- msgstr "מזהה המודול לא תקני."
717
-
718
- #: includes/class-freemius.php20236, includes/class-fs-plugin-updater.php:1092
719
- msgid "Premium version already active."
720
- msgstr "הגרסה בתשלום כבר פעילה."
721
-
722
- #: includes/class-freemius.php:20243
723
- msgid "You do not have a valid license to access the premium version."
724
- msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
725
-
726
- #: includes/class-freemius.php:20250
727
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
728
- msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
729
-
730
- #: includes/class-freemius.php20268, includes/class-fs-plugin-updater.php:1091
731
- msgid "Premium add-on version already installed."
732
- msgstr "Premium add-on version already installed."
733
-
734
- #: includes/class-freemius.php:20613
735
- msgid "View paid features"
736
- msgstr "צפה בפיטצ'רים שבתשלום"
737
-
738
- #: includes/class-freemius.php:20927
739
- msgid "Thank you so much for using %s and its add-ons!"
740
- msgstr "Thank you so much for using %s and its add-ons!"
741
-
742
- #: includes/class-freemius.php:20928
743
- msgid "Thank you so much for using %s!"
744
- msgstr "אנו מודים לך על היותך כמשתמש של %s!"
745
-
746
- #: includes/class-freemius.php:20934
747
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
748
- msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
749
-
750
- #: includes/class-freemius.php:20938
751
- msgid "Thank you so much for using our products!"
752
- msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
753
-
754
- #: includes/class-freemius.php:20939
755
- msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
756
- msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
757
-
758
- #: includes/class-freemius.php:20958
759
- msgid "%s and its add-ons"
760
- msgstr "%s and its add-ons"
761
-
762
- #: includes/class-freemius.php:20967
763
- msgid "Products"
764
- msgstr "מוצרים"
765
-
766
- #: includes/class-freemius.php20974, templates/connect.php:272
767
- msgid "Yes"
768
- msgstr "כן"
769
-
770
- #: includes/class-freemius.php20975, templates/connect.php:273
771
- msgid "send me security & feature updates, educational content and offers."
772
- msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
773
-
774
- #: includes/class-freemius.php20976, templates/connect.php:278
775
- msgid "No"
776
- msgstr "לא"
777
-
778
- #: includes/class-freemius.php20978, templates/connect.php:280
779
- msgid "do %sNOT%s send me security & feature updates, educational content and offers."
780
- msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
781
-
782
- #: includes/class-freemius.php:20988
783
- msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
784
- msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
785
-
786
- #: includes/class-freemius.php20990, templates/connect.php:287
787
- msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
788
- msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
789
-
790
- #: includes/class-freemius.php:21272
791
- msgid "License key is empty."
792
- msgstr "מפתח הרישיון ריק."
793
-
794
- #: includes/class-fs-plugin-updater.php184,
795
- #: templates/forms/premium-versions-upgrade-handler.php:57
796
- msgid "Renew license"
797
- msgstr "חידוש רישיון"
798
-
799
- #: includes/class-fs-plugin-updater.php189,
800
- #: templates/forms/premium-versions-upgrade-handler.php:58
801
- msgid "Buy license"
802
- msgstr "Buy license"
803
-
804
- #: includes/class-fs-plugin-updater.php:278
805
- msgid "There is a %s of %s available."
806
- msgstr "There is a %s of %s available."
807
-
808
- #: includes/class-fs-plugin-updater.php:282
809
- msgid "new version"
810
- msgstr "new version"
811
-
812
- #: includes/class-fs-plugin-updater.php:301
813
- msgid "Important Upgrade Notice:"
814
- msgstr "Important Upgrade Notice:"
815
-
816
- #: includes/class-fs-plugin-updater.php:1121
817
- msgid "Installing plugin: %s"
818
- msgstr "Installing plugin: %s"
819
-
820
- #: includes/class-fs-plugin-updater.php:1162
821
- msgid "Unable to connect to the filesystem. Please confirm your credentials."
822
- msgstr "Unable to connect to the filesystem. Please confirm your credentials."
823
-
824
- #: includes/class-fs-plugin-updater.php:1335
825
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
826
- msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
827
-
828
- #: includes/fs-plugin-info-dialog.php369,
829
- #: templates/account/partials/addon.php:292
830
- msgctxt "verb"
831
- msgid "Purchase"
832
- msgstr "רכישה"
833
-
834
- #: includes/fs-plugin-info-dialog.php:372
835
- msgid "Start my free %s"
836
- msgstr "התחל את %s הניסיון שלי"
837
-
838
- #: includes/fs-plugin-info-dialog.php:413
839
- msgid "Install Free Version Now"
840
- msgstr "התקן גרסה חינאמית עכשיו"
841
-
842
- #: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
843
- #: templates/account/partials/addon.php272,
844
- #: templates/account/partials/addon.php:322
845
- msgid "Install Now"
846
- msgstr "התקן עכשיו"
847
-
848
- #: includes/fs-plugin-info-dialog.php:425
849
- msgctxt "as download latest version"
850
- msgid "Download Latest Free Version"
851
- msgstr "Download Latest Free Version"
852
-
853
- #: includes/fs-plugin-info-dialog.php426, templates/account.php80,
854
- #: templates/account/partials/addon.php:21
855
- msgctxt "as download latest version"
856
- msgid "Download Latest"
857
- msgstr "הורד גרסה אחרונה"
858
-
859
- #: includes/fs-plugin-info-dialog.php:436
860
- msgid "Install Free Version Update Now"
861
- msgstr "התקן עדכון גרסה חינאמית עכשיו"
862
-
863
- #: includes/fs-plugin-info-dialog.php437, templates/account.php:460
864
- msgid "Install Update Now"
865
- msgstr "התקן עדכון במיידי"
866
-
867
- #: includes/fs-plugin-info-dialog.php:448
868
- msgid "Newer Free Version (%s) Installed"
869
- msgstr "Newer Free Version (%s) Installed"
870
-
871
- #: includes/fs-plugin-info-dialog.php:449
872
- msgid "Newer Version (%s) Installed"
873
- msgstr "גרסה חדשה (%s) הותקנה"
874
-
875
- #: includes/fs-plugin-info-dialog.php:457
876
- msgid "Latest Free Version Installed"
877
- msgstr "גרסה חינאמית עדכנית הותקנה"
878
-
879
- #: includes/fs-plugin-info-dialog.php:458
880
- msgid "Latest Version Installed"
881
- msgstr "הגרסה האחרונה הותקנה"
882
-
883
- #: includes/fs-plugin-info-dialog.php:613
884
- msgctxt "Plugin installer section title"
885
- msgid "Description"
886
- msgstr "תיאור"
887
-
888
- #: includes/fs-plugin-info-dialog.php:614
889
- msgctxt "Plugin installer section title"
890
- msgid "Installation"
891
- msgstr "התקנה"
892
-
893
- #: includes/fs-plugin-info-dialog.php:615
894
- msgctxt "Plugin installer section title"
895
- msgid "FAQ"
896
- msgstr "שאלות נפוצות"
897
-
898
- #: includes/fs-plugin-info-dialog.php616,
899
- #: templates/plugin-info/description.php:55
900
- msgid "Screenshots"
901
- msgstr "צילומי מסך"
902
-
903
- #: includes/fs-plugin-info-dialog.php:617
904
- msgctxt "Plugin installer section title"
905
- msgid "Changelog"
906
- msgstr "לוג שינויים"
907
-
908
- #: includes/fs-plugin-info-dialog.php:618
909
- msgctxt "Plugin installer section title"
910
- msgid "Reviews"
911
- msgstr "ביקורות"
912
-
913
- #: includes/fs-plugin-info-dialog.php:619
914
- msgctxt "Plugin installer section title"
915
- msgid "Other Notes"
916
- msgstr "היערות נוספות"
917
-
918
- #: includes/fs-plugin-info-dialog.php:634
919
- msgctxt "Plugin installer section title"
920
- msgid "Features & Pricing"
921
- msgstr "פיטצ'רים ומחירים"
922
-
923
- #: includes/fs-plugin-info-dialog.php:644
924
- msgid "Plugin Install"
925
- msgstr "התקנת תוסף"
926
-
927
- #: includes/fs-plugin-info-dialog.php:716
928
- msgctxt "e.g. Professional Plan"
929
- msgid "%s Plan"
930
- msgstr "חבילה %s"
931
-
932
- #: includes/fs-plugin-info-dialog.php:742
933
- msgctxt "e.g. the best product"
934
- msgid "Best"
935
- msgstr "הכי טוב"
936
-
937
- #: includes/fs-plugin-info-dialog.php748,
938
- #: includes/fs-plugin-info-dialog.php:768
939
- msgctxt "as every month"
940
- msgid "Monthly"
941
- msgstr "חודשי"
942
-
943
- #: includes/fs-plugin-info-dialog.php:751
944
- msgctxt "as once a year"
945
- msgid "Annual"
946
- msgstr "שנתי"
947
-
948
- #: includes/fs-plugin-info-dialog.php:754
949
- msgid "Lifetime"
950
- msgstr "לכל החיים"
951
-
952
- #: includes/fs-plugin-info-dialog.php768,
953
- #: includes/fs-plugin-info-dialog.php770,
954
- #: includes/fs-plugin-info-dialog.php:772
955
- msgctxt "e.g. billed monthly"
956
- msgid "Billed %s"
957
- msgstr "מחוייב על בסיס %s"
958
-
959
- #: includes/fs-plugin-info-dialog.php:770
960
- msgctxt "as once a year"
961
- msgid "Annually"
962
- msgstr "שנתי"
963
-
964
- #: includes/fs-plugin-info-dialog.php:772
965
- msgctxt "as once a year"
966
- msgid "Once"
967
- msgstr "פעם אחת"
968
-
969
- #: includes/fs-plugin-info-dialog.php:778
970
- msgid "Single Site License"
971
- msgstr "רשיון לאתר אחד"
972
-
973
- #: includes/fs-plugin-info-dialog.php:780
974
- msgid "Unlimited Licenses"
975
- msgstr "רשיונות ללא הגבלה"
976
-
977
- #: includes/fs-plugin-info-dialog.php:782
978
- msgid "Up to %s Sites"
979
- msgstr "עד %s אתרים"
980
-
981
- #: includes/fs-plugin-info-dialog.php792,
982
- #: templates/plugin-info/features.php:82
983
- msgctxt "as monthly period"
984
- msgid "mo"
985
- msgstr "חודשים"
986
-
987
- #: includes/fs-plugin-info-dialog.php799,
988
- #: templates/plugin-info/features.php:80
989
- msgctxt "as annual period"
990
- msgid "year"
991
- msgstr "שנה"
992
-
993
- #: includes/fs-plugin-info-dialog.php:853
994
- msgctxt "noun"
995
- msgid "Price"
996
- msgstr "מחיר"
997
-
998
- #: includes/fs-plugin-info-dialog.php:901
999
- msgid "Save %s"
1000
- msgstr "שמירת %s"
1001
-
1002
- #: includes/fs-plugin-info-dialog.php:911
1003
- msgid "No commitment for %s - cancel anytime"
1004
- msgstr "No commitment for %s - cancel anytime"
1005
-
1006
- #: includes/fs-plugin-info-dialog.php:914
1007
- msgid "After your free %s, pay as little as %s"
1008
- msgstr "After your free %s, pay as little as %s"
1009
-
1010
- #: includes/fs-plugin-info-dialog.php:925
1011
- msgid "Details"
1012
- msgstr "פרטים"
1013
-
1014
- #: includes/fs-plugin-info-dialog.php929, templates/account.php91,
1015
- #: templates/debug.php201, templates/debug.php238, templates/debug.php452,
1016
- #: templates/account/partials/addon.php:32
1017
- msgctxt "product version"
1018
- msgid "Version"
1019
- msgstr "גרסה"
1020
-
1021
- #: includes/fs-plugin-info-dialog.php:936
1022
- msgctxt "as the plugin author"
1023
- msgid "Author"
1024
- msgstr "Author"
1025
-
1026
- #: includes/fs-plugin-info-dialog.php:943
1027
- msgid "Last Updated"
1028
- msgstr "עודכן לאחרונה"
1029
-
1030
- #: includes/fs-plugin-info-dialog.php948, templates/account.php:376
1031
- msgctxt "x-ago"
1032
- msgid "%s ago"
1033
- msgstr "לפני %s"
1034
-
1035
- #: includes/fs-plugin-info-dialog.php:957
1036
- msgid "Requires WordPress Version"
1037
- msgstr "Requires WordPress Version"
1038
-
1039
- #: includes/fs-plugin-info-dialog.php:958
1040
- msgid "%s or higher"
1041
- msgstr "%s ומעלה"
1042
-
1043
- #: includes/fs-plugin-info-dialog.php:965
1044
- msgid "Compatible up to"
1045
- msgstr "Compatible up to"
1046
-
1047
- #: includes/fs-plugin-info-dialog.php:973
1048
- msgid "Downloaded"
1049
- msgstr "Downloaded"
1050
-
1051
- #: includes/fs-plugin-info-dialog.php:977
1052
- msgid "%s time"
1053
- msgstr "פעם %s"
1054
-
1055
- #: includes/fs-plugin-info-dialog.php:979
1056
- msgid "%s times"
1057
- msgstr "%s פעמים"
1058
-
1059
- #: includes/fs-plugin-info-dialog.php:989
1060
- msgid "WordPress.org Plugin Page"
1061
- msgstr "WordPress.org Plugin Page"
1062
-
1063
- #: includes/fs-plugin-info-dialog.php:997
1064
- msgid "Plugin Homepage"
1065
- msgstr "עמוד התוסף"
1066
-
1067
- #: includes/fs-plugin-info-dialog.php1005,
1068
- #: includes/fs-plugin-info-dialog.php:1087
1069
- msgid "Donate to this plugin"
1070
- msgstr "תרום לתוסף"
1071
-
1072
- #: includes/fs-plugin-info-dialog.php:1012
1073
- msgid "Average Rating"
1074
- msgstr "דירוג ממוצע"
1075
-
1076
- #: includes/fs-plugin-info-dialog.php:1019
1077
- msgid "based on %s"
1078
- msgstr "מבוסס על %s"
1079
-
1080
- #: includes/fs-plugin-info-dialog.php:1023
1081
- msgid "%s rating"
1082
- msgstr "דרוג %s"
1083
-
1084
- #: includes/fs-plugin-info-dialog.php:1025
1085
- msgid "%s ratings"
1086
- msgstr "%s דרוגים"
1087
-
1088
- #: includes/fs-plugin-info-dialog.php:1040
1089
- msgid "%s star"
1090
- msgstr "כוכב %s"
1091
-
1092
- #: includes/fs-plugin-info-dialog.php:1042
1093
- msgid "%s stars"
1094
- msgstr "%s כוכבים"
1095
-
1096
- #: includes/fs-plugin-info-dialog.php:1053
1097
- msgid "Click to see reviews that provided a rating of %s"
1098
- msgstr "Click to see reviews that provided a rating of %s"
1099
-
1100
- #: includes/fs-plugin-info-dialog.php:1066
1101
- msgid "Contributors"
1102
- msgstr "תורמים"
1103
-
1104
- #: includes/fs-plugin-info-dialog.php1095,
1105
- #: includes/fs-plugin-info-dialog.php:1097
1106
- msgid "Warning"
1107
- msgstr "Warning"
1108
-
1109
- #: includes/fs-plugin-info-dialog.php:1095
1110
- msgid "This plugin has not been tested with your current version of WordPress."
1111
- msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
1112
-
1113
- #: includes/fs-plugin-info-dialog.php:1097
1114
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1115
- msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
1116
-
1117
- #: includes/fs-plugin-info-dialog.php:1116
1118
- msgid "Paid add-on must be deployed to Freemius."
1119
- msgstr "Paid add-on must be deployed to Freemius."
1120
-
1121
- #: includes/fs-plugin-info-dialog.php:1117
1122
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1123
- msgstr "Add-on must be deployed to WordPress.org or Freemius."
1124
-
1125
- #: templates/account.php81, templates/forms/subscription-cancellation.php96,
1126
- #: templates/account/partials/addon.php22,
1127
- #: templates/account/partials/site.php:295
1128
- msgid "Downgrading your plan"
1129
- msgstr "Downgrading your plan"
1130
-
1131
- #: templates/account.php82, templates/forms/subscription-cancellation.php97,
1132
- #: templates/account/partials/addon.php23,
1133
- #: templates/account/partials/site.php:296
1134
- msgid "Cancelling the subscription"
1135
- msgstr "Cancelling the subscription"
1136
-
1137
- #. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
1138
- #. subscription'
1139
- #: templates/account.php84, templates/forms/subscription-cancellation.php99,
1140
- #: templates/account/partials/addon.php25,
1141
- #: templates/account/partials/site.php:298
1142
- msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1143
- msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
1144
-
1145
- #: templates/account.php85, templates/forms/subscription-cancellation.php100,
1146
- #: templates/account/partials/addon.php26,
1147
- #: templates/account/partials/site.php:299
1148
- msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1149
- msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
1150
-
1151
- #: templates/account.php86, templates/forms/subscription-cancellation.php106,
1152
- #: templates/account/partials/addon.php:27
1153
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1154
- msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
1155
-
1156
- #: templates/account.php87, templates/forms/subscription-cancellation.php101,
1157
- #: templates/account/partials/addon.php28,
1158
- #: templates/account/partials/site.php:300
1159
- msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1160
- msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1161
-
1162
- #: templates/account.php88, templates/forms/subscription-cancellation.php102,
1163
- #: templates/account/partials/addon.php29,
1164
- #: templates/account/partials/site.php:301
1165
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1166
- msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1167
-
1168
- #. translators: %s: Plan title (e.g. "Professional")
1169
- #: templates/account.php90,
1170
- #: templates/account/partials/activate-license-button.php31,
1171
- #: templates/account/partials/addon.php:31
1172
- msgid "Activate %s Plan"
1173
- msgstr "הפעל חבילה %s"
1174
-
1175
- #. translators: %s: Time period (e.g. Auto renews in "2 months")
1176
- #: templates/account.php93, templates/account/partials/addon.php34,
1177
- #: templates/account/partials/site.php:275
1178
- msgid "Auto renews in %s"
1179
- msgstr "עדכן אוטומטית בעוד %s"
1180
-
1181
- #. translators: %s: Time period (e.g. Expires in "2 months")
1182
- #: templates/account.php95, templates/account/partials/addon.php36,
1183
- #: templates/account/partials/site.php:277
1184
- msgid "Expires in %s"
1185
- msgstr "פג תוקף בעוד %s"
1186
-
1187
- #: templates/account.php96, templates/account/partials/addon.php:37
1188
- msgctxt "as synchronize license"
1189
- msgid "Sync License"
1190
- msgstr "סינכרן רישיון"
1191
-
1192
- #: templates/account.php97, templates/account/partials/addon.php:38
1193
- msgid "Cancel Trial"
1194
- msgstr "ביט"
1195
-
1196
- #: templates/account.php98, templates/account/partials/addon.php:39
1197
- msgid "Change Plan"
1198
- msgstr "שינוי חבילה"
1199
-
1200
- #: templates/account.php99, templates/account/partials/addon.php:40
1201
- msgctxt "verb"
1202
- msgid "Upgrade"
1203
- msgstr "שדרג"
1204
-
1205
- #: templates/account.php101, templates/account/partials/addon.php42,
1206
- #: templates/account/partials/site.php:302
1207
- msgctxt "verb"
1208
- msgid "Downgrade"
1209
- msgstr "שנמך"
1210
-
1211
- #: templates/account.php103, templates/add-ons.php130,
1212
- #: templates/plugin-info/features.php72,
1213
- #: templates/account/partials/addon.php44,
1214
- #: templates/account/partials/site.php:31
1215
- msgid "Free"
1216
- msgstr "חינם"
1217
-
1218
- #: templates/account.php104, templates/account/partials/addon.php:45
1219
- msgid "Activate"
1220
- msgstr "הפעלה"
1221
-
1222
- #: templates/account.php105, templates/debug.php371,
1223
- #: includes/customizer/class-fs-customizer-upsell-control.php106,
1224
- #: templates/account/partials/addon.php:46
1225
- msgctxt "as product pricing plan"
1226
- msgid "Plan"
1227
- msgstr "חבילה"
1228
-
1229
- #: templates/account.php:158
1230
- msgid "Free Trial"
1231
- msgstr "ניסיון חינם"
1232
-
1233
- #: templates/account.php:169
1234
- msgid "Account Details"
1235
- msgstr "פרטי חשבון"
1236
-
1237
- #: templates/account.php:179
1238
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1239
- msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1240
-
1241
- #: templates/account.php:181
1242
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1243
- msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1244
-
1245
- #: templates/account.php:184
1246
- msgid "Delete Account"
1247
- msgstr "מחיקת חשבון"
1248
-
1249
- #: templates/account.php196, templates/account/partials/addon.php159,
1250
- #: templates/account/partials/deactivate-license-button.php:35
1251
- msgid "Deactivate License"
1252
- msgstr "שיחרור רישיון"
1253
-
1254
- #: templates/account.php219, templates/forms/subscription-cancellation.php:125
1255
- msgid "Are you sure you want to proceed?"
1256
- msgstr "האם את/ה בטוח רוצה להמשיך?"
1257
-
1258
- #: templates/account.php219, templates/account/partials/addon.php:182
1259
- msgid "Cancel Subscription"
1260
- msgstr "בטל מנוי"
1261
-
1262
- #: templates/account.php:247
1263
- msgctxt "as synchronize"
1264
- msgid "Sync"
1265
- msgstr "סינכרון"
1266
-
1267
- #: templates/account.php261, templates/debug.php:487
1268
- msgid "Name"
1269
- msgstr "שם"
1270
-
1271
- #: templates/account.php267, templates/debug.php:488
1272
- msgid "Email"
1273
- msgstr "דוא\"ל"
1274
-
1275
- #: templates/account.php274, templates/debug.php370, templates/debug.php:526
1276
- msgid "User ID"
1277
- msgstr "מזהה משתמש"
1278
-
1279
- #: templates/account.php:282
1280
- msgid "Site ID"
1281
- msgstr "מזהה אתר"
1282
-
1283
- #: templates/account.php:285
1284
- msgid "No ID"
1285
- msgstr "אין מזהה"
1286
-
1287
- #: templates/account.php290, templates/debug.php243, templates/debug.php372,
1288
- #: templates/debug.php453, templates/debug.php490,
1289
- #: templates/account/partials/site.php:219
1290
- msgid "Public Key"
1291
- msgstr "מפתח פומבי"
1292
-
1293
- #: templates/account.php296, templates/debug.php373, templates/debug.php454,
1294
- #: templates/debug.php491, templates/account/partials/site.php:231
1295
- msgid "Secret Key"
1296
- msgstr "מפתח סודי"
1297
-
1298
- #: templates/account.php:299
1299
- msgctxt "as secret encryption key missing"
1300
- msgid "No Secret"
1301
- msgstr "אין מפתח סודי"
1302
-
1303
- #: templates/account.php318, templates/account/partials/site.php112,
1304
- #: templates/account/partials/site.php:114
1305
- msgid "Trial"
1306
- msgstr "ניסיון"
1307
-
1308
- #: templates/account.php337, templates/debug.php531,
1309
- #: templates/account/partials/site.php:248
1310
- msgid "License Key"
1311
- msgstr "License Key"
1312
-
1313
- #: templates/account.php:367
1314
- msgid "not verified"
1315
- msgstr "לא מאומת"
1316
-
1317
- #: templates/account.php376, templates/account/partials/addon.php:120
1318
- msgid "Expired"
1319
- msgstr "פג תוקף"
1320
-
1321
- #: templates/account.php:428
1322
- msgid "Premium version"
1323
- msgstr "גירסת פרימיום"
1324
-
1325
- #: templates/account.php:430
1326
- msgid "Free version"
1327
- msgstr "גירסה חינאמית"
1328
-
1329
- #: templates/account.php:442
1330
- msgid "Verify Email"
1331
- msgstr "אמת כתובת דוא\"ל"
1332
-
1333
- #: templates/account.php:453
1334
- msgid "Download %s Version"
1335
- msgstr "הורד גרסת %s"
1336
-
1337
- #: templates/account.php467, templates/account.php649,
1338
- #: templates/account/partials/site.php237,
1339
- #: templates/account/partials/site.php:255
1340
- msgctxt "verb"
1341
- msgid "Show"
1342
- msgstr "הצג"
1343
-
1344
- #: templates/account.php:481
1345
- msgid "What is your %s?"
1346
- msgstr "מה ה%s שלך?"
1347
-
1348
- #: templates/account.php489, templates/account/billing.php:27
1349
- msgctxt "verb"
1350
- msgid "Edit"
1351
- msgstr "ערוך"
1352
-
1353
- #: templates/account.php:502
1354
- msgid "Sites"
1355
- msgstr "אתרים"
1356
-
1357
- #: templates/account.php:513
1358
- msgid "Search by address"
1359
- msgstr "חפש לפי כתובת"
1360
-
1361
- #: templates/account.php522, templates/account.php570, templates/debug.php236,
1362
- #: templates/debug.php364, templates/debug.php449, templates/debug.php486,
1363
- #: templates/debug.php524, templates/debug.php597,
1364
- #: templates/account/payments.php35, templates/debug/logger.php:21
1365
- msgid "ID"
1366
- msgstr "מזהה"
1367
-
1368
- #: templates/account.php523, templates/debug.php:367
1369
- msgid "Address"
1370
- msgstr "כתובת"
1371
-
1372
- #: templates/account.php:524
1373
- msgid "License"
1374
- msgstr "רישיון"
1375
-
1376
- #: templates/account.php:525
1377
- msgid "Plan"
1378
- msgstr "חבילה"
1379
-
1380
- #: templates/account.php:573
1381
- msgctxt "as software license"
1382
- msgid "License"
1383
- msgstr "רישיון"
1384
-
1385
- #: templates/account.php:643
1386
- msgctxt "verb"
1387
- msgid "Hide"
1388
- msgstr "הסתר"
1389
-
1390
- #: templates/account.php:686
1391
- msgid "Cancelling %s"
1392
- msgstr "Cancelling %s"
1393
-
1394
- #: templates/account.php686, templates/account.php703,
1395
- #: templates/forms/subscription-cancellation.php27,
1396
- #: templates/forms/deactivation/form.php:117
1397
- msgid "trial"
1398
- msgstr "trial"
1399
-
1400
- #: templates/account.php701, templates/forms/deactivation/form.php:134
1401
- msgid "Cancelling %s..."
1402
- msgstr "Cancelling %s..."
1403
-
1404
- #: templates/account.php704, templates/forms/subscription-cancellation.php28,
1405
- #: templates/forms/deactivation/form.php:118
1406
- msgid "subscription"
1407
- msgstr "subscription"
1408
-
1409
- #: templates/account.php:718
1410
- msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1411
- msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1412
-
1413
- #: templates/add-ons.php:36
1414
- msgid "Add Ons for %s"
1415
- msgstr "הרחבות עבור %s"
1416
-
1417
- #: templates/add-ons.php:44
1418
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1419
- msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1420
-
1421
- #: templates/add-ons.php:139
1422
- msgid "View details"
1423
- msgstr "פרטים נוספים"
1424
-
1425
- #: templates/admin-notice.php13, templates/forms/license-activation.php208,
1426
- #: templates/forms/resend-key.php:77
1427
- msgctxt "as close a window"
1428
- msgid "Dismiss"
1429
- msgstr "סגירה"
1430
-
1431
- #: templates/auto-installation.php:45
1432
- msgid "%s sec"
1433
- msgstr "%s שניות"
1434
-
1435
- #: templates/auto-installation.php:83
1436
- msgid "Automatic Installation"
1437
- msgstr "התקנה אוטומטית"
1438
-
1439
- #: templates/auto-installation.php:93
1440
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1441
- msgstr "הורדה והתקנה אוטומטית של %s (גרסה בתשלום) מ-%2$s תתחיל בעוד %3$s. אם ברצונך לבצע את ההתקנה ידנית - לחץ על כפתור הביטול עכשיו."
1442
-
1443
- #: templates/auto-installation.php:104
1444
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1445
- msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות לסיום. אנא המתינו בסבלנות עד לסיום מבלי לרענן את הדפדפן."
1446
-
1447
- #: templates/auto-installation.php:109
1448
- msgid "Cancel Installation"
1449
- msgstr "בטל התקנה"
1450
-
1451
- #: templates/checkout.php:172
1452
- msgid "Checkout"
1453
- msgstr "Checkout"
1454
-
1455
- #: templates/checkout.php:172
1456
- msgid "PCI compliant"
1457
- msgstr "עומד בתקן PCI"
1458
-
1459
- #. translators: %s: name (e.g. Hey John,)
1460
- #: templates/connect.php:112
1461
- msgctxt "greeting"
1462
- msgid "Hey %s,"
1463
- msgstr "היי %s,"
1464
-
1465
- #: templates/connect.php:154
1466
- msgid "Allow & Continue"
1467
- msgstr "אפשר\\י והמשכ\\י"
1468
-
1469
- #: templates/connect.php:158
1470
- msgid "Re-send activation email"
1471
- msgstr "שליחה חוזרת של מייל האקטיבציה"
1472
-
1473
- #: templates/connect.php:162
1474
- msgid "Thanks %s!"
1475
- msgstr "תודה %s!"
1476
-
1477
- #: templates/connect.php172, templates/forms/license-activation.php:43
1478
- msgid "Agree & Activate License"
1479
- msgstr "הסכמה והפעלת רישיון"
1480
-
1481
- #: templates/connect.php:181
1482
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1483
- msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
1484
-
1485
- #: templates/connect.php:188
1486
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1487
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1488
-
1489
- #: templates/connect.php:189
1490
- msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1491
- msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1492
-
1493
- #: templates/connect.php:195
1494
- msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1495
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1496
-
1497
- #: templates/connect.php:196
1498
- msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1499
- msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1500
-
1501
- #: templates/connect.php:230
1502
- msgid "We're excited to introduce the Freemius network-level integration."
1503
- msgstr "We're excited to introduce the Freemius network-level integration."
1504
-
1505
- #: templates/connect.php:233
1506
- msgid "During the update process we detected %d site(s) that are still pending license activation."
1507
- msgstr "During the update process we detected %d site(s) that are still pending license activation."
1508
-
1509
- #: templates/connect.php:235
1510
- msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1511
- msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1512
-
1513
- #: templates/connect.php:237
1514
- msgid "%s's paid features"
1515
- msgstr "%s's paid features"
1516
-
1517
- #: templates/connect.php:242
1518
- msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1519
- msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1520
-
1521
- #: templates/connect.php:244
1522
- msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1523
- msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1524
-
1525
- #: templates/connect.php253, templates/forms/license-activation.php:46
1526
- msgid "License key"
1527
- msgstr "מפתח רישיון"
1528
-
1529
- #: templates/connect.php256, templates/forms/license-activation.php:19
1530
- msgid "Can't find your license key?"
1531
- msgstr "האם אינך מוצא את מפתח הרישיון?"
1532
-
1533
- #: templates/connect.php315, templates/connect.php630,
1534
- #: templates/forms/deactivation/retry-skip.php:20
1535
- msgctxt "verb"
1536
- msgid "Skip"
1537
- msgstr "דלג"
1538
-
1539
- #: templates/connect.php:318
1540
- msgid "Delegate to Site Admins"
1541
- msgstr "האצלה למנהלי האתרים"
1542
-
1543
- #: templates/connect.php:318
1544
- msgid "If you click it, this decision will be delegated to the sites administrators."
1545
- msgstr "If you click it, this decision will be delegated to the sites administrators."
1546
-
1547
- #: templates/connect.php:346
1548
- msgid "Your Profile Overview"
1549
- msgstr "פרטים כלליים על הפרופיל"
1550
-
1551
- #: templates/connect.php:347
1552
- msgid "Name and email address"
1553
- msgstr "שם וכתובת דו\"אל"
1554
-
1555
- #: templates/connect.php:352
1556
- msgid "Your Site Overview"
1557
- msgstr "פרטים כלליים על האתר"
1558
-
1559
- #: templates/connect.php:353
1560
- msgid "Site URL, WP version, PHP info, plugins & themes"
1561
- msgstr "כתובת אתר, גרסת וורדפרס, פרטי PHP, תוספים ותבניות"
1562
-
1563
- #: templates/connect.php:358
1564
- msgid "Admin Notices"
1565
- msgstr "התראות מנהל"
1566
-
1567
- #: templates/connect.php359, templates/connect.php:375
1568
- msgid "Updates, announcements, marketing, no spam"
1569
- msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל"
1570
-
1571
- #: templates/connect.php:364
1572
- msgid "Current %s Events"
1573
- msgstr "Current %s Events"
1574
-
1575
- #: templates/connect.php:365
1576
- msgid "Activation, deactivation and uninstall"
1577
- msgstr "הפעלה, כיבוי והסרה"
1578
-
1579
- #: templates/connect.php:374
1580
- msgid "Newsletter"
1581
- msgstr "ניוסלטר"
1582
-
1583
- #: templates/connect.php391, templates/forms/license-activation.php:38
1584
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1585
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1586
-
1587
- #: templates/connect.php:396
1588
- msgid "What permissions are being granted?"
1589
- msgstr "מהן ההרשאות המוענקות?"
1590
-
1591
- #: templates/connect.php:417
1592
- msgid "Don't have a license key?"
1593
- msgstr "האם אין ברשותך מפתח רישיון?"
1594
-
1595
- #: templates/connect.php:418
1596
- msgid "Activate Free Version"
1597
- msgstr "הפעלת גירסה חינאמית"
1598
-
1599
- #: templates/connect.php:420
1600
- msgid "Have a license key?"
1601
- msgstr "האם ברשותך רישיון?"
1602
-
1603
- #: templates/connect.php:428
1604
- msgid "Privacy Policy"
1605
- msgstr "מדיניות פרטיות"
1606
-
1607
- #: templates/connect.php:430
1608
- msgid "License Agreement"
1609
- msgstr "License Agreement"
1610
-
1611
- #: templates/connect.php:430
1612
- msgid "Terms of Service"
1613
- msgstr "תנאי השירות"
1614
-
1615
- #: templates/connect.php:766
1616
- msgctxt "as in the process of sending an email"
1617
- msgid "Sending email"
1618
- msgstr "שולח דוא\"ל"
1619
-
1620
- #: templates/connect.php:767
1621
- msgctxt "as activating plugin"
1622
- msgid "Activating"
1623
- msgstr "מפעיל"
1624
-
1625
- #: templates/contact.php:78
1626
- msgid "Contact"
1627
- msgstr "Contact"
1628
-
1629
- #: templates/debug.php:17
1630
- msgctxt "as turned off"
1631
- msgid "Off"
1632
- msgstr "כבוי"
1633
-
1634
- #: templates/debug.php:18
1635
- msgctxt "as turned on"
1636
- msgid "On"
1637
- msgstr "דלוק"
1638
-
1639
- #: templates/debug.php:20
1640
- msgid "SDK"
1641
- msgstr "SDK"
1642
-
1643
- #: templates/debug.php:24
1644
- msgctxt "as code debugging"
1645
- msgid "Debugging"
1646
- msgstr "דיבוג"
1647
-
1648
- #: templates/debug.php54, templates/debug.php248, templates/debug.php374,
1649
- #: templates/debug.php:492
1650
- msgid "Actions"
1651
- msgstr "פעולות"
1652
-
1653
- #: templates/debug.php:64
1654
- msgid "Are you sure you want to delete all Freemius data?"
1655
- msgstr "Are you sure you want to delete all Freemius data?"
1656
-
1657
- #: templates/debug.php:64
1658
- msgid "Delete All Accounts"
1659
- msgstr "מחיקת כל החשבונות"
1660
-
1661
- #: templates/debug.php:71
1662
- msgid "Clear API Cache"
1663
- msgstr "ניקוי מטמון ה-API"
1664
-
1665
- #: templates/debug.php:79
1666
- msgid "Clear Updates Transients"
1667
- msgstr "Clear Updates Transients"
1668
-
1669
- #: templates/debug.php:86
1670
- msgid "Sync Data From Server"
1671
- msgstr "סנכרון מידע מהשרת"
1672
-
1673
- #: templates/debug.php:95
1674
- msgid "Migrate Options to Network"
1675
- msgstr "Migrate Options to Network"
1676
-
1677
- #: templates/debug.php:100
1678
- msgid "Load DB Option"
1679
- msgstr "Load DB Option"
1680
-
1681
- #: templates/debug.php:103
1682
- msgid "Set DB Option"
1683
- msgstr "Set DB Option"
1684
-
1685
- #: templates/debug.php:180
1686
- msgid "Key"
1687
- msgstr "Key"
1688
-
1689
- #: templates/debug.php:181
1690
- msgid "Value"
1691
- msgstr "Value"
1692
-
1693
- #: templates/debug.php:197
1694
- msgctxt "as software development kit versions"
1695
- msgid "SDK Versions"
1696
- msgstr "גרסאות SDK"
1697
-
1698
- #: templates/debug.php:202
1699
- msgid "SDK Path"
1700
- msgstr "מיקום SDK"
1701
-
1702
- #: templates/debug.php203, templates/debug.php:242
1703
- msgid "Module Path"
1704
- msgstr "Module Path"
1705
-
1706
- #: templates/debug.php:204
1707
- msgid "Is Active"
1708
- msgstr "האם פעיל"
1709
-
1710
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1711
- msgid "Plugins"
1712
- msgstr "תוספים"
1713
-
1714
- #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1715
- msgid "Themes"
1716
- msgstr "תבניות"
1717
-
1718
- #: templates/debug.php237, templates/debug.php369, templates/debug.php451,
1719
- #: templates/debug/scheduled-crons.php:80
1720
- msgid "Slug"
1721
- msgstr "מזהה כתובת"
1722
-
1723
- #: templates/debug.php239, templates/debug.php:450
1724
- msgid "Title"
1725
- msgstr "כותרת"
1726
-
1727
- #: templates/debug.php:240
1728
- msgctxt "as application program interface"
1729
- msgid "API"
1730
- msgstr "API"
1731
-
1732
- #: templates/debug.php:241
1733
- msgid "Freemius State"
1734
- msgstr "מצב פרימיוס"
1735
-
1736
- #: templates/debug.php:245
1737
- msgid "Network Blog"
1738
- msgstr "Network Blog"
1739
-
1740
- #: templates/debug.php:246
1741
- msgid "Network User"
1742
- msgstr "משתמש רשת"
1743
-
1744
- #: templates/debug.php:283
1745
- msgctxt "as connection was successful"
1746
- msgid "Connected"
1747
- msgstr "מחובר"
1748
-
1749
- #: templates/debug.php:284
1750
- msgctxt "as connection blocked"
1751
- msgid "Blocked"
1752
- msgstr "חסום"
1753
-
1754
- #: templates/debug.php:320
1755
- msgid "Simulate Trial Promotion"
1756
- msgstr "Simulate Trial Promotion"
1757
-
1758
- #: templates/debug.php:332
1759
- msgid "Simulate Network Upgrade"
1760
- msgstr "סמלוץ עדכון לרשת"
1761
-
1762
- #: templates/debug.php:358
1763
- msgid "%s Installs"
1764
- msgstr "%s התקנות"
1765
-
1766
- #: templates/debug.php:360
1767
- msgctxt "like websites"
1768
- msgid "Sites"
1769
- msgstr "אתרים"
1770
-
1771
- #: templates/debug.php366, templates/account/partials/site.php:148
1772
- msgid "Blog ID"
1773
- msgstr "מזהה בלוג"
1774
-
1775
- #: templates/debug.php431, templates/debug.php509,
1776
- #: templates/account/partials/addon.php:339
1777
- msgctxt "verb"
1778
- msgid "Delete"
1779
- msgstr "מחק"
1780
-
1781
- #: templates/debug.php:445
1782
- msgid "Add Ons of module %s"
1783
- msgstr "Add Ons of module %s"
1784
-
1785
- #: templates/debug.php:482
1786
- msgid "Users"
1787
- msgstr "משתמשים"
1788
-
1789
- #: templates/debug.php:489
1790
- msgid "Verified"
1791
- msgstr "מאומת"
1792
-
1793
- #: templates/debug.php:520
1794
- msgid "%s Licenses"
1795
- msgstr "%s Licenses"
1796
-
1797
- #: templates/debug.php:525
1798
- msgid "Plugin ID"
1799
- msgstr "Plugin ID"
1800
-
1801
- #: templates/debug.php:527
1802
- msgid "Plan ID"
1803
- msgstr "Plan ID"
1804
-
1805
- #: templates/debug.php:528
1806
- msgid "Quota"
1807
- msgstr "Quota"
1808
-
1809
- #: templates/debug.php:529
1810
- msgid "Activated"
1811
- msgstr "Activated"
1812
-
1813
- #: templates/debug.php:530
1814
- msgid "Blocking"
1815
- msgstr "Blocking"
1816
-
1817
- #: templates/debug.php:532
1818
- msgctxt "as expiration date"
1819
- msgid "Expiration"
1820
- msgstr "תפוגה"
1821
-
1822
- #: templates/debug.php:555
1823
- msgid "Debug Log"
1824
- msgstr "Debug Log"
1825
-
1826
- #: templates/debug.php:559
1827
- msgid "All Types"
1828
- msgstr "כל הסוגים"
1829
-
1830
- #: templates/debug.php:566
1831
- msgid "All Requests"
1832
- msgstr "כל הבקשות"
1833
-
1834
- #: templates/debug.php571, templates/debug.php600,
1835
- #: templates/debug/logger.php:25
1836
- msgid "File"
1837
- msgstr "קובץ"
1838
-
1839
- #: templates/debug.php572, templates/debug.php598,
1840
- #: templates/debug/logger.php:23
1841
- msgid "Function"
1842
- msgstr "פונקציה"
1843
-
1844
- #: templates/debug.php:573
1845
- msgid "Process ID"
1846
- msgstr "Process ID"
1847
-
1848
- #: templates/debug.php:574
1849
- msgid "Logger"
1850
- msgstr "Logger"
1851
-
1852
- #: templates/debug.php575, templates/debug.php599,
1853
- #: templates/debug/logger.php:24
1854
- msgid "Message"
1855
- msgstr "הודעה"
1856
-
1857
- #: templates/debug.php:577
1858
- msgid "Filter"
1859
- msgstr "פילטר"
1860
-
1861
- #: templates/debug.php:585
1862
- msgid "Download"
1863
- msgstr "הורדה"
1864
-
1865
- #: templates/debug.php596, templates/debug/logger.php:22
1866
- msgid "Type"
1867
- msgstr "סוג"
1868
-
1869
- #: templates/debug.php601, templates/debug/logger.php:26
1870
- msgid "Timestamp"
1871
- msgstr "Timestamp"
1872
-
1873
- #: templates/secure-https-header.php:28
1874
- msgid "Secure HTTPS %s page, running from an external domain"
1875
- msgstr "Secure HTTPS %s page, running from an external domain"
1876
-
1877
- #: includes/customizer/class-fs-customizer-support-section.php55,
1878
- #: templates/plugin-info/features.php:43
1879
- msgid "Support"
1880
- msgstr "תמיכה"
1881
-
1882
- #: includes/debug/class-fs-debug-bar-panel.php48,
1883
- #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1884
- msgctxt "milliseconds"
1885
- msgid "ms"
1886
- msgstr "ms"
1887
-
1888
- #: includes/debug/debug-bar-start.php:41
1889
- msgid "Freemius API"
1890
- msgstr "Freemius API"
1891
-
1892
- #: includes/debug/debug-bar-start.php:42
1893
- msgid "Requests"
1894
- msgstr "Requests"
1895
-
1896
- #: templates/account/billing.php:28
1897
- msgctxt "verb"
1898
- msgid "Update"
1899
- msgstr "עדכן"
1900
-
1901
- #: templates/account/billing.php:39
1902
- msgid "Billing"
1903
- msgstr "בילינג"
1904
-
1905
- #: templates/account/billing.php44, templates/account/billing.php:44
1906
- msgid "Business name"
1907
- msgstr "שם עסק"
1908
-
1909
- #: templates/account/billing.php45, templates/account/billing.php:45
1910
- msgid "Tax / VAT ID"
1911
- msgstr "ח.פ."
1912
-
1913
- #: templates/account/billing.php48, templates/account/billing.php48,
1914
- #: templates/account/billing.php49, templates/account/billing.php:49
1915
- msgid "Address Line %d"
1916
- msgstr "כתובת %s"
1917
-
1918
- #: templates/account/billing.php52, templates/account/billing.php:52
1919
- msgid "City"
1920
- msgstr "עיר"
1921
-
1922
- #: templates/account/billing.php52, templates/account/billing.php:52
1923
- msgid "Town"
1924
- msgstr "כפר"
1925
-
1926
- #: templates/account/billing.php53, templates/account/billing.php:53
1927
- msgid "ZIP / Postal Code"
1928
- msgstr "מיקוד / תא דואר"
1929
-
1930
- #: templates/account/billing.php:308
1931
- msgid "Country"
1932
- msgstr "מדינה"
1933
-
1934
- #: templates/account/billing.php:310
1935
- msgid "Select Country"
1936
- msgstr "בחר מדינה"
1937
-
1938
- #: templates/account/billing.php317, templates/account/billing.php:318
1939
- msgid "State"
1940
- msgstr "מחוז/מדינה"
1941
-
1942
- #: templates/account/billing.php317, templates/account/billing.php:318
1943
- msgid "Province"
1944
- msgstr "פרובינציה"
1945
-
1946
- #: templates/account/payments.php:29
1947
- msgid "Payments"
1948
- msgstr "תשלומים"
1949
-
1950
- #: templates/account/payments.php:36
1951
- msgid "Date"
1952
- msgstr "תאריך"
1953
-
1954
- #: templates/account/payments.php:37
1955
- msgid "Amount"
1956
- msgstr "סכום"
1957
-
1958
- #: templates/account/payments.php38, templates/account/payments.php:50
1959
- msgid "Invoice"
1960
- msgstr "חשבונית"
1961
-
1962
- #: templates/debug/api-calls.php:56
1963
- msgid "API"
1964
- msgstr "API"
1965
-
1966
- #: templates/debug/api-calls.php:68
1967
- msgid "Method"
1968
- msgstr "Method"
1969
-
1970
- #: templates/debug/api-calls.php:69
1971
- msgid "Code"
1972
- msgstr "Code"
1973
-
1974
- #: templates/debug/api-calls.php:70
1975
- msgid "Length"
1976
- msgstr "Length"
1977
-
1978
- #: templates/debug/api-calls.php:71
1979
- msgctxt "as file/folder path"
1980
- msgid "Path"
1981
- msgstr "נתיב"
1982
-
1983
- #: templates/debug/api-calls.php:73
1984
- msgid "Body"
1985
- msgstr "Body"
1986
-
1987
- #: templates/debug/api-calls.php:75
1988
- msgid "Result"
1989
- msgstr "Result"
1990
-
1991
- #: templates/debug/api-calls.php:76
1992
- msgid "Start"
1993
- msgstr "Start"
1994
-
1995
- #: templates/debug/api-calls.php:77
1996
- msgid "End"
1997
- msgstr "End"
1998
-
1999
- #: templates/debug/logger.php:15
2000
- msgid "Log"
2001
- msgstr "Log"
2002
-
2003
- #. translators: %s: time period (e.g. In "2 hours")
2004
- #: templates/debug/plugins-themes-sync.php18,
2005
- #: templates/debug/scheduled-crons.php:91
2006
- msgid "In %s"
2007
- msgstr "בעוד %s"
2008
-
2009
- #. translators: %s: time period (e.g. "2 hours" ago)
2010
- #: templates/debug/plugins-themes-sync.php20,
2011
- #: templates/debug/scheduled-crons.php:93
2012
- msgid "%s ago"
2013
- msgstr "לפני %s"
2014
-
2015
- #: templates/debug/plugins-themes-sync.php21,
2016
- #: templates/debug/scheduled-crons.php:74
2017
- msgctxt "seconds"
2018
- msgid "sec"
2019
- msgstr "sec"
2020
-
2021
- #: templates/debug/plugins-themes-sync.php:23
2022
- msgid "Plugins & Themes Sync"
2023
- msgstr "Plugins & Themes Sync"
2024
-
2025
- #: templates/debug/plugins-themes-sync.php:28
2026
- msgid "Total"
2027
- msgstr "Total"
2028
-
2029
- #: templates/debug/plugins-themes-sync.php29,
2030
- #: templates/debug/scheduled-crons.php:84
2031
- msgid "Last"
2032
- msgstr "Last"
2033
-
2034
- #: templates/debug/scheduled-crons.php:76
2035
- msgid "Scheduled Crons"
2036
- msgstr "Scheduled Crons"
2037
-
2038
- #: templates/debug/scheduled-crons.php:81
2039
- msgid "Module"
2040
- msgstr "מודול"
2041
-
2042
- #: templates/debug/scheduled-crons.php:82
2043
- msgid "Module Type"
2044
- msgstr "סוג מודול"
2045
-
2046
- #: templates/debug/scheduled-crons.php:83
2047
- msgid "Cron Type"
2048
- msgstr "Cron Type"
2049
-
2050
- #: templates/debug/scheduled-crons.php:85
2051
- msgid "Next"
2052
- msgstr "Next"
2053
-
2054
- #: templates/forms/affiliation.php:82
2055
- msgid "Non-expiring"
2056
- msgstr "Non-expiring"
2057
-
2058
- #: templates/forms/affiliation.php:85
2059
- msgid "Apply to become an affiliate"
2060
- msgstr "Apply to become an affiliate"
2061
-
2062
- #: templates/forms/affiliation.php:104
2063
- msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2064
- msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2065
-
2066
- #: templates/forms/affiliation.php:119
2067
- msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2068
- msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2069
-
2070
- #: templates/forms/affiliation.php:122
2071
- msgid "Your affiliation account was temporarily suspended."
2072
- msgstr "Your affiliation account was temporarily suspended."
2073
-
2074
- #: templates/forms/affiliation.php:125
2075
- msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2076
- msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2077
-
2078
- #: templates/forms/affiliation.php:128
2079
- msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2080
- msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2081
-
2082
- #: templates/forms/affiliation.php:141
2083
- msgid "Like the %s? Become our ambassador and earn cash ;-)"
2084
- msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2085
-
2086
- #: templates/forms/affiliation.php:142
2087
- msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2088
- msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2089
-
2090
- #: templates/forms/affiliation.php:145
2091
- msgid "Program Summary"
2092
- msgstr "Program Summary"
2093
-
2094
- #: templates/forms/affiliation.php:147
2095
- msgid "%s commission when a customer purchases a new license."
2096
- msgstr "%s commission when a customer purchases a new license."
2097
-
2098
- #: templates/forms/affiliation.php:149
2099
- msgid "Get commission for automated subscription renewals."
2100
- msgstr "Get commission for automated subscription renewals."
2101
-
2102
- #: templates/forms/affiliation.php:152
2103
- msgid "%s tracking cookie after the first visit to maximize earnings potential."
2104
- msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2105
-
2106
- #: templates/forms/affiliation.php:155
2107
- msgid "Unlimited commissions."
2108
- msgstr "Unlimited commissions."
2109
-
2110
- #: templates/forms/affiliation.php:157
2111
- msgid "%s minimum payout amount."
2112
- msgstr "%s minimum payout amount."
2113
-
2114
- #: templates/forms/affiliation.php:158
2115
- msgid "Payouts are in USD and processed monthly via PayPal."
2116
- msgstr "Payouts are in USD and processed monthly via PayPal."
2117
-
2118
- #: templates/forms/affiliation.php:159
2119
- msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2120
- msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2121
-
2122
- #: templates/forms/affiliation.php:162
2123
- msgid "Affiliate"
2124
- msgstr "Affiliate"
2125
-
2126
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2127
- msgid "Email address"
2128
- msgstr "כתובת דוא\"ל"
2129
-
2130
- #: templates/forms/affiliation.php:169
2131
- msgid "Full name"
2132
- msgstr "Full name"
2133
-
2134
- #: templates/forms/affiliation.php:173
2135
- msgid "PayPal account email address"
2136
- msgstr "PayPal account email address"
2137
-
2138
- #: templates/forms/affiliation.php:177
2139
- msgid "Where are you going to promote the %s?"
2140
- msgstr "Where are you going to promote the %s?"
2141
-
2142
- #: templates/forms/affiliation.php:179
2143
- msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2144
- msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2145
-
2146
- #: templates/forms/affiliation.php:181
2147
- msgid "Add another domain"
2148
- msgstr "Add another domain"
2149
-
2150
- #: templates/forms/affiliation.php:185
2151
- msgid "Extra Domains"
2152
- msgstr "Extra Domains"
2153
-
2154
- #: templates/forms/affiliation.php:186
2155
- msgid "Extra domains where you will be marketing the product from."
2156
- msgstr "Extra domains where you will be marketing the product from."
2157
-
2158
- #: templates/forms/affiliation.php:196
2159
- msgid "Promotion methods"
2160
- msgstr "Promotion methods"
2161
-
2162
- #: templates/forms/affiliation.php:199
2163
- msgid "Social media (Facebook, Twitter, etc.)"
2164
- msgstr "Social media (Facebook, Twitter, etc.)"
2165
-
2166
- #: templates/forms/affiliation.php:203
2167
- msgid "Mobile apps"
2168
- msgstr "Mobile apps"
2169
-
2170
- #: templates/forms/affiliation.php:207
2171
- msgid "Website, email, and social media statistics (optional)"
2172
- msgstr "Website, email, and social media statistics (optional)"
2173
-
2174
- #: templates/forms/affiliation.php:210
2175
- msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2176
- msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2177
-
2178
- #: templates/forms/affiliation.php:214
2179
- msgid "How will you promote us?"
2180
- msgstr "How will you promote us?"
2181
-
2182
- #: templates/forms/affiliation.php:217
2183
- msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2184
- msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2185
-
2186
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2187
- msgid "Cancel"
2188
- msgstr "בטל"
2189
-
2190
- #: templates/forms/affiliation.php:225
2191
- msgid "Become an affiliate"
2192
- msgstr "Become an affiliate"
2193
-
2194
- #: templates/forms/license-activation.php:20
2195
- msgid "Please enter the license key that you received in the email right after the purchase:"
2196
- msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל שלך לאחר השלמת הרכישה."
2197
-
2198
- #: templates/forms/license-activation.php:25
2199
- msgid "Update License"
2200
- msgstr "עדכון רישיון"
2201
-
2202
- #: templates/forms/optout.php:30
2203
- msgctxt "verb"
2204
- msgid "Opt Out"
2205
- msgstr "Opt Out"
2206
-
2207
- #: templates/forms/optout.php:31
2208
- msgctxt "verb"
2209
- msgid "Opt In"
2210
- msgstr "Opt In"
2211
-
2212
- #: templates/forms/optout.php:33
2213
- msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2214
- msgstr "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
2215
-
2216
- #: templates/forms/optout.php:35
2217
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2218
- msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2219
-
2220
- #: templates/forms/premium-versions-upgrade-handler.php:40
2221
- msgid "There is a new version of %s available."
2222
- msgstr "יש גרסה חדשה עבור ה%s."
2223
-
2224
- #: templates/forms/premium-versions-upgrade-handler.php:41
2225
- msgid " %s to access version %s security & feature updates, and support."
2226
- msgstr " %s to access version %s security & feature updates, and support."
2227
-
2228
- #: templates/forms/premium-versions-upgrade-handler.php:54
2229
- msgid "New Version Available"
2230
- msgstr "יש גרסה חדשה"
2231
-
2232
- #: templates/forms/premium-versions-upgrade-handler.php:75
2233
- msgctxt "close a window"
2234
- msgid "Dismiss"
2235
- msgstr "סגירה"
2236
-
2237
- #: templates/forms/resend-key.php:21
2238
- msgid "Send License Key"
2239
- msgstr "שליחת מפתח רישיון"
2240
-
2241
- #: templates/forms/resend-key.php:57
2242
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2243
- msgstr "הזן את כתובת הדואל שאיתה שידרגת כדי לקבל את הרישיון שוב."
2244
-
2245
- #: templates/forms/subscription-cancellation.php:37
2246
- msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2247
- msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2248
-
2249
- #: templates/forms/subscription-cancellation.php:47
2250
- msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2251
- msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
2252
-
2253
- #: templates/forms/subscription-cancellation.php:52
2254
- msgid "license"
2255
- msgstr "license"
2256
-
2257
- #: templates/forms/subscription-cancellation.php:57
2258
- msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2259
- msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
2260
-
2261
- #: templates/forms/subscription-cancellation.php:68
2262
- msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2263
- msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2264
-
2265
- #: templates/forms/subscription-cancellation.php:103
2266
- msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2267
- msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
2268
-
2269
- #: templates/forms/subscription-cancellation.php:136
2270
- msgid "Cancel %s?"
2271
- msgstr "Cancel %s?"
2272
-
2273
- #: templates/forms/subscription-cancellation.php:143
2274
- msgid "Proceed"
2275
- msgstr "Proceed"
2276
-
2277
- #: templates/forms/subscription-cancellation.php191,
2278
- #: templates/forms/deactivation/form.php:150
2279
- msgid "Cancel %s & Proceed"
2280
- msgstr "Cancel %s & Proceed"
2281
-
2282
- #: templates/forms/trial-start.php:22
2283
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2284
- msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2285
-
2286
- #: templates/forms/trial-start.php:28
2287
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2288
- msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2289
-
2290
- #: templates/js/style-premium-theme.php:37
2291
- msgid "Premium"
2292
- msgstr "Premium"
2293
-
2294
- #: templates/partials/network-activation.php:23
2295
- msgid "Activate license on all sites in the network."
2296
- msgstr "הפעלת רישיון על כל האתרים ברשת."
2297
-
2298
- #: templates/partials/network-activation.php:24
2299
- msgid "Apply on all sites in the network."
2300
- msgstr "יישום על כל האתרים ברשת."
2301
-
2302
- #: templates/partials/network-activation.php:27
2303
- msgid "Activate license on all pending sites."
2304
- msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים."
2305
-
2306
- #: templates/partials/network-activation.php:28
2307
- msgid "Apply on all pending sites."
2308
- msgstr "יישום על כל האתרים התלויים והעומדים."
2309
-
2310
- #: templates/partials/network-activation.php36,
2311
- #: templates/partials/network-activation.php:68
2312
- msgid "allow"
2313
- msgstr "אפשר"
2314
-
2315
- #: templates/partials/network-activation.php38,
2316
- #: templates/partials/network-activation.php:70
2317
- msgid "delegate"
2318
- msgstr "האצל"
2319
-
2320
- #: templates/partials/network-activation.php41,
2321
- #: templates/partials/network-activation.php:73
2322
- msgid "skip"
2323
- msgstr "דלג"
2324
-
2325
- #: templates/plugin-info/description.php72,
2326
- #: templates/plugin-info/screenshots.php:31
2327
- msgid "Click to view full-size screenshot %d"
2328
- msgstr "Click to view full-size screenshot %d"
2329
-
2330
- #: templates/plugin-info/features.php:56
2331
- msgid "Unlimited Updates"
2332
- msgstr "עדכונים ללא הגבלה"
2333
-
2334
- #: templates/account/partials/activate-license-button.php:46
2335
- msgid "Localhost"
2336
- msgstr "שרת לוקאלי"
2337
-
2338
- #: templates/account/partials/activate-license-button.php:50
2339
- msgctxt "as 5 licenses left"
2340
- msgid "%s left"
2341
- msgstr "נשארו %s"
2342
-
2343
- #: templates/account/partials/activate-license-button.php:51
2344
- msgid "Last license"
2345
- msgstr "רישיון אחרון"
2346
-
2347
- #: templates/account/partials/addon.php:115
2348
- msgid "Cancelled"
2349
- msgstr "בוטל"
2350
-
2351
- #: templates/account/partials/addon.php:125
2352
- msgid "No expiration"
2353
- msgstr "ללא תפוגה"
2354
-
2355
- #: templates/account/partials/addon.php264,
2356
- #: templates/account/partials/addon.php:317
2357
- msgid "Activate this add-on"
2358
- msgstr "הפעל את ההרחבה"
2359
-
2360
- #: templates/account/partials/site.php:181
2361
- msgid "Owner Name"
2362
- msgstr "שם הבעלים"
2363
-
2364
- #: templates/account/partials/site.php:193
2365
- msgid "Owner Email"
2366
- msgstr "מייל הבעלים"
2367
-
2368
- #: templates/account/partials/site.php:205
2369
- msgid "Owner ID"
2370
- msgstr "מזהה הבעלים"
2371
-
2372
- #: templates/account/partials/site.php:270
2373
- msgid "Subscription"
2374
- msgstr "מנוי"
2375
-
2376
- #: templates/forms/deactivation/contact.php:19
2377
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2378
- msgstr "מצטערים על חוסר הנעימות, אנחנו כאן כדי לעזור אם תאפשר\\י זאת."
2379
-
2380
- #: templates/forms/deactivation/contact.php:22
2381
- msgid "Contact Support"
2382
- msgstr "צור קשר"
2383
-
2384
- #: templates/forms/deactivation/form.php:59
2385
- msgid "Anonymous feedback"
2386
- msgstr "פידבק אנונימי"
2387
-
2388
- #: templates/forms/deactivation/form.php:66
2389
- msgid "Deactivate"
2390
- msgstr "כיבוי"
2391
-
2392
- #: templates/forms/deactivation/form.php:68
2393
- msgid "Activate %s"
2394
- msgstr "Activate %s"
2395
-
2396
- #: templates/forms/deactivation/form.php:80
2397
- msgid "Quick Feedback"
2398
- msgstr "Quick Feedback"
2399
-
2400
- #: templates/forms/deactivation/form.php:84
2401
- msgid "If you have a moment, please let us know why you are %s"
2402
- msgstr "If you have a moment, please let us know why you are %s"
2403
-
2404
- #: templates/forms/deactivation/form.php:84
2405
- msgid "deactivating"
2406
- msgstr "deactivating"
2407
-
2408
- #: templates/forms/deactivation/form.php:84
2409
- msgid "switching"
2410
- msgstr "switching"
2411
-
2412
- #: templates/forms/deactivation/form.php:332
2413
- msgid "Submit & %s"
2414
- msgstr "Submit & %s"
2415
-
2416
- #: templates/forms/deactivation/form.php:353
2417
- msgid "Kindly tell us the reason so we can improve."
2418
- msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
2419
-
2420
- #: templates/forms/deactivation/form.php:478
2421
- msgid "Yes - %s"
2422
- msgstr "Yes - %s"
2423
-
2424
- #: templates/forms/deactivation/form.php:485
2425
- msgid "Skip & %s"
2426
- msgstr "דלג ו%s"
2427
-
2428
- #: templates/forms/deactivation/retry-skip.php:21
2429
- msgid "Click here to use the plugin anonymously"
2430
- msgstr "Click here to use the plugin anonymously"
2431
-
2432
- #: templates/forms/deactivation/retry-skip.php:23
2433
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2434
- msgstr "אולי פספסת את זה אבל אינך חייב\\ת לשתף כל מידע איתנו, ביכולתך %s על שיתוף המידע."
1
+ # Copyright (C) 2018 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
5
+ # Vova Feldman <vova@freemius.com>, 2017-2018
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WordPress SDK\n"
9
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
+ "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2018-11-25 07:22+0000\n"
12
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
+ "Language: 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"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+
25
+ #: includes/class-freemius.php:1602
26
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
+
29
+ #: includes/class-freemius.php:1604
30
+ msgid "Error"
31
+ msgstr "שגיאה"
32
+
33
+ #: includes/class-freemius.php:1925
34
+ msgid "I found a better %s"
35
+ msgstr "מצאתי %s יותר טוב"
36
+
37
+ #: includes/class-freemius.php:1927
38
+ msgid "What's the %s's name?"
39
+ msgstr "What's the %s's name?"
40
+
41
+ #: includes/class-freemius.php:1933
42
+ msgid "It's a temporary %s. I'm just debugging an issue."
43
+ msgstr "It's a temporary %s. I'm just debugging an issue."
44
+
45
+ #: includes/class-freemius.php:1935
46
+ msgid "Deactivation"
47
+ msgstr "דיאקטיבציה"
48
+
49
+ #: includes/class-freemius.php:1936
50
+ msgid "Theme Switch"
51
+ msgstr "החלפת תֵמָה"
52
+
53
+ #: includes/class-freemius.php1945, templates/forms/resend-key.php:24
54
+ msgid "Other"
55
+ msgstr "אחר"
56
+
57
+ #: includes/class-freemius.php:1953
58
+ msgid "I no longer need the %s"
59
+ msgstr "I no longer need the %s"
60
+
61
+ #: includes/class-freemius.php:1960
62
+ msgid "I only needed the %s for a short period"
63
+ msgstr "I only needed the %s for a short period"
64
+
65
+ #: includes/class-freemius.php:1966
66
+ msgid "The %s broke my site"
67
+ msgstr "ה%s הרס לי את האתר"
68
+
69
+ #: includes/class-freemius.php:1973
70
+ msgid "The %s suddenly stopped working"
71
+ msgstr "ה%s הפסיק פתאום לעבוד"
72
+
73
+ #: includes/class-freemius.php:1983
74
+ msgid "I can't pay for it anymore"
75
+ msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
+
77
+ #: includes/class-freemius.php:1985
78
+ msgid "What price would you feel comfortable paying?"
79
+ msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
+
81
+ #: includes/class-freemius.php:1991
82
+ msgid "I don't like to share my information with you"
83
+ msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
+
85
+ #: includes/class-freemius.php:2012
86
+ msgid "The %s didn't work"
87
+ msgstr "ה%s לא עבד"
88
+
89
+ #: includes/class-freemius.php:2022
90
+ msgid "I couldn't understand how to make it work"
91
+ msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
+
93
+ #: includes/class-freemius.php:2030
94
+ msgid "The %s is great, but I need specific feature that you don't support"
95
+ msgstr "The %s is great, but I need specific feature that you don't support"
96
+
97
+ #: includes/class-freemius.php:2032
98
+ msgid "What feature?"
99
+ msgstr "איזה פיטצ'ר?"
100
+
101
+ #: includes/class-freemius.php:2036
102
+ msgid "The %s is not working"
103
+ msgstr "ה%s לא עובד"
104
+
105
+ #: includes/class-freemius.php:2038
106
+ msgid "Kindly share what didn't work so we can fix it for future users..."
107
+ msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
+
109
+ #: includes/class-freemius.php:2042
110
+ msgid "It's not what I was looking for"
111
+ msgstr "חיפשתי משהו אחר"
112
+
113
+ #: includes/class-freemius.php:2044
114
+ msgid "What you've been looking for?"
115
+ msgstr "מה חיפשת?"
116
+
117
+ #: includes/class-freemius.php:2048
118
+ msgid "The %s didn't work as expected"
119
+ msgstr "ה%s לא עבד כמצופה"
120
+
121
+ #: includes/class-freemius.php:2050
122
+ msgid "What did you expect?"
123
+ msgstr "למה ציפית?"
124
+
125
+ #: includes/class-freemius.php2853, templates/debug.php:20
126
+ msgid "Freemius Debug"
127
+ msgstr "ניפוי תקלות פרימיוס"
128
+
129
+ #: includes/class-freemius.php:3581
130
+ msgid "I don't know what is cURL or how to install it, help me!"
131
+ msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
+
133
+ #: includes/class-freemius.php:3583
134
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
+ msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
136
+
137
+ #: includes/class-freemius.php:3590
138
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
+
141
+ #: includes/class-freemius.php:3695
142
+ msgid "Yes - do your thing"
143
+ msgstr "כן - בצעו את מה שצריך"
144
+
145
+ #: includes/class-freemius.php:3700
146
+ msgid "No - just deactivate"
147
+ msgstr "לא - פשוט כבה"
148
+
149
+ #: includes/class-freemius.php3745, includes/class-freemius.php4253,
150
+ #: includes/class-freemius.php5318, includes/class-freemius.php11316,
151
+ #: includes/class-freemius.php14649, includes/class-freemius.php14701,
152
+ #: includes/class-freemius.php14763, includes/class-freemius.php16969,
153
+ #: includes/class-freemius.php16979, includes/class-freemius.php17588,
154
+ #: includes/class-freemius.php18446, includes/class-freemius.php18561,
155
+ #: includes/class-freemius.php18705, templates/add-ons.php:43
156
+ msgctxt "exclamation"
157
+ msgid "Oops"
158
+ msgstr "אופס"
159
+
160
+ #: includes/class-freemius.php:3814
161
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
+ msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
163
+
164
+ #: includes/class-freemius.php:4250
165
+ msgctxt "addonX cannot run without pluginY"
166
+ msgid "%s cannot run without %s."
167
+ msgstr "%s לא יכול לעבוד ללא %s."
168
+
169
+ #: includes/class-freemius.php:4251
170
+ msgctxt "addonX cannot run..."
171
+ msgid "%s cannot run without the plugin."
172
+ msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
+
174
+ #: includes/class-freemius.php4363, includes/class-freemius.php4388,
175
+ #: includes/class-freemius.php:17659
176
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
177
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
+
179
+ #: includes/class-freemius.php:5006
180
+ msgid "Premium %s version was successfully activated."
181
+ msgstr "Premium %s version was successfully activated."
182
+
183
+ #: includes/class-freemius.php5018, includes/class-freemius.php:6862
184
+ msgctxt ""
185
+ msgid "W00t"
186
+ msgstr "יש"
187
+
188
+ #: includes/class-freemius.php:5033
189
+ msgid "You have a %s license."
190
+ msgstr "יש לך רישיון %s."
191
+
192
+ #: includes/class-freemius.php5037, includes/class-freemius.php14070,
193
+ #: includes/class-freemius.php14081, includes/class-freemius.php16897,
194
+ #: includes/class-freemius.php17197, includes/class-freemius.php17263,
195
+ #: includes/class-freemius.php:17413
196
+ msgctxt "interjection expressing joy or exuberance"
197
+ msgid "Yee-haw"
198
+ msgstr "יששש"
199
+
200
+ #: includes/class-freemius.php:5301
201
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
+ msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
+
204
+ #: includes/class-freemius.php:5305
205
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
+
208
+ #: includes/class-freemius.php5314, templates/add-ons.php103,
209
+ #: templates/account/partials/addon.php:288
210
+ msgid "More information about %s"
211
+ msgstr "מידע נוסף אודות %s"
212
+
213
+ #: includes/class-freemius.php:5315
214
+ msgid "Purchase License"
215
+ msgstr "קניית רישיון"
216
+
217
+ #: includes/class-freemius.php6230, templates/connect.php:163
218
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
+ msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
+
221
+ #: includes/class-freemius.php:6234
222
+ msgid "start the trial"
223
+ msgstr "התחל תקופת ניסיון"
224
+
225
+ #: includes/class-freemius.php6235, templates/connect.php:167
226
+ msgid "complete the install"
227
+ msgstr "השלם התקנה"
228
+
229
+ #: includes/class-freemius.php:6348
230
+ msgid "You are just one step away - %s"
231
+ msgstr "You are just one step away - %s"
232
+
233
+ #: includes/class-freemius.php:6351
234
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
+ msgid "Complete \"%s\" Activation Now"
236
+ msgstr "השלם הפעלת \"%s\" עכשיו"
237
+
238
+ #: includes/class-freemius.php:6429
239
+ msgid "We made a few tweaks to the %s, %s"
240
+ msgstr "We made a few tweaks to the %s, %s"
241
+
242
+ #: includes/class-freemius.php:6433
243
+ msgid "Opt in to make \"%s\" better!"
244
+ msgstr "Opt in to make \"%s\" better!"
245
+
246
+ #: includes/class-freemius.php:6861
247
+ msgid "The upgrade of %s was successfully completed."
248
+ msgstr "The upgrade of %s was successfully completed."
249
+
250
+ #: includes/class-freemius.php8705, includes/class-fs-plugin-updater.php882,
251
+ #: includes/class-fs-plugin-updater.php1077,
252
+ #: includes/class-fs-plugin-updater.php1084,
253
+ #: templates/auto-installation.php:32
254
+ msgid "Add-On"
255
+ msgstr "Add-On"
256
+
257
+ #: includes/class-freemius.php8707, templates/debug.php359,
258
+ #: templates/debug.php:520
259
+ msgid "Plugin"
260
+ msgstr "תוסף"
261
+
262
+ #: includes/class-freemius.php8708, templates/debug.php359,
263
+ #: templates/debug.php520, templates/forms/deactivation/form.php:67
264
+ msgid "Theme"
265
+ msgstr "תבנית"
266
+
267
+ #: includes/class-freemius.php:11183
268
+ msgid "Invalid site details collection."
269
+ msgstr "Invalid site details collection."
270
+
271
+ #: includes/class-freemius.php:11303
272
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
273
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
274
+
275
+ #: includes/class-freemius.php:11305
276
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
277
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
278
+
279
+ #: includes/class-freemius.php:11541
280
+ msgid "Account is pending activation."
281
+ msgstr "Account is pending activation."
282
+
283
+ #: includes/class-freemius.php11653,
284
+ #: templates/forms/premium-versions-upgrade-handler.php:47
285
+ msgid "Buy a license now"
286
+ msgstr "Buy a license now"
287
+
288
+ #: includes/class-freemius.php11665,
289
+ #: templates/forms/premium-versions-upgrade-handler.php:46
290
+ msgid "Renew your license now"
291
+ msgstr "Renew your license now"
292
+
293
+ #: includes/class-freemius.php:11669
294
+ msgid "%s to access version %s security & feature updates, and support."
295
+ msgstr "%s to access version %s security & feature updates, and support."
296
+
297
+ #: includes/class-freemius.php:14052
298
+ msgid "%s activation was successfully completed."
299
+ msgstr "הפעלת %s הושלמה בהצלחה."
300
+
301
+ #: includes/class-freemius.php:14066
302
+ msgid "Your account was successfully activated with the %s plan."
303
+ msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
304
+
305
+ #: includes/class-freemius.php14077, includes/class-freemius.php:17259
306
+ msgid "Your trial has been successfully started."
307
+ msgstr "הניסיון שלך הופעל בהצלחה."
308
+
309
+ #: includes/class-freemius.php14647, includes/class-freemius.php14699,
310
+ #: includes/class-freemius.php:14761
311
+ msgid "Couldn't activate %s."
312
+ msgstr "לא ניתן להפעיל את %s."
313
+
314
+ #: includes/class-freemius.php14648, includes/class-freemius.php14700,
315
+ #: includes/class-freemius.php:14762
316
+ msgid "Please contact us with the following message:"
317
+ msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
318
+
319
+ #: includes/class-freemius.php15111, includes/class-freemius.php:19543
320
+ msgid "Upgrade"
321
+ msgstr "שדרג"
322
+
323
+ #: includes/class-freemius.php:15117
324
+ msgid "Start Trial"
325
+ msgstr "התחל תקופת ניסיון"
326
+
327
+ #: includes/class-freemius.php:15119
328
+ msgid "Pricing"
329
+ msgstr "מחירון"
330
+
331
+ #: includes/class-freemius.php15181, includes/class-freemius.php:15183
332
+ msgid "Affiliation"
333
+ msgstr "אפיליאציה"
334
+
335
+ #: includes/class-freemius.php15211, includes/class-freemius.php15213,
336
+ #: templates/account.php150, templates/debug.php:324
337
+ msgid "Account"
338
+ msgstr "חשבון"
339
+
340
+ #: includes/class-freemius.php15226, includes/class-freemius.php15228,
341
+ #: includes/customizer/class-fs-customizer-support-section.php:60
342
+ msgid "Contact Us"
343
+ msgstr "יצירת קשר"
344
+
345
+ #: includes/class-freemius.php15238, includes/class-freemius.php15240,
346
+ #: includes/class-freemius.php19553, templates/account.php100,
347
+ #: templates/account/partials/addon.php:41
348
+ msgid "Add-Ons"
349
+ msgstr "Add-Ons"
350
+
351
+ #: includes/class-freemius.php:15274
352
+ msgctxt "ASCII arrow left icon"
353
+ msgid "&#x2190;"
354
+ msgstr "&#x2190;"
355
+
356
+ #: includes/class-freemius.php:15274
357
+ msgctxt "ASCII arrow right icon"
358
+ msgid "&#x27a4;"
359
+ msgstr "&#x27a4;"
360
+
361
+ #: includes/class-freemius.php15276, templates/pricing.php:97
362
+ msgctxt "noun"
363
+ msgid "Pricing"
364
+ msgstr "מחירון"
365
+
366
+ #: includes/class-freemius.php15479,
367
+ #: includes/customizer/class-fs-customizer-support-section.php:67
368
+ msgid "Support Forum"
369
+ msgstr "פורום תמיכה"
370
+
371
+ #: includes/class-freemius.php:16265
372
+ msgid "Your email has been successfully verified - you are AWESOME!"
373
+ msgstr "Your email has been successfully verified - you are AWESOME!"
374
+
375
+ #: includes/class-freemius.php:16266
376
+ msgctxt "a positive response"
377
+ msgid "Right on"
378
+ msgstr "מעולה"
379
+
380
+ #: includes/class-freemius.php:16888
381
+ msgid "Your %s Add-on plan was successfully upgraded."
382
+ msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
383
+
384
+ #: includes/class-freemius.php:16890
385
+ msgid "%s Add-on was successfully purchased."
386
+ msgstr "ההרחבה %s נרכשה בהצלחה."
387
+
388
+ #: includes/class-freemius.php:16893
389
+ msgid "Download the latest version"
390
+ msgstr "הורד את הגרסה האחרונה"
391
+
392
+ #: includes/class-freemius.php:16965
393
+ msgctxt "%1s - plugin title, %2s - API domain"
394
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
395
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
396
+
397
+ #: includes/class-freemius.php16968, includes/class-freemius.php17384,
398
+ #: includes/class-freemius.php:17461
399
+ msgid "Error received from the server:"
400
+ msgstr "הוחזרה שגיאה מהשרת:"
401
+
402
+ #: includes/class-freemius.php:16978
403
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
404
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
405
+
406
+ #: includes/class-freemius.php17160, includes/class-freemius.php17389,
407
+ #: includes/class-freemius.php17432, includes/class-freemius.php:17535
408
+ msgctxt ""
409
+ msgid "Hmm"
410
+ msgstr "אממ"
411
+
412
+ #: includes/class-freemius.php:17173
413
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
414
+ msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
415
+
416
+ #: includes/class-freemius.php17174, templates/account.php102,
417
+ #: templates/add-ons.php134, templates/account/partials/addon.php:43
418
+ msgctxt "trial period"
419
+ msgid "Trial"
420
+ msgstr "ניסיון"
421
+
422
+ #: includes/class-freemius.php:17179
423
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
424
+ msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
425
+
426
+ #: includes/class-freemius.php17183, includes/class-freemius.php:17241
427
+ msgid "Please contact us here"
428
+ msgstr "אנא צור איתנו קשר כאן"
429
+
430
+ #: includes/class-freemius.php:17193
431
+ msgid "Your plan was successfully upgraded."
432
+ msgstr "החבילה שודרגה בהצלחה."
433
+
434
+ #: includes/class-freemius.php:17211
435
+ msgid "Your plan was successfully changed to %s."
436
+ msgstr "החבילה עודכנה בהצלחה אל %s."
437
+
438
+ #: includes/class-freemius.php:17227
439
+ msgid "Your license has expired. You can still continue using the free %s forever."
440
+ msgstr "Your license has expired. You can still continue using the free %s forever."
441
+
442
+ #: includes/class-freemius.php:17229
443
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
444
+ msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
445
+
446
+ #: includes/class-freemius.php:17237
447
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
448
+ msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
449
+
450
+ #: includes/class-freemius.php:17250
451
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
452
+ msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
453
+
454
+ #: includes/class-freemius.php:17273
455
+ msgid "Your free trial has expired. You can still continue using all our free features."
456
+ msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
457
+
458
+ #: includes/class-freemius.php:17275
459
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
460
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
461
+
462
+ #: includes/class-freemius.php:17380
463
+ msgid "It looks like the license could not be activated."
464
+ msgstr "נראה שלא ניתן להפעיל את הרישיון."
465
+
466
+ #: includes/class-freemius.php:17410
467
+ msgid "Your license was successfully activated."
468
+ msgstr "הרישיון הופעל בהצלחה."
469
+
470
+ #: includes/class-freemius.php:17436
471
+ msgid "It looks like your site currently doesn't have an active license."
472
+ msgstr "נראה לאתר עדיין אין רישיון פעיל."
473
+
474
+ #: includes/class-freemius.php:17460
475
+ msgid "It looks like the license deactivation failed."
476
+ msgstr "נראה שניתוק הרישיון נכשל."
477
+
478
+ #: includes/class-freemius.php:17488
479
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
480
+ msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
481
+
482
+ #: includes/class-freemius.php:17489
483
+ msgid "O.K"
484
+ msgstr "אוקיי"
485
+
486
+ #: includes/class-freemius.php:17542
487
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
488
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
489
+
490
+ #: includes/class-freemius.php:17551
491
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
492
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
493
+
494
+ #: includes/class-freemius.php:17593
495
+ msgid "You are already running the %s in a trial mode."
496
+ msgstr "You are already running the %s in a trial mode."
497
+
498
+ #: includes/class-freemius.php:17604
499
+ msgid "You already utilized a trial before."
500
+ msgstr "הניסיון כבר נוצל בעבר."
501
+
502
+ #: includes/class-freemius.php:17618
503
+ msgid "Plan %s do not exist, therefore, can't start a trial."
504
+ msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
505
+
506
+ #: includes/class-freemius.php:17629
507
+ msgid "Plan %s does not support a trial period."
508
+ msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
509
+
510
+ #: includes/class-freemius.php:17640
511
+ msgid "None of the %s's plans supports a trial period."
512
+ msgstr "None of the %s's plans supports a trial period."
513
+
514
+ #: includes/class-freemius.php:17690
515
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
516
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
517
+
518
+ #: includes/class-freemius.php:17726
519
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
520
+ msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
521
+
522
+ #: includes/class-freemius.php:17745
523
+ msgid "Your %s free trial was successfully cancelled."
524
+ msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
525
+
526
+ #: includes/class-freemius.php:18052
527
+ msgid "Version %s was released."
528
+ msgstr "גרסה %s הושקה."
529
+
530
+ #: includes/class-freemius.php:18052
531
+ msgid "Please download %s."
532
+ msgstr "נא להוריד את %s."
533
+
534
+ #: includes/class-freemius.php:18059
535
+ msgid "the latest %s version here"
536
+ msgstr "גרסת ה-%s האחרונה כאן"
537
+
538
+ #: includes/class-freemius.php:18064
539
+ msgid "New"
540
+ msgstr "חדש"
541
+
542
+ #: includes/class-freemius.php:18069
543
+ msgid "Seems like you got the latest release."
544
+ msgstr "נראה שיש לך את הגרסה האחרונה."
545
+
546
+ #: includes/class-freemius.php:18070
547
+ msgid "You are all good!"
548
+ msgstr "את\\ה מסודר!"
549
+
550
+ #: includes/class-freemius.php:18338
551
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
552
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
553
+
554
+ #: includes/class-freemius.php:18473
555
+ msgid "Site successfully opted in."
556
+ msgstr "Site successfully opted in."
557
+
558
+ #: includes/class-freemius.php18474, includes/class-freemius.php:19285
559
+ msgid "Awesome"
560
+ msgstr "אדיר"
561
+
562
+ #: includes/class-freemius.php18490, templates/forms/optout.php:32
563
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
564
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
565
+
566
+ #: includes/class-freemius.php:18491
567
+ msgid "Thank you!"
568
+ msgstr "תודה רבה!"
569
+
570
+ #: includes/class-freemius.php:18498
571
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
572
+ msgstr "We will no longer be sending any usage data of %s on %s to %s."
573
+
574
+ #: includes/class-freemius.php:18627
575
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
576
+ msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
577
+
578
+ #: includes/class-freemius.php:18633
579
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
580
+ msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
581
+
582
+ #: includes/class-freemius.php:18638
583
+ msgid "%s is the new owner of the account."
584
+ msgstr "%s הינו הבעלים החד של חשבון זה."
585
+
586
+ #: includes/class-freemius.php:18640
587
+ msgctxt "as congratulations"
588
+ msgid "Congrats"
589
+ m