FooGallery – Image Gallery WordPress Plugin - Version 1.4.27

Version Description

  • Fix : Justified gallery issues in certain browsers / devices
  • Fix : Portfolio gallery issues in certain browsers / devices
  • Fix : Use of correct rel attribute for better lightbox compatibility and W3 validation
  • Fix : Removed local translations that were incomplete and outdated
  • Update : FooGallery client side 1.0.24
  • Update : language files
Download this release

Release Info

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

Code changes from version 1.4.25 to 1.4.27

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 image gallery, video gallery, photography, photographer, retina
5
  Requires at least: 3.9
6
- Tested up to: 4.9.4
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -150,6 +150,19 @@ Update now to get all the latest features, bug fixes and improvements!
150
 
151
  == Changelog ==
152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  = 1.4.25 =
154
 
155
  * New : Retina support for albums!
3
  Donate link: http://fooplugins.com
4
  Tags: gallery, image gallery, photo gallery, responsive, album, media gallery, masonry gallery, portfolio, justified image gallery, video gallery, photography, photographer, retina
5
  Requires at least: 3.9
6
+ Tested up to: 4.9.5
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
150
 
151
  == Changelog ==
152
 
153
+ = 1.4.27 =
154
+
155
+ * Fix : Justified gallery issues in certain browsers / devices
156
+ * Fix : Portfolio gallery issues in certain browsers / devices
157
+ * Fix : Use of correct rel attribute for better lightbox compatibility and W3 validation
158
+ * Fix : Removed local translations that were incomplete and outdated
159
+ * Update : FooGallery client side 1.0.24
160
+ * Update : language files
161
+
162
+ = 1.4.26 =
163
+
164
+ * Fix : Filtering introduced an array initialization construct not working for older versions of php
165
+
166
  = 1.4.25 =
167
 
168
  * New : Retina support for albums!
extensions/albums/album-stack.php CHANGED
@@ -14,7 +14,7 @@ $pile_angles = foogallery_album_template_setting( 'pile_angles', '2' );
14
  if ( !function_exists( 'foogallery_album_all_in_one_stack_render_gallery_attachment' ) ) {
15
  function foogallery_album_all_in_one_stack_render_gallery_attachment( $gallery, $attachment, $args, $lightbox ) {
16
  echo '<li data-pile="' . esc_attr( $gallery->name ) . '">';
17
- $args['link_attributes']['rel'] = 'gallery[' . $gallery->ID . ']';
18
  $args['link_attributes']['class'] = apply_filters( 'foogallery_album_stack_link_class_name', $lightbox );
19
  echo $attachment->html( $args, false, false );
20
  if ( $attachment->caption ) {
14
  if ( !function_exists( 'foogallery_album_all_in_one_stack_render_gallery_attachment' ) ) {
15
  function foogallery_album_all_in_one_stack_render_gallery_attachment( $gallery, $attachment, $args, $lightbox ) {
16
  echo '<li data-pile="' . esc_attr( $gallery->name ) . '">';
17
+ $args['link_attributes']['rel'] = 'lightbox[' . $gallery->ID . ']';
18
  $args['link_attributes']['class'] = apply_filters( 'foogallery_album_stack_link_class_name', $lightbox );
19
  echo $attachment->html( $args, false, false );
20
  if ( $attachment->caption ) {
extensions/default-templates/shared/js/foogallery.js CHANGED
@@ -6985,7 +6985,8 @@
6985
  position: 'absolute',
6986
  top: 0,
6987
  left: -9999,
6988
- visibility: 'hidden'
 
6989
  }).appendTo('body');
6990
  self._items = self.$el.find(self.options.itemSelector).removeAttr("style").removeClass("fg-positioned").map(function(i, el){
6991
  var $item = $(el), width = 0, height = 0, ratio;
@@ -7019,7 +7020,7 @@
7019
  getContainerWidth: function(){
7020
  var self = this, visible = self.$el.is(':visible');
7021
  if (!visible){
7022
- return self.$el.parents(':visible:first').width();
7023
  }
7024
  return self.$el.width();
7025
  },
@@ -7231,7 +7232,7 @@
7231
  self.justified.layout( true );
7232
  },
7233
  onReady: function(event, self){
7234
- self.justified.layout();
7235
  },
7236
  onDestroy: function(event, self){
7237
  self.justified.destroy();
@@ -7281,7 +7282,8 @@
7281
  position: 'absolute',
7282
  top: 0,
7283
  left: -9999,
7284
- visibility: 'hidden'
 
7285
  }).appendTo('body');
7286
  self._items = self.$el.find(".fg-item").removeAttr("style").removeClass("fg-positioned").map(function(i, el){
7287
  var $item = $(el),
@@ -7319,7 +7321,7 @@
7319
  getContainerWidth: function(){
7320
  var self = this, visible = self.$el.is(':visible');
7321
  if (!visible){
7322
- return self.$el.parents(':visible:first').width();
7323
  }
7324
  return self.$el.width();
7325
  },
@@ -7485,7 +7487,7 @@
7485
  self.portfolio.layout( true );
7486
  },
7487
  onReady: function(event, self){
7488
- self.portfolio.layout();
7489
  },
7490
  onDestroy: function(event, self){
7491
  self.portfolio.destroy();
@@ -7810,7 +7812,7 @@
7810
  self.$hidden.append(
7811
  $("<a/>", {
7812
  href: item.href,
7813
- rel: "foobox[" + self.id + "]"
7814
  }).attr(item.attr.anchor)
7815
  );
7816
  }
@@ -7848,11 +7850,11 @@
7848
 
7849
  // this automatically initializes all templates on page load
7850
  $(function () {
7851
- $('[id^="foogallery-"]:not(.fg-ready)').foogallery(_.autoDefaults);
7852
  });
7853
 
7854
  _utils.ready(function () {
7855
- $('[id^="foogallery-"].fg-ready').foogallery(_.autoDefaults);
7856
  });
7857
 
7858
  })(
6985
  position: 'absolute',
6986
  top: 0,
6987
  left: -9999,
6988
+ visibility: 'hidden',
6989
+ maxWidth: self.getContainerWidth()
6990
  }).appendTo('body');
6991
  self._items = self.$el.find(self.options.itemSelector).removeAttr("style").removeClass("fg-positioned").map(function(i, el){
6992
  var $item = $(el), width = 0, height = 0, ratio;
7020
  getContainerWidth: function(){
7021
  var self = this, visible = self.$el.is(':visible');
7022
  if (!visible){
7023
+ return self.$el.parents(':visible:first').innerWidth();
7024
  }
7025
  return self.$el.width();
7026
  },
7232
  self.justified.layout( true );
7233
  },
7234
  onReady: function(event, self){
7235
+ self.justified.layout( true );
7236
  },
7237
  onDestroy: function(event, self){
7238
  self.justified.destroy();
7282
  position: 'absolute',
7283
  top: 0,
7284
  left: -9999,
7285
+ visibility: 'hidden',
7286
+ maxWidth: self.getContainerWidth()
7287
  }).appendTo('body');
7288
  self._items = self.$el.find(".fg-item").removeAttr("style").removeClass("fg-positioned").map(function(i, el){
7289
  var $item = $(el),
7321
  getContainerWidth: function(){
7322
  var self = this, visible = self.$el.is(':visible');
7323
  if (!visible){
7324
+ return self.$el.parents(':visible:first').innerWidth();
7325
  }
7326
  return self.$el.width();
7327
  },
7487
  self.portfolio.layout( true );
7488
  },
7489
  onReady: function(event, self){
7490
+ self.portfolio.layout( true );
7491
  },
7492
  onDestroy: function(event, self){
7493
  self.portfolio.destroy();
7812
  self.$hidden.append(
7813
  $("<a/>", {
7814
  href: item.href,
7815
+ rel: "lightbox[" + self.id + "]"
7816
  }).attr(item.attr.anchor)
7817
  );
7818
  }
7850
 
7851
  // this automatically initializes all templates on page load
7852
  $(function () {
7853
+ $('[id^="foogallery-gallery-"]:not(.fg-ready)').foogallery(_.autoDefaults);
7854
  });
7855
 
7856
  _utils.ready(function () {
7857
+ $('[id^="foogallery-gallery-"].fg-ready').foogallery(_.autoDefaults);
7858
  });
7859
 
7860
  })(
extensions/default-templates/shared/js/foogallery.min.js CHANGED
@@ -1,10 +1,10 @@
1
  /*
2
  * FooGallery - The Most Intuitive and Extensible Gallery Creation and Management Tool Ever Created for WordPress
3
- * @version 1.0.23
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,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().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.$el.empty(),c._undo.create&&c.$el.remove(),c.$el=c.state=c.items=c.pages=null,c.destroyed=!0,c.initializing=!1,c.initialized=!1)},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]):a.map(g[1].split(b.opt.array),function(a){return decodeURIComponent(a)}),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("+"):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),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)}(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.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").isDefaultPrevented()||(a.doDestroyItem(),a._super()),null===a.tmpl},doDestroyItem:function(){var a=this;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())},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())),
10
- 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);var h=!d.empty(c.caption),i=!d.empty(c.description);if(h||i){g.inner.class=f.inner,g.title.class=f.title,g.description.class=f.description;var j=a("<div/>").attr(g.inner).appendTo(c.$caption);if(h){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),j.append(k)}if(i){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),j.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;return d.hash(c)?e=c.type:d.element(c)&&(e=a(c).find(this.tmpl.sel.item.anchor).data("type")),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=[]},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)},destroy:function(){a(window).off("resize.justified"),this.$el.removeAttr("style")},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"}).appendTo("body");return b._items=b.$el.find(b.options.itemSelector).removeAttr("style").removeClass("fg-positioned").map(function(e,f){var g,h=a(f),i=0,j=0;if(c)i=h.outerWidth(),j=h.outerHeight();else{var k=h.clone();k.appendTo(d),i=k.outerWidth(),j=k.outerHeight()}return g=b.options.rowHeight/j,{index:e,width:i*g,height:b.options.rowHeight,top:0,left:0,$item:h}}).get(),d.remove(),b._items},round:function(a){return Math.round(a)},getContainerWidth:function(){var a=this;return a.$el.is(":visible")?a.$el.width():a.$el.parents(":visible:first").width()},layout:function(a,b){a=!!d.boolean(a)&&a,b=!d.boolean(b)||b,(a||0===this._items.length)&&this.parse();for(var c,e=this,f=e.getContainerWidth(),g=e.rows(f),h=0,i=0,j=g.length;i<j;i++)c=g[i],h=i===j-1?e.lastRow(c,f,h):e.justify(c,f,h),e.render(c);e.$el.height(h),b&&e.getContainerWidth()<f&&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")},lastRow:function(a,b,c){var d=this;switch(d.options.lastRow){case"hide":a.visible=!1;break;case"justify":c=d.justify(a,b,c);break;case"nojustify":c=a.width/b>d.options.justifyThreshold?d.justify(a,b,c):d.position(a,b,c,"left");break;case"right":case"center":case"left":c=d.position(a,b,c,d.options.lastRow);break;default:c=d.position(a,b,c,"left")}return c},justify:function(a,b,c){var d=this,e=0,f=d.options.margins*(a.items.length-1),g=(b-f)/a.width;a.index>0&&(c+=d.options.margins),a.top=c,a.width=d.round(a.width*g),a.height=d.round(a.height*g);for(var h,i=0,j=a.items.length;i<j;i++)h=a.items[i],h.width=d.round(h.width*g),h.height=d.round(h.height*g),h.top=c,i>0&&(e+=d.options.margins),h.left=e,e+=h.width;return c+(a.height>d.options.maxRowHeight?d.options.maxRowHeight:a.height)},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.margins),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,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.margins);for(var h,i,j,k={index:f,visible:!0,top:g,width:0,height:b.options.rowHeight,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.margins),i.left=m,m+=i.width,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.Justified.defaults={itemSelector:".fg-item",rowHeight:150,maxRowHeight:"200%",margins:0,lastRow:"center",justifyThreshold:.5}}(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()},onDestroy:function(a,b){b.justified.destroy()},onLayout:function(a,b){b.justified.layout(!0)},onParsedItems:function(a,b,c){b.justified.layout(!0)},onAppendedItems:function(a,b,c){b.justified.layout(!0)},onDetachedItems:function(a,b,c){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=[]},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=a("<div/>",{class:b.$el.attr("class")}).css({position:"absolute",top:0,left:-9999,visibility:"hidden"}).appendTo("body");return b._items=b.$el.find(".fg-item").removeAttr("style").removeClass("fg-positioned").map(function(b,e){var f=a(e),g=f.find(".fg-thumb"),h=f.find(".fg-image"),i=0,j=0;if(f.find(".fg-caption").css("max-width",parseFloat(h.attr("width"))),h.css({width:h.attr("width"),height:h.attr("height")}),c)i=f.outerWidth(),j=f.outerHeight();else{var k=f.clone();k.appendTo(d),i=k.outerWidth(),j=k.outerHeight()}return h.css({width:"",height:""}),{index:b,width:i,height:j,top:0,left:0,$item:f,$thumb:g}}).get(),d.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").width()},layout:function(a,b){a=!!d.boolean(a)&&a,b=!d.boolean(b)||b,(a||0===this._items.length)&&this.parse();for(var c,e=this,f=e.getContainerWidth(),g=e.rows(f),h=0,i=0,j=g.length;i<j;i++)c=g[i],h=e.position(c,f,h,e.options.align),e.render(c);e.$el.height(h),b&&e.getContainerWidth()<f&&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: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()},onDestroy:function(a,b){b.portfolio.destroy()},onLayout:function(a,b){b.portfolio.layout(!0)},onParsedItems:function(a,b,c){b.portfolio.layout(!0)},onAppendedItems:function(a,b,c){b.portfolio.layout(!0)},onDetachedItems:function(a,b,c){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}),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}))))},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})},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:"foobox["+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){("first-load"===b.type||c.initialized&&("after-page-change"===b.type&&!f||"after-filter-change"===b.type))&&a("body").trigger("post-load")},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-"]:not(.fg-ready)').foogallery(b.autoDefaults)}),c.ready(function(){a('[id^="foogallery-"].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.0.25
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,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().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.$el.empty(),c._undo.create&&c.$el.remove(),c.$el=c.state=c.items=c.pages=null,c.destroyed=!0,c.initializing=!1,c.initialized=!1)},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]):a.map(g[1].split(b.opt.array),function(a){return decodeURIComponent(a)}),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("+"):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),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)}(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.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").isDefaultPrevented()||(a.doDestroyItem(),a._super()),null===a.tmpl},doDestroyItem:function(){var a=this;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())},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())),
10
+ 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);var h=!d.empty(c.caption),i=!d.empty(c.description);if(h||i){g.inner.class=f.inner,g.title.class=f.title,g.description.class=f.description;var j=a("<div/>").attr(g.inner).appendTo(c.$caption);if(h){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),j.append(k)}if(i){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),j.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;return d.hash(c)?e=c.type:d.element(c)&&(e=a(c).find(this.tmpl.sel.item.anchor).data("type")),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=[]},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)},destroy:function(){a(window).off("resize.justified"),this.$el.removeAttr("style")},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(e,f){var g,h=a(f),i=0,j=0;if(c)i=h.outerWidth(),j=h.outerHeight();else{var k=h.clone();k.appendTo(d),i=k.outerWidth(),j=k.outerHeight()}return g=b.options.rowHeight/j,{index:e,width:i*g,height:b.options.rowHeight,top:0,left:0,$item:h}}).get(),d.remove(),b._items},round:function(a){return Math.round(a)},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,(a||0===this._items.length)&&this.parse();for(var c,e=this,f=e.getContainerWidth(),g=e.rows(f),h=0,i=0,j=g.length;i<j;i++)c=g[i],h=i===j-1?e.lastRow(c,f,h):e.justify(c,f,h),e.render(c);e.$el.height(h),b&&e.getContainerWidth()<f&&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")},lastRow:function(a,b,c){var d=this;switch(d.options.lastRow){case"hide":a.visible=!1;break;case"justify":c=d.justify(a,b,c);break;case"nojustify":c=a.width/b>d.options.justifyThreshold?d.justify(a,b,c):d.position(a,b,c,"left");break;case"right":case"center":case"left":c=d.position(a,b,c,d.options.lastRow);break;default:c=d.position(a,b,c,"left")}return c},justify:function(a,b,c){var d=this,e=0,f=d.options.margins*(a.items.length-1),g=(b-f)/a.width;a.index>0&&(c+=d.options.margins),a.top=c,a.width=d.round(a.width*g),a.height=d.round(a.height*g);for(var h,i=0,j=a.items.length;i<j;i++)h=a.items[i],h.width=d.round(h.width*g),h.height=d.round(h.height*g),h.top=c,i>0&&(e+=d.options.margins),h.left=e,e+=h.width;return c+(a.height>d.options.maxRowHeight?d.options.maxRowHeight:a.height)},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.margins),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,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.margins);for(var h,i,j,k={index:f,visible:!0,top:g,width:0,height:b.options.rowHeight,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.margins),i.left=m,m+=i.width,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.Justified.defaults={itemSelector:".fg-item",rowHeight:150,maxRowHeight:"200%",margins:0,lastRow:"center",justifyThreshold:.5}}(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.justified.layout(!0)},onAppendedItems:function(a,b,c){b.justified.layout(!0)},onDetachedItems:function(a,b,c){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=[]},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=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(".fg-item").removeAttr("style").removeClass("fg-positioned").map(function(b,e){var f=a(e),g=f.find(".fg-thumb"),h=f.find(".fg-image"),i=0,j=0;if(f.find(".fg-caption").css("max-width",parseFloat(h.attr("width"))),h.css({width:h.attr("width"),height:h.attr("height")}),c)i=f.outerWidth(),j=f.outerHeight();else{var k=f.clone();k.appendTo(d),i=k.outerWidth(),j=k.outerHeight()}return h.css({width:"",height:""}),{index:b,width:i,height:j,top:0,left:0,$item:f,$thumb:g}}).get(),d.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,(a||0===this._items.length)&&this.parse();for(var c,e=this,f=e.getContainerWidth(),g=e.rows(f),h=0,i=0,j=g.length;i<j;i++)c=g[i],h=e.position(c,f,h,e.options.align),e.render(c);e.$el.height(h),b&&e.getContainerWidth()<f&&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: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.portfolio.layout(!0)},onAppendedItems:function(a,b,c){b.portfolio.layout(!0)},onDetachedItems:function(a,b,c){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}),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}))))},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})},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){("first-load"===b.type||c.initialized&&("after-page-change"===b.type&&!f||"after-filter-change"===b.type))&&a("body").trigger("post-load")},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/default-templates/thumbnail/gallery-thumbnail.php CHANGED
@@ -25,7 +25,7 @@ if ( foogallery_gallery_template_setting( 'link_custom_url', '' ) == 'on' ) {
25
  $args['link'] = 'custom';
26
  }
27
  $args['link_attributes'] = array(
28
- 'rel' => 'foobox[' . $current_foogallery->ID . ']'
29
  );
30
  $foogallery_single_thumbnail_classes = foogallery_build_class_attribute_safe( $current_foogallery, 'foogallery-single-thumbnail', 'foogallery-lightbox-' . $lightbox, $position );
31
  $foogallery_single_thumbnail_attributes = foogallery_build_container_attributes_safe( $current_foogallery, array( 'class' => $foogallery_single_thumbnail_classes ) );
25
  $args['link'] = 'custom';
26
  }
27
  $args['link_attributes'] = array(
28
+ 'rel' => 'lightbox[' . $current_foogallery->ID . ']'
29
  );
30
  $foogallery_single_thumbnail_classes = foogallery_build_class_attribute_safe( $current_foogallery, 'foogallery-single-thumbnail', 'foogallery-lightbox-' . $lightbox, $position );
31
  $foogallery_single_thumbnail_attributes = foogallery_build_container_attributes_safe( $current_foogallery, array( 'class' => $foogallery_single_thumbnail_classes ) );
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.4.25
7
  Author: FooPlugins
8
  Plugin URI: https://foo.gallery
9
  Author URI: http://fooplugins.com
@@ -23,7 +23,7 @@ if ( !class_exists( 'FooGallery_Plugin' ) ) {
23
  define( 'FOOGALLERY_PATH', plugin_dir_path( __FILE__ ) );
24
  define( 'FOOGALLERY_URL', plugin_dir_url( __FILE__ ) );
25
  define( 'FOOGALLERY_FILE', __FILE__ );
26
- define( 'FOOGALLERY_VERSION', '1.4.25' );
27
  define( 'FOOGALLERY_SETTINGS_VERSION', '2' );
28
  require_once FOOGALLERY_PATH . 'includes/constants.php';
29
  // 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.4.27
7
  Author: FooPlugins
8
  Plugin URI: https://foo.gallery
9
  Author URI: http://fooplugins.com
23
  define( 'FOOGALLERY_PATH', plugin_dir_path( __FILE__ ) );
24
  define( 'FOOGALLERY_URL', plugin_dir_url( __FILE__ ) );
25
  define( 'FOOGALLERY_FILE', __FILE__ );
26
+ define( 'FOOGALLERY_VERSION', '1.4.27' );
27
  define( 'FOOGALLERY_SETTINGS_VERSION', '2' );
28
  require_once FOOGALLERY_PATH . 'includes/constants.php';
29
  // Create a helper function for easy SDK access.
includes/class-thumbnails.php CHANGED
@@ -57,6 +57,10 @@ if ( !class_exists( 'FooGallery_Thumbnails' ) ) {
57
  $height = (int)$args['height'];
58
  $crop = (bool)$args['crop'];
59
 
 
 
 
 
60
  //we can force the use of the originally uploaded full-size image
61
  $force_use_original_image = isset( $args['force_use_original_image'] ) && true === $args['force_use_original_image'];
62
 
57
  $height = (int)$args['height'];
58
  $crop = (bool)$args['crop'];
59
 
60
+ if ( 0 === $width && 0 === $height ) {
61
+ return $original_image_src;
62
+ }
63
+
64
  //we can force the use of the originally uploaded full-size image
65
  $force_use_original_image = isset( $args['force_use_original_image'] ) && true === $args['force_use_original_image'];
66
 
js/admin-foogallery-attachment-autosave.js CHANGED
@@ -58,11 +58,11 @@
58
 
59
  // if you want to sanitize the data being sent back to the server we can override the original
60
  // wp.media.model.Attachment#saveCompat function using the below.
61
- var saveCompat = model.Attachment.prototype.saveCompat;
62
- model.Attachment.prototype.saveCompat = function(data){
63
- console.log("saveCompat", data);
64
- return saveCompat.apply(this, arguments);
65
- };
66
  })(
67
  jQuery,
68
  wp.media.view,
58
 
59
  // if you want to sanitize the data being sent back to the server we can override the original
60
  // wp.media.model.Attachment#saveCompat function using the below.
61
+ // var saveCompat = model.Attachment.prototype.saveCompat;
62
+ // model.Attachment.prototype.saveCompat = function(data){
63
+ // console.log("saveCompat", data);
64
+ // return saveCompat.apply(this, arguments);
65
+ // };
66
  })(
67
  jQuery,
68
  wp.media.view,
js/foogallery.admin.min.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  * FooGallery - The Most Intuitive and Extensible Gallery Creation and Management Tool Ever Created for WordPress
3
- * @version 1.0.23
4
  * @link
5
  * @copyright Steven Usher & Brad Vincent 2015
6
  * @license Released under the GPLv3 license.
1
  /*
2
  * FooGallery - The Most Intuitive and Extensible Gallery Creation and Management Tool Ever Created for WordPress
3
+ * @version 1.0.25
4
  * @link
5
  * @copyright Steven Usher & Brad Vincent 2015
6
  * @license Released under the GPLv3 license.
languages/foogallery-fa_IR.mo DELETED
Binary file
languages/foogallery-fa_IR.po DELETED
@@ -1,2535 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: FooGallery\n"
4
- "POT-Creation-Date: 2015-11-17 16:15+0330\n"
5
- "PO-Revision-Date: 2015-11-22 16:14+0330\n"
6
- "Last-Translator: \n"
7
- "Language-Team: Brad Vincent <brad@fooplugins.com>\n"
8
- "Language: fa_IR\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=1; plural=0;\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: extensions/albums/admin/class-columns.php:19
22
- #: includes/admin/class-columns.php:23
23
- msgid "Template"
24
- msgstr "فرم آماده"
25
-
26
- #: extensions/albums/admin/class-columns.php:20
27
- #: extensions/nextgen-importer/view-importer.php:188
28
- #: includes/class-posttypes.php:26 includes/class-posttypes.php:37
29
- msgid "Galleries"
30
- msgstr "گالری ها"
31
-
32
- #: extensions/albums/admin/class-columns.php:21
33
- #: includes/admin/class-columns.php:25
34
- msgid "Shortcode"
35
- msgstr "کد کوتاه"
36
-
37
- #: extensions/albums/admin/class-columns.php:62
38
- #: extensions/albums/admin/class-metaboxes.php:216
39
- #: includes/admin/class-columns.php:76
40
- #: includes/admin/class-gallery-metaboxes.php:376
41
- msgid "Shortcode copied to clipboard :)"
42
- msgstr "کد کوتاه در کلیپ برد شما ذخیره شد"
43
-
44
- #: extensions/albums/admin/class-metaboxes.php:48
45
- msgid "Galleries - drag n drop to reorder!"
46
- msgstr "گالری ها - مرتب سازی با کشیدن و رها کردن !"
47
-
48
- #: extensions/albums/admin/class-metaboxes.php:57
49
- #: includes/admin/class-admin.php:62 includes/admin/class-menu.php:30
50
- #: includes/foopluginbase/classes/class-foo-plugin-base.php:296
51
- msgid "Settings"
52
- msgstr "تنظیمات"
53
-
54
- #: extensions/albums/admin/class-metaboxes.php:66
55
- #: includes/admin/class-gallery-metaboxes.php:96
56
- msgid "Custom CSS"
57
- msgstr "استایل (CSS) سفارشی"
58
-
59
- #: extensions/albums/admin/class-metaboxes.php:75
60
- msgid "Album Shortcode"
61
- msgstr "کد کوتاه آلبوم"
62
-
63
- #: extensions/albums/admin/class-metaboxes.php:84
64
- msgid "Album Sorting"
65
- msgstr "مرتب کردن آلبوم ها"
66
-
67
- #: extensions/albums/admin/class-metaboxes.php:177
68
- #: extensions/albums/album-default.php:66
69
- #: includes/admin/class-gallery-editor.php:344
70
- #, php-format
71
- msgid "%s #%s"
72
- msgstr "%s #%s"
73
-
74
- #: extensions/albums/admin/class-metaboxes.php:203
75
- msgid "Paste the above shortcode into a post or page to show the album."
76
- msgstr ""
77
- "این کد کوتاه را کپی کنید و در فرم یا پست خود قرار دهید تا آلبوم در آنجا "
78
- "نشان داده شود."
79
-
80
- #: extensions/albums/admin/class-metaboxes.php:230
81
- msgid ""
82
- "Change the way galleries are sorted within your album. By default, they are "
83
- "sorted in the order you see them."
84
- msgstr ""
85
- "روشی که گالری ها در آلبوم ذخیره شده اند را عوض کنید. به صورت پیشفرض آن ها به "
86
- "ترتیبی ذخیره می شوند که شما آن ها را می بینید."
87
-
88
- #: extensions/albums/admin/class-metaboxes.php:257
89
- msgid "Album Template"
90
- msgstr "نمونه آماده آلبوم"
91
-
92
- #: extensions/albums/admin/class-metaboxes.php:269
93
- msgid ""
94
- "The album template that will be used when the album is output to the "
95
- "frontend."
96
- msgstr "نمونه آماده آلبومی که در خروجی شما استفاده خواهد شد."
97
-
98
- #: extensions/albums/admin/class-metaboxes.php:325
99
- #, php-format
100
- msgid "Add any custom CSS to target this specific album. For example %s"
101
- msgstr ""
102
- "هر نوع استایل سفارشی که می خواهید را در اینجا اضافه کنید که فقط برای این "
103
- "آلبوم استفاده شود. برای مثال : %s"
104
-
105
- #: extensions/albums/class-foogallery-album.php:205
106
- msgid "No galleries"
107
- msgstr "گالری موجود نیست"
108
-
109
- #: extensions/albums/class-foogallery-album.php:207
110
- msgid "1 gallery"
111
- msgstr "یک گالری"
112
-
113
- #: extensions/albums/class-foogallery-album.php:209
114
- #, php-format
115
- msgid "%s galleries"
116
- msgstr "%s گالری"
117
-
118
- #: extensions/albums/class-posttypes.php:26
119
- #: extensions/albums/class-posttypes.php:36
120
- #: extensions/albums/class-posttypes.php:37
121
- #: extensions/nextgen-importer/view-importer.php:189
122
- msgid "Albums"
123
- msgstr "آلبوم ها"
124
-
125
- #: extensions/albums/class-posttypes.php:27
126
- msgid "Album"
127
- msgstr "آلبوم"
128
-
129
- #: extensions/albums/class-posttypes.php:28
130
- msgid "Add Album"
131
- msgstr "اضافه کردن آلبوم"
132
-
133
- #: extensions/albums/class-posttypes.php:29
134
- msgid "Add New Album"
135
- msgstr "اضافه کردن آلبوم جدید"
136
-
137
- #: extensions/albums/class-posttypes.php:30
138
- msgid "Edit Album"
139
- msgstr "ویرایش آلبوم"
140
-
141
- #: extensions/albums/class-posttypes.php:31
142
- msgid "New Album"
143
- msgstr "آلبوم جدید"
144
-
145
- #: extensions/albums/class-posttypes.php:32
146
- msgid "View Album"
147
- msgstr "دیدن آلبوم"
148
-
149
- #: extensions/albums/class-posttypes.php:33
150
- msgid "Search Albums"
151
- msgstr "جستجو در میان آلبوم ها"
152
-
153
- #: extensions/albums/class-posttypes.php:34
154
- msgid "No Albums found"
155
- msgstr "آلبومی پیدا نشد"
156
-
157
- #: extensions/albums/class-posttypes.php:35
158
- msgid "No Albums found in Trash"
159
- msgstr "هیچ آلبومی در سطل آشغال نیست"
160
-
161
- #: extensions/albums/class-posttypes.php:68
162
- #: extensions/albums/class-posttypes.php:71
163
- msgid "Album updated."
164
- msgstr "آلبوم به روز شد"
165
-
166
- #: extensions/albums/class-posttypes.php:69
167
- msgid "Album custom field updated."
168
- msgstr "فیلد سفارشی آلبوم به روز شد"
169
-
170
- #: extensions/albums/class-posttypes.php:70
171
- msgid "Album custom field deleted."
172
- msgstr "فیلد سفارشی آلبوم پاک شد"
173
-
174
- #: extensions/albums/class-posttypes.php:72
175
- #, php-format
176
- msgid "Album restored to revision from %s."
177
- msgstr "آلبوم برای بازبینی از %s بازگردانده شد."
178
-
179
- #: extensions/albums/class-posttypes.php:73
180
- msgid "Album published."
181
- msgstr "آلبوم منتشر شد"
182
-
183
- #: extensions/albums/class-posttypes.php:74
184
- msgid "Album saved."
185
- msgstr "آلبوم ذخیره شد"
186
-
187
- #: extensions/albums/class-posttypes.php:75
188
- msgid "Album submitted."
189
- msgstr "آلبوم ارسال شد"
190
-
191
- #: extensions/albums/class-posttypes.php:76
192
- #, php-format
193
- msgid "Album scheduled for: <strong>%1$s</strong>."
194
- msgstr "آلبوم برای <strong>%1$s</strong> زمان بندی شد."
195
-
196
- #: extensions/albums/class-posttypes.php:76 includes/class-posttypes.php:77
197
- msgid "M j, Y @ G:i"
198
- msgstr "M j, Y @ G:i"
199
-
200
- #: extensions/albums/class-posttypes.php:77
201
- msgid "Album draft updated."
202
- msgstr "پیش نویس آلبوم ذخیره شد."
203
-
204
- #: extensions/albums/class-posttypes.php:97
205
- #, php-format
206
- msgid "%s Album updated."
207
- msgid_plural "%s Albums updated."
208
- msgstr[0] " آلبوم %s به روز شد."
209
-
210
- #: extensions/albums/class-posttypes.php:98
211
- #, php-format
212
- msgid "%s Album not updated, somebody is editing it."
213
- msgid_plural "%s Albums not updated, somebody is editing them."
214
- msgstr[0] " آلبوم %s قابل بروز رسانی نیست. کسی در حال ویرایش آن است ."
215
-
216
- #: extensions/albums/class-posttypes.php:99
217
- #, php-format
218
- msgid "%s Album permanently deleted."
219
- msgid_plural "%s Albums permanently deleted."
220
- msgstr[0] "آلبوم %s به شکل دائمی پاک شد."
221
-
222
- #: extensions/albums/class-posttypes.php:100
223
- #, php-format
224
- msgid "%s Album moved to the Trash."
225
- msgid_plural "%s Albums moved to the Trash."
226
- msgstr[0] "آلبوم %s به سطل آشغال فرستاده شد."
227
-
228
- #: extensions/albums/class-posttypes.php:101
229
- #, php-format
230
- msgid "%s Album restored from the Trash."
231
- msgid_plural "%s Albums restored from the Trash."
232
- msgstr[0] "آلبوم %s از سطل آشغال بازگردانده شد."
233
-
234
- #: extensions/albums/functions.php:31
235
- msgid "Responsive Album Layout"
236
- msgstr "شکل ظاهری واکنشگرا برای آلبوم"
237
-
238
- #: extensions/albums/functions.php:35 extensions/albums/functions.php:154
239
- #: extensions/default-templates/class-default-templates-extension.php:222
240
- msgid "Thumbnail Size"
241
- msgstr "اندازه تصویر بند انگشتی"
242
-
243
- #: extensions/albums/functions.php:36
244
- msgid "Choose the size of your gallery thumbnails."
245
- msgstr "اندازه تصاویر بند انگشتی گالری های خود را انتخاب نمایید"
246
-
247
- #: extensions/albums/functions.php:37 extensions/albums/functions.php:49
248
- #: extensions/albums/functions.php:57 extensions/albums/functions.php:65
249
- #: extensions/albums/functions.php:156 extensions/albums/functions.php:168
250
- #: extensions/albums/functions.php:181 extensions/albums/functions.php:190
251
- #: extensions/albums/functions.php:199
252
- #: extensions/default-templates/class-default-templates-extension.php:34
253
- #: extensions/default-templates/class-default-templates-extension.php:45
254
- #: extensions/default-templates/class-default-templates-extension.php:55
255
- #: extensions/default-templates/class-default-templates-extension.php:71
256
- #: extensions/default-templates/class-default-templates-extension.php:87
257
- #: extensions/default-templates/class-default-templates-extension.php:103
258
- #: extensions/default-templates/class-default-templates-extension.php:340
259
- #: extensions/default-templates/class-default-templates-extension.php:352
260
- #: extensions/default-templates/class-default-templates-extension.php:364
261
- msgid "Thumbnail Settings"
262
- msgstr "تنظیمات بند انگشتی"
263
-
264
- #: extensions/albums/functions.php:47
265
- msgid "Title Background Color"
266
- msgstr "رنگ پس زمینه عنوان"
267
-
268
- #: extensions/albums/functions.php:48
269
- msgid "The color of the title that overlays the album thumbnails"
270
- msgstr "رنگ عنوان که روی تصاویر بند انگشتی می نشیند"
271
-
272
- #: extensions/albums/functions.php:55
273
- msgid "Title Text Color"
274
- msgstr "رنگ نوشته عنوان"
275
-
276
- #: extensions/albums/functions.php:56
277
- msgid "The color of the title text that overlays the album thumbnails"
278
- msgstr "رنگ نوشته عنوان که روی تصاویر بند انگشتی می نشیند."
279
-
280
- #: extensions/albums/functions.php:63
281
- #: extensions/default-templates/class-default-templates-extension.php:130
282
- msgid "Alignment"
283
- msgstr "چینش"
284
-
285
- #: extensions/albums/functions.php:64
286
- msgid "The horizontal alignment of the gallery thumbnails inside the album."
287
- msgstr "چینش افقی برای تصاویر بند انگشتی موجود در آلبوم"
288
-
289
- #: extensions/albums/functions.php:69
290
- #: extensions/default-templates/class-default-templates-extension.php:136
291
- msgid "Left"
292
- msgstr "چپ"
293
-
294
- #: extensions/albums/functions.php:70
295
- #: extensions/default-templates/class-default-templates-extension.php:137
296
- msgid "Center"
297
- msgstr "میانه"
298
-
299
- #: extensions/albums/functions.php:71
300
- #: extensions/default-templates/class-default-templates-extension.php:138
301
- msgid "Right"
302
- msgstr "راست"
303
-
304
- #: extensions/albums/functions.php:76
305
- msgid "\"Back To Album\" Text"
306
- msgstr "متن \"بازگشت به آلبوم\""
307
-
308
- #: extensions/albums/functions.php:77
309
- msgid "The text that is shown at the top of the album when a gallery is shown"
310
- msgstr ""
311
- "متنی که در بالای آلبوم و در زمانی که گالری در حال نشان داده شدن است ، نشان "
312
- "داده خواهد شد."
313
-
314
- #: extensions/albums/functions.php:78 extensions/albums/functions.php:86
315
- #: extensions/albums/functions.php:94 extensions/albums/functions.php:102
316
- msgid "Language Settings"
317
- msgstr "تنظیمات زبان"
318
-
319
- #: extensions/albums/functions.php:84
320
- msgid "\"No Images\" Text"
321
- msgstr "متن \"هیچ تصویری نیست\""
322
-
323
- #: extensions/albums/functions.php:85
324
- msgid ""
325
- "The text that is shown on the gallery caption when there are no images in "
326
- "the gallery."
327
- msgstr "متنی که در گالری ، هنگامی که عکسی موجود نباشد ، نشان داده خواهد شد."
328
-
329
- #: extensions/albums/functions.php:92
330
- msgid "\"1 Image\" Text"
331
- msgstr "متن \"1 عکس\""
332
-
333
- #: extensions/albums/functions.php:93
334
- msgid ""
335
- "The text that is shown on the gallery caption when there is a single image "
336
- "in the gallery."
337
- msgstr ""
338
- "متنی که در گالری ، زمانی که تنها یک عکس در آن موجود باشد ، نشان داده می شود."
339
-
340
- #: extensions/albums/functions.php:100
341
- msgid "\"X images\" Text"
342
- msgstr "متن \" X عدد عکس\" "
343
-
344
- #: extensions/albums/functions.php:101
345
- msgid ""
346
- "The text that is shown on the gallery caption when there are many images in "
347
- "the gallery. \"s%\" will be replaced with the actual count."
348
- msgstr ""
349
- "متنی که در زمان وجود چندین عکس در گالری به نمایش در خواهد آمد ، \"%s\" با "
350
- "تعداد واقعی جایگزین خواهد شد."
351
-
352
- #: extensions/albums/functions.php:108
353
- msgid "Gallery Link Format"
354
- msgstr "فرمت لینک گالری"
355
-
356
- #: extensions/albums/functions.php:109
357
- msgid "The format of the URL for each individual gallery in the album."
358
- msgstr "فرمت پیوند یکتا برای هر گالری موجود در آلبوم."
359
-
360
- #: extensions/albums/functions.php:110 extensions/albums/functions.php:121
361
- #: extensions/albums/functions.php:130
362
- msgid "URL Settings"
363
- msgstr "تنظیمات پیوند های یکتا"
364
-
365
- #: extensions/albums/functions.php:113
366
- msgid "Pretty, e.g. "
367
- msgstr "برای مثال : زیبا"
368
-
369
- #: extensions/albums/functions.php:114
370
- msgid "Querystring e.g. "
371
- msgstr "برای مثال : رشته درخواست"
372
-
373
- #: extensions/albums/functions.php:120
374
- msgid "Please Note"
375
- msgstr "لطف توجه کنید"
376
-
377
- #: extensions/albums/functions.php:124
378
- msgid ""
379
- "If you are getting 404's when clicking on the album galleries, then change "
380
- "to the querystring format. To force your rewrite rules to flush, simply "
381
- "deactivate and activate the albums extension again."
382
- msgstr ""
383
- "اگر شما با کلیک کردن روی گالری های یک آلبوم به خطای 404 مواجه می شوید ، فرمت "
384
- "رشته درخواست را عوض کنید. برای مجبور کردن وردپرس به عوض کردن تنظیمات ، "
385
- "اکستنشن آلبوم ها را یک بار غیر فعال و دوباره فعال نمایید."
386
-
387
- #: extensions/albums/functions.php:128 extensions/albums/functions.php:134
388
- msgid "Remember Scroll Position"
389
- msgstr "موقعیت قرار داشتن اسکرول را به یاد داشته باش"
390
-
391
- #: extensions/albums/functions.php:129
392
- msgid ""
393
- "When a gallery is loaded in your album, the page is refreshed which means "
394
- "the scroll position will be lost ."
395
- msgstr ""
396
- "وقتی یک گالری در آلبوم شما بار گذاری شد، صفحه دوباره ریفرش خواهد شد. این "
397
- "بدان معناست که موقعیت کنونی اسکرول از دست خواهد رفت."
398
-
399
- #: extensions/albums/functions.php:133
400
- msgid "Don't Remember"
401
- msgstr "به خاطر نسپار"
402
-
403
- #: extensions/albums/functions.php:143
404
- msgid "All-In-One Stack Album"
405
- msgstr "انبار فراگیر آلبوم ها"
406
-
407
- #: extensions/albums/functions.php:147
408
- #: extensions/default-templates/class-default-templates-extension.php:108
409
- #: extensions/default-templates/class-default-templates-extension.php:202
410
- #: extensions/default-templates/class-default-templates-extension.php:241
411
- #: extensions/default-templates/class-default-templates-extension.php:317
412
- #: extensions/default-templates/class-default-templates-extension.php:419
413
- #: includes/admin/view-extensions-build-your-own.php:135
414
- msgid "Lightbox"
415
- msgstr "قاب عکس (لایت باکس)"
416
-
417
- #: extensions/albums/functions.php:148
418
- msgid "Choose which lightbox you want to use to display images."
419
- msgstr "انتخاب کنید از کدام قاب عکس برای نشان دادن عکس هایتان استفاده شود."
420
-
421
- #: extensions/albums/functions.php:155
422
- msgid "Choose the size of your image stack thumbnails."
423
- msgstr "اندازه بند انگشتی ها در انبار عکس را انتخاب کنید."
424
-
425
- #: extensions/albums/functions.php:167
426
- msgid "Thumbnail Rotation"
427
- msgstr "دوران دادن بند انگشتی ها"
428
-
429
- #: extensions/albums/functions.php:169
430
- msgid ""
431
- "Choose how thumbnails in each gallery are shown when clicking an image stack."
432
- msgstr ""
433
- "انتخاب کنید که هر تصویر بند انگشتی در هر گالری بعد از کلیک کردن روی تصاویر "
434
- "چگونه دیده شوند."
435
-
436
- #: extensions/albums/functions.php:173 extensions/albums/functions.php:205
437
- msgid "Normal"
438
- msgstr "معمولی"
439
-
440
- #: extensions/albums/functions.php:174
441
- msgid "Random Angles"
442
- msgstr "زاویه های تصادفی"
443
-
444
- #: extensions/albums/functions.php:180
445
- msgid "Thumbnail Gutter"
446
- msgstr "قطره قطره شدن بند انگشتی"
447
-
448
- #: extensions/albums/functions.php:182
449
- msgid "The spacing between each image stack."
450
- msgstr "فاصله بندی بین هر پشته تصاویر"
451
-
452
- #: extensions/albums/functions.php:189
453
- msgid "Expand Delay"
454
- msgstr "تاخیر در باز شدن"
455
-
456
- #: extensions/albums/functions.php:191
457
- msgid "The delay between expanding each image on a image stack."
458
- msgstr "فاصله بین باز شدن هر عکس در یک پشته عکس"
459
-
460
- #: extensions/albums/functions.php:198
461
- msgid "Image Stack Angles"
462
- msgstr "زاویه های تصاویر پشته"
463
-
464
- #: extensions/albums/functions.php:200
465
- msgid "The angle of the images behind the thumbnail in each image stack."
466
- msgstr "زاویه عکس پشت تصویر بند انگشتی در هر پشته تصویر."
467
-
468
- #: extensions/albums/functions.php:204
469
- msgid "Low"
470
- msgstr "کم"
471
-
472
- #: extensions/albums/functions.php:206
473
- msgid "More Than Normal"
474
- msgstr "بیش از حالت معمول"
475
-
476
- #: extensions/albums/functions.php:207
477
- msgid "High"
478
- msgstr "زیاد"
479
-
480
- #: extensions/albums/public/class-foogallery-album-template-loader.php:33
481
- msgid "Could not load the album!"
482
- msgstr "آلبوم بار گذاری نشد !"
483
-
484
- #: extensions/albums/public/class-foogallery-album-template-loader.php:91
485
- msgid "No album template found!"
486
- msgstr "هیچ نمونه آماده ای از آلبوم یافت نشد"
487
-
488
- #: extensions/default-templates/class-default-templates-extension.php:26
489
- msgid "Responsive Image Gallery"
490
- msgstr "گالری تصاویر واکنش گرا"
491
-
492
- #: extensions/default-templates/class-default-templates-extension.php:32
493
- #: extensions/default-templates/class-default-templates-extension.php:338
494
- msgid "Size"
495
- msgstr "اندازه"
496
-
497
- #: extensions/default-templates/class-default-templates-extension.php:33
498
- #: extensions/default-templates/class-default-templates-extension.php:223
499
- msgid "Choose the size of your thumbnails."
500
- msgstr "اندازه تصاویر بند انگشتی را انتخاب نمایید"
501
-
502
- #: extensions/default-templates/class-default-templates-extension.php:44
503
- msgid "Link"
504
- msgstr "لینک"
505
-
506
- #: extensions/default-templates/class-default-templates-extension.php:49
507
- msgid ""
508
- "You can choose to link each thumbnail to the full size image, the image's "
509
- "attachment page, a custom URL, or you can choose to not link to anything."
510
- msgstr ""
511
- "شما می توانید لینک هر بند انگشتی به تصویر کامل را انتخاب کنید ، صفحه رسانه "
512
- "عکس ، یک پیوند سفارشی و یا حتی می توانید این بندانگشتی ها را به هیچ چیزی "
513
- "پیوند ندهید."
514
-
515
- #: extensions/default-templates/class-default-templates-extension.php:53
516
- msgid "Border Style"
517
- msgstr "ریخت حاشیه ها و مرز ها"
518
-
519
- #: extensions/default-templates/class-default-templates-extension.php:54
520
- msgid "The border style for each thumbnail in the gallery."
521
- msgstr "ریخت حاشیه هر بند انگشتی در گالری"
522
-
523
- #: extensions/default-templates/class-default-templates-extension.php:59
524
- msgid "Square white border with shadow"
525
- msgstr "حاشیه سفید مربعی شکل به همراه سایه"
526
-
527
- #: extensions/default-templates/class-default-templates-extension.php:60
528
- msgid "Circular white border with shadow"
529
- msgstr "حاشیه سفید دایره ای شکل به همراه سایه"
530
-
531
- #: extensions/default-templates/class-default-templates-extension.php:61
532
- msgid "Square Black"
533
- msgstr "مربع سیاه"
534
-
535
- #: extensions/default-templates/class-default-templates-extension.php:62
536
- msgid "Circular Black"
537
- msgstr "دایره سیاه"
538
-
539
- #: extensions/default-templates/class-default-templates-extension.php:63
540
- msgid "Square Inset"
541
- msgstr "مربع داخلی"
542
-
543
- #: extensions/default-templates/class-default-templates-extension.php:64
544
- msgid "Plain Rounded"
545
- msgstr "تصویر معمولی با حاشیه های گرد"
546
-
547
- #: extensions/default-templates/class-default-templates-extension.php:65
548
- msgid "Plain"
549
- msgstr "تصویر ساده"
550
-
551
- #: extensions/default-templates/class-default-templates-extension.php:70
552
- msgid "Hover Effect Type"
553
- msgstr "نوع جلوه هاور"
554
-
555
- #: extensions/default-templates/class-default-templates-extension.php:75
556
- msgid "Icon"
557
- msgstr "آیکون"
558
-
559
- #: extensions/default-templates/class-default-templates-extension.php:76
560
- msgid "Dark Tint"
561
- msgstr "رنگ تیره"
562
-
563
- #: extensions/default-templates/class-default-templates-extension.php:77
564
- msgid "Colorize"
565
- msgstr "رنگی کردن"
566
-
567
- #: extensions/default-templates/class-default-templates-extension.php:78
568
- #: extensions/default-templates/class-default-templates-extension.php:383
569
- #: includes/admin/class-gallery-metabox-fields.php:256
570
- msgid "None"
571
- msgstr "هیچکدام"
572
-
573
- #: extensions/default-templates/class-default-templates-extension.php:81
574
- msgid "The type of hover effect the thumbnails will use."
575
- msgstr "نوعی از جلوه هاور که بندانگشتی ها استفاده خواهند کرد"
576
-
577
- #: extensions/default-templates/class-default-templates-extension.php:85
578
- msgid "Icon Hover Effect"
579
- msgstr "جلوه هاور آیکون"
580
-
581
- #: extensions/default-templates/class-default-templates-extension.php:86
582
- msgid ""
583
- "When the hover effect type of Icon is chosen, you can choose which icon is "
584
- "shown when you hover over each thumbnail."
585
- msgstr ""
586
- "وقتی نوع جلوه هاور آیکون انتخاب شد ، شما می توانید انتخاب کنید کدام آیکون در "
587
- "هنگام عبور از روی تصویر بند انگشتی نشان داده شود."
588
-
589
- #: extensions/default-templates/class-default-templates-extension.php:91
590
- msgid "Zoom"
591
- msgstr "بزرگ نمایی"
592
-
593
- #: extensions/default-templates/class-default-templates-extension.php:92
594
- msgid "Zoom 2"
595
- msgstr "بزرگنمایی 2"
596
-
597
- #: extensions/default-templates/class-default-templates-extension.php:93
598
- msgid "Zoom 3"
599
- msgstr "بزرگنمایی 3"
600
-
601
- #: extensions/default-templates/class-default-templates-extension.php:94
602
- msgid "Plus"
603
- msgstr "به علاوه"
604
-
605
- #: extensions/default-templates/class-default-templates-extension.php:95
606
- msgid "Cirlce Plus"
607
- msgstr "دایره +"
608
-
609
- #: extensions/default-templates/class-default-templates-extension.php:96
610
- msgid "Eye"
611
- msgstr "چشم"
612
-
613
- #: extensions/default-templates/class-default-templates-extension.php:101
614
- #: includes/admin/view-extensions-popup.php:53
615
- msgid "Preview"
616
- msgstr "پیش نمایش"
617
-
618
- #: extensions/default-templates/class-default-templates-extension.php:102
619
- msgid "This is what your gallery thumbnails will look like."
620
- msgstr "این چیزی است که بیننده از تصاویر بند انگشتی شما خواهد دید"
621
-
622
- #: extensions/default-templates/class-default-templates-extension.php:109
623
- #: extensions/default-templates/class-default-templates-extension.php:118
624
- #: extensions/default-templates/class-default-templates-extension.php:132
625
- #: extensions/default-templates/class-default-templates-extension.php:420
626
- #: includes/admin/class-gallery-metaboxes.php:68
627
- msgid "Gallery Settings"
628
- msgstr "تنظیمات گالری"
629
-
630
- #: extensions/default-templates/class-default-templates-extension.php:110
631
- msgid ""
632
- "Choose which lightbox you want to use. The lightbox will only work if you "
633
- "set the thumbnail link to \"Full Size Image\"."
634
- msgstr ""
635
- "انتخاب کنید می خواهید از کدام قاب عکس(لایت باکس) استفاده کنید. این قالب فقط "
636
- "وقتی نمایان خواهد شد که شما تصاویر بندانگشتی را به \"تصویر کامل\" خودشان "
637
- "لینک کرده باشید."
638
-
639
- #: extensions/default-templates/class-default-templates-extension.php:115
640
- msgid "Spacing"
641
- msgstr "فاصله ها"
642
-
643
- #: extensions/default-templates/class-default-templates-extension.php:116
644
- msgid "The spacing or gap between thumbnails in the gallery."
645
- msgstr "فاصله های بین تصاویر بند انگشتی در گالری"
646
-
647
- #: extensions/default-templates/class-default-templates-extension.php:121
648
- msgid "5 pixels"
649
- msgstr "5 پیکسل"
650
-
651
- #: extensions/default-templates/class-default-templates-extension.php:122
652
- msgid "10 pixels"
653
- msgstr "10 پیکسل"
654
-
655
- #: extensions/default-templates/class-default-templates-extension.php:123
656
- msgid "15 pixels"
657
- msgstr "15 پیکسل"
658
-
659
- #: extensions/default-templates/class-default-templates-extension.php:124
660
- msgid "20 pixels"
661
- msgstr "20 پیکسل"
662
-
663
- #: extensions/default-templates/class-default-templates-extension.php:125
664
- msgid "25 pixels"
665
- msgstr "25 پیکسل"
666
-
667
- #: extensions/default-templates/class-default-templates-extension.php:131
668
- msgid "The horizontal alignment of the thumbnails inside the gallery."
669
- msgstr "چینش افقی برای تصاویر بند انگشتی موجود در گالری"
670
-
671
- #: extensions/default-templates/class-default-templates-extension.php:146
672
- msgid "Masonry Image Gallery"
673
- msgstr "گالری تصاویر به شکل آجرچین"
674
-
675
- #: extensions/default-templates/class-default-templates-extension.php:150
676
- msgid "Thumbnail Width"
677
- msgstr "عرض عکس بند انگشتی"
678
-
679
- #: extensions/default-templates/class-default-templates-extension.php:151
680
- msgid ""
681
- "Choose the width of your thumbnails. Thumbnails will be generated on the fly "
682
- "and cached once generated."
683
- msgstr ""
684
- "عرض تصویر بند انگشتی را انتخاب کنید. این تصاویر بند انگشتی در همین جا تولید، "
685
- "ذخیره و کش خواهند شد."
686
-
687
- #: extensions/default-templates/class-default-templates-extension.php:160
688
- msgid "Gutter Width"
689
- msgstr "عرض شبکه "
690
-
691
- #: extensions/default-templates/class-default-templates-extension.php:161
692
- #: extensions/default-templates/class-default-templates-extension.php:280
693
- msgid "The spacing between your thumbnails."
694
- msgstr "فاصله های بین تصاویر بند انگشتی"
695
-
696
- #: extensions/default-templates/class-default-templates-extension.php:170
697
- msgid "Image Alignment"
698
- msgstr "چینش عکس ها"
699
-
700
- #: extensions/default-templates/class-default-templates-extension.php:171
701
- msgid ""
702
- "You can choose to center align your images or leave them at the default."
703
- msgstr ""
704
- "شما می توانید چینش میانه را برای تصاویر انتخاب کنید با این تنظیمات را "
705
- "رهاکنید تا به مقدار پیشفرض بمانند."
706
-
707
- #: extensions/default-templates/class-default-templates-extension.php:174
708
- msgid "Left Alignment"
709
- msgstr "چپ"
710
-
711
- #: extensions/default-templates/class-default-templates-extension.php:175
712
- msgid "Center Alignment"
713
- msgstr "میانه"
714
-
715
- #: extensions/default-templates/class-default-templates-extension.php:182
716
- msgid "Hover Zoom"
717
- msgstr "جلوه بزرگنمایی در هنگام هاور"
718
-
719
- #: extensions/default-templates/class-default-templates-extension.php:183
720
- msgid ""
721
- "The effect that is applied to images when you move your mouse over them."
722
- msgstr ""
723
- "این جلوه وقتی ایجاد می شود که شما نشانگر موس را از روی تصاویر عبور دهید."
724
-
725
- #: extensions/default-templates/class-default-templates-extension.php:186
726
- msgid "Zoom Slightly"
727
- msgstr "کمی بزرگ نمایی"
728
-
729
- #: extensions/default-templates/class-default-templates-extension.php:187
730
- msgid "No Zoom"
731
- msgstr "بدون بزرگ نمایی"
732
-
733
- #: extensions/default-templates/class-default-templates-extension.php:194
734
- #: extensions/default-templates/class-default-templates-extension.php:233
735
- #: extensions/default-templates/class-default-templates-extension.php:309
736
- msgid "Thumbnail Link"
737
- msgstr "لینک بند انگشتی"
738
-
739
- #: extensions/default-templates/class-default-templates-extension.php:198
740
- #: extensions/default-templates/class-default-templates-extension.php:237
741
- #: extensions/default-templates/class-default-templates-extension.php:313
742
- msgid ""
743
- "You can choose to link each thumbnail to the full size image, or to the "
744
- "image's attachment page, or you can choose to not link to anything."
745
- msgstr ""
746
- "شما می توانید لینک هر بند انگشتی به تصویر کامل را انتخاب کنید ، صفحه رسانه "
747
- "عکس ، یک پیوند سفارشی و یا حتی می توانید این بندانگشتی ها را به هیچ چیزی "
748
- "پیوند ندهید."
749
-
750
- #: extensions/default-templates/class-default-templates-extension.php:203
751
- #: extensions/default-templates/class-default-templates-extension.php:242
752
- #: extensions/default-templates/class-default-templates-extension.php:318
753
- msgid ""
754
- "Choose which lightbox you want to display images with. The lightbox will "
755
- "only work if you set the thumbnail link to \"Full Size Image\"."
756
- msgstr ""
757
- "انتخاب کنید می خواهید از کدام قاب عکس(لایت باکس) استفاده کنید. این قالب فقط "
758
- "وقتی نمایان خواهد شد که شما تصاویر بندانگشتی را به \"تصویر کامل\" خودشان "
759
- "لینک کرده باشید."
760
-
761
- #: extensions/default-templates/class-default-templates-extension.php:211
762
- msgid "Simple Portfolio"
763
- msgstr "این سبد (پرتفولیو) ساده"
764
-
765
- #: extensions/default-templates/class-default-templates-extension.php:215
766
- #: extensions/default-templates/class-default-templates-extension.php:254
767
- msgid "Tip"
768
- msgstr "ترفند"
769
-
770
- #: extensions/default-templates/class-default-templates-extension.php:218
771
- msgid ""
772
- "The Simple Portfolio template works best when you have <strong>captions and "
773
- "descriptions</strong> set for every attachment in the gallery.<br />To "
774
- "change captions and descriptions, simply hover over the thumbnail above and "
775
- "click the \"i\" icon."
776
- msgstr ""
777
- "نمونه آماده \"پورتفولیو ی ساده\" برای زمانی که شما <strong>عنوان ها و "
778
- "توضیحات</strong> جداگانه ای برای هر عکس در گالری دارید بهتر است.<br /> برای "
779
- "عوض کردن عنوان ها و توضیحات به سادگی نشانگر موس را روی بند انگشتی ببرید و "
780
- "روی \"i\" کلیک کنید."
781
-
782
- #: extensions/default-templates/class-default-templates-extension.php:250
783
- msgid "Justified Gallery"
784
- msgstr "گالری تنظیم شده"
785
-
786
- #: extensions/default-templates/class-default-templates-extension.php:257
787
- msgid ""
788
- "The Justified Gallery template uses the popular <a href=\"http://miromannino."
789
- "com/projects/justified-gallery/\" target=\"_blank\">Justified Gallery jQuery "
790
- "Plugin</a> under the hood. You can specify thumbnail captions by setting the "
791
- "alt text for your attachments."
792
- msgstr ""
793
- "نمون آماده \"گالری تنظیم شده\" در پشت صحنه از افزونه محبوب <a href=\"http://"
794
- "miromannino.com/projects/justified-gallery/\" target=\"_blank\">Justified "
795
- "Gallery jQuery Plugin</a> بهره می برد. شما می توانید عناوین بند انگشتی ها را "
796
- "در فیلد متن جایگرین در صفحه رسانه ها تغییر دهید."
797
-
798
- #: extensions/default-templates/class-default-templates-extension.php:261
799
- msgid "Row Height"
800
- msgstr "ارتفاع هر ردیف"
801
-
802
- #: extensions/default-templates/class-default-templates-extension.php:262
803
- msgid ""
804
- "Choose the height of your thumbnails. Thumbnails will be generated on the "
805
- "fly and cached once generated."
806
- msgstr ""
807
- "ارتفاع تصویر بند انگشتی را انتخاب کنید. این تصاویر بند انگشتی در همین جا "
808
- "تولید، ذخیره و کش خواهند شد."
809
-
810
- #: extensions/default-templates/class-default-templates-extension.php:271
811
- msgid "Max Row Height"
812
- msgstr "بیشترین ارتفاع هر ردیف"
813
-
814
- #: extensions/default-templates/class-default-templates-extension.php:272
815
- msgid ""
816
- "A number (e.g 200) which specifies the maximum row height in pixels. A "
817
- "negative value for no limits. Alternatively, use a percentage (e.g. 200% "
818
- "which means that the row height cannot exceed 2 * rowHeight)"
819
- msgstr ""
820
- "یک شماره (مثلا 200) که نشان دهنده حداکثر ارتفاع هر ردیف به پیکسل است. عدد "
821
- "منفی یعنی بدون محدودیت. به جای عدد می توانید از درصد هم استفاده کنید. (مثلا "
822
- "200% به این معناست که حداکثر ارتفاع هر ردیف نمی تواند از دو برابر ارتفاع "
823
- "فعلی بیشتر باشد)"
824
-
825
- #: extensions/default-templates/class-default-templates-extension.php:279
826
- msgid "Margins"
827
- msgstr "حاشیه ها"
828
-
829
- #: extensions/default-templates/class-default-templates-extension.php:289
830
- msgid "Show Captions"
831
- msgstr "عناوین را نشان بده"
832
-
833
- #: extensions/default-templates/class-default-templates-extension.php:290
834
- msgid ""
835
- "Show a caption when hovering over your thumbnails. (Set captions by adding "
836
- "either a title or alt text to an attachment)"
837
- msgstr ""
838
- "وقتی نشان گر موس از روی تصاویر بند انگشتی رد می شود ، عنوان آن ها را نشان "
839
- "بده . (عنوان ها را با قرار دادن توضیحات در قسمت عنوان یا توضیح در صفحه رسانه "
840
- "ای عکس اضافه کنید)"
841
-
842
- #: extensions/default-templates/class-default-templates-extension.php:296
843
- msgid "Caption Source"
844
- msgstr "منبع عناوین"
845
-
846
- #: extensions/default-templates/class-default-templates-extension.php:297
847
- msgid "Pull captions from either the attachment Title, Caption or Alt Text."
848
- msgstr "عنوان را از عنوان پیوست ، عنوان و یا نوشته جایگزین بردار."
849
-
850
- #: extensions/default-templates/class-default-templates-extension.php:302
851
- msgid "Attachment Title"
852
- msgstr "عنوان رسانه پیوست"
853
-
854
- #: extensions/default-templates/class-default-templates-extension.php:303
855
- msgid "Attachment Caption"
856
- msgstr "عنوان رسانه پیوست"
857
-
858
- #: extensions/default-templates/class-default-templates-extension.php:304
859
- msgid "Attachment Alt Text"
860
- msgstr "نوشته جایگزین در رسانه پیوست"
861
-
862
- #: extensions/default-templates/class-default-templates-extension.php:326
863
- msgid "Single Thumbnail Gallery"
864
- msgstr "گالری با یک تصویر بند انگشتی"
865
-
866
- #: extensions/default-templates/class-default-templates-extension.php:334
867
- msgid ""
868
- "This gallery template only shows a single thumbnail, but the true power "
869
- "shines through when the thumbnail is clicked, because then the lightbox "
870
- "takes over and the user can view all the images in the gallery."
871
- msgstr ""
872
- "این یک نمونه آماده از گالری است که تنها یک بند انگشتی دارد ، اما اصل قضیه "
873
- "وقتی است که روی این بند انگشتی کلیک کنید! چون آنوقت قاب عکس باز می شود و شما "
874
- "می توانید کل گالری را جلوی خودتان ببینید!"
875
-
876
- #: extensions/default-templates/class-default-templates-extension.php:339
877
- msgid "Choose the size of your thumbnail."
878
- msgstr "اندازه تصاویر بند انگشتی را انتخاب نمایید"
879
-
880
- #: extensions/default-templates/class-default-templates-extension.php:350
881
- msgid "Position"
882
- msgstr "موقعیت"
883
-
884
- #: extensions/default-templates/class-default-templates-extension.php:351
885
- msgid "The position of the thumbnail related to the content around it."
886
- msgstr "موقعیت تصویر بند انگشتی به محتوای اطرافش بستگی دارد."
887
-
888
- #: extensions/default-templates/class-default-templates-extension.php:356
889
- msgid "Full Width (block)"
890
- msgstr "عرض کامل (بلوک)"
891
-
892
- #: extensions/default-templates/class-default-templates-extension.php:357
893
- msgid "Float Left"
894
- msgstr "شناور چپ"
895
-
896
- #: extensions/default-templates/class-default-templates-extension.php:358
897
- msgid "Float Right"
898
- msgstr "شناور راست"
899
-
900
- #: extensions/default-templates/class-default-templates-extension.php:363
901
- msgid "Link To Custom URL"
902
- msgstr "پیوند به یک پیوند یکتای سفارشی"
903
-
904
- #: extensions/default-templates/class-default-templates-extension.php:367
905
- msgid ""
906
- "You can link your thumbnails to Custom URL's (if they are set on your "
907
- "attachments). Fallback will be to the full size image."
908
- msgstr ""
909
- "شما نمی توانید بند انگشتی ها را به آدرسی سفارشی پیوند بزنید (اگر به رسانه "
910
- "هایتان وصل شده اند)"
911
-
912
- #: extensions/default-templates/class-default-templates-extension.php:371
913
- msgid "Caption Style"
914
- msgstr "ریخت عنوان"
915
-
916
- #: extensions/default-templates/class-default-templates-extension.php:372
917
- #: extensions/default-templates/class-default-templates-extension.php:389
918
- #: extensions/default-templates/class-default-templates-extension.php:398
919
- #: extensions/default-templates/class-default-templates-extension.php:406
920
- #: extensions/default-templates/class-default-templates-extension.php:413
921
- msgid "Caption Settings"
922
- msgstr "تنظیمات عنوان"
923
-
924
- #: extensions/default-templates/class-default-templates-extension.php:373
925
- msgid "Choose which caption style you want to use."
926
- msgstr ""
927
- "انتخاب کنید که می خواهید چه نوع ریختی را برای عنوان عکس به کار گرفته شود."
928
-
929
- #: extensions/default-templates/class-default-templates-extension.php:377
930
- msgid "Simple"
931
- msgstr "ساده"
932
-
933
- #: extensions/default-templates/class-default-templates-extension.php:378
934
- msgid "Slide Up"
935
- msgstr "اسلاید به بابا"
936
-
937
- #: extensions/default-templates/class-default-templates-extension.php:379
938
- msgid "Fall Down"
939
- msgstr "افتادن به پایین"
940
-
941
- #: extensions/default-templates/class-default-templates-extension.php:380
942
- msgid "Fade"
943
- msgstr "محو شدن"
944
-
945
- #: extensions/default-templates/class-default-templates-extension.php:381
946
- msgid "Push From Left"
947
- msgstr "وارد شدن از چپ"
948
-
949
- #: extensions/default-templates/class-default-templates-extension.php:382
950
- msgid "Scale"
951
- msgstr "اندازه"
952
-
953
- #: extensions/default-templates/class-default-templates-extension.php:388
954
- msgid "Caption Background Color"
955
- msgstr "رنگ پس زمینه عنوان"
956
-
957
- #: extensions/default-templates/class-default-templates-extension.php:390
958
- msgid "The color of the caption background."
959
- msgstr "رنگ پس زمینه عنوان."
960
-
961
- #: extensions/default-templates/class-default-templates-extension.php:397
962
- msgid "Caption Text Color"
963
- msgstr "رنگ متن عنوان"
964
-
965
- #: extensions/default-templates/class-default-templates-extension.php:399
966
- msgid "The color of the caption text."
967
- msgstr "رنگ متن عنوان"
968
-
969
- #: extensions/default-templates/class-default-templates-extension.php:405
970
- msgid "Caption Title"
971
- msgstr "تیتر عنوان"
972
-
973
- #: extensions/default-templates/class-default-templates-extension.php:407
974
- msgid "Leave blank if you do not want a caption title."
975
- msgstr ""
976
- "اگر نمی خواهید برای عنوان یک تیتر انتخاب کنید ، این قسمت را خالی بگذارید."
977
-
978
- #: extensions/default-templates/class-default-templates-extension.php:412
979
- msgid "Caption Description"
980
- msgstr "توضیحات عنوان"
981
-
982
- #: extensions/default-templates/class-default-templates-extension.php:414
983
- msgid "Leave blank if you do not want a caption description."
984
- msgstr "اگر نمی خواهید برای عنوان یک توضیح بنویسید ، این قسمت را خالی بگذارید."
985
-
986
- #: extensions/default-templates/class-default-templates-extension.php:421
987
- msgid "Choose which lightbox you want to use."
988
- msgstr "انتخاب کنید از کدام قاب عکس استفاده شود."
989
-
990
- #: extensions/media-categories/class-media-categories-extension.php:29
991
- #: extensions/media-categories/class-media-categories-extension.php:39
992
- #: extensions/media-categories/class-media-categories-extension.php:77
993
- msgid "Categories"
994
- msgstr "دسته بندی ها"
995
-
996
- #: extensions/media-categories/class-media-categories-extension.php:30
997
- msgid "Category"
998
- msgstr "دسته بندی"
999
-
1000
- #: extensions/media-categories/class-media-categories-extension.php:31
1001
- msgid "Search Categories"
1002
- msgstr "جستجو در دسته ها"
1003
-
1004
- #: extensions/media-categories/class-media-categories-extension.php:32
1005
- msgid "All Categories"
1006
- msgstr "همه دسته ها"
1007
-
1008
- #: extensions/media-categories/class-media-categories-extension.php:33
1009
- msgid "Parent Category"
1010
- msgstr "دسته بندی مادر"
1011
-
1012
- #: extensions/media-categories/class-media-categories-extension.php:34
1013
- msgid "Parent Category:"
1014
- msgstr "دسته بندی مادر :"
1015
-
1016
- #: extensions/media-categories/class-media-categories-extension.php:35
1017
- msgid "Edit Category"
1018
- msgstr "ویرایش دسته بندی"
1019
-
1020
- #: extensions/media-categories/class-media-categories-extension.php:36
1021
- msgid "Update Category"
1022
- msgstr "به روز رسانی دسته"
1023
-
1024
- #: extensions/media-categories/class-media-categories-extension.php:37
1025
- msgid "Add New Category"
1026
- msgstr "اضافه کردن دسته جدید"
1027
-
1028
- #: extensions/media-categories/class-media-categories-extension.php:38
1029
- msgid "New Category Name"
1030
- msgstr "نام دسته جدید"
1031
-
1032
- #: extensions/media-categories/class-media-categories-extension.php:79
1033
- msgid "Categorize your attachments"
1034
- msgstr "پیوست هایتان را دسته بندی کنید !"
1035
-
1036
- #: extensions/media-categories/class-media-categories-extension.php:140
1037
- msgid "No Categories Available!"
1038
- msgstr "هیچ دسته بندی در دسترس نیست!"
1039
-
1040
- #: extensions/media-categories/class-media-categories-extension.php:145
1041
- msgid "Manage Categories"
1042
- msgstr "مدیریت دسته ها"
1043
-
1044
- #: extensions/media-categories/class-media-categories-extension.php:179
1045
- msgid "Error saving the categories for the attachment!"
1046
- msgstr "خطا در ذخیره کردن دسته ها برای پیوست ها"
1047
-
1048
- #: extensions/media-categories/class-media-categories-extension.php:195
1049
- msgid "View all categories"
1050
- msgstr "دیدن همه دسته ها"
1051
-
1052
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:43
1053
- msgid "NextGen Importer"
1054
- msgstr "وارد کننده از NextGen گالری"
1055
-
1056
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:157
1057
- msgid "Import Your NextGen Galleries"
1058
- msgstr "گالری های ایجاد شده توسط NextGen را وارد کنید"
1059
-
1060
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:159
1061
- msgid "Import Galleries"
1062
- msgstr "وارد کردن گالری ها"
1063
-
1064
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:163
1065
- #, php-format
1066
- msgid ""
1067
- "Import all your NextGen galleries in a single click, or choose the galleries "
1068
- "you would like to migrate over to %s."
1069
- msgstr ""
1070
- "همه گالری هایی که توسط افزونه NextGen ایجاد کرده اید را با یک کلیک درون ریزی "
1071
- "کنید یا انتخاب کنید دوست دارید کدام گالری ها به %s مهاجرت کنند."
1072
-
1073
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:165
1074
- msgid "Import Images"
1075
- msgstr "وارد کردن تصاویر"
1076
-
1077
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:167
1078
- msgid ""
1079
- "NextGen gallery images are imported into your WordPress media library, where "
1080
- "they should be!"
1081
- msgstr ""
1082
- "تصاویر گالری های NextGen به مدیریت رسانه های وردپرس درون ریزی شدند. جایی که "
1083
- "باید می بودند !"
1084
-
1085
- #: extensions/nextgen-importer/class-nextgen-helper.php:245
1086
- msgid "Select All"
1087
- msgstr "انتخاب همه"
1088
-
1089
- #: extensions/nextgen-importer/class-nextgen-helper.php:250
1090
- msgid "NextGen Gallery"
1091
- msgstr "NextGen Gallery"
1092
-
1093
- #: extensions/nextgen-importer/class-nextgen-helper.php:253
1094
- #, php-format
1095
- msgid "%s Name"
1096
- msgstr "نام %s"
1097
-
1098
- #: extensions/nextgen-importer/class-nextgen-helper.php:256
1099
- msgid "Import Progress"
1100
- msgstr "پیشرفت فرآیند درون ریزی"
1101
-
1102
- #: extensions/nextgen-importer/class-nextgen-helper.php:291
1103
- #, php-format
1104
- msgid "(%s images)"
1105
- msgstr "(%s عدد عکس)"
1106
-
1107
- #: extensions/nextgen-importer/class-nextgen-helper.php:320
1108
- msgid "Start Import"
1109
- msgstr "شروع فرآیند درون ریزی"
1110
-
1111
- #: extensions/nextgen-importer/class-nextgen-helper.php:322
1112
- msgid "Resume Import"
1113
- msgstr "ادامه فرآیند درون ریزی"
1114
-
1115
- #: extensions/nextgen-importer/class-nextgen-helper.php:324
1116
- msgid "Stop Import"
1117
- msgstr "توقف فرآیند درون ریزی"
1118
-
1119
- #: extensions/nextgen-importer/class-nextgen-helper.php:328
1120
- msgid "Reset All Gallery Imports"
1121
- msgstr "همه درون ریزی ها را ریست کن"
1122
-
1123
- #: extensions/nextgen-importer/class-nextgen-helper.php:355
1124
- msgid "NextGen Album"
1125
- msgstr "آلبوم NextGen"
1126
-
1127
- #: extensions/nextgen-importer/class-nextgen-helper.php:358
1128
- msgid "Album Name"
1129
- msgstr "نام آلبوم"
1130
-
1131
- #: extensions/nextgen-importer/class-nextgen-helper.php:361
1132
- msgid "NextGen Galleries"
1133
- msgstr "گالری های NextGen"
1134
-
1135
- #: extensions/nextgen-importer/class-nextgen-helper.php:364
1136
- msgid "Import Options"
1137
- msgstr "انتخاب های درون ریزی"
1138
-
1139
- #: extensions/nextgen-importer/class-nextgen-helper.php:408
1140
- msgid "[Album] "
1141
- msgstr "[آلبوم]"
1142
-
1143
- #: extensions/nextgen-importer/class-nextgen-helper.php:413
1144
- msgid "nested albums not supported"
1145
- msgstr "آلبوم های لایه ای (Nested) ساپورت نمی شوند."
1146
-
1147
- #: extensions/nextgen-importer/class-nextgen-helper.php:428
1148
- msgid "imported"
1149
- msgstr "درون ریزی شده"
1150
-
1151
- #: extensions/nextgen-importer/class-nextgen-helper.php:428
1152
- msgid "not imported"
1153
- msgstr "درون ریزی نشده"
1154
-
1155
- #: extensions/nextgen-importer/class-nextgen-helper.php:448
1156
- msgid "All galleries will be linked"
1157
- msgstr "همه گالری ها پیوند زده خواهند شد."
1158
-
1159
- #: extensions/nextgen-importer/class-nextgen-helper.php:450
1160
- #, php-format
1161
- msgid "%d/%d galleries will be linked"
1162
- msgstr "%d / %d گالری ها پیوند زده خواهند شد."
1163
-
1164
- #: extensions/nextgen-importer/class-nextgen-helper.php:452
1165
- msgid "(Only previously imported galleries can be linked)"
1166
- msgstr "(فقط گالری هایی که قبلا درون ریزی شده اند پیوند زده خواهند شد)"
1167
-
1168
- #: extensions/nextgen-importer/class-nextgen-helper.php:455
1169
- msgid "No galleries imported yet!!"
1170
- msgstr "هنوز هیچ گالری درون ریزی نشده است !!"
1171
-
1172
- #: extensions/nextgen-importer/class-nextgen-helper.php:473
1173
- msgid "Reset All Album Imports"
1174
- msgstr "همه درون ریزی ها را ریست کن"
1175
-
1176
- #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:23
1177
- msgid "Album not imported"
1178
- msgstr "آلبوم درون ریزی نشده"
1179
-
1180
- #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:26
1181
- #, php-format
1182
- msgid "Done! %d galleries(s) linked"
1183
- msgstr "تمام ! %d عدد گالری پیوند زده شد."
1184
-
1185
- #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:30
1186
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:59
1187
- msgid "Unknown status!"
1188
- msgstr "وضعیت نامشخص!"
1189
-
1190
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:45
1191
- msgid "Not imported"
1192
- msgstr "درون ریزی نشده"
1193
-
1194
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:48
1195
- msgid "Queued for import"
1196
- msgstr "در صف برای درون ریزی"
1197
-
1198
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:51
1199
- #, php-format
1200
- msgid "Imported %d of %d image(s)"
1201
- msgstr "تعداد %d از %d عکس درون ریزی شده است."
1202
-
1203
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:55
1204
- #, php-format
1205
- msgid "Done! %d image(s) imported"
1206
- msgstr "تمام ! %d عدد عکس درون ریزی شد."
1207
-
1208
- #: extensions/nextgen-importer/view-importer.php:80
1209
- msgid ""
1210
- "Something went wrong with the import and the page will now reload. Once it "
1211
- "has reloaded, click \"Resume Import\" to continue with the import."
1212
- msgstr ""
1213
- "اتفاقی در فرآیند درون ریزی افتاده است و برگه دوباره بارگذاری خواهد شد. وقتی "
1214
- "بارگذاری به اتمام رسید ، روی \"ادامه درون ریزی\" کلیک کنید تا فرآیند ادامه "
1215
- "پیدا کند."
1216
-
1217
- #: extensions/nextgen-importer/view-importer.php:121
1218
- msgid "Are you sure you want to cancel?"
1219
- msgstr "مطمئن هستید که می خواهید کنسل کنید ؟"
1220
-
1221
- #: extensions/nextgen-importer/view-importer.php:128
1222
- msgid ""
1223
- "Are you sure you want to reset all NextGen gallery import data? This may "
1224
- "result in duplicate galleries and media attachments!"
1225
- msgstr ""
1226
- "آیا مطمئن هستید که می خواهید همه داده های درون ریزی شده از NextGen را ریست "
1227
- "کنید ؟ این کار ممکن است باعث ایجاد گالری ها و رسانه های اضافی شود!"
1228
-
1229
- #: extensions/nextgen-importer/view-importer.php:135
1230
- msgid ""
1231
- "Are you sure you want to reset all NextGen album import data? This may "
1232
- "result in duplicate albums if you decide to import again!"
1233
- msgstr ""
1234
- "آیا مطمئن هستید که می خواهید همه داده های وارد شده از NextGen را ریست کنید ؟ "
1235
- "اگر بخواهید دوباره درون ریزی کنید ، ممکن است باعث ایحاد آلبوم های اضافی شود."
1236
-
1237
- #: extensions/nextgen-importer/view-importer.php:165
1238
- msgid "Something went wrong with the import and the page will now reload."
1239
- msgstr "اشتباهی در فرآیند درون ریزی رخ داد. صفحه دوباره بارگذاری خواهد شد."
1240
-
1241
- #: extensions/nextgen-importer/view-importer.php:185
1242
- msgid "NextGen Gallery And Album Importer"
1243
- msgstr "درون ریز NextGen Gallery & Album "
1244
-
1245
- #: extensions/nextgen-importer/view-importer.php:196
1246
- msgid "There are no NextGen galleries to import!"
1247
- msgstr "هیچ گالری NextGen پیدا نشد که درون ریزی شود !"
1248
-
1249
- #: extensions/nextgen-importer/view-importer.php:199
1250
- msgid "Importing galleries is really simple:"
1251
- msgstr "درون ریزی گالری ها خیلی ساده است :"
1252
-
1253
- #: extensions/nextgen-importer/view-importer.php:201
1254
- #, php-format
1255
- msgid ""
1256
- "Choose the NextGen galleries you want to import into %s by checking their "
1257
- "checkboxes."
1258
- msgstr ""
1259
- "هر گالری NextGen که می خواهید در %s درون ریزی کنید را با زدن تیک در محل خودش "
1260
- "مشخص کنید."
1261
-
1262
- #: extensions/nextgen-importer/view-importer.php:202
1263
- msgid "Click the Start Import button to start the import process."
1264
- msgstr "دکمه \"شروع درون ریزی\" را بزنید تا فرآیند درون ریزی شروع شود."
1265
-
1266
- #: extensions/nextgen-importer/view-importer.php:203
1267
- #, php-format
1268
- msgid ""
1269
- "Once a gallery is imported, you can click on the link under the %s Name "
1270
- "column to edit the gallery."
1271
- msgstr ""
1272
- "هر وقت گالری درون ریزی شد. می توانید با کلیک کردن روی پیوند ستون نام %s ، "
1273
- "گالری را ویرایش کنید."
1274
-
1275
- #: extensions/nextgen-importer/view-importer.php:205
1276
- msgid ""
1277
- "Please note: importing large galleries with lots of images can take a while!"
1278
- msgstr ""
1279
- "لطفا توجه کنید : درون ریزی کردن گالری های بزرگ با عکس های زیاد ممکن است مدتی "
1280
- "زمان ببرد !"
1281
-
1282
- #: extensions/nextgen-importer/view-importer.php:217
1283
- msgid "There are no NextGen albums to import!"
1284
- msgstr "هیچ آلبوم NextGen پیدا نشد که درون ریزی شود !"
1285
-
1286
- #: extensions/nextgen-importer/view-importer.php:220
1287
- msgid "Importing albums is also really simple:"
1288
- msgstr "درون ریزی آلبوم ها خیلی ساده است :"
1289
-
1290
- #: extensions/nextgen-importer/view-importer.php:222
1291
- msgid ""
1292
- "For all the albums you wish to import, make sure all the galleries have been "
1293
- "imported FIRST. If not, then go back to the Galleries tab."
1294
- msgstr ""
1295
- "برای تمام آلبوم هایی که دوست دارید درون ریزی کنید ، اطمینان حاصل کنید که "
1296
- "ابتدا همه گالری ها درون ریزی شده اند. اگر نه ، به تب گالری ها برگردید."
1297
-
1298
- #: extensions/nextgen-importer/view-importer.php:223
1299
- msgid ""
1300
- "Click the Import Album button for each album to import the album and link "
1301
- "all the galleries. If you do not see the button, then that means you first "
1302
- "need to import the galleries."
1303
- msgstr ""
1304
- "برای هر آلبومی که می خواهید روی درون ریزی آلبوم کلیک کنید تا آلبوم و همه "
1305
- "گالری های پیوند زده شده به آن درون ریزی شوند. اگر دکمه ای ندیدید به این "
1306
- "معناست که شما ابتدا باید گالری ها را درون ریزی کنید."
1307
-
1308
- #: extensions/nextgen-importer/view-importer.php:224
1309
- msgid ""
1310
- "Once an album is imported, you can click on the link under the Album Name "
1311
- "column to edit the album."
1312
- msgstr ""
1313
- "وقتی یک آلبوم درون ریزی شد ، شما می توانید در پیوند لینک زیر نام آلبوم در "
1314
- "ستون مربوطه کلیک کنید تا آلبوم را ویرایش نمایید."
1315
-
1316
- #: includes/WPThumb/wpthumb.crop-from-position.php:54
1317
- msgid "Crop Position"
1318
- msgstr "مکان برش"
1319
-
1320
- #: includes/WPThumb/wpthumb.php:760
1321
- msgid "WPThumb has detected a problem."
1322
- msgstr "WPThumb یک مشکل پیدا کرده است."
1323
-
1324
- #: includes/WPThumb/wpthumb.php:760
1325
- #, php-format
1326
- msgid "The directory <code>%s</code> is not writable."
1327
- msgstr "پوشه <code>%s</code> غیر قابل نوشتن است ."
1328
-
1329
- #: includes/WPThumb/wpthumb.watermark.php:192
1330
- msgid "Watermark"
1331
- msgstr "واتر مارک"
1332
-
1333
- #: includes/admin/class-admin.php:64 includes/admin/class-menu.php:34
1334
- #: includes/admin/class-settings.php:70 includes/admin/view-help.php:48
1335
- #: includes/admin/view-system-info.php:68
1336
- msgid "Extensions"
1337
- msgstr "اکستنشن ها"
1338
-
1339
- #: includes/admin/class-admin.php:66 includes/admin/class-menu.php:38
1340
- msgid "Help"
1341
- msgstr "کمک"
1342
-
1343
- #: includes/admin/class-attachment-fields.php:19 includes/functions.php:378
1344
- msgid "Default"
1345
- msgstr "پیشفرض"
1346
-
1347
- #: includes/admin/class-attachment-fields.php:20
1348
- msgid "New tab (_blank)"
1349
- msgstr "تب جدید (_blank)"
1350
-
1351
- #: includes/admin/class-attachment-fields.php:21
1352
- msgid "Same tab (_self)"
1353
- msgstr "همین تب (_self)"
1354
-
1355
- #: includes/admin/class-attachment-fields.php:22
1356
- msgid "FooBox"
1357
- msgstr "فوو باکس"
1358
-
1359
- #: includes/admin/class-attachment-fields.php:27
1360
- #, php-format
1361
- msgid "%s Custom URL"
1362
- msgstr "پیوند یکتای سفارشی %s"
1363
-
1364
- #: includes/admin/class-attachment-fields.php:29
1365
- msgid "Point your attachment to a custom URL"
1366
- msgstr "ارسانه پیوست شده خود را به یک پیوند یکتای سفارشی نشانه بگیرید "
1367
-
1368
- #: includes/admin/class-attachment-fields.php:34
1369
- #, php-format
1370
- msgid "%s Custom Target"
1371
- msgstr "هدف سفارشی %s"
1372
-
1373
- #: includes/admin/class-attachment-fields.php:36
1374
- msgid "Set a custom target for your attachment"
1375
- msgstr "یک هدف سفارشی برای رسانه پیوست شده در نظر بگیرید"
1376
-
1377
- #: includes/admin/class-columns.php:24
1378
- msgid "Media"
1379
- msgstr "رسانه"
1380
-
1381
- #: includes/admin/class-extensions.php:86
1382
- msgid "The extensions have been reloaded"
1383
- msgstr "اکستنشن دوباره بارگذاری شد"
1384
-
1385
- #: includes/admin/class-extensions.php:103
1386
- msgid "The extension could not be activated due to an error!"
1387
- msgstr "اکستنشن به دلیل یک خطا قادر به فعال شدن نیست !"
1388
-
1389
- #: includes/admin/class-extensions.php:109
1390
- msgid "Activation Error!"
1391
- msgstr "خطای فعال سازی !"
1392
-
1393
- #: includes/admin/class-gallery-editor.php:43
1394
- #, php-format
1395
- msgid "Add Gallery From %s"
1396
- msgstr "اضافه کردن گالری از %s"
1397
-
1398
- #: includes/admin/class-gallery-editor.php:44
1399
- #, php-format
1400
- msgid "Add %s"
1401
- msgstr "اضافه کردن %s"
1402
-
1403
- #: includes/admin/class-gallery-editor.php:263
1404
- msgid "Choose A Gallery To Insert"
1405
- msgstr "یک گالری برای گذاشتن در محتوا انتخاب کنید"
1406
-
1407
- #: includes/admin/class-gallery-editor.php:266
1408
- #: includes/admin/view-extensions.php:60
1409
- msgid "Reload"
1410
- msgstr "بارگذاری دوباره"
1411
-
1412
- #: includes/admin/class-gallery-editor.php:273
1413
- msgid "Loading galleries. Please wait..."
1414
- msgstr "بارگذاری گالری ها ، لطفا شکیبا باشید ..."
1415
-
1416
- #: includes/admin/class-gallery-editor.php:278
1417
- msgid "Select A Gallery"
1418
- msgstr "یک گالری انتخاب کنید"
1419
-
1420
- #: includes/admin/class-gallery-editor.php:280
1421
- msgid ""
1422
- "Select a gallery by clicking it, and then click the \"Insert Gallery\" "
1423
- "button to insert it into your content."
1424
- msgstr ""
1425
- "گالری را با کلیک روی آن انتخاب کنید، سپس با زدن دکمه \"گذاشتن گالری\" آن را "
1426
- "در محتوا قرار دهید."
1427
-
1428
- #: includes/admin/class-gallery-editor.php:282
1429
- msgid "Add A Gallery"
1430
- msgstr "اضافه کردن گالری"
1431
-
1432
- #: includes/admin/class-gallery-editor.php:284
1433
- msgid ""
1434
- "You can add a new gallery by clicking the \"Add New Gallery\" tile on the "
1435
- "left. It will open in a new window."
1436
- msgstr ""
1437
- "شما می توانید یک گالری جدید را با کلیک کردن روی عنوان \"اضافه کردن گالری جدید"
1438
- "\" در قسمت چپ،اضافه کنید. این صفحه در پنجره ای جدید باز خواهد شد."
1439
-
1440
- #: includes/admin/class-gallery-editor.php:287
1441
- msgid ""
1442
- "Once you have finished adding a gallery, come back to this dialog and click "
1443
- "the \"Reload\" button to see your newly created gallery."
1444
- msgstr ""
1445
- "وقتی که کار اضافه کردن یک گالری به اتمام رسید. به این قسمت برگردید و دکمه "
1446
- "\"بارگذاری دوباره\" را برای دیدن گالری جدیدتان بزنید."
1447
-
1448
- #: includes/admin/class-gallery-editor.php:300
1449
- msgid "Cancel"
1450
- msgstr "کنسل کن"
1451
-
1452
- #: includes/admin/class-gallery-editor.php:304
1453
- msgid "Insert Gallery"
1454
- msgstr "گذاشتن گالری"
1455
-
1456
- #: includes/admin/class-gallery-editor.php:360 includes/class-posttypes.php:29
1457
- msgid "Add New Gallery"
1458
- msgstr "اضافه کردن یک گالری جدید"
1459
-
1460
- #: includes/admin/class-gallery-metabox-fields.php:157
1461
- msgid "Width"
1462
- msgstr "عرض"
1463
-
1464
- #: includes/admin/class-gallery-metabox-fields.php:159
1465
- msgid "Height"
1466
- msgstr "ارتفاع"
1467
-
1468
- #: includes/admin/class-gallery-metabox-fields.php:163
1469
- msgid "Crop thumbnail to exact dimensions"
1470
- msgstr "بند انگشتی را به اندازه های دقیقش ببر"
1471
-
1472
- #: includes/admin/class-gallery-metabox-fields.php:196
1473
- msgid "You have no lightbox extensions activated!"
1474
- msgstr "شما هیچ اکستنشن قاب عکس (لایت باکس) فعالی ندارید !"
1475
-
1476
- #: includes/admin/class-gallery-metabox-fields.php:205
1477
- msgid "Activate FooBox FREE right now!"
1478
- msgstr "FooBox رایگان را همین الان فعال کن !"
1479
-
1480
- #: includes/admin/class-gallery-metabox-fields.php:213
1481
- msgid "Download and activate FooBox FREE"
1482
- msgstr "دانلود و فعال سازی FooBox رایگان"
1483
-
1484
- #: includes/admin/class-gallery-metabox-fields.php:214
1485
- #, php-format
1486
- msgid "%s which works flawlessly with %s."
1487
- msgstr "%s که بدون هیچ ایرادی با %s کار می کند."
1488
-
1489
- #: includes/admin/class-gallery-metabox-fields.php:247
1490
- msgid "Full Size Image"
1491
- msgstr "عکس در اندازه های کامل"
1492
-
1493
- #: includes/admin/class-gallery-metabox-fields.php:248
1494
- msgid "Image Attachment Page"
1495
- msgstr "صفحه رسانه ای عکس"
1496
-
1497
- #: includes/admin/class-gallery-metabox-fields.php:249
1498
- msgid "Custom URL"
1499
- msgstr "پیوند یکتای سفارشی"
1500
-
1501
- #: includes/admin/class-gallery-metabox-fields.php:250
1502
- msgid "Not linked"
1503
- msgstr "پیوند نشده"
1504
-
1505
- #: includes/admin/class-gallery-metaboxes.php:59
1506
- msgid "Gallery Items"
1507
- msgstr "آیتم های گالری"
1508
-
1509
- #: includes/admin/class-gallery-metaboxes.php:77
1510
- msgid "Gallery Shortcode"
1511
- msgstr "کد کوتاه گالری"
1512
-
1513
- #: includes/admin/class-gallery-metaboxes.php:86
1514
- msgid "Gallery Usage"
1515
- msgstr "استفاده از گالری"
1516
-
1517
- #: includes/admin/class-gallery-metaboxes.php:105
1518
- msgid "Gallery Sorting"
1519
- msgstr "مرتب کردن گالری ها"
1520
-
1521
- #: includes/admin/class-gallery-metaboxes.php:214
1522
- #: includes/admin/class-gallery-metaboxes.php:217
1523
- msgid "Add Media To Gallery"
1524
- msgstr "اضافه کردن رسانه به گالری"
1525
-
1526
- #: includes/admin/class-gallery-metaboxes.php:215
1527
- #: includes/admin/class-gallery-metaboxes.php:219
1528
- msgid "Add Media"
1529
- msgstr "اضافه کردن رسانه"
1530
-
1531
- #: includes/admin/class-gallery-metaboxes.php:250
1532
- msgid "Edit Info"
1533
- msgstr "ویرایش اطلاعات"
1534
-
1535
- #: includes/admin/class-gallery-metaboxes.php:253
1536
- msgid "Remove from gallery"
1537
- msgstr "پاک کردن از گالری"
1538
-
1539
- #: includes/admin/class-gallery-metaboxes.php:286
1540
- #: includes/admin/view-extensions-build-your-own.php:134
1541
- msgid "Gallery Template"
1542
- msgstr "نمونه آماده گالری"
1543
-
1544
- #: includes/admin/class-gallery-metaboxes.php:299
1545
- msgid ""
1546
- "The gallery template that will be used when the gallery is output to the "
1547
- "frontend."
1548
- msgstr "نمونه آماده گالری که در خروجی شما استفاده خواهد شد."
1549
-
1550
- #: includes/admin/class-gallery-metaboxes.php:363
1551
- msgid "Paste the above shortcode into a post or page to show the gallery."
1552
- msgstr ""
1553
- "این کد کوتاه را کپی کنید و در فرم یا پست خود قرار دهید تا گالری در آنجا "
1554
- "نشان داده شود."
1555
-
1556
- #: includes/admin/class-gallery-metaboxes.php:391
1557
- msgid "This gallery is used on the following posts or pages:"
1558
- msgstr "گالری در این نوشته ها و یا برگه ها استفاده شده است:"
1559
-
1560
- #: includes/admin/class-gallery-metaboxes.php:397
1561
- msgid "Edit"
1562
- msgstr "ویرایش"
1563
-
1564
- #: includes/admin/class-gallery-metaboxes.php:398
1565
- msgid "View"
1566
- msgstr "دیدن"
1567
-
1568
- #: includes/admin/class-gallery-metaboxes.php:403
1569
- msgid ""
1570
- "This gallery is not used on any pages or pages yet. Quickly create a page:"
1571
- msgstr ""
1572
- "این گالری تا به حال در هیچ جایی استفاده نشده است. به سرعت یک برگه بسازید :"
1573
-
1574
- #: includes/admin/class-gallery-metaboxes.php:406
1575
- msgid "Create Gallery Page"
1576
- msgstr "ساخت برگه گالری"
1577
-
1578
- #: includes/admin/class-gallery-metaboxes.php:411
1579
- msgid ""
1580
- "A draft page will be created which includes the gallery shortcode in the "
1581
- "content. The title of the page will be the same title as the gallery."
1582
- msgstr ""
1583
- "یک صفحه چرک نویس ایجاد خواهد شد که کد کوتاه گالری در آن قرار خواهد داشت. "
1584
- "عنوان صفحه همه عنوان گالری خواهد بود."
1585
-
1586
- #: includes/admin/class-gallery-metaboxes.php:424
1587
- msgid ""
1588
- "Change the way images are sorted within your gallery. By default, they are "
1589
- "sorted in the order you see them."
1590
- msgstr ""
1591
- "روشی که عکس ها در گالری ذخیره شده اند را عوض کنید. به صورت پیش فرض آن ها به "
1592
- "ترتیبی ذخیره می شوند که شما آن ها را می بینید."
1593
-
1594
- #: includes/admin/class-gallery-metaboxes.php:464
1595
- #, php-format
1596
- msgid "Add any custom CSS to target this specific gallery. For example %s"
1597
- msgstr ""
1598
- "هر CSS سفارشی که خواستید را به قصد گالری خاصی قرار دهید. برای مثال : %s"
1599
-
1600
- #: includes/admin/class-menu.php:29
1601
- #, php-format
1602
- msgid "%s Settings"
1603
- msgstr "تنظیمات %s"
1604
-
1605
- #: includes/admin/class-menu.php:33 includes/admin/view-extensions.php:45
1606
- #, php-format
1607
- msgid "%s Extensions"
1608
- msgstr "اکستنشن های %s"
1609
-
1610
- #: includes/admin/class-menu.php:37
1611
- #, php-format
1612
- msgid "%s Help"
1613
- msgstr "کمک %s"
1614
-
1615
- #: includes/admin/class-menu.php:41 includes/admin/view-system-info.php:38
1616
- #, php-format
1617
- msgid "%s System Information"
1618
- msgstr "%s اطلاعات سیستم"
1619
-
1620
- #: includes/admin/class-menu.php:42 includes/admin/view-help.php:55
1621
- msgid "System Info"
1622
- msgstr "اطلاعات سیستم"
1623
-
1624
- #: includes/admin/class-menu.php:64
1625
- #, php-format
1626
- msgid "%s settings updated."
1627
- msgstr "تنظیمات %s به روز رسانی شد."
1628
-
1629
- #: includes/admin/class-settings.php:17
1630
- msgid "General"
1631
- msgstr "عمومی"
1632
-
1633
- #: includes/admin/class-settings.php:27
1634
- msgid "Default Gallery Template"
1635
- msgstr "نمونه آماده پیشفرض برای گالری"
1636
-
1637
- #: includes/admin/class-settings.php:28
1638
- msgid "The default gallery template to use for new galleries"
1639
- msgstr "نمونه آماده پیشفرضی که برای گالری های جدید استفاده می شود"
1640
-
1641
- #: includes/admin/class-settings.php:37
1642
- msgid "Default Gallery Sorting"
1643
- msgstr "مرتب کردن پیشفرض گالری ها"
1644
-
1645
- #: includes/admin/class-settings.php:38
1646
- msgid "The default attachment sorting to use for new galleries"
1647
- msgstr "مرتب کردن پیش فرض پیوست ها برای استفاده در گالری های جدید"
1648
-
1649
- #: includes/admin/class-settings.php:47
1650
- msgid "Hide Gallery Template Help"
1651
- msgstr "گزینه کمک نمونه آماده گالری را پنهان کن"
1652
-
1653
- #: includes/admin/class-settings.php:48
1654
- msgid ""
1655
- "Some gallery templates show helpful tips, which are useful for new users. "
1656
- "You can choose to hide these tips."
1657
- msgstr ""
1658
- "برخی از نمونه های آماده گالری ها ، ترفند های مفیدی را نشان می دهند که برای "
1659
- "کاربران جدید کمک کننده است. می توانید انتخاب کنید که این ترفند ها را ببینید "
1660
- "یا نه ."
1661
-
1662
- #: includes/admin/class-settings.php:61
1663
- msgid "Default Gallery Settings"
1664
- msgstr "تنظیمات پیشفرض گالری"
1665
-
1666
- #: includes/admin/class-settings.php:62
1667
- msgid ""
1668
- "When creating a new gallery, it can use the settings from an existing "
1669
- "gallery as the default settings. This will save you time when creating many "
1670
- "galleries that all have the same look and feel."
1671
- msgstr ""
1672
- "وقتی که گالری جدیدی درست می کنید ، این گالری می تواند از تنظیمات گالری های "
1673
- "پیشین به عنوان پیشفرض استفاده کند. این گزینه وقتی به درد شما می خورد که می "
1674
- "خواهید تعداد زیادی گالری همشکل و هم حس درست کنید."
1675
-
1676
- #: includes/admin/class-settings.php:74
1677
- msgid "Use Beta Endpoint"
1678
- msgstr "از قسمت پایانی بتا استفاده کن"
1679
-
1680
- #: includes/admin/class-settings.php:75
1681
- msgid ""
1682
- "The list of available extensions are pulled from an external URL. You can "
1683
- "also pull from a \"beta\" endpoint which will sometimes contain beta "
1684
- "extensions that are not publicly available."
1685
- msgstr ""
1686
- "لیست اکستنشن های در دسترس از یک پیوند بیرونی بیرون کشیده شده اند. همچنین شما "
1687
- "می توانید این اطلاعات را از نقطه پایانی \"بتا\" که برخی وقت ها نسخه های بتای "
1688
- "اکستنشن ها روی آن قرار می گیرد و عمومی نیست دریافت کنید."
1689
-
1690
- #: includes/admin/class-settings.php:81
1691
- msgid "Thumbnails"
1692
- msgstr "بند انگشتی ها"
1693
-
1694
- #: includes/admin/class-settings.php:85
1695
- msgid "JPEG Quality"
1696
- msgstr "کیفیت فشرده سازی JPEG"
1697
-
1698
- #: includes/admin/class-settings.php:86
1699
- msgid "The image quality to be used when resizing JPEG images."
1700
- msgstr "کیفیت تصویری که در هنگام تغییر اندازه عکس های JPEG در نظر دارید."
1701
-
1702
- #: includes/admin/class-settings.php:94
1703
- msgid "Resize Animated GIFs"
1704
- msgstr "GIF های متحرک را تغییر اندازه بده"
1705
-
1706
- #: includes/admin/class-settings.php:95
1707
- msgid ""
1708
- "Should animated gifs be resized or not. If enabled, only the first frame is "
1709
- "used in the resize."
1710
- msgstr ""
1711
- "آیا می خواهید تصاویر متحرک (GIF) ها تغییر اندازه یابند یا نه ، اگر بله ، "
1712
- "تنها اولین فریم تصویر برای تغییر اندازه استفاده می شود."
1713
-
1714
- #: includes/admin/view-extensions-build-your-own.php:23
1715
- msgid "Please fill in all form fields!"
1716
- msgstr "لطفا همه فیلد های فرم را کامل کنید !"
1717
-
1718
- #: includes/admin/view-extensions-build-your-own.php:30
1719
- msgid "Cool Thing"
1720
- msgstr "یه چیز باحال "
1721
-
1722
- #: includes/admin/view-extensions-build-your-own.php:32
1723
- msgid "A cool description about what your cool thing can do"
1724
- msgstr "یک توضیح باحال در مورد کارهایی که این چیز باحال می تواند انجام دهد"
1725
-
1726
- #: includes/admin/view-extensions-build-your-own.php:95
1727
- msgid "Build Your Own FooGallery Extensions!"
1728
- msgstr "اکستنشن های خودتان را بنویسید"
1729
-
1730
- #: includes/admin/view-extensions-build-your-own.php:97
1731
- msgid ""
1732
- "FooGallery was built with developers in mind. If you can build your own "
1733
- "WordPress plugin, then you will have no problem building your own FooGallery "
1734
- "extension."
1735
- msgstr ""
1736
- "فوو گالری با توجه به توسعه دهندگان نوشته شده است . اگر می توانید پلاگین "
1737
- "وردپرس خودتان را بنویسید ، مطمئن باشید هیچ مشکلی در نوشتن اکستنشن برای "
1738
- "فووگالری نخواهید داشت."
1739
-
1740
- #: includes/admin/view-extensions-build-your-own.php:99
1741
- msgid "Extension Ideas"
1742
- msgstr "ایده هایی برای اکستنشن ها"
1743
-
1744
- #: includes/admin/view-extensions-build-your-own.php:101
1745
- msgid "Build your own unique Gallery Template."
1746
- msgstr "یک نمونه یکتا برای گالری های خودتان بسازید"
1747
-
1748
- #: includes/admin/view-extensions-build-your-own.php:102
1749
- msgid "Adding support for your favourite lightbox."
1750
- msgstr "اضافه کردن حمایت از قاب عکس مورد علاقه شما"
1751
-
1752
- #: includes/admin/view-extensions-build-your-own.php:103
1753
- msgid "Why not white-label FooGallery for your clients?"
1754
- msgstr "فوو گالری بی نام و نشان برای مشتری های شما ، چرا که نه ؟"
1755
-
1756
- #: includes/admin/view-extensions-build-your-own.php:104
1757
- msgid "Add your own options to the settings page?"
1758
- msgstr "انتخاب های خودتان را به صفحه تنظیمات اضافه کنید !"
1759
-
1760
- #: includes/admin/view-extensions-build-your-own.php:106
1761
- msgid ""
1762
- "There is no limit to the number of ways you can change or alter FooGallery!"
1763
- msgstr ""
1764
- "هیچ محدودیتی در راه هایی که می توانی فوو گالری را برای خودتان تغییر دهید و "
1765
- "سفارشی کنید نیست !"
1766
-
1767
- #: includes/admin/view-extensions-build-your-own.php:108
1768
- msgid "Developer Tips"
1769
- msgstr "ترفند هایی برای توسعه دهندگان"
1770
-
1771
- #: includes/admin/view-extensions-build-your-own.php:110
1772
- msgid "An extension is essentially a WordPress plugin."
1773
- msgstr "اکستنشن در واقع یک پلاگین وردپرس است ."
1774
-
1775
- #: includes/admin/view-extensions-build-your-own.php:111
1776
- msgid ""
1777
- "Extension functionality must be wrapped in a PHP class. (This class is "
1778
- "included when the extension is activated)"
1779
- msgstr ""
1780
- "عملکرد های اکستنشن ها باید در یک کلاس PHP پیچیده شود (این کلاس وقتی اکستنشن "
1781
- "فعال می شود فراخوانی می گردد)"
1782
-
1783
- #: includes/admin/view-extensions-build-your-own.php:112
1784
- #, php-format
1785
- msgid ""
1786
- "There are several dozen actions and filters built in for you. (See all %s)"
1787
- msgstr ""
1788
- "چندین ده عدد اقدام و فیلتر هست که برای شما ساخته ایم (همه را %s ببینید)"
1789
-
1790
- #: includes/admin/view-extensions-build-your-own.php:112
1791
- msgid "FooGallery actions and filters"
1792
- msgstr "اقدام ها و فیلتر های فوو گالری"
1793
-
1794
- #: includes/admin/view-extensions-build-your-own.php:113
1795
- #, php-format
1796
- msgid "Read our %s on how to build your own extension in 2\tminutes."
1797
- msgstr "%s ما را بخوانید تا ببینید چگونه می شود در 2 دقیقه یک اکستنشن نوشت."
1798
-
1799
- #: includes/admin/view-extensions-build-your-own.php:113
1800
- msgid "step-by-step tutorial"
1801
- msgstr "آموزش قدم به قدم"
1802
-
1803
- #: includes/admin/view-extensions-build-your-own.php:116
1804
- msgid "Submit Your Extension"
1805
- msgstr "اکستنشن خود را ارسال کنید"
1806
-
1807
- #: includes/admin/view-extensions-build-your-own.php:118
1808
- msgid ""
1809
- "Have you built your own extension that you are proud of? Do you want to "
1810
- "share it with the community of FooGallery\tusers?"
1811
- msgstr ""
1812
- "آیا شما اکستنشن خودتان را نوشته اید و خیلی از این بابت به خودتان می بالید ؟ "
1813
- "می خواهید آن را با جامعه استفاده کنندگان از فوو گالری به اشتراک بگذارید ؟"
1814
-
1815
- #: includes/admin/view-extensions-build-your-own.php:120
1816
- #, php-format
1817
- msgid "%s to get it listed in our extension store."
1818
- msgstr "%s تا آن را در فروشگاه اکستنشن های ما لیست کنید."
1819
-
1820
- #: includes/admin/view-extensions-build-your-own.php:120
1821
- msgid "Follow these simple instructions"
1822
- msgstr "چند دستور ساده را دنبال کنید"
1823
-
1824
- #: includes/admin/view-extensions-build-your-own.php:122
1825
- msgid "Extension Boilerplates"
1826
- msgstr "اجاق های اکستنشن"
1827
-
1828
- #: includes/admin/view-extensions-build-your-own.php:124
1829
- msgid ""
1830
- "We really want to make it easy for you to get started and building your own "
1831
- "extensions. Generate an extension boilerplate in seconds using the provided "
1832
- "form."
1833
- msgstr ""
1834
- "ما واقعا می خواهیم ساختن اکستنشن های جدید برای شما راحت باشد. اکستنشن را در "
1835
- "چند ثانیه و با فرم های اجاق اکستنشن درست کنید."
1836
-
1837
- #: includes/admin/view-extensions-build-your-own.php:129
1838
- msgid "Extension Boilerplate Generator"
1839
- msgstr "تولید کننده اجاق اکستنشن"
1840
-
1841
- #: includes/admin/view-extensions-build-your-own.php:132
1842
- msgid "Type Of Extension"
1843
- msgstr "نوع اکستنشن"
1844
-
1845
- #: includes/admin/view-extensions-build-your-own.php:139
1846
- msgid "Name"
1847
- msgstr "نام"
1848
-
1849
- #: includes/admin/view-extensions-build-your-own.php:143
1850
- msgid "Description"
1851
- msgstr "توضیحات"
1852
-
1853
- #: includes/admin/view-extensions-build-your-own.php:147
1854
- msgid "Author Name"
1855
- msgstr "نام نویسنده"
1856
-
1857
- #: includes/admin/view-extensions-build-your-own.php:151
1858
- msgid "Author URL"
1859
- msgstr "پیوند یکتای نویسنده"
1860
-
1861
- #: includes/admin/view-extensions-build-your-own.php:155
1862
- msgid "Generate &amp; download .zip"
1863
- msgstr "ساخت &amp; دانلود .zip"
1864
-
1865
- #: includes/admin/view-extensions-build-your-own.php:161
1866
- msgid ""
1867
- "Once you have downloaded the zip file, install and activate it like a normal "
1868
- "WordPress plugin so that it shows up in the list of extensions!"
1869
- msgstr ""
1870
- "وقتی که شما فایل زیپ را دانلود کردید و سپس آن را مانند هر افزونه معمولی "
1871
- "وردپرس دیگری نصب و فعال کردید، آن را در لیست اکستنشن ها خواهید دید."
1872
-
1873
- #: includes/admin/view-extensions-popup.php:5
1874
- msgid "Show previous extension"
1875
- msgstr "اکستنشن قبلی را نشان بده"
1876
-
1877
- #: includes/admin/view-extensions-popup.php:6
1878
- msgid "Show next extension"
1879
- msgstr "اکستنشن بعدی را نشان بده"
1880
-
1881
- #: includes/admin/view-extensions-popup.php:7
1882
- msgid "Close overlay"
1883
- msgstr "بستن همپوشانی"
1884
-
1885
- #: includes/admin/view-extensions-popup.php:20
1886
- msgid "Current extension"
1887
- msgstr "اکستنشن جاری"
1888
-
1889
- #: includes/admin/view-extensions-popup.php:22
1890
- #, php-format
1891
- msgid "Version: %s"
1892
- msgstr "نگارش : %s"
1893
-
1894
- #: includes/admin/view-extensions-popup.php:23
1895
- #, php-format
1896
- msgid "By %s"
1897
- msgstr "به وسیله %s"
1898
-
1899
- #: includes/admin/view-extensions-popup.php:27
1900
- msgid "Update Available"
1901
- msgstr "به روز رسانی جدیدی در درسترس است."
1902
-
1903
- #: includes/admin/view-extensions-popup.php:34
1904
- #, php-format
1905
- msgid "This is a child extension of %s."
1906
- msgstr "این یک اکستنشن، کودک %s است ."
1907
-
1908
- #: includes/admin/view-extensions-popup.php:38
1909
- msgid "Tags:"
1910
- msgstr "برچسب ها :"
1911
-
1912
- #: includes/admin/view-extensions-popup.php:45
1913
- msgid "Customize"
1914
- msgstr "سفارشی سازی"
1915
-
1916
- #: includes/admin/view-extensions-popup.php:50
1917
- #: includes/admin/view-extensions.php:133
1918
- msgid "Activate"
1919
- msgstr "فعال سازی"
1920
-
1921
- #: includes/admin/view-extensions-popup.php:52
1922
- msgid "Live Preview"
1923
- msgstr "پیش نمایش زنده"
1924
-
1925
- #: includes/admin/view-extensions-popup.php:57
1926
- msgid "Delete"
1927
- msgstr "پاک کردن"
1928
-
1929
- #: includes/admin/view-extensions.php:15
1930
- #, php-format
1931
- msgid "Extensions make %s even more awesome, without bloating the core plugin."
1932
- msgstr ""
1933
- "اکستنشن ها %s را حتی خیلی باحال تر هم می کنند! بدون این که روی هسته افزونه "
1934
- "تاثیری بگذارند."
1935
-
1936
- #: includes/admin/view-extensions.php:42
1937
- msgid ""
1938
- "There was a problem loading all the public extensions! Only the default "
1939
- "bundled extensions will be shown."
1940
- msgstr ""
1941
- "مشکلی در بارگذاری اکستنشن های عمومی به وجود آمده است ! تنها اکسنشن های "
1942
- "پیشفرض موجود در افزونه نشان داده می شوند."
1943
-
1944
- #: includes/admin/view-extensions.php:57
1945
- msgid "search..."
1946
- msgstr "جستجو ..."
1947
-
1948
- #: includes/admin/view-extensions.php:131
1949
- msgid "Are you sure you want to download this extension?"
1950
- msgstr "آیا مطمئن هستید که می خواهید این اکستنشن را دانلود کنید ؟"
1951
-
1952
- #: includes/admin/view-extensions.php:131
1953
- msgid "Download"
1954
- msgstr "دانلود"
1955
-
1956
- #: includes/admin/view-extensions.php:134
1957
- msgid "Deactivate"
1958
- msgstr "غیر فعال کردن"
1959
-
1960
- #: includes/admin/view-extensions.php:137
1961
- msgid "Activated"
1962
- msgstr "فعال شد"
1963
-
1964
- #: includes/admin/view-extensions.php:139
1965
- msgid "Coming Soon!"
1966
- msgstr "به زودی ...!"
1967
-
1968
- #: includes/admin/view-help.php:4
1969
- #, php-format
1970
- msgid "Welcome to %s %s"
1971
- msgstr "به %s %s خوش آمدید"
1972
-
1973
- #: includes/admin/view-help.php:5
1974
- #, php-format
1975
- msgid ""
1976
- "Thank you for choosing %s, the most intuitive and extensible gallery "
1977
- "creation and management tool ever created for WordPress!"
1978
- msgstr ""
1979
- "از شما برای انتخاب %s ، کاربر پسند ترین و قابل گسترش ترین ابزار تولید و "
1980
- "مدیریت گالری هایی که تا به حال برای وردپرس نوشته شده است سپاس گزاریم !"
1981
-
1982
- #: includes/admin/view-help.php:6
1983
- msgid "Visit our homepage"
1984
- msgstr "صفحه ما را ببینید."
1985
-
1986
- #: includes/admin/view-help.php:45
1987
- msgid "Getting Started"
1988
- msgstr "شروع کار"
1989
-
1990
- #: includes/admin/view-help.php:51
1991
- msgid "Other Plugins"
1992
- msgstr "بقیه افزونه ها"
1993
-
1994
- #: includes/admin/view-help.php:66
1995
- msgid "Creating Your First Gallery"
1996
- msgstr "ساختن اولین گالری خود"
1997
-
1998
- #: includes/admin/view-help.php:68
1999
- #, php-format
2000
- msgid "<a href=\"%s\">Galleries &rarr; Add New</a>"
2001
- msgstr "<a href=\"%s\">اضافه کردن گالری های جدید</a>"
2002
-
2003
- #: includes/admin/view-help.php:69
2004
- msgid ""
2005
- "To create your first gallery, simply click the Add New button or click the "
2006
- "Add Gallery menu link. Then choose images from the media library to include "
2007
- "in your gallery."
2008
- msgstr ""
2009
- "برای ساخت اولین گالری خود ، به سادگی دکمه \"اضاف کردن جدید\" یا \"اضافه کردن "
2010
- "گالری\" را از منو انتخاب کنید. سپس عکس هایتان را از کتابخانه وردپرس انتخاب "
2011
- "کرده و در گالری بریزید."
2012
-
2013
- #: includes/admin/view-help.php:71 includes/admin/view-system-info.php:70
2014
- msgid "Gallery Templates"
2015
- msgstr "نمونه های آماده گالری"
2016
-
2017
- #: includes/admin/view-help.php:72
2018
- msgid ""
2019
- "Choose one of our built-in gallery templates or download one via our "
2020
- "extension library."
2021
- msgstr ""
2022
- "یکی از نمونه های آماده گالری های ما را انتخاب کنید و یا یکی را از کتابخانه "
2023
- "اکستنشن های ما دانلود کنید !"
2024
-
2025
- #: includes/admin/view-help.php:74
2026
- msgid "Lightbox Support"
2027
- msgstr "حمایت از قاب عکس (لایت باکس)"
2028
-
2029
- #: includes/admin/view-help.php:76
2030
- msgid ""
2031
- "FooGallery works out of the box with FooBox, our popular responsive image "
2032
- "lightbox."
2033
- msgstr "فووگالری به خوبی با FooBox - قاب عکس (لایت باکس) محبوب ما - کار می کند"
2034
-
2035
- #: includes/admin/view-help.php:77
2036
- msgid "Purchase FooBox now!"
2037
- msgstr "فوو باکس را همین الان بخر!"
2038
-
2039
- #: includes/admin/view-help.php:79
2040
- msgid "Video Support"
2041
- msgstr "ساپورت ویدیویی"
2042
-
2043
- #: includes/admin/view-help.php:81
2044
- msgid ""
2045
- "FooGallery now supports the creation of video galleries with the FooVideo "
2046
- "premium extension!"
2047
- msgstr ""
2048
- "فووگالری با نصب اکستنشن FooVideo حالا ساخت گالری های ویدیویی را هم پشتیبانی "
2049
- "می کند ! "
2050
-
2051
- #: includes/admin/view-help.php:82
2052
- msgid "Purchase FooVideo now!"
2053
- msgstr "فوو ویدیو را همین الان بخر !"
2054
-
2055
- #: includes/admin/view-help.php:94
2056
- msgid "Show Off Your Gallery"
2057
- msgstr "گالری خود را به نمایش بگذارید"
2058
-
2059
- #: includes/admin/view-help.php:96
2060
- #, php-format
2061
- msgid "The <em>[%s]</em> Short Code"
2062
- msgstr "کد کوتاه <em>[%s]</em>"
2063
-
2064
- #: includes/admin/view-help.php:97
2065
- msgid ""
2066
- "Simply copy the shortcode code from the gallery listing page and paste it "
2067
- "into your posts or pages."
2068
- msgstr ""
2069
- "به سادگی کد کوتاه گالری را از لیست کپی کرده و آن را در صفحه ویرایش برگه یا "
2070
- "نوشته در ویرایشگر دیداری پیست کنید."
2071
-
2072
- #: includes/admin/view-help.php:99
2073
- msgid "Visual Editor Button"
2074
- msgstr "دکمه ویرایشگر دیداری "
2075
-
2076
- #: includes/admin/view-help.php:100
2077
- #, php-format
2078
- msgid ""
2079
- "Or to make life even easier, you can insert a gallery using the Add %s "
2080
- "button inside the WordPress visual editor."
2081
- msgstr ""
2082
- "یا حتی برای راحت تر شدن کار ، می توانید گالری ها را با استفاده از دکمه اضافه "
2083
- "کردن %s در ویرایشگر دیداری وردپرس ، اضافه کنید."
2084
-
2085
- #: includes/admin/view-help.php:102
2086
- msgid "Copy To Clipboard"
2087
- msgstr "کپی در کلیپ بورد"
2088
-
2089
- #: includes/admin/view-help.php:103
2090
- msgid ""
2091
- "We make your life easy! Just click the shortcodes and they get copied to "
2092
- "your clipboard automatically. "
2093
- msgstr ""
2094
- "ما کار شما را راحت کرده ایم. فقط روی کدهای کوتاه کلیک کنید تا به شکل "
2095
- "اتوماتیک روی کلیپ بورد شما کپی شوند."
2096
-
2097
- #: includes/admin/view-help.php:117
2098
- msgid "Create Your Own Extensions"
2099
- msgstr "اکستنشن های خودتان را بنویسید"
2100
-
2101
- #: includes/admin/view-help.php:119
2102
- msgid "Easy To Code"
2103
- msgstr "ساده برای کد نویسی"
2104
-
2105
- #: includes/admin/view-help.php:120
2106
- #, php-format
2107
- msgid ""
2108
- "We have done all the hard work to make your life easier. Creating an "
2109
- "extension for %s can be done in a couple lines of code."
2110
- msgstr ""
2111
- "ما همه کارهای سخت را انجام داده ایم تا زندگی شما را راحت تر کنیم. ساختن یک "
2112
- "اکستنشن برای %s می تواند به سادگی و با چند خط کد انجام شود."
2113
-
2114
- #: includes/admin/view-help.php:122
2115
- msgid "Actions and Filters"
2116
- msgstr "اقدامات و فیلتر ها"
2117
-
2118
- #: includes/admin/view-help.php:123
2119
- #, php-format
2120
- msgid ""
2121
- "We coded %s with extensibility in mind. There are hundreds of actions and "
2122
- "filters and helper functions to change every aspect of the plugin."
2123
- msgstr ""
2124
- "ما %s را با رویکرد قابلیت افزایش نوشته ایم. صدها اقدام و فیلتر هست و نیز "
2125
- "توابع کارگشا برای عوض کردن هر جنبه از افزونه در دسترس شما هست."
2126
-
2127
- #: includes/admin/view-help.php:125
2128
- msgid "Host Anywhere"
2129
- msgstr "هرجایی میزبانی کن"
2130
-
2131
- #: includes/admin/view-help.php:126
2132
- msgid ""
2133
- "Host your extensions on the WordPress.org plugin repo, or GitHub, or even in "
2134
- "your own Amazon S3 bucket. You have the power and choice!"
2135
- msgstr ""
2136
- "اکستنشن هایت را در مخازن وردپرس یا گیت هاب میزبانی کن، حتی آن ها را در "
2137
- "Amazon S3 میزبانی کن. تو قدرت و حق انتخاب داری !"
2138
-
2139
- #: includes/admin/view-system-info.php:39
2140
- #, php-format
2141
- msgid ""
2142
- "Below is some information about your server configuration. You can use this "
2143
- "info to help debug issues you may have with %s."
2144
- msgstr ""
2145
- "در زیر برخی از اطلاعات در مورد پیکربندی سرور میزبان شما آمده است . شما می "
2146
- "توانید از این اطلاعات برای حل مشکلات به وجود آمده در کار با %s استفاده کنید."
2147
-
2148
- #: includes/admin/view-system-info.php:60
2149
- msgid "FooGallery version"
2150
- msgstr "نگارش فووگالری"
2151
-
2152
- #: includes/admin/view-system-info.php:61
2153
- msgid "WordPress version"
2154
- msgstr "نگارش وردپرس"
2155
-
2156
- #: includes/admin/view-system-info.php:62
2157
- msgid "Activated Theme"
2158
- msgstr "قالب فعال"
2159
-
2160
- #: includes/admin/view-system-info.php:63
2161
- msgid "WordPress URL"
2162
- msgstr "آدرس وردپرس نصب شده"
2163
-
2164
- #: includes/admin/view-system-info.php:64
2165
- msgid "PHP version"
2166
- msgstr "نگارش PHP"
2167
-
2168
- #: includes/admin/view-system-info.php:65
2169
- msgid "PHP GD Loaded"
2170
- msgstr "PHP GD در دسترس و بار گذاری شده است."
2171
-
2172
- #: includes/admin/view-system-info.php:65
2173
- msgid "Not found!"
2174
- msgstr "پیدا نشد!"
2175
-
2176
- #: includes/admin/view-system-info.php:66
2177
- msgid "Extensions Endpoint"
2178
- msgstr "نقطه پایانی اکستنشن ها"
2179
-
2180
- #: includes/admin/view-system-info.php:67
2181
- msgid "Extensions Errors"
2182
- msgstr "خطا های اکستنشن ها"
2183
-
2184
- #: includes/admin/view-system-info.php:67
2185
- msgid "Nope, all good"
2186
- msgstr "نه، همه چیز خوبه !"
2187
-
2188
- #: includes/admin/view-system-info.php:69
2189
- msgid "Extensions Active"
2190
- msgstr "اکستنشن های فعال"
2191
-
2192
- #: includes/admin/view-system-info.php:71
2193
- msgid "Lightboxes"
2194
- msgstr "قال عکس ها"
2195
-
2196
- #: includes/admin/view-system-info.php:72
2197
- msgid "Active Plugins"
2198
- msgstr "افزونه های فعال"
2199
-
2200
- #: includes/class-extensions-api.php:235
2201
- msgid "new"
2202
- msgstr "جدید"
2203
-
2204
- #: includes/class-extensions-api.php:320
2205
- msgid "All"
2206
- msgstr "همه"
2207
-
2208
- #: includes/class-extensions-api.php:323
2209
- msgid "Active"
2210
- msgstr "فعال"
2211
-
2212
- #: includes/class-extensions-api.php:342
2213
- msgid "Build Your Own"
2214
- msgstr "خودت بساز"
2215
-
2216
- #: includes/class-extensions-api.php:477
2217
- #, php-format
2218
- msgid "The extension %s could NOT be deactivated!"
2219
- msgstr "اکستنشن %s نمی تواند غیرفعال شود."
2220
-
2221
- #: includes/class-extensions-api.php:502
2222
- #, php-format
2223
- msgid "The extension %s was successfully deactivated"
2224
- msgstr "اکستنشن %s با موفقیت غیر فعال شد."
2225
-
2226
- #: includes/class-extensions-api.php:507 includes/class-extensions-api.php:572
2227
- #: includes/class-extensions-api.php:665
2228
- #, php-format
2229
- msgid "Unknown extension : %s"
2230
- msgstr "اکستنشن ناشناس : %s"
2231
-
2232
- #: includes/class-extensions-api.php:537
2233
- #, php-format
2234
- msgid "Requires %s version %s"
2235
- msgstr "نیاز به %s نگارش %s"
2236
-
2237
- #: includes/class-extensions-api.php:539
2238
- #, php-format
2239
- msgid ""
2240
- "The extension %s could not be activated, because you are using an outdated "
2241
- "version! Please update %s to at least version %s."
2242
- msgstr ""
2243
- "اکستنشن %s قادر به فعالیت نیست. این بدین دلیل است که شما از نگارشی قدیمی "
2244
- "استفاده می کنید ! لطفا %s را به آخرین نسخه اش یعنی %s بروز رسانی کنید."
2245
-
2246
- #: includes/class-extensions-api.php:549
2247
- #, php-format
2248
- msgid "The extension %s could NOT be activated!"
2249
- msgstr "اکستنشن %s نمی تواند فعال شود."
2250
-
2251
- #: includes/class-extensions-api.php:567
2252
- #, php-format
2253
- msgid "The extension %s was successfully activated"
2254
- msgstr "اکستنشن %s با موفقیت فعال شد."
2255
-
2256
- #: includes/class-extensions-api.php:619
2257
- #, php-format
2258
- msgid ""
2259
- "Unable to connect to the WordPress.org plugin API to download %s. Full error "
2260
- "log: %s"
2261
- msgstr ""
2262
- "عدم توانایی در اتصال به API های Wordpress.org برای دانلود %s . لاگ خطای "
2263
- "کامل :%s"
2264
-
2265
- #: includes/class-extensions-api.php:633
2266
- #, php-format
2267
- msgid "The extension %s has no download link!"
2268
- msgstr "اکستنشن %s هیچ پیوند دانلود مشخصی ندارد!"
2269
-
2270
- #: includes/class-extensions-api.php:648
2271
- #, php-format
2272
- msgid "The extension %s could NOT be downloaded!"
2273
- msgstr "نتوانستیم اکستنشن %s را دانلود کنیم !"
2274
-
2275
- #: includes/class-extensions-api.php:655
2276
- #, php-format
2277
- msgid ""
2278
- "The extension %s was successfully downloaded and can now be activated. %s"
2279
- msgstr "اکستنشن %s با موفقیت دانلود شد و حالا می تواند فعال شود . %s"
2280
-
2281
- #: includes/class-extensions-api.php:659
2282
- msgid "Activate immediately"
2283
- msgstr "بی درنگ فعال کن"
2284
-
2285
- #: includes/class-extensions-api.php:715
2286
- msgid "Error loading extension!"
2287
- msgstr "خطا در بارگذاری اکستنشن"
2288
-
2289
- #: includes/class-foogallery.php:306
2290
- msgid "No images"
2291
- msgstr "بدون عکس"
2292
-
2293
- #: includes/class-foogallery.php:308
2294
- msgid "1 image"
2295
- msgstr "1 عکس"
2296
-
2297
- #: includes/class-foogallery.php:310
2298
- #, php-format
2299
- msgid "%s images"
2300
- msgstr "%s عدد عکس"
2301
-
2302
- #: includes/class-posttypes.php:27
2303
- msgid "Gallery"
2304
- msgstr "گالری"
2305
-
2306
- #: includes/class-posttypes.php:28
2307
- msgid "Add Gallery"
2308
- msgstr "اضافه کردن گالری"
2309
-
2310
- #: includes/class-posttypes.php:30
2311
- msgid "Edit Gallery"
2312
- msgstr "ویرایش گالری"
2313
-
2314
- #: includes/class-posttypes.php:31
2315
- msgid "New Gallery"
2316
- msgstr "گالری جدید"
2317
-
2318
- #: includes/class-posttypes.php:32
2319
- msgid "View Gallery"
2320
- msgstr "دیدن گالری"
2321
-
2322
- #: includes/class-posttypes.php:33
2323
- msgid "Search Galleries"
2324
- msgstr "جستجو در میان گالری ها"
2325
-
2326
- #: includes/class-posttypes.php:34
2327
- msgid "No Galleries found"
2328
- msgstr "هیچ گالری پیدا نشد."
2329
-
2330
- #: includes/class-posttypes.php:35
2331
- msgid "No Galleries found in Trash"
2332
- msgstr "هیچ گالری در سطل آشغال نیست"
2333
-
2334
- #: includes/class-posttypes.php:69 includes/class-posttypes.php:72
2335
- msgid "Gallery updated."
2336
- msgstr "گالری به روز رسانی شد."
2337
-
2338
- #: includes/class-posttypes.php:70
2339
- msgid "Gallery custom field updated."
2340
- msgstr "فیلد سفارشی گالری به روز شد"
2341
-
2342
- #: includes/class-posttypes.php:71
2343
- msgid "Gallery custom field deleted."
2344
- msgstr "فیلد سفارشی گالری پاک شد"
2345
-
2346
- #: includes/class-posttypes.php:73
2347
- #, php-format
2348
- msgid "Gallery restored to revision from %s."
2349
- msgstr "گالری برای بازبینی از %s بازگردانده شد."
2350
-
2351
- #: includes/class-posttypes.php:74
2352
- msgid "Gallery published."
2353
- msgstr "گالری منتشر شد"
2354
-
2355
- #: includes/class-posttypes.php:75
2356
- msgid "Gallery saved."
2357
- msgstr "گالری ذخیره شد"
2358
-
2359
- #: includes/class-posttypes.php:76
2360
- msgid "Gallery submitted."
2361
- msgstr "گالری ارسال شد"
2362
-
2363
- #: includes/class-posttypes.php:77
2364
- #, php-format
2365
- msgid "Gallery scheduled for: <strong>%1$s</strong>."
2366
- msgstr "گالری برای <strong>%1$s</strong> زمان بندی شد."
2367
-
2368
- #: includes/class-posttypes.php:78
2369
- msgid "Gallery draft updated."
2370
- msgstr "چک نویس گالری به روز رسانی شد."
2371
-
2372
- #: includes/class-posttypes.php:98
2373
- #, php-format
2374
- msgid "%s Gallery updated."
2375
- msgid_plural "%s Galleries updated."
2376
- msgstr[0] "گالری %s به روز رسانی شد."
2377
-
2378
- #: includes/class-posttypes.php:99
2379
- #, php-format
2380
- msgid "%s Gallery not updated, somebody is editing it."
2381
- msgid_plural "%s Galleries not updated, somebody is editing them."
2382
- msgstr[0] "گالری %s به روز رسانی نشد. کسی در حال ویرایش است."
2383
-
2384
- #: includes/class-posttypes.php:100
2385
- #, php-format
2386
- msgid "%s Gallery permanently deleted."
2387
- msgid_plural "%s Galleries permanently deleted."
2388
- msgstr[0] "%s گالری به شکل دائمی پاک شد."
2389
-
2390
- #: includes/class-posttypes.php:101
2391
- #, php-format
2392
- msgid "%s Gallery moved to the Trash."
2393
- msgid_plural "%s Galleries moved to the Trash."
2394
- msgstr[0] "%s گالری به سطل آشغال ریخته شد."
2395
-
2396
- #: includes/class-posttypes.php:102
2397
- #, php-format
2398
- msgid "%s Gallery restored from the Trash."
2399
- msgid_plural "%s Galleries restored from the Trash."
2400
- msgstr[0] "%s گالری از سطل آشغال بازگردانی شد."
2401
-
2402
- #: includes/foopluginbase/classes/class-foo-plugin-base.php:310
2403
- msgid " Settings"
2404
- msgstr "تنظیمات"
2405
-
2406
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:329
2407
- msgid "Select An Image"
2408
- msgstr "عکسی را انتخاب کنید"
2409
-
2410
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:329
2411
- msgid "Select Image"
2412
- msgstr "عکس را انتخاب کن"
2413
-
2414
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:361
2415
- msgid "Settings restored to default values"
2416
- msgstr "تنظیمات به حالت پیشفرض بازگشت داده شد"
2417
-
2418
- #: includes/foopluginbase/views/settings.php:91 views/settings.php:79
2419
- msgid "Save Changes"
2420
- msgstr "ذخیره سازی تغییرات"
2421
-
2422
- #: includes/foopluginbase/views/settings.php:93 views/settings.php:80
2423
- msgid ""
2424
- "Are you sure you want to restore all settings back to their default values?"
2425
- msgstr ""
2426
- "آیا مطمئن هستید که می خواهید همه تنظیمات را به حالت پیشفرض خود بازگردانید ؟"
2427
-
2428
- #: includes/foopluginbase/views/settings.php:95 views/settings.php:80
2429
- msgid "Restore Defaults"
2430
- msgstr "بازگرداندن به حالت پیشفرض"
2431
-
2432
- #: includes/functions.php:379
2433
- msgid "Date created - newest first"
2434
- msgstr "بر اساس تاریخ ایجاد - جدید ترین در ابتدا"
2435
-
2436
- #: includes/functions.php:380
2437
- msgid "Date created - oldest first"
2438
- msgstr "بر اساس تاریخ ایجاد - قدیمی ترین در ابتدا"
2439
-
2440
- #: includes/functions.php:381
2441
- msgid "Date modified - most recent first"
2442
- msgstr "بر اساس آخرین تغییر - آخرین در ابتدا"
2443
-
2444
- #: includes/functions.php:382
2445
- msgid "Date modified - most recent last"
2446
- msgstr "بر اساس آخرین تغییر - آخرین در انتها"
2447
-
2448
- #: includes/functions.php:383
2449
- msgid "Title - alphabetically"
2450
- msgstr "تیتر - الفبایی"
2451
-
2452
- #: includes/functions.php:384
2453
- msgid "Title - reverse"
2454
- msgstr "تیتر - برعکس الفبا"
2455
-
2456
- #: includes/functions.php:385
2457
- msgid "Random"
2458
- msgstr "تصادفی"
2459
-
2460
- #: includes/public/class-admin-bar.php:34
2461
- msgid "Edit Galleries"
2462
- msgstr "ویرایش گالری ها"
2463
-
2464
- #: includes/public/class-foogallery-template-loader.php:34
2465
- msgid "The gallery was not found!"
2466
- msgstr "گالری پیدا نشد !"
2467
-
2468
- #: includes/public/class-foogallery-template-loader.php:87
2469
- msgid "No gallery template found!"
2470
- msgstr "هیچ نمونه آماده ای از گالری یافت نشد"
2471
-
2472
- #~ msgid "Click to copy to your clipboard"
2473
- #~ msgstr "کلیک کنید تا در کلیپ بورد شما ذخیره شود"
2474
-
2475
- #~ msgid ""
2476
- #~ "Paste the above shortcode into a post or page to show the album. Simply "
2477
- #~ "click the shortcode to copy it to your clipboard."
2478
- #~ msgstr ""
2479
- #~ "کد کوتاه بالا را در نوشته یا برگه پیست کنید تا آلبوم نشان داده شود. کافی "
2480
- #~ "است روی کد کوتاه کلیک کنید تا کد برای شما کپی شود."
2481
-
2482
- #~ msgid "Hover Effect"
2483
- #~ msgstr "جلوه هاور "
2484
-
2485
- #~ msgid "A hover effect is shown when you hover over each thumbnail."
2486
- #~ msgstr ""
2487
- #~ "جلوه هاور وقتی نمایان می شود که موس را از روی تصویر بند انگشتی بگذرانید !"
2488
-
2489
- #~ msgid "Single Thumb Gallery"
2490
- #~ msgstr "گالری با یک تصویر بند انگشتی"
2491
-
2492
- #~ msgid "This is what your thumbnail will look like."
2493
- #~ msgstr "این چیزی است که بیننده از تصاویر بند انگشتی شما خواهد دید"
2494
-
2495
- #~ msgid "Circle Plus"
2496
- #~ msgstr "دایره +"
2497
-
2498
- #~ msgid "Background Color"
2499
- #~ msgstr "رنگ پس زمینه"
2500
-
2501
- #~ msgid "Text Color"
2502
- #~ msgstr "رنگ متن"
2503
-
2504
- #~ msgid ""
2505
- #~ "Paste the above shortcode into a post or page to show the gallery. Simply "
2506
- #~ "click the shortcode to copy it to your clipboard."
2507
- #~ msgstr ""
2508
- #~ "کد کوتاه بالا را در نوشته یا برگه پیست کنید تا گالری نشان داده شود. کافی "
2509
- #~ "است روی کد کوتاه کلیک کنید تا کد برای شما کپی شود."
2510
-
2511
- #~ msgid "The default URL is "
2512
- #~ msgstr "پیوند یکتای پیشفرض "
2513
-
2514
- #~ msgid ""
2515
- #~ "Thank you for choosing %s, the most intuitive and extensible gallery "
2516
- #~ "creation and management tool ever created for WordPress! NOW WITH ALBUMS!"
2517
- #~ msgstr ""
2518
- #~ "از شما برای انتخاب %s ، کارپسند ترین و قابل گسترش ترین ابزار تولید و "
2519
- #~ "مدیریت گالری هایی که تا به حال برای وردپرس نوشته شده است سپاس گزاریم. "
2520
- #~ "البته حالا با امکان آلبوم !"
2521
-
2522
- #~ msgid "Drag and Drop Reordering"
2523
- #~ msgstr "مرتب سازی \"بکش و بنداز\""
2524
-
2525
- #~ msgid "Sort the images in your gallery simply by dragging them around."
2526
- #~ msgstr ""
2527
- #~ "عکس های درون گالری های خود را به سادگی و فقط با کشیدنشان به این سو و آن "
2528
- #~ "شو مرتب کنید."
2529
-
2530
- #~ msgid ""
2531
- #~ "Our default gallery template supports FooBox : our popular responsive "
2532
- #~ "image lightbox."
2533
- #~ msgstr ""
2534
- #~ "نمونه آماده گالری های ما از FooBox حمایت می کند : قاب عکس (لایت باکس) "
2535
- #~ "واکنش گرای محبوب ما !"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/foogallery-fr_FR.mo DELETED
Binary file
languages/foogallery-fr_FR.po DELETED
@@ -1,2650 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: FooGallery\n"
4
- "POT-Creation-Date: 2015-11-30 18:57+0100\n"
5
- "PO-Revision-Date: 2015-11-30 19:07+0100\n"
6
- "Last-Translator: Jonathan Donzallaz <jonathan.donzallaz@gmail.com>\n"
7
- "Language-Team: Jonathan Donzallaz <jonathan.donzallaz@gmail.com>\n"
8
- "Language: fr_FR\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
- "X-Generator: Poedit 1.8.6\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-WPHeader: foogallery.php\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
-
23
- #: extensions/albums/admin/class-columns.php:19
24
- #: includes/admin/class-columns.php:23
25
- msgid "Template"
26
- msgstr "Modèle"
27
-
28
- #: extensions/albums/admin/class-columns.php:20
29
- #: extensions/nextgen-importer/view-importer.php:188
30
- #: includes/class-posttypes.php:26 includes/class-posttypes.php:37
31
- msgid "Galleries"
32
- msgstr "Galeries"
33
-
34
- #: extensions/albums/admin/class-columns.php:21
35
- #: includes/admin/class-columns.php:25
36
- msgid "Shortcode"
37
- msgstr ""
38
-
39
- #: extensions/albums/admin/class-columns.php:62
40
- #: extensions/albums/admin/class-metaboxes.php:216
41
- #: includes/admin/class-columns.php:76
42
- #: includes/admin/class-gallery-metaboxes.php:389
43
- msgid "Shortcode copied to clipboard :)"
44
- msgstr "Shortcode copié dans le presse-papier"
45
-
46
- #: extensions/albums/admin/class-metaboxes.php:48
47
- msgid "Galleries - drag n drop to reorder!"
48
- msgstr "Galeries - Glisser-déposer pour réarranger"
49
-
50
- #: extensions/albums/admin/class-metaboxes.php:57
51
- #: includes/admin/class-admin.php:63 includes/admin/class-menu.php:30
52
- #: includes/foopluginbase/classes/class-foo-plugin-base.php:296
53
- msgid "Settings"
54
- msgstr "Réglages"
55
-
56
- #: extensions/albums/admin/class-metaboxes.php:66
57
- #: includes/admin/class-gallery-metaboxes.php:100
58
- msgid "Custom CSS"
59
- msgstr "CSS personnalisé"
60
-
61
- #: extensions/albums/admin/class-metaboxes.php:75
62
- msgid "Album Shortcode"
63
- msgstr "Shortcode d'album"
64
-
65
- #: extensions/albums/admin/class-metaboxes.php:84
66
- msgid "Album Sorting"
67
- msgstr "Tri d'album"
68
-
69
- #: extensions/albums/admin/class-metaboxes.php:177
70
- #: extensions/albums/album-default.php:63
71
- #: includes/admin/class-gallery-editor.php:358
72
- #, php-format
73
- msgid "%s #%s"
74
- msgstr ""
75
-
76
- #: extensions/albums/admin/class-metaboxes.php:203
77
- msgid "Paste the above shortcode into a post or page to show the album."
78
- msgstr ""
79
- "Copiez le shortcode ci-dessus dans un article ou une page pour publier "
80
- "l'album."
81
-
82
- #: extensions/albums/admin/class-metaboxes.php:230
83
- msgid ""
84
- "Change the way galleries are sorted within your album. By default, they are "
85
- "sorted in the order you see them."
86
- msgstr ""
87
- "Changez la façon dont les galeries sont triées dans vos albums. Par défault, "
88
- "elles sont triées dans l'ordre dans lequel vous les voyez."
89
-
90
- #: extensions/albums/admin/class-metaboxes.php:257
91
- msgid "Album Template"
92
- msgstr "Modèle d'album"
93
-
94
- #: extensions/albums/admin/class-metaboxes.php:269
95
- msgid ""
96
- "The album template that will be used when the album is output to the "
97
- "frontend."
98
- msgstr ""
99
- "Le modèle d'album qui va être utilisé pour afficher l'album sur la partie "
100
- "publique du site."
101
-
102
- #: extensions/albums/admin/class-metaboxes.php:325
103
- #, php-format
104
- msgid "Add any custom CSS to target this specific album. For example %s"
105
- msgstr ""
106
- "Ajoutez n'importe quel CSS personnalisé ciblant cet album. Par exemple %s"
107
-
108
- #: extensions/albums/album-default.php:23
109
- #: extensions/albums/class-albums-extension.php:77
110
- msgid "&laquo; back to album"
111
- msgstr "&laquo; retour vers l'album"
112
-
113
- #: extensions/albums/class-albums-extension.php:75
114
- msgid "Back To Album Text"
115
- msgstr "Texte de retour vers l'album"
116
-
117
- #: extensions/albums/class-foogallery-album.php:205
118
- msgid "No galleries"
119
- msgstr "Aucune galerie"
120
-
121
- #: extensions/albums/class-foogallery-album.php:207
122
- msgid "1 gallery"
123
- msgstr "1 galerie"
124
-
125
- #: extensions/albums/class-foogallery-album.php:209
126
- #, php-format
127
- msgid "%s galleries"
128
- msgstr "%s galeries"
129
-
130
- #: extensions/albums/class-posttypes.php:26
131
- #: extensions/albums/class-posttypes.php:36
132
- #: extensions/albums/class-posttypes.php:37
133
- #: extensions/nextgen-importer/view-importer.php:189
134
- msgid "Albums"
135
- msgstr ""
136
-
137
- #: extensions/albums/class-posttypes.php:27
138
- msgid "Album"
139
- msgstr ""
140
-
141
- #: extensions/albums/class-posttypes.php:28
142
- msgid "Add Album"
143
- msgstr "Ajouter un album"
144
-
145
- #: extensions/albums/class-posttypes.php:29
146
- msgid "Add New Album"
147
- msgstr "Ajouter un nouvel album"
148
-
149
- #: extensions/albums/class-posttypes.php:30
150
- msgid "Edit Album"
151
- msgstr "Editer l'album"
152
-
153
- #: extensions/albums/class-posttypes.php:31
154
- msgid "New Album"
155
- msgstr "Nouvel album"
156
-
157
- #: extensions/albums/class-posttypes.php:32
158
- msgid "View Album"
159
- msgstr "Voir l'album"
160
-
161
- #: extensions/albums/class-posttypes.php:33
162
- msgid "Search Albums"
163
- msgstr "Chercher des albums"
164
-
165
- #: extensions/albums/class-posttypes.php:34
166
- msgid "No Albums found"
167
- msgstr "Aucun album trouvé"
168
-
169
- #: extensions/albums/class-posttypes.php:35
170
- msgid "No Albums found in Trash"
171
- msgstr "Aucun album trouvé dans la corbeille"
172
-
173
- #: extensions/albums/class-posttypes.php:68
174
- #: extensions/albums/class-posttypes.php:71
175
- msgid "Album updated."
176
- msgstr "Album mis à jour."
177
-
178
- #: extensions/albums/class-posttypes.php:69
179
- msgid "Album custom field updated."
180
- msgstr "Champ personnalisé de l'album mis à jour."
181
-
182
- #: extensions/albums/class-posttypes.php:70
183
- msgid "Album custom field deleted."
184
- msgstr "Champ personnalisé de l'album supprimé."
185
-
186
- #: extensions/albums/class-posttypes.php:72
187
- #, php-format
188
- msgid "Album restored to revision from %s."
189
- msgstr "Album restauré vers la révision depuis %s."
190
-
191
- #: extensions/albums/class-posttypes.php:73
192
- msgid "Album published."
193
- msgstr "Album publié."
194
-
195
- #: extensions/albums/class-posttypes.php:74
196
- msgid "Album saved."
197
- msgstr "Album enregistré."
198
-
199
- #: extensions/albums/class-posttypes.php:75
200
- msgid "Album submitted."
201
- msgstr "Album soumis."
202
-
203
- #: extensions/albums/class-posttypes.php:76
204
- #, php-format
205
- msgid "Album scheduled for: <strong>%1$s</strong>."
206
- msgstr "Album planifié pour: <strong>%1$s</strong>."
207
-
208
- #: extensions/albums/class-posttypes.php:76 includes/class-posttypes.php:77
209
- msgid "M j, Y @ G:i"
210
- msgstr "j F Y \\à G\\hi"
211
-
212
- #: extensions/albums/class-posttypes.php:77
213
- msgid "Album draft updated."
214
- msgstr "Brouillon d'album mis à jour."
215
-
216
- #: extensions/albums/class-posttypes.php:97
217
- #, php-format
218
- msgid "%s Album updated."
219
- msgid_plural "%s Albums updated."
220
- msgstr[0] "%s album mis à jour."
221
- msgstr[1] "%s albums mis à jour."
222
-
223
- #: extensions/albums/class-posttypes.php:98
224
- #, php-format
225
- msgid "%s Album not updated, somebody is editing it."
226
- msgid_plural "%s Albums not updated, somebody is editing them."
227
- msgstr[0] "%s album non mis à jour, quelqu'un est en train de l'éditer."
228
- msgstr[1] "%s albums non mis à jour, quelqu'un est en train de les éditer."
229
-
230
- #: extensions/albums/class-posttypes.php:99
231
- #, php-format
232
- msgid "%s Album permanently deleted."
233
- msgid_plural "%s Albums permanently deleted."
234
- msgstr[0] "%s album supprimé définitivement."
235
- msgstr[1] "%s albums supprimés définitivement."
236
-
237
- #: extensions/albums/class-posttypes.php:100
238
- #, php-format
239
- msgid "%s Album moved to the Trash."
240
- msgid_plural "%s Albums moved to the Trash."
241
- msgstr[0] "%s album déplacé dans la corbeille."
242
- msgstr[1] "%s albums déplacés dans la corbeille."
243
-
244
- #: extensions/albums/class-posttypes.php:101
245
- #, php-format
246
- msgid "%s Album restored from the Trash."
247
- msgid_plural "%s Albums restored from the Trash."
248
- msgstr[0] "%s album restauré depuis la corbeille."
249
- msgstr[1] "%s albums restaurés depuis la corbeille."
250
-
251
- #: extensions/albums/functions.php:31
252
- msgid "Responsive Album Layout"
253
- msgstr "Modèle d'album adaptatif"
254
-
255
- #: extensions/albums/functions.php:35 extensions/albums/functions.php:154
256
- #: extensions/default-templates/class-default-templates-extension.php:224
257
- msgid "Thumbnail Size"
258
- msgstr "Taille de la vignette"
259
-
260
- #: extensions/albums/functions.php:36
261
- msgid "Choose the size of your gallery thumbnails."
262
- msgstr "Choisissez la taille des vignettes de votre galerie."
263
-
264
- #: extensions/albums/functions.php:37 extensions/albums/functions.php:49
265
- #: extensions/albums/functions.php:57 extensions/albums/functions.php:65
266
- #: extensions/albums/functions.php:156 extensions/albums/functions.php:168
267
- #: extensions/albums/functions.php:181 extensions/albums/functions.php:190
268
- #: extensions/albums/functions.php:199
269
- #: extensions/default-templates/class-default-templates-extension.php:36
270
- #: extensions/default-templates/class-default-templates-extension.php:47
271
- #: extensions/default-templates/class-default-templates-extension.php:57
272
- #: extensions/default-templates/class-default-templates-extension.php:73
273
- #: extensions/default-templates/class-default-templates-extension.php:89
274
- #: extensions/default-templates/class-default-templates-extension.php:105
275
- #: extensions/default-templates/class-default-templates-extension.php:362
276
- #: extensions/default-templates/class-default-templates-extension.php:374
277
- #: extensions/default-templates/class-default-templates-extension.php:386
278
- msgid "Thumbnail Settings"
279
- msgstr "Réglages des vignettes"
280
-
281
- #: extensions/albums/functions.php:47
282
- msgid "Title Background Color"
283
- msgstr "Couleur de fond du titre"
284
-
285
- #: extensions/albums/functions.php:48
286
- msgid "The color of the title that overlays the album thumbnails"
287
- msgstr "La couleur du titre sur les vignettes d'album"
288
-
289
- #: extensions/albums/functions.php:55
290
- msgid "Title Text Color"
291
- msgstr "Couleur de texte du titre"
292
-
293
- #: extensions/albums/functions.php:56
294
- msgid "The color of the title text that overlays the album thumbnails"
295
- msgstr "La couleur du texte du titre sur les vignettes d'album"
296
-
297
- #: extensions/albums/functions.php:63
298
- #: extensions/default-templates/class-default-templates-extension.php:132
299
- msgid "Alignment"
300
- msgstr "Alignement"
301
-
302
- #: extensions/albums/functions.php:64
303
- msgid "The horizontal alignment of the gallery thumbnails inside the album."
304
- msgstr "L'alignement horizontal des vignettes de galeries dans l'album."
305
-
306
- #: extensions/albums/functions.php:69
307
- #: extensions/default-templates/class-default-templates-extension.php:138
308
- msgid "Left"
309
- msgstr "Gauche"
310
-
311
- #: extensions/albums/functions.php:70
312
- #: extensions/default-templates/class-default-templates-extension.php:139
313
- msgid "Center"
314
- msgstr "Centré"
315
-
316
- #: extensions/albums/functions.php:71
317
- #: extensions/default-templates/class-default-templates-extension.php:140
318
- msgid "Right"
319
- msgstr "Droite"
320
-
321
- #: extensions/albums/functions.php:76
322
- msgid "\"Back To Album\" Text"
323
- msgstr "Texte \"Retour vers l'album\""
324
-
325
- #: extensions/albums/functions.php:77
326
- msgid "The text that is shown at the top of the album when a gallery is shown"
327
- msgstr ""
328
- "Le texte qui est affiché en haut de l'album quand une galerie est affichée."
329
-
330
- #: extensions/albums/functions.php:78 extensions/albums/functions.php:86
331
- #: extensions/albums/functions.php:94 extensions/albums/functions.php:102
332
- msgid "Language Settings"
333
- msgstr "Paramètres de langues"
334
-
335
- #: extensions/albums/functions.php:84
336
- msgid "\"No Images\" Text"
337
- msgstr "Texte \"Aucune image\""
338
-
339
- #: extensions/albums/functions.php:85
340
- msgid ""
341
- "The text that is shown on the gallery caption when there are no images in "
342
- "the gallery."
343
- msgstr ""
344
- "Le texte qui est affiché sur la légende d'une galerie quand il n'y a aucune "
345
- "image."
346
-
347
- #: extensions/albums/functions.php:92
348
- msgid "\"1 Image\" Text"
349
- msgstr "Texte \"1 image\""
350
-
351
- #: extensions/albums/functions.php:93
352
- msgid ""
353
- "The text that is shown on the gallery caption when there is a single image "
354
- "in the gallery."
355
- msgstr ""
356
- "Le texte qui est affiché sur la légende d'une galerie quand il y a une seule "
357
- "image."
358
-
359
- #: extensions/albums/functions.php:100
360
- msgid "\"X images\" Text"
361
- msgstr "Text \"X images\""
362
-
363
- #: extensions/albums/functions.php:101
364
- msgid ""
365
- "The text that is shown on the gallery caption when there are many images in "
366
- "the gallery. \"s%\" will be replaced with the actual count."
367
- msgstr ""
368
- "Le texte qui est affiché sur la légende de la galerie quand il y a plusieurs "
369
- "images dans la galerie. \"%s\" sera remplacé par le nombre réel."
370
-
371
- #: extensions/albums/functions.php:108
372
- msgid "Gallery Link Format"
373
- msgstr "Format du lien des galeries"
374
-
375
- #: extensions/albums/functions.php:109
376
- msgid "The format of the URL for each individual gallery in the album."
377
- msgstr "Le format de l'URL pour chaque galerie dans l'album."
378
-
379
- #: extensions/albums/functions.php:110 extensions/albums/functions.php:121
380
- #: extensions/albums/functions.php:130
381
- msgid "URL Settings"
382
- msgstr "Paramètres d'URL"
383
-
384
- #: extensions/albums/functions.php:113
385
- msgid "Pretty, e.g. "
386
- msgstr "Accessible, par ex. "
387
-
388
- #: extensions/albums/functions.php:114
389
- msgid "Querystring e.g. "
390
- msgstr "Chaîne de requête, par ex. "
391
-
392
- #: extensions/albums/functions.php:120
393
- msgid "Please Note"
394
- msgstr "Veuillez noter"
395
-
396
- #: extensions/albums/functions.php:124
397
- msgid ""
398
- "If you are getting 404's when clicking on the album galleries, then change "
399
- "to the querystring format. To force your rewrite rules to flush, simply "
400
- "deactivate and activate the albums extension again."
401
- msgstr ""
402
- "Si vous recevez des erreurs 404 quand vous cliquez des galeries, changez le "
403
- "format des chaînes de requête. Pour forcer la mise à jour des règles de "
404
- "réécriture, désactivez et réactivez l'extension \"Album\" à nouveau."
405
-
406
- #: extensions/albums/functions.php:128 extensions/albums/functions.php:134
407
- msgid "Remember Scroll Position"
408
- msgstr "Se souvenir de la position de défilement"
409
-
410
- #: extensions/albums/functions.php:129
411
- msgid ""
412
- "When a gallery is loaded in your album, the page is refreshed which means "
413
- "the scroll position will be lost ."
414
- msgstr ""
415
- "Quand une galerie est chargée dans votre album, la page est actualisée, la "
416
- "position de défilement est donc perdue."
417
-
418
- #: extensions/albums/functions.php:133
419
- msgid "Don't Remember"
420
- msgstr "Ne pas se souvenir"
421
-
422
- #: extensions/albums/functions.php:143
423
- msgid "All-In-One Stack Album"
424
- msgstr "Pile d'album tout-en-un"
425
-
426
- #: extensions/albums/functions.php:147
427
- #: extensions/default-templates/class-default-templates-extension.php:110
428
- #: extensions/default-templates/class-default-templates-extension.php:204
429
- #: extensions/default-templates/class-default-templates-extension.php:243
430
- #: extensions/default-templates/class-default-templates-extension.php:339
431
- #: extensions/default-templates/class-default-templates-extension.php:441
432
- #: includes/admin/view-extensions-build-your-own.php:135
433
- msgid "Lightbox"
434
- msgstr "Visionneuse"
435
-
436
- #: extensions/albums/functions.php:148
437
- msgid "Choose which lightbox you want to use to display images."
438
- msgstr ""
439
- "Choisissez quelle visionneuse vous voulez utiliser pour afficher les images."
440
-
441
- #: extensions/albums/functions.php:155
442
- msgid "Choose the size of your image stack thumbnails."
443
- msgstr "Choisissez la taille des vignettes des piles d'images."
444
-
445
- #: extensions/albums/functions.php:167
446
- msgid "Thumbnail Rotation"
447
- msgstr "Rotation de vignette"
448
-
449
- #: extensions/albums/functions.php:169
450
- msgid ""
451
- "Choose how thumbnails in each gallery are shown when clicking an image stack."
452
- msgstr ""
453
- "Changez la façon dont sont affichées les vignettes quand on clique sur une "
454
- "pile d'images."
455
-
456
- #: extensions/albums/functions.php:173 extensions/albums/functions.php:205
457
- msgid "Normal"
458
- msgstr ""
459
-
460
- #: extensions/albums/functions.php:174
461
- msgid "Random Angles"
462
- msgstr "Angles aléatoires"
463
-
464
- #: extensions/albums/functions.php:180
465
- msgid "Thumbnail Gutter"
466
- msgstr "Séparations des vignettes"
467
-
468
- #: extensions/albums/functions.php:182
469
- msgid "The spacing between each image stack."
470
- msgstr "L'espace entre chaque pile d'images."
471
-
472
- #: extensions/albums/functions.php:189
473
- msgid "Expand Delay"
474
- msgstr "Augmenter le délai"
475
-
476
- #: extensions/albums/functions.php:191
477
- msgid "The delay between expanding each image on a image stack."
478
- msgstr "Le délai entre l'augmentation de chaque image sur une pile d'image."
479
-
480
- #: extensions/albums/functions.php:198
481
- msgid "Image Stack Angles"
482
- msgstr "Angles des piles d'images"
483
-
484
- #: extensions/albums/functions.php:200
485
- msgid "The angle of the images behind the thumbnail in each image stack."
486
- msgstr "L'angle des images derrière les vignettes dans chaque pile d'image."
487
-
488
- #: extensions/albums/functions.php:204
489
- msgid "Low"
490
- msgstr "Bas"
491
-
492
- #: extensions/albums/functions.php:206
493
- msgid "More Than Normal"
494
- msgstr "Plus que normal"
495
-
496
- #: extensions/albums/functions.php:207
497
- msgid "High"
498
- msgstr "Haut"
499
-
500
- #: extensions/albums/public/class-foogallery-album-template-loader.php:33
501
- msgid "Could not load the album!"
502
- msgstr "L'album ne peut pas être chargé."
503
-
504
- #: extensions/albums/public/class-foogallery-album-template-loader.php:91
505
- msgid "No album template found!"
506
- msgstr "Aucun modèle d'album trouvé."
507
-
508
- #: extensions/default-templates/class-default-templates-extension.php:28
509
- msgid "Responsive Image Gallery"
510
- msgstr "Galerie d'image adaptative"
511
-
512
- #: extensions/default-templates/class-default-templates-extension.php:34
513
- #: extensions/default-templates/class-default-templates-extension.php:360
514
- msgid "Size"
515
- msgstr "Taille"
516
-
517
- #: extensions/default-templates/class-default-templates-extension.php:35
518
- #: extensions/default-templates/class-default-templates-extension.php:225
519
- msgid "Choose the size of your thumbnails."
520
- msgstr "Chosissez la taille de vos vignettes."
521
-
522
- #: extensions/default-templates/class-default-templates-extension.php:46
523
- msgid "Link"
524
- msgstr "Lien"
525
-
526
- #: extensions/default-templates/class-default-templates-extension.php:51
527
- msgid ""
528
- "You can choose to link each thumbnail to the full size image, the image's "
529
- "attachment page, a custom URL, or you can choose to not link to anything."
530
- msgstr ""
531
- "Vous pouvez choisir de lier chaque vignette vers l'image de taille réelle, "
532
- "la page attachée à l'image, une URL personnalisée, ou aucun lien."
533
-
534
- #: extensions/default-templates/class-default-templates-extension.php:55
535
- msgid "Border Style"
536
- msgstr "Style de bordure"
537
-
538
- #: extensions/default-templates/class-default-templates-extension.php:56
539
- msgid "The border style for each thumbnail in the gallery."
540
- msgstr "Le style de bordure pour chaque vignette dans la galerie."
541
-
542
- #: extensions/default-templates/class-default-templates-extension.php:61
543
- msgid "Square white border with shadow"
544
- msgstr "Bordure carrée blanche avec ombre"
545
-
546
- #: extensions/default-templates/class-default-templates-extension.php:62
547
- msgid "Circular white border with shadow"
548
- msgstr "Bordure circulaire blanche avec ombre"
549
-
550
- #: extensions/default-templates/class-default-templates-extension.php:63
551
- msgid "Square Black"
552
- msgstr "Carré noir"
553
-
554
- #: extensions/default-templates/class-default-templates-extension.php:64
555
- msgid "Circular Black"
556
- msgstr "Circulaire noir"
557
-
558
- #: extensions/default-templates/class-default-templates-extension.php:65
559
- msgid "Square Inset"
560
- msgstr "Carré incrusté"
561
-
562
- #: extensions/default-templates/class-default-templates-extension.php:66
563
- msgid "Plain Rounded"
564
- msgstr "Arrondi brut"
565
-
566
- #: extensions/default-templates/class-default-templates-extension.php:67
567
- msgid "Plain"
568
- msgstr "Brut"
569
-
570
- #: extensions/default-templates/class-default-templates-extension.php:72
571
- msgid "Hover Effect Type"
572
- msgstr "Type d'effet au survol"
573
-
574
- #: extensions/default-templates/class-default-templates-extension.php:77
575
- msgid "Icon"
576
- msgstr "Icône"
577
-
578
- #: extensions/default-templates/class-default-templates-extension.php:78
579
- msgid "Dark Tint"
580
- msgstr "Teinte foncée"
581
-
582
- #: extensions/default-templates/class-default-templates-extension.php:79
583
- msgid "Colorize"
584
- msgstr "Colorisé"
585
-
586
- #: extensions/default-templates/class-default-templates-extension.php:80
587
- #: extensions/default-templates/class-default-templates-extension.php:405
588
- #: includes/admin/class-gallery-metabox-fields.php:256
589
- msgid "None"
590
- msgstr "Aucune"
591
-
592
- #: extensions/default-templates/class-default-templates-extension.php:83
593
- msgid "The type of hover effect the thumbnails will use."
594
- msgstr "Le type d'effet au survol des vignettes."
595
-
596
- #: extensions/default-templates/class-default-templates-extension.php:87
597
- msgid "Icon Hover Effect"
598
- msgstr "Icône de survol"
599
-
600
- #: extensions/default-templates/class-default-templates-extension.php:88
601
- msgid ""
602
- "When the hover effect type of Icon is chosen, you can choose which icon is "
603
- "shown when you hover over each thumbnail."
604
- msgstr ""
605
- "Quand le type d'effet au survol avec icône est choisi, vous pouvez choisir "
606
- "quelle icône est affichée."
607
-
608
- #: extensions/default-templates/class-default-templates-extension.php:93
609
- msgid "Zoom"
610
- msgstr "Zoom"
611
-
612
- #: extensions/default-templates/class-default-templates-extension.php:94
613
- msgid "Zoom 2"
614
- msgstr "Zoom 2"
615
-
616
- #: extensions/default-templates/class-default-templates-extension.php:95
617
- msgid "Zoom 3"
618
- msgstr "Zoom 3"
619
-
620
- #: extensions/default-templates/class-default-templates-extension.php:96
621
- msgid "Plus"
622
- msgstr "Plus"
623
-
624
- #: extensions/default-templates/class-default-templates-extension.php:97
625
- msgid "Cirlce Plus"
626
- msgstr "Cercle plus"
627
-
628
- #: extensions/default-templates/class-default-templates-extension.php:98
629
- msgid "Eye"
630
- msgstr "Oeil"
631
-
632
- #: extensions/default-templates/class-default-templates-extension.php:103
633
- #: includes/admin/view-extensions-popup.php:53
634
- msgid "Preview"
635
- msgstr "Aperçu"
636
-
637
- #: extensions/default-templates/class-default-templates-extension.php:104
638
- msgid "This is what your gallery thumbnails will look like."
639
- msgstr "La façon dont vont s'afficher vos vignettes de galerie."
640
-
641
- #: extensions/default-templates/class-default-templates-extension.php:111
642
- #: extensions/default-templates/class-default-templates-extension.php:120
643
- #: extensions/default-templates/class-default-templates-extension.php:134
644
- #: extensions/default-templates/class-default-templates-extension.php:442
645
- #: includes/admin/class-gallery-metaboxes.php:72
646
- msgid "Gallery Settings"
647
- msgstr "Paramètres de galerie"
648
-
649
- #: extensions/default-templates/class-default-templates-extension.php:112
650
- msgid ""
651
- "Choose which lightbox you want to use. The lightbox will only work if you "
652
- "set the thumbnail link to \"Full Size Image\"."
653
- msgstr ""
654
- "Choisissez quelle visionneuse vous voulez utiliser. La visionneuse ne va "
655
- "fonctionner que si vous régler le lien des vignettes sur \"Image taille "
656
- "réelle\""
657
-
658
- #: extensions/default-templates/class-default-templates-extension.php:117
659
- msgid "Spacing"
660
- msgstr "Espacement"
661
-
662
- #: extensions/default-templates/class-default-templates-extension.php:118
663
- msgid "The spacing or gap between thumbnails in the gallery."
664
- msgstr "L'espace entre les vignettes dans la galerie."
665
-
666
- #: extensions/default-templates/class-default-templates-extension.php:123
667
- msgid "5 pixels"
668
- msgstr ""
669
-
670
- #: extensions/default-templates/class-default-templates-extension.php:124
671
- msgid "10 pixels"
672
- msgstr ""
673
-
674
- #: extensions/default-templates/class-default-templates-extension.php:125
675
- msgid "15 pixels"
676
- msgstr ""
677
-
678
- #: extensions/default-templates/class-default-templates-extension.php:126
679
- msgid "20 pixels"
680
- msgstr ""
681
-
682
- #: extensions/default-templates/class-default-templates-extension.php:127
683
- msgid "25 pixels"
684
- msgstr ""
685
-
686
- #: extensions/default-templates/class-default-templates-extension.php:133
687
- msgid "The horizontal alignment of the thumbnails inside the gallery."
688
- msgstr "L'alignement horizontal des vignettes dans la galerie."
689
-
690
- #: extensions/default-templates/class-default-templates-extension.php:148
691
- msgid "Masonry Image Gallery"
692
- msgstr "Galerie d'image maçonnerie"
693
-
694
- #: extensions/default-templates/class-default-templates-extension.php:152
695
- msgid "Thumbnail Width"
696
- msgstr "Largeur de vignette"
697
-
698
- #: extensions/default-templates/class-default-templates-extension.php:153
699
- msgid ""
700
- "Choose the width of your thumbnails. Thumbnails will be generated on the fly "
701
- "and cached once generated."
702
- msgstr ""
703
- "Choisissez la largeur de vos vignettes. Les vignettes seront générées à la "
704
- "volée puis misent en cache."
705
-
706
- #: extensions/default-templates/class-default-templates-extension.php:162
707
- msgid "Gutter Width"
708
- msgstr "Largeur de l'espacement"
709
-
710
- #: extensions/default-templates/class-default-templates-extension.php:163
711
- #: extensions/default-templates/class-default-templates-extension.php:302
712
- msgid "The spacing between your thumbnails."
713
- msgstr "L'espacement entre vos vignettes."
714
-
715
- #: extensions/default-templates/class-default-templates-extension.php:172
716
- msgid "Image Alignment"
717
- msgstr "Alignement des images."
718
-
719
- #: extensions/default-templates/class-default-templates-extension.php:173
720
- msgid ""
721
- "You can choose to center align your images or leave them at the default."
722
- msgstr ""
723
- "Vous pouvez choisir de centrer vos images ou de laisser l'alignement par "
724
- "défaut."
725
-
726
- #: extensions/default-templates/class-default-templates-extension.php:176
727
- msgid "Left Alignment"
728
- msgstr "Alignement gauche"
729
-
730
- #: extensions/default-templates/class-default-templates-extension.php:177
731
- msgid "Center Alignment"
732
- msgstr "Alignement centré"
733
-
734
- #: extensions/default-templates/class-default-templates-extension.php:184
735
- msgid "Hover Zoom"
736
- msgstr "Zoom au survol"
737
-
738
- #: extensions/default-templates/class-default-templates-extension.php:185
739
- msgid ""
740
- "The effect that is applied to images when you move your mouse over them."
741
- msgstr ""
742
- "L'effet appliqué aux images quand vous déplacez votre souris par-dessus."
743
-
744
- #: extensions/default-templates/class-default-templates-extension.php:188
745
- msgid "Zoom Slightly"
746
- msgstr "Zoom léger"
747
-
748
- #: extensions/default-templates/class-default-templates-extension.php:189
749
- msgid "No Zoom"
750
- msgstr "Aucun zoom"
751
-
752
- #: extensions/default-templates/class-default-templates-extension.php:196
753
- #: extensions/default-templates/class-default-templates-extension.php:235
754
- #: extensions/default-templates/class-default-templates-extension.php:331
755
- msgid "Thumbnail Link"
756
- msgstr "Lien des vignettes"
757
-
758
- #: extensions/default-templates/class-default-templates-extension.php:200
759
- #: extensions/default-templates/class-default-templates-extension.php:239
760
- #: extensions/default-templates/class-default-templates-extension.php:335
761
- msgid ""
762
- "You can choose to link each thumbnail to the full size image, or to the "
763
- "image's attachment page, or you can choose to not link to anything."
764
- msgstr ""
765
- "Vous pouvez choisir de lier chaque vignette vers l'image de taille réelle, "
766
- "la page attachée à l'image, ou aucun lien."
767
-
768
- #: extensions/default-templates/class-default-templates-extension.php:205
769
- #: extensions/default-templates/class-default-templates-extension.php:244
770
- #: extensions/default-templates/class-default-templates-extension.php:340
771
- msgid ""
772
- "Choose which lightbox you want to display images with. The lightbox will "
773
- "only work if you set the thumbnail link to \"Full Size Image\"."
774
- msgstr ""
775
- "Choisissez quelle visionneuse vous voulez utiliser pour afficher les images. "
776
- "La visionneuse va seulement fonctionner si vous régler le lien des vignettes "
777
- "sur \"Image taille réelle\"."
778
-
779
- #: extensions/default-templates/class-default-templates-extension.php:213
780
- msgid "Simple Portfolio"
781
- msgstr "Portfolio simple"
782
-
783
- #: extensions/default-templates/class-default-templates-extension.php:217
784
- #: extensions/default-templates/class-default-templates-extension.php:266
785
- msgid "Tip"
786
- msgstr "Conseil"
787
-
788
- #: extensions/default-templates/class-default-templates-extension.php:220
789
- msgid ""
790
- "The Simple Portfolio template works best when you have <strong>captions and "
791
- "descriptions</strong> set for every attachment in the gallery.<br />To "
792
- "change captions and descriptions, simply hover over the thumbnail above and "
793
- "click the \"i\" icon."
794
- msgstr ""
795
- "Le modèle de portfolio simple fonctionne mieux quand vous avez des "
796
- "<strong>légendes et descriptions</strong> réglées pour chaque image de la "
797
- "galerie. <br/>Pour changer les légendes et descriptions, survolez simplement "
798
- "les vignettes si-dessus et cliquez l'icône \"i\""
799
-
800
- #: extensions/default-templates/class-default-templates-extension.php:249
801
- msgid "Gutter"
802
- msgstr "Espacement"
803
-
804
- #: extensions/default-templates/class-default-templates-extension.php:250
805
- msgid "The spacing between each thumbnail in the gallery."
806
- msgstr "L'espace entre chaque vignette dans la galerie."
807
-
808
- #: extensions/default-templates/class-default-templates-extension.php:262
809
- msgid "Justified Gallery"
810
- msgstr "Galerie justifiée"
811
-
812
- #: extensions/default-templates/class-default-templates-extension.php:269
813
- msgid ""
814
- "The Justified Gallery template uses the popular <a href=\"http://miromannino."
815
- "com/projects/justified-gallery/\" target=\"_blank\">Justified Gallery jQuery "
816
- "Plugin</a> under the hood. You can specify thumbnail captions by setting the "
817
- "alt text for your attachments."
818
- msgstr ""
819
- "Le modèle de galerie justifiée utilise le populaire <a href=\"http://"
820
- "miromannino.com/projects/justified-gallery/\" target=\"_blank\">Justified "
821
- "Gallery jQuery Plugin</a>.Vous pouvez spécifier des légendes de vignettes en "
822
- "réglant le texte alternatif (alt text) pour vos images."
823
-
824
- #: extensions/default-templates/class-default-templates-extension.php:273
825
- msgid "Thumb Height"
826
- msgstr "Hauteur des vignettes"
827
-
828
- #: extensions/default-templates/class-default-templates-extension.php:274
829
- msgid ""
830
- "Choose the height of your thumbnails. Thumbnails will be generated on the "
831
- "fly and cached once generated."
832
- msgstr ""
833
- "Choisissez la hauteur de vos vignettes. Les vignettes seront générées à la "
834
- "volée puis misent en cache."
835
-
836
- #: extensions/default-templates/class-default-templates-extension.php:283
837
- msgid "Row Height"
838
- msgstr "Hauteur de ligne"
839
-
840
- #: extensions/default-templates/class-default-templates-extension.php:284
841
- msgid ""
842
- "The preferred height of your gallery rows. This can be different from the "
843
- "thumbnail height."
844
- msgstr ""
845
- "La hauteur désirée des lignes de vos galeries. Elle peut être différente de "
846
- "la hauteur des vignettes."
847
-
848
- #: extensions/default-templates/class-default-templates-extension.php:293
849
- msgid "Max Row Height"
850
- msgstr "Hauteur maximum des lignes"
851
-
852
- #: extensions/default-templates/class-default-templates-extension.php:294
853
- msgid ""
854
- "A number (e.g 200) which specifies the maximum row height in pixels. A "
855
- "negative value for no limits. Alternatively, use a percentage (e.g. 200% "
856
- "which means that the row height cannot exceed 2 * rowHeight)"
857
- msgstr ""
858
- "Un nombre (par ex. 200) qui spécifie la hauteur maximum des lignes en pixel."
859
- "Une hauteur négative signifie aucune limite. Alternativement, utilisez une "
860
- "pourcentage (par ex. 200% signifie que la hauteur des lignes ne peut pas "
861
- "excéder 2 * la hauteur des lignes."
862
-
863
- #: extensions/default-templates/class-default-templates-extension.php:301
864
- msgid "Margins"
865
- msgstr "Marges"
866
-
867
- #: extensions/default-templates/class-default-templates-extension.php:311
868
- msgid "Show Captions"
869
- msgstr "Afficher les légendes"
870
-
871
- #: extensions/default-templates/class-default-templates-extension.php:312
872
- msgid ""
873
- "Show a caption when hovering over your thumbnails. (Set captions by adding "
874
- "either a title or alt text to an attachment)"
875
- msgstr ""
876
- "Afficher une légende lors du survol de vos vignettes. (Régler vos légendes "
877
- "en ajoutant soit un titre soit un text alternatif à vos images)."
878
-
879
- #: extensions/default-templates/class-default-templates-extension.php:318
880
- msgid "Caption Source"
881
- msgstr "Source des légendes"
882
-
883
- #: extensions/default-templates/class-default-templates-extension.php:319
884
- msgid "Pull captions from either the attachment Title, Caption or Alt Text."
885
- msgstr ""
886
- "Chercher les légendes dans le titre, la légende ou le texte alternatif."
887
-
888
- #: extensions/default-templates/class-default-templates-extension.php:324
889
- msgid "Attachment Title"
890
- msgstr "Titre de l'image"
891
-
892
- #: extensions/default-templates/class-default-templates-extension.php:325
893
- msgid "Attachment Caption"
894
- msgstr "Légende de l'image"
895
-
896
- #: extensions/default-templates/class-default-templates-extension.php:326
897
- msgid "Attachment Alt Text"
898
- msgstr "Texte alternatif de l'image"
899
-
900
- #: extensions/default-templates/class-default-templates-extension.php:348
901
- msgid "Single Thumbnail Gallery"
902
- msgstr "Galerie vignette simple"
903
-
904
- #: extensions/default-templates/class-default-templates-extension.php:356
905
- msgid ""
906
- "This gallery template only shows a single thumbnail, but the true power "
907
- "shines through when the thumbnail is clicked, because then the lightbox "
908
- "takes over and the user can view all the images in the gallery."
909
- msgstr ""
910
- "Ce modèle de galerie affiche seulement une seule vignette, mais "
911
- "l'utilisateur peut voir toutes les images dans la visionneuse qui s'affiche "
912
- "quand on clique sur la vignette."
913
-
914
- #: extensions/default-templates/class-default-templates-extension.php:361
915
- msgid "Choose the size of your thumbnail."
916
- msgstr "Choisissez la taille de vos vignettes."
917
-
918
- #: extensions/default-templates/class-default-templates-extension.php:372
919
- msgid "Position"
920
- msgstr ""
921
-
922
- #: extensions/default-templates/class-default-templates-extension.php:373
923
- msgid "The position of the thumbnail related to the content around it."
924
- msgstr "La position des vignettes relativement au contenu environnant."
925
-
926
- #: extensions/default-templates/class-default-templates-extension.php:378
927
- msgid "Full Width (block)"
928
- msgstr "Largeur totale (bloc)"
929
-
930
- #: extensions/default-templates/class-default-templates-extension.php:379
931
- msgid "Float Left"
932
- msgstr "Flottant à gauche"
933
-
934
- #: extensions/default-templates/class-default-templates-extension.php:380
935
- msgid "Float Right"
936
- msgstr "Flottant à droite"
937
-
938
- #: extensions/default-templates/class-default-templates-extension.php:385
939
- msgid "Link To Custom URL"
940
- msgstr "Lien vers une url personnalisée"
941
-
942
- #: extensions/default-templates/class-default-templates-extension.php:389
943
- msgid ""
944
- "You can link your thumbnails to Custom URL's (if they are set on your "
945
- "attachments). Fallback will be to the full size image."
946
- msgstr ""
947
- "Vous pouvez lier vos vignettes à une URL personnalisée (si définie dans vos "
948
- "images). Si elle n'est pas définie, affiche l'image taille réelle."
949
-
950
- #: extensions/default-templates/class-default-templates-extension.php:393
951
- msgid "Caption Style"
952
- msgstr "Style de légende"
953
-
954
- #: extensions/default-templates/class-default-templates-extension.php:394
955
- #: extensions/default-templates/class-default-templates-extension.php:411
956
- #: extensions/default-templates/class-default-templates-extension.php:420
957
- #: extensions/default-templates/class-default-templates-extension.php:428
958
- #: extensions/default-templates/class-default-templates-extension.php:435
959
- msgid "Caption Settings"
960
- msgstr "Paramètres de légende"
961
-
962
- #: extensions/default-templates/class-default-templates-extension.php:395
963
- msgid "Choose which caption style you want to use."
964
- msgstr "Choisissez quel style de légende vous voulez utiliser."
965
-
966
- #: extensions/default-templates/class-default-templates-extension.php:399
967
- msgid "Simple"
968
- msgstr "Simple"
969
-
970
- #: extensions/default-templates/class-default-templates-extension.php:400
971
- msgid "Slide Up"
972
- msgstr "Glissement vers le haut"
973
-
974
- #: extensions/default-templates/class-default-templates-extension.php:401
975
- msgid "Fall Down"
976
- msgstr "Descente"
977
-
978
- #: extensions/default-templates/class-default-templates-extension.php:402
979
- msgid "Fade"
980
- msgstr "Fondu"
981
-
982
- #: extensions/default-templates/class-default-templates-extension.php:403
983
- msgid "Push From Left"
984
- msgstr "Poussée depuis la gauche"
985
-
986
- #: extensions/default-templates/class-default-templates-extension.php:404
987
- msgid "Scale"
988
- msgstr "Echelle"
989
-
990
- #: extensions/default-templates/class-default-templates-extension.php:410
991
- msgid "Caption Background Color"
992
- msgstr "Couleur de fond des légendes"
993
-
994
- #: extensions/default-templates/class-default-templates-extension.php:412
995
- msgid "The color of the caption background."
996
- msgstr "La couleur de fond des légendes"
997
-
998
- #: extensions/default-templates/class-default-templates-extension.php:419
999
- msgid "Caption Text Color"
1000
- msgstr "Couleur des légendes"
1001
-
1002
- #: extensions/default-templates/class-default-templates-extension.php:421
1003
- msgid "The color of the caption text."
1004
- msgstr "La couleur de texte des légendes."
1005
-
1006
- #: extensions/default-templates/class-default-templates-extension.php:427
1007
- msgid "Caption Title"
1008
- msgstr "Titre de légende"
1009
-
1010
- #: extensions/default-templates/class-default-templates-extension.php:429
1011
- msgid "Leave blank if you do not want a caption title."
1012
- msgstr "Laissez vide si vous ne voulez pas de titre de légende."
1013
-
1014
- #: extensions/default-templates/class-default-templates-extension.php:434
1015
- msgid "Caption Description"
1016
- msgstr "Description de légende"
1017
-
1018
- #: extensions/default-templates/class-default-templates-extension.php:436
1019
- msgid "Leave blank if you do not want a caption description."
1020
- msgstr "Laissez vide si vous ne voulez pas de description de légende."
1021
-
1022
- #: extensions/default-templates/class-default-templates-extension.php:443
1023
- msgid "Choose which lightbox you want to use."
1024
- msgstr "Choisissez quelle visionneuse vous voulez utiliser."
1025
-
1026
- #: extensions/media-categories/class-media-categories-extension.php:29
1027
- #: extensions/media-categories/class-media-categories-extension.php:39
1028
- #: extensions/media-categories/class-media-categories-extension.php:77
1029
- msgid "Categories"
1030
- msgstr "Catégories"
1031
-
1032
- #: extensions/media-categories/class-media-categories-extension.php:30
1033
- msgid "Category"
1034
- msgstr "Catégorie"
1035
-
1036
- #: extensions/media-categories/class-media-categories-extension.php:31
1037
- msgid "Search Categories"
1038
- msgstr "Chercher dans les catégories"
1039
-
1040
- #: extensions/media-categories/class-media-categories-extension.php:32
1041
- msgid "All Categories"
1042
- msgstr "Toutes les catégories"
1043
-
1044
- #: extensions/media-categories/class-media-categories-extension.php:33
1045
- msgid "Parent Category"
1046
- msgstr "Catégorie parent"
1047
-
1048
- #: extensions/media-categories/class-media-categories-extension.php:34
1049
- msgid "Parent Category:"
1050
- msgstr "Catégorie parent:"
1051
-
1052
- #: extensions/media-categories/class-media-categories-extension.php:35
1053
- msgid "Edit Category"
1054
- msgstr "Editer la catégorie"
1055
-
1056
- #: extensions/media-categories/class-media-categories-extension.php:36
1057
- msgid "Update Category"
1058
- msgstr "Mettre à jour la catégorie"
1059
-
1060
- #: extensions/media-categories/class-media-categories-extension.php:37
1061
- msgid "Add New Category"
1062
- msgstr "Ajouter une nouvelle catégorie"
1063
-
1064
- #: extensions/media-categories/class-media-categories-extension.php:38
1065
- msgid "New Category Name"
1066
- msgstr "Nom de la nouvelle catégorie"
1067
-
1068
- #: extensions/media-categories/class-media-categories-extension.php:79
1069
- msgid "Categorize your attachments"
1070
- msgstr "Catégorisez vos images"
1071
-
1072
- #: extensions/media-categories/class-media-categories-extension.php:140
1073
- msgid "No Categories Available!"
1074
- msgstr "Aucune catégorie disponible."
1075
-
1076
- #: extensions/media-categories/class-media-categories-extension.php:145
1077
- msgid "Manage Categories"
1078
- msgstr "Gérer les catégories"
1079
-
1080
- #: extensions/media-categories/class-media-categories-extension.php:179
1081
- msgid "Error saving the categories for the attachment!"
1082
- msgstr "Erreur lors de l'enregistrement des catégories de l'image."
1083
-
1084
- #: extensions/media-categories/class-media-categories-extension.php:195
1085
- msgid "View all categories"
1086
- msgstr "Voir toutes les catégories"
1087
-
1088
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:43
1089
- msgid "NextGen Importer"
1090
- msgstr "Importateur NextGen"
1091
-
1092
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:157
1093
- msgid "Import Your NextGen Galleries"
1094
- msgstr "Importez vos galeries NextGen"
1095
-
1096
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:159
1097
- msgid "Import Galleries"
1098
- msgstr "Importer des galeries"
1099
-
1100
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:163
1101
- #, php-format
1102
- msgid ""
1103
- "Import all your NextGen galleries in a single click, or choose the galleries "
1104
- "you would like to migrate over to %s."
1105
- msgstr ""
1106
- "Importez toutes vos galeries NextGen d'un simple clic, ou choisissez les "
1107
- "galeries que vous voulez migrer vers %s."
1108
-
1109
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:165
1110
- msgid "Import Images"
1111
- msgstr "Importer des images"
1112
-
1113
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:167
1114
- msgid ""
1115
- "NextGen gallery images are imported into your WordPress media library, where "
1116
- "they should be!"
1117
- msgstr ""
1118
- "Les images des galeries NextGen sont importées dans votre bibliothèque de "
1119
- "médias WordPress, où elles devraient se trouver."
1120
-
1121
- #: extensions/nextgen-importer/class-nextgen-helper.php:245
1122
- msgid "Select All"
1123
- msgstr "Sélectionner tout"
1124
-
1125
- #: extensions/nextgen-importer/class-nextgen-helper.php:250
1126
- msgid "NextGen Gallery"
1127
- msgstr "Galerie NextGen"
1128
-
1129
- #: extensions/nextgen-importer/class-nextgen-helper.php:253
1130
- #, php-format
1131
- msgid "%s Name"
1132
- msgstr "%s name"
1133
-
1134
- #: extensions/nextgen-importer/class-nextgen-helper.php:256
1135
- msgid "Import Progress"
1136
- msgstr "Progression de l'importation"
1137
-
1138
- #: extensions/nextgen-importer/class-nextgen-helper.php:291
1139
- #, php-format
1140
- msgid "(%s images)"
1141
- msgstr ""
1142
-
1143
- #: extensions/nextgen-importer/class-nextgen-helper.php:320
1144
- msgid "Start Import"
1145
- msgstr "Démarrer l'importation"
1146
-
1147
- #: extensions/nextgen-importer/class-nextgen-helper.php:322
1148
- msgid "Resume Import"
1149
- msgstr "Reprendre l'importation"
1150
-
1151
- #: extensions/nextgen-importer/class-nextgen-helper.php:324
1152
- msgid "Stop Import"
1153
- msgstr "Arrêter l'importation"
1154
-
1155
- #: extensions/nextgen-importer/class-nextgen-helper.php:328
1156
- msgid "Reset All Gallery Imports"
1157
- msgstr "Réinitialiser tous les imports de galerie."
1158
-
1159
- #: extensions/nextgen-importer/class-nextgen-helper.php:355
1160
- msgid "NextGen Album"
1161
- msgstr "Album NextGen"
1162
-
1163
- #: extensions/nextgen-importer/class-nextgen-helper.php:358
1164
- msgid "Album Name"
1165
- msgstr "Nom d'album"
1166
-
1167
- #: extensions/nextgen-importer/class-nextgen-helper.php:361
1168
- msgid "NextGen Galleries"
1169
- msgstr "Galeries NextGen"
1170
-
1171
- #: extensions/nextgen-importer/class-nextgen-helper.php:364
1172
- msgid "Import Options"
1173
- msgstr "Options d'importation"
1174
-
1175
- #: extensions/nextgen-importer/class-nextgen-helper.php:408
1176
- msgid "[Album] "
1177
- msgstr ""
1178
-
1179
- #: extensions/nextgen-importer/class-nextgen-helper.php:413
1180
- msgid "nested albums not supported"
1181
- msgstr "Albums imbriqués non supportés"
1182
-
1183
- #: extensions/nextgen-importer/class-nextgen-helper.php:428
1184
- msgid "imported"
1185
- msgstr "importé"
1186
-
1187
- #: extensions/nextgen-importer/class-nextgen-helper.php:428
1188
- msgid "not imported"
1189
- msgstr "non importé"
1190
-
1191
- #: extensions/nextgen-importer/class-nextgen-helper.php:448
1192
- msgid "All galleries will be linked"
1193
- msgstr "Toutes les galeries vont être liées"
1194
-
1195
- #: extensions/nextgen-importer/class-nextgen-helper.php:450
1196
- #, php-format
1197
- msgid "%d/%d galleries will be linked"
1198
- msgstr "%d/%d galeries vont être liées"
1199
-
1200
- #: extensions/nextgen-importer/class-nextgen-helper.php:452
1201
- msgid "(Only previously imported galleries can be linked)"
1202
- msgstr "(Seulement les galeries précedemment importées peuvent être liées)"
1203
-
1204
- #: extensions/nextgen-importer/class-nextgen-helper.php:455
1205
- msgid "No galleries imported yet!!"
1206
- msgstr "Aucune galerie importée jusque-là."
1207
-
1208
- #: extensions/nextgen-importer/class-nextgen-helper.php:473
1209
- msgid "Reset All Album Imports"
1210
- msgstr "Réinitialiser tous les imports d'album"
1211
-
1212
- #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:23
1213
- msgid "Album not imported"
1214
- msgstr "Album non importé"
1215
-
1216
- #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:26
1217
- #, php-format
1218
- msgid "Done! %d galleries(s) linked"
1219
- msgstr "Terminé ! %d galerie(s) liées"
1220
-
1221
- #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:30
1222
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:59
1223
- msgid "Unknown status!"
1224
- msgstr "Status inconnu."
1225
-
1226
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:45
1227
- msgid "Not imported"
1228
- msgstr "Non importé"
1229
-
1230
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:48
1231
- msgid "Queued for import"
1232
- msgstr "En file d'attente pour importation"
1233
-
1234
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:51
1235
- #, php-format
1236
- msgid "Imported %d of %d image(s)"
1237
- msgstr "%d/%d image(s) importée(s)"
1238
-
1239
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:55
1240
- #, php-format
1241
- msgid "Done! %d image(s) imported"
1242
- msgstr "Terminé ! %d image(s) importée(s)"
1243
-
1244
- #: extensions/nextgen-importer/view-importer.php:80
1245
- msgid ""
1246
- "Something went wrong with the import and the page will now reload. Once it "
1247
- "has reloaded, click \"Resume Import\" to continue with the import."
1248
- msgstr ""
1249
- "Quelque chose s'est mal passé avec l'importation et la page va être "
1250
- "actualisée. Une fois rechargé, cliquez sur \"Reprendre l'importation\" pour "
1251
- "continuer."
1252
-
1253
- #: extensions/nextgen-importer/view-importer.php:121
1254
- msgid "Are you sure you want to cancel?"
1255
- msgstr "Etes-vous sûr de vouloir annuler ?"
1256
-
1257
- #: extensions/nextgen-importer/view-importer.php:128
1258
- msgid ""
1259
- "Are you sure you want to reset all NextGen gallery import data? This may "
1260
- "result in duplicate galleries and media attachments!"
1261
- msgstr ""
1262
- "Etes-vous sûr de vouloir réinitialiser toutes les données d'importation des "
1263
- "galeries NextGen ? Cela pourrait résulter en galeries et médias dupliqués."
1264
-
1265
- #: extensions/nextgen-importer/view-importer.php:135
1266
- msgid ""
1267
- "Are you sure you want to reset all NextGen album import data? This may "
1268
- "result in duplicate albums if you decide to import again!"
1269
- msgstr ""
1270
- "Etes-vous sûr de vouloir réinitialiser toutes les données d'importation des "
1271
- "albums NextGen ? Cela pourrait résulter en albums dupliqués."
1272
-
1273
- #: extensions/nextgen-importer/view-importer.php:165
1274
- msgid "Something went wrong with the import and the page will now reload."
1275
- msgstr ""
1276
- "Quelque chose s'est mal passé avec l'importation et la page va être "
1277
- "actualisée."
1278
-
1279
- #: extensions/nextgen-importer/view-importer.php:185
1280
- msgid "NextGen Gallery And Album Importer"
1281
- msgstr "Importateur de galeries et albums Nextgen"
1282
-
1283
- #: extensions/nextgen-importer/view-importer.php:196
1284
- msgid "There are no NextGen galleries to import!"
1285
- msgstr "Il n'y a pas de galerie NextGen à importer."
1286
-
1287
- #: extensions/nextgen-importer/view-importer.php:199
1288
- msgid "Importing galleries is really simple:"
1289
- msgstr "Importer des galeries est vraiment simple:"
1290
-
1291
- #: extensions/nextgen-importer/view-importer.php:201
1292
- #, php-format
1293
- msgid ""
1294
- "Choose the NextGen galleries you want to import into %s by checking their "
1295
- "checkboxes."
1296
- msgstr ""
1297
- "Choisissez les galeries NextGen que vous voulez importer dans %s en cochant "
1298
- "les cases correspondantes."
1299
-
1300
- #: extensions/nextgen-importer/view-importer.php:202
1301
- msgid "Click the Start Import button to start the import process."
1302
- msgstr ""
1303
- "Cliquez le bouton de démarrage pour commencer le processus d'importation."
1304
-
1305
- #: extensions/nextgen-importer/view-importer.php:203
1306
- #, php-format
1307
- msgid ""
1308
- "Once a gallery is imported, you can click on the link under the %s Name "
1309
- "column to edit the gallery."
1310
- msgstr ""
1311
- "Une fois qu'une galerie est importée, vous pouvez cliquer sur le lien sous "
1312
- "la %s colonne nom pour éditer la galerie."
1313
-
1314
- #: extensions/nextgen-importer/view-importer.php:205
1315
- msgid ""
1316
- "Please note: importing large galleries with lots of images can take a while!"
1317
- msgstr "Veuillez noter: importer de grandes galeries peut prendre du temps."
1318
-
1319
- #: extensions/nextgen-importer/view-importer.php:217
1320
- msgid "There are no NextGen albums to import!"
1321
- msgstr "Il n'y a pas d'album NextGen à importer."
1322
-
1323
- #: extensions/nextgen-importer/view-importer.php:220
1324
- msgid "Importing albums is also really simple:"
1325
- msgstr "Importer des albums est également très simple:"
1326
-
1327
- #: extensions/nextgen-importer/view-importer.php:222
1328
- msgid ""
1329
- "For all the albums you wish to import, make sure all the galleries have been "
1330
- "imported FIRST. If not, then go back to the Galleries tab."
1331
- msgstr ""
1332
- "Pour tous les albums que vous voulez importer, soyez sûr que toutes leurs "
1333
- "galeries ont déjà été importées. Sinon, retourner à l'onglet Galeries."
1334
-
1335
- #: extensions/nextgen-importer/view-importer.php:223
1336
- msgid ""
1337
- "Click the Import Album button for each album to import the album and link "
1338
- "all the galleries. If you do not see the button, then that means you first "
1339
- "need to import the galleries."
1340
- msgstr ""
1341
- "Cliquez le bouton importer l'album pour chaque album pour l'importer et lier "
1342
- "toutes les galeries. Si vous ne voyez pas le bouton, alors vous devez "
1343
- "d'abord importer les galeries."
1344
-
1345
- #: extensions/nextgen-importer/view-importer.php:224
1346
- msgid ""
1347
- "Once an album is imported, you can click on the link under the Album Name "
1348
- "column to edit the album."
1349
- msgstr ""
1350
- "Une fois un album importé, cliquez sur le lien sous la colonne nom de "
1351
- "l'album pour l'éditer."
1352
-
1353
- #: includes/WPThumb/wpthumb.crop-from-position.php:54
1354
- msgid "Crop Position"
1355
- msgstr "Position pour rogner"
1356
-
1357
- #: includes/WPThumb/wpthumb.php:765
1358
- msgid "WPThumb has detected a problem."
1359
- msgstr "WPThumb a détecté un problème."
1360
-
1361
- #: includes/WPThumb/wpthumb.php:765
1362
- #, php-format
1363
- msgid "The directory <code>%s</code> is not writable."
1364
- msgstr "Le dossier <code>%s</code> n'est pas accessible en écriture."
1365
-
1366
- #: includes/WPThumb/wpthumb.watermark.php:192
1367
- msgid "Watermark"
1368
- msgstr "Filigrane"
1369
-
1370
- #: includes/admin/class-admin.php:65 includes/admin/class-menu.php:34
1371
- #: includes/admin/class-settings.php:88 includes/admin/view-help.php:48
1372
- #: includes/admin/view-system-info.php:68
1373
- msgid "Extensions"
1374
- msgstr ""
1375
-
1376
- #: includes/admin/class-admin.php:67 includes/admin/class-menu.php:38
1377
- msgid "Help"
1378
- msgstr "Aide"
1379
-
1380
- #: includes/admin/class-attachment-fields.php:19 includes/functions.php:386
1381
- msgid "Default"
1382
- msgstr "Défaut"
1383
-
1384
- #: includes/admin/class-attachment-fields.php:20
1385
- msgid "New tab (_blank)"
1386
- msgstr "Nouvel onglet (_blank)"
1387
-
1388
- #: includes/admin/class-attachment-fields.php:21
1389
- msgid "Same tab (_self)"
1390
- msgstr "Même onglet (_self)"
1391
-
1392
- #: includes/admin/class-attachment-fields.php:22
1393
- msgid "FooBox"
1394
- msgstr ""
1395
-
1396
- #: includes/admin/class-attachment-fields.php:27
1397
- #, php-format
1398
- msgid "%s Custom URL"
1399
- msgstr "%s URL personnalisée"
1400
-
1401
- #: includes/admin/class-attachment-fields.php:29
1402
- msgid "Point your attachment to a custom URL"
1403
- msgstr "Lier votre attachement à une URL personnalisée"
1404
-
1405
- #: includes/admin/class-attachment-fields.php:34
1406
- #, php-format
1407
- msgid "%s Custom Target"
1408
- msgstr "%s cible personnalisée"
1409
-
1410
- #: includes/admin/class-attachment-fields.php:36
1411
- msgid "Set a custom target for your attachment"
1412
- msgstr "Ajouter une cible personnalisée pour votre image"
1413
-
1414
- #: includes/admin/class-columns.php:24
1415
- msgid "Media"
1416
- msgstr ""
1417
-
1418
- #: includes/admin/class-extensions.php:86
1419
- msgid "The extensions have been reloaded"
1420
- msgstr "Les extensions ont été rechargées"
1421
-
1422
- #: includes/admin/class-extensions.php:103
1423
- msgid "The extension could not be activated due to an error!"
1424
- msgstr "L'extension ne peut pas être activée à cause d'une erreur."
1425
-
1426
- #: includes/admin/class-extensions.php:109
1427
- msgid "Activation Error!"
1428
- msgstr "Erreur d'activation."
1429
-
1430
- #: includes/admin/class-gallery-editor.php:51
1431
- #, php-format
1432
- msgid "Add Gallery From %s"
1433
- msgstr "Ajouter une galerie depuis %s"
1434
-
1435
- #: includes/admin/class-gallery-editor.php:52
1436
- #, php-format
1437
- msgid "Add %s"
1438
- msgstr "Ajouter %s"
1439
-
1440
- #: includes/admin/class-gallery-editor.php:277
1441
- msgid "Choose A Gallery To Insert"
1442
- msgstr "Choisissez une galerie à insérer"
1443
-
1444
- #: includes/admin/class-gallery-editor.php:280
1445
- #: includes/admin/view-extensions.php:60
1446
- msgid "Reload"
1447
- msgstr "Recharger"
1448
-
1449
- #: includes/admin/class-gallery-editor.php:287
1450
- msgid "Loading galleries. Please wait..."
1451
- msgstr "Chargement des galeries. Veuillez patienter..."
1452
-
1453
- #: includes/admin/class-gallery-editor.php:292
1454
- msgid "Select A Gallery"
1455
- msgstr "Sélectionner une galerie"
1456
-
1457
- #: includes/admin/class-gallery-editor.php:294
1458
- msgid ""
1459
- "Select a gallery by clicking it, and then click the \"Insert Gallery\" "
1460
- "button to insert it into your content."
1461
- msgstr ""
1462
- "Sélectionner une galerie en cliquant dessus, puis cliquer sur \"Insérer la "
1463
- "galerie\" pour l'insérer dans votre contenu."
1464
-
1465
- #: includes/admin/class-gallery-editor.php:296
1466
- msgid "Add A Gallery"
1467
- msgstr "Ajouter une galerie"
1468
-
1469
- #: includes/admin/class-gallery-editor.php:298
1470
- msgid ""
1471
- "You can add a new gallery by clicking the \"Add New Gallery\" tile on the "
1472
- "left. It will open in a new window."
1473
- msgstr ""
1474
- "Vous pouvez ajouter une nouvelle galerie en cliquant sur \"Ajouter une "
1475
- "nouvelle galerie\" sur la gauche. Cela va ouvrir une nouvelle fenêtre."
1476
-
1477
- #: includes/admin/class-gallery-editor.php:301
1478
- msgid ""
1479
- "Once you have finished adding a gallery, come back to this dialog and click "
1480
- "the \"Reload\" button to see your newly created gallery."
1481
- msgstr ""
1482
- "Une fois l'ajout de la galerie terminé, revenez ici et cliquez sur le bouton "
1483
- "\"Recharger\" pour voir votre nouvelle galerie."
1484
-
1485
- #: includes/admin/class-gallery-editor.php:314
1486
- msgid "Cancel"
1487
- msgstr "Annuler"
1488
-
1489
- #: includes/admin/class-gallery-editor.php:318
1490
- msgid "Insert Gallery"
1491
- msgstr "Insérer la galerie"
1492
-
1493
- #: includes/admin/class-gallery-editor.php:374 includes/class-posttypes.php:29
1494
- msgid "Add New Gallery"
1495
- msgstr "Ajouter une nouvelle galerie"
1496
-
1497
- #: includes/admin/class-gallery-metabox-fields.php:157
1498
- msgid "Width"
1499
- msgstr "Largeur"
1500
-
1501
- #: includes/admin/class-gallery-metabox-fields.php:159
1502
- msgid "Height"
1503
- msgstr "Hauteur"
1504
-
1505
- #: includes/admin/class-gallery-metabox-fields.php:163
1506
- msgid "Crop thumbnail to exact dimensions"
1507
- msgstr "Rogner la vignette aux dimensions exactes"
1508
-
1509
- #: includes/admin/class-gallery-metabox-fields.php:196
1510
- msgid "You have no lightbox extensions activated!"
1511
- msgstr "Vous n'avez pas d'extensions de visionneuse activée."
1512
-
1513
- #: includes/admin/class-gallery-metabox-fields.php:205
1514
- msgid "Activate FooBox FREE right now!"
1515
- msgstr "Activer FooBox FREE maintenant"
1516
-
1517
- #: includes/admin/class-gallery-metabox-fields.php:213
1518
- msgid "Download and activate FooBox FREE"
1519
- msgstr "Télécharger et activer FooBox FREE"
1520
-
1521
- #: includes/admin/class-gallery-metabox-fields.php:214
1522
- #, php-format
1523
- msgid "%s which works flawlessly with %s."
1524
- msgstr "%s qui fonctionne parfaitement avec %s"
1525
-
1526
- #: includes/admin/class-gallery-metabox-fields.php:247
1527
- msgid "Full Size Image"
1528
- msgstr "Image taille réelle"
1529
-
1530
- #: includes/admin/class-gallery-metabox-fields.php:248
1531
- msgid "Image Attachment Page"
1532
- msgstr "Page attachée à l'image"
1533
-
1534
- #: includes/admin/class-gallery-metabox-fields.php:249
1535
- msgid "Custom URL"
1536
- msgstr "URL personnalisée"
1537
-
1538
- #: includes/admin/class-gallery-metabox-fields.php:250
1539
- msgid "Not linked"
1540
- msgstr "Non liée"
1541
-
1542
- #: includes/admin/class-gallery-metaboxes.php:63
1543
- msgid "Gallery Items"
1544
- msgstr "Eléments de galerie"
1545
-
1546
- #: includes/admin/class-gallery-metaboxes.php:81
1547
- msgid "Gallery Shortcode"
1548
- msgstr "Shortcode de galerie"
1549
-
1550
- #: includes/admin/class-gallery-metaboxes.php:90
1551
- msgid "Gallery Usage"
1552
- msgstr "Utilisation de galerie"
1553
-
1554
- #: includes/admin/class-gallery-metaboxes.php:109
1555
- msgid "Gallery Sorting"
1556
- msgstr "Tri des galeries"
1557
-
1558
- #: includes/admin/class-gallery-metaboxes.php:118
1559
- msgid "Thumbnail Cache"
1560
- msgstr "Mise en cache des vignettes"
1561
-
1562
- #: includes/admin/class-gallery-metaboxes.php:227
1563
- #: includes/admin/class-gallery-metaboxes.php:230
1564
- msgid "Add Media To Gallery"
1565
- msgstr "Ajouter un média à la galerie"
1566
-
1567
- #: includes/admin/class-gallery-metaboxes.php:228
1568
- #: includes/admin/class-gallery-metaboxes.php:232
1569
- msgid "Add Media"
1570
- msgstr "Ajouter un média"
1571
-
1572
- #: includes/admin/class-gallery-metaboxes.php:263
1573
- msgid "Edit Info"
1574
- msgstr "Editer les infos"
1575
-
1576
- #: includes/admin/class-gallery-metaboxes.php:266
1577
- msgid "Remove from gallery"
1578
- msgstr "Supprimer de la galerie"
1579
-
1580
- #: includes/admin/class-gallery-metaboxes.php:299
1581
- #: includes/admin/view-extensions-build-your-own.php:134
1582
- msgid "Gallery Template"
1583
- msgstr "Modèle de galerie"
1584
-
1585
- #: includes/admin/class-gallery-metaboxes.php:312
1586
- msgid ""
1587
- "The gallery template that will be used when the gallery is output to the "
1588
- "frontend."
1589
- msgstr ""
1590
- "Le modèle de galerie qui va être utilisé pour afficher la galerie sur la "
1591
- "partie publique du site."
1592
-
1593
- #: includes/admin/class-gallery-metaboxes.php:376
1594
- msgid "Paste the above shortcode into a post or page to show the gallery."
1595
- msgstr ""
1596
- "Copiez le shortcode ci-dessus dans un article ou une page pour publier la "
1597
- "galerie."
1598
-
1599
- #: includes/admin/class-gallery-metaboxes.php:404
1600
- msgid "This gallery is used on the following posts or pages:"
1601
- msgstr "Cette galerie est utilisée sur les articles ou pages suivantes:"
1602
-
1603
- #: includes/admin/class-gallery-metaboxes.php:410
1604
- msgid "Edit"
1605
- msgstr "Editer"
1606
-
1607
- #: includes/admin/class-gallery-metaboxes.php:411
1608
- msgid "View"
1609
- msgstr "Voir"
1610
-
1611
- #: includes/admin/class-gallery-metaboxes.php:416
1612
- msgid ""
1613
- "This gallery is not used on any pages or pages yet. Quickly create a page:"
1614
- msgstr "Cette galerie n'est pas utilisée. Créer rapidement une page:"
1615
-
1616
- #: includes/admin/class-gallery-metaboxes.php:419
1617
- msgid "Create Gallery Page"
1618
- msgstr "Créer une page de galerie"
1619
-
1620
- #: includes/admin/class-gallery-metaboxes.php:424
1621
- msgid ""
1622
- "A draft page will be created which includes the gallery shortcode in the "
1623
- "content. The title of the page will be the same title as the gallery."
1624
- msgstr ""
1625
- "Un brouillon de page va être créé et inclura le shortcode dans son contenu. "
1626
- "Le titre de la page sera le même que celui de la galerie."
1627
-
1628
- #: includes/admin/class-gallery-metaboxes.php:437
1629
- msgid ""
1630
- "Change the way images are sorted within your gallery. By default, they are "
1631
- "sorted in the order you see them."
1632
- msgstr ""
1633
- "Changez la façon dont les images sont triées dans vos galeries. Par défault, "
1634
- "elles sont triées dans l'ordre dans lequel vous les voyez."
1635
-
1636
- #: includes/admin/class-gallery-metaboxes.php:451
1637
- msgid ""
1638
- "Clear all the previously cached thumbnails that have been generated for this "
1639
- "gallery."
1640
- msgstr "Supprimer toutes les vignettes misent en cache pour cette galerie."
1641
-
1642
- #: includes/admin/class-gallery-metaboxes.php:454
1643
- msgid "Clear Thumbnail Cache"
1644
- msgstr "Vider le cache des vignettes"
1645
-
1646
- #: includes/admin/class-gallery-metaboxes.php:490
1647
- #, php-format
1648
- msgid "Add any custom CSS to target this specific gallery. For example %s"
1649
- msgstr ""
1650
- "Ajouter n'importe quel CSS personnalisé pour cette galerie. Par exemple %s"
1651
-
1652
- #: includes/admin/class-gallery-metaboxes.php:543
1653
- msgid "The thumbnail cache has been cleared!"
1654
- msgstr "Le cache des vignettes a été vidé."
1655
-
1656
- #: includes/admin/class-menu.php:29
1657
- #, php-format
1658
- msgid "%s Settings"
1659
- msgstr "%s Réglages"
1660
-
1661
- #: includes/admin/class-menu.php:33 includes/admin/view-extensions.php:45
1662
- #, php-format
1663
- msgid "%s Extensions"
1664
- msgstr ""
1665
-
1666
- #: includes/admin/class-menu.php:37
1667
- #, php-format
1668
- msgid "%s Help"
1669
- msgstr "%s Aide"
1670
-
1671
- #: includes/admin/class-menu.php:41 includes/admin/view-system-info.php:38
1672
- #, php-format
1673
- msgid "%s System Information"
1674
- msgstr "%s Informations système"
1675
-
1676
- #: includes/admin/class-menu.php:42 includes/admin/view-help.php:55
1677
- msgid "System Info"
1678
- msgstr "Informations système"
1679
-
1680
- #: includes/admin/class-menu.php:64
1681
- #, php-format
1682
- msgid "%s settings updated."
1683
- msgstr "%s réglages mis à jour."
1684
-
1685
- #: includes/admin/class-settings-image-optimization.php:24
1686
- msgid "please wait..."
1687
- msgstr "Veuillez patientez..."
1688
-
1689
- #: includes/admin/class-settings-image-optimization.php:28
1690
- msgid "Image Optimization"
1691
- msgstr "Optimisation des images"
1692
-
1693
- #: includes/admin/class-settings.php:21
1694
- msgid "General"
1695
- msgstr "Général"
1696
-
1697
- #: includes/admin/class-settings.php:31
1698
- msgid "Default Gallery Template"
1699
- msgstr "Modèle de galerie par défaut"
1700
-
1701
- #: includes/admin/class-settings.php:32
1702
- msgid "The default gallery template to use for new galleries"
1703
- msgstr "Le modèle de galerie utilisé par défaut pour les nouvelles galeries"
1704
-
1705
- #: includes/admin/class-settings.php:37 includes/admin/class-settings.php:48
1706
- #: includes/admin/class-settings.php:64
1707
- msgid "Gallery Defaults"
1708
- msgstr "Réglages par défaut des galeries"
1709
-
1710
- #: includes/admin/class-settings.php:42
1711
- msgid "Default Gallery Sorting"
1712
- msgstr "Tri par défaut des galeries"
1713
-
1714
- #: includes/admin/class-settings.php:43
1715
- msgid "The default attachment sorting to use for new galleries"
1716
- msgstr "Le tri par défaut des images à utiliser pour les nouvelles galeries"
1717
-
1718
- #: includes/admin/class-settings.php:59
1719
- msgid "Default Gallery Settings"
1720
- msgstr "Réglages par défaut des galeries"
1721
-
1722
- #: includes/admin/class-settings.php:60
1723
- msgid ""
1724
- "When creating a new gallery, it can use the settings from an existing "
1725
- "gallery as the default settings. This will save you time when creating many "
1726
- "galleries that all have the same look and feel."
1727
- msgstr ""
1728
- "Lors de la création d'une nouvelle galerie, elle peut utiliser les réglages "
1729
- "d'une galerie existante. Cela permet de créer rapidement plusieurs galeries "
1730
- "similaires."
1731
-
1732
- #: includes/admin/class-settings.php:69
1733
- msgid "Hide Gallery Template Help"
1734
- msgstr "Cacher l'aide des modèles de galerie"
1735
-
1736
- #: includes/admin/class-settings.php:70
1737
- msgid ""
1738
- "Some gallery templates show helpful tips, which are useful for new users. "
1739
- "You can choose to hide these tips."
1740
- msgstr ""
1741
- "Certains modèles de galerie affiche des conseils utiles pour les nouveaux "
1742
- "utilisateurs. Vous pouvez choisir de les cacher."
1743
-
1744
- #: includes/admin/class-settings.php:73 includes/admin/class-settings.php:82
1745
- msgid "Admin"
1746
- msgstr ""
1747
-
1748
- #: includes/admin/class-settings.php:78
1749
- msgid "Hide WYSIWYG Editor Button"
1750
- msgstr "Cacher le bouton de l'éditeur WYSIWYG"
1751
-
1752
- #: includes/admin/class-settings.php:79
1753
- #, php-format
1754
- msgid "If enabled, this will hide the \"Add %s\" button in the WYSIWYG editor."
1755
- msgstr "Si activé, le bouton \"Ajouter %s\" de l'éditeur WYSIWYG sera caché."
1756
-
1757
- #: includes/admin/class-settings.php:92
1758
- msgid "Use Beta Endpoint"
1759
- msgstr "Utiliser en mode Beta"
1760
-
1761
- #: includes/admin/class-settings.php:93
1762
- msgid ""
1763
- "The list of available extensions are pulled from an external URL. You can "
1764
- "also pull from a \"beta\" endpoint which will sometimes contain beta "
1765
- "extensions that are not publicly available."
1766
- msgstr ""
1767
- "La liste des extensions disponibles est tirée d'une URL externe. Vous pouvez "
1768
- "aussi utiliser une source \"Beta\" qui pourrait contenir des extensions beta "
1769
- "pas encore accessibles publiquement."
1770
-
1771
- #: includes/admin/class-settings.php:100
1772
- msgid "Images"
1773
- msgstr ""
1774
-
1775
- #: includes/admin/class-settings.php:104
1776
- msgid "Thumbnail JPEG Quality"
1777
- msgstr "Qualité des vignettes JPEG"
1778
-
1779
- #: includes/admin/class-settings.php:105
1780
- msgid "The image quality to be used when resizing JPEG images."
1781
- msgstr "La qualité d'image utilisée lors du redimensionnement des images JPEG."
1782
-
1783
- #: includes/admin/class-settings.php:113
1784
- msgid "Clear CSS Cache"
1785
- msgstr "Vider le cache CSS"
1786
-
1787
- #: includes/admin/class-settings.php:114
1788
- #, php-format
1789
- msgid ""
1790
- "%s optimizes the way it loads gallery stylesheets to improve page "
1791
- "performance. This can lead to the incorrect CSS being loaded in some cases. "
1792
- "Use this button to clear all the CSS optimizations that have been cached "
1793
- "across all galleries."
1794
- msgstr ""
1795
- "%s optimise la façon dont sont chargées les feuilles de style des galeries "
1796
- "pour améliorer la performance. Le mauvais fichier CSS peut être chargé dans "
1797
- "certains cas.Utilisez ce bouton pour vider le cache du CSS des galeries."
1798
-
1799
- #: includes/admin/class-settings.php:121
1800
- msgid "Resize Animated GIFs"
1801
- msgstr "Redimensionner les GIFs animés"
1802
-
1803
- #: includes/admin/class-settings.php:122
1804
- msgid ""
1805
- "Should animated gifs be resized or not. If enabled, only the first frame is "
1806
- "used in the resize."
1807
- msgstr ""
1808
- "Est-ce que les gifs doivent être redimensionnés. Si activé, seulement la "
1809
- "première image est utilisée pour le redimensionnement."
1810
-
1811
- #: includes/admin/class-settings.php:154
1812
- msgid "Language"
1813
- msgstr "Langage"
1814
-
1815
- #: includes/admin/class-settings.php:158
1816
- msgid "Image Count None Text"
1817
- msgstr "Texte du décompte pour aucune image"
1818
-
1819
- #: includes/admin/class-settings.php:160 includes/class-foogallery.php:302
1820
- #: includes/class-foogallery.php:310
1821
- msgid "No images"
1822
- msgstr "Aucune image"
1823
-
1824
- #: includes/admin/class-settings.php:166
1825
- msgid "Image Count Single Text"
1826
- msgstr "Texte du décompte pour une seule image"
1827
-
1828
- #: includes/admin/class-settings.php:168 includes/class-foogallery.php:303
1829
- #: includes/class-foogallery.php:313
1830
- msgid "1 image"
1831
- msgstr ""
1832
-
1833
- #: includes/admin/class-settings.php:174
1834
- msgid "Image Count Many Text"
1835
- msgstr "Texte du décompte pour plusieurs images"
1836
-
1837
- #: includes/admin/class-settings.php:176 includes/class-foogallery.php:304
1838
- #: includes/class-foogallery.php:316
1839
- #, php-format
1840
- msgid "%s images"
1841
- msgstr ""
1842
-
1843
- #: includes/admin/class-settings.php:193
1844
- msgid "Clear CSS Optimization Cache"
1845
- msgstr "Vider le cache CSS"
1846
-
1847
- #: includes/admin/class-settings.php:205
1848
- msgid "The CSS optimization cache was successfully cleared!"
1849
- msgstr "Le cache du CSS a été vidé."
1850
-
1851
- #: includes/admin/view-extensions-build-your-own.php:23
1852
- msgid "Please fill in all form fields!"
1853
- msgstr "Veuillez remplir tous les champs du formulaire."
1854
-
1855
- #: includes/admin/view-extensions-build-your-own.php:30
1856
- msgid "Cool Thing"
1857
- msgstr "Truc sympa"
1858
-
1859
- #: includes/admin/view-extensions-build-your-own.php:32
1860
- msgid "A cool description about what your cool thing can do"
1861
- msgstr "Une description sympa à propos de ce que peut faire votre truc sympa."
1862
-
1863
- #: includes/admin/view-extensions-build-your-own.php:95
1864
- msgid "Build Your Own FooGallery Extensions!"
1865
- msgstr "Créer vos propre extensions FooGallery!"
1866
-
1867
- #: includes/admin/view-extensions-build-your-own.php:97
1868
- msgid ""
1869
- "FooGallery was built with developers in mind. If you can build your own "
1870
- "WordPress plugin, then you will have no problem building your own FooGallery "
1871
- "extension."
1872
- msgstr ""
1873
- "FooGallery a été crée pour les développeurs. Si vous pouvez créer votre "
1874
- "propre plugin WordPress, alors vous n'aurez aucun problème à créer votre "
1875
- "propre extension FooGallery."
1876
-
1877
- #: includes/admin/view-extensions-build-your-own.php:99
1878
- msgid "Extension Ideas"
1879
- msgstr "Idées d'extension"
1880
-
1881
- #: includes/admin/view-extensions-build-your-own.php:101
1882
- msgid "Build your own unique Gallery Template."
1883
- msgstr "Créer votre propre modèle de galerie."
1884
-
1885
- #: includes/admin/view-extensions-build-your-own.php:102
1886
- msgid "Adding support for your favourite lightbox."
1887
- msgstr "Ajouter le support de votre visionneuse d'images favorite."
1888
-
1889
- #: includes/admin/view-extensions-build-your-own.php:103
1890
- msgid "Why not white-label FooGallery for your clients?"
1891
- msgstr ""
1892
- "Pourquoi ne pas ajouter une marque blanche à FooGallery pour vos clients ?"
1893
-
1894
- #: includes/admin/view-extensions-build-your-own.php:104
1895
- msgid "Add your own options to the settings page?"
1896
- msgstr "Ajouter vos propres options à la page des réglages ?"
1897
-
1898
- #: includes/admin/view-extensions-build-your-own.php:106
1899
- msgid ""
1900
- "There is no limit to the number of ways you can change or alter FooGallery!"
1901
- msgstr "Il n'y a pas de limite à la façon d'améliorer FooGallery!"
1902
-
1903
- #: includes/admin/view-extensions-build-your-own.php:108
1904
- msgid "Developer Tips"
1905
- msgstr "Conseil aux dévelopeurs"
1906
-
1907
- #: includes/admin/view-extensions-build-your-own.php:110
1908
- msgid "An extension is essentially a WordPress plugin."
1909
- msgstr "Une extension est essentiellement un plugin WordPress."
1910
-
1911
- #: includes/admin/view-extensions-build-your-own.php:111
1912
- msgid ""
1913
- "Extension functionality must be wrapped in a PHP class. (This class is "
1914
- "included when the extension is activated)"
1915
- msgstr ""
1916
- "La fonctionnalité de l'extension doit être englobée dans une classe PHP. "
1917
- "(Cette classe est incluse lors de l'activation de l'extension)"
1918
-
1919
- #: includes/admin/view-extensions-build-your-own.php:112
1920
- #, php-format
1921
- msgid ""
1922
- "There are several dozen actions and filters built in for you. (See all %s)"
1923
- msgstr ""
1924
- "Il y a plusieurs dizaines d'actions et de filtres créés pour vous. (Voir "
1925
- "tous les %s)"
1926
-
1927
- #: includes/admin/view-extensions-build-your-own.php:112
1928
- msgid "FooGallery actions and filters"
1929
- msgstr "filtres et actions FooGallery"
1930
-
1931
- #: includes/admin/view-extensions-build-your-own.php:113
1932
- #, php-format
1933
- msgid "Read our %s on how to build your own extension in 2\tminutes."
1934
- msgstr ""
1935
- "Lisez notre %s expliquant comment créer votre propre extension en 2\tminutes."
1936
-
1937
- #: includes/admin/view-extensions-build-your-own.php:113
1938
- msgid "step-by-step tutorial"
1939
- msgstr "tutoriel pas-à-pas"
1940
-
1941
- #: includes/admin/view-extensions-build-your-own.php:116
1942
- msgid "Submit Your Extension"
1943
- msgstr "Soumettre votre extension"
1944
-
1945
- #: includes/admin/view-extensions-build-your-own.php:118
1946
- msgid ""
1947
- "Have you built your own extension that you are proud of? Do you want to "
1948
- "share it with the community of FooGallery\tusers?"
1949
- msgstr ""
1950
- "Vous avez créé votre propre extension ? Vous voulez la partager avec la "
1951
- "communauté des utilisateurs de FooGallery ?"
1952
-
1953
- #: includes/admin/view-extensions-build-your-own.php:120
1954
- #, php-format
1955
- msgid "%s to get it listed in our extension store."
1956
- msgstr "%s pour l'ajouter à notre boutique d'extensions."
1957
-
1958
- #: includes/admin/view-extensions-build-your-own.php:120
1959
- msgid "Follow these simple instructions"
1960
- msgstr "Suivez ces instructions"
1961
-
1962
- #: includes/admin/view-extensions-build-your-own.php:122
1963
- msgid "Extension Boilerplates"
1964
- msgstr "Structure de base d'extension"
1965
-
1966
- #: includes/admin/view-extensions-build-your-own.php:124
1967
- msgid ""
1968
- "We really want to make it easy for you to get started and building your own "
1969
- "extensions. Generate an extension boilerplate in seconds using the provided "
1970
- "form."
1971
- msgstr ""
1972
- "Nous voulons vraiment rendre facile la création de vos extensions. Générez "
1973
- "une structure de base d'extension en un clic grâce au formulaire fourni."
1974
-
1975
- #: includes/admin/view-extensions-build-your-own.php:129
1976
- msgid "Extension Boilerplate Generator"
1977
- msgstr "Générateur d'extension"
1978
-
1979
- #: includes/admin/view-extensions-build-your-own.php:132
1980
- msgid "Type Of Extension"
1981
- msgstr "Type d'extension"
1982
-
1983
- #: includes/admin/view-extensions-build-your-own.php:139
1984
- msgid "Name"
1985
- msgstr "Nom"
1986
-
1987
- #: includes/admin/view-extensions-build-your-own.php:143
1988
- msgid "Description"
1989
- msgstr ""
1990
-
1991
- #: includes/admin/view-extensions-build-your-own.php:147
1992
- msgid "Author Name"
1993
- msgstr "Nom de l'auteur"
1994
-
1995
- #: includes/admin/view-extensions-build-your-own.php:151
1996
- msgid "Author URL"
1997
- msgstr "URL de l'auteur"
1998
-
1999
- #: includes/admin/view-extensions-build-your-own.php:155
2000
- msgid "Generate &amp; download .zip"
2001
- msgstr "Générer &amp; télécharger .zip"
2002
-
2003
- #: includes/admin/view-extensions-build-your-own.php:161
2004
- msgid ""
2005
- "Once you have downloaded the zip file, install and activate it like a normal "
2006
- "WordPress plugin so that it shows up in the list of extensions!"
2007
- msgstr ""
2008
- "Une fois le fichier zip téléchargé, installez et activez-le comme un plugin "
2009
- "WordPress standard afin qu'il s'affiche dans la liste des extensions."
2010
-
2011
- #: includes/admin/view-extensions-popup.php:5
2012
- msgid "Show previous extension"
2013
- msgstr "Afficher l'extension précédente"
2014
-
2015
- #: includes/admin/view-extensions-popup.php:6
2016
- msgid "Show next extension"
2017
- msgstr "Afficher l'extension suivante"
2018
-
2019
- #: includes/admin/view-extensions-popup.php:7
2020
- msgid "Close overlay"
2021
- msgstr "Fermer"
2022
-
2023
- #: includes/admin/view-extensions-popup.php:20
2024
- msgid "Current extension"
2025
- msgstr "Extension actuelle"
2026
-
2027
- #: includes/admin/view-extensions-popup.php:22
2028
- #, php-format
2029
- msgid "Version: %s"
2030
- msgstr ""
2031
-
2032
- #: includes/admin/view-extensions-popup.php:23
2033
- #, php-format
2034
- msgid "By %s"
2035
- msgstr "Par %s"
2036
-
2037
- #: includes/admin/view-extensions-popup.php:27
2038
- msgid "Update Available"
2039
- msgstr "Mise à jour disponible"
2040
-
2041
- #: includes/admin/view-extensions-popup.php:34
2042
- #, php-format
2043
- msgid "This is a child extension of %s."
2044
- msgstr "C'est une extension enfant de %s."
2045
-
2046
- #: includes/admin/view-extensions-popup.php:38
2047
- msgid "Tags:"
2048
- msgstr ""
2049
-
2050
- #: includes/admin/view-extensions-popup.php:45
2051
- msgid "Customize"
2052
- msgstr "Personnaliser"
2053
-
2054
- #: includes/admin/view-extensions-popup.php:50
2055
- #: includes/admin/view-extensions.php:133
2056
- msgid "Activate"
2057
- msgstr "Activer"
2058
-
2059
- #: includes/admin/view-extensions-popup.php:52
2060
- msgid "Live Preview"
2061
- msgstr "Aperçu"
2062
-
2063
- #: includes/admin/view-extensions-popup.php:57
2064
- msgid "Delete"
2065
- msgstr "Supprimer"
2066
-
2067
- #: includes/admin/view-extensions.php:15
2068
- #, php-format
2069
- msgid "Extensions make %s even more awesome, without bloating the core plugin."
2070
- msgstr ""
2071
- "Les extensions améliorent encore %s, sans surcharger le plugin de base."
2072
-
2073
- #: includes/admin/view-extensions.php:42
2074
- msgid ""
2075
- "There was a problem loading all the public extensions! Only the default "
2076
- "bundled extensions will be shown."
2077
- msgstr ""
2078
- "Un problème est survenu lors du chargement des extensions publiques. "
2079
- "Seulement les extensions par défaut seront affichées."
2080
-
2081
- #: includes/admin/view-extensions.php:57
2082
- msgid "search..."
2083
- msgstr "chercher..."
2084
-
2085
- #: includes/admin/view-extensions.php:131
2086
- msgid "Are you sure you want to download this extension?"
2087
- msgstr "Etes-vous sûrs de vouloir télécharger cette extension ?"
2088
-
2089
- #: includes/admin/view-extensions.php:131
2090
- msgid "Download"
2091
- msgstr "Télécharger"
2092
-
2093
- #: includes/admin/view-extensions.php:134
2094
- msgid "Deactivate"
2095
- msgstr "Désactiver"
2096
-
2097
- #: includes/admin/view-extensions.php:137
2098
- msgid "Activated"
2099
- msgstr "Activé"
2100
-
2101
- #: includes/admin/view-extensions.php:139
2102
- msgid "Coming Soon!"
2103
- msgstr "Prochainement!"
2104
-
2105
- #: includes/admin/view-help.php:4
2106
- #, php-format
2107
- msgid "Welcome to %s %s"
2108
- msgstr "Bienvenue dans %s %s"
2109
-
2110
- #: includes/admin/view-help.php:5
2111
- #, php-format
2112
- msgid ""
2113
- "Thank you for choosing %s, the most intuitive and extensible gallery "
2114
- "creation and management tool ever created for WordPress!"
2115
- msgstr ""
2116
- "merci d'avoir choisi %s, l'outil de création et de gestion de galeries le "
2117
- "plus intuitif et extensible créé pour WordPress!"
2118
-
2119
- #: includes/admin/view-help.php:6
2120
- msgid "Visit our homepage"
2121
- msgstr "Visitez notre page d'accueil"
2122
-
2123
- #: includes/admin/view-help.php:45
2124
- msgid "Getting Started"
2125
- msgstr "Commencer"
2126
-
2127
- #: includes/admin/view-help.php:51
2128
- msgid "Other Plugins"
2129
- msgstr "Autres plugins"
2130
-
2131
- #: includes/admin/view-help.php:66
2132
- msgid "Creating Your First Gallery"
2133
- msgstr "Créer votre première galerie"
2134
-
2135
- #: includes/admin/view-help.php:68
2136
- #, php-format
2137
- msgid "<a href=\"%s\">Galleries &rarr; Add New</a>"
2138
- msgstr "<a href=\"%s\">Galeries &rarr; Ajouter</a>"
2139
-
2140
- #: includes/admin/view-help.php:69
2141
- msgid ""
2142
- "To create your first gallery, simply click the Add New button or click the "
2143
- "Add Gallery menu link. Then choose images from the media library to include "
2144
- "in your gallery."
2145
- msgstr ""
2146
- "Pour créer votre première galerie, cliquez simplement sur le bouton Ajouter "
2147
- "ou choisissez le menu Ajouter galerie. Choisissez ensuite des images de la "
2148
- "bibliothèque de médias à inclure dans votre galerie."
2149
-
2150
- #: includes/admin/view-help.php:71 includes/admin/view-system-info.php:70
2151
- msgid "Gallery Templates"
2152
- msgstr "Modèles de galerie"
2153
-
2154
- #: includes/admin/view-help.php:72
2155
- msgid ""
2156
- "Choose one of our built-in gallery templates or download one via our "
2157
- "extension library."
2158
- msgstr ""
2159
- "Choisissez un de nos modèles de galerie inclus ou téléchargez-en un via "
2160
- "notre librairie d'extensions."
2161
-
2162
- #: includes/admin/view-help.php:74
2163
- msgid "Lightbox Support"
2164
- msgstr "Support de visionneuses"
2165
-
2166
- #: includes/admin/view-help.php:76
2167
- msgid ""
2168
- "FooGallery works out of the box with FooBox, our popular responsive image "
2169
- "lightbox."
2170
- msgstr ""
2171
- "FooGallery fonctionne de base avec FooBox, notre visionneuse d'image "
2172
- "adaptative."
2173
-
2174
- #: includes/admin/view-help.php:77
2175
- msgid "Purchase FooBox now!"
2176
- msgstr "Acquérir FooBox maintenant!"
2177
-
2178
- #: includes/admin/view-help.php:79
2179
- msgid "Video Support"
2180
- msgstr "Support vidéo"
2181
-
2182
- #: includes/admin/view-help.php:81
2183
- msgid ""
2184
- "FooGallery now supports the creation of video galleries with the FooVideo "
2185
- "premium extension!"
2186
- msgstr ""
2187
- "FooGallery supporte maintenant la création de galerie de vidéos avec "
2188
- "l'extension premium FooVideo."
2189
-
2190
- #: includes/admin/view-help.php:82
2191
- msgid "Purchase FooVideo now!"
2192
- msgstr "Acquérir FooVideo maintenant!"
2193
-
2194
- #: includes/admin/view-help.php:94
2195
- msgid "Show Off Your Gallery"
2196
- msgstr "Afficher vos galeries"
2197
-
2198
- #: includes/admin/view-help.php:96
2199
- #, php-format
2200
- msgid "The <em>[%s]</em> Short Code"
2201
- msgstr "Le <em>[%s]</em> Short Code"
2202
-
2203
- #: includes/admin/view-help.php:97
2204
- msgid ""
2205
- "Simply copy the shortcode code from the gallery listing page and paste it "
2206
- "into your posts or pages."
2207
- msgstr ""
2208
- "Copiez simplement le shortcode depuis la liste des galeries et copiez-le "
2209
- "dans vos articles ou vos pages."
2210
-
2211
- #: includes/admin/view-help.php:99
2212
- msgid "Visual Editor Button"
2213
- msgstr "Bouton de l'éditeur visuel"
2214
-
2215
- #: includes/admin/view-help.php:100
2216
- #, php-format
2217
- msgid ""
2218
- "Or to make life even easier, you can insert a gallery using the Add %s "
2219
- "button inside the WordPress visual editor."
2220
- msgstr ""
2221
- "Ou pour simplifier, vous pouvez insérer une galerie en utilisant le bouton "
2222
- "Add %s dans l'éditeur visuel WordPress."
2223
-
2224
- #: includes/admin/view-help.php:102
2225
- msgid "Copy To Clipboard"
2226
- msgstr "Copier dans le presse-papiers"
2227
-
2228
- #: includes/admin/view-help.php:103
2229
- msgid ""
2230
- "We make your life easy! Just click the shortcodes and they get copied to "
2231
- "your clipboard automatically. "
2232
- msgstr ""
2233
- "Nous vous simplifions la vie! Cliquez simplement sur un shortcode et il sera "
2234
- "automatiquement copié dans votre presse-papiers."
2235
-
2236
- #: includes/admin/view-help.php:117
2237
- msgid "Create Your Own Extensions"
2238
- msgstr "Créez vos propres extensions"
2239
-
2240
- #: includes/admin/view-help.php:119
2241
- msgid "Easy To Code"
2242
- msgstr "Simple à développer"
2243
-
2244
- #: includes/admin/view-help.php:120
2245
- #, php-format
2246
- msgid ""
2247
- "We have done all the hard work to make your life easier. Creating an "
2248
- "extension for %s can be done in a couple lines of code."
2249
- msgstr ""
2250
- "Nous avons fait tout le travail pour vous simplifier la vie. Créer une "
2251
- "extension pour %s peut être fait en quelques lignes de code."
2252
-
2253
- #: includes/admin/view-help.php:122
2254
- msgid "Actions and Filters"
2255
- msgstr "Filtres et actions"
2256
-
2257
- #: includes/admin/view-help.php:123
2258
- #, php-format
2259
- msgid ""
2260
- "We coded %s with extensibility in mind. There are hundreds of actions and "
2261
- "filters and helper functions to change every aspect of the plugin."
2262
- msgstr ""
2263
- "Nous avons développé %s avec l'extensibilité en tête. Il y a des centaines "
2264
- "de filtres, actions et fonctions d'assistance pour changer chaque aspect du "
2265
- "plugin."
2266
-
2267
- #: includes/admin/view-help.php:125
2268
- msgid "Host Anywhere"
2269
- msgstr "Héberger n'importe où"
2270
-
2271
- #: includes/admin/view-help.php:126
2272
- msgid ""
2273
- "Host your extensions on the WordPress.org plugin repo, or GitHub, or even in "
2274
- "your own Amazon S3 bucket. You have the power and choice!"
2275
- msgstr ""
2276
- "Héberger vos extensions sur le dépôt des plugins WordPress.org, ou GitHub, "
2277
- "ou encore sur votre propre Amazon S3 bucket. Vous choisissez !"
2278
-
2279
- #: includes/admin/view-system-info.php:39
2280
- #, php-format
2281
- msgid ""
2282
- "Below is some information about your server configuration. You can use this "
2283
- "info to help debug issues you may have with %s."
2284
- msgstr ""
2285
- "Ci-dessous se trouvent quelques informations sur votre configuration "
2286
- "serveur. Vous pouvez utiliser ces infos pour déboguer %s."
2287
-
2288
- #: includes/admin/view-system-info.php:60
2289
- msgid "FooGallery version"
2290
- msgstr "Version de FooGallery"
2291
-
2292
- #: includes/admin/view-system-info.php:61
2293
- msgid "WordPress version"
2294
- msgstr "Version de WordPress"
2295
-
2296
- #: includes/admin/view-system-info.php:62
2297
- msgid "Activated Theme"
2298
- msgstr "Thème activé"
2299
-
2300
- #: includes/admin/view-system-info.php:63
2301
- msgid "WordPress URL"
2302
- msgstr "URL Wordpress"
2303
-
2304
- #: includes/admin/view-system-info.php:64
2305
- msgid "PHP version"
2306
- msgstr "Version PHP"
2307
-
2308
- #: includes/admin/view-system-info.php:65
2309
- msgid "PHP GD Loaded"
2310
- msgstr "PHP GD chargé"
2311
-
2312
- #: includes/admin/view-system-info.php:65
2313
- msgid "Not found!"
2314
- msgstr "Non trouvé!"
2315
-
2316
- #: includes/admin/view-system-info.php:66
2317
- msgid "Extensions Endpoint"
2318
- msgstr "Source des extensions"
2319
-
2320
- #: includes/admin/view-system-info.php:67
2321
- msgid "Extensions Errors"
2322
- msgstr "Erreurs des extensions"
2323
-
2324
- #: includes/admin/view-system-info.php:67
2325
- msgid "Nope, all good"
2326
- msgstr "Non, tout est ok"
2327
-
2328
- #: includes/admin/view-system-info.php:69
2329
- msgid "Extensions Active"
2330
- msgstr "Extensions actives"
2331
-
2332
- #: includes/admin/view-system-info.php:71
2333
- msgid "Lightboxes"
2334
- msgstr "Visionneuses d'images"
2335
-
2336
- #: includes/admin/view-system-info.php:72
2337
- msgid "Active Plugins"
2338
- msgstr "Plugins activés"
2339
-
2340
- #: includes/class-extensions-api.php:235
2341
- msgid "new"
2342
- msgstr "nouveau"
2343
-
2344
- #: includes/class-extensions-api.php:320
2345
- msgid "All"
2346
- msgstr "Tout"
2347
-
2348
- #: includes/class-extensions-api.php:323
2349
- msgid "Active"
2350
- msgstr "Activé"
2351
-
2352
- #: includes/class-extensions-api.php:342
2353
- msgid "Build Your Own"
2354
- msgstr "Créer le vôtre"
2355
-
2356
- #: includes/class-extensions-api.php:477
2357
- #, php-format
2358
- msgid "The extension %s could NOT be deactivated!"
2359
- msgstr "L'extension %s ne peut pas être désactivée!"
2360
-
2361
- #: includes/class-extensions-api.php:502
2362
- #, php-format
2363
- msgid "The extension %s was successfully deactivated"
2364
- msgstr "L'extension %s a été correctement désactivée."
2365
-
2366
- #: includes/class-extensions-api.php:507 includes/class-extensions-api.php:572
2367
- #: includes/class-extensions-api.php:665
2368
- #, php-format
2369
- msgid "Unknown extension : %s"
2370
- msgstr "Extension inconnue : %s"
2371
-
2372
- #: includes/class-extensions-api.php:537
2373
- #, php-format
2374
- msgid "Requires %s version %s"
2375
- msgstr "Requiert %s version %s"
2376
-
2377
- #: includes/class-extensions-api.php:539
2378
- #, php-format
2379
- msgid ""
2380
- "The extension %s could not be activated, because you are using an outdated "
2381
- "version! Please update %s to at least version %s."
2382
- msgstr ""
2383
- "L'extension %s ne peut pas être activée, car vous utilisez une ancienne "
2384
- "version! Veuillez mettre à jour %s vers au moins la version %s."
2385
-
2386
- #: includes/class-extensions-api.php:549
2387
- #, php-format
2388
- msgid "The extension %s could NOT be activated!"
2389
- msgstr "L'extension %s ne peut pas être activée!"
2390
-
2391
- #: includes/class-extensions-api.php:567
2392
- #, php-format
2393
- msgid "The extension %s was successfully activated"
2394
- msgstr "L'extension %s a été correctement activée"
2395
-
2396
- #: includes/class-extensions-api.php:619
2397
- #, php-format
2398
- msgid ""
2399
- "Unable to connect to the WordPress.org plugin API to download %s. Full error "
2400
- "log: %s"
2401
- msgstr ""
2402
- "Impossible de se connecter au dépôt de plugins WordPress.org pour "
2403
- "télécharger %s. Journal d'erreur complet: %s"
2404
-
2405
- #: includes/class-extensions-api.php:633
2406
- #, php-format
2407
- msgid "The extension %s has no download link!"
2408
- msgstr "L'extension %s n'a pas de lien de téléchargement!"
2409
-
2410
- #: includes/class-extensions-api.php:648
2411
- #, php-format
2412
- msgid "The extension %s could NOT be downloaded!"
2413
- msgstr "L'extension %s ne peut pas être téléchargée!"
2414
-
2415
- #: includes/class-extensions-api.php:655
2416
- #, php-format
2417
- msgid ""
2418
- "The extension %s was successfully downloaded and can now be activated. %s"
2419
- msgstr ""
2420
- "L'extension %s a été correctement téléchargée et peut maintenant être "
2421
- "activée. %s"
2422
-
2423
- #: includes/class-extensions-api.php:659
2424
- msgid "Activate immediately"
2425
- msgstr "Activer maintenant"
2426
-
2427
- #: includes/class-extensions-api.php:715
2428
- msgid "Error loading extension!"
2429
- msgstr "Erreur lors du chargement de l'extension!"
2430
-
2431
- #: includes/class-polylang-compatibility.php:95
2432
- msgid "FooGallery + Polylang Alert : "
2433
- msgstr "Alerte FooGallery + PolyLang : "
2434
-
2435
- #: includes/class-polylang-compatibility.php:96
2436
- msgid ""
2437
- "We noticed that you have Polylang installed and you have chosen to activate "
2438
- "languages and translations for media."
2439
- msgstr ""
2440
- "Nous avons remarqué que vous avez installé PolyLang et que vous avez choisi "
2441
- "d'activer langages et traductions pour les médias."
2442
-
2443
- #: includes/class-polylang-compatibility.php:97
2444
- msgid ""
2445
- "This may cause empty galleries on translated pages! To disable this feature, "
2446
- "please visit Settings -> Languages -> Settings Tab."
2447
- msgstr ""
2448
- "Cela pourrait causer des galeries vides sur les pages traduites. Pour "
2449
- "désactiver cette fonctionnalité, visitez Réglages -> Langages -> Onglet "
2450
- "réglages."
2451
-
2452
- #: includes/class-posttypes.php:27
2453
- msgid "Gallery"
2454
- msgstr "Galerie"
2455
-
2456
- #: includes/class-posttypes.php:28
2457
- msgid "Add Gallery"
2458
- msgstr "Ajouter une galerie"
2459
-
2460
- #: includes/class-posttypes.php:30
2461
- msgid "Edit Gallery"
2462
- msgstr "Editer la galerie"
2463
-
2464
- #: includes/class-posttypes.php:31
2465
- msgid "New Gallery"
2466
- msgstr "Nouvelle galerie"
2467
-
2468
- #: includes/class-posttypes.php:32
2469
- msgid "View Gallery"
2470
- msgstr "Voir la galerie"
2471
-
2472
- #: includes/class-posttypes.php:33
2473
- msgid "Search Galleries"
2474
- msgstr "Chercher dans les galeries"
2475
-
2476
- #: includes/class-posttypes.php:34
2477
- msgid "No Galleries found"
2478
- msgstr "Aucune galerie trouvée"
2479
-
2480
- #: includes/class-posttypes.php:35
2481
- msgid "No Galleries found in Trash"
2482
- msgstr "Aucune galerie trouvée dans la corbeille"
2483
-
2484
- #: includes/class-posttypes.php:69 includes/class-posttypes.php:72
2485
- msgid "Gallery updated."
2486
- msgstr "Galerie mise à jour."
2487
-
2488
- #: includes/class-posttypes.php:70
2489
- msgid "Gallery custom field updated."
2490
- msgstr "Champ personnalisé de galerie mis à jour."
2491
-
2492
- #: includes/class-posttypes.php:71
2493
- msgid "Gallery custom field deleted."
2494
- msgstr "Champ personnalisé de galerie supprimé."
2495
-
2496
- #: includes/class-posttypes.php:73
2497
- #, php-format
2498
- msgid "Gallery restored to revision from %s."
2499
- msgstr "Galerie restauré vers la révision depuis %s."
2500
-
2501
- #: includes/class-posttypes.php:74
2502
- msgid "Gallery published."
2503
- msgstr "Galerie publiée."
2504
-
2505
- #: includes/class-posttypes.php:75
2506
- msgid "Gallery saved."
2507
- msgstr "Galerie enregistrée."
2508
-
2509
- #: includes/class-posttypes.php:76
2510
- msgid "Gallery submitted."
2511
- msgstr "Galerie soumise."
2512
-
2513
- #: includes/class-posttypes.php:77
2514
- #, php-format
2515
- msgid "Gallery scheduled for: <strong>%1$s</strong>."
2516
- msgstr "Galerie planifiée pour: <strong>%1$s</strong>."
2517
-
2518
- #: includes/class-posttypes.php:78
2519
- msgid "Gallery draft updated."
2520
- msgstr "Brouillon de galerie mise à jour."
2521
-
2522
- #: includes/class-posttypes.php:98
2523
- #, php-format
2524
- msgid "%s Gallery updated."
2525
- msgid_plural "%s Galleries updated."
2526
- msgstr[0] "%s galerie mise à jour."
2527
- msgstr[1] "%s galeries mises à jour."
2528
-
2529
- #: includes/class-posttypes.php:99
2530
- #, php-format
2531
- msgid "%s Gallery not updated, somebody is editing it."
2532
- msgid_plural "%s Galleries not updated, somebody is editing them."
2533
- msgstr[0] "%s galerie non mise à jour, quelqu'un est en train de l'éditer."
2534
- msgstr[1] "%s galeries non mises à jour, quelqu'un est en train de les éditer."
2535
-
2536
- #: includes/class-posttypes.php:100
2537
- #, php-format
2538
- msgid "%s Gallery permanently deleted."
2539
- msgid_plural "%s Galleries permanently deleted."
2540
- msgstr[0] "%s galerie supprimée définitivement."
2541
- msgstr[1] "%s galeries supprimées définitivement."
2542
-
2543
- #: includes/class-posttypes.php:101
2544
- #, php-format
2545
- msgid "%s Gallery moved to the Trash."
2546
- msgid_plural "%s Galleries moved to the Trash."
2547
- msgstr[0] "%s galerie déplacée dans la corbeille."
2548
- msgstr[1] "%s galeries déplacées dans la corbeille."
2549
-
2550
- #: includes/class-posttypes.php:102
2551
- #, php-format
2552
- msgid "%s Gallery restored from the Trash."
2553
- msgid_plural "%s Galleries restored from the Trash."
2554
- msgstr[0] "%s galerie restaurée depuis la corbeille."
2555
- msgstr[1] "%s galeries restaurées depuis la corbeille."
2556
-
2557
- #: includes/foopluginbase/classes/class-foo-plugin-base.php:310
2558
- msgid " Settings"
2559
- msgstr " Réglages"
2560
-
2561
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:329
2562
- msgid "Select An Image"
2563
- msgstr "Sélectionner une image"
2564
-
2565
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:329
2566
- msgid "Select Image"
2567
- msgstr "Sélectionner l'image"
2568
-
2569
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:361
2570
- msgid "Settings restored to default values"
2571
- msgstr "Réglages restaurés aux valeurs par défaut"
2572
-
2573
- #: includes/foopluginbase/views/settings.php:91 views/settings.php:79
2574
- msgid "Save Changes"
2575
- msgstr "Changements enregistrés"
2576
-
2577
- #: includes/foopluginbase/views/settings.php:93 views/settings.php:80
2578
- msgid ""
2579
- "Are you sure you want to restore all settings back to their default values?"
2580
- msgstr ""
2581
- "Etes-vous sûrs de vouloir restaurer tous les réglages à leurs valeurs par "
2582
- "défaut ?"
2583
-
2584
- #: includes/foopluginbase/views/settings.php:95 views/settings.php:80
2585
- msgid "Restore Defaults"
2586
- msgstr "Restaurer aux valeurs par défaut"
2587
-
2588
- #: includes/functions.php:387
2589
- msgid "Date created - newest first"
2590
- msgstr "Date de création - Plus récents d'abord"
2591
-
2592
- #: includes/functions.php:388
2593
- msgid "Date created - oldest first"
2594
- msgstr "Date de création - Plus anciens d'abord"
2595
-
2596
- #: includes/functions.php:389
2597
- msgid "Date modified - most recent first"
2598
- msgstr "Date de modification - Plus récents d'abord"
2599
-
2600
- #: includes/functions.php:390
2601
- msgid "Date modified - most recent last"
2602
- msgstr "Date de modification - Plus anciens d'abord"
2603
-
2604
- #: includes/functions.php:391
2605
- msgid "Title - alphabetically"
2606
- msgstr "Titre - alphabétique"
2607
-
2608
- #: includes/functions.php:392
2609
- msgid "Title - reverse"
2610
- msgstr "Titre - inversé"
2611
-
2612
- #: includes/functions.php:393
2613
- msgid "Random"
2614
- msgstr "Aléatoire"
2615
-
2616
- #: includes/public/class-admin-bar.php:34
2617
- msgid "Edit Galleries"
2618
- msgstr "Editer les galeries"
2619
-
2620
- #: includes/public/class-foogallery-template-loader.php:34
2621
- msgid "The gallery was not found!"
2622
- msgstr "La galerie est introuvable."
2623
-
2624
- #: includes/public/class-foogallery-template-loader.php:93
2625
- msgid "No gallery template found!"
2626
- msgstr "Aucun modèle de galerie trouvé."
2627
-
2628
- #. Plugin Name of the plugin/theme
2629
- msgid "FooGallery"
2630
- msgstr ""
2631
-
2632
- #. Plugin URI of the plugin/theme
2633
- msgid "https://foo.gallery"
2634
- msgstr ""
2635
-
2636
- #. Description of the plugin/theme
2637
- msgid ""
2638
- "FooGallery is the most intuitive and extensible gallery management tool "
2639
- "ever created for WordPress"
2640
- msgstr ""
2641
- "FooGallery est l'outil de création et de gestion de galeries le plus "
2642
- "intuitif et extensible créé pour WordPress"
2643
-
2644
- #. Author of the plugin/theme
2645
- msgid "FooPlugins"
2646
- msgstr ""
2647
-
2648
- #. Author URI of the plugin/theme
2649
- msgid "http://fooplugins.com"
2650
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/foogallery.mo CHANGED
Binary file
languages/foogallery.pot CHANGED
@@ -1,17 +1,18 @@
1
- #, fuzzy
2
  msgid ""
3
  msgstr ""
4
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: FooGallery\n"
6
- "POT-Creation-Date: 2015-11-16 20:01+0200\n"
7
- "PO-Revision-Date: 2015-11-16 20:01+0200\n"
8
  "Last-Translator: Brad Vincent <brad@fooplugins.com>\n"
9
  "Language-Team: Brad Vincent <brad@fooplugins.com>\n"
 
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.6\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-WPHeader: foogallery.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -21,92 +22,198 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
  #: extensions/albums/admin/class-columns.php:19
24
- #: includes/admin/class-columns.php:23
25
  msgid "Template"
26
  msgstr ""
27
 
28
  #: extensions/albums/admin/class-columns.php:20
29
- #: extensions/nextgen-importer/view-importer.php:188
30
  #: includes/class-posttypes.php:26 includes/class-posttypes.php:37
31
  msgid "Galleries"
32
  msgstr ""
33
 
34
  #: extensions/albums/admin/class-columns.php:21
35
- #: includes/admin/class-columns.php:25
36
  msgid "Shortcode"
37
  msgstr ""
38
 
39
  #: extensions/albums/admin/class-columns.php:62
40
- #: extensions/albums/admin/class-metaboxes.php:216
41
- #: includes/admin/class-columns.php:76
42
- #: includes/admin/class-gallery-metaboxes.php:389
43
  msgid "Shortcode copied to clipboard :)"
44
  msgstr ""
45
 
46
- #: extensions/albums/admin/class-metaboxes.php:48
47
- msgid "Galleries - drag n drop to reorder!"
48
  msgstr ""
49
 
50
- #: extensions/albums/admin/class-metaboxes.php:57
51
- #: includes/admin/class-admin.php:63 includes/admin/class-menu.php:30
52
- #: includes/foopluginbase/classes/class-foo-plugin-base.php:296
 
53
  msgid "Settings"
54
  msgstr ""
55
 
56
- #: extensions/albums/admin/class-metaboxes.php:66
57
- #: includes/admin/class-gallery-metaboxes.php:100
 
58
  msgid "Custom CSS"
59
  msgstr ""
60
 
61
- #: extensions/albums/admin/class-metaboxes.php:75
62
  msgid "Album Shortcode"
63
  msgstr ""
64
 
65
- #: extensions/albums/admin/class-metaboxes.php:84
66
  msgid "Album Sorting"
67
  msgstr ""
68
 
69
- #: extensions/albums/admin/class-metaboxes.php:177
70
- #: extensions/albums/album-default.php:63
71
- #: includes/admin/class-gallery-editor.php:358
72
- #, php-format
73
- msgid "%s #%s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  msgstr ""
75
 
76
- #: extensions/albums/admin/class-metaboxes.php:203
77
  msgid "Paste the above shortcode into a post or page to show the album."
78
  msgstr ""
79
 
80
- #: extensions/albums/admin/class-metaboxes.php:230
81
  msgid ""
82
  "Change the way galleries are sorted within your album. By default, they are "
83
  "sorted in the order you see them."
84
  msgstr ""
85
 
86
- #: extensions/albums/admin/class-metaboxes.php:257
87
  msgid "Album Template"
88
  msgstr ""
89
 
90
- #: extensions/albums/admin/class-metaboxes.php:269
91
  msgid ""
92
  "The album template that will be used when the album is output to the "
93
  "frontend."
94
  msgstr ""
95
 
96
- #: extensions/albums/admin/class-metaboxes.php:325
97
  #, php-format
98
  msgid "Add any custom CSS to target this specific album. For example %s"
99
  msgstr ""
100
 
101
- #: extensions/albums/album-default.php:23
102
- #: extensions/albums/class-albums-extension.php:77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  msgid "&laquo; back to album"
104
  msgstr ""
105
 
106
- #: extensions/albums/class-albums-extension.php:75
 
 
 
 
 
 
 
107
  msgid "Back To Album Text"
108
  msgstr ""
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  #: extensions/albums/class-foogallery-album.php:205
111
  msgid "No galleries"
112
  msgstr ""
@@ -120,13 +227,6 @@ msgstr ""
120
  msgid "%s galleries"
121
  msgstr ""
122
 
123
- #: extensions/albums/class-posttypes.php:26
124
- #: extensions/albums/class-posttypes.php:36
125
- #: extensions/albums/class-posttypes.php:37
126
- #: extensions/nextgen-importer/view-importer.php:189
127
- msgid "Albums"
128
- msgstr ""
129
-
130
  #: extensions/albums/class-posttypes.php:27
131
  msgid "Album"
132
  msgstr ""
@@ -245,8 +345,11 @@ msgstr[1] ""
245
  msgid "Responsive Album Layout"
246
  msgstr ""
247
 
248
- #: extensions/albums/functions.php:35 extensions/albums/functions.php:154
249
- #: extensions/default-templates/class-default-templates-extension.php:224
 
 
 
250
  msgid "Thumbnail Size"
251
  msgstr ""
252
 
@@ -256,18 +359,9 @@ msgstr ""
256
 
257
  #: extensions/albums/functions.php:37 extensions/albums/functions.php:49
258
  #: extensions/albums/functions.php:57 extensions/albums/functions.php:65
259
- #: extensions/albums/functions.php:156 extensions/albums/functions.php:168
260
- #: extensions/albums/functions.php:181 extensions/albums/functions.php:190
261
- #: extensions/albums/functions.php:199
262
- #: extensions/default-templates/class-default-templates-extension.php:36
263
- #: extensions/default-templates/class-default-templates-extension.php:47
264
- #: extensions/default-templates/class-default-templates-extension.php:57
265
- #: extensions/default-templates/class-default-templates-extension.php:73
266
- #: extensions/default-templates/class-default-templates-extension.php:89
267
- #: extensions/default-templates/class-default-templates-extension.php:105
268
- #: extensions/default-templates/class-default-templates-extension.php:362
269
- #: extensions/default-templates/class-default-templates-extension.php:374
270
- #: extensions/default-templates/class-default-templates-extension.php:386
271
  msgid "Thumbnail Settings"
272
  msgstr ""
273
 
@@ -288,7 +382,11 @@ msgid "The color of the title text that overlays the album thumbnails"
288
  msgstr ""
289
 
290
  #: extensions/albums/functions.php:63
291
- #: extensions/default-templates/class-default-templates-extension.php:132
 
 
 
 
292
  msgid "Alignment"
293
  msgstr ""
294
 
@@ -297,181 +395,165 @@ msgid "The horizontal alignment of the gallery thumbnails inside the album."
297
  msgstr ""
298
 
299
  #: extensions/albums/functions.php:69
300
- #: extensions/default-templates/class-default-templates-extension.php:138
 
 
 
 
 
301
  msgid "Left"
302
  msgstr ""
303
 
304
  #: extensions/albums/functions.php:70
305
- #: extensions/default-templates/class-default-templates-extension.php:139
 
 
 
 
 
306
  msgid "Center"
307
  msgstr ""
308
 
309
  #: extensions/albums/functions.php:71
310
- #: extensions/default-templates/class-default-templates-extension.php:140
 
 
 
 
 
311
  msgid "Right"
312
  msgstr ""
313
 
314
  #: extensions/albums/functions.php:76
315
- msgid "\"Back To Album\" Text"
316
- msgstr ""
317
-
318
- #: extensions/albums/functions.php:77
319
- msgid "The text that is shown at the top of the album when a gallery is shown"
320
  msgstr ""
321
 
322
- #: extensions/albums/functions.php:78 extensions/albums/functions.php:86
323
- #: extensions/albums/functions.php:94 extensions/albums/functions.php:102
324
- msgid "Language Settings"
325
- msgstr ""
326
-
327
- #: extensions/albums/functions.php:84
328
- msgid "\"No Images\" Text"
329
  msgstr ""
330
 
331
  #: extensions/albums/functions.php:85
332
  msgid ""
333
- "The text that is shown on the gallery caption when there are no images in "
334
- "the gallery."
335
- msgstr ""
336
-
337
- #: extensions/albums/functions.php:92
338
- msgid "\"1 Image\" Text"
339
- msgstr ""
340
-
341
- #: extensions/albums/functions.php:93
342
- msgid ""
343
- "The text that is shown on the gallery caption when there is a single image "
344
- "in the gallery."
345
- msgstr ""
346
-
347
- #: extensions/albums/functions.php:100
348
- msgid "\"X images\" Text"
349
- msgstr ""
350
-
351
- #: extensions/albums/functions.php:101
352
- msgid ""
353
- "The text that is shown on the gallery caption when there are many images in "
354
- "the gallery. \"s%\" will be replaced with the actual count."
355
  msgstr ""
356
 
357
- #: extensions/albums/functions.php:108
358
  msgid "Gallery Link Format"
359
  msgstr ""
360
 
361
- #: extensions/albums/functions.php:109
362
  msgid "The format of the URL for each individual gallery in the album."
363
  msgstr ""
364
 
365
- #: extensions/albums/functions.php:110 extensions/albums/functions.php:121
366
- #: extensions/albums/functions.php:130
367
- msgid "URL Settings"
368
- msgstr ""
369
-
370
- #: extensions/albums/functions.php:113
371
  msgid "Pretty, e.g. "
372
  msgstr ""
373
 
374
- #: extensions/albums/functions.php:114
375
  msgid "Querystring e.g. "
376
  msgstr ""
377
 
378
- #: extensions/albums/functions.php:120
379
  msgid "Please Note"
380
  msgstr ""
381
 
382
- #: extensions/albums/functions.php:124
383
  msgid ""
384
  "If you are getting 404's when clicking on the album galleries, then change "
385
  "to the querystring format. To force your rewrite rules to flush, simply "
386
  "deactivate and activate the albums extension again."
387
  msgstr ""
388
 
389
- #: extensions/albums/functions.php:128 extensions/albums/functions.php:134
390
  msgid "Remember Scroll Position"
391
  msgstr ""
392
 
393
- #: extensions/albums/functions.php:129
394
  msgid ""
395
  "When a gallery is loaded in your album, the page is refreshed which means "
396
  "the scroll position will be lost ."
397
  msgstr ""
398
 
399
- #: extensions/albums/functions.php:133
400
  msgid "Don't Remember"
401
  msgstr ""
402
 
403
- #: extensions/albums/functions.php:143
404
  msgid "All-In-One Stack Album"
405
  msgstr ""
406
 
407
- #: extensions/albums/functions.php:147
408
- #: extensions/default-templates/class-default-templates-extension.php:110
409
- #: extensions/default-templates/class-default-templates-extension.php:204
410
- #: extensions/default-templates/class-default-templates-extension.php:243
411
- #: extensions/default-templates/class-default-templates-extension.php:339
412
- #: extensions/default-templates/class-default-templates-extension.php:441
 
413
  #: includes/admin/view-extensions-build-your-own.php:135
 
414
  msgid "Lightbox"
415
  msgstr ""
416
 
417
- #: extensions/albums/functions.php:148
418
  msgid "Choose which lightbox you want to use to display images."
419
  msgstr ""
420
 
421
- #: extensions/albums/functions.php:155
422
  msgid "Choose the size of your image stack thumbnails."
423
  msgstr ""
424
 
425
- #: extensions/albums/functions.php:167
426
  msgid "Thumbnail Rotation"
427
  msgstr ""
428
 
429
- #: extensions/albums/functions.php:169
430
  msgid ""
431
  "Choose how thumbnails in each gallery are shown when clicking an image stack."
432
  msgstr ""
433
 
434
- #: extensions/albums/functions.php:173 extensions/albums/functions.php:205
435
  msgid "Normal"
436
  msgstr ""
437
 
438
- #: extensions/albums/functions.php:174
439
  msgid "Random Angles"
440
  msgstr ""
441
 
442
- #: extensions/albums/functions.php:180
443
  msgid "Thumbnail Gutter"
444
  msgstr ""
445
 
446
- #: extensions/albums/functions.php:182
447
  msgid "The spacing between each image stack."
448
  msgstr ""
449
 
450
- #: extensions/albums/functions.php:189
451
  msgid "Expand Delay"
452
  msgstr ""
453
 
454
- #: extensions/albums/functions.php:191
455
  msgid "The delay between expanding each image on a image stack."
456
  msgstr ""
457
 
458
- #: extensions/albums/functions.php:198
459
  msgid "Image Stack Angles"
460
  msgstr ""
461
 
462
- #: extensions/albums/functions.php:200
463
  msgid "The angle of the images behind the thumbnail in each image stack."
464
  msgstr ""
465
 
466
- #: extensions/albums/functions.php:204
467
  msgid "Low"
468
  msgstr ""
469
 
470
- #: extensions/albums/functions.php:206
471
  msgid "More Than Normal"
472
  msgstr ""
473
 
474
- #: extensions/albums/functions.php:207
475
  msgid "High"
476
  msgstr ""
477
 
@@ -483,580 +565,610 @@ msgstr ""
483
  msgid "No album template found!"
484
  msgstr ""
485
 
486
- #: extensions/default-templates/class-default-templates-extension.php:28
487
  msgid "Responsive Image Gallery"
488
  msgstr ""
489
 
490
- #: extensions/default-templates/class-default-templates-extension.php:34
491
- #: extensions/default-templates/class-default-templates-extension.php:360
492
- msgid "Size"
 
493
  msgstr ""
494
 
495
- #: extensions/default-templates/class-default-templates-extension.php:35
496
- #: extensions/default-templates/class-default-templates-extension.php:225
497
- msgid "Choose the size of your thumbnails."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgstr ""
499
 
500
- #: extensions/default-templates/class-default-templates-extension.php:46
501
- msgid "Link"
502
  msgstr ""
503
 
504
- #: extensions/default-templates/class-default-templates-extension.php:51
505
  msgid ""
506
  "You can choose to link each thumbnail to the full size image, the image's "
507
  "attachment page, a custom URL, or you can choose to not link to anything."
508
  msgstr ""
509
 
510
- #: extensions/default-templates/class-default-templates-extension.php:55
511
- msgid "Border Style"
 
 
512
  msgstr ""
513
 
514
- #: extensions/default-templates/class-default-templates-extension.php:56
515
- msgid "The border style for each thumbnail in the gallery."
516
  msgstr ""
517
 
518
- #: extensions/default-templates/class-default-templates-extension.php:61
519
- msgid "Square white border with shadow"
520
  msgstr ""
521
 
522
- #: extensions/default-templates/class-default-templates-extension.php:62
523
- msgid "Circular white border with shadow"
524
  msgstr ""
525
 
526
- #: extensions/default-templates/class-default-templates-extension.php:63
527
- msgid "Square Black"
528
  msgstr ""
529
 
530
- #: extensions/default-templates/class-default-templates-extension.php:64
531
- msgid "Circular Black"
532
  msgstr ""
533
 
534
- #: extensions/default-templates/class-default-templates-extension.php:65
535
- msgid "Square Inset"
536
  msgstr ""
537
 
538
- #: extensions/default-templates/class-default-templates-extension.php:66
539
- msgid "Plain Rounded"
540
  msgstr ""
541
 
542
- #: extensions/default-templates/class-default-templates-extension.php:67
543
- msgid "Plain"
544
  msgstr ""
545
 
546
- #: extensions/default-templates/class-default-templates-extension.php:72
547
- msgid "Hover Effect Type"
548
  msgstr ""
549
 
550
- #: extensions/default-templates/class-default-templates-extension.php:77
551
- msgid "Icon"
552
  msgstr ""
553
 
554
- #: extensions/default-templates/class-default-templates-extension.php:78
555
- msgid "Dark Tint"
 
 
556
  msgstr ""
557
 
558
- #: extensions/default-templates/class-default-templates-extension.php:79
559
- msgid "Colorize"
560
  msgstr ""
561
 
562
- #: extensions/default-templates/class-default-templates-extension.php:80
563
- #: extensions/default-templates/class-default-templates-extension.php:405
564
- #: includes/admin/class-gallery-metabox-fields.php:256
565
- msgid "None"
 
 
 
 
 
566
  msgstr ""
567
 
568
- #: extensions/default-templates/class-default-templates-extension.php:83
569
- msgid "The type of hover effect the thumbnails will use."
570
  msgstr ""
571
 
572
- #: extensions/default-templates/class-default-templates-extension.php:87
573
- msgid "Icon Hover Effect"
574
  msgstr ""
575
 
576
- #: extensions/default-templates/class-default-templates-extension.php:88
 
 
 
 
 
577
  msgid ""
578
- "When the hover effect type of Icon is chosen, you can choose which icon is "
579
- "shown when you hover over each thumbnail."
580
  msgstr ""
581
 
582
- #: extensions/default-templates/class-default-templates-extension.php:93
583
- msgid "Zoom"
584
  msgstr ""
585
 
586
- #: extensions/default-templates/class-default-templates-extension.php:94
587
- msgid "Zoom 2"
588
  msgstr ""
589
 
590
- #: extensions/default-templates/class-default-templates-extension.php:95
591
- msgid "Zoom 3"
592
  msgstr ""
593
 
594
- #: extensions/default-templates/class-default-templates-extension.php:96
595
- msgid "Plus"
 
 
596
  msgstr ""
597
 
598
- #: extensions/default-templates/class-default-templates-extension.php:97
599
- msgid "Cirlce Plus"
600
  msgstr ""
601
 
602
- #: extensions/default-templates/class-default-templates-extension.php:98
603
- msgid "Eye"
 
604
  msgstr ""
605
 
606
- #: extensions/default-templates/class-default-templates-extension.php:103
607
- #: includes/admin/view-extensions-popup.php:53
608
- msgid "Preview"
609
  msgstr ""
610
 
611
- #: extensions/default-templates/class-default-templates-extension.php:104
612
- msgid "This is what your gallery thumbnails will look like."
 
613
  msgstr ""
614
 
615
- #: extensions/default-templates/class-default-templates-extension.php:111
616
- #: extensions/default-templates/class-default-templates-extension.php:120
617
- #: extensions/default-templates/class-default-templates-extension.php:134
618
- #: extensions/default-templates/class-default-templates-extension.php:442
619
- #: includes/admin/class-gallery-metaboxes.php:72
620
- msgid "Gallery Settings"
621
  msgstr ""
622
 
623
- #: extensions/default-templates/class-default-templates-extension.php:112
624
- msgid ""
625
- "Choose which lightbox you want to use. The lightbox will only work if you "
626
- "set the thumbnail link to \"Full Size Image\"."
627
  msgstr ""
628
 
629
- #: extensions/default-templates/class-default-templates-extension.php:117
630
- msgid "Spacing"
631
  msgstr ""
632
 
633
- #: extensions/default-templates/class-default-templates-extension.php:118
634
- msgid "The spacing or gap between thumbnails in the gallery."
635
  msgstr ""
636
 
637
- #: extensions/default-templates/class-default-templates-extension.php:123
638
- msgid "5 pixels"
 
 
639
  msgstr ""
640
 
641
- #: extensions/default-templates/class-default-templates-extension.php:124
642
- msgid "10 pixels"
643
  msgstr ""
644
 
645
- #: extensions/default-templates/class-default-templates-extension.php:125
646
- msgid "15 pixels"
 
 
647
  msgstr ""
648
 
649
- #: extensions/default-templates/class-default-templates-extension.php:126
650
- msgid "20 pixels"
651
  msgstr ""
652
 
653
- #: extensions/default-templates/class-default-templates-extension.php:127
654
- msgid "25 pixels"
 
 
 
655
  msgstr ""
656
 
657
- #: extensions/default-templates/class-default-templates-extension.php:133
658
- msgid "The horizontal alignment of the thumbnails inside the gallery."
659
  msgstr ""
660
 
661
- #: extensions/default-templates/class-default-templates-extension.php:148
662
- msgid "Masonry Image Gallery"
663
  msgstr ""
664
 
665
- #: extensions/default-templates/class-default-templates-extension.php:152
666
- msgid "Thumbnail Width"
 
 
 
667
  msgstr ""
668
 
669
- #: extensions/default-templates/class-default-templates-extension.php:153
 
 
670
  msgid ""
671
- "Choose the width of your thumbnails. Thumbnails will be generated on the fly "
672
- "and cached once generated."
673
  msgstr ""
674
 
675
- #: extensions/default-templates/class-default-templates-extension.php:162
676
- msgid "Gutter Width"
 
 
 
 
677
  msgstr ""
678
 
679
- #: extensions/default-templates/class-default-templates-extension.php:163
680
- #: extensions/default-templates/class-default-templates-extension.php:302
681
- msgid "The spacing between your thumbnails."
682
  msgstr ""
683
 
684
- #: extensions/default-templates/class-default-templates-extension.php:172
685
- msgid "Image Alignment"
686
  msgstr ""
687
 
688
- #: extensions/default-templates/class-default-templates-extension.php:173
689
- msgid ""
690
- "You can choose to center align your images or leave them at the default."
 
 
 
 
 
 
691
  msgstr ""
692
 
693
- #: extensions/default-templates/class-default-templates-extension.php:176
694
- msgid "Left Alignment"
695
  msgstr ""
696
 
697
- #: extensions/default-templates/class-default-templates-extension.php:177
698
- msgid "Center Alignment"
699
  msgstr ""
700
 
701
- #: extensions/default-templates/class-default-templates-extension.php:184
702
- msgid "Hover Zoom"
703
  msgstr ""
704
 
705
- #: extensions/default-templates/class-default-templates-extension.php:185
706
  msgid ""
707
- "The effect that is applied to images when you move your mouse over them."
 
708
  msgstr ""
709
 
710
- #: extensions/default-templates/class-default-templates-extension.php:188
711
- msgid "Zoom Slightly"
712
  msgstr ""
713
 
714
- #: extensions/default-templates/class-default-templates-extension.php:189
715
- msgid "No Zoom"
716
  msgstr ""
717
 
718
- #: extensions/default-templates/class-default-templates-extension.php:196
719
- #: extensions/default-templates/class-default-templates-extension.php:235
720
- #: extensions/default-templates/class-default-templates-extension.php:331
721
- msgid "Thumbnail Link"
722
  msgstr ""
723
 
724
- #: extensions/default-templates/class-default-templates-extension.php:200
725
- #: extensions/default-templates/class-default-templates-extension.php:239
726
- #: extensions/default-templates/class-default-templates-extension.php:335
727
- msgid ""
728
- "You can choose to link each thumbnail to the full size image, or to the "
729
- "image's attachment page, or you can choose to not link to anything."
730
  msgstr ""
731
 
732
- #: extensions/default-templates/class-default-templates-extension.php:205
733
- #: extensions/default-templates/class-default-templates-extension.php:244
734
- #: extensions/default-templates/class-default-templates-extension.php:340
735
- msgid ""
736
- "Choose which lightbox you want to display images with. The lightbox will "
737
- "only work if you set the thumbnail link to \"Full Size Image\"."
738
  msgstr ""
739
 
740
- #: extensions/default-templates/class-default-templates-extension.php:213
741
- msgid "Simple Portfolio"
 
742
  msgstr ""
743
 
744
- #: extensions/default-templates/class-default-templates-extension.php:217
745
- #: extensions/default-templates/class-default-templates-extension.php:266
746
- msgid "Tip"
 
 
 
 
747
  msgstr ""
748
 
749
- #: extensions/default-templates/class-default-templates-extension.php:220
750
  msgid ""
751
- "The Simple Portfolio template works best when you have <strong>captions and "
752
- "descriptions</strong> set for every attachment in the gallery.<br />To "
753
- "change captions and descriptions, simply hover over the thumbnail above and "
754
- "click the \"i\" icon."
755
  msgstr ""
756
 
757
- #: extensions/default-templates/class-default-templates-extension.php:249
758
- msgid "Gutter"
759
  msgstr ""
760
 
761
- #: extensions/default-templates/class-default-templates-extension.php:250
762
- msgid "The spacing between each thumbnail in the gallery."
763
  msgstr ""
764
 
765
- #: extensions/default-templates/class-default-templates-extension.php:262
766
- msgid "Justified Gallery"
767
  msgstr ""
768
 
769
- #: extensions/default-templates/class-default-templates-extension.php:269
770
- msgid ""
771
- "The Justified Gallery template uses the popular <a href=\"http://miromannino."
772
- "com/projects/justified-gallery/\" target=\"_blank\">Justified Gallery jQuery "
773
- "Plugin</a> under the hood. You can specify thumbnail captions by setting the "
774
- "alt text for your attachments."
775
  msgstr ""
776
 
777
- #: extensions/default-templates/class-default-templates-extension.php:273
778
- msgid "Thumb Height"
779
  msgstr ""
780
 
781
- #: extensions/default-templates/class-default-templates-extension.php:274
782
  msgid ""
783
- "Choose the height of your thumbnails. Thumbnails will be generated on the "
784
- "fly and cached once generated."
785
  msgstr ""
786
 
787
- #: extensions/default-templates/class-default-templates-extension.php:283
788
- msgid "Row Height"
 
 
789
  msgstr ""
790
 
791
- #: extensions/default-templates/class-default-templates-extension.php:284
792
  msgid ""
793
- "The preferred height of your gallery rows. This can be different from the "
794
- "thumbnail height."
795
  msgstr ""
796
 
797
- #: extensions/default-templates/class-default-templates-extension.php:293
798
- msgid "Max Row Height"
 
 
 
 
 
 
 
 
799
  msgstr ""
800
 
801
- #: extensions/default-templates/class-default-templates-extension.php:294
802
  msgid ""
803
- "A number (e.g 200) which specifies the maximum row height in pixels. A "
804
- "negative value for no limits. Alternatively, use a percentage (e.g. 200% "
805
- "which means that the row height cannot exceed 2 * rowHeight)"
 
806
  msgstr ""
807
 
808
- #: extensions/default-templates/class-default-templates-extension.php:301
809
- msgid "Margins"
 
810
  msgstr ""
811
 
812
- #: extensions/default-templates/class-default-templates-extension.php:311
813
- msgid "Show Captions"
 
814
  msgstr ""
815
 
816
- #: extensions/default-templates/class-default-templates-extension.php:312
817
- msgid ""
818
- "Show a caption when hovering over your thumbnails. (Set captions by adding "
819
- "either a title or alt text to an attachment)"
820
  msgstr ""
821
 
822
- #: extensions/default-templates/class-default-templates-extension.php:318
823
- msgid "Caption Source"
 
824
  msgstr ""
825
 
826
- #: extensions/default-templates/class-default-templates-extension.php:319
827
- msgid "Pull captions from either the attachment Title, Caption or Alt Text."
 
 
 
 
 
 
 
 
 
 
828
  msgstr ""
829
 
830
- #: extensions/default-templates/class-default-templates-extension.php:324
831
- msgid "Attachment Title"
 
 
832
  msgstr ""
833
 
834
- #: extensions/default-templates/class-default-templates-extension.php:325
835
- msgid "Attachment Caption"
 
836
  msgstr ""
837
 
838
- #: extensions/default-templates/class-default-templates-extension.php:326
839
- msgid "Attachment Alt Text"
 
 
840
  msgstr ""
841
 
842
- #: extensions/default-templates/class-default-templates-extension.php:348
843
  msgid "Single Thumbnail Gallery"
844
  msgstr ""
845
 
846
- #: extensions/default-templates/class-default-templates-extension.php:356
847
  msgid ""
848
  "This gallery template only shows a single thumbnail, but the true power "
849
  "shines through when the thumbnail is clicked, because then the lightbox "
850
  "takes over and the user can view all the images in the gallery."
851
  msgstr ""
852
 
853
- #: extensions/default-templates/class-default-templates-extension.php:361
 
 
 
 
854
  msgid "Choose the size of your thumbnail."
855
  msgstr ""
856
 
857
- #: extensions/default-templates/class-default-templates-extension.php:372
 
 
858
  msgid "Position"
859
  msgstr ""
860
 
861
- #: extensions/default-templates/class-default-templates-extension.php:373
862
  msgid "The position of the thumbnail related to the content around it."
863
  msgstr ""
864
 
865
- #: extensions/default-templates/class-default-templates-extension.php:378
866
- msgid "Full Width (block)"
 
 
 
 
 
 
 
 
867
  msgstr ""
868
 
869
- #: extensions/default-templates/class-default-templates-extension.php:379
870
  msgid "Float Left"
871
  msgstr ""
872
 
873
- #: extensions/default-templates/class-default-templates-extension.php:380
874
  msgid "Float Right"
875
  msgstr ""
876
 
877
- #: extensions/default-templates/class-default-templates-extension.php:385
878
  msgid "Link To Custom URL"
879
  msgstr ""
880
 
881
- #: extensions/default-templates/class-default-templates-extension.php:389
882
  msgid ""
883
  "You can link your thumbnails to Custom URL's (if they are set on your "
884
  "attachments). Fallback will be to the full size image."
885
  msgstr ""
886
 
887
- #: extensions/default-templates/class-default-templates-extension.php:393
888
- msgid "Caption Style"
889
  msgstr ""
890
 
891
- #: extensions/default-templates/class-default-templates-extension.php:394
892
- #: extensions/default-templates/class-default-templates-extension.php:411
893
- #: extensions/default-templates/class-default-templates-extension.php:420
894
- #: extensions/default-templates/class-default-templates-extension.php:428
895
- #: extensions/default-templates/class-default-templates-extension.php:435
896
- msgid "Caption Settings"
897
  msgstr ""
898
 
899
- #: extensions/default-templates/class-default-templates-extension.php:395
900
- msgid "Choose which caption style you want to use."
901
  msgstr ""
902
 
903
- #: extensions/default-templates/class-default-templates-extension.php:399
904
- msgid "Simple"
905
  msgstr ""
906
 
907
- #: extensions/default-templates/class-default-templates-extension.php:400
908
- msgid "Slide Up"
909
  msgstr ""
910
 
911
- #: extensions/default-templates/class-default-templates-extension.php:401
912
- msgid "Fall Down"
913
  msgstr ""
914
 
915
- #: extensions/default-templates/class-default-templates-extension.php:402
916
- msgid "Fade"
917
  msgstr ""
918
 
919
- #: extensions/default-templates/class-default-templates-extension.php:403
920
- msgid "Push From Left"
921
  msgstr ""
922
 
923
- #: extensions/default-templates/class-default-templates-extension.php:404
924
- msgid "Scale"
 
 
 
925
  msgstr ""
926
 
927
- #: extensions/default-templates/class-default-templates-extension.php:410
928
- msgid "Caption Background Color"
929
  msgstr ""
930
 
931
- #: extensions/default-templates/class-default-templates-extension.php:412
932
- msgid "The color of the caption background."
 
 
933
  msgstr ""
934
 
935
- #: extensions/default-templates/class-default-templates-extension.php:419
936
- msgid "Caption Text Color"
937
  msgstr ""
938
 
939
- #: extensions/default-templates/class-default-templates-extension.php:421
940
- msgid "The color of the caption text."
941
  msgstr ""
942
 
943
- #: extensions/default-templates/class-default-templates-extension.php:427
944
- msgid "Caption Title"
945
  msgstr ""
946
 
947
- #: extensions/default-templates/class-default-templates-extension.php:429
948
- msgid "Leave blank if you do not want a caption title."
 
 
949
  msgstr ""
950
 
951
- #: extensions/default-templates/class-default-templates-extension.php:434
952
- msgid "Caption Description"
953
  msgstr ""
954
 
955
- #: extensions/default-templates/class-default-templates-extension.php:436
956
- msgid "Leave blank if you do not want a caption description."
957
  msgstr ""
958
 
959
- #: extensions/default-templates/class-default-templates-extension.php:443
960
- msgid "Choose which lightbox you want to use."
961
  msgstr ""
962
 
963
- #: extensions/media-categories/class-media-categories-extension.php:29
964
- #: extensions/media-categories/class-media-categories-extension.php:39
965
- #: extensions/media-categories/class-media-categories-extension.php:77
966
- msgid "Categories"
967
  msgstr ""
968
 
969
- #: extensions/media-categories/class-media-categories-extension.php:30
970
- msgid "Category"
971
- msgstr ""
972
-
973
- #: extensions/media-categories/class-media-categories-extension.php:31
974
- msgid "Search Categories"
975
- msgstr ""
976
-
977
- #: extensions/media-categories/class-media-categories-extension.php:32
978
- msgid "All Categories"
979
- msgstr ""
980
-
981
- #: extensions/media-categories/class-media-categories-extension.php:33
982
- msgid "Parent Category"
983
- msgstr ""
984
-
985
- #: extensions/media-categories/class-media-categories-extension.php:34
986
- msgid "Parent Category:"
987
- msgstr ""
988
-
989
- #: extensions/media-categories/class-media-categories-extension.php:35
990
- msgid "Edit Category"
991
- msgstr ""
992
-
993
- #: extensions/media-categories/class-media-categories-extension.php:36
994
- msgid "Update Category"
995
- msgstr ""
996
-
997
- #: extensions/media-categories/class-media-categories-extension.php:37
998
- msgid "Add New Category"
999
- msgstr ""
1000
-
1001
- #: extensions/media-categories/class-media-categories-extension.php:38
1002
- msgid "New Category Name"
1003
- msgstr ""
1004
-
1005
- #: extensions/media-categories/class-media-categories-extension.php:79
1006
- msgid "Categorize your attachments"
1007
- msgstr ""
1008
-
1009
- #: extensions/media-categories/class-media-categories-extension.php:140
1010
- msgid "No Categories Available!"
1011
- msgstr ""
1012
-
1013
- #: extensions/media-categories/class-media-categories-extension.php:145
1014
- msgid "Manage Categories"
1015
- msgstr ""
1016
-
1017
- #: extensions/media-categories/class-media-categories-extension.php:179
1018
- msgid "Error saving the categories for the attachment!"
1019
- msgstr ""
1020
-
1021
- #: extensions/media-categories/class-media-categories-extension.php:195
1022
- msgid "View all categories"
1023
- msgstr ""
1024
-
1025
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:43
1026
- msgid "NextGen Importer"
1027
- msgstr ""
1028
-
1029
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:157
1030
- msgid "Import Your NextGen Galleries"
1031
- msgstr ""
1032
-
1033
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:159
1034
- msgid "Import Galleries"
1035
- msgstr ""
1036
-
1037
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:163
1038
- #, php-format
1039
- msgid ""
1040
- "Import all your NextGen galleries in a single click, or choose the galleries "
1041
- "you would like to migrate over to %s."
1042
- msgstr ""
1043
-
1044
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:165
1045
- msgid "Import Images"
1046
- msgstr ""
1047
-
1048
- #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:167
1049
- msgid ""
1050
- "NextGen gallery images are imported into your WordPress media library, where "
1051
- "they should be!"
1052
- msgstr ""
1053
-
1054
- #: extensions/nextgen-importer/class-nextgen-helper.php:245
1055
- msgid "Select All"
1056
- msgstr ""
1057
-
1058
- #: extensions/nextgen-importer/class-nextgen-helper.php:250
1059
- msgid "NextGen Gallery"
1060
  msgstr ""
1061
 
1062
  #: extensions/nextgen-importer/class-nextgen-helper.php:253
@@ -1068,77 +1180,81 @@ msgstr ""
1068
  msgid "Import Progress"
1069
  msgstr ""
1070
 
1071
- #: extensions/nextgen-importer/class-nextgen-helper.php:291
1072
  #, php-format
1073
  msgid "(%s images)"
1074
  msgstr ""
1075
 
1076
- #: extensions/nextgen-importer/class-nextgen-helper.php:320
1077
  msgid "Start Import"
1078
  msgstr ""
1079
 
1080
- #: extensions/nextgen-importer/class-nextgen-helper.php:322
1081
  msgid "Resume Import"
1082
  msgstr ""
1083
 
1084
- #: extensions/nextgen-importer/class-nextgen-helper.php:324
1085
  msgid "Stop Import"
1086
  msgstr ""
1087
 
1088
- #: extensions/nextgen-importer/class-nextgen-helper.php:328
1089
  msgid "Reset All Gallery Imports"
1090
  msgstr ""
1091
 
1092
- #: extensions/nextgen-importer/class-nextgen-helper.php:355
1093
  msgid "NextGen Album"
1094
  msgstr ""
1095
 
1096
- #: extensions/nextgen-importer/class-nextgen-helper.php:358
1097
  msgid "Album Name"
1098
  msgstr ""
1099
 
1100
- #: extensions/nextgen-importer/class-nextgen-helper.php:361
1101
  msgid "NextGen Galleries"
1102
  msgstr ""
1103
 
1104
- #: extensions/nextgen-importer/class-nextgen-helper.php:364
1105
  msgid "Import Options"
1106
  msgstr ""
1107
 
1108
- #: extensions/nextgen-importer/class-nextgen-helper.php:408
1109
  msgid "[Album] "
1110
  msgstr ""
1111
 
1112
- #: extensions/nextgen-importer/class-nextgen-helper.php:413
1113
  msgid "nested albums not supported"
1114
  msgstr ""
1115
 
1116
- #: extensions/nextgen-importer/class-nextgen-helper.php:428
1117
  msgid "imported"
1118
  msgstr ""
1119
 
1120
- #: extensions/nextgen-importer/class-nextgen-helper.php:428
1121
  msgid "not imported"
1122
  msgstr ""
1123
 
1124
- #: extensions/nextgen-importer/class-nextgen-helper.php:448
 
 
 
 
1125
  msgid "All galleries will be linked"
1126
  msgstr ""
1127
 
1128
- #: extensions/nextgen-importer/class-nextgen-helper.php:450
1129
  #, php-format
1130
  msgid "%d/%d galleries will be linked"
1131
  msgstr ""
1132
 
1133
- #: extensions/nextgen-importer/class-nextgen-helper.php:452
1134
  msgid "(Only previously imported galleries can be linked)"
1135
  msgstr ""
1136
 
1137
- #: extensions/nextgen-importer/class-nextgen-helper.php:455
1138
  msgid "No galleries imported yet!!"
1139
  msgstr ""
1140
 
1141
- #: extensions/nextgen-importer/class-nextgen-helper.php:473
1142
  msgid "Reset All Album Imports"
1143
  msgstr ""
1144
 
@@ -1152,125 +1268,188 @@ msgid "Done! %d galleries(s) linked"
1152
  msgstr ""
1153
 
1154
  #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:30
1155
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:59
1156
  msgid "Unknown status!"
1157
  msgstr ""
1158
 
1159
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:45
1160
  msgid "Not imported"
1161
  msgstr ""
1162
 
1163
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:48
1164
  msgid "Queued for import"
1165
  msgstr ""
1166
 
1167
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:51
1168
  #, php-format
1169
  msgid "Imported %d of %d image(s)"
1170
  msgstr ""
1171
 
1172
- #: extensions/nextgen-importer/class-nextgen-import-progress.php:55
1173
  #, php-format
1174
  msgid "Done! %d image(s) imported"
1175
  msgstr ""
1176
 
1177
- #: extensions/nextgen-importer/view-importer.php:80
 
 
 
 
 
 
 
 
1178
  msgid ""
1179
  "Something went wrong with the import and the page will now reload. Once it "
1180
  "has reloaded, click \"Resume Import\" to continue with the import."
1181
  msgstr ""
1182
 
1183
- #: extensions/nextgen-importer/view-importer.php:121
1184
  msgid "Are you sure you want to cancel?"
1185
  msgstr ""
1186
 
1187
- #: extensions/nextgen-importer/view-importer.php:128
1188
  msgid ""
1189
  "Are you sure you want to reset all NextGen gallery import data? This may "
1190
  "result in duplicate galleries and media attachments!"
1191
  msgstr ""
1192
 
1193
- #: extensions/nextgen-importer/view-importer.php:135
1194
  msgid ""
1195
  "Are you sure you want to reset all NextGen album import data? This may "
1196
  "result in duplicate albums if you decide to import again!"
1197
  msgstr ""
1198
 
1199
- #: extensions/nextgen-importer/view-importer.php:165
1200
  msgid "Something went wrong with the import and the page will now reload."
1201
  msgstr ""
1202
 
1203
- #: extensions/nextgen-importer/view-importer.php:185
 
 
 
 
 
 
 
 
 
 
1204
  msgid "NextGen Gallery And Album Importer"
1205
  msgstr ""
1206
 
1207
- #: extensions/nextgen-importer/view-importer.php:196
 
 
 
 
 
1208
  msgid "There are no NextGen galleries to import!"
1209
  msgstr ""
1210
 
1211
- #: extensions/nextgen-importer/view-importer.php:199
1212
  msgid "Importing galleries is really simple:"
1213
  msgstr ""
1214
 
1215
- #: extensions/nextgen-importer/view-importer.php:201
1216
  #, php-format
1217
  msgid ""
1218
  "Choose the NextGen galleries you want to import into %s by checking their "
1219
  "checkboxes."
1220
  msgstr ""
1221
 
1222
- #: extensions/nextgen-importer/view-importer.php:202
1223
  msgid "Click the Start Import button to start the import process."
1224
  msgstr ""
1225
 
1226
- #: extensions/nextgen-importer/view-importer.php:203
1227
  #, php-format
1228
  msgid ""
1229
  "Once a gallery is imported, you can click on the link under the %s Name "
1230
  "column to edit the gallery."
1231
  msgstr ""
1232
 
1233
- #: extensions/nextgen-importer/view-importer.php:205
1234
  msgid ""
1235
  "Please note: importing large galleries with lots of images can take a while!"
1236
  msgstr ""
1237
 
1238
- #: extensions/nextgen-importer/view-importer.php:217
1239
  msgid "There are no NextGen albums to import!"
1240
  msgstr ""
1241
 
1242
- #: extensions/nextgen-importer/view-importer.php:220
1243
  msgid "Importing albums is also really simple:"
1244
  msgstr ""
1245
 
1246
- #: extensions/nextgen-importer/view-importer.php:222
1247
  msgid ""
1248
  "For all the albums you wish to import, make sure all the galleries have been "
1249
  "imported FIRST. If not, then go back to the Galleries tab."
1250
  msgstr ""
1251
 
1252
- #: extensions/nextgen-importer/view-importer.php:223
1253
  msgid ""
1254
  "Click the Import Album button for each album to import the album and link "
1255
  "all the galleries. If you do not see the button, then that means you first "
1256
  "need to import the galleries."
1257
  msgstr ""
1258
 
1259
- #: extensions/nextgen-importer/view-importer.php:224
1260
  msgid ""
1261
  "Once an album is imported, you can click on the link under the Album Name "
1262
  "column to edit the album."
1263
  msgstr ""
1264
 
1265
- #: includes/WPThumb/wpthumb.crop-from-position.php:54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1266
  msgid "Crop Position"
1267
  msgstr ""
1268
 
1269
- #: includes/WPThumb/wpthumb.php:765
1270
  msgid "WPThumb has detected a problem."
1271
  msgstr ""
1272
 
1273
- #: includes/WPThumb/wpthumb.php:765
1274
  #, php-format
1275
  msgid "The directory <code>%s</code> is not writable."
1276
  msgstr ""
@@ -1279,52 +1458,53 @@ msgstr ""
1279
  msgid "Watermark"
1280
  msgstr ""
1281
 
1282
- #: includes/admin/class-admin.php:65 includes/admin/class-menu.php:34
1283
- #: includes/admin/class-settings.php:88 includes/admin/view-help.php:48
1284
- #: includes/admin/view-system-info.php:68
1285
- msgid "Extensions"
1286
  msgstr ""
1287
 
1288
- #: includes/admin/class-admin.php:67 includes/admin/class-menu.php:38
1289
- msgid "Help"
 
 
 
1290
  msgstr ""
1291
 
1292
- #: includes/admin/class-attachment-fields.php:19 includes/functions.php:386
1293
- msgid "Default"
 
 
 
1294
  msgstr ""
1295
 
1296
- #: includes/admin/class-attachment-fields.php:20
1297
- msgid "New tab (_blank)"
 
 
1298
  msgstr ""
1299
 
1300
- #: includes/admin/class-attachment-fields.php:21
1301
- msgid "Same tab (_self)"
1302
  msgstr ""
1303
 
1304
  #: includes/admin/class-attachment-fields.php:22
 
1305
  msgid "FooBox"
1306
  msgstr ""
1307
 
1308
- #: includes/admin/class-attachment-fields.php:27
1309
- #, php-format
1310
- msgid "%s Custom URL"
1311
- msgstr ""
1312
-
1313
  #: includes/admin/class-attachment-fields.php:29
1314
  msgid "Point your attachment to a custom URL"
1315
  msgstr ""
1316
 
1317
- #: includes/admin/class-attachment-fields.php:34
1318
- #, php-format
1319
- msgid "%s Custom Target"
1320
- msgstr ""
1321
-
1322
  #: includes/admin/class-attachment-fields.php:36
1323
  msgid "Set a custom target for your attachment"
1324
  msgstr ""
1325
 
1326
- #: includes/admin/class-columns.php:24
1327
- msgid "Media"
 
 
 
 
1328
  msgstr ""
1329
 
1330
  #: includes/admin/class-extensions.php:86
@@ -1339,217 +1519,227 @@ msgstr ""
1339
  msgid "Activation Error!"
1340
  msgstr ""
1341
 
1342
- #: includes/admin/class-gallery-editor.php:51
1343
  #, php-format
1344
  msgid "Add Gallery From %s"
1345
  msgstr ""
1346
 
1347
- #: includes/admin/class-gallery-editor.php:52
1348
  #, php-format
1349
  msgid "Add %s"
1350
  msgstr ""
1351
 
1352
- #: includes/admin/class-gallery-editor.php:277
1353
- msgid "Choose A Gallery To Insert"
1354
  msgstr ""
1355
 
1356
- #: includes/admin/class-gallery-editor.php:280
1357
  #: includes/admin/view-extensions.php:60
1358
  msgid "Reload"
1359
  msgstr ""
1360
 
1361
- #: includes/admin/class-gallery-editor.php:287
1362
- msgid "Loading galleries. Please wait..."
1363
  msgstr ""
1364
 
1365
- #: includes/admin/class-gallery-editor.php:292
1366
  msgid "Select A Gallery"
1367
  msgstr ""
1368
 
1369
- #: includes/admin/class-gallery-editor.php:294
1370
  msgid ""
1371
  "Select a gallery by clicking it, and then click the \"Insert Gallery\" "
1372
  "button to insert it into your content."
1373
  msgstr ""
1374
 
1375
- #: includes/admin/class-gallery-editor.php:296
1376
  msgid "Add A Gallery"
1377
  msgstr ""
1378
 
1379
- #: includes/admin/class-gallery-editor.php:298
1380
  msgid ""
1381
  "You can add a new gallery by clicking the \"Add New Gallery\" tile on the "
1382
  "left. It will open in a new window."
1383
  msgstr ""
1384
 
1385
- #: includes/admin/class-gallery-editor.php:301
1386
  msgid ""
1387
  "Once you have finished adding a gallery, come back to this dialog and click "
1388
  "the \"Reload\" button to see your newly created gallery."
1389
  msgstr ""
1390
 
1391
- #: includes/admin/class-gallery-editor.php:314
1392
  msgid "Cancel"
1393
  msgstr ""
1394
 
1395
- #: includes/admin/class-gallery-editor.php:318
1396
  msgid "Insert Gallery"
1397
  msgstr ""
1398
 
1399
- #: includes/admin/class-gallery-editor.php:374 includes/class-posttypes.php:29
1400
  msgid "Add New Gallery"
1401
  msgstr ""
1402
 
1403
- #: includes/admin/class-gallery-metabox-fields.php:157
 
1404
  msgid "Width"
1405
  msgstr ""
1406
 
1407
- #: includes/admin/class-gallery-metabox-fields.php:159
 
1408
  msgid "Height"
1409
  msgstr ""
1410
 
1411
- #: includes/admin/class-gallery-metabox-fields.php:163
1412
  msgid "Crop thumbnail to exact dimensions"
1413
  msgstr ""
1414
 
1415
- #: includes/admin/class-gallery-metabox-fields.php:196
1416
- msgid "You have no lightbox extensions activated!"
1417
- msgstr ""
1418
-
1419
- #: includes/admin/class-gallery-metabox-fields.php:205
1420
- msgid "Activate FooBox FREE right now!"
1421
- msgstr ""
1422
-
1423
- #: includes/admin/class-gallery-metabox-fields.php:213
1424
- msgid "Download and activate FooBox FREE"
1425
- msgstr ""
1426
-
1427
- #: includes/admin/class-gallery-metabox-fields.php:214
1428
- #, php-format
1429
- msgid "%s which works flawlessly with %s."
1430
- msgstr ""
1431
-
1432
- #: includes/admin/class-gallery-metabox-fields.php:247
1433
- msgid "Full Size Image"
1434
  msgstr ""
1435
 
1436
- #: includes/admin/class-gallery-metabox-fields.php:248
1437
- msgid "Image Attachment Page"
1438
  msgstr ""
1439
 
1440
- #: includes/admin/class-gallery-metabox-fields.php:249
1441
- msgid "Custom URL"
1442
  msgstr ""
1443
 
1444
- #: includes/admin/class-gallery-metabox-fields.php:250
1445
- msgid "Not linked"
1446
  msgstr ""
1447
 
1448
- #: includes/admin/class-gallery-metaboxes.php:63
1449
- msgid "Gallery Items"
1450
  msgstr ""
1451
 
1452
- #: includes/admin/class-gallery-metaboxes.php:81
1453
- msgid "Gallery Shortcode"
1454
  msgstr ""
1455
 
1456
- #: includes/admin/class-gallery-metaboxes.php:90
1457
- msgid "Gallery Usage"
1458
  msgstr ""
1459
 
1460
- #: includes/admin/class-gallery-metaboxes.php:109
1461
- msgid "Gallery Sorting"
1462
  msgstr ""
1463
 
1464
- #: includes/admin/class-gallery-metaboxes.php:118
1465
- msgid "Thumbnail Cache"
1466
  msgstr ""
1467
 
1468
- #: includes/admin/class-gallery-metaboxes.php:227
1469
- #: includes/admin/class-gallery-metaboxes.php:230
1470
  msgid "Add Media To Gallery"
1471
  msgstr ""
1472
 
1473
- #: includes/admin/class-gallery-metaboxes.php:228
1474
- #: includes/admin/class-gallery-metaboxes.php:232
1475
  msgid "Add Media"
1476
  msgstr ""
1477
 
1478
- #: includes/admin/class-gallery-metaboxes.php:263
1479
- msgid "Edit Info"
1480
- msgstr ""
1481
-
1482
- #: includes/admin/class-gallery-metaboxes.php:266
1483
- msgid "Remove from gallery"
1484
  msgstr ""
1485
 
1486
- #: includes/admin/class-gallery-metaboxes.php:299
1487
- #: includes/admin/view-extensions-build-your-own.php:134
1488
- msgid "Gallery Template"
1489
  msgstr ""
1490
 
1491
- #: includes/admin/class-gallery-metaboxes.php:312
1492
- msgid ""
1493
- "The gallery template that will be used when the gallery is output to the "
1494
- "frontend."
1495
  msgstr ""
1496
 
1497
- #: includes/admin/class-gallery-metaboxes.php:376
1498
  msgid "Paste the above shortcode into a post or page to show the gallery."
1499
  msgstr ""
1500
 
1501
- #: includes/admin/class-gallery-metaboxes.php:404
1502
  msgid "This gallery is used on the following posts or pages:"
1503
  msgstr ""
1504
 
1505
- #: includes/admin/class-gallery-metaboxes.php:410
1506
  msgid "Edit"
1507
  msgstr ""
1508
 
1509
- #: includes/admin/class-gallery-metaboxes.php:411
1510
  msgid "View"
1511
  msgstr ""
1512
 
1513
- #: includes/admin/class-gallery-metaboxes.php:416
1514
  msgid ""
1515
  "This gallery is not used on any pages or pages yet. Quickly create a page:"
1516
  msgstr ""
1517
 
1518
- #: includes/admin/class-gallery-metaboxes.php:419
1519
  msgid "Create Gallery Page"
1520
  msgstr ""
1521
 
1522
- #: includes/admin/class-gallery-metaboxes.php:424
1523
  msgid ""
1524
  "A draft page will be created which includes the gallery shortcode in the "
1525
  "content. The title of the page will be the same title as the gallery."
1526
  msgstr ""
1527
 
1528
- #: includes/admin/class-gallery-metaboxes.php:437
1529
  msgid ""
1530
  "Change the way images are sorted within your gallery. By default, they are "
1531
  "sorted in the order you see them."
1532
  msgstr ""
1533
 
1534
- #: includes/admin/class-gallery-metaboxes.php:451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1535
  msgid ""
1536
  "Clear all the previously cached thumbnails that have been generated for this "
1537
  "gallery."
1538
  msgstr ""
1539
 
1540
- #: includes/admin/class-gallery-metaboxes.php:454
1541
  msgid "Clear Thumbnail Cache"
1542
  msgstr ""
1543
 
1544
- #: includes/admin/class-gallery-metaboxes.php:490
 
 
 
 
1545
  #, php-format
1546
  msgid "Add any custom CSS to target this specific gallery. For example %s"
1547
  msgstr ""
1548
 
1549
- #: includes/admin/class-gallery-metaboxes.php:543
1550
  msgid "The thumbnail cache has been cleared!"
1551
  msgstr ""
1552
 
 
 
 
 
 
 
 
 
 
 
1553
  #: includes/admin/class-menu.php:29
1554
  #, php-format
1555
  msgid "%s Settings"
@@ -1570,11 +1760,16 @@ msgstr ""
1570
  msgid "%s System Information"
1571
  msgstr ""
1572
 
1573
- #: includes/admin/class-menu.php:42 includes/admin/view-help.php:55
1574
  msgid "System Info"
1575
  msgstr ""
1576
 
1577
- #: includes/admin/class-menu.php:64
 
 
 
 
 
1578
  #, php-format
1579
  msgid "%s settings updated."
1580
  msgstr ""
@@ -1587,165 +1782,293 @@ msgstr ""
1587
  msgid "Image Optimization"
1588
  msgstr ""
1589
 
1590
- #: includes/admin/class-settings.php:21
1591
- msgid "General"
1592
  msgstr ""
1593
 
1594
- #: includes/admin/class-settings.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1595
  msgid "Default Gallery Template"
1596
  msgstr ""
1597
 
1598
- #: includes/admin/class-settings.php:32
1599
  msgid "The default gallery template to use for new galleries"
1600
  msgstr ""
1601
 
1602
- #: includes/admin/class-settings.php:37 includes/admin/class-settings.php:48
1603
- #: includes/admin/class-settings.php:64
1604
  msgid "Gallery Defaults"
1605
  msgstr ""
1606
 
1607
- #: includes/admin/class-settings.php:42
1608
  msgid "Default Gallery Sorting"
1609
  msgstr ""
1610
 
1611
- #: includes/admin/class-settings.php:43
1612
  msgid "The default attachment sorting to use for new galleries"
1613
  msgstr ""
1614
 
1615
- #: includes/admin/class-settings.php:59
 
 
 
 
1616
  msgid "Default Gallery Settings"
1617
  msgstr ""
1618
 
1619
- #: includes/admin/class-settings.php:60
1620
  msgid ""
1621
  "When creating a new gallery, it can use the settings from an existing "
1622
  "gallery as the default settings. This will save you time when creating many "
1623
  "galleries that all have the same look and feel."
1624
  msgstr ""
1625
 
1626
- #: includes/admin/class-settings.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1627
  msgid "Hide Gallery Template Help"
1628
  msgstr ""
1629
 
1630
- #: includes/admin/class-settings.php:70
1631
  msgid ""
1632
  "Some gallery templates show helpful tips, which are useful for new users. "
1633
  "You can choose to hide these tips."
1634
  msgstr ""
1635
 
1636
- #: includes/admin/class-settings.php:73 includes/admin/class-settings.php:82
1637
  msgid "Admin"
1638
  msgstr ""
1639
 
1640
- #: includes/admin/class-settings.php:78
1641
  msgid "Hide WYSIWYG Editor Button"
1642
  msgstr ""
1643
 
1644
- #: includes/admin/class-settings.php:79
1645
  #, php-format
1646
  msgid "If enabled, this will hide the \"Add %s\" button in the WYSIWYG editor."
1647
  msgstr ""
1648
 
1649
- #: includes/admin/class-settings.php:92
1650
  msgid "Use Beta Endpoint"
1651
  msgstr ""
1652
 
1653
- #: includes/admin/class-settings.php:93
1654
  msgid ""
1655
  "The list of available extensions are pulled from an external URL. You can "
1656
  "also pull from a \"beta\" endpoint which will sometimes contain beta "
1657
  "extensions that are not publicly available."
1658
  msgstr ""
1659
 
1660
- #: includes/admin/class-settings.php:100
1661
  msgid "Images"
1662
  msgstr ""
1663
 
1664
- #: includes/admin/class-settings.php:104
1665
  msgid "Thumbnail JPEG Quality"
1666
  msgstr ""
1667
 
1668
- #: includes/admin/class-settings.php:105
1669
  msgid "The image quality to be used when resizing JPEG images."
1670
  msgstr ""
1671
 
1672
- #: includes/admin/class-settings.php:113
1673
- msgid "Clear CSS Cache"
1674
  msgstr ""
1675
 
1676
- #: includes/admin/class-settings.php:114
1677
- #, php-format
1678
  msgid ""
1679
- "%s optimizes the way it loads gallery stylesheets to improve page "
1680
- "performance. This can lead to the incorrect CSS being loaded in some cases. "
1681
- "Use this button to clear all the CSS optimizations that have been cached "
1682
- "across all galleries."
 
 
 
 
 
 
 
 
 
 
1683
  msgstr ""
1684
 
1685
- #: includes/admin/class-settings.php:121
1686
  msgid "Resize Animated GIFs"
1687
  msgstr ""
1688
 
1689
- #: includes/admin/class-settings.php:122
1690
  msgid ""
1691
  "Should animated gifs be resized or not. If enabled, only the first frame is "
1692
  "used in the resize."
1693
  msgstr ""
1694
 
1695
- #: includes/admin/class-settings.php:154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1696
  msgid "Language"
1697
  msgstr ""
1698
 
1699
- #: includes/admin/class-settings.php:158
1700
  msgid "Image Count None Text"
1701
  msgstr ""
1702
 
1703
- #: includes/admin/class-settings.php:160 includes/class-foogallery.php:302
1704
- #: includes/class-foogallery.php:310
1705
  msgid "No images"
1706
  msgstr ""
1707
 
1708
- #: includes/admin/class-settings.php:166
1709
  msgid "Image Count Single Text"
1710
  msgstr ""
1711
 
1712
- #: includes/admin/class-settings.php:168 includes/class-foogallery.php:303
1713
- #: includes/class-foogallery.php:313
1714
  msgid "1 image"
1715
  msgstr ""
1716
 
1717
- #: includes/admin/class-settings.php:174
1718
  msgid "Image Count Many Text"
1719
  msgstr ""
1720
 
1721
- #: includes/admin/class-settings.php:176 includes/class-foogallery.php:304
1722
- #: includes/class-foogallery.php:316
1723
  #, php-format
1724
  msgid "%s images"
1725
  msgstr ""
1726
 
1727
- #: includes/admin/class-settings.php:193
1728
- msgid "Clear CSS Optimization Cache"
 
 
1729
  msgstr ""
1730
 
1731
- #: includes/admin/class-settings.php:205
1732
- msgid "The CSS optimization cache was successfully cleared!"
1733
  msgstr ""
1734
 
1735
- #: includes/admin/view-extensions-build-your-own.php:23
1736
- msgid "Please fill in all form fields!"
 
 
 
 
1737
  msgstr ""
1738
 
1739
- #: includes/admin/view-extensions-build-your-own.php:30
1740
- msgid "Cool Thing"
1741
  msgstr ""
1742
 
1743
- #: includes/admin/view-extensions-build-your-own.php:32
1744
- msgid "A cool description about what your cool thing can do"
 
 
1745
  msgstr ""
1746
 
1747
- #: includes/admin/view-extensions-build-your-own.php:95
1748
- msgid "Build Your Own FooGallery Extensions!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1749
  msgstr ""
1750
 
1751
  #: includes/admin/view-extensions-build-your-own.php:97
@@ -1856,6 +2179,7 @@ msgid "Name"
1856
  msgstr ""
1857
 
1858
  #: includes/admin/view-extensions-build-your-own.php:143
 
1859
  msgid "Description"
1860
  msgstr ""
1861
 
@@ -1921,7 +2245,7 @@ msgid "Customize"
1921
  msgstr ""
1922
 
1923
  #: includes/admin/view-extensions-popup.php:50
1924
- #: includes/admin/view-extensions.php:133
1925
  msgid "Activate"
1926
  msgstr ""
1927
 
@@ -1929,6 +2253,10 @@ msgstr ""
1929
  msgid "Live Preview"
1930
  msgstr ""
1931
 
 
 
 
 
1932
  #: includes/admin/view-extensions-popup.php:57
1933
  msgid "Delete"
1934
  msgstr ""
@@ -1945,27 +2273,36 @@ msgid ""
1945
  msgstr ""
1946
 
1947
  #: includes/admin/view-extensions.php:57
1948
- msgid "search..."
 
 
 
 
 
1949
  msgstr ""
1950
 
1951
- #: includes/admin/view-extensions.php:131
 
 
 
 
1952
  msgid "Are you sure you want to download this extension?"
1953
  msgstr ""
1954
 
1955
- #: includes/admin/view-extensions.php:131
1956
  msgid "Download"
1957
  msgstr ""
1958
 
1959
- #: includes/admin/view-extensions.php:134
1960
- msgid "Deactivate"
1961
  msgstr ""
1962
 
1963
- #: includes/admin/view-extensions.php:137
1964
- msgid "Activated"
1965
  msgstr ""
1966
 
1967
- #: includes/admin/view-extensions.php:139
1968
- msgid "Coming Soon!"
1969
  msgstr ""
1970
 
1971
  #: includes/admin/view-help.php:4
@@ -1984,472 +2321,1819 @@ msgstr ""
1984
  msgid "Visit our homepage"
1985
  msgstr ""
1986
 
1987
- #: includes/admin/view-help.php:45
1988
  msgid "Getting Started"
1989
  msgstr ""
1990
 
1991
- #: includes/admin/view-help.php:51
1992
  msgid "Other Plugins"
1993
  msgstr ""
1994
 
1995
- #: includes/admin/view-help.php:66
1996
  msgid "Creating Your First Gallery"
1997
  msgstr ""
1998
 
1999
- #: includes/admin/view-help.php:68
2000
  #, php-format
2001
- msgid "<a href=\"%s\">Galleries &rarr; Add New</a>"
2002
  msgstr ""
2003
 
2004
- #: includes/admin/view-help.php:69
2005
  msgid ""
2006
  "To create your first gallery, simply click the Add New button or click the "
2007
- "Add Gallery menu link. Then choose images from the media library to include "
2008
- "in your gallery."
2009
  msgstr ""
2010
 
2011
- #: includes/admin/view-help.php:71 includes/admin/view-system-info.php:70
2012
- msgid "Gallery Templates"
2013
  msgstr ""
2014
 
2015
- #: includes/admin/view-help.php:72
2016
  msgid ""
2017
- "Choose one of our built-in gallery templates or download one via our "
2018
- "extension library."
 
 
 
 
2019
  msgstr ""
2020
 
2021
  #: includes/admin/view-help.php:74
2022
- msgid "Lightbox Support"
2023
  msgstr ""
2024
 
2025
  #: includes/admin/view-help.php:76
2026
- msgid ""
2027
- "FooGallery works out of the box with FooBox, our popular responsive image "
2028
- "lightbox."
2029
  msgstr ""
2030
 
2031
  #: includes/admin/view-help.php:77
2032
- msgid "Purchase FooBox now!"
2033
- msgstr ""
2034
-
2035
- #: includes/admin/view-help.php:79
2036
- msgid "Video Support"
2037
- msgstr ""
2038
-
2039
- #: includes/admin/view-help.php:81
2040
  msgid ""
2041
- "FooGallery now supports the creation of video galleries with the FooVideo "
2042
- "premium extension!"
2043
- msgstr ""
2044
-
2045
- #: includes/admin/view-help.php:82
2046
- msgid "Purchase FooVideo now!"
2047
  msgstr ""
2048
 
2049
- #: includes/admin/view-help.php:94
2050
  msgid "Show Off Your Gallery"
2051
  msgstr ""
2052
 
2053
- #: includes/admin/view-help.php:96
2054
  #, php-format
2055
  msgid "The <em>[%s]</em> Short Code"
2056
  msgstr ""
2057
 
2058
- #: includes/admin/view-help.php:97
2059
  msgid ""
2060
  "Simply copy the shortcode code from the gallery listing page and paste it "
2061
  "into your posts or pages."
2062
  msgstr ""
2063
 
2064
- #: includes/admin/view-help.php:99
2065
  msgid "Visual Editor Button"
2066
  msgstr ""
2067
 
2068
- #: includes/admin/view-help.php:100
2069
  #, php-format
2070
  msgid ""
2071
  "Or to make life even easier, you can insert a gallery using the Add %s "
2072
  "button inside the WordPress visual editor."
2073
  msgstr ""
2074
 
2075
- #: includes/admin/view-help.php:102
2076
  msgid "Copy To Clipboard"
2077
  msgstr ""
2078
 
2079
- #: includes/admin/view-help.php:103
2080
  msgid ""
2081
  "We make your life easy! Just click the shortcodes and they get copied to "
2082
  "your clipboard automatically. "
2083
  msgstr ""
2084
 
2085
- #: includes/admin/view-help.php:117
2086
- msgid "Create Your Own Extensions"
 
 
 
2087
  msgstr ""
2088
 
2089
- #: includes/admin/view-help.php:119
2090
- msgid "Easy To Code"
2091
  msgstr ""
2092
 
2093
- #: includes/admin/view-help.php:120
2094
- #, php-format
2095
- msgid ""
2096
- "We have done all the hard work to make your life easier. Creating an "
2097
- "extension for %s can be done in a couple lines of code."
2098
  msgstr ""
2099
 
2100
- #: includes/admin/view-help.php:122
2101
- msgid "Actions and Filters"
2102
  msgstr ""
2103
 
2104
- #: includes/admin/view-help.php:123
2105
- #, php-format
2106
- msgid ""
2107
- "We coded %s with extensibility in mind. There are hundreds of actions and "
2108
- "filters and helper functions to change every aspect of the plugin."
2109
  msgstr ""
2110
 
2111
- #: includes/admin/view-help.php:125
2112
- msgid "Host Anywhere"
2113
  msgstr ""
2114
 
2115
- #: includes/admin/view-help.php:126
2116
- msgid ""
2117
- "Host your extensions on the WordPress.org plugin repo, or GitHub, or even in "
2118
- "your own Amazon S3 bucket. You have the power and choice!"
2119
  msgstr ""
2120
 
2121
- #: includes/admin/view-system-info.php:39
2122
- #, php-format
2123
- msgid ""
2124
- "Below is some information about your server configuration. You can use this "
2125
- "info to help debug issues you may have with %s."
2126
  msgstr ""
2127
 
2128
- #: includes/admin/view-system-info.php:60
2129
- msgid "FooGallery version"
 
 
 
2130
  msgstr ""
2131
 
2132
- #: includes/admin/view-system-info.php:61
2133
- msgid "WordPress version"
2134
  msgstr ""
2135
 
2136
- #: includes/admin/view-system-info.php:62
2137
- msgid "Activated Theme"
2138
  msgstr ""
2139
 
2140
- #: includes/admin/view-system-info.php:63
2141
- msgid "WordPress URL"
 
2142
  msgstr ""
2143
 
2144
- #: includes/admin/view-system-info.php:64
2145
- msgid "PHP version"
2146
  msgstr ""
2147
 
2148
- #: includes/admin/view-system-info.php:65
2149
- msgid "PHP GD Loaded"
2150
  msgstr ""
2151
 
2152
- #: includes/admin/view-system-info.php:65
2153
- msgid "Not found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2154
  msgstr ""
2155
 
2156
- #: includes/admin/view-system-info.php:66
 
 
 
 
2157
  msgid "Extensions Endpoint"
2158
  msgstr ""
2159
 
2160
- #: includes/admin/view-system-info.php:67
2161
  msgid "Extensions Errors"
2162
  msgstr ""
2163
 
2164
- #: includes/admin/view-system-info.php:67
2165
  msgid "Nope, all good"
2166
  msgstr ""
2167
 
2168
- #: includes/admin/view-system-info.php:69
2169
  msgid "Extensions Active"
2170
  msgstr ""
2171
 
2172
- #: includes/admin/view-system-info.php:71
 
 
 
 
2173
  msgid "Lightboxes"
2174
  msgstr ""
2175
 
2176
- #: includes/admin/view-system-info.php:72
2177
  msgid "Active Plugins"
2178
  msgstr ""
2179
 
2180
- #: includes/class-extensions-api.php:235
2181
- msgid "new"
2182
  msgstr ""
2183
 
2184
- #: includes/class-extensions-api.php:320
2185
- msgid "All"
2186
  msgstr ""
2187
 
2188
- #: includes/class-extensions-api.php:323
2189
- msgid "Active"
2190
  msgstr ""
2191
 
2192
- #: includes/class-extensions-api.php:342
2193
- msgid "Build Your Own"
 
 
 
2194
  msgstr ""
2195
 
2196
- #: includes/class-extensions-api.php:477
2197
- #, php-format
2198
- msgid "The extension %s could NOT be deactivated!"
2199
  msgstr ""
2200
 
2201
- #: includes/class-extensions-api.php:502
2202
- #, php-format
2203
- msgid "The extension %s was successfully deactivated"
 
2204
  msgstr ""
2205
 
2206
- #: includes/class-extensions-api.php:507 includes/class-extensions-api.php:572
2207
- #: includes/class-extensions-api.php:665
2208
- #, php-format
2209
- msgid "Unknown extension : %s"
2210
  msgstr ""
2211
 
2212
- #: includes/class-extensions-api.php:537
2213
- #, php-format
2214
- msgid "Requires %s version %s"
2215
  msgstr ""
2216
 
2217
- #: includes/class-extensions-api.php:539
2218
- #, php-format
 
 
 
2219
  msgid ""
2220
- "The extension %s could not be activated, because you are using an outdated "
2221
- "version! Please update %s to at least version %s."
2222
  msgstr ""
2223
 
2224
- #: includes/class-extensions-api.php:549
2225
- #, php-format
2226
- msgid "The extension %s could NOT be activated!"
 
 
 
 
 
 
2227
  msgstr ""
2228
 
2229
- #: includes/class-extensions-api.php:567
2230
- #, php-format
2231
- msgid "The extension %s was successfully activated"
 
2232
  msgstr ""
2233
 
2234
- #: includes/class-extensions-api.php:619
2235
- #, php-format
2236
  msgid ""
2237
- "Unable to connect to the WordPress.org plugin API to download %s. Full error "
2238
- "log: %s"
2239
  msgstr ""
2240
 
2241
- #: includes/class-extensions-api.php:633
2242
- #, php-format
2243
- msgid "The extension %s has no download link!"
 
2244
  msgstr ""
2245
 
2246
- #: includes/class-extensions-api.php:648
2247
- #, php-format
2248
- msgid "The extension %s could NOT be downloaded!"
 
2249
  msgstr ""
2250
 
2251
- #: includes/class-extensions-api.php:655
2252
- #, php-format
2253
- msgid ""
2254
- "The extension %s was successfully downloaded and can now be activated. %s"
2255
  msgstr ""
2256
 
2257
- #: includes/class-extensions-api.php:659
2258
- msgid "Activate immediately"
2259
  msgstr ""
2260
 
2261
- #: includes/class-extensions-api.php:715
2262
- msgid "Error loading extension!"
2263
  msgstr ""
2264
 
2265
- #: includes/class-polylang-compatibility.php:95
2266
- msgid "FooGallery + Polylang Alert : "
2267
  msgstr ""
2268
 
2269
- #: includes/class-polylang-compatibility.php:96
2270
- msgid ""
2271
- "We noticed that you have Polylang installed and you have chosen to activate "
2272
- "languages and translations for media."
 
 
2273
  msgstr ""
2274
 
2275
- #: includes/class-polylang-compatibility.php:97
2276
- msgid ""
2277
- "This may cause empty galleries on translated pages! To disable this feature, "
2278
- "please visit Settings -> Languages -> Settings Tab."
2279
  msgstr ""
2280
 
2281
- #: includes/class-posttypes.php:27
2282
- msgid "Gallery"
2283
  msgstr ""
2284
 
2285
- #: includes/class-posttypes.php:28
2286
- msgid "Add Gallery"
2287
  msgstr ""
2288
 
2289
- #: includes/class-posttypes.php:30
2290
- msgid "Edit Gallery"
 
 
 
2291
  msgstr ""
2292
 
2293
- #: includes/class-posttypes.php:31
2294
- msgid "New Gallery"
 
 
 
2295
  msgstr ""
2296
 
2297
- #: includes/class-posttypes.php:32
2298
- msgid "View Gallery"
2299
  msgstr ""
2300
 
2301
- #: includes/class-posttypes.php:33
2302
- msgid "Search Galleries"
2303
  msgstr ""
2304
 
2305
- #: includes/class-posttypes.php:34
2306
- msgid "No Galleries found"
2307
  msgstr ""
2308
 
2309
- #: includes/class-posttypes.php:35
2310
- msgid "No Galleries found in Trash"
2311
  msgstr ""
2312
 
2313
- #: includes/class-posttypes.php:69 includes/class-posttypes.php:72
2314
- msgid "Gallery updated."
2315
  msgstr ""
2316
 
2317
- #: includes/class-posttypes.php:70
2318
- msgid "Gallery custom field updated."
2319
  msgstr ""
2320
 
2321
- #: includes/class-posttypes.php:71
2322
- msgid "Gallery custom field deleted."
2323
  msgstr ""
2324
 
2325
- #: includes/class-posttypes.php:73
2326
- #, php-format
2327
- msgid "Gallery restored to revision from %s."
2328
  msgstr ""
2329
 
2330
- #: includes/class-posttypes.php:74
2331
- msgid "Gallery published."
2332
  msgstr ""
2333
 
2334
- #: includes/class-posttypes.php:75
2335
- msgid "Gallery saved."
 
2336
  msgstr ""
2337
 
2338
- #: includes/class-posttypes.php:76
2339
- msgid "Gallery submitted."
2340
  msgstr ""
2341
 
2342
- #: includes/class-posttypes.php:77
2343
- #, php-format
2344
- msgid "Gallery scheduled for: <strong>%1$s</strong>."
2345
  msgstr ""
2346
 
2347
- #: includes/class-posttypes.php:78
2348
- msgid "Gallery draft updated."
2349
  msgstr ""
2350
 
2351
- #: includes/class-posttypes.php:98
2352
- #, php-format
2353
- msgid "%s Gallery updated."
2354
- msgid_plural "%s Galleries updated."
2355
- msgstr[0] ""
2356
- msgstr[1] ""
2357
-
2358
- #: includes/class-posttypes.php:99
2359
- #, php-format
2360
- msgid "%s Gallery not updated, somebody is editing it."
2361
- msgid_plural "%s Galleries not updated, somebody is editing them."
2362
- msgstr[0] ""
2363
- msgstr[1] ""
2364
 
2365
- #: includes/class-posttypes.php:100
2366
- #, php-format
2367
- msgid "%s Gallery permanently deleted."
2368
- msgid_plural "%s Galleries permanently deleted."
2369
- msgstr[0] ""
2370
- msgstr[1] ""
2371
 
2372
- #: includes/class-posttypes.php:101
2373
- #, php-format
2374
- msgid "%s Gallery moved to the Trash."
2375
- msgid_plural "%s Galleries moved to the Trash."
2376
- msgstr[0] ""
2377
- msgstr[1] ""
2378
 
2379
- #: includes/class-posttypes.php:102
2380
- #, php-format
2381
- msgid "%s Gallery restored from the Trash."
2382
- msgid_plural "%s Galleries restored from the Trash."
2383
- msgstr[0] ""
2384
- msgstr[1] ""
2385
 
2386
- #: includes/foopluginbase/classes/class-foo-plugin-base.php:310
2387
- msgid " Settings"
 
 
2388
  msgstr ""
2389
 
2390
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:329
2391
- msgid "Select An Image"
 
 
 
 
 
 
 
2392
  msgstr ""
2393
 
2394
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:329
2395
- msgid "Select Image"
2396
  msgstr ""
2397
 
2398
- #: includes/foopluginbase/classes/class-foo-plugin-settings.php:361
2399
- msgid "Settings restored to default values"
 
 
2400
  msgstr ""
2401
 
2402
- #: includes/foopluginbase/views/settings.php:91 views/settings.php:79
2403
- msgid "Save Changes"
2404
  msgstr ""
2405
 
2406
- #: includes/foopluginbase/views/settings.php:93 views/settings.php:80
2407
  msgid ""
2408
- "Are you sure you want to restore all settings back to their default values?"
 
 
2409
  msgstr ""
2410
 
2411
- #: includes/foopluginbase/views/settings.php:95 views/settings.php:80
2412
- msgid "Restore Defaults"
2413
  msgstr ""
2414
 
2415
- #: includes/functions.php:387
2416
- msgid "Date created - newest first"
2417
  msgstr ""
2418
 
2419
- #: includes/functions.php:388
2420
- msgid "Date created - oldest first"
2421
  msgstr ""
2422
 
2423
- #: includes/functions.php:389
2424
- msgid "Date modified - most recent first"
2425
  msgstr ""
2426
 
2427
- #: includes/functions.php:390
2428
- msgid "Date modified - most recent last"
2429
  msgstr ""
2430
 
2431
- #: includes/functions.php:391
2432
- msgid "Title - alphabetically"
2433
  msgstr ""
2434
 
2435
- #: includes/functions.php:392
2436
- msgid "Title - reverse"
2437
  msgstr ""
2438
 
2439
- #: includes/functions.php:393
2440
- msgid "Random"
2441
  msgstr ""
2442
 
2443
- #: includes/public/class-admin-bar.php:34
2444
- msgid "Edit Galleries"
2445
  msgstr ""
2446
 
2447
- #: includes/public/class-foogallery-template-loader.php:34
2448
- msgid "The gallery was not found!"
2449
  msgstr ""
2450
 
2451
- #: includes/public/class-foogallery-template-loader.php:93
2452
- msgid "No gallery template found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2453
  msgstr ""
2454
 
2455
  #. Plugin Name of the plugin/theme
@@ -2462,8 +4146,8 @@ msgstr ""
2462
 
2463
  #. Description of the plugin/theme
2464
  msgid ""
2465
- "FooGallery is the most intuitive and extensible gallery management tool "
2466
- "ever created for WordPress"
2467
  msgstr ""
2468
 
2469
  #. Author of the plugin/theme
 
1
  msgid ""
2
  msgstr ""
 
3
  "Project-Id-Version: FooGallery\n"
4
+ "POT-Creation-Date: 2018-04-06 14:35+0200\n"
5
+ "PO-Revision-Date: 2018-04-06 14:38+0200\n"
6
  "Last-Translator: Brad Vincent <brad@fooplugins.com>\n"
7
  "Language-Team: Brad Vincent <brad@fooplugins.com>\n"
8
+ "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: foogallery.php\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #: extensions/albums/admin/class-columns.php:19
25
+ #: includes/admin/class-columns.php:24
26
  msgid "Template"
27
  msgstr ""
28
 
29
  #: extensions/albums/admin/class-columns.php:20
30
+ #: extensions/nextgen-importer/view-importer.php:294
31
  #: includes/class-posttypes.php:26 includes/class-posttypes.php:37
32
  msgid "Galleries"
33
  msgstr ""
34
 
35
  #: extensions/albums/admin/class-columns.php:21
36
+ #: includes/admin/class-columns.php:26
37
  msgid "Shortcode"
38
  msgstr ""
39
 
40
  #: extensions/albums/admin/class-columns.php:62
41
+ #: extensions/albums/admin/class-metaboxes.php:260
42
+ #: includes/admin/class-columns.php:101
43
+ #: includes/admin/class-gallery-metaboxes.php:371
44
  msgid "Shortcode copied to clipboard :)"
45
  msgstr ""
46
 
47
+ #: extensions/albums/admin/class-metaboxes.php:57
48
+ msgid "Galleries - click a gallery to add it to your album."
49
  msgstr ""
50
 
51
+ #: extensions/albums/admin/class-metaboxes.php:66
52
+ #: includes/admin/class-admin.php:65 includes/admin/class-menu.php:30
53
+ #: includes/admin/view-system-info.php:87
54
+ #: includes/foopluginbase/classes/class-foo-plugin-base.php:286
55
  msgid "Settings"
56
  msgstr ""
57
 
58
+ #: extensions/albums/admin/class-metaboxes.php:75
59
+ #: includes/admin/class-gallery-metaboxes.php:106
60
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:151
61
  msgid "Custom CSS"
62
  msgstr ""
63
 
64
+ #: extensions/albums/admin/class-metaboxes.php:84
65
  msgid "Album Shortcode"
66
  msgstr ""
67
 
68
+ #: extensions/albums/admin/class-metaboxes.php:93
69
  msgid "Album Sorting"
70
  msgstr ""
71
 
72
+ #: extensions/albums/admin/class-metaboxes.php:174
73
+ msgid ""
74
+ "There are no galleries selected for your album yet! Click any gallery to add "
75
+ "it to your album."
76
+ msgstr ""
77
+
78
+ #: extensions/albums/admin/class-metaboxes.php:182
79
+ msgid "Edit Gallery Details"
80
+ msgstr ""
81
+
82
+ #: extensions/albums/admin/class-metaboxes.php:187
83
+ msgid "Loading details for "
84
+ msgstr ""
85
+
86
+ #: extensions/albums/admin/class-metaboxes.php:194
87
+ msgid "Save Gallery Details"
88
+ msgstr ""
89
+
90
+ #: extensions/albums/admin/class-metaboxes.php:201
91
+ msgid "Close media panel"
92
+ msgstr ""
93
+
94
+ #: extensions/albums/admin/class-metaboxes.php:227
95
+ msgid "Edit Album Info"
96
  msgstr ""
97
 
98
+ #: extensions/albums/admin/class-metaboxes.php:247
99
  msgid "Paste the above shortcode into a post or page to show the album."
100
  msgstr ""
101
 
102
+ #: extensions/albums/admin/class-metaboxes.php:274
103
  msgid ""
104
  "Change the way galleries are sorted within your album. By default, they are "
105
  "sorted in the order you see them."
106
  msgstr ""
107
 
108
+ #: extensions/albums/admin/class-metaboxes.php:301
109
  msgid "Album Template"
110
  msgstr ""
111
 
112
+ #: extensions/albums/admin/class-metaboxes.php:313
113
  msgid ""
114
  "The album template that will be used when the album is output to the "
115
  "frontend."
116
  msgstr ""
117
 
118
+ #: extensions/albums/admin/class-metaboxes.php:369
119
  #, php-format
120
  msgid "Add any custom CSS to target this specific album. For example %s"
121
  msgstr ""
122
 
123
+ #: extensions/albums/admin/class-metaboxes.php:496
124
+ msgid "Invalid Gallery!"
125
+ msgstr ""
126
+
127
+ #: extensions/albums/admin/class-metaboxes.php:533
128
+ #: extensions/albums/functions.php:82
129
+ #: includes/admin/class-attachment-fields.php:19
130
+ #: includes/class-foogallery-common-fields.php:195 includes/functions.php:480
131
+ msgid "Default"
132
+ msgstr ""
133
+
134
+ #: extensions/albums/admin/class-metaboxes.php:534
135
+ #: includes/admin/class-attachment-fields.php:20
136
+ msgid "New tab (_blank)"
137
+ msgstr ""
138
+
139
+ #: extensions/albums/admin/class-metaboxes.php:535
140
+ #: includes/admin/class-attachment-fields.php:21
141
+ msgid "Same tab (_self)"
142
+ msgstr ""
143
+
144
+ #: extensions/albums/admin/class-metaboxes.php:542
145
+ msgid "Gallery Title"
146
+ msgstr ""
147
+
148
+ #: extensions/albums/admin/class-metaboxes.php:544
149
+ #: includes/class-posttypes.php:30
150
+ msgid "Edit Gallery"
151
+ msgstr ""
152
+
153
+ #: extensions/albums/admin/class-metaboxes.php:548
154
+ #: includes/admin/view-extensions-build-your-own.php:134
155
+ msgid "Gallery Template"
156
+ msgstr ""
157
+
158
+ #: extensions/albums/admin/class-metaboxes.php:554
159
+ #: includes/admin/class-columns.php:25
160
+ msgid "Media"
161
+ msgstr ""
162
+
163
+ #: extensions/albums/admin/class-metaboxes.php:560
164
+ #: extensions/albums/functions.php:83
165
+ #: includes/admin/class-attachment-fields.php:27 includes/functions.php:984
166
+ msgid "Custom URL"
167
+ msgstr ""
168
+
169
+ #: extensions/albums/admin/class-metaboxes.php:562
170
+ msgid "Point your gallery to a custom URL"
171
+ msgstr ""
172
+
173
+ #: extensions/albums/admin/class-metaboxes.php:566
174
+ #: includes/admin/class-attachment-fields.php:34
175
+ msgid "Custom Target"
176
+ msgstr ""
177
+
178
+ #: extensions/albums/admin/class-metaboxes.php:568
179
+ msgid "Set a custom target for your gallery"
180
+ msgstr ""
181
+
182
+ #: extensions/albums/album-default.php:24
183
+ #: extensions/albums/class-albums-extension.php:84
184
  msgid "&laquo; back to album"
185
  msgstr ""
186
 
187
+ #: extensions/albums/album-default.php:67
188
+ #: includes/admin/class-gallery-editor.php:366
189
+ #: includes/class-foogallery.php:395
190
+ #, php-format
191
+ msgid "%s #%s"
192
+ msgstr ""
193
+
194
+ #: extensions/albums/class-albums-extension.php:82
195
  msgid "Back To Album Text"
196
  msgstr ""
197
 
198
+ #: extensions/albums/class-albums-extension.php:93
199
+ #: extensions/albums/class-posttypes.php:26
200
+ #: extensions/albums/class-posttypes.php:36
201
+ #: extensions/albums/class-posttypes.php:37
202
+ #: extensions/nextgen-importer/view-importer.php:295
203
+ msgid "Albums"
204
+ msgstr ""
205
+
206
+ #: extensions/albums/class-albums-extension.php:97
207
+ msgid "Gallery Slug"
208
+ msgstr ""
209
+
210
+ #: extensions/albums/class-albums-extension.php:100
211
+ msgid ""
212
+ "The slug that is used when generating gallery URL's for albums. PLEASE "
213
+ "NOTE : if you change this value, you might need to save your Permalinks "
214
+ "again."
215
+ msgstr ""
216
+
217
  #: extensions/albums/class-foogallery-album.php:205
218
  msgid "No galleries"
219
  msgstr ""
227
  msgid "%s galleries"
228
  msgstr ""
229
 
 
 
 
 
 
 
 
230
  #: extensions/albums/class-posttypes.php:27
231
  msgid "Album"
232
  msgstr ""
345
  msgid "Responsive Album Layout"
346
  msgstr ""
347
 
348
+ #: extensions/albums/functions.php:35 extensions/albums/functions.php:135
349
+ #: extensions/default-templates/default/class-default-gallery-template.php:62
350
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:78
351
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:106
352
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:78
353
  msgid "Thumbnail Size"
354
  msgstr ""
355
 
359
 
360
  #: extensions/albums/functions.php:37 extensions/albums/functions.php:49
361
  #: extensions/albums/functions.php:57 extensions/albums/functions.php:65
362
+ #: extensions/albums/functions.php:137 extensions/albums/functions.php:149
363
+ #: extensions/albums/functions.php:162 extensions/albums/functions.php:171
364
+ #: extensions/albums/functions.php:180
 
 
 
 
 
 
 
 
 
365
  msgid "Thumbnail Settings"
366
  msgstr ""
367
 
382
  msgstr ""
383
 
384
  #: extensions/albums/functions.php:63
385
+ #: extensions/default-templates/default/class-default-gallery-template.php:128
386
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:119
387
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:147
388
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:125
389
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:125
390
  msgid "Alignment"
391
  msgstr ""
392
 
395
  msgstr ""
396
 
397
  #: extensions/albums/functions.php:69
398
+ #: extensions/default-templates/default/class-default-gallery-template.php:135
399
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:126
400
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:151
401
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:153
402
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:132
403
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:132
404
  msgid "Left"
405
  msgstr ""
406
 
407
  #: extensions/albums/functions.php:70
408
+ #: extensions/default-templates/default/class-default-gallery-template.php:136
409
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:127
410
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:150
411
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:154
412
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:133
413
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:133
414
  msgid "Center"
415
  msgstr ""
416
 
417
  #: extensions/albums/functions.php:71
418
+ #: extensions/default-templates/default/class-default-gallery-template.php:137
419
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:128
420
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:149
421
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:134
422
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:209
423
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:134
424
  msgid "Right"
425
  msgstr ""
426
 
427
  #: extensions/albums/functions.php:76
428
+ msgid "Gallery Link"
 
 
 
 
429
  msgstr ""
430
 
431
+ #: extensions/albums/functions.php:77 extensions/albums/functions.php:91
432
+ #: extensions/albums/functions.php:102 extensions/albums/functions.php:111
433
+ msgid "URL Settings"
 
 
 
 
434
  msgstr ""
435
 
436
  #: extensions/albums/functions.php:85
437
  msgid ""
438
+ "You can choose to link each gallery to the default embedded gallery, or you "
439
+ "can choose to link to the gallery custom URL (if set)."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  msgstr ""
441
 
442
+ #: extensions/albums/functions.php:89
443
  msgid "Gallery Link Format"
444
  msgstr ""
445
 
446
+ #: extensions/albums/functions.php:90
447
  msgid "The format of the URL for each individual gallery in the album."
448
  msgstr ""
449
 
450
+ #: extensions/albums/functions.php:94
 
 
 
 
 
451
  msgid "Pretty, e.g. "
452
  msgstr ""
453
 
454
+ #: extensions/albums/functions.php:95
455
  msgid "Querystring e.g. "
456
  msgstr ""
457
 
458
+ #: extensions/albums/functions.php:101
459
  msgid "Please Note"
460
  msgstr ""
461
 
462
+ #: extensions/albums/functions.php:105
463
  msgid ""
464
  "If you are getting 404's when clicking on the album galleries, then change "
465
  "to the querystring format. To force your rewrite rules to flush, simply "
466
  "deactivate and activate the albums extension again."
467
  msgstr ""
468
 
469
+ #: extensions/albums/functions.php:109 extensions/albums/functions.php:115
470
  msgid "Remember Scroll Position"
471
  msgstr ""
472
 
473
+ #: extensions/albums/functions.php:110
474
  msgid ""
475
  "When a gallery is loaded in your album, the page is refreshed which means "
476
  "the scroll position will be lost ."
477
  msgstr ""
478
 
479
+ #: extensions/albums/functions.php:114
480
  msgid "Don't Remember"
481
  msgstr ""
482
 
483
+ #: extensions/albums/functions.php:124
484
  msgid "All-In-One Stack Album"
485
  msgstr ""
486
 
487
+ #: extensions/albums/functions.php:128
488
+ #: extensions/default-templates/default/class-default-gallery-template.php:85
489
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:111
490
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:131
491
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:174
492
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:101
493
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:120
494
  #: includes/admin/view-extensions-build-your-own.php:135
495
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:102
496
  msgid "Lightbox"
497
  msgstr ""
498
 
499
+ #: extensions/albums/functions.php:129
500
  msgid "Choose which lightbox you want to use to display images."
501
  msgstr ""
502
 
503
+ #: extensions/albums/functions.php:136
504
  msgid "Choose the size of your image stack thumbnails."
505
  msgstr ""
506
 
507
+ #: extensions/albums/functions.php:148
508
  msgid "Thumbnail Rotation"
509
  msgstr ""
510
 
511
+ #: extensions/albums/functions.php:150
512
  msgid ""
513
  "Choose how thumbnails in each gallery are shown when clicking an image stack."
514
  msgstr ""
515
 
516
+ #: extensions/albums/functions.php:154 extensions/albums/functions.php:186
517
  msgid "Normal"
518
  msgstr ""
519
 
520
+ #: extensions/albums/functions.php:155
521
  msgid "Random Angles"
522
  msgstr ""
523
 
524
+ #: extensions/albums/functions.php:161
525
  msgid "Thumbnail Gutter"
526
  msgstr ""
527
 
528
+ #: extensions/albums/functions.php:163
529
  msgid "The spacing between each image stack."
530
  msgstr ""
531
 
532
+ #: extensions/albums/functions.php:170
533
  msgid "Expand Delay"
534
  msgstr ""
535
 
536
+ #: extensions/albums/functions.php:172
537
  msgid "The delay between expanding each image on a image stack."
538
  msgstr ""
539
 
540
+ #: extensions/albums/functions.php:179
541
  msgid "Image Stack Angles"
542
  msgstr ""
543
 
544
+ #: extensions/albums/functions.php:181
545
  msgid "The angle of the images behind the thumbnail in each image stack."
546
  msgstr ""
547
 
548
+ #: extensions/albums/functions.php:185
549
  msgid "Low"
550
  msgstr ""
551
 
552
+ #: extensions/albums/functions.php:187
553
  msgid "More Than Normal"
554
  msgstr ""
555
 
556
+ #: extensions/albums/functions.php:188
557
  msgid "High"
558
  msgstr ""
559
 
565
  msgid "No album template found!"
566
  msgstr ""
567
 
568
+ #: extensions/default-templates/default/class-default-gallery-template.php:51
569
  msgid "Responsive Image Gallery"
570
  msgstr ""
571
 
572
+ #: extensions/default-templates/default/class-default-gallery-template.php:63
573
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:79
574
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:79
575
+ msgid "Choose the size of your thumbnails."
576
  msgstr ""
577
 
578
+ #: extensions/default-templates/default/class-default-gallery-template.php:64
579
+ #: extensions/default-templates/default/class-default-gallery-template.php:78
580
+ #: extensions/default-templates/default/class-default-gallery-template.php:87
581
+ #: extensions/default-templates/default/class-default-gallery-template.php:98
582
+ #: extensions/default-templates/default/class-default-gallery-template.php:110
583
+ #: extensions/default-templates/default/class-default-gallery-template.php:130
584
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:82
585
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:88
586
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:104
587
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:112
588
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:120
589
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:139
590
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:145
591
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:156
592
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:167
593
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:64
594
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:79
595
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:95
596
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:109
597
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:124
598
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:133
599
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:141
600
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:73
601
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:88
602
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:108
603
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:127
604
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:149
605
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:71
606
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:80
607
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:94
608
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:103
609
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:111
610
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:127
611
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:71
612
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:79
613
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:95
614
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:113
615
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:121
616
+ #: includes/admin/class-gallery-metabox-settings-helper.php:148
617
+ #: includes/admin/class-settings.php:29
618
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:141
619
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:161
620
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:179
621
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:201
622
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:220
623
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:238
624
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:256
625
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:80
626
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:95
627
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:104
628
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:111
629
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:127
630
+ msgid "General"
631
  msgstr ""
632
 
633
+ #: extensions/default-templates/default/class-default-gallery-template.php:77
634
+ msgid "Link To"
635
  msgstr ""
636
 
637
+ #: extensions/default-templates/default/class-default-gallery-template.php:81
638
  msgid ""
639
  "You can choose to link each thumbnail to the full size image, the image's "
640
  "attachment page, a custom URL, or you can choose to not link to anything."
641
  msgstr ""
642
 
643
+ #: extensions/default-templates/default/class-default-gallery-template.php:86
644
+ msgid ""
645
+ "Choose which lightbox you want to use. The lightbox will generally only work "
646
+ "if you set the thumbnail link to \"Full Size Image\"."
647
  msgstr ""
648
 
649
+ #: extensions/default-templates/default/class-default-gallery-template.php:96
650
+ msgid "FooBox Help"
651
  msgstr ""
652
 
653
+ #: extensions/default-templates/default/class-default-gallery-template.php:97
654
+ msgid "The FooBox lightbox is a separate plugin."
655
  msgstr ""
656
 
657
+ #: extensions/default-templates/default/class-default-gallery-template.php:108
658
+ msgid "Spacing"
659
  msgstr ""
660
 
661
+ #: extensions/default-templates/default/class-default-gallery-template.php:109
662
+ msgid "The spacing or gap between thumbnails in the gallery."
663
  msgstr ""
664
 
665
+ #: extensions/default-templates/default/class-default-gallery-template.php:114
666
+ msgid "none"
667
  msgstr ""
668
 
669
+ #: extensions/default-templates/default/class-default-gallery-template.php:115
670
+ msgid "5 pixels"
671
  msgstr ""
672
 
673
+ #: extensions/default-templates/default/class-default-gallery-template.php:116
674
+ msgid "10 pixels"
675
  msgstr ""
676
 
677
+ #: extensions/default-templates/default/class-default-gallery-template.php:117
678
+ msgid "15 pixels"
679
  msgstr ""
680
 
681
+ #: extensions/default-templates/default/class-default-gallery-template.php:118
682
+ msgid "20 pixels"
683
  msgstr ""
684
 
685
+ #: extensions/default-templates/default/class-default-gallery-template.php:119
686
+ msgid "25 pixels"
687
  msgstr ""
688
 
689
+ #: extensions/default-templates/default/class-default-gallery-template.php:129
690
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:126
691
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:126
692
+ msgid "The horizontal alignment of the thumbnails inside the gallery."
693
  msgstr ""
694
 
695
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:71
696
+ msgid "Image Viewer"
697
  msgstr ""
698
 
699
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:80
700
+ msgid "Thumbnail Help"
701
+ msgstr ""
702
+
703
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:81
704
+ msgid ""
705
+ "It is recommended to crop your thumbnails, so that your gallery remains a "
706
+ "constant size. If you do not crop, then the size of the gallery could "
707
+ "potentially change for each thumbnail."
708
  msgstr ""
709
 
710
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:87
711
+ msgid "Thumb Size"
712
  msgstr ""
713
 
714
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:89
715
+ msgid "Choose the size of your thumbnails"
716
  msgstr ""
717
 
718
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:103
719
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:167
720
+ msgid "Thumb Link"
721
+ msgstr ""
722
+
723
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:107
724
  msgid ""
725
+ "You can choose to either link each thumbnail to the full size image or to "
726
+ "the image's attachment page"
727
  msgstr ""
728
 
729
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:113
730
+ msgid "Choose which lightbox you want to use in the gallery"
731
  msgstr ""
732
 
733
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:121
734
+ msgid "The horizontal alignment of the thumbnails inside the gallery"
735
  msgstr ""
736
 
737
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:137
738
+ msgid "Language Help"
739
  msgstr ""
740
 
741
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:138
742
+ msgid ""
743
+ "This gallery template shows the below items of text. Change them to suit "
744
+ "your preference or language."
745
  msgstr ""
746
 
747
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:144
748
+ msgid "\"Prev\" Text"
749
  msgstr ""
750
 
751
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:147
752
+ #: extensions/default-templates/image-viewer/gallery-image-viewer.php:15
753
+ msgid "Prev"
754
  msgstr ""
755
 
756
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:155
757
+ msgid "\"of\" Text"
 
758
  msgstr ""
759
 
760
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:158
761
+ #: extensions/default-templates/image-viewer/gallery-image-viewer.php:16
762
+ msgid "of"
763
  msgstr ""
764
 
765
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:166
766
+ msgid "\"Next\" Text"
 
 
 
 
767
  msgstr ""
768
 
769
+ #: extensions/default-templates/image-viewer/class-image-viewer-gallery-template.php:169
770
+ #: extensions/default-templates/image-viewer/gallery-image-viewer.php:17
771
+ msgid "Next"
 
772
  msgstr ""
773
 
774
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:51
775
+ msgid "Justified Gallery"
776
  msgstr ""
777
 
778
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:62
779
+ msgid "Thumb Height"
780
  msgstr ""
781
 
782
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:63
783
+ msgid ""
784
+ "Choose the height of your thumbnails. Thumbnails will be generated on the "
785
+ "fly and cached once generated"
786
  msgstr ""
787
 
788
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:77
789
+ msgid "Row Height"
790
  msgstr ""
791
 
792
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:78
793
+ msgid ""
794
+ "The preferred height of your gallery rows. This can be different from the "
795
+ "thumbnail height"
796
  msgstr ""
797
 
798
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:93
799
+ msgid "Max Row Height"
800
  msgstr ""
801
 
802
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:94
803
+ msgid ""
804
+ "A number (e.g 200) which specifies the maximum row height in pixels. A "
805
+ "negative value for no limits. Alternatively, use a percentage (e.g. 200% "
806
+ "which means that the row height cannot exceed 2 * rowHeight)"
807
  msgstr ""
808
 
809
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:107
810
+ msgid "Margins"
811
  msgstr ""
812
 
813
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:108
814
+ msgid "The spacing between your thumbnails."
815
  msgstr ""
816
 
817
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:123
818
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:93
819
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:121
820
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:94
821
+ msgid "Thumbnail Link"
822
  msgstr ""
823
 
824
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:127
825
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:97
826
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:98
827
  msgid ""
828
+ "You can choose to link each thumbnail to the full size image, or to the "
829
+ "image's attachment page, or you can choose to not link to anything."
830
  msgstr ""
831
 
832
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:132
833
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:102
834
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:103
835
+ msgid ""
836
+ "Choose which lightbox you want to display images with. The lightbox will "
837
+ "only work if you set the thumbnail link to \"Full Size Image\"."
838
  msgstr ""
839
 
840
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:139
841
+ msgid "Last Row"
 
842
  msgstr ""
843
 
844
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:140
845
+ msgid "What should be done with the last row in the gallery?"
846
  msgstr ""
847
 
848
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:146
849
+ #: includes/class-foogallery-paging.php:178
850
+ #: includes/class-foogallery-paging.php:199
851
+ #: includes/class-foogallery-paging.php:220
852
+ msgid "Hide"
853
+ msgstr ""
854
+
855
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:147
856
+ msgid "Justify"
857
  msgstr ""
858
 
859
+ #: extensions/default-templates/justified/class-justified-gallery-template.php:148
860
+ msgid "No Justify"
861
  msgstr ""
862
 
863
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:60
864
+ msgid "Masonry Image Gallery"
865
  msgstr ""
866
 
867
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:71
868
+ msgid "Thumb Width"
869
  msgstr ""
870
 
871
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:72
872
  msgid ""
873
+ "Choose the width of your thumbnails. Thumbnails will be generated on the fly "
874
+ "and cached once generated"
875
  msgstr ""
876
 
877
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:86
878
+ msgid "Masonry Layout"
879
  msgstr ""
880
 
881
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:87
882
+ msgid "Choose a fixed width thumb layout, or responsive columns."
883
  msgstr ""
884
 
885
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:91
886
+ msgid "Fixed Width"
 
 
887
  msgstr ""
888
 
889
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:92
890
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:185
891
+ msgid "2 Columns"
 
 
 
892
  msgstr ""
893
 
894
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:93
895
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:186
896
+ msgid "3 Columns"
 
 
 
897
  msgstr ""
898
 
899
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:94
900
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:187
901
+ msgid "4 Columns"
902
  msgstr ""
903
 
904
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:95
905
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:188
906
+ msgid "5 Columns"
907
+ msgstr ""
908
+
909
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:106
910
+ msgid "Gutter Width"
911
  msgstr ""
912
 
913
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:107
914
  msgid ""
915
+ "The spacing between your thumbnails. Only applicable when using a fixed "
916
+ "layout!"
 
 
917
  msgstr ""
918
 
919
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:125
920
+ msgid "Gutter Size"
921
  msgstr ""
922
 
923
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:126
924
+ msgid "Choose a gutter size when using responsive columns."
925
  msgstr ""
926
 
927
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:130
928
+ msgid "No Gutter"
929
  msgstr ""
930
 
931
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:131
932
+ msgid "Normal Size Gutter"
 
 
 
 
933
  msgstr ""
934
 
935
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:132
936
+ msgid "Larger Gutter"
937
  msgstr ""
938
 
939
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:148
940
  msgid ""
941
+ "You can choose to center align your images or leave them at the default "
942
+ "(left). Only applicable when using a fixed layout!"
943
  msgstr ""
944
 
945
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:170
946
+ msgid ""
947
+ "You can choose to link each thumbnail to the full size image, or to the "
948
+ "image's attachment page, or you can choose to not link to anything"
949
  msgstr ""
950
 
951
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:175
952
  msgid ""
953
+ "Choose which lightbox you want to display images with. The lightbox will "
954
+ "only work if you set the thumbnail link to \"Full Size Image\""
955
  msgstr ""
956
 
957
+ #: extensions/default-templates/masonry/class-masonry-gallery-template.php:305
958
+ msgid "Below Thumbnail"
959
+ msgstr ""
960
+
961
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:59
962
+ msgid "Simple Portfolio"
963
+ msgstr ""
964
+
965
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:70
966
+ msgid "Tip"
967
  msgstr ""
968
 
969
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:74
970
  msgid ""
971
+ "The Simple Portfolio template works best when you have <strong>captions and "
972
+ "descriptions</strong> set for every attachment in the gallery. To change "
973
+ "captions and descriptions, simply hover over the thumbnail above and click "
974
+ "the \"i\" icon."
975
  msgstr ""
976
 
977
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:109
978
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:109
979
+ msgid "Gutter"
980
  msgstr ""
981
 
982
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:110
983
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:110
984
+ msgid "The spacing between each thumbnail in the gallery."
985
  msgstr ""
986
 
987
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:144
988
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:144
989
+ msgid "Caption Position"
 
990
  msgstr ""
991
 
992
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:145
993
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:145
994
+ msgid "Where the captions are displayed in relation to the thumbnail."
995
  msgstr ""
996
 
997
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:146
998
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:129
999
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:140
1000
+ #: includes/admin/class-settings.php:113 includes/admin/class-settings.php:130
1001
+ #: includes/class-foogallery-common-fields.php:418
1002
+ #: includes/class-foogallery-common-fields.php:428
1003
+ #: includes/class-foogallery-common-fields.php:449
1004
+ #: includes/class-foogallery-common-fields.php:470
1005
+ #: includes/class-foogallery-common-fields.php:489
1006
+ #: includes/class-foogallery-common-fields.php:508
1007
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:146
1008
+ msgid "Captions"
1009
  msgstr ""
1010
 
1011
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:151
1012
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:208
1013
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:151
1014
+ msgid "Below"
1015
  msgstr ""
1016
 
1017
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:152
1018
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:152
1019
+ msgid "Above"
1020
  msgstr ""
1021
 
1022
+ #: extensions/default-templates/simple-portfolio/class-simple-portfolio-gallery-template.php:190
1023
+ #: includes/class-foogallery-common-fields.php:348
1024
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:203
1025
+ msgid "Always Visible"
1026
  msgstr ""
1027
 
1028
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:61
1029
  msgid "Single Thumbnail Gallery"
1030
  msgstr ""
1031
 
1032
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:73
1033
  msgid ""
1034
  "This gallery template only shows a single thumbnail, but the true power "
1035
  "shines through when the thumbnail is clicked, because then the lightbox "
1036
  "takes over and the user can view all the images in the gallery."
1037
  msgstr ""
1038
 
1039
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:77
1040
+ msgid "Size"
1041
+ msgstr ""
1042
+
1043
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:78
1044
  msgid "Choose the size of your thumbnail."
1045
  msgstr ""
1046
 
1047
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:93
1048
+ #: includes/class-foogallery-paging.php:83
1049
+ #: pro/includes/class-foogallery-pro-filtering.php:132
1050
  msgid "Position"
1051
  msgstr ""
1052
 
1053
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:94
1054
  msgid "The position of the thumbnail related to the content around it."
1055
  msgstr ""
1056
 
1057
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:99
1058
+ msgid "Full Center"
1059
+ msgstr ""
1060
+
1061
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:100
1062
+ msgid "Full Left"
1063
+ msgstr ""
1064
+
1065
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:101
1066
+ msgid "Full Right"
1067
  msgstr ""
1068
 
1069
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:102
1070
  msgid "Float Left"
1071
  msgstr ""
1072
 
1073
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:103
1074
  msgid "Float Right"
1075
  msgstr ""
1076
 
1077
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:112
1078
  msgid "Link To Custom URL"
1079
  msgstr ""
1080
 
1081
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:116
1082
  msgid ""
1083
  "You can link your thumbnails to Custom URL's (if they are set on your "
1084
  "attachments). Fallback will be to the full size image."
1085
  msgstr ""
1086
 
1087
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:122
1088
+ msgid "Choose which lightbox you want to use."
1089
  msgstr ""
1090
 
1091
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:128
1092
+ msgid "Override Title"
 
 
 
 
1093
  msgstr ""
1094
 
1095
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:130
1096
+ msgid "Leave blank if you do not want a caption title."
1097
  msgstr ""
1098
 
1099
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:139
1100
+ msgid "Override Description"
1101
  msgstr ""
1102
 
1103
+ #: extensions/default-templates/thumbnail/class-thumbnail-gallery-template.php:141
1104
+ msgid "Leave blank if you do not want a caption description."
1105
  msgstr ""
1106
 
1107
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:44
1108
+ msgid "NextGen Importer"
1109
  msgstr ""
1110
 
1111
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:158
1112
+ msgid "Import Your NextGen Galleries"
1113
  msgstr ""
1114
 
1115
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:160
1116
+ msgid "Import Galleries"
1117
  msgstr ""
1118
 
1119
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:164
1120
+ #, php-format
1121
+ msgid ""
1122
+ "Import all your NextGen galleries in a single click, or choose the galleries "
1123
+ "you would like to migrate over to %s."
1124
  msgstr ""
1125
 
1126
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:166
1127
+ msgid "Import Images"
1128
  msgstr ""
1129
 
1130
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:168
1131
+ msgid ""
1132
+ "NextGen gallery images are imported into your WordPress media library, where "
1133
+ "they should be!"
1134
  msgstr ""
1135
 
1136
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:184
1137
+ msgid "Replace Shortcodes"
1138
  msgstr ""
1139
 
1140
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:223
1141
+ msgid "posts found containing the shortcode"
1142
  msgstr ""
1143
 
1144
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:225
1145
+ msgid "shortcodes found that can be replaced!"
1146
  msgstr ""
1147
 
1148
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:228
1149
+ msgid ""
1150
+ "shortcodes found that cannot be replaced, due to the gallery not being "
1151
+ "imported."
1152
  msgstr ""
1153
 
1154
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:231
1155
+ msgid "NO posts were found containing the shortcode"
1156
  msgstr ""
1157
 
1158
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:257
1159
+ msgid "shortcodes were replaced!"
1160
  msgstr ""
1161
 
1162
+ #: extensions/nextgen-importer/class-nextgen-gallery-importer-extension.php:259
1163
+ msgid "NO replacements were made for the shortcode"
1164
  msgstr ""
1165
 
1166
+ #: extensions/nextgen-importer/class-nextgen-helper.php:245
1167
+ msgid "Select All"
 
 
1168
  msgstr ""
1169
 
1170
+ #: extensions/nextgen-importer/class-nextgen-helper.php:250
1171
+ msgid "NextGen Gallery"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1172
  msgstr ""
1173
 
1174
  #: extensions/nextgen-importer/class-nextgen-helper.php:253
1180
  msgid "Import Progress"
1181
  msgstr ""
1182
 
1183
+ #: extensions/nextgen-importer/class-nextgen-helper.php:324
1184
  #, php-format
1185
  msgid "(%s images)"
1186
  msgstr ""
1187
 
1188
+ #: extensions/nextgen-importer/class-nextgen-helper.php:361
1189
  msgid "Start Import"
1190
  msgstr ""
1191
 
1192
+ #: extensions/nextgen-importer/class-nextgen-helper.php:363
1193
  msgid "Resume Import"
1194
  msgstr ""
1195
 
1196
+ #: extensions/nextgen-importer/class-nextgen-helper.php:365
1197
  msgid "Stop Import"
1198
  msgstr ""
1199
 
1200
+ #: extensions/nextgen-importer/class-nextgen-helper.php:369
1201
  msgid "Reset All Gallery Imports"
1202
  msgstr ""
1203
 
1204
+ #: extensions/nextgen-importer/class-nextgen-helper.php:396
1205
  msgid "NextGen Album"
1206
  msgstr ""
1207
 
1208
+ #: extensions/nextgen-importer/class-nextgen-helper.php:399
1209
  msgid "Album Name"
1210
  msgstr ""
1211
 
1212
+ #: extensions/nextgen-importer/class-nextgen-helper.php:402
1213
  msgid "NextGen Galleries"
1214
  msgstr ""
1215
 
1216
+ #: extensions/nextgen-importer/class-nextgen-helper.php:405
1217
  msgid "Import Options"
1218
  msgstr ""
1219
 
1220
+ #: extensions/nextgen-importer/class-nextgen-helper.php:450
1221
  msgid "[Album] "
1222
  msgstr ""
1223
 
1224
+ #: extensions/nextgen-importer/class-nextgen-helper.php:455
1225
  msgid "nested albums not supported"
1226
  msgstr ""
1227
 
1228
+ #: extensions/nextgen-importer/class-nextgen-helper.php:470
1229
  msgid "imported"
1230
  msgstr ""
1231
 
1232
+ #: extensions/nextgen-importer/class-nextgen-helper.php:470
1233
  msgid "not imported"
1234
  msgstr ""
1235
 
1236
+ #: extensions/nextgen-importer/class-nextgen-helper.php:475
1237
+ msgid "No galleries in album!"
1238
+ msgstr ""
1239
+
1240
+ #: extensions/nextgen-importer/class-nextgen-helper.php:493
1241
  msgid "All galleries will be linked"
1242
  msgstr ""
1243
 
1244
+ #: extensions/nextgen-importer/class-nextgen-helper.php:495
1245
  #, php-format
1246
  msgid "%d/%d galleries will be linked"
1247
  msgstr ""
1248
 
1249
+ #: extensions/nextgen-importer/class-nextgen-helper.php:497
1250
  msgid "(Only previously imported galleries can be linked)"
1251
  msgstr ""
1252
 
1253
+ #: extensions/nextgen-importer/class-nextgen-helper.php:500
1254
  msgid "No galleries imported yet!!"
1255
  msgstr ""
1256
 
1257
+ #: extensions/nextgen-importer/class-nextgen-helper.php:518
1258
  msgid "Reset All Album Imports"
1259
  msgstr ""
1260
 
1268
  msgstr ""
1269
 
1270
  #: extensions/nextgen-importer/class-nextgen-import-progress-album.php:30
1271
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:71
1272
  msgid "Unknown status!"
1273
  msgstr ""
1274
 
1275
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:50
1276
  msgid "Not imported"
1277
  msgstr ""
1278
 
1279
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:53
1280
  msgid "Queued for import"
1281
  msgstr ""
1282
 
1283
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:56
1284
  #, php-format
1285
  msgid "Imported %d of %d image(s)"
1286
  msgstr ""
1287
 
1288
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:60
1289
  #, php-format
1290
  msgid "Done! %d image(s) imported"
1291
  msgstr ""
1292
 
1293
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:64
1294
+ msgid "No images to import!"
1295
+ msgstr ""
1296
+
1297
+ #: extensions/nextgen-importer/class-nextgen-import-progress.php:66
1298
+ msgid "Error while importing!"
1299
+ msgstr ""
1300
+
1301
+ #: extensions/nextgen-importer/view-importer.php:115
1302
  msgid ""
1303
  "Something went wrong with the import and the page will now reload. Once it "
1304
  "has reloaded, click \"Resume Import\" to continue with the import."
1305
  msgstr ""
1306
 
1307
+ #: extensions/nextgen-importer/view-importer.php:156
1308
  msgid "Are you sure you want to cancel?"
1309
  msgstr ""
1310
 
1311
+ #: extensions/nextgen-importer/view-importer.php:163
1312
  msgid ""
1313
  "Are you sure you want to reset all NextGen gallery import data? This may "
1314
  "result in duplicate galleries and media attachments!"
1315
  msgstr ""
1316
 
1317
+ #: extensions/nextgen-importer/view-importer.php:170
1318
  msgid ""
1319
  "Are you sure you want to reset all NextGen album import data? This may "
1320
  "result in duplicate albums if you decide to import again!"
1321
  msgstr ""
1322
 
1323
+ #: extensions/nextgen-importer/view-importer.php:200
1324
  msgid "Something went wrong with the import and the page will now reload."
1325
  msgstr ""
1326
 
1327
+ #: extensions/nextgen-importer/view-importer.php:229
1328
+ msgid ""
1329
+ "Something went wrong with finding shortcodes, so the page will now reload."
1330
+ msgstr ""
1331
+
1332
+ #: extensions/nextgen-importer/view-importer.php:258
1333
+ msgid ""
1334
+ "Something went wrong with replacing shortcodes, so the page will now reload."
1335
+ msgstr ""
1336
+
1337
+ #: extensions/nextgen-importer/view-importer.php:291
1338
  msgid "NextGen Gallery And Album Importer"
1339
  msgstr ""
1340
 
1341
+ #: extensions/nextgen-importer/view-importer.php:296
1342
+ #: pro/includes/class-foogallery-pro-gallery-override.php:25
1343
+ msgid "Shortcodes"
1344
+ msgstr ""
1345
+
1346
+ #: extensions/nextgen-importer/view-importer.php:302
1347
  msgid "There are no NextGen galleries to import!"
1348
  msgstr ""
1349
 
1350
+ #: extensions/nextgen-importer/view-importer.php:305
1351
  msgid "Importing galleries is really simple:"
1352
  msgstr ""
1353
 
1354
+ #: extensions/nextgen-importer/view-importer.php:307
1355
  #, php-format
1356
  msgid ""
1357
  "Choose the NextGen galleries you want to import into %s by checking their "
1358
  "checkboxes."
1359
  msgstr ""
1360
 
1361
+ #: extensions/nextgen-importer/view-importer.php:308
1362
  msgid "Click the Start Import button to start the import process."
1363
  msgstr ""
1364
 
1365
+ #: extensions/nextgen-importer/view-importer.php:309
1366
  #, php-format
1367
  msgid ""
1368
  "Once a gallery is imported, you can click on the link under the %s Name "
1369
  "column to edit the gallery."
1370
  msgstr ""
1371
 
1372
+ #: extensions/nextgen-importer/view-importer.php:311
1373
  msgid ""
1374
  "Please note: importing large galleries with lots of images can take a while!"
1375
  msgstr ""
1376
 
1377
+ #: extensions/nextgen-importer/view-importer.php:322
1378
  msgid "There are no NextGen albums to import!"
1379
  msgstr ""
1380
 
1381
+ #: extensions/nextgen-importer/view-importer.php:325
1382
  msgid "Importing albums is also really simple:"
1383
  msgstr ""
1384
 
1385
+ #: extensions/nextgen-importer/view-importer.php:327
1386
  msgid ""
1387
  "For all the albums you wish to import, make sure all the galleries have been "
1388
  "imported FIRST. If not, then go back to the Galleries tab."
1389
  msgstr ""
1390
 
1391
+ #: extensions/nextgen-importer/view-importer.php:328
1392
  msgid ""
1393
  "Click the Import Album button for each album to import the album and link "
1394
  "all the galleries. If you do not see the button, then that means you first "
1395
  "need to import the galleries."
1396
  msgstr ""
1397
 
1398
+ #: extensions/nextgen-importer/view-importer.php:329
1399
  msgid ""
1400
  "Once an album is imported, you can click on the link under the Album Name "
1401
  "column to edit the album."
1402
  msgstr ""
1403
 
1404
+ #: extensions/nextgen-importer/view-importer.php:340
1405
+ msgid ""
1406
+ "Replacing NextGen shortcodes will only work with galleries that have already "
1407
+ "been imported."
1408
+ msgstr ""
1409
+
1410
+ #: extensions/nextgen-importer/view-importer.php:342
1411
+ msgid ""
1412
+ "Supported NextGen shortcodes: [ngg_images], [nggallery], [slideshow], "
1413
+ "[imagebrowse]"
1414
+ msgstr ""
1415
+
1416
+ #: extensions/nextgen-importer/view-importer.php:345
1417
+ msgid "Find Shortcodes"
1418
+ msgstr ""
1419
+
1420
+ #: foogallery.php:224
1421
+ #, php-format
1422
+ msgid "Hey %s"
1423
+ msgstr ""
1424
+
1425
+ #: foogallery.php:226
1426
+ #, php-format
1427
+ msgid ""
1428
+ "<h2>Thank you for updating to %1$s v%5$s!</h2>Our goal with this update is "
1429
+ "to make %1$s the best gallery plugin for WordPress, but we need your help!"
1430
+ "<br><br>We have introduced this opt-in so that you can help us improve %1$s "
1431
+ "by simply clicking <strong>Allow &amp; Continue</strong>.<br><br>If you opt-"
1432
+ "in, some data about your usage of %1$s will be sent to %4$s. If you skip "
1433
+ "this, that's okay! %1$s will still work just fine."
1434
+ msgstr ""
1435
+
1436
+ #: foogallery.php:243
1437
+ msgid "FooGallery Opt-In"
1438
+ msgstr ""
1439
+
1440
+ #: foogallery.php:244
1441
+ msgid "Activation"
1442
+ msgstr ""
1443
+
1444
+ #: includes/WPThumb/wpthumb.crop-from-position.php:51
1445
  msgid "Crop Position"
1446
  msgstr ""
1447
 
1448
+ #: includes/WPThumb/wpthumb.php:775
1449
  msgid "WPThumb has detected a problem."
1450
  msgstr ""
1451
 
1452
+ #: includes/WPThumb/wpthumb.php:775
1453
  #, php-format
1454
  msgid "The directory <code>%s</code> is not writable."
1455
  msgstr ""
1458
  msgid "Watermark"
1459
  msgstr ""
1460
 
1461
+ #: includes/admin/class-admin-notices.php:71
1462
+ msgid "Thumbnail Generation Alert!"
 
 
1463
  msgstr ""
1464
 
1465
+ #: includes/admin/class-admin-notices.php:72
1466
+ msgid ""
1467
+ "There is a problem generating thumbnails for your gallery. Please check that "
1468
+ "your hosting provider has the GD Image Library extension installed and "
1469
+ "enabled."
1470
  msgstr ""
1471
 
1472
+ #: includes/admin/class-admin-notices.php:73
1473
+ msgid ""
1474
+ "If thumbnails cannot be generated, then full-sized, uncropped images will be "
1475
+ "used instead. This will result in slow page load times, and thumbnails that "
1476
+ "do not look correct."
1477
  msgstr ""
1478
 
1479
+ #: includes/admin/class-admin.php:67 includes/admin/class-menu.php:34
1480
+ #: includes/admin/class-settings.php:155 includes/admin/view-help.php:47
1481
+ #: includes/admin/view-system-info.php:83
1482
+ msgid "Extensions"
1483
  msgstr ""
1484
 
1485
+ #: includes/admin/class-admin.php:69 includes/admin/class-menu.php:38
1486
+ msgid "Help"
1487
  msgstr ""
1488
 
1489
  #: includes/admin/class-attachment-fields.php:22
1490
+ #: includes/compatibility/class-foobox-compatibility.php:96
1491
  msgid "FooBox"
1492
  msgstr ""
1493
 
 
 
 
 
 
1494
  #: includes/admin/class-attachment-fields.php:29
1495
  msgid "Point your attachment to a custom URL"
1496
  msgstr ""
1497
 
 
 
 
 
 
1498
  #: includes/admin/class-attachment-fields.php:36
1499
  msgid "Set a custom target for your attachment"
1500
  msgstr ""
1501
 
1502
+ #: includes/admin/class-columns.php:27
1503
+ msgid "Usage"
1504
+ msgstr ""
1505
+
1506
+ #: includes/admin/class-columns.php:83
1507
+ msgid "Not used!"
1508
  msgstr ""
1509
 
1510
  #: includes/admin/class-extensions.php:86
1519
  msgid "Activation Error!"
1520
  msgstr ""
1521
 
1522
+ #: includes/admin/class-gallery-editor.php:52
1523
  #, php-format
1524
  msgid "Add Gallery From %s"
1525
  msgstr ""
1526
 
1527
+ #: includes/admin/class-gallery-editor.php:55
1528
  #, php-format
1529
  msgid "Add %s"
1530
  msgstr ""
1531
 
1532
+ #: includes/admin/class-gallery-editor.php:281
1533
+ msgid "Choose a Gallery to Insert"
1534
  msgstr ""
1535
 
1536
+ #: includes/admin/class-gallery-editor.php:284
1537
  #: includes/admin/view-extensions.php:60
1538
  msgid "Reload"
1539
  msgstr ""
1540
 
1541
+ #: includes/admin/class-gallery-editor.php:291
1542
+ msgid "Loading galleries..."
1543
  msgstr ""
1544
 
1545
+ #: includes/admin/class-gallery-editor.php:296
1546
  msgid "Select A Gallery"
1547
  msgstr ""
1548
 
1549
+ #: includes/admin/class-gallery-editor.php:298
1550
  msgid ""
1551
  "Select a gallery by clicking it, and then click the \"Insert Gallery\" "
1552
  "button to insert it into your content."
1553
  msgstr ""
1554
 
1555
+ #: includes/admin/class-gallery-editor.php:300
1556
  msgid "Add A Gallery"
1557
  msgstr ""
1558
 
1559
+ #: includes/admin/class-gallery-editor.php:302
1560
  msgid ""
1561
  "You can add a new gallery by clicking the \"Add New Gallery\" tile on the "
1562
  "left. It will open in a new window."
1563
  msgstr ""
1564
 
1565
+ #: includes/admin/class-gallery-editor.php:305
1566
  msgid ""
1567
  "Once you have finished adding a gallery, come back to this dialog and click "
1568
  "the \"Reload\" button to see your newly created gallery."
1569
  msgstr ""
1570
 
1571
+ #: includes/admin/class-gallery-editor.php:318
1572
  msgid "Cancel"
1573
  msgstr ""
1574
 
1575
+ #: includes/admin/class-gallery-editor.php:322
1576
  msgid "Insert Gallery"
1577
  msgstr ""
1578
 
1579
+ #: includes/admin/class-gallery-editor.php:382 includes/class-posttypes.php:29
1580
  msgid "Add New Gallery"
1581
  msgstr ""
1582
 
1583
+ #: includes/admin/class-gallery-metabox-fields.php:166
1584
+ #: includes/admin/class-gallery-metabox-fields.php:178
1585
  msgid "Width"
1586
  msgstr ""
1587
 
1588
+ #: includes/admin/class-gallery-metabox-fields.php:168
1589
+ #: includes/admin/class-gallery-metabox-fields.php:180
1590
  msgid "Height"
1591
  msgstr ""
1592
 
1593
+ #: includes/admin/class-gallery-metabox-fields.php:172
1594
  msgid "Crop thumbnail to exact dimensions"
1595
  msgstr ""
1596
 
1597
+ #: includes/admin/class-gallery-metaboxes.php:69
1598
+ msgid "Gallery Items"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1599
  msgstr ""
1600
 
1601
+ #: includes/admin/class-gallery-metaboxes.php:78
1602
+ msgid "Gallery Settings"
1603
  msgstr ""
1604
 
1605
+ #: includes/admin/class-gallery-metaboxes.php:87
1606
+ msgid "Gallery Shortcode"
1607
  msgstr ""
1608
 
1609
+ #: includes/admin/class-gallery-metaboxes.php:96
1610
+ msgid "Gallery Usage"
1611
  msgstr ""
1612
 
1613
+ #: includes/admin/class-gallery-metaboxes.php:115
1614
+ msgid "Retina Support"
1615
  msgstr ""
1616
 
1617
+ #: includes/admin/class-gallery-metaboxes.php:124
1618
+ msgid "Gallery Sorting"
1619
  msgstr ""
1620
 
1621
+ #: includes/admin/class-gallery-metaboxes.php:133
1622
+ msgid "Thumbnails"
1623
  msgstr ""
1624
 
1625
+ #: includes/admin/class-gallery-metaboxes.php:251
1626
+ msgid "Manage Items"
1627
  msgstr ""
1628
 
1629
+ #: includes/admin/class-gallery-metaboxes.php:252
1630
+ msgid "Gallery Preview"
1631
  msgstr ""
1632
 
1633
+ #: includes/admin/class-gallery-metaboxes.php:273
1634
+ #: includes/admin/class-gallery-metaboxes.php:276
1635
  msgid "Add Media To Gallery"
1636
  msgstr ""
1637
 
1638
+ #: includes/admin/class-gallery-metaboxes.php:274
1639
+ #: includes/admin/class-gallery-metaboxes.php:278
1640
  msgid "Add Media"
1641
  msgstr ""
1642
 
1643
+ #: includes/admin/class-gallery-metaboxes.php:306
1644
+ msgid "Please add media to your gallery to see a preview!"
 
 
 
 
1645
  msgstr ""
1646
 
1647
+ #: includes/admin/class-gallery-metaboxes.php:328
1648
+ msgid "Edit Info"
 
1649
  msgstr ""
1650
 
1651
+ #: includes/admin/class-gallery-metaboxes.php:331
1652
+ msgid "Remove from gallery"
 
 
1653
  msgstr ""
1654
 
1655
+ #: includes/admin/class-gallery-metaboxes.php:358
1656
  msgid "Paste the above shortcode into a post or page to show the gallery."
1657
  msgstr ""
1658
 
1659
+ #: includes/admin/class-gallery-metaboxes.php:386
1660
  msgid "This gallery is used on the following posts or pages:"
1661
  msgstr ""
1662
 
1663
+ #: includes/admin/class-gallery-metaboxes.php:392
1664
  msgid "Edit"
1665
  msgstr ""
1666
 
1667
+ #: includes/admin/class-gallery-metaboxes.php:393
1668
  msgid "View"
1669
  msgstr ""
1670
 
1671
+ #: includes/admin/class-gallery-metaboxes.php:398
1672
  msgid ""
1673
  "This gallery is not used on any pages or pages yet. Quickly create a page:"
1674
  msgstr ""
1675
 
1676
+ #: includes/admin/class-gallery-metaboxes.php:401
1677
  msgid "Create Gallery Page"
1678
  msgstr ""
1679
 
1680
+ #: includes/admin/class-gallery-metaboxes.php:406
1681
  msgid ""
1682
  "A draft page will be created which includes the gallery shortcode in the "
1683
  "content. The title of the page will be the same title as the gallery."
1684
  msgstr ""
1685
 
1686
+ #: includes/admin/class-gallery-metaboxes.php:419
1687
  msgid ""
1688
  "Change the way images are sorted within your gallery. By default, they are "
1689
  "sorted in the order you see them."
1690
  msgstr ""
1691
 
1692
+ #: includes/admin/class-gallery-metaboxes.php:429
1693
+ msgid ""
1694
+ "PLEASE NOTE : sorting randomly will force HTML Caching for the gallery to be "
1695
+ "disabled."
1696
+ msgstr ""
1697
+
1698
+ #: includes/admin/class-gallery-metaboxes.php:442
1699
+ msgid ""
1700
+ "Add retina support to this gallery by choosing the different pixel densities "
1701
+ "you want to enable."
1702
+ msgstr ""
1703
+
1704
+ #: includes/admin/class-gallery-metaboxes.php:454
1705
+ msgid ""
1706
+ "PLEASE NOTE : thumbnails will be generated for each of the pixel densities "
1707
+ "chosen, which will increase your website's storage space!"
1708
+ msgstr ""
1709
+
1710
+ #: includes/admin/class-gallery-metaboxes.php:464
1711
  msgid ""
1712
  "Clear all the previously cached thumbnails that have been generated for this "
1713
  "gallery."
1714
  msgstr ""
1715
 
1716
+ #: includes/admin/class-gallery-metaboxes.php:467
1717
  msgid "Clear Thumbnail Cache"
1718
  msgstr ""
1719
 
1720
+ #: includes/admin/class-gallery-metaboxes.php:473
1721
+ msgid "Force Original Thumbs"
1722
+ msgstr ""
1723
+
1724
+ #: includes/admin/class-gallery-metaboxes.php:522
1725
  #, php-format
1726
  msgid "Add any custom CSS to target this specific gallery. For example %s"
1727
  msgstr ""
1728
 
1729
+ #: includes/admin/class-gallery-metaboxes.php:575
1730
  msgid "The thumbnail cache has been cleared!"
1731
  msgstr ""
1732
 
1733
+ #: includes/admin/class-gallery-metaboxes.php:611
1734
+ msgid "Preview not available!"
1735
+ msgstr ""
1736
+
1737
+ #: includes/admin/class-gallery-metaboxes.php:612
1738
+ msgid ""
1739
+ "Sorry, but this gallery template does not support live previews. Please "
1740
+ "update the gallery in order to see what the gallery will look like."
1741
+ msgstr ""
1742
+
1743
  #: includes/admin/class-menu.php:29
1744
  #, php-format
1745
  msgid "%s Settings"
1760
  msgid "%s System Information"
1761
  msgstr ""
1762
 
1763
+ #: includes/admin/class-menu.php:42 includes/admin/view-help.php:54
1764
  msgid "System Info"
1765
  msgstr ""
1766
 
1767
+ #: includes/admin/class-menu.php:80
1768
+ #, php-format
1769
+ msgid "%s settings reset to defaults."
1770
+ msgstr ""
1771
+
1772
+ #: includes/admin/class-menu.php:86
1773
  #, php-format
1774
  msgid "%s settings updated."
1775
  msgstr ""
1782
  msgid "Image Optimization"
1783
  msgstr ""
1784
 
1785
+ #: includes/admin/class-settings.php:33
1786
+ msgid "Clear CSS Cache"
1787
  msgstr ""
1788
 
1789
+ #: includes/admin/class-settings.php:34
1790
+ #, php-format
1791
+ msgid ""
1792
+ "%s optimizes the way it loads gallery stylesheets to improve page "
1793
+ "performance. This can lead to the incorrect CSS being loaded in some cases. "
1794
+ "Use this button to clear all the CSS optimizations that have been cached "
1795
+ "across all galleries."
1796
+ msgstr ""
1797
+
1798
+ #: includes/admin/class-settings.php:37 includes/class-foogallery-cache.php:176
1799
+ #: includes/class-foogallery-cache.php:185
1800
+ msgid "Cache"
1801
+ msgstr ""
1802
+
1803
+ #: includes/admin/class-settings.php:48
1804
  msgid "Default Gallery Template"
1805
  msgstr ""
1806
 
1807
+ #: includes/admin/class-settings.php:49
1808
  msgid "The default gallery template to use for new galleries"
1809
  msgstr ""
1810
 
1811
+ #: includes/admin/class-settings.php:54 includes/admin/class-settings.php:65
1812
+ #: includes/admin/class-settings.php:97
1813
  msgid "Gallery Defaults"
1814
  msgstr ""
1815
 
1816
+ #: includes/admin/class-settings.php:59
1817
  msgid "Default Gallery Sorting"
1818
  msgstr ""
1819
 
1820
+ #: includes/admin/class-settings.php:60
1821
  msgid "The default attachment sorting to use for new galleries"
1822
  msgstr ""
1823
 
1824
+ #: includes/admin/class-settings.php:85
1825
+ msgid "No default"
1826
+ msgstr ""
1827
+
1828
+ #: includes/admin/class-settings.php:92
1829
  msgid "Default Gallery Settings"
1830
  msgstr ""
1831
 
1832
+ #: includes/admin/class-settings.php:93
1833
  msgid ""
1834
  "When creating a new gallery, it can use the settings from an existing "
1835
  "gallery as the default settings. This will save you time when creating many "
1836
  "galleries that all have the same look and feel."
1837
  msgstr ""
1838
 
1839
+ #: includes/admin/class-settings.php:102
1840
+ msgid "Caption Title Source"
1841
+ msgstr ""
1842
+
1843
+ #: includes/admin/class-settings.php:103
1844
+ msgid ""
1845
+ "By default, image caption titles are pulled from the attachment \"Caption\" "
1846
+ "field. Alternatively, you can choose to use other fields."
1847
+ msgstr ""
1848
+
1849
+ #: includes/admin/class-settings.php:119
1850
+ msgid "Caption Description Source"
1851
+ msgstr ""
1852
+
1853
+ #: includes/admin/class-settings.php:120
1854
+ msgid ""
1855
+ "By default, image caption descriptions are pulled from the attachment "
1856
+ "\"Description\" field. Alternatively, you can choose to use other fields."
1857
+ msgstr ""
1858
+
1859
+ #: includes/admin/class-settings.php:136
1860
  msgid "Hide Gallery Template Help"
1861
  msgstr ""
1862
 
1863
+ #: includes/admin/class-settings.php:137
1864
  msgid ""
1865
  "Some gallery templates show helpful tips, which are useful for new users. "
1866
  "You can choose to hide these tips."
1867
  msgstr ""
1868
 
1869
+ #: includes/admin/class-settings.php:140 includes/admin/class-settings.php:149
1870
  msgid "Admin"
1871
  msgstr ""
1872
 
1873
+ #: includes/admin/class-settings.php:145
1874
  msgid "Hide WYSIWYG Editor Button"
1875
  msgstr ""
1876
 
1877
+ #: includes/admin/class-settings.php:146
1878
  #, php-format
1879
  msgid "If enabled, this will hide the \"Add %s\" button in the WYSIWYG editor."
1880
  msgstr ""
1881
 
1882
+ #: includes/admin/class-settings.php:159
1883
  msgid "Use Beta Endpoint"
1884
  msgstr ""
1885
 
1886
+ #: includes/admin/class-settings.php:160
1887
  msgid ""
1888
  "The list of available extensions are pulled from an external URL. You can "
1889
  "also pull from a \"beta\" endpoint which will sometimes contain beta "
1890
  "extensions that are not publicly available."
1891
  msgstr ""
1892
 
1893
+ #: includes/admin/class-settings.php:167
1894
  msgid "Images"
1895
  msgstr ""
1896
 
1897
+ #: includes/admin/class-settings.php:171
1898
  msgid "Thumbnail JPEG Quality"
1899
  msgstr ""
1900
 
1901
+ #: includes/admin/class-settings.php:172
1902
  msgid "The image quality to be used when resizing JPEG images."
1903
  msgstr ""
1904
 
1905
+ #: includes/admin/class-settings.php:180
1906
+ msgid "Default Retina Support"
1907
  msgstr ""
1908
 
1909
+ #: includes/admin/class-settings.php:181
 
1910
  msgid ""
1911
+ "Default retina support for all new galleries that are created. This can also "
1912
+ "be overridden for each gallery."
1913
+ msgstr ""
1914
+
1915
+ #: includes/admin/class-settings.php:189
1916
+ msgid "Use Original Thumbnails"
1917
+ msgstr ""
1918
+
1919
+ #: includes/admin/class-settings.php:190
1920
+ msgid ""
1921
+ "Allow for the original thumbnails to be used when possible. This can be "
1922
+ "useful if your thumbs are animated gifs.<br/>PLEASE NOTE : this will only "
1923
+ "work if your gallery thumbnail sizes are identical to your thumbnail sizes "
1924
+ "under Settings -> Media."
1925
  msgstr ""
1926
 
1927
+ #: includes/admin/class-settings.php:197
1928
  msgid "Resize Animated GIFs"
1929
  msgstr ""
1930
 
1931
+ #: includes/admin/class-settings.php:198
1932
  msgid ""
1933
  "Should animated gifs be resized or not. If enabled, only the first frame is "
1934
  "used in the resize."
1935
  msgstr ""
1936
 
1937
+ #: includes/admin/class-settings.php:205
1938
+ msgid "Show Animated Thumbnails"
1939
+ msgstr ""
1940
+
1941
+ #: includes/admin/class-settings.php:206
1942
+ msgid "If animated GIFs are used, then show the original GIF as the thumbnail."
1943
+ msgstr ""
1944
+
1945
+ #: includes/admin/class-settings.php:213
1946
+ msgid "Thumbnail Generation Test"
1947
+ msgstr ""
1948
+
1949
+ #: includes/admin/class-settings.php:214
1950
+ #, php-format
1951
+ msgid "Test to see if %s can generate the thumbnails it needs."
1952
+ msgstr ""
1953
+
1954
+ #: includes/admin/class-settings.php:246
1955
  msgid "Language"
1956
  msgstr ""
1957
 
1958
+ #: includes/admin/class-settings.php:250
1959
  msgid "Image Count None Text"
1960
  msgstr ""
1961
 
1962
+ #: includes/admin/class-settings.php:252 includes/class-foogallery.php:368
1963
+ #: includes/class-foogallery.php:376
1964
  msgid "No images"
1965
  msgstr ""
1966
 
1967
+ #: includes/admin/class-settings.php:258
1968
  msgid "Image Count Single Text"
1969
  msgstr ""
1970
 
1971
+ #: includes/admin/class-settings.php:260 includes/class-foogallery.php:369
1972
+ #: includes/class-foogallery.php:379
1973
  msgid "1 image"
1974
  msgstr ""
1975
 
1976
+ #: includes/admin/class-settings.php:266
1977
  msgid "Image Count Many Text"
1978
  msgstr ""
1979
 
1980
+ #: includes/admin/class-settings.php:268 includes/class-foogallery.php:370
1981
+ #: includes/class-foogallery.php:382
1982
  #, php-format
1983
  msgid "%s images"
1984
  msgstr ""
1985
 
1986
+ #: includes/admin/class-settings.php:274
1987
+ #: includes/class-foogallery-lazyload.php:134
1988
+ #: pro/includes/class-foogallery-pro-filtering.php:72
1989
+ msgid "Advanced"
1990
  msgstr ""
1991
 
1992
+ #: includes/admin/class-settings.php:278
1993
+ msgid "Custom Ready Event"
1994
  msgstr ""
1995
 
1996
+ #: includes/admin/class-settings.php:279
1997
+ msgid ""
1998
+ "By default the jQuery ready event is used, but there are sometimes "
1999
+ "unavoidable javascript errors on the page, which could result in the default "
2000
+ "gallery templates not initializing correctly. Enable this setting to use a "
2001
+ "built-in custom ready event to overcome this if needed."
2002
  msgstr ""
2003
 
2004
+ #: includes/admin/class-settings.php:286
2005
+ msgid "Enable Debugging"
2006
  msgstr ""
2007
 
2008
+ #: includes/admin/class-settings.php:287
2009
+ msgid ""
2010
+ "Helps to debug problems and diagnose issues. Enable debugging if you need "
2011
+ "support for an issue you are having."
2012
  msgstr ""
2013
 
2014
+ #: includes/admin/class-settings.php:294
2015
+ msgid "Full Uninstall"
2016
+ msgstr ""
2017
+
2018
+ #: includes/admin/class-settings.php:295
2019
+ #, php-format
2020
+ msgid ""
2021
+ "Run a full uninstall of %s, which includes removing all galleries, settings "
2022
+ "and metadata. This basically removes all traces of the plugin from your "
2023
+ "system. Please be careful - there is no undo!"
2024
+ msgstr ""
2025
+
2026
+ #: includes/admin/class-settings.php:323
2027
+ msgid "Clear CSS Optimization Cache"
2028
+ msgstr ""
2029
+
2030
+ #: includes/admin/class-settings.php:328
2031
+ msgid "Run Full Uninstall"
2032
+ msgstr ""
2033
+
2034
+ #: includes/admin/class-settings.php:333
2035
+ msgid "Run Tests"
2036
+ msgstr ""
2037
+
2038
+ #: includes/admin/class-settings.php:352
2039
+ msgid "Apply Defaults to all Galleries"
2040
+ msgstr ""
2041
+
2042
+ #: includes/admin/class-settings.php:365
2043
+ msgid "The CSS optimization cache was successfully cleared!"
2044
+ msgstr ""
2045
+
2046
+ #: includes/admin/class-settings.php:410
2047
+ #, php-format
2048
+ msgid "1 gallery successfully updated to use the default retina settings."
2049
+ msgid_plural ""
2050
+ "%s galleries successfully updated to use the default retina settings."
2051
+ msgstr[0] ""
2052
+ msgstr[1] ""
2053
+
2054
+ #: includes/admin/class-settings.php:422
2055
+ msgid "All traces of the plugin were removed from your system!"
2056
+ msgstr ""
2057
+
2058
+ #: includes/admin/view-extensions-build-your-own.php:23
2059
+ msgid "Please fill in all form fields!"
2060
+ msgstr ""
2061
+
2062
+ #: includes/admin/view-extensions-build-your-own.php:30
2063
+ msgid "Cool Thing"
2064
+ msgstr ""
2065
+
2066
+ #: includes/admin/view-extensions-build-your-own.php:32
2067
+ msgid "A cool description about what your cool thing can do"
2068
+ msgstr ""
2069
+
2070
+ #: includes/admin/view-extensions-build-your-own.php:95
2071
+ msgid "Build Your Own FooGallery Extensions!"
2072
  msgstr ""
2073
 
2074
  #: includes/admin/view-extensions-build-your-own.php:97
2179
  msgstr ""
2180
 
2181
  #: includes/admin/view-extensions-build-your-own.php:143
2182
+ #: includes/class-foogallery-common-fields.php:447
2183
  msgid "Description"
2184
  msgstr ""
2185
 
2245
  msgstr ""
2246
 
2247
  #: includes/admin/view-extensions-popup.php:50
2248
+ #: includes/admin/view-extensions.php:162
2249
  msgid "Activate"
2250
  msgstr ""
2251
 
2253
  msgid "Live Preview"
2254
  msgstr ""
2255
 
2256
+ #: includes/admin/view-extensions-popup.php:53
2257
+ msgid "Preview"
2258
+ msgstr ""
2259
+
2260
  #: includes/admin/view-extensions-popup.php:57
2261
  msgid "Delete"
2262
  msgstr ""
2273
  msgstr ""
2274
 
2275
  #: includes/admin/view-extensions.php:57
2276
+ msgid "Search extensions..."
2277
+ msgstr ""
2278
+
2279
+ #: includes/admin/view-extensions.php:110
2280
+ #: includes/admin/view-extensions.php:160
2281
+ msgid "downloading..."
2282
  msgstr ""
2283
 
2284
+ #: includes/admin/view-extensions.php:136
2285
+ msgid "Activated"
2286
+ msgstr ""
2287
+
2288
+ #: includes/admin/view-extensions.php:160
2289
  msgid "Are you sure you want to download this extension?"
2290
  msgstr ""
2291
 
2292
+ #: includes/admin/view-extensions.php:160
2293
  msgid "Download"
2294
  msgstr ""
2295
 
2296
+ #: includes/admin/view-extensions.php:162
2297
+ msgid "activating..."
2298
  msgstr ""
2299
 
2300
+ #: includes/admin/view-extensions.php:163
2301
+ msgid "deactivating..."
2302
  msgstr ""
2303
 
2304
+ #: includes/admin/view-extensions.php:163
2305
+ msgid "Deactivate"
2306
  msgstr ""
2307
 
2308
  #: includes/admin/view-help.php:4
2321
  msgid "Visit our homepage"
2322
  msgstr ""
2323
 
2324
+ #: includes/admin/view-help.php:44
2325
  msgid "Getting Started"
2326
  msgstr ""
2327
 
2328
+ #: includes/admin/view-help.php:50
2329
  msgid "Other Plugins"
2330
  msgstr ""
2331
 
2332
+ #: includes/admin/view-help.php:65
2333
  msgid "Creating Your First Gallery"
2334
  msgstr ""
2335
 
2336
+ #: includes/admin/view-help.php:67
2337
  #, php-format
2338
+ msgid "1. <a href=\"%s\">Galleries &rarr; Add New</a>"
2339
  msgstr ""
2340
 
2341
+ #: includes/admin/view-help.php:68
2342
  msgid ""
2343
  "To create your first gallery, simply click the Add New button or click the "
2344
+ "Add Gallery link in the menu."
 
2345
  msgstr ""
2346
 
2347
+ #: includes/admin/view-help.php:70
2348
+ msgid "2. Add Media"
2349
  msgstr ""
2350
 
2351
+ #: includes/admin/view-help.php:71
2352
  msgid ""
2353
+ "Click the Add Media button and choose images from the media library to "
2354
+ "include in your gallery."
2355
+ msgstr ""
2356
+
2357
+ #: includes/admin/view-help.php:73
2358
+ msgid "3. Choose a Template"
2359
  msgstr ""
2360
 
2361
  #: includes/admin/view-help.php:74
2362
+ msgid "We have loads of awesome built-in gallery templates to choose from."
2363
  msgstr ""
2364
 
2365
  #: includes/admin/view-help.php:76
2366
+ msgid "4. Adjust Your Settings"
 
 
2367
  msgstr ""
2368
 
2369
  #: includes/admin/view-help.php:77
 
 
 
 
 
 
 
 
2370
  msgid ""
2371
+ "There are tons of settings to help you customize the gallery to suit your "
2372
+ "needs."
 
 
 
 
2373
  msgstr ""
2374
 
2375
+ #: includes/admin/view-help.php:88
2376
  msgid "Show Off Your Gallery"
2377
  msgstr ""
2378
 
2379
+ #: includes/admin/view-help.php:90
2380
  #, php-format
2381
  msgid "The <em>[%s]</em> Short Code"
2382
  msgstr ""
2383
 
2384
+ #: includes/admin/view-help.php:91
2385
  msgid ""
2386
  "Simply copy the shortcode code from the gallery listing page and paste it "
2387
  "into your posts or pages."
2388
  msgstr ""
2389
 
2390
+ #: includes/admin/view-help.php:93
2391
  msgid "Visual Editor Button"
2392
  msgstr ""
2393
 
2394
+ #: includes/admin/view-help.php:94
2395
  #, php-format
2396
  msgid ""
2397
  "Or to make life even easier, you can insert a gallery using the Add %s "
2398
  "button inside the WordPress visual editor."
2399
  msgstr ""
2400
 
2401
+ #: includes/admin/view-help.php:96
2402
  msgid "Copy To Clipboard"
2403
  msgstr ""
2404
 
2405
+ #: includes/admin/view-help.php:97
2406
  msgid ""
2407
  "We make your life easy! Just click the shortcodes and they get copied to "
2408
  "your clipboard automatically. "
2409
  msgstr ""
2410
 
2411
+ #: includes/admin/view-system-info.php:39
2412
+ #, php-format
2413
+ msgid ""
2414
+ "Below is some information about your server configuration. You can use this "
2415
+ "info to help debug issues you may have with %s."
2416
  msgstr ""
2417
 
2418
+ #: includes/admin/view-system-info.php:69
2419
+ msgid "FooGallery version"
2420
  msgstr ""
2421
 
2422
+ #: includes/admin/view-system-info.php:70
2423
+ msgid "WordPress version"
 
 
 
2424
  msgstr ""
2425
 
2426
+ #: includes/admin/view-system-info.php:71
2427
+ msgid "Activated Theme"
2428
  msgstr ""
2429
 
2430
+ #: includes/admin/view-system-info.php:72
2431
+ msgid "WordPress URL"
 
 
 
2432
  msgstr ""
2433
 
2434
+ #: includes/admin/view-system-info.php:73
2435
+ msgid "PHP version"
2436
  msgstr ""
2437
 
2438
+ #: includes/admin/view-system-info.php:74
2439
+ msgid "PHP GD"
 
 
2440
  msgstr ""
2441
 
2442
+ #: includes/admin/view-system-info.php:74
2443
+ #: includes/admin/view-system-info.php:75
2444
+ msgid "Loaded"
 
 
2445
  msgstr ""
2446
 
2447
+ #: includes/admin/view-system-info.php:74
2448
+ #: includes/admin/view-system-info.php:75
2449
+ #: includes/admin/view-system-info.php:76
2450
+ #: includes/admin/view-system-info.php:77
2451
+ msgid "Not found!"
2452
  msgstr ""
2453
 
2454
+ #: includes/admin/view-system-info.php:75
2455
+ msgid "PHP Open SSL"
2456
  msgstr ""
2457
 
2458
+ #: includes/admin/view-system-info.php:76
2459
+ msgid "PHP HTTP Wrapper"
2460
  msgstr ""
2461
 
2462
+ #: includes/admin/view-system-info.php:76
2463
+ #: includes/admin/view-system-info.php:77
2464
+ msgid "Found"
2465
  msgstr ""
2466
 
2467
+ #: includes/admin/view-system-info.php:77
2468
+ msgid "PHP HTTPS Wrapper"
2469
  msgstr ""
2470
 
2471
+ #: includes/admin/view-system-info.php:78
2472
+ msgid "HTTPS Mismatch"
2473
  msgstr ""
2474
 
2475
+ #: includes/admin/view-system-info.php:78
2476
+ #: includes/class-foogallery-common-fields.php:112
2477
+ #: includes/class-foogallery-common-fields.php:132
2478
+ #: includes/class-foogallery-common-fields.php:153
2479
+ #: includes/class-foogallery-common-fields.php:174
2480
+ #: includes/class-foogallery-common-fields.php:194
2481
+ #: includes/class-foogallery-common-fields.php:219
2482
+ #: includes/class-foogallery-common-fields.php:251
2483
+ #: includes/class-foogallery-common-fields.php:299
2484
+ #: includes/class-foogallery-common-fields.php:323
2485
+ #: includes/class-foogallery-common-fields.php:346
2486
+ #: includes/class-foogallery-common-fields.php:394
2487
+ #: includes/class-foogallery-common-fields.php:432
2488
+ #: includes/class-foogallery-common-fields.php:453
2489
+ #: includes/class-foogallery-paging.php:51
2490
+ #: includes/class-foogallery-paging.php:90 includes/functions.php:995
2491
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:151
2492
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:210
2493
+ #: pro/includes/class-foogallery-pro-filtering.php:70
2494
+ msgid "None"
2495
+ msgstr ""
2496
+
2497
+ #: includes/admin/view-system-info.php:78
2498
+ msgid "There is a protocol mismatch between your site URL and the actual URL!"
2499
+ msgstr ""
2500
+
2501
+ #: includes/admin/view-system-info.php:79
2502
+ msgid "PHP Config[allow_url_fopen]"
2503
  msgstr ""
2504
 
2505
+ #: includes/admin/view-system-info.php:80
2506
+ msgid "PHP Config[allow_url_include]"
2507
+ msgstr ""
2508
+
2509
+ #: includes/admin/view-system-info.php:81
2510
  msgid "Extensions Endpoint"
2511
  msgstr ""
2512
 
2513
+ #: includes/admin/view-system-info.php:82
2514
  msgid "Extensions Errors"
2515
  msgstr ""
2516
 
2517
+ #: includes/admin/view-system-info.php:82
2518
  msgid "Nope, all good"
2519
  msgstr ""
2520
 
2521
+ #: includes/admin/view-system-info.php:84
2522
  msgid "Extensions Active"
2523
  msgstr ""
2524
 
2525
+ #: includes/admin/view-system-info.php:85
2526
+ msgid "Gallery Templates"
2527
+ msgstr ""
2528
+
2529
+ #: includes/admin/view-system-info.php:86
2530
  msgid "Lightboxes"
2531
  msgstr ""
2532
 
2533
+ #: includes/admin/view-system-info.php:88
2534
  msgid "Active Plugins"
2535
  msgstr ""
2536
 
2537
+ #: includes/class-foogallery-attachment-custom-class.php:24
2538
+ msgid "Custom Class"
2539
  msgstr ""
2540
 
2541
+ #: includes/class-foogallery-attachment-custom-class.php:26
2542
+ msgid "Add extra classes to the attachment"
2543
  msgstr ""
2544
 
2545
+ #: includes/class-foogallery-cache.php:172
2546
+ msgid "Enable HTML Cache"
2547
  msgstr ""
2548
 
2549
+ #: includes/class-foogallery-cache.php:173
2550
+ msgid ""
2551
+ "The gallery HTML that is generated can be cached. This can reduce the number "
2552
+ "of calls to the database when displaying a gallery and can increase site "
2553
+ "performance."
2554
  msgstr ""
2555
 
2556
+ #: includes/class-foogallery-cache.php:181
2557
+ msgid "Clear HTML Cache"
 
2558
  msgstr ""
2559
 
2560
+ #: includes/class-foogallery-cache.php:182
2561
+ msgid ""
2562
+ "If you enable the HTML cache, then you can use this button to clear the "
2563
+ "gallery HTML that has been cached for all galleries."
2564
  msgstr ""
2565
 
2566
+ #: includes/class-foogallery-cache.php:201
2567
+ msgid "Clear Gallery HTML Cache"
 
 
2568
  msgstr ""
2569
 
2570
+ #: includes/class-foogallery-cache.php:215
2571
+ msgid "The cache for all galleries has been cleared!"
 
2572
  msgstr ""
2573
 
2574
+ #: includes/class-foogallery-common-fields.php:72
2575
+ msgid "Theme Help"
2576
+ msgstr ""
2577
+
2578
+ #: includes/class-foogallery-common-fields.php:73
2579
  msgid ""
2580
+ "If you choose to use the Custom theme, then you will need to provide your "
2581
+ "own Custom CSS in order to style the gallery to suit your needs."
2582
  msgstr ""
2583
 
2584
+ #: includes/class-foogallery-common-fields.php:74
2585
+ #: includes/class-foogallery-common-fields.php:87
2586
+ #: includes/class-foogallery-common-fields.php:107
2587
+ #: includes/class-foogallery-common-fields.php:127
2588
+ #: includes/class-foogallery-common-fields.php:148
2589
+ #: includes/class-foogallery-common-fields.php:169
2590
+ #: includes/class-foogallery-common-fields.php:189
2591
+ #: includes/class-foogallery-common-fields.php:214
2592
+ msgid "Appearance"
2593
  msgstr ""
2594
 
2595
+ #: includes/class-foogallery-common-fields.php:85
2596
+ #: includes/class-foogallery-paging.php:107
2597
+ #: pro/includes/class-foogallery-pro-filtering.php:84
2598
+ msgid "Theme"
2599
  msgstr ""
2600
 
2601
+ #: includes/class-foogallery-common-fields.php:86
 
2602
  msgid ""
2603
+ "The overall appearance of the items in the gallery, affecting the border, "
2604
+ "background, font and shadow colors."
2605
  msgstr ""
2606
 
2607
+ #: includes/class-foogallery-common-fields.php:92
2608
+ #: includes/class-foogallery-paging.php:114
2609
+ #: pro/includes/class-foogallery-pro-filtering.php:91
2610
+ msgid "Light"
2611
  msgstr ""
2612
 
2613
+ #: includes/class-foogallery-common-fields.php:93
2614
+ #: includes/class-foogallery-paging.php:115
2615
+ #: pro/includes/class-foogallery-pro-filtering.php:92
2616
+ msgid "Dark"
2617
  msgstr ""
2618
 
2619
+ #: includes/class-foogallery-common-fields.php:94
2620
+ #: includes/class-foogallery-common-fields.php:252
2621
+ #: pro/includes/class-foogallery-pro-filtering.php:93
2622
+ msgid "Custom"
2623
  msgstr ""
2624
 
2625
+ #: includes/class-foogallery-common-fields.php:105
2626
+ msgid "Border Size"
2627
  msgstr ""
2628
 
2629
+ #: includes/class-foogallery-common-fields.php:106
2630
+ msgid "The border size applied to each thumbnail"
2631
  msgstr ""
2632
 
2633
+ #: includes/class-foogallery-common-fields.php:113
2634
+ msgid "Thin"
2635
  msgstr ""
2636
 
2637
+ #: includes/class-foogallery-common-fields.php:114
2638
+ #: includes/class-foogallery-common-fields.php:134
2639
+ #: includes/class-foogallery-common-fields.php:156
2640
+ #: includes/class-foogallery-common-fields.php:176
2641
+ #: includes/class-foogallery-common-fields.php:275
2642
+ msgid "Medium"
2643
  msgstr ""
2644
 
2645
+ #: includes/class-foogallery-common-fields.php:115
2646
+ msgid "Thick"
 
 
2647
  msgstr ""
2648
 
2649
+ #: includes/class-foogallery-common-fields.php:125
2650
+ msgid "Rounded Corners"
2651
  msgstr ""
2652
 
2653
+ #: includes/class-foogallery-common-fields.php:126
2654
+ msgid "The border radius, or rounded corners applied to each thumbnail"
2655
  msgstr ""
2656
 
2657
+ #: includes/class-foogallery-common-fields.php:133
2658
+ #: includes/class-foogallery-common-fields.php:155
2659
+ #: includes/class-foogallery-common-fields.php:175
2660
+ #: includes/class-foogallery-common-fields.php:274
2661
+ msgid "Small"
2662
  msgstr ""
2663
 
2664
+ #: includes/class-foogallery-common-fields.php:135
2665
+ #: includes/class-foogallery-common-fields.php:157
2666
+ #: includes/class-foogallery-common-fields.php:177
2667
+ #: includes/class-foogallery-common-fields.php:276
2668
+ msgid "Large"
2669
  msgstr ""
2670
 
2671
+ #: includes/class-foogallery-common-fields.php:136
2672
+ msgid "Full"
2673
  msgstr ""
2674
 
2675
+ #: includes/class-foogallery-common-fields.php:146
2676
+ msgid "Drop Shadow"
2677
  msgstr ""
2678
 
2679
+ #: includes/class-foogallery-common-fields.php:147
2680
+ msgid "The outer or drop shadow applied to each thumbnail"
2681
  msgstr ""
2682
 
2683
+ #: includes/class-foogallery-common-fields.php:154
2684
+ msgid "Outline"
2685
  msgstr ""
2686
 
2687
+ #: includes/class-foogallery-common-fields.php:167
2688
+ msgid "Inner Shadow"
2689
  msgstr ""
2690
 
2691
+ #: includes/class-foogallery-common-fields.php:168
2692
+ msgid "The inner shadow applied to each thumbnail"
2693
  msgstr ""
2694
 
2695
+ #: includes/class-foogallery-common-fields.php:187
2696
+ msgid "Loading Icon"
2697
  msgstr ""
2698
 
2699
+ #: includes/class-foogallery-common-fields.php:188
2700
+ msgid ""
2701
+ "An animated loading icon can be shown while the thumbnails are busy loading."
2702
  msgstr ""
2703
 
2704
+ #: includes/class-foogallery-common-fields.php:196
2705
+ msgid "Bars"
2706
  msgstr ""
2707
 
2708
+ #: includes/class-foogallery-common-fields.php:197
2709
+ #: includes/class-foogallery-paging.php:52
2710
+ msgid "Dots"
2711
  msgstr ""
2712
 
2713
+ #: includes/class-foogallery-common-fields.php:198
2714
+ msgid "Partial"
2715
  msgstr ""
2716
 
2717
+ #: includes/class-foogallery-common-fields.php:199
2718
+ msgid "Pulse"
 
2719
  msgstr ""
2720
 
2721
+ #: includes/class-foogallery-common-fields.php:200
2722
+ msgid "Trail"
2723
  msgstr ""
2724
 
2725
+ #: includes/class-foogallery-common-fields.php:212
2726
+ msgid "Loaded Effect"
2727
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
2728
 
2729
+ #: includes/class-foogallery-common-fields.php:213
2730
+ msgid "The animation effect used to display the thumbnail, once it has loaded."
2731
+ msgstr ""
 
 
 
2732
 
2733
+ #: includes/class-foogallery-common-fields.php:220
2734
+ msgid "Fade In"
2735
+ msgstr ""
 
 
 
2736
 
2737
+ #: includes/class-foogallery-common-fields.php:234
2738
+ msgid "Hover Effect Help"
2739
+ msgstr ""
 
 
 
2740
 
2741
+ #: includes/class-foogallery-common-fields.php:235
2742
+ msgid ""
2743
+ "A preset provides a stylish and pre-defined look &amp; feel for when you "
2744
+ "hover over the thumbnails."
2745
  msgstr ""
2746
 
2747
+ #: includes/class-foogallery-common-fields.php:236
2748
+ #: includes/class-foogallery-common-fields.php:246
2749
+ #: includes/class-foogallery-common-fields.php:268
2750
+ #: includes/class-foogallery-common-fields.php:293
2751
+ #: includes/class-foogallery-common-fields.php:317
2752
+ #: includes/class-foogallery-common-fields.php:340
2753
+ #: includes/class-foogallery-common-fields.php:364
2754
+ #: includes/class-foogallery-common-fields.php:390
2755
+ msgid "Hover Effects"
2756
  msgstr ""
2757
 
2758
+ #: includes/class-foogallery-common-fields.php:245
2759
+ msgid "Preset"
2760
  msgstr ""
2761
 
2762
+ #: includes/class-foogallery-common-fields.php:256
2763
+ msgid ""
2764
+ "A preset styling that is used for the captions. If you want to define your "
2765
+ "own custom captions, then choose Custom."
2766
  msgstr ""
2767
 
2768
+ #: includes/class-foogallery-common-fields.php:267
2769
+ msgid "Preset Size"
2770
  msgstr ""
2771
 
2772
+ #: includes/class-foogallery-common-fields.php:279
2773
  msgid ""
2774
+ "Choose an appropriate size for the preset caption effects, based on the size "
2775
+ "of your thumbs. Choose small for thumbs 150-200 wide, medium for thumbs "
2776
+ "200-400 wide, and large for thumbs over 400 wide."
2777
  msgstr ""
2778
 
2779
+ #: includes/class-foogallery-common-fields.php:292
2780
+ msgid "Color Effect"
2781
  msgstr ""
2782
 
2783
+ #: includes/class-foogallery-common-fields.php:300
2784
+ msgid "Colorize"
2785
  msgstr ""
2786
 
2787
+ #: includes/class-foogallery-common-fields.php:301
2788
+ msgid "Greyscale"
2789
  msgstr ""
2790
 
2791
+ #: includes/class-foogallery-common-fields.php:304
2792
+ msgid "Choose an color effect that is applied when you hover over a thumbnail."
2793
  msgstr ""
2794
 
2795
+ #: includes/class-foogallery-common-fields.php:316
2796
+ msgid "Scaling Effect"
2797
  msgstr ""
2798
 
2799
+ #: includes/class-foogallery-common-fields.php:324
2800
+ msgid "Scaled"
2801
  msgstr ""
2802
 
2803
+ #: includes/class-foogallery-common-fields.php:327
2804
+ msgid "Apply a slight scaling effect when hovering over a thumbnail."
2805
  msgstr ""
2806
 
2807
+ #: includes/class-foogallery-common-fields.php:339
2808
+ msgid "Caption Visibility"
2809
  msgstr ""
2810
 
2811
+ #: includes/class-foogallery-common-fields.php:347
2812
+ msgid "On Hover"
2813
  msgstr ""
2814
 
2815
+ #: includes/class-foogallery-common-fields.php:351
2816
+ msgid "Choose how the captions will be displayed."
2817
  msgstr ""
2818
 
2819
+ #: includes/class-foogallery-common-fields.php:363
2820
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:142
2821
+ msgid "Transition"
2822
+ msgstr ""
2823
+
2824
+ #: includes/class-foogallery-common-fields.php:368
2825
+ msgid "Instant"
2826
+ msgstr ""
2827
+
2828
+ #: includes/class-foogallery-common-fields.php:369
2829
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:148
2830
+ msgid "Fade"
2831
+ msgstr ""
2832
+
2833
+ #: includes/class-foogallery-common-fields.php:370
2834
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:22
2835
+ msgid "Slide Up"
2836
+ msgstr ""
2837
+
2838
+ #: includes/class-foogallery-common-fields.php:371
2839
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:23
2840
+ msgid "Slide Down"
2841
+ msgstr ""
2842
+
2843
+ #: includes/class-foogallery-common-fields.php:372
2844
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:24
2845
+ msgid "Slide Left"
2846
+ msgstr ""
2847
+
2848
+ #: includes/class-foogallery-common-fields.php:373
2849
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:25
2850
+ msgid "Slide Right"
2851
+ msgstr ""
2852
+
2853
+ #: includes/class-foogallery-common-fields.php:374
2854
+ msgid "Push"
2855
+ msgstr ""
2856
+
2857
+ #: includes/class-foogallery-common-fields.php:376
2858
+ msgid ""
2859
+ "Choose what effect is used to show the caption when you hover over a "
2860
+ "thumbnail"
2861
+ msgstr ""
2862
+
2863
+ #: includes/class-foogallery-common-fields.php:388
2864
+ msgid "Icon"
2865
+ msgstr ""
2866
+
2867
+ #: includes/class-foogallery-common-fields.php:389
2868
+ msgid ""
2869
+ "Choose which icon is shown with the caption when you hover over a thumbnail"
2870
+ msgstr ""
2871
+
2872
+ #: includes/class-foogallery-common-fields.php:395
2873
+ msgid "Zoom"
2874
+ msgstr ""
2875
+
2876
+ #: includes/class-foogallery-common-fields.php:396
2877
+ msgid "Zoom 2"
2878
+ msgstr ""
2879
+
2880
+ #: includes/class-foogallery-common-fields.php:397
2881
+ msgid "Zoom 3"
2882
+ msgstr ""
2883
+
2884
+ #: includes/class-foogallery-common-fields.php:398
2885
+ msgid "Plus"
2886
+ msgstr ""
2887
+
2888
+ #: includes/class-foogallery-common-fields.php:399
2889
+ msgid "Circle Plus"
2890
+ msgstr ""
2891
+
2892
+ #: includes/class-foogallery-common-fields.php:400
2893
+ msgid "Eye"
2894
+ msgstr ""
2895
+
2896
+ #: includes/class-foogallery-common-fields.php:401
2897
+ msgid "External"
2898
+ msgstr ""
2899
+
2900
+ #: includes/class-foogallery-common-fields.php:416
2901
+ msgid "Captions Help"
2902
+ msgstr ""
2903
+
2904
+ #: includes/class-foogallery-common-fields.php:417
2905
+ msgid ""
2906
+ "You can change when captions are shown using the \"Hover Effects -> Caption "
2907
+ "Visibility\" setting ."
2908
+ msgstr ""
2909
+
2910
+ #: includes/class-foogallery-common-fields.php:422
2911
+ msgid "settings"
2912
+ msgstr ""
2913
+
2914
+ #: includes/class-foogallery-common-fields.php:426
2915
+ msgid "Title"
2916
+ msgstr ""
2917
+
2918
+ #: includes/class-foogallery-common-fields.php:427
2919
+ msgid ""
2920
+ "Decide where caption titles are pulled from. By default, what is saved under "
2921
+ "general settings will be used, but it can be overridden per gallery"
2922
+ msgstr ""
2923
+
2924
+ #: includes/class-foogallery-common-fields.php:433
2925
+ #: includes/class-foogallery-common-fields.php:454
2926
+ #, php-format
2927
+ msgid "Default (as per %s)"
2928
+ msgstr ""
2929
+
2930
+ #: includes/class-foogallery-common-fields.php:448
2931
+ msgid ""
2932
+ "Decide where captions descriptions are pulled from. By default, the general "
2933
+ "settings are used, but it can be overridden per gallery"
2934
+ msgstr ""
2935
+
2936
+ #: includes/class-foogallery-common-fields.php:468
2937
+ msgid "Limit Caption Length"
2938
+ msgstr ""
2939
+
2940
+ #: includes/class-foogallery-common-fields.php:469
2941
+ msgid ""
2942
+ "You can limit the length of caption title and descriptions in the "
2943
+ "thumbnails. This will NOT limit the length of captions from within the "
2944
+ "lightbox."
2945
+ msgstr ""
2946
+
2947
+ #: includes/class-foogallery-common-fields.php:475
2948
+ #: includes/class-foogallery-paging.php:137
2949
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:169
2950
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:228
2951
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:246
2952
+ #: pro/includes/class-foogallery-pro-filtering.php:242
2953
+ #: pro/includes/class-foogallery-pro-filtering.php:266
2954
+ #: pro/includes/class-foogallery-pro-filtering.php:331
2955
+ msgid "No"
2956
+ msgstr ""
2957
+
2958
+ #: includes/class-foogallery-common-fields.php:476
2959
+ #: includes/class-foogallery-paging.php:136
2960
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:168
2961
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:227
2962
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:245
2963
+ #: pro/includes/class-foogallery-pro-filtering.php:243
2964
+ #: pro/includes/class-foogallery-pro-filtering.php:267
2965
+ #: pro/includes/class-foogallery-pro-filtering.php:332
2966
+ msgid "Yes"
2967
+ msgstr ""
2968
+
2969
+ #: includes/class-foogallery-common-fields.php:487
2970
+ msgid "Max Title Length"
2971
+ msgstr ""
2972
+
2973
+ #: includes/class-foogallery-common-fields.php:488
2974
+ #: includes/class-foogallery-common-fields.php:507
2975
+ msgid "A max length of zero will not apply a limit."
2976
+ msgstr ""
2977
+
2978
+ #: includes/class-foogallery-common-fields.php:506
2979
+ msgid "Max Desc Length"
2980
+ msgstr ""
2981
+
2982
+ #: includes/class-foogallery-default-crop-position.php:38
2983
+ msgid "Default Crop Position"
2984
+ msgstr ""
2985
+
2986
+ #: includes/class-foogallery-default-crop-position.php:39
2987
+ msgid "The default crop position when resizing thumbnails."
2988
+ msgstr ""
2989
+
2990
+ #: includes/class-foogallery-lazyload.php:132
2991
+ #: includes/class-foogallery-lazyload.php:182
2992
+ msgid "Lazy Loading"
2993
+ msgstr ""
2994
+
2995
+ #: includes/class-foogallery-lazyload.php:133
2996
+ msgid ""
2997
+ "If you choose to disable lazy loading, then all thumbnails will be loaded at "
2998
+ "once. This means you will lose the performance improvements that lazy "
2999
+ "loading gives you."
3000
+ msgstr ""
3001
+
3002
+ #: includes/class-foogallery-lazyload.php:139
3003
+ msgid "Enable Lazy Loading"
3004
+ msgstr ""
3005
+
3006
+ #: includes/class-foogallery-lazyload.php:140
3007
+ #: includes/class-foogallery-lazyload.php:178
3008
+ msgid "Disable Lazy Loading"
3009
+ msgstr ""
3010
+
3011
+ #: includes/class-foogallery-lazyload.php:179
3012
+ msgid ""
3013
+ "This will disable lazy loading for ALL galleries. This is not recommended, "
3014
+ "but is sometimes needed when there are problems with the galleries "
3015
+ "displaying on some installs."
3016
+ msgstr ""
3017
+
3018
+ #: includes/class-foogallery-paging.php:44
3019
+ msgid "Paging Type"
3020
+ msgstr ""
3021
+
3022
+ #: includes/class-foogallery-paging.php:45
3023
+ msgid "Add paging to a large gallery."
3024
+ msgstr ""
3025
+
3026
+ #: includes/class-foogallery-paging.php:46
3027
+ #: includes/class-foogallery-paging.php:65
3028
+ #: includes/class-foogallery-paging.php:85
3029
+ #: includes/class-foogallery-paging.php:109
3030
+ #: includes/class-foogallery-paging.php:131
3031
+ #: includes/class-foogallery-paging.php:153
3032
+ #: includes/class-foogallery-paging.php:172
3033
+ #: includes/class-foogallery-paging.php:193
3034
+ #: includes/class-foogallery-paging.php:214
3035
+ #: includes/class-foogallery-paging.php:235
3036
+ msgid "Paging"
3037
+ msgstr ""
3038
+
3039
+ #: includes/class-foogallery-paging.php:63
3040
+ msgid "Page Size"
3041
+ msgstr ""
3042
+
3043
+ #: includes/class-foogallery-paging.php:64
3044
+ msgid "The size of your pages."
3045
+ msgstr ""
3046
+
3047
+ #: includes/class-foogallery-paging.php:84
3048
+ msgid "The position of the paging for either dots or pagination."
3049
+ msgstr ""
3050
+
3051
+ #: includes/class-foogallery-paging.php:91
3052
+ #: pro/includes/class-foogallery-pro-filtering.php:139
3053
+ msgid "Top"
3054
+ msgstr ""
3055
+
3056
+ #: includes/class-foogallery-paging.php:92
3057
+ #: pro/includes/class-foogallery-pro-filtering.php:140
3058
+ msgid "Bottom"
3059
+ msgstr ""
3060
+
3061
+ #: includes/class-foogallery-paging.php:93
3062
+ #: pro/includes/class-foogallery-pro-filtering.php:141
3063
+ msgid "Both"
3064
+ msgstr ""
3065
+
3066
+ #: includes/class-foogallery-paging.php:108
3067
+ msgid "The theme used for paging."
3068
+ msgstr ""
3069
+
3070
+ #: includes/class-foogallery-paging.php:129
3071
+ msgid "Scroll To Top"
3072
+ msgstr ""
3073
+
3074
+ #: includes/class-foogallery-paging.php:130
3075
+ msgid ""
3076
+ "Whether or not it should scroll to the top of the gallery when paging is "
3077
+ "changed."
3078
+ msgstr ""
3079
+
3080
+ #: includes/class-foogallery-paging.php:151
3081
+ msgid "Paging Limit"
3082
+ msgstr ""
3083
+
3084
+ #: includes/class-foogallery-paging.php:152
3085
+ msgid "The maximum number of page links to display for the gallery."
3086
+ msgstr ""
3087
+
3088
+ #: includes/class-foogallery-paging.php:170
3089
+ msgid "First &amp; Last Buttons"
3090
+ msgstr ""
3091
+
3092
+ #: includes/class-foogallery-paging.php:171
3093
+ msgid "Whether or not to show the first &amp; last buttons for pagination."
3094
+ msgstr ""
3095
+
3096
+ #: includes/class-foogallery-paging.php:177
3097
+ #: includes/class-foogallery-paging.php:198
3098
+ #: includes/class-foogallery-paging.php:219
3099
+ msgid "Show"
3100
+ msgstr ""
3101
+
3102
+ #: includes/class-foogallery-paging.php:191
3103
+ msgid "Prev &amp; Next Buttons"
3104
+ msgstr ""
3105
+
3106
+ #: includes/class-foogallery-paging.php:192
3107
+ msgid "Whether or not to show the previous &amp; next buttons for pagination."
3108
+ msgstr ""
3109
+
3110
+ #: includes/class-foogallery-paging.php:212
3111
+ msgid "More Buttons"
3112
+ msgstr ""
3113
+
3114
+ #: includes/class-foogallery-paging.php:213
3115
+ msgid ""
3116
+ "Whether or not to show the previous &amp; next more buttons for pagination."
3117
+ msgstr ""
3118
+
3119
+ #: includes/class-foogallery-paging.php:233
3120
+ msgid "Paging Output"
3121
+ msgstr ""
3122
+
3123
+ #: includes/class-foogallery-paging.php:234
3124
+ msgid ""
3125
+ "How the paging items are output. We recommend that very large galleries "
3126
+ "output as JSON."
3127
+ msgstr ""
3128
+
3129
+ #: includes/class-foogallery-paging.php:240
3130
+ msgid "JSON"
3131
+ msgstr ""
3132
+
3133
+ #: includes/class-foogallery-paging.php:241
3134
+ msgid "HTML"
3135
+ msgstr ""
3136
+
3137
+ #: includes/class-foogallery-upgrade.php:38
3138
+ msgid "Settings Upgrade Debugging"
3139
+ msgstr ""
3140
+
3141
+ #: includes/class-foogallery-upgrade.php:90
3142
+ msgid "The BETA upgrade process has been run!"
3143
+ msgstr ""
3144
+
3145
+ #: includes/class-foogallery-upgrade.php:98
3146
+ msgid "Force Upgrade"
3147
+ msgstr ""
3148
+
3149
+ #: includes/class-foogallery-upgrade.php:99
3150
+ msgid ""
3151
+ "Force the BETA upgrade process to run. This may sometimes be needed if the "
3152
+ "upgrade did not run automatically. Any changes you have made to galleries "
3153
+ "after updating will be lost. THERE IS NO UNDO."
3154
+ msgstr ""
3155
+
3156
+ #: includes/class-foogallery-upgrade.php:110
3157
+ msgid ""
3158
+ "Are you sure? Any changes you have made since updating will be lost. There "
3159
+ "is no undo!"
3160
+ msgstr ""
3161
+
3162
+ #: includes/class-foogallery-upgrade.php:110
3163
+ msgid "Run Upgrade Process"
3164
+ msgstr ""
3165
+
3166
+ #: includes/class-foogallery-widget.php:32
3167
+ msgid "Insert a FooGallery"
3168
+ msgstr ""
3169
+
3170
+ #: includes/class-foogallery-widget.php:71
3171
+ msgid "New title"
3172
+ msgstr ""
3173
+
3174
+ #: includes/class-foogallery-widget.php:76
3175
+ msgid "Title:"
3176
+ msgstr ""
3177
+
3178
+ #: includes/class-foogallery-widget.php:82
3179
+ msgid "Select Gallery:"
3180
+ msgstr ""
3181
+
3182
+ #: includes/class-foogallery.php:437
3183
+ msgid "Unknown"
3184
+ msgstr ""
3185
+
3186
+ #: includes/class-posttypes.php:27
3187
+ msgid "Gallery"
3188
+ msgstr ""
3189
+
3190
+ #: includes/class-posttypes.php:28
3191
+ msgid "Add Gallery"
3192
+ msgstr ""
3193
+
3194
+ #: includes/class-posttypes.php:31
3195
+ msgid "New Gallery"
3196
+ msgstr ""
3197
+
3198
+ #: includes/class-posttypes.php:32
3199
+ msgid "View Gallery"
3200
+ msgstr ""
3201
+
3202
+ #: includes/class-posttypes.php:33
3203
+ msgid "Search Galleries"
3204
+ msgstr ""
3205
+
3206
+ #: includes/class-posttypes.php:34
3207
+ msgid "No Galleries found"
3208
+ msgstr ""
3209
+
3210
+ #: includes/class-posttypes.php:35
3211
+ msgid "No Galleries found in Trash"
3212
+ msgstr ""
3213
+
3214
+ #: includes/class-posttypes.php:69 includes/class-posttypes.php:72
3215
+ msgid "Gallery updated."
3216
+ msgstr ""
3217
+
3218
+ #: includes/class-posttypes.php:70
3219
+ msgid "Gallery custom field updated."
3220
+ msgstr ""
3221
+
3222
+ #: includes/class-posttypes.php:71
3223
+ msgid "Gallery custom field deleted."
3224
+ msgstr ""
3225
+
3226
+ #: includes/class-posttypes.php:73
3227
+ #, php-format
3228
+ msgid "Gallery restored to revision from %s."
3229
+ msgstr ""
3230
+
3231
+ #: includes/class-posttypes.php:74
3232
+ msgid "Gallery published."
3233
+ msgstr ""
3234
+
3235
+ #: includes/class-posttypes.php:75
3236
+ msgid "Gallery saved."
3237
+ msgstr ""
3238
+
3239
+ #: includes/class-posttypes.php:76
3240
+ msgid "Gallery submitted."
3241
+ msgstr ""
3242
+
3243
+ #: includes/class-posttypes.php:77
3244
+ #, php-format
3245
+ msgid "Gallery scheduled for: <strong>%1$s</strong>."
3246
+ msgstr ""
3247
+
3248
+ #: includes/class-posttypes.php:78
3249
+ msgid "Gallery draft updated."
3250
+ msgstr ""
3251
+
3252
+ #: includes/class-posttypes.php:98
3253
+ #, php-format
3254
+ msgid "%s Gallery updated."
3255
+ msgid_plural "%s Galleries updated."
3256
+ msgstr[0] ""
3257
+ msgstr[1] ""
3258
+
3259
+ #: includes/class-posttypes.php:99
3260
+ #, php-format
3261
+ msgid "%s Gallery not updated, somebody is editing it."
3262
+ msgid_plural "%s Galleries not updated, somebody is editing them."
3263
+ msgstr[0] ""
3264
+ msgstr[1] ""
3265
+
3266
+ #: includes/class-posttypes.php:100
3267
+ #, php-format
3268
+ msgid "%s Gallery permanently deleted."
3269
+ msgid_plural "%s Galleries permanently deleted."
3270
+ msgstr[0] ""
3271
+ msgstr[1] ""
3272
+
3273
+ #: includes/class-posttypes.php:101
3274
+ #, php-format
3275
+ msgid "%s Gallery moved to the Trash."
3276
+ msgid_plural "%s Galleries moved to the Trash."
3277
+ msgstr[0] ""
3278
+ msgstr[1] ""
3279
+
3280
+ #: includes/class-posttypes.php:102
3281
+ #, php-format
3282
+ msgid "%s Gallery restored from the Trash."
3283
+ msgid_plural "%s Galleries restored from the Trash."
3284
+ msgstr[0] ""
3285
+ msgstr[1] ""
3286
+
3287
+ #: includes/compatibility/class-autoptimize-compatibility.php:56
3288
+ msgid "FooGallery + Autoptimize : "
3289
+ msgstr ""
3290
+
3291
+ #: includes/compatibility/class-autoptimize-compatibility.php:57
3292
+ msgid ""
3293
+ "We noticed that you have the Autoptimize plugin installed. After updating "
3294
+ "FooGallery, please make sure you delete the Autoptimize cache from the admin "
3295
+ "bar above to make sure your galleries continue to display correctly."
3296
+ msgstr ""
3297
+
3298
+ #: includes/compatibility/class-autoptimize-compatibility.php:59
3299
+ msgid ""
3300
+ "If you continue to have issues using FooGallery and Autoptimize together, "
3301
+ "then please goto Autoptimize Plugin settings –> Java Script Options –> "
3302
+ "Exclude Scripts and add foogallery.min.js"
3303
+ msgstr ""
3304
+
3305
+ #: includes/compatibility/class-foobox-compatibility.php:98
3306
+ #: includes/compatibility/class-responsive-lightbox-dfactory-compatibility.php:28
3307
+ msgid " (Not installed!)"
3308
+ msgstr ""
3309
+
3310
+ #: includes/compatibility/class-foobox-compatibility.php:111
3311
+ msgid "Panning"
3312
+ msgstr ""
3313
+
3314
+ #: includes/compatibility/class-foobox-compatibility.php:113
3315
+ msgid "Enable mouse panning for this image in the lightbox."
3316
+ msgstr ""
3317
+
3318
+ #: includes/compatibility/class-foobox-compatibility.php:116
3319
+ msgid "Disabled"
3320
+ msgstr ""
3321
+
3322
+ #: includes/compatibility/class-foobox-compatibility.php:117
3323
+ msgid "Enabled"
3324
+ msgstr ""
3325
+
3326
+ #: includes/compatibility/class-polylang-compatibility.php:95
3327
+ msgid "FooGallery + Polylang Alert : "
3328
+ msgstr ""
3329
+
3330
+ #: includes/compatibility/class-polylang-compatibility.php:96
3331
+ msgid ""
3332
+ "We noticed that you have Polylang installed and you have chosen to activate "
3333
+ "languages and translations for media."
3334
+ msgstr ""
3335
+
3336
+ #: includes/compatibility/class-polylang-compatibility.php:97
3337
+ msgid ""
3338
+ "This may cause empty galleries on translated pages! To disable this feature, "
3339
+ "please visit Settings -> Languages -> Settings Tab."
3340
+ msgstr ""
3341
+
3342
+ #: includes/compatibility/class-responsive-lightbox-dfactory-compatibility.php:26
3343
+ msgid "Responsive Lightbox by dFactory"
3344
+ msgstr ""
3345
+
3346
+ #: includes/extensions/class-extensions-api.php:224
3347
+ msgid "new"
3348
+ msgstr ""
3349
+
3350
+ #: includes/extensions/class-extensions-api.php:359
3351
+ #: pro/includes/class-foogallery-pro-filtering.php:486
3352
+ #: pro/includes/class-foogallery-pro-filtering.php:562
3353
+ msgid "All"
3354
+ msgstr ""
3355
+
3356
+ #: includes/extensions/class-extensions-api.php:362
3357
+ msgid "Active"
3358
+ msgstr ""
3359
+
3360
+ #: includes/extensions/class-extensions-api.php:381
3361
+ msgid "Build Your Own"
3362
+ msgstr ""
3363
+
3364
+ #: includes/extensions/class-extensions-api.php:550
3365
+ #, php-format
3366
+ msgid "The extension %s could NOT be deactivated!"
3367
+ msgstr ""
3368
+
3369
+ #: includes/extensions/class-extensions-api.php:575
3370
+ #, php-format
3371
+ msgid "The extension %s was successfully deactivated"
3372
+ msgstr ""
3373
+
3374
+ #: includes/extensions/class-extensions-api.php:580
3375
+ #: includes/extensions/class-extensions-api.php:645
3376
+ #: includes/extensions/class-extensions-api.php:762
3377
+ #, php-format
3378
+ msgid "Unknown extension : %s"
3379
+ msgstr ""
3380
+
3381
+ #: includes/extensions/class-extensions-api.php:610
3382
+ #, php-format
3383
+ msgid "Requires %s version %s"
3384
+ msgstr ""
3385
+
3386
+ #: includes/extensions/class-extensions-api.php:612
3387
+ #, php-format
3388
+ msgid ""
3389
+ "The extension %s could not be activated, because you are using an outdated "
3390
+ "version! Please update %s to at least version %s."
3391
+ msgstr ""
3392
+
3393
+ #: includes/extensions/class-extensions-api.php:622
3394
+ #, php-format
3395
+ msgid "The extension %s could NOT be activated!"
3396
+ msgstr ""
3397
+
3398
+ #: includes/extensions/class-extensions-api.php:640
3399
+ #, php-format
3400
+ msgid "The extension %s was successfully activated"
3401
+ msgstr ""
3402
+
3403
+ #: includes/extensions/class-extensions-api.php:711
3404
+ #, php-format
3405
+ msgid ""
3406
+ "Unable to connect to the WordPress.org plugin API to download %s. Full error "
3407
+ "log: %s"
3408
+ msgstr ""
3409
+
3410
+ #: includes/extensions/class-extensions-api.php:725
3411
+ #, php-format
3412
+ msgid "The extension %s has no download link!"
3413
+ msgstr ""
3414
+
3415
+ #: includes/extensions/class-extensions-api.php:738
3416
+ msgid "Unknown!"
3417
+ msgstr ""
3418
+
3419
+ #: includes/extensions/class-extensions-api.php:741
3420
+ #, php-format
3421
+ msgid "Could not be downloaded! Error : %s"
3422
+ msgstr ""
3423
+
3424
+ #: includes/extensions/class-extensions-api.php:745
3425
+ #, php-format
3426
+ msgid "The extension %s could NOT be downloaded! Error : %s"
3427
+ msgstr ""
3428
+
3429
+ #: includes/extensions/class-extensions-api.php:752
3430
+ #, php-format
3431
+ msgid ""
3432
+ "The extension %s was successfully downloaded and can now be activated. %s"
3433
+ msgstr ""
3434
+
3435
+ #: includes/extensions/class-extensions-api.php:756
3436
+ msgid "Activate immediately"
3437
+ msgstr ""
3438
+
3439
+ #: includes/extensions/class-extensions-api.php:813
3440
+ msgid "Error loading extension!"
3441
+ msgstr ""
3442
+
3443
+ #: includes/foopluginbase/classes/class-foo-plugin-base.php:302
3444
+ msgid " Settings"
3445
+ msgstr ""
3446
+
3447
+ #: includes/foopluginbase/classes/class-foo-plugin-settings.php:332
3448
+ msgid "Select An Image"
3449
+ msgstr ""
3450
+
3451
+ #: includes/foopluginbase/classes/class-foo-plugin-settings.php:332
3452
+ msgid "Select Image"
3453
+ msgstr ""
3454
+
3455
+ #: includes/foopluginbase/classes/class-foo-plugin-settings.php:362
3456
+ msgid "Settings restored to default values"
3457
+ msgstr ""
3458
+
3459
+ #: includes/foopluginbase/views/settings.php:91
3460
+ msgid "Save Changes"
3461
+ msgstr ""
3462
+
3463
+ #: includes/foopluginbase/views/settings.php:93
3464
+ msgid ""
3465
+ "Are you sure you want to restore all settings back to their default values?"
3466
+ msgstr ""
3467
+
3468
+ #: includes/foopluginbase/views/settings.php:95
3469
+ msgid "Restore Defaults"
3470
+ msgstr ""
3471
+
3472
+ #: includes/functions.php:481
3473
+ msgid "Date created - newest first"
3474
+ msgstr ""
3475
+
3476
+ #: includes/functions.php:482
3477
+ msgid "Date created - oldest first"
3478
+ msgstr ""
3479
+
3480
+ #: includes/functions.php:483
3481
+ msgid "Date modified - most recent first"
3482
+ msgstr ""
3483
+
3484
+ #: includes/functions.php:484
3485
+ msgid "Date modified - most recent last"
3486
+ msgstr ""
3487
+
3488
+ #: includes/functions.php:485
3489
+ msgid "Title - alphabetically"
3490
+ msgstr ""
3491
+
3492
+ #: includes/functions.php:486
3493
+ msgid "Title - reverse"
3494
+ msgstr ""
3495
+
3496
+ #: includes/functions.php:487
3497
+ msgid "Random"
3498
+ msgstr ""
3499
+
3500
+ #: includes/functions.php:705
3501
+ msgid "Thumbnail generation test ran successfully."
3502
+ msgstr ""
3503
+
3504
+ #: includes/functions.php:707
3505
+ msgid "Thumbnail generation test failed!"
3506
+ msgstr ""
3507
+
3508
+ #: includes/functions.php:858
3509
+ msgid "2x"
3510
+ msgstr ""
3511
+
3512
+ #: includes/functions.php:859
3513
+ msgid "3x"
3514
+ msgstr ""
3515
+
3516
+ #: includes/functions.php:860
3517
+ msgid "4x"
3518
+ msgstr ""
3519
+
3520
+ #: includes/functions.php:915
3521
+ msgid "Attachment Title"
3522
+ msgstr ""
3523
+
3524
+ #: includes/functions.php:917
3525
+ msgid "Attachment Caption"
3526
+ msgstr ""
3527
+
3528
+ #: includes/functions.php:919
3529
+ msgid "Attachment Description"
3530
+ msgstr ""
3531
+
3532
+ #: includes/functions.php:921
3533
+ msgid "Attachment Alt"
3534
+ msgstr ""
3535
+
3536
+ #: includes/functions.php:982
3537
+ msgid "Full Size Image (Lightbox)"
3538
+ msgstr ""
3539
+
3540
+ #: includes/functions.php:983
3541
+ msgid "Image Attachment Page"
3542
+ msgstr ""
3543
+
3544
+ #: includes/functions.php:985
3545
+ msgid "Not linked"
3546
+ msgstr ""
3547
+
3548
+ #: includes/public/class-admin-bar.php:34
3549
+ msgid "Edit Galleries"
3550
+ msgstr ""
3551
+
3552
+ #: includes/public/class-foogallery-template-loader.php:34
3553
+ msgid "The gallery was not found!"
3554
+ msgstr ""
3555
+
3556
+ #: includes/public/class-foogallery-template-loader.php:116
3557
+ msgid "No gallery template found!"
3558
+ msgstr ""
3559
+
3560
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:95
3561
+ msgid "Grid PRO"
3562
+ msgstr ""
3563
+
3564
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:107
3565
+ msgid "Choose the size of your thumbs."
3566
+ msgstr ""
3567
+
3568
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:124
3569
+ msgid ""
3570
+ "You can choose to either link each thumbnail to the full size image or to "
3571
+ "the image's attachment page."
3572
+ msgstr ""
3573
+
3574
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:143
3575
+ msgid ""
3576
+ "Transition type to use switching between items, or no transitions at all."
3577
+ msgstr ""
3578
+
3579
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:149
3580
+ msgid "Horizontal"
3581
+ msgstr ""
3582
+
3583
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:150
3584
+ msgid "Vertical"
3585
+ msgstr ""
3586
+
3587
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:162
3588
+ msgid "Loop"
3589
+ msgstr ""
3590
+
3591
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:163
3592
+ msgid ""
3593
+ "Whether the slider should loop (i.e. the first slide goes to the last, the "
3594
+ "last slide goes to the first)."
3595
+ msgstr ""
3596
+
3597
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:180
3598
+ msgid "Max Columns"
3599
+ msgstr ""
3600
+
3601
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:181
3602
+ msgid ""
3603
+ "The maximum number of thumbnail columns to display. * This amount is "
3604
+ "automatically reduced on small screen sizes."
3605
+ msgstr ""
3606
+
3607
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:189
3608
+ msgid "6 Columns"
3609
+ msgstr ""
3610
+
3611
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:190
3612
+ msgid "7 Columns"
3613
+ msgstr ""
3614
+
3615
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:191
3616
+ msgid "8 Columns"
3617
+ msgstr ""
3618
+
3619
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:202
3620
+ msgid "Stage Caption"
3621
+ msgstr ""
3622
+
3623
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:203
3624
+ msgid ""
3625
+ "The position of caption in the stage or no captions at all. * The caption "
3626
+ "will automatically switch to below the item on small screen sizes."
3627
+ msgstr ""
3628
+
3629
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:221
3630
+ msgid "Scroll"
3631
+ msgstr ""
3632
+
3633
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:222
3634
+ msgid "Whether the page is scrolled to the selected item."
3635
+ msgstr ""
3636
+
3637
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:239
3638
+ msgid "Smooth Scroll"
3639
+ msgstr ""
3640
+
3641
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:240
3642
+ msgid ""
3643
+ "Whether or not to perform a smooth scrolling animation to the selected item."
3644
+ msgstr ""
3645
+
3646
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:257
3647
+ msgid "Scroll Offset"
3648
+ msgstr ""
3649
+
3650
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:258
3651
+ msgid ""
3652
+ "The amount to offset scrolling by. * This can be used to counter fixed "
3653
+ "headers."
3654
+ msgstr ""
3655
+
3656
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:365
3657
+ msgid "FooGrid Extension Redundant!"
3658
+ msgstr ""
3659
+
3660
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:366
3661
+ msgid ""
3662
+ "You have both FooGallery PRO and the FooGrid extension activated. FooGallery "
3663
+ "PRO includes the Grid PRO gallery template, which makes the FooGrid "
3664
+ "extension redundant."
3665
+ msgstr ""
3666
+
3667
+ #: pro/extensions/default-templates/foogrid/class-foogrid-gallery-template.php:368
3668
+ msgid ""
3669
+ "Please edit all galleries that use the FooGrid gallery template and change "
3670
+ "them to use the Grid PRO gallery template. Once this is done, you can delete "
3671
+ "the FooGrid extension."
3672
+ msgstr ""
3673
+
3674
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:67
3675
+ msgid "Polaroid PRO"
3676
+ msgstr ""
3677
+
3678
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:192
3679
+ msgid "Polaroid"
3680
+ msgstr ""
3681
+
3682
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:319
3683
+ msgid "Polaroid Extension Redundant!"
3684
+ msgstr ""
3685
+
3686
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:320
3687
+ msgid ""
3688
+ "You have both FooGallery PRO and the old Polaroid extension activated. "
3689
+ "FooGallery PRO includes the Polaroid PRO gallery template, which makes the "
3690
+ "free Polaroid extension redundant."
3691
+ msgstr ""
3692
+
3693
+ #: pro/extensions/default-templates/polaroid/class-polaroid-gallery-template.php:322
3694
+ msgid ""
3695
+ "Please edit all galleries that use the old Polaroid gallery template and "
3696
+ "change them to use the Polaroid PRO gallery template. Once this is done, you "
3697
+ "can delete the free Polaroid extension."
3698
+ msgstr ""
3699
+
3700
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:30
3701
+ msgid "Disable Attachment Taxonomies"
3702
+ msgstr ""
3703
+
3704
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:31
3705
+ #, php-format
3706
+ msgid ""
3707
+ "Disables the %s attachment taxonomies (Media Tags and Media Categories)."
3708
+ msgstr ""
3709
+
3710
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:175
3711
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:269
3712
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:312
3713
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:322
3714
+ msgid "Media Tags"
3715
+ msgstr ""
3716
+
3717
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:187
3718
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:276
3719
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:336
3720
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:346
3721
+ msgid "Media Categories"
3722
+ msgstr ""
3723
+
3724
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:215
3725
+ msgid "Select tags, or add a new tag..."
3726
+ msgstr ""
3727
+
3728
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:216
3729
+ msgid "Add new tag"
3730
+ msgstr ""
3731
+
3732
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:225
3733
+ msgid "Select categories, or add a new category..."
3734
+ msgstr ""
3735
+
3736
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:226
3737
+ msgid "Add new category"
3738
+ msgstr ""
3739
+
3740
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:240
3741
+ msgid "Categories"
3742
+ msgstr ""
3743
+
3744
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:313
3745
+ msgid "Tag"
3746
+ msgstr ""
3747
+
3748
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:314
3749
+ msgid "Search Tags"
3750
+ msgstr ""
3751
+
3752
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:315
3753
+ msgid "All Tags"
3754
+ msgstr ""
3755
+
3756
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:316
3757
+ msgid "Parent Tag"
3758
+ msgstr ""
3759
+
3760
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:317
3761
+ msgid "Parent Tag:"
3762
+ msgstr ""
3763
+
3764
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:318
3765
+ msgid "Edit Tag"
3766
+ msgstr ""
3767
+
3768
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:319
3769
+ msgid "Update Tag"
3770
+ msgstr ""
3771
+
3772
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:320
3773
+ msgid "Add New Tag"
3774
+ msgstr ""
3775
+
3776
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:321
3777
+ msgid "New Tag Name"
3778
+ msgstr ""
3779
+
3780
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:337
3781
+ msgid "Category"
3782
+ msgstr ""
3783
+
3784
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:338
3785
+ msgid "Search Categories"
3786
+ msgstr ""
3787
+
3788
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:339
3789
+ msgid "All Categories"
3790
+ msgstr ""
3791
+
3792
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:340
3793
+ msgid "Parent Category"
3794
+ msgstr ""
3795
+
3796
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:341
3797
+ msgid "Parent Category:"
3798
+ msgstr ""
3799
+
3800
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:342
3801
+ msgid "Edit Category"
3802
+ msgstr ""
3803
+
3804
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:343
3805
+ msgid "Update Category"
3806
+ msgstr ""
3807
+
3808
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:344
3809
+ msgid "Add New Category"
3810
+ msgstr ""
3811
+
3812
+ #: pro/includes/class-foogallery-pro-attachment-taxonomies.php:345
3813
+ msgid "New Category Name"
3814
+ msgstr ""
3815
+
3816
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:29
3817
+ msgid "You need to decide which settings you want to copy across."
3818
+ msgstr ""
3819
+
3820
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:35
3821
+ msgid "You need to choose the destination you want to copy to."
3822
+ msgstr ""
3823
+
3824
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:42
3825
+ msgid "You need to select which galleries you want to copy to."
3826
+ msgstr ""
3827
+
3828
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:55
3829
+ msgid "Start Another Bulk Copy"
3830
+ msgstr ""
3831
+
3832
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:67
3833
+ msgid "No settings were selected to be copied!"
3834
+ msgstr ""
3835
+
3836
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:116
3837
+ #, php-format
3838
+ msgid "Successfully copied settings to %d galleries."
3839
+ msgstr ""
3840
+
3841
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:133
3842
+ msgid "Which Settings?"
3843
+ msgstr ""
3844
+
3845
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:142
3846
+ msgid "Gallery Template & Settings"
3847
+ msgstr ""
3848
+
3849
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:145
3850
+ msgid "Retina Settings"
3851
+ msgstr ""
3852
+
3853
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:148
3854
+ msgid "Sorting Settings"
3855
+ msgstr ""
3856
+
3857
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:157
3858
+ msgid "Destination"
3859
+ msgstr ""
3860
+
3861
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:166
3862
+ msgid "All Galleries"
3863
+ msgstr ""
3864
+
3865
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:169
3866
+ msgid "Custom Selection"
3867
+ msgstr ""
3868
+
3869
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:175
3870
+ msgid "Select the galleries"
3871
+ msgstr ""
3872
+
3873
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:193
3874
+ msgid "Run Bulk Copy"
3875
+ msgstr ""
3876
+
3877
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:197
3878
+ msgid ""
3879
+ "The bulk copy could not be run, due to errors. Please see above and correct "
3880
+ "the errors before continuing."
3881
+ msgstr ""
3882
+
3883
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:222
3884
+ msgid "Bulk Copy"
3885
+ msgstr ""
3886
+
3887
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:322
3888
+ msgid ""
3889
+ "You can bulk copy the settings from this gallery to other galleries in a few "
3890
+ "easy steps. To get started, click the button below. Please be sure to save "
3891
+ "your gallery before you start the copy, as only the saved settings stored in "
3892
+ "the database will be copied across."
3893
+ msgstr ""
3894
+
3895
+ #: pro/includes/class-foogallery-pro-bulk-copy.php:326
3896
+ msgid "Start Bulk Copy"
3897
+ msgstr ""
3898
+
3899
+ #: pro/includes/class-foogallery-pro-filtering.php:63
3900
+ #: pro/includes/class-foogallery-pro-filtering.php:64
3901
+ #: pro/includes/class-foogallery-pro-filtering.php:86
3902
+ #: pro/includes/class-foogallery-pro-filtering.php:115
3903
+ #: pro/includes/class-foogallery-pro-filtering.php:134
3904
+ #: pro/includes/class-foogallery-pro-filtering.php:157
3905
+ #: pro/includes/class-foogallery-pro-filtering.php:171
3906
+ #: pro/includes/class-foogallery-pro-filtering.php:196
3907
+ #: pro/includes/class-foogallery-pro-filtering.php:216
3908
+ #: pro/includes/class-foogallery-pro-filtering.php:236
3909
+ #: pro/includes/class-foogallery-pro-filtering.php:260
3910
+ #: pro/includes/class-foogallery-pro-filtering.php:285
3911
+ #: pro/includes/class-foogallery-pro-filtering.php:305
3912
+ #: pro/includes/class-foogallery-pro-filtering.php:325
3913
+ #: pro/includes/class-foogallery-pro-filtering.php:350
3914
+ #: pro/includes/class-foogallery-pro-filtering.php:370
3915
+ msgid "Filtering"
3916
+ msgstr ""
3917
+
3918
+ #: pro/includes/class-foogallery-pro-filtering.php:71
3919
+ msgid "Simple"
3920
+ msgstr ""
3921
+
3922
+ #: pro/includes/class-foogallery-pro-filtering.php:85
3923
+ msgid "The theme used for filtering."
3924
+ msgstr ""
3925
+
3926
+ #: pro/includes/class-foogallery-pro-filtering.php:113
3927
+ msgid "Filtering Source"
3928
+ msgstr ""
3929
+
3930
+ #: pro/includes/class-foogallery-pro-filtering.php:114
3931
+ msgid ""
3932
+ "What will be used as the source for your gallery filters. All attachment "
3933
+ "taxonomies will be listed."
3934
+ msgstr ""
3935
+
3936
+ #: pro/includes/class-foogallery-pro-filtering.php:133
3937
+ msgid "The position of the filters relative to the gallery."
3938
+ msgstr ""
3939
+
3940
+ #: pro/includes/class-foogallery-pro-filtering.php:155
3941
+ msgid "Selection Mode Help"
3942
+ msgstr ""
3943
+
3944
+ #: pro/includes/class-foogallery-pro-filtering.php:156
3945
+ msgid ""
3946
+ "The default selection mode is Single, which allows you to choose a single "
3947
+ "filter at a time. You can also choose to filter by more than 1 filter by "
3948
+ "selecting Multiple. Multiple supports either a union (OR) or an intersect "
3949
+ "(AND) mode."
3950
+ msgstr ""
3951
+
3952
+ #: pro/includes/class-foogallery-pro-filtering.php:169
3953
+ msgid "Selection Mode"
3954
+ msgstr ""
3955
+
3956
+ #: pro/includes/class-foogallery-pro-filtering.php:170
3957
+ msgid "The selection mode to use when filtering."
3958
+ msgstr ""
3959
+
3960
+ #: pro/includes/class-foogallery-pro-filtering.php:177
3961
+ msgid "Single"
3962
+ msgstr ""
3963
+
3964
+ #: pro/includes/class-foogallery-pro-filtering.php:178
3965
+ msgid "Multiple (OR)"
3966
+ msgstr ""
3967
+
3968
+ #: pro/includes/class-foogallery-pro-filtering.php:179
3969
+ msgid "Multiple (AND)"
3970
+ msgstr ""
3971
+
3972
+ #: pro/includes/class-foogallery-pro-filtering.php:194
3973
+ msgid "Minimum"
3974
+ msgstr ""
3975
+
3976
+ #: pro/includes/class-foogallery-pro-filtering.php:195
3977
+ msgid ""
3978
+ "The minimum count before a filter is shown, 0 = disabled and all are shown."
3979
+ msgstr ""
3980
+
3981
+ #: pro/includes/class-foogallery-pro-filtering.php:214
3982
+ msgid "Limit"
3983
+ msgstr ""
3984
+
3985
+ #: pro/includes/class-foogallery-pro-filtering.php:215
3986
+ msgid "The maximum number of filters to show, 0 = disabled and all are shown."
3987
+ msgstr ""
3988
+
3989
+ #: pro/includes/class-foogallery-pro-filtering.php:234
3990
+ msgid "Show Count"
3991
+ msgstr ""
3992
+
3993
+ #: pro/includes/class-foogallery-pro-filtering.php:235
3994
+ msgid "Whether or not to show the counts within each filter."
3995
+ msgstr ""
3996
+
3997
+ #: pro/includes/class-foogallery-pro-filtering.php:258
3998
+ msgid "Adjust Size"
3999
+ msgstr ""
4000
+
4001
+ #: pro/includes/class-foogallery-pro-filtering.php:259
4002
+ msgid ""
4003
+ "Whether or not to adjust the size of each filter depending on the count."
4004
+ msgstr ""
4005
+
4006
+ #: pro/includes/class-foogallery-pro-filtering.php:283
4007
+ msgid "Smallest Size"
4008
+ msgstr ""
4009
+
4010
+ #: pro/includes/class-foogallery-pro-filtering.php:284
4011
+ msgid "The smallest possible font size to use, when Adjust Size is used."
4012
+ msgstr ""
4013
+
4014
+ #: pro/includes/class-foogallery-pro-filtering.php:303
4015
+ msgid "Largest Size"
4016
+ msgstr ""
4017
+
4018
+ #: pro/includes/class-foogallery-pro-filtering.php:304
4019
+ msgid "The largest possible font size to use, when Adjust Size is used."
4020
+ msgstr ""
4021
+
4022
+ #: pro/includes/class-foogallery-pro-filtering.php:323
4023
+ msgid "Adjust Opacity"
4024
+ msgstr ""
4025
+
4026
+ #: pro/includes/class-foogallery-pro-filtering.php:324
4027
+ msgid ""
4028
+ "Whether or not to adjust the opacity of each filter depending on the count."
4029
+ msgstr ""
4030
+
4031
+ #: pro/includes/class-foogallery-pro-filtering.php:348
4032
+ msgid "Lightest Opacity"
4033
+ msgstr ""
4034
+
4035
+ #: pro/includes/class-foogallery-pro-filtering.php:349
4036
+ msgid ""
4037
+ "The lightest or most transparent opacity to use, when Adjust Opacity is used."
4038
+ msgstr ""
4039
+
4040
+ #: pro/includes/class-foogallery-pro-filtering.php:368
4041
+ msgid "Darkest Opacity"
4042
+ msgstr ""
4043
+
4044
+ #: pro/includes/class-foogallery-pro-filtering.php:369
4045
+ msgid "The darkest or most opaque opacity to use, when Adjust Opacity is used."
4046
+ msgstr ""
4047
+
4048
+ #: pro/includes/class-foogallery-pro-filtering.php:560
4049
+ msgid "Filtering All Text"
4050
+ msgstr ""
4051
+
4052
+ #: pro/includes/class-foogallery-pro-gallery-override.php:21
4053
+ msgid "Override Gallery Shortcode"
4054
+ msgstr ""
4055
+
4056
+ #: pro/includes/class-foogallery-pro-gallery-override.php:22
4057
+ #, php-format
4058
+ msgid ""
4059
+ "This will allow you to override all default gallery shortcodes to rather use "
4060
+ "a %s template. The defaults above will be used when displaying the gallery."
4061
+ msgstr ""
4062
+
4063
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:26
4064
+ msgid "Scale Up"
4065
+ msgstr ""
4066
+
4067
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:27
4068
+ msgid "Swing Down"
4069
+ msgstr ""
4070
+
4071
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:28
4072
+ msgid "Drop"
4073
+ msgstr ""
4074
+
4075
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:29
4076
+ msgid "Fly"
4077
+ msgstr ""
4078
+
4079
+ #: pro/includes/class-foogallery-pro-loaded-effects.php:30
4080
+ msgid "Flip"
4081
+ msgstr ""
4082
+
4083
+ #: pro/includes/class-foogallery-pro-paging.php:21
4084
+ msgid "Pagination"
4085
+ msgstr ""
4086
+
4087
+ #: pro/includes/class-foogallery-pro-paging.php:22
4088
+ msgid "Infinite Scroll"
4089
+ msgstr ""
4090
+
4091
+ #: pro/includes/class-foogallery-pro-paging.php:23
4092
+ msgid "Load More"
4093
+ msgstr ""
4094
+
4095
+ #: pro/includes/class-foogallery-pro-presets.php:27
4096
+ msgid "Sadie"
4097
+ msgstr ""
4098
+
4099
+ #: pro/includes/class-foogallery-pro-presets.php:28
4100
+ msgid "Layla"
4101
+ msgstr ""
4102
+
4103
+ #: pro/includes/class-foogallery-pro-presets.php:29
4104
+ msgid "Oscar"
4105
+ msgstr ""
4106
+
4107
+ #: pro/includes/class-foogallery-pro-presets.php:30
4108
+ msgid "Sarah"
4109
+ msgstr ""
4110
+
4111
+ #: pro/includes/class-foogallery-pro-presets.php:31
4112
+ msgid "Goliath"
4113
+ msgstr ""
4114
+
4115
+ #: pro/includes/class-foogallery-pro-presets.php:32
4116
+ msgid "Jazz"
4117
+ msgstr ""
4118
+
4119
+ #: pro/includes/class-foogallery-pro-presets.php:33
4120
+ msgid "Lily"
4121
+ msgstr ""
4122
+
4123
+ #: pro/includes/class-foogallery-pro-presets.php:34
4124
+ msgid "Ming"
4125
+ msgstr ""
4126
+
4127
+ #: pro/includes/class-foogallery-pro-presets.php:35
4128
+ msgid "Selena"
4129
+ msgstr ""
4130
+
4131
+ #: pro/includes/class-foogallery-pro-presets.php:36
4132
+ msgid "Steve"
4133
+ msgstr ""
4134
+
4135
+ #: pro/includes/class-foogallery-pro-presets.php:37
4136
+ msgid "Zoe"
4137
  msgstr ""
4138
 
4139
  #. Plugin Name of the plugin/theme
4146
 
4147
  #. Description of the plugin/theme
4148
  msgid ""
4149
+ "FooGallery is the most intuitive and extensible gallery management tool ever "
4150
+ "created for WordPress"
4151
  msgstr ""
4152
 
4153
  #. Author of the plugin/theme