Responsive Lightbox & Gallery - Version 1.4.8

Version Description

  • Tweak: Nivo Lightbox updated to 1.2
  • Tweak: Confirmed WP 4.0 compatibility
Download this release

Release Info

Developer dfactory
Plugin Icon 128x128 Responsive Lightbox & Gallery
Version 1.4.8
Comparing to
See all releases

Code changes from version 1.4.7 to 1.4.8

assets/nivo/changelog.txt CHANGED
@@ -1,12 +1,4 @@
1
- *** Nivo Lightbox Changelog ***
2
-
3
- 2013.12.11 - version 1.1
4
- * [New] Added the clickOverlayToClose setting
5
- * [New] Uppercase image extensions are now supported
6
- * [Fixed] Can't click anywhere after opening video bug
7
- * [Fixed] Doesn't work in iOS bug
8
- * [Fixed] Youtube hyphen in URL bug
9
- * [Fixed] Inline content overflow bug
10
-
11
- 2013.08.01 - version 1.0
12
  * Initial release
1
+ *** Nivo Lightbox Changelog ***
2
+
3
+ 2013.08.01 - version 1.0
 
 
 
 
 
 
 
 
4
  * Initial release
assets/nivo/license.txt CHANGED
@@ -1,22 +1,22 @@
1
- Copyright (c) 2013 Dev7studios
2
-
3
- Permission is hereby granted, free of charge, to any person
4
- obtaining a copy of this software and associated documentation
5
- files (the "Software"), to deal in the Software without
6
- restriction, including without limitation the rights to use,
7
- copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the
9
- Software is furnished to do so, subject to the following
10
- conditions:
11
-
12
- The above copyright notice and this permission notice shall be
13
- included in all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
- OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (c) 2013 Dev7studios
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
assets/nivo/nivo-lightbox.css CHANGED
@@ -1,5 +1,5 @@
1
  /*
2
- * Nivo Lightbox v1.1
3
  * http://dev7studios.com/nivo-lightbox
4
  *
5
  * Copyright 2013, Dev7studios
@@ -202,4 +202,4 @@
202
  -moz-transform: translateZ(0);
203
  -ms-transform: translateZ(0);
204
  transform: translateZ(0);
205
- }
1
  /*
2
+ * Nivo Lightbox v1.2.0
3
  * http://dev7studios.com/nivo-lightbox
4
  *
5
  * Copyright 2013, Dev7studios
202
  -moz-transform: translateZ(0);
203
  -ms-transform: translateZ(0);
204
  transform: translateZ(0);
205
+ }
assets/nivo/nivo-lightbox.js DELETED
@@ -1,359 +0,0 @@
1
- /*
2
- * Nivo Lightbox v1.1
3
- * http://dev7studios.com/nivo-lightbox
4
- *
5
- * Copyright 2013, Dev7studios
6
- * Free to use and abuse under the MIT license.
7
- * http://www.opensource.org/licenses/mit-license.php
8
- */
9
-
10
- ;(function($, window, document, undefined){
11
-
12
- var pluginName = 'nivoLightbox',
13
- defaults = {
14
- effect: 'fade',
15
- theme: 'default',
16
- keyboardNav: true,
17
- clickOverlayToClose: true,
18
- onInit: function(){},
19
- beforeShowLightbox: function(){},
20
- afterShowLightbox: function(lightbox){},
21
- beforeHideLightbox: function(){},
22
- afterHideLightbox: function(){},
23
- onPrev: function(element){},
24
- onNext: function(element){},
25
- errorMessage: 'The requested content cannot be loaded. Please try again later.'
26
- };
27
-
28
- function NivoLightbox(element, options){
29
- this.el = element;
30
- this.$el = $(this.el);
31
-
32
- this.options = $.extend({}, defaults, options);
33
-
34
- this._defaults = defaults;
35
- this._name = pluginName;
36
-
37
- this.init();
38
- }
39
-
40
- NivoLightbox.prototype = {
41
-
42
- init: function(){
43
- var $this = this;
44
-
45
- // Need this so we don't use CSS transitions in mobile
46
- if(!$('html').hasClass('nivo-lightbox-notouch')) $('html').addClass('nivo-lightbox-notouch');
47
- if('ontouchstart' in document) $('html').removeClass('nivo-lightbox-notouch');
48
-
49
- // Setup the click
50
- this.$el.on('click', function(e){
51
- e.preventDefault();
52
- $this.showLightbox();
53
- });
54
-
55
- // keyboardNav
56
- if(this.options.keyboardNav){
57
- $('body').off('keyup').on('keyup', function(e){
58
- var code = (e.keyCode ? e.keyCode : e.which);
59
- // Escape
60
- if(code == 27) $this.destructLightbox();
61
- // Left
62
- if(code == 37) $('.nivo-lightbox-prev').trigger('click');
63
- // Right
64
- if(code == 39) $('.nivo-lightbox-next').trigger('click');
65
- });
66
- }
67
-
68
- this.options.onInit.call(this);
69
-
70
- },
71
-
72
- showLightbox: function(){
73
- var $this = this;
74
- this.options.beforeShowLightbox.call(this);
75
-
76
- var lightbox = this.constructLightbox();
77
- if(!lightbox) return;
78
- var content = lightbox.find('.nivo-lightbox-content');
79
- if(!content) return;
80
- var currentLink = this.$el;
81
- $('body').addClass('nivo-lightbox-body-effect-'+ this.options.effect);
82
-
83
- // Add content
84
- this.processContent(content, currentLink);
85
-
86
- // Nav
87
- if(this.$el.attr('data-lightbox-gallery')){
88
- var $this = this,
89
- galleryItems = $('[data-lightbox-gallery="'+ this.$el.attr('data-lightbox-gallery') +'"]');
90
-
91
- $('.nivo-lightbox-nav').show();
92
-
93
- // Prev
94
- $('.nivo-lightbox-prev').off('click').on('click', function(e){
95
- e.preventDefault();
96
- var index = galleryItems.index(currentLink);
97
- currentLink = galleryItems.eq(index - 1);
98
- if(!$(currentLink).length) currentLink = galleryItems.last();
99
- $this.processContent(content, currentLink);
100
- $this.options.onPrev.call(this, [ currentLink ]);
101
- });
102
-
103
- // Next
104
- $('.nivo-lightbox-next').off('click').on('click', function(e){
105
- e.preventDefault();
106
- var index = galleryItems.index(currentLink);
107
- currentLink = galleryItems.eq(index + 1);
108
- if(!$(currentLink).length) currentLink = galleryItems.first();
109
- $this.processContent(content, currentLink);
110
- $this.options.onNext.call(this, [ currentLink ]);
111
- });
112
- }
113
-
114
- setTimeout(function(){
115
- lightbox.addClass('nivo-lightbox-open');
116
- $this.options.afterShowLightbox.call(this, [ lightbox ]);
117
- }, 1); // For CSS transitions
118
- },
119
-
120
- processContent: function(content, link){
121
- var $this = this;
122
- var href = link.attr('href');
123
- content.html('').addClass('nivo-lightbox-loading');
124
-
125
- // Is HiDPI?
126
- if(this.isHidpi() && link.attr('data-lightbox-hidpi')){
127
- href = link.attr('data-lightbox-hidpi');
128
- }
129
-
130
- // Image
131
- if(href.match(/\.(jpeg|jpg|gif|png)$/i) != null){
132
- var img = $('<img>', { src: href });
133
- img.one('load', function() {
134
- var wrap = $('<div class="nivo-lightbox-image" />');
135
- wrap.append(img);
136
- content.html(wrap).removeClass('nivo-lightbox-loading');
137
-
138
- // Vertically center images
139
- wrap.css({
140
- 'line-height': $('.nivo-lightbox-content').height() +'px',
141
- 'height': $('.nivo-lightbox-content').height() +'px' // For Firefox
142
- });
143
- $(window).resize(function() {
144
- wrap.css({
145
- 'line-height': $('.nivo-lightbox-content').height() +'px',
146
- 'height': $('.nivo-lightbox-content').height() +'px' // For Firefox
147
- });
148
- });
149
- }).each(function() {
150
- if(this.complete) $(this).load();
151
- });
152
-
153
- img.error(function() {
154
- var wrap = $('<div class="nivo-lightbox-error"><p>'+ $this.options.errorMessage +'</p></div>');
155
- content.html(wrap).removeClass('nivo-lightbox-loading');
156
- });
157
- }
158
- // Video (Youtube/Vimeo)
159
- else if(video = href.match(/(youtube|youtu|vimeo)\.(com|be)\/(watch\?v=([\w-]+)|([\w-]+))/)){
160
- var src = '',
161
- classTerm = 'nivo-lightbox-video';
162
-
163
- if(video[1] == 'youtube'){
164
- src = 'http://www.youtube.com/v/'+ video[4];
165
- classTerm = 'nivo-lightbox-youtube';
166
- }
167
- if(video[1] == 'youtu'){
168
- src = 'http://www.youtube.com/v/'+ video[3];
169
- classTerm = 'nivo-lightbox-youtube';
170
- }
171
- if(video[1] == 'vimeo'){
172
- src = 'http://player.vimeo.com/video/'+ video[3];
173
- classTerm = 'nivo-lightbox-vimeo';
174
- }
175
-
176
- if(src){
177
- var iframe = $('<iframe>', {
178
- src: src,
179
- 'class': classTerm,
180
- frameborder: 0,
181
- vspace: 0,
182
- hspace: 0,
183
- scrolling: 'auto'
184
- });
185
- content.html(iframe);
186
- iframe.load(function(){ content.removeClass('nivo-lightbox-loading'); });
187
- }
188
- }
189
- // AJAX
190
- else if(link.attr('data-lightbox-type') == 'ajax'){
191
- var $this = this;
192
- $.ajax({
193
- url: href,
194
- cache: false,
195
- success: function(data) {
196
- var wrap = $('<div class="nivo-lightbox-ajax" />');
197
- wrap.append(data);
198
- content.html(wrap).removeClass('nivo-lightbox-loading');
199
-
200
- // Vertically center html
201
- if(wrap.outerHeight() < content.height()){
202
- wrap.css({
203
- 'position': 'relative',
204
- 'top': '50%',
205
- 'margin-top': -(wrap.outerHeight()/2) +'px'
206
- });
207
- }
208
- $(window).resize(function() {
209
- if(wrap.outerHeight() < content.height()){
210
- wrap.css({
211
- 'position': 'relative',
212
- 'top': '50%',
213
- 'margin-top': -(wrap.outerHeight()/2) +'px'
214
- });
215
- }
216
- });
217
- },
218
- error: function(){
219
- var wrap = $('<div class="nivo-lightbox-error"><p>'+ $this.options.errorMessage +'</p></div>');
220
- content.html(wrap).removeClass('nivo-lightbox-loading');
221
- }
222
- });
223
- }
224
- // Inline HTML
225
- else if(href.substring(0, 1) == '#'){
226
- if($(href).length){
227
- var wrap = $('<div class="nivo-lightbox-inline" />');
228
- wrap.append($(href).clone().show());
229
- content.html(wrap).removeClass('nivo-lightbox-loading');
230
-
231
- // Vertically center html
232
- if(wrap.outerHeight() < content.height()){
233
- wrap.css({
234
- 'position': 'relative',
235
- 'top': '50%',
236
- 'margin-top': -(wrap.outerHeight()/2) +'px'
237
- });
238
- }
239
- $(window).resize(function() {
240
- if(wrap.outerHeight() < content.height()){
241
- wrap.css({
242
- 'position': 'relative',
243
- 'top': '50%',
244
- 'margin-top': -(wrap.outerHeight()/2) +'px'
245
- });
246
- }
247
- });
248
- } else {
249
- var wrap = $('<div class="nivo-lightbox-error"><p>'+ $this.options.errorMessage +'</p></div>');
250
- content.html(wrap).removeClass('nivo-lightbox-loading');
251
- }
252
- }
253
- // iFrame (default)
254
- else {
255
- var iframe = $('<iframe>', {
256
- src: href,
257
- 'class': 'nivo-lightbox-item',
258
- frameborder: 0,
259
- vspace: 0,
260
- hspace: 0,
261
- scrolling: 'auto'
262
- });
263
- content.html(iframe);
264
- iframe.load(function(){ content.removeClass('nivo-lightbox-loading'); });
265
- }
266
-
267
- // Set the title
268
- if(link.attr('title')){
269
- var titleWrap = $('<span>', { 'class': 'nivo-lightbox-title' });
270
- titleWrap.text(link.attr('title'));
271
- $('.nivo-lightbox-title-wrap').html(titleWrap);
272
- } else {
273
- $('.nivo-lightbox-title-wrap').html('');
274
- }
275
- },
276
-
277
- constructLightbox: function(){
278
- if($('.nivo-lightbox-overlay').length) return $('.nivo-lightbox-overlay');
279
-
280
- var overlay = $('<div>', { 'class': 'nivo-lightbox-overlay nivo-lightbox-theme-'+ this.options.theme +' nivo-lightbox-effect-'+ this.options.effect });
281
- var wrap = $('<div>', { 'class': 'nivo-lightbox-wrap' });
282
- var content = $('<div>', { 'class': 'nivo-lightbox-content' });
283
- var nav = $('<a href="#" class="nivo-lightbox-nav nivo-lightbox-prev">Previous</a><a href="#" class="nivo-lightbox-nav nivo-lightbox-next">Next</a>');
284
- var close = $('<a href="#" class="nivo-lightbox-close" title="Close">Close</a>');
285
- var title = $('<div>', { 'class': 'nivo-lightbox-title-wrap' });
286
-
287
- var isMSIE = /*@cc_on!@*/0;
288
- if(isMSIE) overlay.addClass('nivo-lightbox-ie');
289
-
290
- wrap.append(content);
291
- wrap.append(title);
292
- overlay.append(wrap);
293
- overlay.append(nav);
294
- overlay.append(close);
295
- $('body').append(overlay);
296
-
297
- var $this = this;
298
- if($this.options.clickOverlayToClose){
299
- overlay.on('click', function(e){
300
- if(e.target === this ||
301
- $(e.target).hasClass('nivo-lightbox-content') ||
302
- $(e.target).hasClass('nivo-lightbox-image')) $this.destructLightbox();
303
- });
304
- }
305
-
306
- close.on('click', function(e){
307
- e.preventDefault();
308
- $this.destructLightbox();
309
- });
310
-
311
- return overlay;
312
- },
313
-
314
- destructLightbox: function(){
315
- var $this = this;
316
- this.options.beforeHideLightbox.call(this);
317
-
318
- $('.nivo-lightbox-overlay').removeClass('nivo-lightbox-open');
319
- $('.nivo-lightbox-nav').hide();
320
- $('body').removeClass('nivo-lightbox-body-effect-'+ $this.options.effect);
321
-
322
- // For IE
323
- var isMSIE = /*@cc_on!@*/0;
324
- if(isMSIE){
325
- $('.nivo-lightbox-overlay iframe').attr("src", " ");
326
- $('.nivo-lightbox-overlay iframe').remove();
327
- }
328
-
329
- // Remove click handlers
330
- $('.nivo-lightbox-prev').off('click');
331
- $('.nivo-lightbox-next').off('click');
332
-
333
- // Empty content (for videos)
334
- $('.nivo-lightbox-content').empty();
335
-
336
- this.options.afterHideLightbox.call(this);
337
- },
338
-
339
- isHidpi: function(){
340
- var mediaQuery = "(-webkit-min-device-pixel-ratio: 1.5),\
341
- (min--moz-device-pixel-ratio: 1.5),\
342
- (-o-min-device-pixel-ratio: 3/2),\
343
- (min-resolution: 1.5dppx)";
344
- if(window.devicePixelRatio > 1) return true;
345
- if(window.matchMedia && window.matchMedia(mediaQuery).matches) return true;
346
- return false;
347
- }
348
-
349
- };
350
-
351
- $.fn[pluginName] = function(options){
352
- return this.each(function(){
353
- if(!$.data(this, pluginName)){
354
- $.data(this, pluginName, new NivoLightbox(this, options));
355
- }
356
- });
357
- };
358
-
359
- })(jQuery, window, document);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/nivo/nivo-lightbox.min.js ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Nivo Lightbox v1.2.0
3
+ * http://dev7studios.com/nivo-lightbox
4
+ *
5
+ * Copyright 2013, Dev7studios
6
+ * Free to use and abuse under the MIT license.
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ */
9
+ (function(e,t,n,r){function o(t,n){this.el=t;this.$el=e(this.el);this.options=e.extend({},s,n);this._defaults=s;this._name=i;this.init()}var i="nivoLightbox",s={effect:"fade",theme:"default",keyboardNav:true,clickOverlayToClose:true,onInit:function(){},beforeShowLightbox:function(){},afterShowLightbox:function(e){},beforeHideLightbox:function(){},afterHideLightbox:function(){},onPrev:function(e){},onNext:function(e){},errorMessage:"The requested content cannot be loaded. Please try again later."};o.prototype={init:function(){var t=this;if(!e("html").hasClass("nivo-lightbox-notouch"))e("html").addClass("nivo-lightbox-notouch");if("ontouchstart"in n)e("html").removeClass("nivo-lightbox-notouch");this.$el.on("click",function(e){t.showLightbox(e)});if(this.options.keyboardNav){e("body").off("keyup").on("keyup",function(n){var r=n.keyCode?n.keyCode:n.which;if(r==27)t.destructLightbox();if(r==37)e(".nivo-lightbox-prev").trigger("click");if(r==39)e(".nivo-lightbox-next").trigger("click")})}this.options.onInit.call(this)},showLightbox:function(t){var n=this,r=this.$el;var i=this.checkContent(r);if(!i)return;t.preventDefault();this.options.beforeShowLightbox.call(this);var s=this.constructLightbox();if(!s)return;var o=s.find(".nivo-lightbox-content");if(!o)return;e("body").addClass("nivo-lightbox-body-effect-"+this.options.effect);this.processContent(o,r);if(this.$el.attr("data-lightbox-gallery")){var u=e('[data-lightbox-gallery="'+this.$el.attr("data-lightbox-gallery")+'"]');e(".nivo-lightbox-nav").show();e(".nivo-lightbox-prev").off("click").on("click",function(t){t.preventDefault();var i=u.index(r);r=u.eq(i-1);if(!e(r).length)r=u.last();n.processContent(o,r);n.options.onPrev.call(this,[r])});e(".nivo-lightbox-next").off("click").on("click",function(t){t.preventDefault();var i=u.index(r);r=u.eq(i+1);if(!e(r).length)r=u.first();n.processContent(o,r);n.options.onNext.call(this,[r])})}setTimeout(function(){s.addClass("nivo-lightbox-open");n.options.afterShowLightbox.call(this,[s])},1)},checkContent:function(e){var t=this,n=e.attr("href"),r=n.match(/(youtube|youtu|vimeo)\.(com|be)\/(watch\?v=([\w-]+)|([\w-]+))/);if(n.match(/\.(jpeg|jpg|gif|png)$/i)!==null){return true}else if(r){return true}else if(e.attr("data-lightbox-type")=="ajax"){return true}else if(n.substring(0,1)=="#"&&e.attr("data-lightbox-type")=="inline"){return true}else if(e.attr("data-lightbox-type")=="iframe"){return true}return false},processContent:function(n,r){var i=this,s=r.attr("href"),o=s.match(/(youtube|youtu|vimeo)\.(com|be)\/(watch\?v=([\w-]+)|([\w-]+))/);n.html("").addClass("nivo-lightbox-loading");if(this.isHidpi()&&r.attr("data-lightbox-hidpi")){s=r.attr("data-lightbox-hidpi")}if(s.match(/\.(jpeg|jpg|gif|png)$/i)!==null){var u=e("<img>",{src:s});u.one("load",function(){var r=e('<div class="nivo-lightbox-image" />');r.append(u);n.html(r).removeClass("nivo-lightbox-loading");r.css({"line-height":e(".nivo-lightbox-content").height()+"px",height:e(".nivo-lightbox-content").height()+"px"});e(t).resize(function(){r.css({"line-height":e(".nivo-lightbox-content").height()+"px",height:e(".nivo-lightbox-content").height()+"px"})})}).each(function(){if(this.complete)e(this).load()});u.error(function(){var t=e('<div class="nivo-lightbox-error"><p>'+i.options.errorMessage+"</p></div>");n.html(t).removeClass("nivo-lightbox-loading")})}else if(o){var a="",f="nivo-lightbox-video";if(o[1]=="youtube"){a="http://www.youtube.com/embed/"+o[4];f="nivo-lightbox-youtube"}if(o[1]=="youtu"){a="http://www.youtube.com/embed/"+o[3];f="nivo-lightbox-youtube"}if(o[1]=="vimeo"){a="http://player.vimeo.com/video/"+o[3];f="nivo-lightbox-vimeo"}if(a){var l=e("<iframe>",{src:a,"class":f,frameborder:0,vspace:0,hspace:0,scrolling:"auto"});n.html(l);l.load(function(){n.removeClass("nivo-lightbox-loading")})}}else if(r.attr("data-lightbox-type")=="ajax"){e.ajax({url:s,cache:false,success:function(r){var i=e('<div class="nivo-lightbox-ajax" />');i.append(r);n.html(i).removeClass("nivo-lightbox-loading");if(i.outerHeight()<n.height()){i.css({position:"relative",top:"50%","margin-top":-(i.outerHeight()/2)+"px"})}e(t).resize(function(){if(i.outerHeight()<n.height()){i.css({position:"relative",top:"50%","margin-top":-(i.outerHeight()/2)+"px"})}})},error:function(){var t=e('<div class="nivo-lightbox-error"><p>'+i.options.errorMessage+"</p></div>");n.html(t).removeClass("nivo-lightbox-loading")}})}else if(s.substring(0,1)=="#"&&r.attr("data-lightbox-type")=="inline"){if(e(s).length){var c=e('<div class="nivo-lightbox-inline" />');c.append(e(s).clone().show());n.html(c).removeClass("nivo-lightbox-loading");if(c.outerHeight()<n.height()){c.css({position:"relative",top:"50%","margin-top":-(c.outerHeight()/2)+"px"})}e(t).resize(function(){if(c.outerHeight()<n.height()){c.css({position:"relative",top:"50%","margin-top":-(c.outerHeight()/2)+"px"})}})}else{var h=e('<div class="nivo-lightbox-error"><p>'+i.options.errorMessage+"</p></div>");n.html(h).removeClass("nivo-lightbox-loading")}}else if(r.attr("data-lightbox-type")=="iframe"){var p=e("<iframe>",{src:s,"class":"nivo-lightbox-item",frameborder:0,vspace:0,hspace:0,scrolling:"auto"});n.html(p);p.load(function(){n.removeClass("nivo-lightbox-loading")})}else{return false}if(r.attr("title")){var d=e("<span>",{"class":"nivo-lightbox-title"});d.text(r.attr("title"));e(".nivo-lightbox-title-wrap").html(d)}else{e(".nivo-lightbox-title-wrap").html("")}},constructLightbox:function(){if(e(".nivo-lightbox-overlay").length)return e(".nivo-lightbox-overlay");var t=e("<div>",{"class":"nivo-lightbox-overlay nivo-lightbox-theme-"+this.options.theme+" nivo-lightbox-effect-"+this.options.effect});var n=e("<div>",{"class":"nivo-lightbox-wrap"});var r=e("<div>",{"class":"nivo-lightbox-content"});var i=e('<a href="#" class="nivo-lightbox-nav nivo-lightbox-prev">Previous</a><a href="#" class="nivo-lightbox-nav nivo-lightbox-next">Next</a>');var s=e('<a href="#" class="nivo-lightbox-close" title="Close">Close</a>');var o=e("<div>",{"class":"nivo-lightbox-title-wrap"});var u=0;if(u)t.addClass("nivo-lightbox-ie");n.append(r);n.append(o);t.append(n);t.append(i);t.append(s);e("body").append(t);var a=this;if(a.options.clickOverlayToClose){t.on("click",function(t){if(t.target===this||e(t.target).hasClass("nivo-lightbox-content")||e(t.target).hasClass("nivo-lightbox-image")){a.destructLightbox()}})}s.on("click",function(e){e.preventDefault();a.destructLightbox()});return t},destructLightbox:function(){var t=this;this.options.beforeHideLightbox.call(this);e(".nivo-lightbox-overlay").removeClass("nivo-lightbox-open");e(".nivo-lightbox-nav").hide();e("body").removeClass("nivo-lightbox-body-effect-"+t.options.effect);var n=0;if(n){e(".nivo-lightbox-overlay iframe").attr("src"," ");e(".nivo-lightbox-overlay iframe").remove()}e(".nivo-lightbox-prev").off("click");e(".nivo-lightbox-next").off("click");e(".nivo-lightbox-content").empty();this.options.afterHideLightbox.call(this)},isHidpi:function(){var e="(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)";if(t.devicePixelRatio>1)return true;if(t.matchMedia&&t.matchMedia(e).matches)return true;return false}};e.fn[i]=function(t){return this.each(function(){if(!e.data(this,i)){e.data(this,i,new o(this,t))}})}})(jQuery,window,document)
js/front.js CHANGED
@@ -75,6 +75,7 @@ jQuery(document).ready(function($) {
75
 
76
  $('a[rel*="'+rlArgs.selector+'"]').nivoLightbox({
77
  effect: rlArgs.effect,
 
78
  keyboardNav: (rlArgs.keyboardNav === '1' ? true : false),
79
  errorMessage: rlArgs.errorMessage
80
  });
75
 
76
  $('a[rel*="'+rlArgs.selector+'"]').nivoLightbox({
77
  effect: rlArgs.effect,
78
+ clickOverlayToClose: (rlArgs.clickOverlayToClose === '1' ? true : false),
79
  keyboardNav: (rlArgs.keyboardNav === '1' ? true : false),
80
  errorMessage: rlArgs.errorMessage
81
  });
languages/responsive-lightbox-pl_PL.mo CHANGED
Binary file
languages/responsive-lightbox-pl_PL.po CHANGED
@@ -1,491 +1,515 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
- "POT-Creation-Date: 2014-03-19 11:00+0100\n"
5
- "PO-Revision-Date: 2014-03-19 11:06+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: pl\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.6.4\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../responsive-lightbox.php:288
19
  msgid "prettyPhoto"
20
  msgstr "prettyPhoto"
21
 
22
- #: ../responsive-lightbox.php:290
23
  msgid "slow"
24
  msgstr "wolno"
25
 
26
- #: ../responsive-lightbox.php:291
27
  msgid "normal"
28
  msgstr "normalnie"
29
 
30
- #: ../responsive-lightbox.php:292
31
  msgid "fast"
32
  msgstr "szybko"
33
 
34
- #: ../responsive-lightbox.php:295
35
  msgid "default"
36
  msgstr ""
37
 
38
- #: ../responsive-lightbox.php:296
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
- #: ../responsive-lightbox.php:297
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
- #: ../responsive-lightbox.php:298
47
  msgid "light square"
48
  msgstr ""
49
 
50
- #: ../responsive-lightbox.php:299
51
  msgid "dark square"
52
  msgstr ""
53
 
54
- #: ../responsive-lightbox.php:300
55
  msgid "facebook"
56
  msgstr ""
57
 
58
- #: ../responsive-lightbox.php:303
59
  msgid "window"
60
  msgstr ""
61
 
62
- #: ../responsive-lightbox.php:304
63
  msgid "transparent"
64
  msgstr ""
65
 
66
- #: ../responsive-lightbox.php:305
67
  msgid "opaque"
68
  msgstr ""
69
 
70
- #: ../responsive-lightbox.php:306
71
  msgid "direct"
72
  msgstr ""
73
 
74
- #: ../responsive-lightbox.php:307
75
  msgid "gpu"
76
  msgstr ""
77
 
78
- #: ../responsive-lightbox.php:311
79
  msgid "SwipeBox"
80
  msgstr "SwipeBox"
81
 
82
- #: ../responsive-lightbox.php:313
83
  msgid "CSS"
84
  msgstr "CSS"
85
 
86
- #: ../responsive-lightbox.php:314
87
  msgid "jQuery"
88
  msgstr "jQuery"
89
 
90
- #: ../responsive-lightbox.php:318
91
  msgid "FancyBox"
92
  msgstr "FancyBox"
93
 
94
- #: ../responsive-lightbox.php:320
95
  msgid "elastic"
96
  msgstr ""
97
 
98
- #: ../responsive-lightbox.php:321 ../responsive-lightbox.php:342
99
  msgid "fade"
100
  msgstr ""
101
 
102
- #: ../responsive-lightbox.php:322
103
  msgid "none"
104
  msgstr "brak"
105
 
106
- #: ../responsive-lightbox.php:325
107
  msgid "auto"
108
  msgstr "automatycznie"
109
 
110
- #: ../responsive-lightbox.php:326
111
  msgid "yes"
112
  msgstr "tak"
113
 
114
- #: ../responsive-lightbox.php:327
115
  msgid "no"
116
  msgstr "nie"
117
 
118
- #: ../responsive-lightbox.php:330
119
  msgid "swing"
120
  msgstr ""
121
 
122
- #: ../responsive-lightbox.php:331
123
  msgid "linear"
124
  msgstr ""
125
 
126
- #: ../responsive-lightbox.php:334
127
  msgid "outside"
128
  msgstr ""
129
 
130
- #: ../responsive-lightbox.php:335
131
  msgid "inside"
132
  msgstr ""
133
 
134
- #: ../responsive-lightbox.php:336
135
  msgid "over"
136
  msgstr ""
137
 
138
- #: ../responsive-lightbox.php:340
139
  msgid "Nivo Lightbox"
140
  msgstr "Nivo Lightbox"
141
 
142
- #: ../responsive-lightbox.php:343
143
  msgid "fade scale"
144
  msgstr "fade scale"
145
 
146
- #: ../responsive-lightbox.php:344
147
  msgid "slide left"
148
  msgstr ""
149
 
150
- #: ../responsive-lightbox.php:345
151
  msgid "slide right"
152
  msgstr "slide right"
153
 
154
- #: ../responsive-lightbox.php:346
155
  msgid "slide up"
156
  msgstr ""
157
 
158
- #: ../responsive-lightbox.php:347
159
  msgid "slide down"
160
  msgstr "slide down"
161
 
162
- #: ../responsive-lightbox.php:348
163
  msgid "fall"
164
  msgstr ""
165
 
166
- #: ../responsive-lightbox.php:352
167
  msgid "Image Lightbox"
168
  msgstr "Image Lightbox"
169
 
170
- #: ../responsive-lightbox.php:357
171
  msgid "Enable"
172
  msgstr "Włącz"
173
 
174
- #: ../responsive-lightbox.php:358
175
  msgid "Disable"
176
  msgstr "Wyłącz"
177
 
178
- #: ../responsive-lightbox.php:362
179
  msgid "Header"
180
  msgstr "W nagłówku"
181
 
182
- #: ../responsive-lightbox.php:363
183
  msgid "Footer"
184
  msgstr "W stopce"
185
 
186
- #: ../responsive-lightbox.php:368 ../responsive-lightbox.php:469
187
  msgid "General settings"
188
  msgstr "Ustawienia ogólne"
189
 
190
- #: ../responsive-lightbox.php:374 ../responsive-lightbox.php:482
191
  msgid "Lightbox settings"
192
  msgstr "Ustawienia lightbox"
193
 
194
- #: ../responsive-lightbox.php:470
195
  msgid "Lightbox script"
196
  msgstr "Skrypt lightbox"
197
 
198
- #: ../responsive-lightbox.php:471
199
  msgid "Selector"
200
  msgstr "Znacznik"
201
 
202
- #: ../responsive-lightbox.php:472
203
  msgid "Galleries"
204
  msgstr "Galerie"
205
 
206
- #: ../responsive-lightbox.php:473
 
 
 
 
207
  msgid "Video links"
208
  msgstr "Linki video"
209
 
210
- #: ../responsive-lightbox.php:474
211
  msgid "Image links"
212
  msgstr "Linki obrazków"
213
 
214
- #: ../responsive-lightbox.php:475
215
  msgid "Single images as gallery"
216
  msgstr "Galeria pojedynczych obrazków"
217
 
218
- #: ../responsive-lightbox.php:476
219
  msgid "Custom events"
220
  msgstr "Własne zdarzenia"
221
 
222
- #: ../responsive-lightbox.php:477
223
  msgid "Loading place"
224
  msgstr "Ładowanie"
225
 
226
- #: ../responsive-lightbox.php:478
227
  msgid "Deactivation"
228
  msgstr "Deaktywacja"
229
 
230
- #: ../responsive-lightbox.php:486
231
  msgid "Animation type"
232
  msgstr "Typ animacji"
233
 
234
- #: ../responsive-lightbox.php:487
235
  msgid "Force PNG icons"
236
  msgstr "Wymuszanie ikon PNG"
237
 
238
- #: ../responsive-lightbox.php:488
239
  msgid "Top and bottom bars"
240
  msgstr "Górne i dolne paski"
241
 
242
- #: ../responsive-lightbox.php:489
243
  msgid "Video max width"
244
  msgstr "Maksymalna szerokość video"
245
 
246
- #: ../responsive-lightbox.php:493 ../responsive-lightbox.php:549
247
  msgid "Animation speed"
248
  msgstr "Szybkość animacji"
249
 
250
- #: ../responsive-lightbox.php:494
251
  msgid "Slideshow"
252
  msgstr "Pokaz slidów"
253
 
254
- #: ../responsive-lightbox.php:495
255
  msgid "Slideshow autoplay"
256
  msgstr "Automatyczne odtwarzanie pokazu slajdów"
257
 
258
- #: ../responsive-lightbox.php:496 ../responsive-lightbox.php:526
259
  msgid "Opacity"
260
  msgstr "Przezroczystość"
261
 
262
- #: ../responsive-lightbox.php:497
263
  msgid "Show title"
264
  msgstr "Wyświetlanie tytułu"
265
 
266
- #: ../responsive-lightbox.php:498
267
  msgid "Allow resize big images"
268
  msgstr "Powiększanie dużych zdjęć"
269
 
270
- #: ../responsive-lightbox.php:499
271
  msgid "Allow expand"
272
  msgstr "Zezwól na powiększanie"
273
 
274
- #: ../responsive-lightbox.php:500 ../responsive-lightbox.php:538
275
  msgid "Video width"
276
  msgstr "Szerokość video"
277
 
278
- #: ../responsive-lightbox.php:501 ../responsive-lightbox.php:539
279
  msgid "Video height"
280
  msgstr "Wysokość video"
281
 
282
- #: ../responsive-lightbox.php:502
283
  msgid "Theme"
284
  msgstr "Motyw"
285
 
286
- #: ../responsive-lightbox.php:503
287
  msgid "Horizontal padding"
288
  msgstr "Odstępy w poziomie"
289
 
290
- #: ../responsive-lightbox.php:504
291
  msgid "Hide Flash"
292
  msgstr "Ukrywanie flash"
293
 
294
- #: ../responsive-lightbox.php:505
295
  msgid "Flash Window Mode (wmode)"
296
  msgstr "Tryb okna flash (wmode)"
297
 
298
- #: ../responsive-lightbox.php:506
299
  msgid "Video autoplay"
300
  msgstr "Automatyczne odtwarzanie wideo"
301
 
302
- #: ../responsive-lightbox.php:507 ../responsive-lightbox.php:515
303
  msgid "Modal"
304
  msgstr "Tryb modal"
305
 
306
- #: ../responsive-lightbox.php:508
307
  msgid "Deeplinking"
308
  msgstr "Głębokie linki"
309
 
310
- #: ../responsive-lightbox.php:509
311
  msgid "Overlay gallery"
312
  msgstr "Efekt overlay galerii"
313
 
314
- #: ../responsive-lightbox.php:510
315
  msgid "Keyboard shortcuts"
316
  msgstr "Skróty klawiaturowe"
317
 
318
- #: ../responsive-lightbox.php:511
319
  msgid "Social (Twitter, Facebook)"
320
  msgstr "Linki społeczności (Twitter, Facebook)"
321
 
322
- #: ../responsive-lightbox.php:516
323
  msgid "Show overlay"
324
  msgstr "Wyświetlanie tła"
325
 
326
- #: ../responsive-lightbox.php:517
327
  msgid "Show close button"
328
  msgstr "Wyświetlanie przycisku Zamknij"
329
 
330
- #: ../responsive-lightbox.php:518
331
  msgid "Enable escape button"
332
  msgstr "Wyświetlanie przycisku Wyjdź"
333
 
334
- #: ../responsive-lightbox.php:519
335
  msgid "Hide on overlay click"
336
  msgstr "Ukryj po kliknięciu w tło"
337
 
338
- #: ../responsive-lightbox.php:520
339
  msgid "Hide on content click"
340
  msgstr "Ukryj po kliknięciu w treść"
341
 
342
- #: ../responsive-lightbox.php:521
343
  msgid "Cyclic"
344
  msgstr "Cykliczność"
345
 
346
- #: ../responsive-lightbox.php:522
347
  msgid "Show nav arrows"
348
  msgstr "Wyświetlanie strzałek"
349
 
350
- #: ../responsive-lightbox.php:523
351
  msgid "Auto scale"
352
  msgstr "Automatyczne skalowanie"
353
 
354
- #: ../responsive-lightbox.php:524
355
  msgid "Scrolling (in/out)"
356
  msgstr "Przewijanie"
357
 
358
- #: ../responsive-lightbox.php:525
359
  msgid "Center on scroll"
360
  msgstr "Centrowanie przy przewijaniu"
361
 
362
- #: ../responsive-lightbox.php:527
363
  msgid "Overlay opacity"
364
  msgstr "Przezroczystość tła"
365
 
366
- #: ../responsive-lightbox.php:528
367
  msgid "Overlay color"
368
  msgstr "Kolor tła"
369
 
370
- #: ../responsive-lightbox.php:529
371
  msgid "Title show"
372
  msgstr "Wyświetlanie tytułu"
373
 
374
- #: ../responsive-lightbox.php:530
375
  msgid "Title position"
376
  msgstr "Pozycja tytułu"
377
 
378
- #: ../responsive-lightbox.php:531
379
  msgid "Transition (in/out)"
380
  msgstr "Efekty przejścia"
381
 
382
- #: ../responsive-lightbox.php:532
383
  msgid "Easings (in/out)"
384
  msgstr "Wygładzanie animacji"
385
 
386
- #: ../responsive-lightbox.php:533
387
  msgid "Speed (in/out)"
388
  msgstr "Szybkość"
389
 
390
- #: ../responsive-lightbox.php:534
391
  msgid "Change speed"
392
  msgstr "Zmień szybkość"
393
 
394
- #: ../responsive-lightbox.php:535
395
  msgid "Change fade"
396
  msgstr "Zmień zanikanie"
397
 
398
- #: ../responsive-lightbox.php:536
399
  msgid "Padding"
400
  msgstr "Odstęp (padding)"
401
 
402
- #: ../responsive-lightbox.php:537
403
  msgid "Margin"
404
  msgstr "Margines (margin)"
405
 
406
- #: ../responsive-lightbox.php:543
407
  msgid "Effect"
408
  msgstr "Efekt"
409
 
410
- #: ../responsive-lightbox.php:544
 
 
 
 
411
  msgid "Keyboard navigation"
412
  msgstr "Nawigacja klawiaturą"
413
 
414
- #: ../responsive-lightbox.php:545
415
  msgid "Error message"
416
  msgstr "Treść komunikatu o błędzie"
417
 
418
- #: ../responsive-lightbox.php:550
419
  msgid "Preload next image"
420
  msgstr "Wstępne ładowanie kolejnego obrazka"
421
 
422
- #: ../responsive-lightbox.php:551
423
  msgid "Enable keyboard keys"
424
  msgstr "Obługa klawiaturą"
425
 
426
- #: ../responsive-lightbox.php:552
427
  msgid "Quit after last image"
428
  msgstr "Wyjście po ostanim obrazku"
429
 
430
- #: ../responsive-lightbox.php:553
431
  msgid "Quit when image is clicked"
432
  msgstr "Wyjście po kliknięciu w obrazek"
433
 
434
- #: ../responsive-lightbox.php:554
435
  msgid "Quit when anything but image is clicked"
436
  msgstr "Wyjście po kliknięciu w coś innego niż obrazek"
437
 
438
- #: ../responsive-lightbox.php:574
439
  msgid "Select your preffered ligthbox effect script."
440
  msgstr "Wybierz preferowany efekt lightbox."
441
 
442
- #: ../responsive-lightbox.php:584
443
  msgid "Select to which rel selector lightbox effect will be applied to."
444
  msgstr "Wybierz dla któego znacznika będzie dodawany efekt lightbox."
445
 
446
- #: ../responsive-lightbox.php:604
447
  msgid "Enable triggering lightbox on custom jquery events."
448
  msgstr "Włącz uruchamianie efektu lightbox przy własnych zdarzeniach jquery."
449
 
450
- #: ../responsive-lightbox.php:607
451
  msgid "Enter a space separated list of events."
452
  msgstr "Wpisz oddzieloną spacją listę wydarzeń."
453
 
454
- #: ../responsive-lightbox.php:628
455
  msgid "Select where all the lightbox scripts should be placed."
456
  msgstr "Wybierz w którym miejscu chcesz wczytywać skrypty efektu lightbox."
457
 
458
- #: ../responsive-lightbox.php:646
459
  msgid "Add lightbox to WordPress image galleries by default."
460
  msgstr "Dodaj efekt lightbox do galerii obrazków WordPressa."
461
 
462
- #: ../responsive-lightbox.php:664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
  msgid "Add lightbox to YouTube and Vimeo video links by default."
464
  msgstr "Dodaj efekt lightbox do linków video (YouTube i Vimeo) WordPressa."
465
 
466
- #: ../responsive-lightbox.php:682
467
  msgid "Add lightbox to WordPress image links by default."
468
  msgstr "Dodaj efekt lightbox do pojedynczych obrazków WordPressa."
469
 
470
- #: ../responsive-lightbox.php:700
471
  msgid "Display single post images as a gallery."
472
  msgstr "Wyświetl pojedyncze obrazki jako pokaz sladów."
473
 
474
- #: ../responsive-lightbox.php:718
475
  msgid "Delete settings on plugin deactivation."
476
  msgstr "Usuń ustawienia przy deaktywacji wtyczki."
477
 
478
- #: ../responsive-lightbox.php:736
479
  msgid "Select a method of applying a lightbox effect."
480
  msgstr "Wybierz sposób dodawania efekty lightbox."
481
 
482
- #: ../responsive-lightbox.php:754
483
  msgid ""
484
  "Disable if you don't want to top and bottom bars to be hidden after a period "
485
  "of time."
486
  msgstr "Wyłącz to, jeśli nie chcesz ukrywać górnego i dolnego paska."
487
 
488
- #: ../responsive-lightbox.php:757
489
  msgid ""
490
  "Enter the time after which the top and bottom bars will be hidden (when "
491
  "hiding is enabled)."
@@ -493,61 +517,61 @@ msgstr ""
493
  "Podaj czas po którym chcesz ukryć górny i dolny pasek (jeśli opcja ukrywania "
494
  "jest włączona)."
495
 
496
- #: ../responsive-lightbox.php:768
497
  msgid "Enter the max video width in a lightbox."
498
  msgstr "Podaj maksymalną szerokość video."
499
 
500
- #: ../responsive-lightbox.php:786
501
  msgid ""
502
  "Enable this if you're having problems with navigation icons not visible on "
503
  "some devices."
504
  msgstr "Włącz tę opcję jeśli masz problemy z wyświetlaniem ikon nawigacji."
505
 
506
- #: ../responsive-lightbox.php:804
507
  msgid "Select animation speed for lightbox effect."
508
  msgstr "Wybierz szybkość animacji efektu lightbox."
509
 
510
- #: ../responsive-lightbox.php:822
511
  msgid "Display images as slideshow."
512
  msgstr "Wyświetl obrazki jako pokaz sladów ."
513
 
514
- #: ../responsive-lightbox.php:825
515
  msgid "Enter time (in miliseconds)."
516
  msgstr "Podaj czas (w milisekundach)."
517
 
518
- #: ../responsive-lightbox.php:844
519
  msgid "Automatically start slideshow."
520
  msgstr "Automatyczne rozpoczynanie pokazu slajdów."
521
 
522
- #: ../responsive-lightbox.php:857
523
  msgid "Value between 0 and 100, 100 for no opacity."
524
  msgstr "Wartość pomiędzy 0 i 100 (100 oznacza brak przezroczystości)."
525
 
526
- #: ../responsive-lightbox.php:875
527
  msgid "Display image tiltle."
528
  msgstr "Wyświetlanie tytułu obrazka."
529
 
530
- #: ../responsive-lightbox.php:893
531
  msgid "Resize the photos bigger than viewport."
532
  msgstr "Zmiana wielkość zdjęć większych niż aktualny ekran."
533
 
534
- #: ../responsive-lightbox.php:911
535
  msgid "Expands something."
536
  msgstr "Powiększeniei okna."
537
 
538
- #: ../responsive-lightbox.php:921 ../responsive-lightbox.php:931
539
  msgid "in pixels"
540
  msgstr "w pikselach"
541
 
542
- #: ../responsive-lightbox.php:949
543
  msgid "Select theme for lightbox effect."
544
  msgstr "Wybierz motyw dla efektu lightbox."
545
 
546
- #: ../responsive-lightbox.php:959
547
  msgid "Horizontal padding (in pixels)."
548
  msgstr "Odstępy w poziomie (w pikselach)."
549
 
550
- #: ../responsive-lightbox.php:977
551
  msgid ""
552
  "Hides all the flash object on a page. Enable this if flash appears over "
553
  "prettyPhoto."
@@ -555,50 +579,50 @@ msgstr ""
555
  "Ukywa wszystkie obiekty flash na stronie. Włącz to jeśli animacje flash "
556
  "wyświetlane są nad lightboxem."
557
 
558
- #: ../responsive-lightbox.php:995
559
  msgid "Select flash window mode."
560
  msgstr "Wybierz tryb okna flash."
561
 
562
- #: ../responsive-lightbox.php:1013
563
  msgid "Automatically start videos."
564
  msgstr "Automatycznie rozpoczynaj video."
565
 
566
- #: ../responsive-lightbox.php:1031
567
  msgid "If set to true, only the close button will close the window."
568
  msgstr ""
569
  "Jeśli będzie włączone, tylko kliknięcie przycisku spowoduje zamknięcie okna."
570
 
571
- #: ../responsive-lightbox.php:1049
572
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
573
  msgstr "Zezwól prettyPhoto na aktualizacje adresów URL i głębokie linkowanie."
574
 
575
- #: ../responsive-lightbox.php:1067
576
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
577
  msgstr ""
578
  "Jeśli będzie włączone, galeria będzie wyświetlana na cały ekran po "
579
  "najechaniu myszką."
580
 
581
- #: ../responsive-lightbox.php:1085
582
  msgid "Set to false if you open forms inside prettyPhoto."
583
  msgstr "Wyłącz to jeśli chcesz otwierać formularze wewnątrz prettyPhoto."
584
 
585
- #: ../responsive-lightbox.php:1103
586
  msgid "Display links to Facebook and Twitter."
587
  msgstr "Wyświetl linki do Facebboka i Twittera."
588
 
589
- #: ../responsive-lightbox.php:1121
590
  msgid "The transition type."
591
  msgstr "Typ animacji."
592
 
593
- #: ../responsive-lightbox.php:1131
594
  msgid "Space between FancyBox wrapper and content."
595
  msgstr "Przestrzeń między FancyBox a treścią"
596
 
597
- #: ../responsive-lightbox.php:1141
598
  msgid "Space between viewport and FancyBox wrapper."
599
  msgstr "Przestrzeń między ekranem a Fancybox"
600
 
601
- #: ../responsive-lightbox.php:1159
602
  msgid ""
603
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
604
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
@@ -608,136 +632,140 @@ msgstr ""
608
  "TRUE, natomiast \"hideOnOverlayClick\", \"hideOnContentClick\", "
609
  "\"enableEscapeButton\", \"showCloseButton\" zostaną ustawione na FALSE."
610
 
611
- #: ../responsive-lightbox.php:1177
612
  msgid "Toggle overlay."
613
  msgstr "Włącz tło."
614
 
615
- #: ../responsive-lightbox.php:1195
616
  msgid "Toggle close button."
617
  msgstr "Włącz przycisk Zamknij."
618
 
619
- #: ../responsive-lightbox.php:1213
620
  msgid "Toggle if pressing Esc button closes FancyBox."
621
  msgstr "Włącz zamykanie FancyBox przy pomocy Esc."
622
 
623
- #: ../responsive-lightbox.php:1231
624
  msgid "Toggle if clicking the overlay should close FancyBox."
625
  msgstr "Włącz zamykanie FancyBox kliknięciem w tło."
626
 
627
- #: ../responsive-lightbox.php:1249
628
  msgid "Toggle if clicking the content should close FancyBox."
629
  msgstr "Włącz zamykanie FancyBox kliknięciem w treść."
630
 
631
- #: ../responsive-lightbox.php:1267
632
  msgid ""
633
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
634
  msgstr "Jeśli będzie włączone, galerie będą wyświetlane cyklicznie."
635
 
636
- #: ../responsive-lightbox.php:1285
637
  msgid "Toggle navigation arrows."
638
  msgstr "Włącz strzałki nawigacyjne."
639
 
640
- #: ../responsive-lightbox.php:1303
641
  msgid "If true, FancyBox is scaled to fit in viewport."
642
  msgstr "Jeśli będzie włączone, FancyBox będzie skalowany do rozmiaru okna."
643
 
644
- #: ../responsive-lightbox.php:1321
645
  msgid "Set the overflow CSS property to create or hide scrollbars."
646
  msgstr ""
647
  "Ustaw parametr overflow dw CSS aby tworzyć lub ukrywać elementy nawigacji."
648
 
649
- #: ../responsive-lightbox.php:1339
650
  msgid "When true, FancyBox is centered while scrolling page."
651
  msgstr ""
652
  "Jeśli będzie zaznaczone, FancyBox będzie wycentrowany w trakcie przewijania "
653
  "strony."
654
 
655
- #: ../responsive-lightbox.php:1357
656
  msgid "When true, transparency of content is changed for elastic transitions."
657
  msgstr ""
658
  "Jeśli będzie zaznaczone, przezroczystość treści zmieni się w trakcie "
659
  "animacji."
660
 
661
- #: ../responsive-lightbox.php:1370
662
  msgid "Opacity of the overlay."
663
  msgstr "Przezroczystość tła."
664
 
665
- #: ../responsive-lightbox.php:1380
666
  msgid "Color of the overlay."
667
  msgstr "Kolor tła."
668
 
669
- #: ../responsive-lightbox.php:1398
670
  msgid "Toggle title."
671
  msgstr "Wyświetlanie tytułu."
672
 
673
- #: ../responsive-lightbox.php:1416
674
  msgid "The position of title."
675
  msgstr "Pozycja tytułu."
676
 
677
- #: ../responsive-lightbox.php:1434
678
  msgid "Easing used for elastic animations."
679
  msgstr "Wygładzanie animacji dla trybu elastic."
680
 
681
- #: ../responsive-lightbox.php:1444
682
  msgid "Speed of the fade and elastic transitions, in milliseconds."
683
  msgstr "Podaj czas trwania animacji fade i elastic (w milisekundach)"
684
 
685
- #: ../responsive-lightbox.php:1454
686
  msgid "Speed of resizing when changing gallery items, in milliseconds."
687
  msgstr ""
688
  "Szybkość zmiany wielkości okna w trakcie przechodzenia między obrazkami (w "
689
  "milisekundach)."
690
 
691
- #: ../responsive-lightbox.php:1464
692
  msgid "Speed of the content fading while changing gallery items."
693
  msgstr "Szybkość zanikania elementów w trakcie przechodzenia między obrazkami."
694
 
695
- #: ../responsive-lightbox.php:1474
696
  msgid "Width of the video."
697
  msgstr "Szerokość video."
698
 
699
- #: ../responsive-lightbox.php:1484
700
  msgid "Height of the video."
701
  msgstr "Wysokość video."
702
 
703
- #: ../responsive-lightbox.php:1502
704
  msgid "The effect to use when showing the lightbox."
705
  msgstr "Wybierz efekt, który chcesz zastosować do wyświetlania lightboxa."
706
 
707
- #: ../responsive-lightbox.php:1520
708
  msgid "Enable/Disable keyboard navigation (left/right/escape)."
709
  msgstr ""
710
  "Włącz / Wyłącz nawigację klawiaturą (strzałka w lewo, w prawo i przycisk ESC)"
711
 
712
- #: ../responsive-lightbox.php:1530
 
 
 
 
713
  msgid "Error message if the content cannot be loaded."
714
  msgstr "Komunikat w przypadku gdy nie można załądować treści."
715
 
716
- #: ../responsive-lightbox.php:1540
717
  msgid "Animation speed."
718
  msgstr "Szybkość animacji."
719
 
720
- #: ../responsive-lightbox.php:1558
721
  msgid "Silently preload the next image."
722
  msgstr "W niezauważalny sposób ładuje kolejny obrazek."
723
 
724
- #: ../responsive-lightbox.php:1576
725
  msgid "Enable keyboard shortcuts (arrows Left/Right and Esc)."
726
  msgstr "Włącza skróty klawiaturowe (strzałki lewo/prawo oraz Esc)"
727
 
728
- #: ../responsive-lightbox.php:1594
729
  msgid "Quit after viewing the last image."
730
  msgstr "Powoduje wyjście z lightboxa po obejrzeniu ostatniego obrazka."
731
 
732
- #: ../responsive-lightbox.php:1612
733
  msgid "Quit when the viewed image is clicked."
734
  msgstr "Powoduje wyjście z lightboxa po kliknięciu w przeglądany obrazek."
735
 
736
- #: ../responsive-lightbox.php:1630
737
  msgid "Quit when anything but the viewed image is clicked."
738
  msgstr "Powoduje wyjście z lightboxa po kliknięciu w coś innego niż obrazek."
739
 
740
- #: ../responsive-lightbox.php:1860
741
  msgid ""
742
  "Changes were not saved because there was attempt to save settings of "
743
  "inactive script. The site has been reloaded to the proper script settings."
@@ -745,27 +773,27 @@ msgstr ""
745
  "Zmiany nie zostały zapisane ponieważ wykryto próbę zapisu ustawień "
746
  "nieaktywnego skryptu. Strona została odświeżona z prawidłowymi ustawieniami."
747
 
748
- #: ../responsive-lightbox.php:1870
749
  msgid "Settings restored to defaults."
750
  msgstr "Ustawienia zostały przywrócone do domyślnych."
751
 
752
- #: ../responsive-lightbox.php:1878
753
  msgid "Settings of SwipeBox script were restored to defaults."
754
  msgstr "Ustawienia skryptu SwipeBox zostały przywrócone."
755
 
756
- #: ../responsive-lightbox.php:1884
757
  msgid "Settings of prettyPhoto script were restored to defaults."
758
  msgstr "Ustawienia skryptu prettyPhoto zostały przywrócone."
759
 
760
- #: ../responsive-lightbox.php:1890
761
  msgid "Settings of FancyBox script were restored to defaults."
762
  msgstr "Ustawienia skryptu FancyBox zostały przywrócone."
763
 
764
- #: ../responsive-lightbox.php:1896
765
  msgid "Settings of Nivo script were restored to defaults."
766
  msgstr "Ustawienia skryptu Nivo Lightbox zostały przywrócone."
767
 
768
- #: ../responsive-lightbox.php:1900
769
  msgid ""
770
  "Changes were not set to defaults because there was attempt to reset settings "
771
  "of inactive script. The site has been reloaded to the proper script settings."
@@ -774,68 +802,68 @@ msgstr ""
774
  "resetowania ustawień nieaktywnego skryptu. Strona została odświeżona z "
775
  "prawidłowymi ustawieniami."
776
 
777
- #: ../responsive-lightbox.php:1914 ../responsive-lightbox.php:1915
778
- #: ../responsive-lightbox.php:1929 ../responsive-lightbox.php:1943
779
  msgid "Responsive Lightbox"
780
  msgstr "Efekt Lightbox"
781
 
782
- #: ../responsive-lightbox.php:1945
783
  msgid "Need support?"
784
  msgstr "Potrzebujesz pomocy?"
785
 
786
- #: ../responsive-lightbox.php:1946
787
  msgid ""
788
  "If you are having problems with this plugin, please talk about them in the"
789
  msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o nich na"
790
 
791
- #: ../responsive-lightbox.php:1946
792
  msgid "Support forum"
793
  msgstr "Forum pomocy"
794
 
795
- #: ../responsive-lightbox.php:1948
796
  msgid "Do you like this plugin?"
797
  msgstr "Lubisz tę wtyczkę?"
798
 
799
- #: ../responsive-lightbox.php:1949
800
  msgid "Rate it 5"
801
  msgstr "Oceń ją na 5"
802
 
803
- #: ../responsive-lightbox.php:1949
804
  msgid "on WordPress.org"
805
  msgstr "na WordPress.org"
806
 
807
- #: ../responsive-lightbox.php:1950
808
  msgid "Blog about it & link to the"
809
  msgstr "Napisz o niej i dodaj link"
810
 
811
- #: ../responsive-lightbox.php:1950
812
  msgid "plugin page"
813
  msgstr "do strony wtyczki"
814
 
815
- #: ../responsive-lightbox.php:1951
816
  msgid "Check out our other"
817
  msgstr "Sprawdź nasze pozostałe"
818
 
819
- #: ../responsive-lightbox.php:1951
820
  msgid "WordPress plugins"
821
  msgstr "wtyczki do WordPress'a"
822
 
823
- #: ../responsive-lightbox.php:1971
824
  msgid "Reset to defaults"
825
  msgstr "Resetuj do domyślnych"
826
 
827
- #: ../responsive-lightbox.php:1998
828
  msgid "Are you sure you want to reset these settings to defaults?"
829
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia do domyślnych?"
830
 
831
- #: ../responsive-lightbox.php:1999
832
  msgid "Are you sure you want to reset scripts settings to defaults?"
833
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia?"
834
 
835
- #: ../responsive-lightbox.php:2288
836
  msgid "Support"
837
  msgstr "Pomoc"
838
 
839
- #: ../responsive-lightbox.php:2310
840
  msgid "Settings"
841
  msgstr "Ustawienia"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
+ "POT-Creation-Date: 2014-09-04 21:25+0100\n"
5
+ "PO-Revision-Date: 2014-09-04 21:26+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: pl\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.6.7\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../responsive-lightbox.php:294
19
  msgid "prettyPhoto"
20
  msgstr "prettyPhoto"
21
 
22
+ #: ../responsive-lightbox.php:296
23
  msgid "slow"
24
  msgstr "wolno"
25
 
26
+ #: ../responsive-lightbox.php:297
27
  msgid "normal"
28
  msgstr "normalnie"
29
 
30
+ #: ../responsive-lightbox.php:298
31
  msgid "fast"
32
  msgstr "szybko"
33
 
34
+ #: ../responsive-lightbox.php:301
35
  msgid "default"
36
  msgstr ""
37
 
38
+ #: ../responsive-lightbox.php:302
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
+ #: ../responsive-lightbox.php:303
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
+ #: ../responsive-lightbox.php:304
47
  msgid "light square"
48
  msgstr ""
49
 
50
+ #: ../responsive-lightbox.php:305
51
  msgid "dark square"
52
  msgstr ""
53
 
54
+ #: ../responsive-lightbox.php:306
55
  msgid "facebook"
56
  msgstr ""
57
 
58
+ #: ../responsive-lightbox.php:309
59
  msgid "window"
60
  msgstr ""
61
 
62
+ #: ../responsive-lightbox.php:310
63
  msgid "transparent"
64
  msgstr ""
65
 
66
+ #: ../responsive-lightbox.php:311
67
  msgid "opaque"
68
  msgstr ""
69
 
70
+ #: ../responsive-lightbox.php:312
71
  msgid "direct"
72
  msgstr ""
73
 
74
+ #: ../responsive-lightbox.php:313
75
  msgid "gpu"
76
  msgstr ""
77
 
78
+ #: ../responsive-lightbox.php:317
79
  msgid "SwipeBox"
80
  msgstr "SwipeBox"
81
 
82
+ #: ../responsive-lightbox.php:319
83
  msgid "CSS"
84
  msgstr "CSS"
85
 
86
+ #: ../responsive-lightbox.php:320
87
  msgid "jQuery"
88
  msgstr "jQuery"
89
 
90
+ #: ../responsive-lightbox.php:324
91
  msgid "FancyBox"
92
  msgstr "FancyBox"
93
 
94
+ #: ../responsive-lightbox.php:326
95
  msgid "elastic"
96
  msgstr ""
97
 
98
+ #: ../responsive-lightbox.php:327 ../responsive-lightbox.php:348
99
  msgid "fade"
100
  msgstr ""
101
 
102
+ #: ../responsive-lightbox.php:328
103
  msgid "none"
104
  msgstr "brak"
105
 
106
+ #: ../responsive-lightbox.php:331
107
  msgid "auto"
108
  msgstr "automatycznie"
109
 
110
+ #: ../responsive-lightbox.php:332
111
  msgid "yes"
112
  msgstr "tak"
113
 
114
+ #: ../responsive-lightbox.php:333
115
  msgid "no"
116
  msgstr "nie"
117
 
118
+ #: ../responsive-lightbox.php:336
119
  msgid "swing"
120
  msgstr ""
121
 
122
+ #: ../responsive-lightbox.php:337
123
  msgid "linear"
124
  msgstr ""
125
 
126
+ #: ../responsive-lightbox.php:340
127
  msgid "outside"
128
  msgstr ""
129
 
130
+ #: ../responsive-lightbox.php:341
131
  msgid "inside"
132
  msgstr ""
133
 
134
+ #: ../responsive-lightbox.php:342
135
  msgid "over"
136
  msgstr ""
137
 
138
+ #: ../responsive-lightbox.php:346
139
  msgid "Nivo Lightbox"
140
  msgstr "Nivo Lightbox"
141
 
142
+ #: ../responsive-lightbox.php:349
143
  msgid "fade scale"
144
  msgstr "fade scale"
145
 
146
+ #: ../responsive-lightbox.php:350
147
  msgid "slide left"
148
  msgstr ""
149
 
150
+ #: ../responsive-lightbox.php:351
151
  msgid "slide right"
152
  msgstr "slide right"
153
 
154
+ #: ../responsive-lightbox.php:352
155
  msgid "slide up"
156
  msgstr ""
157
 
158
+ #: ../responsive-lightbox.php:353
159
  msgid "slide down"
160
  msgstr "slide down"
161
 
162
+ #: ../responsive-lightbox.php:354
163
  msgid "fall"
164
  msgstr ""
165
 
166
+ #: ../responsive-lightbox.php:358
167
  msgid "Image Lightbox"
168
  msgstr "Image Lightbox"
169
 
170
+ #: ../responsive-lightbox.php:363
171
  msgid "Enable"
172
  msgstr "Włącz"
173
 
174
+ #: ../responsive-lightbox.php:364
175
  msgid "Disable"
176
  msgstr "Wyłącz"
177
 
178
+ #: ../responsive-lightbox.php:368
179
  msgid "Header"
180
  msgstr "W nagłówku"
181
 
182
+ #: ../responsive-lightbox.php:369
183
  msgid "Footer"
184
  msgstr "W stopce"
185
 
186
+ #: ../responsive-lightbox.php:374 ../responsive-lightbox.php:475
187
  msgid "General settings"
188
  msgstr "Ustawienia ogólne"
189
 
190
+ #: ../responsive-lightbox.php:380 ../responsive-lightbox.php:489
191
  msgid "Lightbox settings"
192
  msgstr "Ustawienia lightbox"
193
 
194
+ #: ../responsive-lightbox.php:476
195
  msgid "Lightbox script"
196
  msgstr "Skrypt lightbox"
197
 
198
+ #: ../responsive-lightbox.php:477
199
  msgid "Selector"
200
  msgstr "Znacznik"
201
 
202
+ #: ../responsive-lightbox.php:478
203
  msgid "Galleries"
204
  msgstr "Galerie"
205
 
206
+ #: ../responsive-lightbox.php:479
207
+ msgid "Gallery image size"
208
+ msgstr "WIelkość obrazka w galerii"
209
+
210
+ #: ../responsive-lightbox.php:480
211
  msgid "Video links"
212
  msgstr "Linki video"
213
 
214
+ #: ../responsive-lightbox.php:481
215
  msgid "Image links"
216
  msgstr "Linki obrazków"
217
 
218
+ #: ../responsive-lightbox.php:482
219
  msgid "Single images as gallery"
220
  msgstr "Galeria pojedynczych obrazków"
221
 
222
+ #: ../responsive-lightbox.php:483
223
  msgid "Custom events"
224
  msgstr "Własne zdarzenia"
225
 
226
+ #: ../responsive-lightbox.php:484
227
  msgid "Loading place"
228
  msgstr "Ładowanie"
229
 
230
+ #: ../responsive-lightbox.php:485
231
  msgid "Deactivation"
232
  msgstr "Deaktywacja"
233
 
234
+ #: ../responsive-lightbox.php:493
235
  msgid "Animation type"
236
  msgstr "Typ animacji"
237
 
238
+ #: ../responsive-lightbox.php:494
239
  msgid "Force PNG icons"
240
  msgstr "Wymuszanie ikon PNG"
241
 
242
+ #: ../responsive-lightbox.php:495
243
  msgid "Top and bottom bars"
244
  msgstr "Górne i dolne paski"
245
 
246
+ #: ../responsive-lightbox.php:496
247
  msgid "Video max width"
248
  msgstr "Maksymalna szerokość video"
249
 
250
+ #: ../responsive-lightbox.php:500 ../responsive-lightbox.php:557
251
  msgid "Animation speed"
252
  msgstr "Szybkość animacji"
253
 
254
+ #: ../responsive-lightbox.php:501
255
  msgid "Slideshow"
256
  msgstr "Pokaz slidów"
257
 
258
+ #: ../responsive-lightbox.php:502
259
  msgid "Slideshow autoplay"
260
  msgstr "Automatyczne odtwarzanie pokazu slajdów"
261
 
262
+ #: ../responsive-lightbox.php:503 ../responsive-lightbox.php:533
263
  msgid "Opacity"
264
  msgstr "Przezroczystość"
265
 
266
+ #: ../responsive-lightbox.php:504
267
  msgid "Show title"
268
  msgstr "Wyświetlanie tytułu"
269
 
270
+ #: ../responsive-lightbox.php:505
271
  msgid "Allow resize big images"
272
  msgstr "Powiększanie dużych zdjęć"
273
 
274
+ #: ../responsive-lightbox.php:506
275
  msgid "Allow expand"
276
  msgstr "Zezwól na powiększanie"
277
 
278
+ #: ../responsive-lightbox.php:507 ../responsive-lightbox.php:545
279
  msgid "Video width"
280
  msgstr "Szerokość video"
281
 
282
+ #: ../responsive-lightbox.php:508 ../responsive-lightbox.php:546
283
  msgid "Video height"
284
  msgstr "Wysokość video"
285
 
286
+ #: ../responsive-lightbox.php:509
287
  msgid "Theme"
288
  msgstr "Motyw"
289
 
290
+ #: ../responsive-lightbox.php:510
291
  msgid "Horizontal padding"
292
  msgstr "Odstępy w poziomie"
293
 
294
+ #: ../responsive-lightbox.php:511
295
  msgid "Hide Flash"
296
  msgstr "Ukrywanie flash"
297
 
298
+ #: ../responsive-lightbox.php:512
299
  msgid "Flash Window Mode (wmode)"
300
  msgstr "Tryb okna flash (wmode)"
301
 
302
+ #: ../responsive-lightbox.php:513
303
  msgid "Video autoplay"
304
  msgstr "Automatyczne odtwarzanie wideo"
305
 
306
+ #: ../responsive-lightbox.php:514 ../responsive-lightbox.php:522
307
  msgid "Modal"
308
  msgstr "Tryb modal"
309
 
310
+ #: ../responsive-lightbox.php:515
311
  msgid "Deeplinking"
312
  msgstr "Głębokie linki"
313
 
314
+ #: ../responsive-lightbox.php:516
315
  msgid "Overlay gallery"
316
  msgstr "Efekt overlay galerii"
317
 
318
+ #: ../responsive-lightbox.php:517
319
  msgid "Keyboard shortcuts"
320
  msgstr "Skróty klawiaturowe"
321
 
322
+ #: ../responsive-lightbox.php:518
323
  msgid "Social (Twitter, Facebook)"
324
  msgstr "Linki społeczności (Twitter, Facebook)"
325
 
326
+ #: ../responsive-lightbox.php:523
327
  msgid "Show overlay"
328
  msgstr "Wyświetlanie tła"
329
 
330
+ #: ../responsive-lightbox.php:524
331
  msgid "Show close button"
332
  msgstr "Wyświetlanie przycisku Zamknij"
333
 
334
+ #: ../responsive-lightbox.php:525
335
  msgid "Enable escape button"
336
  msgstr "Wyświetlanie przycisku Wyjdź"
337
 
338
+ #: ../responsive-lightbox.php:526
339
  msgid "Hide on overlay click"
340
  msgstr "Ukryj po kliknięciu w tło"
341
 
342
+ #: ../responsive-lightbox.php:527
343
  msgid "Hide on content click"
344
  msgstr "Ukryj po kliknięciu w treść"
345
 
346
+ #: ../responsive-lightbox.php:528
347
  msgid "Cyclic"
348
  msgstr "Cykliczność"
349
 
350
+ #: ../responsive-lightbox.php:529
351
  msgid "Show nav arrows"
352
  msgstr "Wyświetlanie strzałek"
353
 
354
+ #: ../responsive-lightbox.php:530
355
  msgid "Auto scale"
356
  msgstr "Automatyczne skalowanie"
357
 
358
+ #: ../responsive-lightbox.php:531
359
  msgid "Scrolling (in/out)"
360
  msgstr "Przewijanie"
361
 
362
+ #: ../responsive-lightbox.php:532
363
  msgid "Center on scroll"
364
  msgstr "Centrowanie przy przewijaniu"
365
 
366
+ #: ../responsive-lightbox.php:534
367
  msgid "Overlay opacity"
368
  msgstr "Przezroczystość tła"
369
 
370
+ #: ../responsive-lightbox.php:535
371
  msgid "Overlay color"
372
  msgstr "Kolor tła"
373
 
374
+ #: ../responsive-lightbox.php:536
375
  msgid "Title show"
376
  msgstr "Wyświetlanie tytułu"
377
 
378
+ #: ../responsive-lightbox.php:537
379
  msgid "Title position"
380
  msgstr "Pozycja tytułu"
381
 
382
+ #: ../responsive-lightbox.php:538
383
  msgid "Transition (in/out)"
384
  msgstr "Efekty przejścia"
385
 
386
+ #: ../responsive-lightbox.php:539
387
  msgid "Easings (in/out)"
388
  msgstr "Wygładzanie animacji"
389
 
390
+ #: ../responsive-lightbox.php:540
391
  msgid "Speed (in/out)"
392
  msgstr "Szybkość"
393
 
394
+ #: ../responsive-lightbox.php:541
395
  msgid "Change speed"
396
  msgstr "Zmień szybkość"
397
 
398
+ #: ../responsive-lightbox.php:542
399
  msgid "Change fade"
400
  msgstr "Zmień zanikanie"
401
 
402
+ #: ../responsive-lightbox.php:543
403
  msgid "Padding"
404
  msgstr "Odstęp (padding)"
405
 
406
+ #: ../responsive-lightbox.php:544
407
  msgid "Margin"
408
  msgstr "Margines (margin)"
409
 
410
+ #: ../responsive-lightbox.php:550
411
  msgid "Effect"
412
  msgstr "Efekt"
413
 
414
+ #: ../responsive-lightbox.php:551
415
+ msgid "Click overlay to close"
416
+ msgstr "Kliknięcie poza obrazek"
417
+
418
+ #: ../responsive-lightbox.php:552
419
  msgid "Keyboard navigation"
420
  msgstr "Nawigacja klawiaturą"
421
 
422
+ #: ../responsive-lightbox.php:553
423
  msgid "Error message"
424
  msgstr "Treść komunikatu o błędzie"
425
 
426
+ #: ../responsive-lightbox.php:558
427
  msgid "Preload next image"
428
  msgstr "Wstępne ładowanie kolejnego obrazka"
429
 
430
+ #: ../responsive-lightbox.php:559
431
  msgid "Enable keyboard keys"
432
  msgstr "Obługa klawiaturą"
433
 
434
+ #: ../responsive-lightbox.php:560
435
  msgid "Quit after last image"
436
  msgstr "Wyjście po ostanim obrazku"
437
 
438
+ #: ../responsive-lightbox.php:561
439
  msgid "Quit when image is clicked"
440
  msgstr "Wyjście po kliknięciu w obrazek"
441
 
442
+ #: ../responsive-lightbox.php:562
443
  msgid "Quit when anything but image is clicked"
444
  msgstr "Wyjście po kliknięciu w coś innego niż obrazek"
445
 
446
+ #: ../responsive-lightbox.php:582
447
  msgid "Select your preffered ligthbox effect script."
448
  msgstr "Wybierz preferowany efekt lightbox."
449
 
450
+ #: ../responsive-lightbox.php:592
451
  msgid "Select to which rel selector lightbox effect will be applied to."
452
  msgstr "Wybierz dla któego znacznika będzie dodawany efekt lightbox."
453
 
454
+ #: ../responsive-lightbox.php:612
455
  msgid "Enable triggering lightbox on custom jquery events."
456
  msgstr "Włącz uruchamianie efektu lightbox przy własnych zdarzeniach jquery."
457
 
458
+ #: ../responsive-lightbox.php:615
459
  msgid "Enter a space separated list of events."
460
  msgstr "Wpisz oddzieloną spacją listę wydarzeń."
461
 
462
+ #: ../responsive-lightbox.php:636
463
  msgid "Select where all the lightbox scripts should be placed."
464
  msgstr "Wybierz w którym miejscu chcesz wczytywać skrypty efektu lightbox."
465
 
466
+ #: ../responsive-lightbox.php:654
467
  msgid "Add lightbox to WordPress image galleries by default."
468
  msgstr "Dodaj efekt lightbox do galerii obrazków WordPressa."
469
 
470
+ #: ../responsive-lightbox.php:674
471
+ msgid ""
472
+ "By default WP gallery links point to full size images only. Enable that to "
473
+ "modify the image size of native WP gallery image links."
474
+ msgstr ""
475
+ "Domyślnie galerie w WordPressie linkują do obrazków o pełnym rozmiarze. "
476
+ "Włącze tę opcję, jeśli chcesz to zmodyfikwać. "
477
+
478
+ #: ../responsive-lightbox.php:684
479
+ msgid "full"
480
+ msgstr ""
481
+
482
+ #: ../responsive-lightbox.php:693
483
+ msgid "Select image size for gallery image links."
484
+ msgstr "Wybierz rozmiar obrazka, jaki ma być zastosowany w linkach galerii."
485
+
486
+ #: ../responsive-lightbox.php:712
487
  msgid "Add lightbox to YouTube and Vimeo video links by default."
488
  msgstr "Dodaj efekt lightbox do linków video (YouTube i Vimeo) WordPressa."
489
 
490
+ #: ../responsive-lightbox.php:730
491
  msgid "Add lightbox to WordPress image links by default."
492
  msgstr "Dodaj efekt lightbox do pojedynczych obrazków WordPressa."
493
 
494
+ #: ../responsive-lightbox.php:748
495
  msgid "Display single post images as a gallery."
496
  msgstr "Wyświetl pojedyncze obrazki jako pokaz sladów."
497
 
498
+ #: ../responsive-lightbox.php:766
499
  msgid "Delete settings on plugin deactivation."
500
  msgstr "Usuń ustawienia przy deaktywacji wtyczki."
501
 
502
+ #: ../responsive-lightbox.php:784
503
  msgid "Select a method of applying a lightbox effect."
504
  msgstr "Wybierz sposób dodawania efekty lightbox."
505
 
506
+ #: ../responsive-lightbox.php:802
507
  msgid ""
508
  "Disable if you don't want to top and bottom bars to be hidden after a period "
509
  "of time."
510
  msgstr "Wyłącz to, jeśli nie chcesz ukrywać górnego i dolnego paska."
511
 
512
+ #: ../responsive-lightbox.php:805
513
  msgid ""
514
  "Enter the time after which the top and bottom bars will be hidden (when "
515
  "hiding is enabled)."
517
  "Podaj czas po którym chcesz ukryć górny i dolny pasek (jeśli opcja ukrywania "
518
  "jest włączona)."
519
 
520
+ #: ../responsive-lightbox.php:816
521
  msgid "Enter the max video width in a lightbox."
522
  msgstr "Podaj maksymalną szerokość video."
523
 
524
+ #: ../responsive-lightbox.php:834
525
  msgid ""
526
  "Enable this if you're having problems with navigation icons not visible on "
527
  "some devices."
528
  msgstr "Włącz tę opcję jeśli masz problemy z wyświetlaniem ikon nawigacji."
529
 
530
+ #: ../responsive-lightbox.php:852
531
  msgid "Select animation speed for lightbox effect."
532
  msgstr "Wybierz szybkość animacji efektu lightbox."
533
 
534
+ #: ../responsive-lightbox.php:870
535
  msgid "Display images as slideshow."
536
  msgstr "Wyświetl obrazki jako pokaz sladów ."
537
 
538
+ #: ../responsive-lightbox.php:873
539
  msgid "Enter time (in miliseconds)."
540
  msgstr "Podaj czas (w milisekundach)."
541
 
542
+ #: ../responsive-lightbox.php:892
543
  msgid "Automatically start slideshow."
544
  msgstr "Automatyczne rozpoczynanie pokazu slajdów."
545
 
546
+ #: ../responsive-lightbox.php:905
547
  msgid "Value between 0 and 100, 100 for no opacity."
548
  msgstr "Wartość pomiędzy 0 i 100 (100 oznacza brak przezroczystości)."
549
 
550
+ #: ../responsive-lightbox.php:923
551
  msgid "Display image tiltle."
552
  msgstr "Wyświetlanie tytułu obrazka."
553
 
554
+ #: ../responsive-lightbox.php:941
555
  msgid "Resize the photos bigger than viewport."
556
  msgstr "Zmiana wielkość zdjęć większych niż aktualny ekran."
557
 
558
+ #: ../responsive-lightbox.php:959
559
  msgid "Expands something."
560
  msgstr "Powiększeniei okna."
561
 
562
+ #: ../responsive-lightbox.php:969 ../responsive-lightbox.php:979
563
  msgid "in pixels"
564
  msgstr "w pikselach"
565
 
566
+ #: ../responsive-lightbox.php:997
567
  msgid "Select theme for lightbox effect."
568
  msgstr "Wybierz motyw dla efektu lightbox."
569
 
570
+ #: ../responsive-lightbox.php:1007
571
  msgid "Horizontal padding (in pixels)."
572
  msgstr "Odstępy w poziomie (w pikselach)."
573
 
574
+ #: ../responsive-lightbox.php:1025
575
  msgid ""
576
  "Hides all the flash object on a page. Enable this if flash appears over "
577
  "prettyPhoto."
579
  "Ukywa wszystkie obiekty flash na stronie. Włącz to jeśli animacje flash "
580
  "wyświetlane są nad lightboxem."
581
 
582
+ #: ../responsive-lightbox.php:1043
583
  msgid "Select flash window mode."
584
  msgstr "Wybierz tryb okna flash."
585
 
586
+ #: ../responsive-lightbox.php:1061
587
  msgid "Automatically start videos."
588
  msgstr "Automatycznie rozpoczynaj video."
589
 
590
+ #: ../responsive-lightbox.php:1079
591
  msgid "If set to true, only the close button will close the window."
592
  msgstr ""
593
  "Jeśli będzie włączone, tylko kliknięcie przycisku spowoduje zamknięcie okna."
594
 
595
+ #: ../responsive-lightbox.php:1097
596
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
597
  msgstr "Zezwól prettyPhoto na aktualizacje adresów URL i głębokie linkowanie."
598
 
599
+ #: ../responsive-lightbox.php:1115
600
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
601
  msgstr ""
602
  "Jeśli będzie włączone, galeria będzie wyświetlana na cały ekran po "
603
  "najechaniu myszką."
604
 
605
+ #: ../responsive-lightbox.php:1133
606
  msgid "Set to false if you open forms inside prettyPhoto."
607
  msgstr "Wyłącz to jeśli chcesz otwierać formularze wewnątrz prettyPhoto."
608
 
609
+ #: ../responsive-lightbox.php:1151
610
  msgid "Display links to Facebook and Twitter."
611
  msgstr "Wyświetl linki do Facebboka i Twittera."
612
 
613
+ #: ../responsive-lightbox.php:1169
614
  msgid "The transition type."
615
  msgstr "Typ animacji."
616
 
617
+ #: ../responsive-lightbox.php:1179
618
  msgid "Space between FancyBox wrapper and content."
619
  msgstr "Przestrzeń między FancyBox a treścią"
620
 
621
+ #: ../responsive-lightbox.php:1189
622
  msgid "Space between viewport and FancyBox wrapper."
623
  msgstr "Przestrzeń między ekranem a Fancybox"
624
 
625
+ #: ../responsive-lightbox.php:1207
626
  msgid ""
627
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
628
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
632
  "TRUE, natomiast \"hideOnOverlayClick\", \"hideOnContentClick\", "
633
  "\"enableEscapeButton\", \"showCloseButton\" zostaną ustawione na FALSE."
634
 
635
+ #: ../responsive-lightbox.php:1225
636
  msgid "Toggle overlay."
637
  msgstr "Włącz tło."
638
 
639
+ #: ../responsive-lightbox.php:1243
640
  msgid "Toggle close button."
641
  msgstr "Włącz przycisk Zamknij."
642
 
643
+ #: ../responsive-lightbox.php:1261
644
  msgid "Toggle if pressing Esc button closes FancyBox."
645
  msgstr "Włącz zamykanie FancyBox przy pomocy Esc."
646
 
647
+ #: ../responsive-lightbox.php:1279
648
  msgid "Toggle if clicking the overlay should close FancyBox."
649
  msgstr "Włącz zamykanie FancyBox kliknięciem w tło."
650
 
651
+ #: ../responsive-lightbox.php:1297
652
  msgid "Toggle if clicking the content should close FancyBox."
653
  msgstr "Włącz zamykanie FancyBox kliknięciem w treść."
654
 
655
+ #: ../responsive-lightbox.php:1315
656
  msgid ""
657
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
658
  msgstr "Jeśli będzie włączone, galerie będą wyświetlane cyklicznie."
659
 
660
+ #: ../responsive-lightbox.php:1333
661
  msgid "Toggle navigation arrows."
662
  msgstr "Włącz strzałki nawigacyjne."
663
 
664
+ #: ../responsive-lightbox.php:1351
665
  msgid "If true, FancyBox is scaled to fit in viewport."
666
  msgstr "Jeśli będzie włączone, FancyBox będzie skalowany do rozmiaru okna."
667
 
668
+ #: ../responsive-lightbox.php:1369
669
  msgid "Set the overflow CSS property to create or hide scrollbars."
670
  msgstr ""
671
  "Ustaw parametr overflow dw CSS aby tworzyć lub ukrywać elementy nawigacji."
672
 
673
+ #: ../responsive-lightbox.php:1387
674
  msgid "When true, FancyBox is centered while scrolling page."
675
  msgstr ""
676
  "Jeśli będzie zaznaczone, FancyBox będzie wycentrowany w trakcie przewijania "
677
  "strony."
678
 
679
+ #: ../responsive-lightbox.php:1405
680
  msgid "When true, transparency of content is changed for elastic transitions."
681
  msgstr ""
682
  "Jeśli będzie zaznaczone, przezroczystość treści zmieni się w trakcie "
683
  "animacji."
684
 
685
+ #: ../responsive-lightbox.php:1418
686
  msgid "Opacity of the overlay."
687
  msgstr "Przezroczystość tła."
688
 
689
+ #: ../responsive-lightbox.php:1428
690
  msgid "Color of the overlay."
691
  msgstr "Kolor tła."
692
 
693
+ #: ../responsive-lightbox.php:1446
694
  msgid "Toggle title."
695
  msgstr "Wyświetlanie tytułu."
696
 
697
+ #: ../responsive-lightbox.php:1464
698
  msgid "The position of title."
699
  msgstr "Pozycja tytułu."
700
 
701
+ #: ../responsive-lightbox.php:1482
702
  msgid "Easing used for elastic animations."
703
  msgstr "Wygładzanie animacji dla trybu elastic."
704
 
705
+ #: ../responsive-lightbox.php:1492
706
  msgid "Speed of the fade and elastic transitions, in milliseconds."
707
  msgstr "Podaj czas trwania animacji fade i elastic (w milisekundach)"
708
 
709
+ #: ../responsive-lightbox.php:1502
710
  msgid "Speed of resizing when changing gallery items, in milliseconds."
711
  msgstr ""
712
  "Szybkość zmiany wielkości okna w trakcie przechodzenia między obrazkami (w "
713
  "milisekundach)."
714
 
715
+ #: ../responsive-lightbox.php:1512
716
  msgid "Speed of the content fading while changing gallery items."
717
  msgstr "Szybkość zanikania elementów w trakcie przechodzenia między obrazkami."
718
 
719
+ #: ../responsive-lightbox.php:1522
720
  msgid "Width of the video."
721
  msgstr "Szerokość video."
722
 
723
+ #: ../responsive-lightbox.php:1532
724
  msgid "Height of the video."
725
  msgstr "Wysokość video."
726
 
727
+ #: ../responsive-lightbox.php:1550
728
  msgid "The effect to use when showing the lightbox."
729
  msgstr "Wybierz efekt, który chcesz zastosować do wyświetlania lightboxa."
730
 
731
+ #: ../responsive-lightbox.php:1568
732
  msgid "Enable/Disable keyboard navigation (left/right/escape)."
733
  msgstr ""
734
  "Włącz / Wyłącz nawigację klawiaturą (strzałka w lewo, w prawo i przycisk ESC)"
735
 
736
+ #: ../responsive-lightbox.php:1586
737
+ msgid "Eneble to close lightbox on overlay click."
738
+ msgstr "Włącz aby zamykać lightbox po kliknięciu w obzar poza obrazkiem."
739
+
740
+ #: ../responsive-lightbox.php:1596
741
  msgid "Error message if the content cannot be loaded."
742
  msgstr "Komunikat w przypadku gdy nie można załądować treści."
743
 
744
+ #: ../responsive-lightbox.php:1606
745
  msgid "Animation speed."
746
  msgstr "Szybkość animacji."
747
 
748
+ #: ../responsive-lightbox.php:1624
749
  msgid "Silently preload the next image."
750
  msgstr "W niezauważalny sposób ładuje kolejny obrazek."
751
 
752
+ #: ../responsive-lightbox.php:1642
753
  msgid "Enable keyboard shortcuts (arrows Left/Right and Esc)."
754
  msgstr "Włącza skróty klawiaturowe (strzałki lewo/prawo oraz Esc)"
755
 
756
+ #: ../responsive-lightbox.php:1660
757
  msgid "Quit after viewing the last image."
758
  msgstr "Powoduje wyjście z lightboxa po obejrzeniu ostatniego obrazka."
759
 
760
+ #: ../responsive-lightbox.php:1678
761
  msgid "Quit when the viewed image is clicked."
762
  msgstr "Powoduje wyjście z lightboxa po kliknięciu w przeglądany obrazek."
763
 
764
+ #: ../responsive-lightbox.php:1696
765
  msgid "Quit when anything but the viewed image is clicked."
766
  msgstr "Powoduje wyjście z lightboxa po kliknięciu w coś innego niż obrazek."
767
 
768
+ #: ../responsive-lightbox.php:1938
769
  msgid ""
770
  "Changes were not saved because there was attempt to save settings of "
771
  "inactive script. The site has been reloaded to the proper script settings."
773
  "Zmiany nie zostały zapisane ponieważ wykryto próbę zapisu ustawień "
774
  "nieaktywnego skryptu. Strona została odświeżona z prawidłowymi ustawieniami."
775
 
776
+ #: ../responsive-lightbox.php:1948
777
  msgid "Settings restored to defaults."
778
  msgstr "Ustawienia zostały przywrócone do domyślnych."
779
 
780
+ #: ../responsive-lightbox.php:1956
781
  msgid "Settings of SwipeBox script were restored to defaults."
782
  msgstr "Ustawienia skryptu SwipeBox zostały przywrócone."
783
 
784
+ #: ../responsive-lightbox.php:1962
785
  msgid "Settings of prettyPhoto script were restored to defaults."
786
  msgstr "Ustawienia skryptu prettyPhoto zostały przywrócone."
787
 
788
+ #: ../responsive-lightbox.php:1968
789
  msgid "Settings of FancyBox script were restored to defaults."
790
  msgstr "Ustawienia skryptu FancyBox zostały przywrócone."
791
 
792
+ #: ../responsive-lightbox.php:1974
793
  msgid "Settings of Nivo script were restored to defaults."
794
  msgstr "Ustawienia skryptu Nivo Lightbox zostały przywrócone."
795
 
796
+ #: ../responsive-lightbox.php:1978
797
  msgid ""
798
  "Changes were not set to defaults because there was attempt to reset settings "
799
  "of inactive script. The site has been reloaded to the proper script settings."
802
  "resetowania ustawień nieaktywnego skryptu. Strona została odświeżona z "
803
  "prawidłowymi ustawieniami."
804
 
805
+ #: ../responsive-lightbox.php:1992 ../responsive-lightbox.php:1993
806
+ #: ../responsive-lightbox.php:2007 ../responsive-lightbox.php:2021
807
  msgid "Responsive Lightbox"
808
  msgstr "Efekt Lightbox"
809
 
810
+ #: ../responsive-lightbox.php:2023
811
  msgid "Need support?"
812
  msgstr "Potrzebujesz pomocy?"
813
 
814
+ #: ../responsive-lightbox.php:2024
815
  msgid ""
816
  "If you are having problems with this plugin, please talk about them in the"
817
  msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o nich na"
818
 
819
+ #: ../responsive-lightbox.php:2024
820
  msgid "Support forum"
821
  msgstr "Forum pomocy"
822
 
823
+ #: ../responsive-lightbox.php:2026
824
  msgid "Do you like this plugin?"
825
  msgstr "Lubisz tę wtyczkę?"
826
 
827
+ #: ../responsive-lightbox.php:2027
828
  msgid "Rate it 5"
829
  msgstr "Oceń ją na 5"
830
 
831
+ #: ../responsive-lightbox.php:2027
832
  msgid "on WordPress.org"
833
  msgstr "na WordPress.org"
834
 
835
+ #: ../responsive-lightbox.php:2028
836
  msgid "Blog about it & link to the"
837
  msgstr "Napisz o niej i dodaj link"
838
 
839
+ #: ../responsive-lightbox.php:2028
840
  msgid "plugin page"
841
  msgstr "do strony wtyczki"
842
 
843
+ #: ../responsive-lightbox.php:2029
844
  msgid "Check out our other"
845
  msgstr "Sprawdź nasze pozostałe"
846
 
847
+ #: ../responsive-lightbox.php:2029
848
  msgid "WordPress plugins"
849
  msgstr "wtyczki do WordPress'a"
850
 
851
+ #: ../responsive-lightbox.php:2055
852
  msgid "Reset to defaults"
853
  msgstr "Resetuj do domyślnych"
854
 
855
+ #: ../responsive-lightbox.php:2082
856
  msgid "Are you sure you want to reset these settings to defaults?"
857
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia do domyślnych?"
858
 
859
+ #: ../responsive-lightbox.php:2083
860
  msgid "Are you sure you want to reset scripts settings to defaults?"
861
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia?"
862
 
863
+ #: ../responsive-lightbox.php:2373
864
  msgid "Support"
865
  msgstr "Pomoc"
866
 
867
+ #: ../responsive-lightbox.php:2395
868
  msgid "Settings"
869
  msgstr "Ustawienia"
languages/responsive-lightbox.pot CHANGED
@@ -1,818 +1,844 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
- "POT-Creation-Date: 2014-03-19 11:00+0100\n"
5
- "PO-Revision-Date: 2014-03-19 11:00+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\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.6.4\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../responsive-lightbox.php:288
19
  msgid "prettyPhoto"
20
  msgstr ""
21
 
22
- #: ../responsive-lightbox.php:290
23
  msgid "slow"
24
  msgstr ""
25
 
26
- #: ../responsive-lightbox.php:291
27
  msgid "normal"
28
  msgstr ""
29
 
30
- #: ../responsive-lightbox.php:292
31
  msgid "fast"
32
  msgstr ""
33
 
34
- #: ../responsive-lightbox.php:295
35
  msgid "default"
36
  msgstr ""
37
 
38
- #: ../responsive-lightbox.php:296
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
- #: ../responsive-lightbox.php:297
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
- #: ../responsive-lightbox.php:298
47
  msgid "light square"
48
  msgstr ""
49
 
50
- #: ../responsive-lightbox.php:299
51
  msgid "dark square"
52
  msgstr ""
53
 
54
- #: ../responsive-lightbox.php:300
55
  msgid "facebook"
56
  msgstr ""
57
 
58
- #: ../responsive-lightbox.php:303
59
  msgid "window"
60
  msgstr ""
61
 
62
- #: ../responsive-lightbox.php:304
63
  msgid "transparent"
64
  msgstr ""
65
 
66
- #: ../responsive-lightbox.php:305
67
  msgid "opaque"
68
  msgstr ""
69
 
70
- #: ../responsive-lightbox.php:306
71
  msgid "direct"
72
  msgstr ""
73
 
74
- #: ../responsive-lightbox.php:307
75
  msgid "gpu"
76
  msgstr ""
77
 
78
- #: ../responsive-lightbox.php:311
79
  msgid "SwipeBox"
80
  msgstr ""
81
 
82
- #: ../responsive-lightbox.php:313
83
  msgid "CSS"
84
  msgstr ""
85
 
86
- #: ../responsive-lightbox.php:314
87
  msgid "jQuery"
88
  msgstr ""
89
 
90
- #: ../responsive-lightbox.php:318
91
  msgid "FancyBox"
92
  msgstr ""
93
 
94
- #: ../responsive-lightbox.php:320
95
  msgid "elastic"
96
  msgstr ""
97
 
98
- #: ../responsive-lightbox.php:321 ../responsive-lightbox.php:342
99
  msgid "fade"
100
  msgstr ""
101
 
102
- #: ../responsive-lightbox.php:322
103
  msgid "none"
104
  msgstr ""
105
 
106
- #: ../responsive-lightbox.php:325
107
  msgid "auto"
108
  msgstr ""
109
 
110
- #: ../responsive-lightbox.php:326
111
  msgid "yes"
112
  msgstr ""
113
 
114
- #: ../responsive-lightbox.php:327
115
  msgid "no"
116
  msgstr ""
117
 
118
- #: ../responsive-lightbox.php:330
119
  msgid "swing"
120
  msgstr ""
121
 
122
- #: ../responsive-lightbox.php:331
123
  msgid "linear"
124
  msgstr ""
125
 
126
- #: ../responsive-lightbox.php:334
127
  msgid "outside"
128
  msgstr ""
129
 
130
- #: ../responsive-lightbox.php:335
131
  msgid "inside"
132
  msgstr ""
133
 
134
- #: ../responsive-lightbox.php:336
135
  msgid "over"
136
  msgstr ""
137
 
138
- #: ../responsive-lightbox.php:340
139
  msgid "Nivo Lightbox"
140
  msgstr ""
141
 
142
- #: ../responsive-lightbox.php:343
143
  msgid "fade scale"
144
  msgstr ""
145
 
146
- #: ../responsive-lightbox.php:344
147
  msgid "slide left"
148
  msgstr ""
149
 
150
- #: ../responsive-lightbox.php:345
151
  msgid "slide right"
152
  msgstr ""
153
 
154
- #: ../responsive-lightbox.php:346
155
  msgid "slide up"
156
  msgstr ""
157
 
158
- #: ../responsive-lightbox.php:347
159
  msgid "slide down"
160
  msgstr ""
161
 
162
- #: ../responsive-lightbox.php:348
163
  msgid "fall"
164
  msgstr ""
165
 
166
- #: ../responsive-lightbox.php:352
167
  msgid "Image Lightbox"
168
  msgstr ""
169
 
170
- #: ../responsive-lightbox.php:357
171
  msgid "Enable"
172
  msgstr ""
173
 
174
- #: ../responsive-lightbox.php:358
175
  msgid "Disable"
176
  msgstr ""
177
 
178
- #: ../responsive-lightbox.php:362
179
  msgid "Header"
180
  msgstr ""
181
 
182
- #: ../responsive-lightbox.php:363
183
  msgid "Footer"
184
  msgstr ""
185
 
186
- #: ../responsive-lightbox.php:368 ../responsive-lightbox.php:469
187
  msgid "General settings"
188
  msgstr ""
189
 
190
- #: ../responsive-lightbox.php:374 ../responsive-lightbox.php:482
191
  msgid "Lightbox settings"
192
  msgstr ""
193
 
194
- #: ../responsive-lightbox.php:470
195
  msgid "Lightbox script"
196
  msgstr ""
197
 
198
- #: ../responsive-lightbox.php:471
199
  msgid "Selector"
200
  msgstr ""
201
 
202
- #: ../responsive-lightbox.php:472
203
  msgid "Galleries"
204
  msgstr ""
205
 
206
- #: ../responsive-lightbox.php:473
 
 
 
 
207
  msgid "Video links"
208
  msgstr ""
209
 
210
- #: ../responsive-lightbox.php:474
211
  msgid "Image links"
212
  msgstr ""
213
 
214
- #: ../responsive-lightbox.php:475
215
  msgid "Single images as gallery"
216
  msgstr ""
217
 
218
- #: ../responsive-lightbox.php:476
219
  msgid "Custom events"
220
  msgstr ""
221
 
222
- #: ../responsive-lightbox.php:477
223
  msgid "Loading place"
224
  msgstr ""
225
 
226
- #: ../responsive-lightbox.php:478
227
  msgid "Deactivation"
228
  msgstr ""
229
 
230
- #: ../responsive-lightbox.php:486
231
  msgid "Animation type"
232
  msgstr ""
233
 
234
- #: ../responsive-lightbox.php:487
235
  msgid "Force PNG icons"
236
  msgstr ""
237
 
238
- #: ../responsive-lightbox.php:488
239
  msgid "Top and bottom bars"
240
  msgstr ""
241
 
242
- #: ../responsive-lightbox.php:489
243
  msgid "Video max width"
244
  msgstr ""
245
 
246
- #: ../responsive-lightbox.php:493 ../responsive-lightbox.php:549
247
  msgid "Animation speed"
248
  msgstr ""
249
 
250
- #: ../responsive-lightbox.php:494
251
  msgid "Slideshow"
252
  msgstr ""
253
 
254
- #: ../responsive-lightbox.php:495
255
  msgid "Slideshow autoplay"
256
  msgstr ""
257
 
258
- #: ../responsive-lightbox.php:496 ../responsive-lightbox.php:526
259
  msgid "Opacity"
260
  msgstr ""
261
 
262
- #: ../responsive-lightbox.php:497
263
  msgid "Show title"
264
  msgstr ""
265
 
266
- #: ../responsive-lightbox.php:498
267
  msgid "Allow resize big images"
268
  msgstr ""
269
 
270
- #: ../responsive-lightbox.php:499
271
  msgid "Allow expand"
272
  msgstr ""
273
 
274
- #: ../responsive-lightbox.php:500 ../responsive-lightbox.php:538
275
  msgid "Video width"
276
  msgstr ""
277
 
278
- #: ../responsive-lightbox.php:501 ../responsive-lightbox.php:539
279
  msgid "Video height"
280
  msgstr ""
281
 
282
- #: ../responsive-lightbox.php:502
283
  msgid "Theme"
284
  msgstr ""
285
 
286
- #: ../responsive-lightbox.php:503
287
  msgid "Horizontal padding"
288
  msgstr ""
289
 
290
- #: ../responsive-lightbox.php:504
291
  msgid "Hide Flash"
292
  msgstr ""
293
 
294
- #: ../responsive-lightbox.php:505
295
  msgid "Flash Window Mode (wmode)"
296
  msgstr ""
297
 
298
- #: ../responsive-lightbox.php:506
299
  msgid "Video autoplay"
300
  msgstr ""
301
 
302
- #: ../responsive-lightbox.php:507 ../responsive-lightbox.php:515
303
  msgid "Modal"
304
  msgstr ""
305
 
306
- #: ../responsive-lightbox.php:508
307
  msgid "Deeplinking"
308
  msgstr ""
309
 
310
- #: ../responsive-lightbox.php:509
311
  msgid "Overlay gallery"
312
  msgstr ""
313
 
314
- #: ../responsive-lightbox.php:510
315
  msgid "Keyboard shortcuts"
316
  msgstr ""
317
 
318
- #: ../responsive-lightbox.php:511
319
  msgid "Social (Twitter, Facebook)"
320
  msgstr ""
321
 
322
- #: ../responsive-lightbox.php:516
323
  msgid "Show overlay"
324
  msgstr ""
325
 
326
- #: ../responsive-lightbox.php:517
327
  msgid "Show close button"
328
  msgstr ""
329
 
330
- #: ../responsive-lightbox.php:518
331
  msgid "Enable escape button"
332
  msgstr ""
333
 
334
- #: ../responsive-lightbox.php:519
335
  msgid "Hide on overlay click"
336
  msgstr ""
337
 
338
- #: ../responsive-lightbox.php:520
339
  msgid "Hide on content click"
340
  msgstr ""
341
 
342
- #: ../responsive-lightbox.php:521
343
  msgid "Cyclic"
344
  msgstr ""
345
 
346
- #: ../responsive-lightbox.php:522
347
  msgid "Show nav arrows"
348
  msgstr ""
349
 
350
- #: ../responsive-lightbox.php:523
351
  msgid "Auto scale"
352
  msgstr ""
353
 
354
- #: ../responsive-lightbox.php:524
355
  msgid "Scrolling (in/out)"
356
  msgstr ""
357
 
358
- #: ../responsive-lightbox.php:525
359
  msgid "Center on scroll"
360
  msgstr ""
361
 
362
- #: ../responsive-lightbox.php:527
363
  msgid "Overlay opacity"
364
  msgstr ""
365
 
366
- #: ../responsive-lightbox.php:528
367
  msgid "Overlay color"
368
  msgstr ""
369
 
370
- #: ../responsive-lightbox.php:529
371
  msgid "Title show"
372
  msgstr ""
373
 
374
- #: ../responsive-lightbox.php:530
375
  msgid "Title position"
376
  msgstr ""
377
 
378
- #: ../responsive-lightbox.php:531
379
  msgid "Transition (in/out)"
380
  msgstr ""
381
 
382
- #: ../responsive-lightbox.php:532
383
  msgid "Easings (in/out)"
384
  msgstr ""
385
 
386
- #: ../responsive-lightbox.php:533
387
  msgid "Speed (in/out)"
388
  msgstr ""
389
 
390
- #: ../responsive-lightbox.php:534
391
  msgid "Change speed"
392
  msgstr ""
393
 
394
- #: ../responsive-lightbox.php:535
395
  msgid "Change fade"
396
  msgstr ""
397
 
398
- #: ../responsive-lightbox.php:536
399
  msgid "Padding"
400
  msgstr ""
401
 
402
- #: ../responsive-lightbox.php:537
403
  msgid "Margin"
404
  msgstr ""
405
 
406
- #: ../responsive-lightbox.php:543
407
  msgid "Effect"
408
  msgstr ""
409
 
410
- #: ../responsive-lightbox.php:544
 
 
 
 
411
  msgid "Keyboard navigation"
412
  msgstr ""
413
 
414
- #: ../responsive-lightbox.php:545
415
  msgid "Error message"
416
  msgstr ""
417
 
418
- #: ../responsive-lightbox.php:550
419
  msgid "Preload next image"
420
  msgstr ""
421
 
422
- #: ../responsive-lightbox.php:551
423
  msgid "Enable keyboard keys"
424
  msgstr ""
425
 
426
- #: ../responsive-lightbox.php:552
427
  msgid "Quit after last image"
428
  msgstr ""
429
 
430
- #: ../responsive-lightbox.php:553
431
  msgid "Quit when image is clicked"
432
  msgstr ""
433
 
434
- #: ../responsive-lightbox.php:554
435
  msgid "Quit when anything but image is clicked"
436
  msgstr ""
437
 
438
- #: ../responsive-lightbox.php:574
439
  msgid "Select your preffered ligthbox effect script."
440
  msgstr ""
441
 
442
- #: ../responsive-lightbox.php:584
443
  msgid "Select to which rel selector lightbox effect will be applied to."
444
  msgstr ""
445
 
446
- #: ../responsive-lightbox.php:604
447
  msgid "Enable triggering lightbox on custom jquery events."
448
  msgstr ""
449
 
450
- #: ../responsive-lightbox.php:607
451
  msgid "Enter a space separated list of events."
452
  msgstr ""
453
 
454
- #: ../responsive-lightbox.php:628
455
  msgid "Select where all the lightbox scripts should be placed."
456
  msgstr ""
457
 
458
- #: ../responsive-lightbox.php:646
459
  msgid "Add lightbox to WordPress image galleries by default."
460
  msgstr ""
461
 
462
- #: ../responsive-lightbox.php:664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
  msgid "Add lightbox to YouTube and Vimeo video links by default."
464
  msgstr ""
465
 
466
- #: ../responsive-lightbox.php:682
467
  msgid "Add lightbox to WordPress image links by default."
468
  msgstr ""
469
 
470
- #: ../responsive-lightbox.php:700
471
  msgid "Display single post images as a gallery."
472
  msgstr ""
473
 
474
- #: ../responsive-lightbox.php:718
475
  msgid "Delete settings on plugin deactivation."
476
  msgstr ""
477
 
478
- #: ../responsive-lightbox.php:736
479
  msgid "Select a method of applying a lightbox effect."
480
  msgstr ""
481
 
482
- #: ../responsive-lightbox.php:754
483
  msgid ""
484
  "Disable if you don't want to top and bottom bars to be hidden after a period "
485
  "of time."
486
  msgstr ""
487
 
488
- #: ../responsive-lightbox.php:757
489
  msgid ""
490
  "Enter the time after which the top and bottom bars will be hidden (when "
491
  "hiding is enabled)."
492
  msgstr ""
493
 
494
- #: ../responsive-lightbox.php:768
495
  msgid "Enter the max video width in a lightbox."
496
  msgstr ""
497
 
498
- #: ../responsive-lightbox.php:786
499
  msgid ""
500
  "Enable this if you're having problems with navigation icons not visible on "
501
  "some devices."
502
  msgstr ""
503
 
504
- #: ../responsive-lightbox.php:804
505
  msgid "Select animation speed for lightbox effect."
506
  msgstr ""
507
 
508
- #: ../responsive-lightbox.php:822
509
  msgid "Display images as slideshow."
510
  msgstr ""
511
 
512
- #: ../responsive-lightbox.php:825
513
  msgid "Enter time (in miliseconds)."
514
  msgstr ""
515
 
516
- #: ../responsive-lightbox.php:844
517
  msgid "Automatically start slideshow."
518
  msgstr ""
519
 
520
- #: ../responsive-lightbox.php:857
521
  msgid "Value between 0 and 100, 100 for no opacity."
522
  msgstr ""
523
 
524
- #: ../responsive-lightbox.php:875
525
  msgid "Display image tiltle."
526
  msgstr ""
527
 
528
- #: ../responsive-lightbox.php:893
529
  msgid "Resize the photos bigger than viewport."
530
  msgstr ""
531
 
532
- #: ../responsive-lightbox.php:911
533
  msgid "Expands something."
534
  msgstr ""
535
 
536
- #: ../responsive-lightbox.php:921 ../responsive-lightbox.php:931
537
  msgid "in pixels"
538
  msgstr ""
539
 
540
- #: ../responsive-lightbox.php:949
541
  msgid "Select theme for lightbox effect."
542
  msgstr ""
543
 
544
- #: ../responsive-lightbox.php:959
545
  msgid "Horizontal padding (in pixels)."
546
  msgstr ""
547
 
548
- #: ../responsive-lightbox.php:977
549
  msgid ""
550
  "Hides all the flash object on a page. Enable this if flash appears over "
551
  "prettyPhoto."
552
  msgstr ""
553
 
554
- #: ../responsive-lightbox.php:995
555
  msgid "Select flash window mode."
556
  msgstr ""
557
 
558
- #: ../responsive-lightbox.php:1013
559
  msgid "Automatically start videos."
560
  msgstr ""
561
 
562
- #: ../responsive-lightbox.php:1031
563
  msgid "If set to true, only the close button will close the window."
564
  msgstr ""
565
 
566
- #: ../responsive-lightbox.php:1049
567
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
568
  msgstr ""
569
 
570
- #: ../responsive-lightbox.php:1067
571
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
572
  msgstr ""
573
 
574
- #: ../responsive-lightbox.php:1085
575
  msgid "Set to false if you open forms inside prettyPhoto."
576
  msgstr ""
577
 
578
- #: ../responsive-lightbox.php:1103
579
  msgid "Display links to Facebook and Twitter."
580
  msgstr ""
581
 
582
- #: ../responsive-lightbox.php:1121
583
  msgid "The transition type."
584
  msgstr ""
585
 
586
- #: ../responsive-lightbox.php:1131
587
  msgid "Space between FancyBox wrapper and content."
588
  msgstr ""
589
 
590
- #: ../responsive-lightbox.php:1141
591
  msgid "Space between viewport and FancyBox wrapper."
592
  msgstr ""
593
 
594
- #: ../responsive-lightbox.php:1159
595
  msgid ""
596
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
597
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
598
  "to FALSE."
599
  msgstr ""
600
 
601
- #: ../responsive-lightbox.php:1177
602
  msgid "Toggle overlay."
603
  msgstr ""
604
 
605
- #: ../responsive-lightbox.php:1195
606
  msgid "Toggle close button."
607
  msgstr ""
608
 
609
- #: ../responsive-lightbox.php:1213
610
  msgid "Toggle if pressing Esc button closes FancyBox."
611
  msgstr ""
612
 
613
- #: ../responsive-lightbox.php:1231
614
  msgid "Toggle if clicking the overlay should close FancyBox."
615
  msgstr ""
616
 
617
- #: ../responsive-lightbox.php:1249
618
  msgid "Toggle if clicking the content should close FancyBox."
619
  msgstr ""
620
 
621
- #: ../responsive-lightbox.php:1267
622
  msgid ""
623
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
624
  msgstr ""
625
 
626
- #: ../responsive-lightbox.php:1285
627
  msgid "Toggle navigation arrows."
628
  msgstr ""
629
 
630
- #: ../responsive-lightbox.php:1303
631
  msgid "If true, FancyBox is scaled to fit in viewport."
632
  msgstr ""
633
 
634
- #: ../responsive-lightbox.php:1321
635
  msgid "Set the overflow CSS property to create or hide scrollbars."
636
  msgstr ""
637
 
638
- #: ../responsive-lightbox.php:1339
639
  msgid "When true, FancyBox is centered while scrolling page."
640
  msgstr ""
641
 
642
- #: ../responsive-lightbox.php:1357
643
  msgid "When true, transparency of content is changed for elastic transitions."
644
  msgstr ""
645
 
646
- #: ../responsive-lightbox.php:1370
647
  msgid "Opacity of the overlay."
648
  msgstr ""
649
 
650
- #: ../responsive-lightbox.php:1380
651
  msgid "Color of the overlay."
652
  msgstr ""
653
 
654
- #: ../responsive-lightbox.php:1398
655
  msgid "Toggle title."
656
  msgstr ""
657
 
658
- #: ../responsive-lightbox.php:1416
659
  msgid "The position of title."
660
  msgstr ""
661
 
662
- #: ../responsive-lightbox.php:1434
663
  msgid "Easing used for elastic animations."
664
  msgstr ""
665
 
666
- #: ../responsive-lightbox.php:1444
667
  msgid "Speed of the fade and elastic transitions, in milliseconds."
668
  msgstr ""
669
 
670
- #: ../responsive-lightbox.php:1454
671
  msgid "Speed of resizing when changing gallery items, in milliseconds."
672
  msgstr ""
673
 
674
- #: ../responsive-lightbox.php:1464
675
  msgid "Speed of the content fading while changing gallery items."
676
  msgstr ""
677
 
678
- #: ../responsive-lightbox.php:1474
679
  msgid "Width of the video."
680
  msgstr ""
681
 
682
- #: ../responsive-lightbox.php:1484
683
  msgid "Height of the video."
684
  msgstr ""
685
 
686
- #: ../responsive-lightbox.php:1502
687
  msgid "The effect to use when showing the lightbox."
688
  msgstr ""
689
 
690
- #: ../responsive-lightbox.php:1520
691
  msgid "Enable/Disable keyboard navigation (left/right/escape)."
692
  msgstr ""
693
 
694
- #: ../responsive-lightbox.php:1530
 
 
 
 
695
  msgid "Error message if the content cannot be loaded."
696
  msgstr ""
697
 
698
- #: ../responsive-lightbox.php:1540
699
  msgid "Animation speed."
700
  msgstr ""
701
 
702
- #: ../responsive-lightbox.php:1558
703
  msgid "Silently preload the next image."
704
  msgstr ""
705
 
706
- #: ../responsive-lightbox.php:1576
707
  msgid "Enable keyboard shortcuts (arrows Left/Right and Esc)."
708
  msgstr ""
709
 
710
- #: ../responsive-lightbox.php:1594
711
  msgid "Quit after viewing the last image."
712
  msgstr ""
713
 
714
- #: ../responsive-lightbox.php:1612
715
  msgid "Quit when the viewed image is clicked."
716
  msgstr ""
717
 
718
- #: ../responsive-lightbox.php:1630
719
  msgid "Quit when anything but the viewed image is clicked."
720
  msgstr ""
721
 
722
- #: ../responsive-lightbox.php:1860
723
  msgid ""
724
  "Changes were not saved because there was attempt to save settings of "
725
  "inactive script. The site has been reloaded to the proper script settings."
726
  msgstr ""
727
 
728
- #: ../responsive-lightbox.php:1870
729
  msgid "Settings restored to defaults."
730
  msgstr ""
731
 
732
- #: ../responsive-lightbox.php:1878
733
  msgid "Settings of SwipeBox script were restored to defaults."
734
  msgstr ""
735
 
736
- #: ../responsive-lightbox.php:1884
737
  msgid "Settings of prettyPhoto script were restored to defaults."
738
  msgstr ""
739
 
740
- #: ../responsive-lightbox.php:1890
741
  msgid "Settings of FancyBox script were restored to defaults."
742
  msgstr ""
743
 
744
- #: ../responsive-lightbox.php:1896
745
  msgid "Settings of Nivo script were restored to defaults."
746
  msgstr ""
747
 
748
- #: ../responsive-lightbox.php:1900
749
  msgid ""
750
  "Changes were not set to defaults because there was attempt to reset settings "
751
  "of inactive script. The site has been reloaded to the proper script settings."
752
  msgstr ""
753
 
754
- #: ../responsive-lightbox.php:1914 ../responsive-lightbox.php:1915
755
- #: ../responsive-lightbox.php:1929 ../responsive-lightbox.php:1943
756
  msgid "Responsive Lightbox"
757
  msgstr ""
758
 
759
- #: ../responsive-lightbox.php:1945
760
  msgid "Need support?"
761
  msgstr ""
762
 
763
- #: ../responsive-lightbox.php:1946
764
  msgid ""
765
  "If you are having problems with this plugin, please talk about them in the"
766
  msgstr ""
767
 
768
- #: ../responsive-lightbox.php:1946
769
  msgid "Support forum"
770
  msgstr ""
771
 
772
- #: ../responsive-lightbox.php:1948
773
  msgid "Do you like this plugin?"
774
  msgstr ""
775
 
776
- #: ../responsive-lightbox.php:1949
777
  msgid "Rate it 5"
778
  msgstr ""
779
 
780
- #: ../responsive-lightbox.php:1949
781
  msgid "on WordPress.org"
782
  msgstr ""
783
 
784
- #: ../responsive-lightbox.php:1950
785
  msgid "Blog about it & link to the"
786
  msgstr ""
787
 
788
- #: ../responsive-lightbox.php:1950
789
  msgid "plugin page"
790
  msgstr ""
791
 
792
- #: ../responsive-lightbox.php:1951
793
  msgid "Check out our other"
794
  msgstr ""
795
 
796
- #: ../responsive-lightbox.php:1951
797
  msgid "WordPress plugins"
798
  msgstr ""
799
 
800
- #: ../responsive-lightbox.php:1971
801
  msgid "Reset to defaults"
802
  msgstr ""
803
 
804
- #: ../responsive-lightbox.php:1998
805
  msgid "Are you sure you want to reset these settings to defaults?"
806
  msgstr ""
807
 
808
- #: ../responsive-lightbox.php:1999
809
  msgid "Are you sure you want to reset scripts settings to defaults?"
810
  msgstr ""
811
 
812
- #: ../responsive-lightbox.php:2288
813
  msgid "Support"
814
  msgstr ""
815
 
816
- #: ../responsive-lightbox.php:2310
817
  msgid "Settings"
818
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
+ "POT-Creation-Date: 2014-09-04 21:25+0100\n"
5
+ "PO-Revision-Date: 2014-09-04 21:25+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\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.6.7\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../responsive-lightbox.php:294
19
  msgid "prettyPhoto"
20
  msgstr ""
21
 
22
+ #: ../responsive-lightbox.php:296
23
  msgid "slow"
24
  msgstr ""
25
 
26
+ #: ../responsive-lightbox.php:297
27
  msgid "normal"
28
  msgstr ""
29
 
30
+ #: ../responsive-lightbox.php:298
31
  msgid "fast"
32
  msgstr ""
33
 
34
+ #: ../responsive-lightbox.php:301
35
  msgid "default"
36
  msgstr ""
37
 
38
+ #: ../responsive-lightbox.php:302
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
+ #: ../responsive-lightbox.php:303
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
+ #: ../responsive-lightbox.php:304
47
  msgid "light square"
48
  msgstr ""
49
 
50
+ #: ../responsive-lightbox.php:305
51
  msgid "dark square"
52
  msgstr ""
53
 
54
+ #: ../responsive-lightbox.php:306
55
  msgid "facebook"
56
  msgstr ""
57
 
58
+ #: ../responsive-lightbox.php:309
59
  msgid "window"
60
  msgstr ""
61
 
62
+ #: ../responsive-lightbox.php:310
63
  msgid "transparent"
64
  msgstr ""
65
 
66
+ #: ../responsive-lightbox.php:311
67
  msgid "opaque"
68
  msgstr ""
69
 
70
+ #: ../responsive-lightbox.php:312
71
  msgid "direct"
72
  msgstr ""
73
 
74
+ #: ../responsive-lightbox.php:313
75
  msgid "gpu"
76
  msgstr ""
77
 
78
+ #: ../responsive-lightbox.php:317
79
  msgid "SwipeBox"
80
  msgstr ""
81
 
82
+ #: ../responsive-lightbox.php:319
83
  msgid "CSS"
84
  msgstr ""
85
 
86
+ #: ../responsive-lightbox.php:320
87
  msgid "jQuery"
88
  msgstr ""
89
 
90
+ #: ../responsive-lightbox.php:324
91
  msgid "FancyBox"
92
  msgstr ""
93
 
94
+ #: ../responsive-lightbox.php:326
95
  msgid "elastic"
96
  msgstr ""
97
 
98
+ #: ../responsive-lightbox.php:327 ../responsive-lightbox.php:348
99
  msgid "fade"
100
  msgstr ""
101
 
102
+ #: ../responsive-lightbox.php:328
103
  msgid "none"
104
  msgstr ""
105
 
106
+ #: ../responsive-lightbox.php:331
107
  msgid "auto"
108
  msgstr ""
109
 
110
+ #: ../responsive-lightbox.php:332
111
  msgid "yes"
112
  msgstr ""
113
 
114
+ #: ../responsive-lightbox.php:333
115
  msgid "no"
116
  msgstr ""
117
 
118
+ #: ../responsive-lightbox.php:336
119
  msgid "swing"
120
  msgstr ""
121
 
122
+ #: ../responsive-lightbox.php:337
123
  msgid "linear"
124
  msgstr ""
125
 
126
+ #: ../responsive-lightbox.php:340
127
  msgid "outside"
128
  msgstr ""
129
 
130
+ #: ../responsive-lightbox.php:341
131
  msgid "inside"
132
  msgstr ""
133
 
134
+ #: ../responsive-lightbox.php:342
135
  msgid "over"
136
  msgstr ""
137
 
138
+ #: ../responsive-lightbox.php:346
139
  msgid "Nivo Lightbox"
140
  msgstr ""
141
 
142
+ #: ../responsive-lightbox.php:349
143
  msgid "fade scale"
144
  msgstr ""
145
 
146
+ #: ../responsive-lightbox.php:350
147
  msgid "slide left"
148
  msgstr ""
149
 
150
+ #: ../responsive-lightbox.php:351
151
  msgid "slide right"
152
  msgstr ""
153
 
154
+ #: ../responsive-lightbox.php:352
155
  msgid "slide up"
156
  msgstr ""
157
 
158
+ #: ../responsive-lightbox.php:353
159
  msgid "slide down"
160
  msgstr ""
161
 
162
+ #: ../responsive-lightbox.php:354
163
  msgid "fall"
164
  msgstr ""
165
 
166
+ #: ../responsive-lightbox.php:358
167
  msgid "Image Lightbox"
168
  msgstr ""
169
 
170
+ #: ../responsive-lightbox.php:363
171
  msgid "Enable"
172
  msgstr ""
173
 
174
+ #: ../responsive-lightbox.php:364
175
  msgid "Disable"
176
  msgstr ""
177
 
178
+ #: ../responsive-lightbox.php:368
179
  msgid "Header"
180
  msgstr ""
181
 
182
+ #: ../responsive-lightbox.php:369
183
  msgid "Footer"
184
  msgstr ""
185
 
186
+ #: ../responsive-lightbox.php:374 ../responsive-lightbox.php:475
187
  msgid "General settings"
188
  msgstr ""
189
 
190
+ #: ../responsive-lightbox.php:380 ../responsive-lightbox.php:489
191
  msgid "Lightbox settings"
192
  msgstr ""
193
 
194
+ #: ../responsive-lightbox.php:476
195
  msgid "Lightbox script"
196
  msgstr ""
197
 
198
+ #: ../responsive-lightbox.php:477
199
  msgid "Selector"
200
  msgstr ""
201
 
202
+ #: ../responsive-lightbox.php:478
203
  msgid "Galleries"
204
  msgstr ""
205
 
206
+ #: ../responsive-lightbox.php:479
207
+ msgid "Gallery image size"
208
+ msgstr ""
209
+
210
+ #: ../responsive-lightbox.php:480
211
  msgid "Video links"
212
  msgstr ""
213
 
214
+ #: ../responsive-lightbox.php:481
215
  msgid "Image links"
216
  msgstr ""
217
 
218
+ #: ../responsive-lightbox.php:482
219
  msgid "Single images as gallery"
220
  msgstr ""
221
 
222
+ #: ../responsive-lightbox.php:483
223
  msgid "Custom events"
224
  msgstr ""
225
 
226
+ #: ../responsive-lightbox.php:484
227
  msgid "Loading place"
228
  msgstr ""
229
 
230
+ #: ../responsive-lightbox.php:485
231
  msgid "Deactivation"
232
  msgstr ""
233
 
234
+ #: ../responsive-lightbox.php:493
235
  msgid "Animation type"
236
  msgstr ""
237
 
238
+ #: ../responsive-lightbox.php:494
239
  msgid "Force PNG icons"
240
  msgstr ""
241
 
242
+ #: ../responsive-lightbox.php:495
243
  msgid "Top and bottom bars"
244
  msgstr ""
245
 
246
+ #: ../responsive-lightbox.php:496
247
  msgid "Video max width"
248
  msgstr ""
249
 
250
+ #: ../responsive-lightbox.php:500 ../responsive-lightbox.php:557
251
  msgid "Animation speed"
252
  msgstr ""
253
 
254
+ #: ../responsive-lightbox.php:501
255
  msgid "Slideshow"
256
  msgstr ""
257
 
258
+ #: ../responsive-lightbox.php:502
259
  msgid "Slideshow autoplay"
260
  msgstr ""
261
 
262
+ #: ../responsive-lightbox.php:503 ../responsive-lightbox.php:533
263
  msgid "Opacity"
264
  msgstr ""
265
 
266
+ #: ../responsive-lightbox.php:504
267
  msgid "Show title"
268
  msgstr ""
269
 
270
+ #: ../responsive-lightbox.php:505
271
  msgid "Allow resize big images"
272
  msgstr ""
273
 
274
+ #: ../responsive-lightbox.php:506
275
  msgid "Allow expand"
276
  msgstr ""
277
 
278
+ #: ../responsive-lightbox.php:507 ../responsive-lightbox.php:545
279
  msgid "Video width"
280
  msgstr ""
281
 
282
+ #: ../responsive-lightbox.php:508 ../responsive-lightbox.php:546
283
  msgid "Video height"
284
  msgstr ""
285
 
286
+ #: ../responsive-lightbox.php:509
287
  msgid "Theme"
288
  msgstr ""
289
 
290
+ #: ../responsive-lightbox.php:510
291
  msgid "Horizontal padding"
292
  msgstr ""
293
 
294
+ #: ../responsive-lightbox.php:511
295
  msgid "Hide Flash"
296
  msgstr ""
297
 
298
+ #: ../responsive-lightbox.php:512
299
  msgid "Flash Window Mode (wmode)"
300
  msgstr ""
301
 
302
+ #: ../responsive-lightbox.php:513
303
  msgid "Video autoplay"
304
  msgstr ""
305
 
306
+ #: ../responsive-lightbox.php:514 ../responsive-lightbox.php:522
307
  msgid "Modal"
308
  msgstr ""
309
 
310
+ #: ../responsive-lightbox.php:515
311
  msgid "Deeplinking"
312
  msgstr ""
313
 
314
+ #: ../responsive-lightbox.php:516
315
  msgid "Overlay gallery"
316
  msgstr ""
317
 
318
+ #: ../responsive-lightbox.php:517
319
  msgid "Keyboard shortcuts"
320
  msgstr ""
321
 
322
+ #: ../responsive-lightbox.php:518
323
  msgid "Social (Twitter, Facebook)"
324
  msgstr ""
325
 
326
+ #: ../responsive-lightbox.php:523
327
  msgid "Show overlay"
328
  msgstr ""
329
 
330
+ #: ../responsive-lightbox.php:524
331
  msgid "Show close button"
332
  msgstr ""
333
 
334
+ #: ../responsive-lightbox.php:525
335
  msgid "Enable escape button"
336
  msgstr ""
337
 
338
+ #: ../responsive-lightbox.php:526
339
  msgid "Hide on overlay click"
340
  msgstr ""
341
 
342
+ #: ../responsive-lightbox.php:527
343
  msgid "Hide on content click"
344
  msgstr ""
345
 
346
+ #: ../responsive-lightbox.php:528
347
  msgid "Cyclic"
348
  msgstr ""
349
 
350
+ #: ../responsive-lightbox.php:529
351
  msgid "Show nav arrows"
352
  msgstr ""
353
 
354
+ #: ../responsive-lightbox.php:530
355
  msgid "Auto scale"
356
  msgstr ""
357
 
358
+ #: ../responsive-lightbox.php:531
359
  msgid "Scrolling (in/out)"
360
  msgstr ""
361
 
362
+ #: ../responsive-lightbox.php:532
363
  msgid "Center on scroll"
364
  msgstr ""
365
 
366
+ #: ../responsive-lightbox.php:534
367
  msgid "Overlay opacity"
368
  msgstr ""
369
 
370
+ #: ../responsive-lightbox.php:535
371
  msgid "Overlay color"
372
  msgstr ""
373
 
374
+ #: ../responsive-lightbox.php:536
375
  msgid "Title show"
376
  msgstr ""
377
 
378
+ #: ../responsive-lightbox.php:537
379
  msgid "Title position"
380
  msgstr ""
381
 
382
+ #: ../responsive-lightbox.php:538
383
  msgid "Transition (in/out)"
384
  msgstr ""
385
 
386
+ #: ../responsive-lightbox.php:539
387
  msgid "Easings (in/out)"
388
  msgstr ""
389
 
390
+ #: ../responsive-lightbox.php:540
391
  msgid "Speed (in/out)"
392
  msgstr ""
393
 
394
+ #: ../responsive-lightbox.php:541
395
  msgid "Change speed"
396
  msgstr ""
397
 
398
+ #: ../responsive-lightbox.php:542
399
  msgid "Change fade"
400
  msgstr ""
401
 
402
+ #: ../responsive-lightbox.php:543
403
  msgid "Padding"
404
  msgstr ""
405
 
406
+ #: ../responsive-lightbox.php:544
407
  msgid "Margin"
408
  msgstr ""
409
 
410
+ #: ../responsive-lightbox.php:550
411
  msgid "Effect"
412
  msgstr ""
413
 
414
+ #: ../responsive-lightbox.php:551
415
+ msgid "Click overlay to close"
416
+ msgstr ""
417
+
418
+ #: ../responsive-lightbox.php:552
419
  msgid "Keyboard navigation"
420
  msgstr ""
421
 
422
+ #: ../responsive-lightbox.php:553
423
  msgid "Error message"
424
  msgstr ""
425
 
426
+ #: ../responsive-lightbox.php:558
427
  msgid "Preload next image"
428
  msgstr ""
429
 
430
+ #: ../responsive-lightbox.php:559
431
  msgid "Enable keyboard keys"
432
  msgstr ""
433
 
434
+ #: ../responsive-lightbox.php:560
435
  msgid "Quit after last image"
436
  msgstr ""
437
 
438
+ #: ../responsive-lightbox.php:561
439
  msgid "Quit when image is clicked"
440
  msgstr ""
441
 
442
+ #: ../responsive-lightbox.php:562
443
  msgid "Quit when anything but image is clicked"
444
  msgstr ""
445
 
446
+ #: ../responsive-lightbox.php:582
447
  msgid "Select your preffered ligthbox effect script."
448
  msgstr ""
449
 
450
+ #: ../responsive-lightbox.php:592
451
  msgid "Select to which rel selector lightbox effect will be applied to."
452
  msgstr ""
453
 
454
+ #: ../responsive-lightbox.php:612
455
  msgid "Enable triggering lightbox on custom jquery events."
456
  msgstr ""
457
 
458
+ #: ../responsive-lightbox.php:615
459
  msgid "Enter a space separated list of events."
460
  msgstr ""
461
 
462
+ #: ../responsive-lightbox.php:636
463
  msgid "Select where all the lightbox scripts should be placed."
464
  msgstr ""
465
 
466
+ #: ../responsive-lightbox.php:654
467
  msgid "Add lightbox to WordPress image galleries by default."
468
  msgstr ""
469
 
470
+ #: ../responsive-lightbox.php:674
471
+ msgid ""
472
+ "By default WP gallery links point to full size images only. Enable that to "
473
+ "modify the image size of native WP gallery image links."
474
+ msgstr ""
475
+
476
+ #: ../responsive-lightbox.php:684
477
+ msgid "full"
478
+ msgstr ""
479
+
480
+ #: ../responsive-lightbox.php:693
481
+ msgid "Select image size for gallery image links."
482
+ msgstr ""
483
+
484
+ #: ../responsive-lightbox.php:712
485
  msgid "Add lightbox to YouTube and Vimeo video links by default."
486
  msgstr ""
487
 
488
+ #: ../responsive-lightbox.php:730
489
  msgid "Add lightbox to WordPress image links by default."
490
  msgstr ""
491
 
492
+ #: ../responsive-lightbox.php:748
493
  msgid "Display single post images as a gallery."
494
  msgstr ""
495
 
496
+ #: ../responsive-lightbox.php:766
497
  msgid "Delete settings on plugin deactivation."
498
  msgstr ""
499
 
500
+ #: ../responsive-lightbox.php:784
501
  msgid "Select a method of applying a lightbox effect."
502
  msgstr ""
503
 
504
+ #: ../responsive-lightbox.php:802
505
  msgid ""
506
  "Disable if you don't want to top and bottom bars to be hidden after a period "
507
  "of time."
508
  msgstr ""
509
 
510
+ #: ../responsive-lightbox.php:805
511
  msgid ""
512
  "Enter the time after which the top and bottom bars will be hidden (when "
513
  "hiding is enabled)."
514
  msgstr ""
515
 
516
+ #: ../responsive-lightbox.php:816
517
  msgid "Enter the max video width in a lightbox."
518
  msgstr ""
519
 
520
+ #: ../responsive-lightbox.php:834
521
  msgid ""
522
  "Enable this if you're having problems with navigation icons not visible on "
523
  "some devices."
524
  msgstr ""
525
 
526
+ #: ../responsive-lightbox.php:852
527
  msgid "Select animation speed for lightbox effect."
528
  msgstr ""
529
 
530
+ #: ../responsive-lightbox.php:870
531
  msgid "Display images as slideshow."
532
  msgstr ""
533
 
534
+ #: ../responsive-lightbox.php:873
535
  msgid "Enter time (in miliseconds)."
536
  msgstr ""
537
 
538
+ #: ../responsive-lightbox.php:892
539
  msgid "Automatically start slideshow."
540
  msgstr ""
541
 
542
+ #: ../responsive-lightbox.php:905
543
  msgid "Value between 0 and 100, 100 for no opacity."
544
  msgstr ""
545
 
546
+ #: ../responsive-lightbox.php:923
547
  msgid "Display image tiltle."
548
  msgstr ""
549
 
550
+ #: ../responsive-lightbox.php:941
551
  msgid "Resize the photos bigger than viewport."
552
  msgstr ""
553
 
554
+ #: ../responsive-lightbox.php:959
555
  msgid "Expands something."
556
  msgstr ""
557
 
558
+ #: ../responsive-lightbox.php:969 ../responsive-lightbox.php:979
559
  msgid "in pixels"
560
  msgstr ""
561
 
562
+ #: ../responsive-lightbox.php:997
563
  msgid "Select theme for lightbox effect."
564
  msgstr ""
565
 
566
+ #: ../responsive-lightbox.php:1007
567
  msgid "Horizontal padding (in pixels)."
568
  msgstr ""
569
 
570
+ #: ../responsive-lightbox.php:1025
571
  msgid ""
572
  "Hides all the flash object on a page. Enable this if flash appears over "
573
  "prettyPhoto."
574
  msgstr ""
575
 
576
+ #: ../responsive-lightbox.php:1043
577
  msgid "Select flash window mode."
578
  msgstr ""
579
 
580
+ #: ../responsive-lightbox.php:1061
581
  msgid "Automatically start videos."
582
  msgstr ""
583
 
584
+ #: ../responsive-lightbox.php:1079
585
  msgid "If set to true, only the close button will close the window."
586
  msgstr ""
587
 
588
+ #: ../responsive-lightbox.php:1097
589
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
590
  msgstr ""
591
 
592
+ #: ../responsive-lightbox.php:1115
593
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
594
  msgstr ""
595
 
596
+ #: ../responsive-lightbox.php:1133
597
  msgid "Set to false if you open forms inside prettyPhoto."
598
  msgstr ""
599
 
600
+ #: ../responsive-lightbox.php:1151
601
  msgid "Display links to Facebook and Twitter."
602
  msgstr ""
603
 
604
+ #: ../responsive-lightbox.php:1169
605
  msgid "The transition type."
606
  msgstr ""
607
 
608
+ #: ../responsive-lightbox.php:1179
609
  msgid "Space between FancyBox wrapper and content."
610
  msgstr ""
611
 
612
+ #: ../responsive-lightbox.php:1189
613
  msgid "Space between viewport and FancyBox wrapper."
614
  msgstr ""
615
 
616
+ #: ../responsive-lightbox.php:1207
617
  msgid ""
618
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
619
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
620
  "to FALSE."
621
  msgstr ""
622
 
623
+ #: ../responsive-lightbox.php:1225
624
  msgid "Toggle overlay."
625
  msgstr ""
626
 
627
+ #: ../responsive-lightbox.php:1243
628
  msgid "Toggle close button."
629
  msgstr ""
630
 
631
+ #: ../responsive-lightbox.php:1261
632
  msgid "Toggle if pressing Esc button closes FancyBox."
633
  msgstr ""
634
 
635
+ #: ../responsive-lightbox.php:1279
636
  msgid "Toggle if clicking the overlay should close FancyBox."
637
  msgstr ""
638
 
639
+ #: ../responsive-lightbox.php:1297
640
  msgid "Toggle if clicking the content should close FancyBox."
641
  msgstr ""
642
 
643
+ #: ../responsive-lightbox.php:1315
644
  msgid ""
645
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
646
  msgstr ""
647
 
648
+ #: ../responsive-lightbox.php:1333
649
  msgid "Toggle navigation arrows."
650
  msgstr ""
651
 
652
+ #: ../responsive-lightbox.php:1351
653
  msgid "If true, FancyBox is scaled to fit in viewport."
654
  msgstr ""
655
 
656
+ #: ../responsive-lightbox.php:1369
657
  msgid "Set the overflow CSS property to create or hide scrollbars."
658
  msgstr ""
659
 
660
+ #: ../responsive-lightbox.php:1387
661
  msgid "When true, FancyBox is centered while scrolling page."
662
  msgstr ""
663
 
664
+ #: ../responsive-lightbox.php:1405
665
  msgid "When true, transparency of content is changed for elastic transitions."
666
  msgstr ""
667
 
668
+ #: ../responsive-lightbox.php:1418
669
  msgid "Opacity of the overlay."
670
  msgstr ""
671
 
672
+ #: ../responsive-lightbox.php:1428
673
  msgid "Color of the overlay."
674
  msgstr ""
675
 
676
+ #: ../responsive-lightbox.php:1446
677
  msgid "Toggle title."
678
  msgstr ""
679
 
680
+ #: ../responsive-lightbox.php:1464
681
  msgid "The position of title."
682
  msgstr ""
683
 
684
+ #: ../responsive-lightbox.php:1482
685
  msgid "Easing used for elastic animations."
686
  msgstr ""
687
 
688
+ #: ../responsive-lightbox.php:1492
689
  msgid "Speed of the fade and elastic transitions, in milliseconds."
690
  msgstr ""
691
 
692
+ #: ../responsive-lightbox.php:1502
693
  msgid "Speed of resizing when changing gallery items, in milliseconds."
694
  msgstr ""
695
 
696
+ #: ../responsive-lightbox.php:1512
697
  msgid "Speed of the content fading while changing gallery items."
698
  msgstr ""
699
 
700
+ #: ../responsive-lightbox.php:1522
701
  msgid "Width of the video."
702
  msgstr ""
703
 
704
+ #: ../responsive-lightbox.php:1532
705
  msgid "Height of the video."
706
  msgstr ""
707
 
708
+ #: ../responsive-lightbox.php:1550
709
  msgid "The effect to use when showing the lightbox."
710
  msgstr ""
711
 
712
+ #: ../responsive-lightbox.php:1568
713
  msgid "Enable/Disable keyboard navigation (left/right/escape)."
714
  msgstr ""
715
 
716
+ #: ../responsive-lightbox.php:1586
717
+ msgid "Eneble to close lightbox on overlay click."
718
+ msgstr ""
719
+
720
+ #: ../responsive-lightbox.php:1596
721
  msgid "Error message if the content cannot be loaded."
722
  msgstr ""
723
 
724
+ #: ../responsive-lightbox.php:1606
725
  msgid "Animation speed."
726
  msgstr ""
727
 
728
+ #: ../responsive-lightbox.php:1624
729
  msgid "Silently preload the next image."
730
  msgstr ""
731
 
732
+ #: ../responsive-lightbox.php:1642
733
  msgid "Enable keyboard shortcuts (arrows Left/Right and Esc)."
734
  msgstr ""
735
 
736
+ #: ../responsive-lightbox.php:1660
737
  msgid "Quit after viewing the last image."
738
  msgstr ""
739
 
740
+ #: ../responsive-lightbox.php:1678
741
  msgid "Quit when the viewed image is clicked."
742
  msgstr ""
743
 
744
+ #: ../responsive-lightbox.php:1696
745
  msgid "Quit when anything but the viewed image is clicked."
746
  msgstr ""
747
 
748
+ #: ../responsive-lightbox.php:1938
749
  msgid ""
750
  "Changes were not saved because there was attempt to save settings of "
751
  "inactive script. The site has been reloaded to the proper script settings."
752
  msgstr ""
753
 
754
+ #: ../responsive-lightbox.php:1948
755
  msgid "Settings restored to defaults."
756
  msgstr ""
757
 
758
+ #: ../responsive-lightbox.php:1956
759
  msgid "Settings of SwipeBox script were restored to defaults."
760
  msgstr ""
761
 
762
+ #: ../responsive-lightbox.php:1962
763
  msgid "Settings of prettyPhoto script were restored to defaults."
764
  msgstr ""
765
 
766
+ #: ../responsive-lightbox.php:1968
767
  msgid "Settings of FancyBox script were restored to defaults."
768
  msgstr ""
769
 
770
+ #: ../responsive-lightbox.php:1974
771
  msgid "Settings of Nivo script were restored to defaults."
772
  msgstr ""
773
 
774
+ #: ../responsive-lightbox.php:1978
775
  msgid ""
776
  "Changes were not set to defaults because there was attempt to reset settings "
777
  "of inactive script. The site has been reloaded to the proper script settings."
778
  msgstr ""
779
 
780
+ #: ../responsive-lightbox.php:1992 ../responsive-lightbox.php:1993
781
+ #: ../responsive-lightbox.php:2007 ../responsive-lightbox.php:2021
782
  msgid "Responsive Lightbox"
783
  msgstr ""
784
 
785
+ #: ../responsive-lightbox.php:2023
786
  msgid "Need support?"
787
  msgstr ""
788
 
789
+ #: ../responsive-lightbox.php:2024
790
  msgid ""
791
  "If you are having problems with this plugin, please talk about them in the"
792
  msgstr ""
793
 
794
+ #: ../responsive-lightbox.php:2024
795
  msgid "Support forum"
796
  msgstr ""
797
 
798
+ #: ../responsive-lightbox.php:2026
799
  msgid "Do you like this plugin?"
800
  msgstr ""
801
 
802
+ #: ../responsive-lightbox.php:2027
803
  msgid "Rate it 5"
804
  msgstr ""
805
 
806
+ #: ../responsive-lightbox.php:2027
807
  msgid "on WordPress.org"
808
  msgstr ""
809
 
810
+ #: ../responsive-lightbox.php:2028
811
  msgid "Blog about it & link to the"
812
  msgstr ""
813
 
814
+ #: ../responsive-lightbox.php:2028
815
  msgid "plugin page"
816
  msgstr ""
817
 
818
+ #: ../responsive-lightbox.php:2029
819
  msgid "Check out our other"
820
  msgstr ""
821
 
822
+ #: ../responsive-lightbox.php:2029
823
  msgid "WordPress plugins"
824
  msgstr ""
825
 
826
+ #: ../responsive-lightbox.php:2055
827
  msgid "Reset to defaults"
828
  msgstr ""
829
 
830
+ #: ../responsive-lightbox.php:2082
831
  msgid "Are you sure you want to reset these settings to defaults?"
832
  msgstr ""
833
 
834
+ #: ../responsive-lightbox.php:2083
835
  msgid "Are you sure you want to reset scripts settings to defaults?"
836
  msgstr ""
837
 
838
+ #: ../responsive-lightbox.php:2373
839
  msgid "Support"
840
  msgstr ""
841
 
842
+ #: ../responsive-lightbox.php:2395
843
  msgid "Settings"
844
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: dfactory
3
  Donate link: http://www.dfactory.eu/
4
  Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
5
  Requires at least: 3.3
6
- Tested up to: 3.9.2
7
- Stable tag: 1.4.7
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -64,6 +64,10 @@ No questions yet.
64
 
65
  == Changelog ==
66
 
 
 
 
 
67
  = 1.4.7 =
68
  * New: Option to modify native WP gallery links image size
69
  * New: Option to donate this plugin :)
@@ -168,6 +172,6 @@ Initial release
168
 
169
  == Upgrade Notice ==
170
 
171
- = 1.4.7 =
172
- * New: Option to modify native WP gallery links image size
173
- * New: Option to donate this plugin :)
3
  Donate link: http://www.dfactory.eu/
4
  Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
5
  Requires at least: 3.3
6
+ Tested up to: 4.0
7
+ Stable tag: 1.4.8
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
64
 
65
  == Changelog ==
66
 
67
+ = 1.4.8 =
68
+ * Tweak: Nivo Lightbox updated to 1.2
69
+ * Tweak: Confirmed WP 4.0 compatibility
70
+
71
  = 1.4.7 =
72
  * New: Option to modify native WP gallery links image size
73
  * New: Option to donate this plugin :)
172
 
173
  == Upgrade Notice ==
174
 
175
+ = 1.4.8 =
176
+ * Tweak: Nivo Lightbox updated to 1.2
177
+ * Tweak: Confirmed WP 4.0 compatibility
responsive-lightbox.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Responsive Lightbox
4
  Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
5
- Version: 1.4.7
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
@@ -99,6 +99,7 @@ class Responsive_Lightbox
99
  ),
100
  'nivo' => array(
101
  'effect' => 'fade',
 
102
  'keyboard_nav' => true,
103
  'error_message' => 'The requested content cannot be loaded. Please try again later.'
104
  ),
@@ -111,7 +112,7 @@ class Responsive_Lightbox
111
  'quit_on_document_click' => true
112
  )
113
  ),
114
- 'version' => '1.4.7'
115
  );
116
  private $scripts = array();
117
  private $options = array();
@@ -547,6 +548,7 @@ class Responsive_Lightbox
547
  elseif($this->options['settings']['script'] === 'nivo')
548
  {
549
  add_settings_field('rl_nv_effect', __('Effect', 'responsive-lightbox'), array(&$this, 'rl_nv_effect'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
 
550
  add_settings_field('rl_nv_keyboard_nav', __('Keyboard navigation', 'responsive-lightbox'), array(&$this, 'rl_nv_keyboard_nav'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
551
  add_settings_field('rl_nv_error_message', __('Error message', 'responsive-lightbox'), array(&$this, 'rl_nv_error_message'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
552
  }
@@ -679,11 +681,11 @@ class Responsive_Lightbox
679
  echo '
680
  <div id="rl_gallery_image_size"'.($this->options['settings']['enable_gallery_image_size'] === false ? ' style="display: none;"' : '').'>
681
  <select name="responsive_lightbox_settings[gallery_image_size]" value="'.esc_attr($this->options['settings']['gallery_image_size']).'" />
682
- <option value="full" '.selected($this->options['settings']['gallery_image_size'], 'full').'>'.esc_attr(__('full', 'responsive-lightbox')).'</option>';
683
 
684
  foreach ($image_sizes as $image_size)
685
  {
686
- echo '<option value="'.esc_attr($image_size).'" '.selected($this->options['settings']['gallery_image_size'], esc_attr($image_size)).'>'.esc_attr($image_size).'</option>';
687
  }
688
 
689
  echo '
@@ -1568,11 +1570,29 @@ class Responsive_Lightbox
1568
  }
1569
 
1570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1571
  public function rl_nv_error_message()
1572
  {
1573
  echo '
1574
  <div id="rl_nv_error_message">
1575
- <input type="text" value="'.esc_attr($this->options['configuration']['nivo']['error_message']).'" name="responsive_lightbox_configuration[nivo][error_message]" />
1576
  <p class="description">'.__('Error message if the content cannot be loaded.', 'responsive-lightbox').'</p>
1577
  </div>';
1578
  }
@@ -1884,6 +1904,9 @@ class Responsive_Lightbox
1884
  //keyboard navigation
1885
  $input['nivo']['keyboard_nav'] = (isset($input['nivo']['keyboard_nav']) && in_array($input['nivo']['keyboard_nav'], array_keys($this->choices)) ? ($input['nivo']['keyboard_nav'] === 'yes' ? TRUE : FALSE) : $this->defaults['configuration']['nivo']['keyboard_nav']);
1886
 
 
 
 
1887
  //error message
1888
  $input['nivo']['error_message'] = sanitize_text_field($input['nivo']['error_message']);
1889
  }
@@ -2088,7 +2111,7 @@ class Responsive_Lightbox
2088
  'script' => $this->options['settings']['script'],
2089
  'selector' => $this->options['settings']['selector'],
2090
  'custom_events' => ($this->options['settings']['enable_custom_events'] === TRUE ? ' '.$this->options['settings']['custom_events'] : ''),
2091
- 'activeGalleries' => $this->getBooleanValue($this->options['settings']['galleries'])
2092
  ));
2093
 
2094
  if($args['script'] === 'prettyphoto')
@@ -2114,26 +2137,26 @@ class Responsive_Lightbox
2114
  $args,
2115
  array(
2116
  'animationSpeed' => $this->options['configuration']['prettyphoto']['animation_speed'],
2117
- 'slideshow' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['slideshow']),
2118
  'slideshowDelay' => $this->options['configuration']['prettyphoto']['slideshow_delay'],
2119
- 'slideshowAutoplay' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['slideshow_autoplay']),
2120
  'opacity' => sprintf('%.2f', ($this->options['configuration']['prettyphoto']['opacity'] / 100)),
2121
- 'showTitle' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['show_title']),
2122
- 'allowResize' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['allow_resize']),
2123
- 'allowExpand' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['allow_expand']),
2124
  'width' => $this->options['configuration']['prettyphoto']['width'],
2125
  'height' => $this->options['configuration']['prettyphoto']['height'],
2126
  'separator' => $this->options['configuration']['prettyphoto']['separator'],
2127
  'theme' => $this->options['configuration']['prettyphoto']['theme'],
2128
  'horizontalPadding' => $this->options['configuration']['prettyphoto']['horizontal_padding'],
2129
- 'hideFlash' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['hide_flash']),
2130
  'wmode' => $this->options['configuration']['prettyphoto']['wmode'],
2131
- 'videoAutoplay' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['video_autoplay']),
2132
- 'modal' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['modal']),
2133
- 'deeplinking' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['deeplinking']),
2134
- 'overlayGallery' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['overlay_gallery']),
2135
- 'keyboardShortcuts' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['keyboard_shortcuts']),
2136
- 'social' => $this->getBooleanValue($this->options['configuration']['prettyphoto']['social'])
2137
  )
2138
  );
2139
  }
@@ -2159,8 +2182,8 @@ class Responsive_Lightbox
2159
  $args = array_merge(
2160
  $args,
2161
  array(
2162
- 'animation' => $this->getBooleanValue(($this->options['configuration']['swipebox']['animation'] === 'css' ? TRUE : FALSE)),
2163
- 'hideBars' => $this->getBooleanValue($this->options['configuration']['swipebox']['hide_bars']),
2164
  'hideBarsDelay' => $this->options['configuration']['swipebox']['hide_bars_delay'],
2165
  'videoMaxWidth' => $this->options['configuration']['swipebox']['video_max_width']
2166
  )
@@ -2196,21 +2219,21 @@ class Responsive_Lightbox
2196
  $args = array_merge(
2197
  $args,
2198
  array(
2199
- 'modal' => $this->getBooleanValue($this->options['configuration']['fancybox']['modal']),
2200
- 'showOverlay' => $this->getBooleanValue($this->options['configuration']['fancybox']['show_overlay']),
2201
- 'showCloseButton' => $this->getBooleanValue($this->options['configuration']['fancybox']['show_close_button']),
2202
- 'enableEscapeButton' => $this->getBooleanValue($this->options['configuration']['fancybox']['enable_escape_button']),
2203
- 'hideOnOverlayClick' => $this->getBooleanValue($this->options['configuration']['fancybox']['hide_on_overlay_click']),
2204
- 'hideOnContentClick' => $this->getBooleanValue($this->options['configuration']['fancybox']['hide_on_content_click']),
2205
- 'cyclic' => $this->getBooleanValue($this->options['configuration']['fancybox']['cyclic']),
2206
- 'showNavArrows' => $this->getBooleanValue($this->options['configuration']['fancybox']['show_nav_arrows']),
2207
- 'autoScale' => $this->getBooleanValue($this->options['configuration']['fancybox']['auto_scale']),
2208
  'scrolling' => $this->options['configuration']['fancybox']['scrolling'],
2209
- 'centerOnScroll' => $this->getBooleanValue($this->options['configuration']['fancybox']['center_on_scroll']),
2210
- 'opacity' => $this->getBooleanValue($this->options['configuration']['fancybox']['opacity']),
2211
  'overlayOpacity' => $this->options['configuration']['fancybox']['overlay_opacity'],
2212
  'overlayColor' => $this->options['configuration']['fancybox']['overlay_color'],
2213
- 'titleShow' => $this->getBooleanValue($this->options['configuration']['fancybox']['title_show']),
2214
  'titlePosition' => $this->options['configuration']['fancybox']['title_position'],
2215
  'transitions' => $this->options['configuration']['fancybox']['transitions'],
2216
  'easings' => $this->options['configuration']['fancybox']['easings'],
@@ -2228,7 +2251,7 @@ class Responsive_Lightbox
2228
  {
2229
  wp_register_script(
2230
  'responsive-lightbox-nivo',
2231
- plugins_url('assets/nivo/nivo-lightbox.js', __FILE__),
2232
  array('jquery'),
2233
  '',
2234
  ($this->options['settings']['loading_place'] === 'header' ? false : true)
@@ -2254,7 +2277,8 @@ class Responsive_Lightbox
2254
  $args,
2255
  array(
2256
  'effect' => $this->options['configuration']['nivo']['effect'],
2257
- 'keyboardNav' => $this->getBooleanValue($this->options['configuration']['nivo']['keyboard_nav']),
 
2258
  'errorMessage' => esc_attr($this->options['configuration']['nivo']['error_message'])
2259
  )
2260
  );
@@ -2282,11 +2306,11 @@ class Responsive_Lightbox
2282
  $args,
2283
  array(
2284
  'animationSpeed' => $this->options['configuration']['imagelightbox']['animation_speed'],
2285
- 'preloadNext' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['preload_next']),
2286
- 'enableKeyboard' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['enable_keyboard']),
2287
- 'quitOnEnd' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['quit_on_end']),
2288
- 'quitOnImageClick' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['quit_on_image_click']),
2289
- 'quitOnDocumentClick' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['quit_on_document_click']),
2290
  )
2291
  );
2292
  }
@@ -2317,7 +2341,7 @@ class Responsive_Lightbox
2317
  /**
2318
  *
2319
  */
2320
- private function getBooleanValue($option)
2321
  {
2322
  return ($option === TRUE ? 1 : 0);
2323
  }
2
  /*
3
  Plugin Name: Responsive Lightbox
4
  Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
5
+ Version: 1.4.8
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
99
  ),
100
  'nivo' => array(
101
  'effect' => 'fade',
102
+ 'click_overlay_to_close' => true,
103
  'keyboard_nav' => true,
104
  'error_message' => 'The requested content cannot be loaded. Please try again later.'
105
  ),
112
  'quit_on_document_click' => true
113
  )
114
  ),
115
+ 'version' => '1.4.8'
116
  );
117
  private $scripts = array();
118
  private $options = array();
548
  elseif($this->options['settings']['script'] === 'nivo')
549
  {
550
  add_settings_field('rl_nv_effect', __('Effect', 'responsive-lightbox'), array(&$this, 'rl_nv_effect'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
551
+ add_settings_field('rl_nv_click_overlay_to_close', __('Click overlay to close', 'responsive-lightbox'), array(&$this, 'rl_nv_click_overlay_to_close'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
552
  add_settings_field('rl_nv_keyboard_nav', __('Keyboard navigation', 'responsive-lightbox'), array(&$this, 'rl_nv_keyboard_nav'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
553
  add_settings_field('rl_nv_error_message', __('Error message', 'responsive-lightbox'), array(&$this, 'rl_nv_error_message'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
554
  }
681
  echo '
682
  <div id="rl_gallery_image_size"'.($this->options['settings']['enable_gallery_image_size'] === false ? ' style="display: none;"' : '').'>
683
  <select name="responsive_lightbox_settings[gallery_image_size]" value="'.esc_attr($this->options['settings']['gallery_image_size']).'" />
684
+ <option value="full" '.selected($this->options['settings']['gallery_image_size'], 'full', false).'>'.esc_attr(__('full', 'responsive-lightbox')).'</option>';
685
 
686
  foreach ($image_sizes as $image_size)
687
  {
688
+ echo '<option value="'.esc_attr($image_size).'" '.selected($this->options['settings']['gallery_image_size'], esc_attr($image_size), false).'>'.esc_attr($image_size).'</option>';
689
  }
690
 
691
  echo '
1570
  }
1571
 
1572
 
1573
+ public function rl_nv_click_overlay_to_close()
1574
+ {
1575
+ echo '
1576
+ <div id="rl_nv_click_overlay_to_close" class="wplikebtns">';
1577
+
1578
+ foreach($this->choices as $val => $trans)
1579
+ {
1580
+ echo '
1581
+ <input id="rl-nv-click-overlay-to-close-'.$val.'" type="radio" name="responsive_lightbox_configuration[nivo][click_overlay_to_close]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? TRUE : FALSE), $this->options['configuration']['nivo']['click_overlay_to_close'], FALSE).' />
1582
+ <label for="rl-nv-click-overlay-to-close-'.$val.'">'.$trans.'</label>';
1583
+ }
1584
+
1585
+ echo '
1586
+ <p class="description">'.__('Eneble to close lightbox on overlay click.', 'responsive-lightbox').'</p>
1587
+ </div>';
1588
+ }
1589
+
1590
+
1591
  public function rl_nv_error_message()
1592
  {
1593
  echo '
1594
  <div id="rl_nv_error_message">
1595
+ <input type="text" class="large-text" value="'.esc_attr($this->options['configuration']['nivo']['error_message']).'" name="responsive_lightbox_configuration[nivo][error_message]" />
1596
  <p class="description">'.__('Error message if the content cannot be loaded.', 'responsive-lightbox').'</p>
1597
  </div>';
1598
  }
1904
  //keyboard navigation
1905
  $input['nivo']['keyboard_nav'] = (isset($input['nivo']['keyboard_nav']) && in_array($input['nivo']['keyboard_nav'], array_keys($this->choices)) ? ($input['nivo']['keyboard_nav'] === 'yes' ? TRUE : FALSE) : $this->defaults['configuration']['nivo']['keyboard_nav']);
1906
 
1907
+ // keyboard navigation
1908
+ $input['nivo']['click_overlay_to_close'] = (isset($input['nivo']['click_overlay_to_close']) && in_array($input['nivo']['click_overlay_to_close'], array_keys($this->choices)) ? ($input['nivo']['click_overlay_to_close'] === 'yes' ? true : false) : $this->defaults['configuration']['nivo']['click_overlay_to_close']);
1909
+
1910
  //error message
1911
  $input['nivo']['error_message'] = sanitize_text_field($input['nivo']['error_message']);
1912
  }
2111
  'script' => $this->options['settings']['script'],
2112
  'selector' => $this->options['settings']['selector'],
2113
  'custom_events' => ($this->options['settings']['enable_custom_events'] === TRUE ? ' '.$this->options['settings']['custom_events'] : ''),
2114
+ 'activeGalleries' => $this->get_boolean_value($this->options['settings']['galleries'])
2115
  ));
2116
 
2117
  if($args['script'] === 'prettyphoto')
2137
  $args,
2138
  array(
2139
  'animationSpeed' => $this->options['configuration']['prettyphoto']['animation_speed'],
2140
+ 'slideshow' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['slideshow']),
2141
  'slideshowDelay' => $this->options['configuration']['prettyphoto']['slideshow_delay'],
2142
+ 'slideshowAutoplay' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['slideshow_autoplay']),
2143
  'opacity' => sprintf('%.2f', ($this->options['configuration']['prettyphoto']['opacity'] / 100)),
2144
+ 'showTitle' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['show_title']),
2145
+ 'allowResize' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['allow_resize']),
2146
+ 'allowExpand' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['allow_expand']),
2147
  'width' => $this->options['configuration']['prettyphoto']['width'],
2148
  'height' => $this->options['configuration']['prettyphoto']['height'],
2149
  'separator' => $this->options['configuration']['prettyphoto']['separator'],
2150
  'theme' => $this->options['configuration']['prettyphoto']['theme'],
2151
  'horizontalPadding' => $this->options['configuration']['prettyphoto']['horizontal_padding'],
2152
+ 'hideFlash' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['hide_flash']),
2153
  'wmode' => $this->options['configuration']['prettyphoto']['wmode'],
2154
+ 'videoAutoplay' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['video_autoplay']),
2155
+ 'modal' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['modal']),
2156
+ 'deeplinking' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['deeplinking']),
2157
+ 'overlayGallery' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['overlay_gallery']),
2158
+ 'keyboardShortcuts' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['keyboard_shortcuts']),
2159
+ 'social' => $this->get_boolean_value($this->options['configuration']['prettyphoto']['social'])
2160
  )
2161
  );
2162
  }
2182
  $args = array_merge(
2183
  $args,
2184
  array(
2185
+ 'animation' => $this->get_boolean_value(($this->options['configuration']['swipebox']['animation'] === 'css' ? TRUE : FALSE)),
2186
+ 'hideBars' => $this->get_boolean_value($this->options['configuration']['swipebox']['hide_bars']),
2187
  'hideBarsDelay' => $this->options['configuration']['swipebox']['hide_bars_delay'],
2188
  'videoMaxWidth' => $this->options['configuration']['swipebox']['video_max_width']
2189
  )
2219
  $args = array_merge(
2220
  $args,
2221
  array(
2222
+ 'modal' => $this->get_boolean_value($this->options['configuration']['fancybox']['modal']),
2223
+ 'showOverlay' => $this->get_boolean_value($this->options['configuration']['fancybox']['show_overlay']),
2224
+ 'showCloseButton' => $this->get_boolean_value($this->options['configuration']['fancybox']['show_close_button']),
2225
+ 'enableEscapeButton' => $this->get_boolean_value($this->options['configuration']['fancybox']['enable_escape_button']),
2226
+ 'hideOnOverlayClick' => $this->get_boolean_value($this->options['configuration']['fancybox']['hide_on_overlay_click']),
2227
+ 'hideOnContentClick' => $this->get_boolean_value($this->options['configuration']['fancybox']['hide_on_content_click']),
2228
+ 'cyclic' => $this->get_boolean_value($this->options['configuration']['fancybox']['cyclic']),
2229
+ 'showNavArrows' => $this->get_boolean_value($this->options['configuration']['fancybox']['show_nav_arrows']),
2230
+ 'autoScale' => $this->get_boolean_value($this->options['configuration']['fancybox']['auto_scale']),
2231
  'scrolling' => $this->options['configuration']['fancybox']['scrolling'],
2232
+ 'centerOnScroll' => $this->get_boolean_value($this->options['configuration']['fancybox']['center_on_scroll']),
2233
+ 'opacity' => $this->get_boolean_value($this->options['configuration']['fancybox']['opacity']),
2234
  'overlayOpacity' => $this->options['configuration']['fancybox']['overlay_opacity'],
2235
  'overlayColor' => $this->options['configuration']['fancybox']['overlay_color'],
2236
+ 'titleShow' => $this->get_boolean_value($this->options['configuration']['fancybox']['title_show']),
2237
  'titlePosition' => $this->options['configuration']['fancybox']['title_position'],
2238
  'transitions' => $this->options['configuration']['fancybox']['transitions'],
2239
  'easings' => $this->options['configuration']['fancybox']['easings'],
2251
  {
2252
  wp_register_script(
2253
  'responsive-lightbox-nivo',
2254
+ plugins_url('assets/nivo/nivo-lightbox.min.js', __FILE__),
2255
  array('jquery'),
2256
  '',
2257
  ($this->options['settings']['loading_place'] === 'header' ? false : true)
2277
  $args,
2278
  array(
2279
  'effect' => $this->options['configuration']['nivo']['effect'],
2280
+ 'clickOverlayToClose' => $this->get_boolean_value($this->options['configuration']['nivo']['click_overlay_to_close']),
2281
+ 'keyboardNav' => $this->get_boolean_value($this->options['configuration']['nivo']['keyboard_nav']),
2282
  'errorMessage' => esc_attr($this->options['configuration']['nivo']['error_message'])
2283
  )
2284
  );
2306
  $args,
2307
  array(
2308
  'animationSpeed' => $this->options['configuration']['imagelightbox']['animation_speed'],
2309
+ 'preloadNext' => $this->get_boolean_value($this->options['configuration']['imagelightbox']['preload_next']),
2310
+ 'enableKeyboard' => $this->get_boolean_value($this->options['configuration']['imagelightbox']['enable_keyboard']),
2311
+ 'quitOnEnd' => $this->get_boolean_value($this->options['configuration']['imagelightbox']['quit_on_end']),
2312
+ 'quitOnImageClick' => $this->get_boolean_value($this->options['configuration']['imagelightbox']['quit_on_image_click']),
2313
+ 'quitOnDocumentClick' => $this->get_boolean_value($this->options['configuration']['imagelightbox']['quit_on_document_click']),
2314
  )
2315
  );
2316
  }
2341
  /**
2342
  *
2343
  */
2344
+ private function get_boolean_value($option)
2345
  {
2346
  return ($option === TRUE ? 1 : 0);
2347
  }