Responsive Lightbox & Gallery - Version 1.4.0

Version Description

  • New: Added Image Lightbox script
  • New: Option to load scripts in header or footer
  • Tweak: Changed Swipebox script to custom built - thanks to Arno Welzel
Download this release

Release Info

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

Code changes from version 1.3.6 to 1.4.0

assets/imagelightbox/css/imagelightbox.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ #imagelightbox
2
+ {
3
+ position: fixed;
4
+ z-index: 9999;
5
+ }
assets/imagelightbox/js/imagelightbox.min.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /*
2
+ By Osvaldas Valutis, www.osvaldas.info
3
+ Available for use under the MIT License
4
+ */
5
+
6
+ ;(function(e,t,n,r){"use strict";var i=function(){var e=n.body||n.documentElement,e=e.style;if(e.WebkitTransition=="")return"-webkit-";if(e.MozTransition=="")return"-moz-";if(e.OTransition=="")return"-o-";if(e.transition=="")return"";return false},s=i()===false?false:true,o=function(e,t,n){var r={},s=i();r[s+"transform"]="translateX("+t+")";r[s+"transition"]=s+"transform "+n+"s linear";e.css(r)},u="ontouchstart"in t,a=t.navigator.pointerEnabled||t.navigator.msPointerEnabled,f=function(e){if(u)return true;if(!a||typeof e==="undefined"||typeof e.pointerType==="undefined")return false;if(typeof e.MSPOINTER_TYPE_MOUSE!=="undefined"){if(e.MSPOINTER_TYPE_MOUSE!=e.pointerType)return true}else if(e.pointerType!="mouse")return true;return false};e.fn.imageLightbox=function(r){var r=e.extend({selector:'id="imagelightbox"',allowedTypes:"png|jpg|jpeg|gif",animationSpeed:250,preloadNext:true,enableKeyboard:true,quitOnEnd:false,quitOnImgClick:false,quitOnDocClick:true,onStart:false,onEnd:false,onLoadStart:false,onLoadEnd:false},r),i=e([]),l=e(),c=e(),h=0,p=0,d=0,v=false,m=function(t){return e(t).prop("tagName").toLowerCase()=="a"&&(new RegExp(".("+r.allowedTypes+")$","i")).test(e(t).attr("href"))},g=function(){if(!c.length)return false;var n=e(t).width()*.8,r=e(t).height()*.9,i=new Image;i.src=c.attr("src");i.onload=function(){h=i.width;p=i.height;if(h>n||p>r){var s=h/p>n/r?h/n:p/r;h/=s;p/=s}c.css({width:h+"px",height:p+"px",top:(e(t).height()-p)/2+"px",left:(e(t).width()-h)/2+"px"})}},y=function(t){if(v)return false;t=typeof t==="undefined"?false:t=="left"?1:-1;if(c.length){if(t!==false&&(i.length<2||r.quitOnEnd===true&&(t===-1&&i.index(l)==0||t===1&&i.index(l)==i.length-1))){w();return false}var n={opacity:0};if(s)o(c,100*t-d+"px",r.animationSpeed/1e3);else n.left=parseInt(c.css("left"))+100*t+"px";c.animate(n,r.animationSpeed,function(){b()});d=0}v=true;if(r.onLoadStart!==false)r.onLoadStart();setTimeout(function(){c=e("<img "+r.selector+" />").attr("src",l.attr("href")).load(function(){c.appendTo("body");g();var n={opacity:1};c.css("opacity",0);if(s){o(c,-100*t+"px",0);setTimeout(function(){o(c,0+"px",r.animationSpeed/1e3)},50)}else{var u=parseInt(c.css("left"));n.left=u+"px";c.css("left",u-100*t+"px")}c.animate(n,r.animationSpeed,function(){v=false;if(r.onLoadEnd!==false)r.onLoadEnd()});if(r.preloadNext){var a=i.eq(i.index(l)+1);if(!a.length)a=i.eq(0);e("<img />").attr("src",a.attr("href")).load()}}).error(function(){if(r.onLoadEnd!==false)r.onLoadEnd()});var n=0,u=0,p=0;c.on(a?"pointerup MSPointerUp":"click",function(e){e.preventDefault();if(r.quitOnImgClick){w();return false}if(f(e.originalEvent))return true;var t=(e.pageX||e.originalEvent.pageX)-e.target.offsetLeft;l=i.eq(i.index(l)-(h/2>t?1:-1));if(!l.length)l=i.eq(h/2>t?i.length:0);y(h/2>t?"left":"right")}).on("touchstart pointerdown MSPointerDown",function(e){if(!f(e.originalEvent)||r.quitOnImgClick)return true;if(s)p=parseInt(c.css("left"));n=e.originalEvent.pageX||e.originalEvent.touches[0].pageX}).on("touchmove pointermove MSPointerMove",function(e){if(!f(e.originalEvent)||r.quitOnImgClick)return true;e.preventDefault();u=e.originalEvent.pageX||e.originalEvent.touches[0].pageX;d=n-u;if(s)o(c,-d+"px",0);else c.css("left",p-d+"px")}).on("touchend touchcancel pointerup MSPointerUp",function(e){if(!f(e.originalEvent)||r.quitOnImgClick)return true;if(Math.abs(d)>50){l=i.eq(i.index(l)-(d<0?1:-1));if(!l.length)l=i.eq(d<0?i.length:0);y(d>0?"right":"left")}else{if(s)o(c,0+"px",r.animationSpeed/1e3);else c.animate({left:p+"px"},r.animationSpeed/2)}})},r.animationSpeed+100)},b=function(){if(!c.length)return false;c.remove();c=e()},w=function(){if(!c.length)return false;c.animate({opacity:0},r.animationSpeed,function(){b();v=false;if(r.onEnd!==false)r.onEnd()})};e(t).on("resize",g);if(r.quitOnDocClick){e(n).on(u?"touchend":"click",function(t){if(c.length&&!e(t.target).is(c))w()})}if(r.enableKeyboard){e(n).on("keyup",function(e){if(!c.length)return true;e.preventDefault();if(e.keyCode==27)w();if(e.keyCode==37||e.keyCode==39){l=i.eq(i.index(l)-(e.keyCode==37?1:-1));if(!l.length)l=i.eq(e.keyCode==37?i.length:0);y(e.keyCode==37?"left":"right")}})}e(n).on("click",this.selector,function(t){if(!m(this))return true;t.preventDefault();if(v)return false;v=false;if(r.onStart!==false)r.onStart();l=e(this);y()});this.each(function(){if(!m(this))return true;i=i.add(e(this))});this.switchImageLightbox=function(e){var t=i.eq(e);if(t.length){var n=i.index(l);l=t;y(e<n?"left":"right")}return this};this.quitImageLightbox=function(){w();return this};return this}})(jQuery,window,document);
js/front.js CHANGED
@@ -78,7 +78,17 @@ jQuery(document).ready(function($) {
78
  keyboardNav: (rlArgs.keyboardNav === '1' ? true : false),
79
  errorMessage: rlArgs.errorMessage
80
  });
 
 
 
 
 
 
 
 
 
 
 
81
  }
82
  });
83
-
84
  });
78
  keyboardNav: (rlArgs.keyboardNav === '1' ? true : false),
79
  errorMessage: rlArgs.errorMessage
80
  });
81
+ } else if(rlArgs.script === 'imagelightbox') {
82
+ $('a[rel*="'+rlArgs.selector+'"]').each(function(i, item) {
83
+ $('a[rel="'+item.rel+'"]').imageLightbox({
84
+ animationSpeed: parseInt(rlArgs.animationSpeed),
85
+ preloadNext: (rlArgs.preloadNext === '1' ? true : false),
86
+ enableKeyboard: (rlArgs.enableKeyboard === '1' ? true : false),
87
+ quitOnEnd: (rlArgs.quitOnEnd === '1' ? true : false),
88
+ quitOnImgClick: (rlArgs.quitOnImageClick === '1' ? true : false),
89
+ quitOnDocClick: (rlArgs.quitOnDocumentClick === '1' ? true : false)
90
+ });
91
+ });
92
  }
93
  });
 
94
  });
languages/responsive-lightbox-pl_PL.mo CHANGED
Binary file
languages/responsive-lightbox-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
- "POT-Creation-Date: 2014-02-10 15:41+0100\n"
5
- "PO-Revision-Date: 2014-02-10 15:42+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: pl\n"
@@ -15,433 +15,477 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../responsive-lightbox.php:276
19
  msgid "prettyPhoto"
20
  msgstr "prettyPhoto"
21
 
22
- #: ../responsive-lightbox.php:278
23
  msgid "slow"
24
  msgstr "wolno"
25
 
26
- #: ../responsive-lightbox.php:279
27
  msgid "normal"
28
  msgstr "normalnie"
29
 
30
- #: ../responsive-lightbox.php:280
31
  msgid "fast"
32
  msgstr "szybko"
33
 
34
- #: ../responsive-lightbox.php:283
35
  msgid "default"
36
  msgstr ""
37
 
38
- #: ../responsive-lightbox.php:284
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
- #: ../responsive-lightbox.php:285
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
- #: ../responsive-lightbox.php:286
47
  msgid "light square"
48
  msgstr ""
49
 
50
- #: ../responsive-lightbox.php:287
51
  msgid "dark square"
52
  msgstr ""
53
 
54
- #: ../responsive-lightbox.php:288
55
  msgid "facebook"
56
  msgstr ""
57
 
58
- #: ../responsive-lightbox.php:291
59
  msgid "window"
60
  msgstr ""
61
 
62
- #: ../responsive-lightbox.php:292
63
  msgid "transparent"
64
  msgstr ""
65
 
66
- #: ../responsive-lightbox.php:293
67
  msgid "opaque"
68
  msgstr ""
69
 
70
- #: ../responsive-lightbox.php:294
71
  msgid "direct"
72
  msgstr ""
73
 
74
- #: ../responsive-lightbox.php:295
75
  msgid "gpu"
76
  msgstr ""
77
 
78
- #: ../responsive-lightbox.php:299
79
  msgid "SwipeBox"
80
  msgstr "SwipeBox"
81
 
82
- #: ../responsive-lightbox.php:301
83
  msgid "CSS"
84
  msgstr "CSS"
85
 
86
- #: ../responsive-lightbox.php:302
87
  msgid "jQuery"
88
  msgstr "jQuery"
89
 
90
- #: ../responsive-lightbox.php:306
91
  msgid "FancyBox"
92
  msgstr "FancyBox"
93
 
94
- #: ../responsive-lightbox.php:308
95
  msgid "elastic"
96
  msgstr ""
97
 
98
- #: ../responsive-lightbox.php:309 ../responsive-lightbox.php:330
99
  msgid "fade"
100
  msgstr ""
101
 
102
- #: ../responsive-lightbox.php:310
103
  msgid "none"
104
  msgstr "brak"
105
 
106
- #: ../responsive-lightbox.php:313
107
  msgid "auto"
108
  msgstr "automatycznie"
109
 
110
- #: ../responsive-lightbox.php:314
111
  msgid "yes"
112
  msgstr "tak"
113
 
114
- #: ../responsive-lightbox.php:315
115
  msgid "no"
116
  msgstr "nie"
117
 
118
- #: ../responsive-lightbox.php:318
119
  msgid "swing"
120
  msgstr ""
121
 
122
- #: ../responsive-lightbox.php:319
123
  msgid "linear"
124
  msgstr ""
125
 
126
- #: ../responsive-lightbox.php:322
127
  msgid "outside"
128
  msgstr ""
129
 
130
- #: ../responsive-lightbox.php:323
131
  msgid "inside"
132
  msgstr ""
133
 
134
- #: ../responsive-lightbox.php:324
135
  msgid "over"
136
  msgstr ""
137
 
138
- #: ../responsive-lightbox.php:328
139
  msgid "Nivo Lightbox"
140
  msgstr "Nivo Lightbox"
141
 
142
- #: ../responsive-lightbox.php:331
143
  msgid "fade scale"
144
  msgstr "fade scale"
145
 
146
- #: ../responsive-lightbox.php:332
147
  msgid "slide left"
148
  msgstr ""
149
 
150
- #: ../responsive-lightbox.php:333
151
  msgid "slide right"
152
  msgstr "slide right"
153
 
154
- #: ../responsive-lightbox.php:334
155
  msgid "slide up"
156
  msgstr ""
157
 
158
- #: ../responsive-lightbox.php:335
159
  msgid "slide down"
160
  msgstr "slide down"
161
 
162
- #: ../responsive-lightbox.php:336
163
  msgid "fall"
164
  msgstr ""
165
 
166
- #: ../responsive-lightbox.php:342
 
 
 
 
167
  msgid "Enable"
168
  msgstr "Włącz"
169
 
170
- #: ../responsive-lightbox.php:343
171
  msgid "Disable"
172
  msgstr "Wyłącz"
173
 
174
- #: ../responsive-lightbox.php:348 ../responsive-lightbox.php:449
 
 
 
 
 
 
 
 
175
  msgid "General settings"
176
  msgstr "Ustawienia ogólne"
177
 
178
- #: ../responsive-lightbox.php:354 ../responsive-lightbox.php:461
179
  msgid "Lightbox settings"
180
  msgstr "Ustawienia lightbox"
181
 
182
- #: ../responsive-lightbox.php:450
183
  msgid "Lightbox script"
184
  msgstr "Skrypt lightbox"
185
 
186
- #: ../responsive-lightbox.php:451
187
  msgid "Selector"
188
  msgstr "Znacznik"
189
 
190
- #: ../responsive-lightbox.php:452
191
  msgid "Galleries"
192
  msgstr "Galerie"
193
 
194
- #: ../responsive-lightbox.php:453
195
  msgid "Video links"
196
  msgstr "Linki video"
197
 
198
- #: ../responsive-lightbox.php:454
199
  msgid "Image links"
200
  msgstr "Linki obrazków"
201
 
202
- #: ../responsive-lightbox.php:455
203
  msgid "Single images as gallery"
204
  msgstr "Galeria pojedynczych obrazków"
205
 
206
- #: ../responsive-lightbox.php:456
207
  msgid "Custom events"
208
  msgstr "Własne zdarzenia"
209
 
210
- #: ../responsive-lightbox.php:457
 
 
 
 
211
  msgid "Deactivation"
212
  msgstr "Deaktywacja"
213
 
214
- #: ../responsive-lightbox.php:465
215
  msgid "Animation type"
216
  msgstr "Typ animacji"
217
 
218
- #: ../responsive-lightbox.php:466
219
  msgid "Force PNG icons"
220
  msgstr "Wymuszanie ikon PNG"
221
 
222
- #: ../responsive-lightbox.php:467
223
  msgid "Top and bottom bars"
224
  msgstr "Górne i dolne paski"
225
 
226
- #: ../responsive-lightbox.php:468
227
  msgid "Video max width"
228
  msgstr "Maksymalna szerokość video"
229
 
230
- #: ../responsive-lightbox.php:472
231
  msgid "Animation speed"
232
  msgstr "Szybkość animacji"
233
 
234
- #: ../responsive-lightbox.php:473
235
  msgid "Slideshow"
236
  msgstr "Pokaz slidów"
237
 
238
- #: ../responsive-lightbox.php:474
239
  msgid "Slideshow autoplay"
240
  msgstr "Automatyczne odtwarzanie pokazu slajdów"
241
 
242
- #: ../responsive-lightbox.php:475 ../responsive-lightbox.php:504
243
  msgid "Opacity"
244
  msgstr "Przezroczystość"
245
 
246
- #: ../responsive-lightbox.php:476
247
  msgid "Show title"
248
  msgstr "Wyświetlanie tytułu"
249
 
250
- #: ../responsive-lightbox.php:477
251
  msgid "Allow resize big images"
252
  msgstr "Powiększanie dużych zdjęć"
253
 
254
- #: ../responsive-lightbox.php:478 ../responsive-lightbox.php:516
 
 
 
 
255
  msgid "Video width"
256
  msgstr "Szerokość video"
257
 
258
- #: ../responsive-lightbox.php:479 ../responsive-lightbox.php:517
259
  msgid "Video height"
260
  msgstr "Wysokość video"
261
 
262
- #: ../responsive-lightbox.php:480
263
  msgid "Theme"
264
  msgstr "Motyw"
265
 
266
- #: ../responsive-lightbox.php:481
267
  msgid "Horizontal padding"
268
  msgstr "Odstępy w poziomie"
269
 
270
- #: ../responsive-lightbox.php:482
271
  msgid "Hide Flash"
272
  msgstr "Ukrywanie flash"
273
 
274
- #: ../responsive-lightbox.php:483
275
  msgid "Flash Window Mode (wmode)"
276
  msgstr "Tryb okna flash (wmode)"
277
 
278
- #: ../responsive-lightbox.php:484
279
  msgid "Video autoplay"
280
  msgstr "Automatyczne odtwarzanie wideo"
281
 
282
- #: ../responsive-lightbox.php:485 ../responsive-lightbox.php:493
283
  msgid "Modal"
284
  msgstr "Tryb modal"
285
 
286
- #: ../responsive-lightbox.php:486
287
  msgid "Deeplinking"
288
  msgstr "Głębokie linki"
289
 
290
- #: ../responsive-lightbox.php:487
291
  msgid "Overlay gallery"
292
  msgstr "Efekt overlay galerii"
293
 
294
- #: ../responsive-lightbox.php:488
295
  msgid "Keyboard shortcuts"
296
  msgstr "Skróty klawiaturowe"
297
 
298
- #: ../responsive-lightbox.php:489
299
  msgid "Social (Twitter, Facebook)"
300
  msgstr "Linki społeczności (Twitter, Facebook)"
301
 
302
- #: ../responsive-lightbox.php:494
303
  msgid "Show overlay"
304
  msgstr "Wyświetlanie tła"
305
 
306
- #: ../responsive-lightbox.php:495
307
  msgid "Show close button"
308
  msgstr "Wyświetlanie przycisku Zamknij"
309
 
310
- #: ../responsive-lightbox.php:496
311
  msgid "Enable escape button"
312
  msgstr "Wyświetlanie przycisku Wyjdź"
313
 
314
- #: ../responsive-lightbox.php:497
315
  msgid "Hide on overlay click"
316
  msgstr "Ukryj po kliknięciu w tło"
317
 
318
- #: ../responsive-lightbox.php:498
319
  msgid "Hide on content click"
320
  msgstr "Ukryj po kliknięciu w treść"
321
 
322
- #: ../responsive-lightbox.php:499
323
  msgid "Cyclic"
324
  msgstr "Cykliczność"
325
 
326
- #: ../responsive-lightbox.php:500
327
  msgid "Show nav arrows"
328
  msgstr "Wyświetlanie strzałek"
329
 
330
- #: ../responsive-lightbox.php:501
331
  msgid "Auto scale"
332
  msgstr "Automatyczne skalowanie"
333
 
334
- #: ../responsive-lightbox.php:502
335
  msgid "Scrolling (in/out)"
336
  msgstr "Przewijanie"
337
 
338
- #: ../responsive-lightbox.php:503
339
  msgid "Center on scroll"
340
  msgstr "Centrowanie przy przewijaniu"
341
 
342
- #: ../responsive-lightbox.php:505
343
  msgid "Overlay opacity"
344
  msgstr "Przezroczystość tła"
345
 
346
- #: ../responsive-lightbox.php:506
347
  msgid "Overlay color"
348
  msgstr "Kolor tła"
349
 
350
- #: ../responsive-lightbox.php:507
351
  msgid "Title show"
352
  msgstr "Wyświetlanie tytułu"
353
 
354
- #: ../responsive-lightbox.php:508
355
  msgid "Title position"
356
  msgstr "Pozycja tytułu"
357
 
358
- #: ../responsive-lightbox.php:509
359
  msgid "Transition (in/out)"
360
  msgstr "Efekty przejścia"
361
 
362
- #: ../responsive-lightbox.php:510
363
  msgid "Easings (in/out)"
364
  msgstr "Wygładzanie animacji"
365
 
366
- #: ../responsive-lightbox.php:511
367
  msgid "Speed (in/out)"
368
  msgstr "Szybkość"
369
 
370
- #: ../responsive-lightbox.php:512
371
  msgid "Change speed"
372
  msgstr "Zmień szybkość"
373
 
374
- #: ../responsive-lightbox.php:513
375
  msgid "Change fade"
376
  msgstr "Zmień zanikanie"
377
 
378
- #: ../responsive-lightbox.php:514
379
  msgid "Padding"
380
  msgstr "Odstęp (padding)"
381
 
382
- #: ../responsive-lightbox.php:515
383
  msgid "Margin"
384
  msgstr "Margines (margin)"
385
 
386
- #: ../responsive-lightbox.php:521
387
  msgid "Effect"
388
  msgstr "Efekt"
389
 
390
- #: ../responsive-lightbox.php:522
391
  msgid "Keyboard navigation"
392
  msgstr "Nawigacja klawiaturą"
393
 
394
- #: ../responsive-lightbox.php:523
395
  msgid "Error message"
396
  msgstr "Treść komunikatu o błędzie"
397
 
398
- #: ../responsive-lightbox.php:541
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
  msgid "Select your preffered ligthbox effect script."
400
  msgstr "Wybierz preferowany efekt lightbox."
401
 
402
- #: ../responsive-lightbox.php:551
403
  msgid "Select to which rel selector lightbox effect will be applied to."
404
  msgstr "Wybierz dla któego znacznika będzie dodawany efekt lightbox."
405
 
406
- #: ../responsive-lightbox.php:569
407
  msgid "Enable triggering lightbox on custom jquery events."
408
  msgstr "Włącz uruchamianie efektu lightbox przy własnych zdarzeniach jquery."
409
 
410
- #: ../responsive-lightbox.php:572
411
  msgid "Enter a space separated list of events."
412
  msgstr "Wpisz oddzieloną spacją listę wydarzeń."
413
 
414
- #: ../responsive-lightbox.php:591
 
 
 
 
415
  msgid "Add lightbox to WordPress image galleries by default."
416
  msgstr "Dodaj efekt lightbox do galerii obrazków WordPressa."
417
 
418
- #: ../responsive-lightbox.php:609
419
  msgid "Add lightbox to YouTube and Vimeo video links by default."
420
  msgstr "Dodaj efekt lightbox do linków video (YouTube i Vimeo) WordPressa."
421
 
422
- #: ../responsive-lightbox.php:627
423
  msgid "Add lightbox to WordPress image links by default."
424
  msgstr "Dodaj efekt lightbox do pojedynczych obrazków WordPressa."
425
 
426
- #: ../responsive-lightbox.php:645
427
  msgid "Display single post images as a gallery."
428
  msgstr "Wyświetl pojedyncze obrazki jako pokaz sladów."
429
 
430
- #: ../responsive-lightbox.php:663
431
  msgid "Delete settings on plugin deactivation."
432
  msgstr "Usuń ustawienia przy deaktywacji wtyczki."
433
 
434
- #: ../responsive-lightbox.php:681
435
  msgid "Select a method of applying a lightbox effect."
436
  msgstr "Wybierz sposób dodawania efekty lightbox."
437
 
438
- #: ../responsive-lightbox.php:699
439
  msgid ""
440
  "Disable if you don't want to top and bottom bars to be hidden after a period "
441
  "of time."
442
  msgstr "Wyłącz to, jeśli nie chcesz ukrywać górnego i dolnego paska."
443
 
444
- #: ../responsive-lightbox.php:702
445
  msgid ""
446
  "Enter the time after which the top and bottom bars will be hidden (when "
447
  "hiding is enabled)."
@@ -449,57 +493,61 @@ msgstr ""
449
  "Podaj czas po którym chcesz ukryć górny i dolny pasek (jeśli opcja ukrywania "
450
  "jest włączona)."
451
 
452
- #: ../responsive-lightbox.php:713
453
  msgid "Enter the max video width in a lightbox."
454
  msgstr "Podaj maksymalną szerokość video."
455
 
456
- #: ../responsive-lightbox.php:731
457
  msgid ""
458
  "Enable this if you're having problems with navigation icons not visible on "
459
  "some devices."
460
  msgstr "Włącz tę opcję jeśli masz problemy z wyświetlaniem ikon nawigacji."
461
 
462
- #: ../responsive-lightbox.php:749
463
  msgid "Select animation speed for lightbox effect."
464
  msgstr "Wybierz szybkość animacji efektu lightbox."
465
 
466
- #: ../responsive-lightbox.php:767
467
  msgid "Display images as slideshow."
468
  msgstr "Wyświetl obrazki jako pokaz sladów ."
469
 
470
- #: ../responsive-lightbox.php:770
471
  msgid "Enter time (in miliseconds)."
472
  msgstr "Podaj czas (w milisekundach)."
473
 
474
- #: ../responsive-lightbox.php:789
475
  msgid "Automatically start slideshow."
476
  msgstr "Automatyczne rozpoczynanie pokazu slajdów."
477
 
478
- #: ../responsive-lightbox.php:802
479
  msgid "Value between 0 and 100, 100 for no opacity."
480
  msgstr "Wartość pomiędzy 0 i 100 (100 oznacza brak przezroczystości)."
481
 
482
- #: ../responsive-lightbox.php:820
483
  msgid "Display image tiltle."
484
  msgstr "Wyświetlanie tytułu obrazka."
485
 
486
- #: ../responsive-lightbox.php:838
487
  msgid "Resize the photos bigger than viewport."
488
  msgstr "Zmiana wielkość zdjęć większych niż aktualny ekran."
489
 
490
- #: ../responsive-lightbox.php:848 ../responsive-lightbox.php:858
 
 
 
 
491
  msgid "in pixels"
492
  msgstr "w pikselach"
493
 
494
- #: ../responsive-lightbox.php:876
495
  msgid "Select theme for lightbox effect."
496
  msgstr "Wybierz motyw dla efektu lightbox."
497
 
498
- #: ../responsive-lightbox.php:886
499
  msgid "Horizontal padding (in pixels)."
500
  msgstr "Odstępy w poziomie (w pikselach)."
501
 
502
- #: ../responsive-lightbox.php:904
503
  msgid ""
504
  "Hides all the flash object on a page. Enable this if flash appears over "
505
  "prettyPhoto."
@@ -507,50 +555,50 @@ msgstr ""
507
  "Ukywa wszystkie obiekty flash na stronie. Włącz to jeśli animacje flash "
508
  "wyświetlane są nad lightboxem."
509
 
510
- #: ../responsive-lightbox.php:922
511
  msgid "Select flash window mode."
512
  msgstr "Wybierz tryb okna flash."
513
 
514
- #: ../responsive-lightbox.php:940
515
  msgid "Automatically start videos."
516
  msgstr "Automatycznie rozpoczynaj video."
517
 
518
- #: ../responsive-lightbox.php:958
519
  msgid "If set to true, only the close button will close the window."
520
  msgstr ""
521
  "Jeśli będzie włączone, tylko kliknięcie przycisku spowoduje zamknięcie okna."
522
 
523
- #: ../responsive-lightbox.php:976
524
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
525
  msgstr "Zezwól prettyPhoto na aktualizacje adresów URL i głębokie linkowanie."
526
 
527
- #: ../responsive-lightbox.php:994
528
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
529
  msgstr ""
530
  "Jeśli będzie włączone, galeria będzie wyświetlana na cały ekran po "
531
  "najechaniu myszką."
532
 
533
- #: ../responsive-lightbox.php:1012
534
  msgid "Set to false if you open forms inside prettyPhoto."
535
  msgstr "Wyłącz to jeśli chcesz otwierać formularze wewnątrz prettyPhoto."
536
 
537
- #: ../responsive-lightbox.php:1030
538
  msgid "Display links to Facebook and Twitter."
539
  msgstr "Wyświetl linki do Facebboka i Twittera."
540
 
541
- #: ../responsive-lightbox.php:1048
542
  msgid "The transition type."
543
  msgstr "Typ animacji."
544
 
545
- #: ../responsive-lightbox.php:1058
546
  msgid "Space between FancyBox wrapper and content."
547
  msgstr "Przestrzeń między FancyBox a treścią"
548
 
549
- #: ../responsive-lightbox.php:1068
550
  msgid "Space between viewport and FancyBox wrapper."
551
  msgstr "Przestrzeń między ekranem a Fancybox"
552
 
553
- #: ../responsive-lightbox.php:1086
554
  msgid ""
555
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
556
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
@@ -560,112 +608,136 @@ msgstr ""
560
  "TRUE, natomiast \"hideOnOverlayClick\", \"hideOnContentClick\", "
561
  "\"enableEscapeButton\", \"showCloseButton\" zostaną ustawione na FALSE."
562
 
563
- #: ../responsive-lightbox.php:1104
564
  msgid "Toggle overlay."
565
  msgstr "Włącz tło."
566
 
567
- #: ../responsive-lightbox.php:1122
568
  msgid "Toggle close button."
569
  msgstr "Włącz przycisk Zamknij."
570
 
571
- #: ../responsive-lightbox.php:1140
572
  msgid "Toggle if pressing Esc button closes FancyBox."
573
  msgstr "Włącz zamykanie FancyBox przy pomocy Esc."
574
 
575
- #: ../responsive-lightbox.php:1158
576
  msgid "Toggle if clicking the overlay should close FancyBox."
577
  msgstr "Włącz zamykanie FancyBox kliknięciem w tło."
578
 
579
- #: ../responsive-lightbox.php:1176
580
  msgid "Toggle if clicking the content should close FancyBox."
581
  msgstr "Włącz zamykanie FancyBox kliknięciem w treść."
582
 
583
- #: ../responsive-lightbox.php:1194
584
  msgid ""
585
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
586
  msgstr "Jeśli będzie włączone, galerie będą wyświetlane cyklicznie."
587
 
588
- #: ../responsive-lightbox.php:1212
589
  msgid "Toggle navigation arrows."
590
  msgstr "Włącz strzałki nawigacyjne."
591
 
592
- #: ../responsive-lightbox.php:1230
593
  msgid "If true, FancyBox is scaled to fit in viewport."
594
  msgstr "Jeśli będzie włączone, FancyBox będzie skalowany do rozmiaru okna."
595
 
596
- #: ../responsive-lightbox.php:1248
597
  msgid "Set the overflow CSS property to create or hide scrollbars."
598
  msgstr ""
599
  "Ustaw parametr overflow dw CSS aby tworzyć lub ukrywać elementy nawigacji."
600
 
601
- #: ../responsive-lightbox.php:1266
602
  msgid "When true, FancyBox is centered while scrolling page."
603
  msgstr ""
604
  "Jeśli będzie zaznaczone, FancyBox będzie wycentrowany w trakcie przewijania "
605
  "strony."
606
 
607
- #: ../responsive-lightbox.php:1284
608
  msgid "When true, transparency of content is changed for elastic transitions."
609
  msgstr ""
610
  "Jeśli będzie zaznaczone, przezroczystość treści zmieni się w trakcie "
611
  "animacji."
612
 
613
- #: ../responsive-lightbox.php:1297
614
  msgid "Opacity of the overlay."
615
  msgstr "Przezroczystość tła."
616
 
617
- #: ../responsive-lightbox.php:1307
618
  msgid "Color of the overlay."
619
  msgstr "Kolor tła."
620
 
621
- #: ../responsive-lightbox.php:1325
622
  msgid "Toggle title."
623
  msgstr "Wyświetlanie tytułu."
624
 
625
- #: ../responsive-lightbox.php:1343
626
  msgid "The position of title."
627
  msgstr "Pozycja tytułu."
628
 
629
- #: ../responsive-lightbox.php:1361
630
  msgid "Easing used for elastic animations."
631
  msgstr "Wygładzanie animacji dla trybu elastic."
632
 
633
- #: ../responsive-lightbox.php:1371
634
  msgid "Speed of the fade and elastic transitions, in milliseconds."
635
  msgstr "Podaj czas trwania animacji fade i elastic (w milisekundach)"
636
 
637
- #: ../responsive-lightbox.php:1381
638
  msgid "Speed of resizing when changing gallery items, in milliseconds."
639
  msgstr ""
640
  "Szybkość zmiany wielkości okna w trakcie przechodzenia między obrazkami (w "
641
  "milisekundach)."
642
 
643
- #: ../responsive-lightbox.php:1391
644
  msgid "Speed of the content fading while changing gallery items."
645
  msgstr "Szybkość zanikania elementów w trakcie przechodzenia między obrazkami."
646
 
647
- #: ../responsive-lightbox.php:1401
648
  msgid "Width of the video."
649
  msgstr "Szerokość video."
650
 
651
- #: ../responsive-lightbox.php:1411
652
  msgid "Height of the video."
653
  msgstr "Wysokość video."
654
 
655
- #: ../responsive-lightbox.php:1429
656
  msgid "The effect to use when showing the lightbox."
657
  msgstr "Wybierz efekt, który chcesz zastosować do wyświetlania lightboxa."
658
 
659
- #: ../responsive-lightbox.php:1447
660
  msgid "Enable/Disable keyboard navigation (left/right/escape)."
661
  msgstr ""
662
  "Włącz / Wyłącz nawigację klawiaturą (strzałka w lewo, w prawo i przycisk ESC)"
663
 
664
- #: ../responsive-lightbox.php:1457
665
  msgid "Error message if the content cannot be loaded."
666
  msgstr "Komunikat w przypadku gdy nie można załądować treści."
667
 
668
- #: ../responsive-lightbox.php:1661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
669
  msgid ""
670
  "Changes were not saved because there was attempt to save settings of "
671
  "inactive script. The site has been reloaded to the proper script settings."
@@ -673,27 +745,27 @@ msgstr ""
673
  "Zmiany nie zostały zapisane ponieważ wykryto próbę zapisu ustawień "
674
  "nieaktywnego skryptu. Strona została odświeżona z prawidłowymi ustawieniami."
675
 
676
- #: ../responsive-lightbox.php:1671
677
  msgid "Settings restored to defaults."
678
  msgstr "Ustawienia zostały przywrócone do domyślnych."
679
 
680
- #: ../responsive-lightbox.php:1679
681
  msgid "Settings of SwipeBox script were restored to defaults."
682
  msgstr "Ustawienia skryptu SwipeBox zostały przywrócone."
683
 
684
- #: ../responsive-lightbox.php:1685
685
  msgid "Settings of prettyPhoto script were restored to defaults."
686
  msgstr "Ustawienia skryptu prettyPhoto zostały przywrócone."
687
 
688
- #: ../responsive-lightbox.php:1691
689
  msgid "Settings of FancyBox script were restored to defaults."
690
  msgstr "Ustawienia skryptu FancyBox zostały przywrócone."
691
 
692
- #: ../responsive-lightbox.php:1697
693
  msgid "Settings of Nivo script were restored to defaults."
694
  msgstr "Ustawienia skryptu Nivo Lightbox zostały przywrócone."
695
 
696
- #: ../responsive-lightbox.php:1701
697
  msgid ""
698
  "Changes were not set to defaults because there was attempt to reset settings "
699
  "of inactive script. The site has been reloaded to the proper script settings."
@@ -702,68 +774,68 @@ msgstr ""
702
  "resetowania ustawień nieaktywnego skryptu. Strona została odświeżona z "
703
  "prawidłowymi ustawieniami."
704
 
705
- #: ../responsive-lightbox.php:1715 ../responsive-lightbox.php:1716
706
- #: ../responsive-lightbox.php:1730 ../responsive-lightbox.php:1744
707
  msgid "Responsive Lightbox"
708
  msgstr "Efekt Lightbox"
709
 
710
- #: ../responsive-lightbox.php:1746
711
  msgid "Need support?"
712
  msgstr "Potrzebujesz pomocy?"
713
 
714
- #: ../responsive-lightbox.php:1747
715
  msgid ""
716
  "If you are having problems with this plugin, please talk about them in the"
717
  msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o nich na"
718
 
719
- #: ../responsive-lightbox.php:1747
720
  msgid "Support forum"
721
  msgstr "Forum pomocy"
722
 
723
- #: ../responsive-lightbox.php:1749
724
  msgid "Do you like this plugin?"
725
  msgstr "Lubisz tę wtyczkę?"
726
 
727
- #: ../responsive-lightbox.php:1750
728
  msgid "Rate it 5"
729
  msgstr "Oceń ją na 5"
730
 
731
- #: ../responsive-lightbox.php:1750
732
  msgid "on WordPress.org"
733
  msgstr "na WordPress.org"
734
 
735
- #: ../responsive-lightbox.php:1751
736
  msgid "Blog about it & link to the"
737
  msgstr "Napisz o niej i dodaj link"
738
 
739
- #: ../responsive-lightbox.php:1751
740
  msgid "plugin page"
741
  msgstr "do strony wtyczki"
742
 
743
- #: ../responsive-lightbox.php:1752
744
  msgid "Check out our other"
745
  msgstr "Sprawdź nasze pozostałe"
746
 
747
- #: ../responsive-lightbox.php:1752
748
  msgid "WordPress plugins"
749
  msgstr "wtyczki do WordPress'a"
750
 
751
- #: ../responsive-lightbox.php:1772
752
  msgid "Reset to defaults"
753
  msgstr "Resetuj do domyślnych"
754
 
755
- #: ../responsive-lightbox.php:1799
756
  msgid "Are you sure you want to reset these settings to defaults?"
757
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia do domyślnych?"
758
 
759
- #: ../responsive-lightbox.php:1800
760
  msgid "Are you sure you want to reset scripts settings to defaults?"
761
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia?"
762
 
763
- #: ../responsive-lightbox.php:2047
764
  msgid "Support"
765
  msgstr "Pomoc"
766
 
767
- #: ../responsive-lightbox.php:2069
768
  msgid "Settings"
769
  msgstr "Ustawienia"
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"
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
  "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
  "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
  "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
  "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
  "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"
languages/responsive-lightbox.mo DELETED
Binary file
languages/responsive-lightbox.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
- "POT-Creation-Date: 2014-02-10 15:40+0100\n"
5
- "PO-Revision-Date: 2014-02-10 15:41+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\n"
@@ -15,732 +15,804 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../responsive-lightbox.php:276
19
  msgid "prettyPhoto"
20
  msgstr ""
21
 
22
- #: ../responsive-lightbox.php:278
23
  msgid "slow"
24
  msgstr ""
25
 
26
- #: ../responsive-lightbox.php:279
27
  msgid "normal"
28
  msgstr ""
29
 
30
- #: ../responsive-lightbox.php:280
31
  msgid "fast"
32
  msgstr ""
33
 
34
- #: ../responsive-lightbox.php:283
35
  msgid "default"
36
  msgstr ""
37
 
38
- #: ../responsive-lightbox.php:284
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
- #: ../responsive-lightbox.php:285
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
- #: ../responsive-lightbox.php:286
47
  msgid "light square"
48
  msgstr ""
49
 
50
- #: ../responsive-lightbox.php:287
51
  msgid "dark square"
52
  msgstr ""
53
 
54
- #: ../responsive-lightbox.php:288
55
  msgid "facebook"
56
  msgstr ""
57
 
58
- #: ../responsive-lightbox.php:291
59
  msgid "window"
60
  msgstr ""
61
 
62
- #: ../responsive-lightbox.php:292
63
  msgid "transparent"
64
  msgstr ""
65
 
66
- #: ../responsive-lightbox.php:293
67
  msgid "opaque"
68
  msgstr ""
69
 
70
- #: ../responsive-lightbox.php:294
71
  msgid "direct"
72
  msgstr ""
73
 
74
- #: ../responsive-lightbox.php:295
75
  msgid "gpu"
76
  msgstr ""
77
 
78
- #: ../responsive-lightbox.php:299
79
  msgid "SwipeBox"
80
  msgstr ""
81
 
82
- #: ../responsive-lightbox.php:301
83
  msgid "CSS"
84
  msgstr ""
85
 
86
- #: ../responsive-lightbox.php:302
87
  msgid "jQuery"
88
  msgstr ""
89
 
90
- #: ../responsive-lightbox.php:306
91
  msgid "FancyBox"
92
  msgstr ""
93
 
94
- #: ../responsive-lightbox.php:308
95
  msgid "elastic"
96
  msgstr ""
97
 
98
- #: ../responsive-lightbox.php:309 ../responsive-lightbox.php:330
99
  msgid "fade"
100
  msgstr ""
101
 
102
- #: ../responsive-lightbox.php:310
103
  msgid "none"
104
  msgstr ""
105
 
106
- #: ../responsive-lightbox.php:313
107
  msgid "auto"
108
  msgstr ""
109
 
110
- #: ../responsive-lightbox.php:314
111
  msgid "yes"
112
  msgstr ""
113
 
114
- #: ../responsive-lightbox.php:315
115
  msgid "no"
116
  msgstr ""
117
 
118
- #: ../responsive-lightbox.php:318
119
  msgid "swing"
120
  msgstr ""
121
 
122
- #: ../responsive-lightbox.php:319
123
  msgid "linear"
124
  msgstr ""
125
 
126
- #: ../responsive-lightbox.php:322
127
  msgid "outside"
128
  msgstr ""
129
 
130
- #: ../responsive-lightbox.php:323
131
  msgid "inside"
132
  msgstr ""
133
 
134
- #: ../responsive-lightbox.php:324
135
  msgid "over"
136
  msgstr ""
137
 
138
- #: ../responsive-lightbox.php:328
139
  msgid "Nivo Lightbox"
140
  msgstr ""
141
 
142
- #: ../responsive-lightbox.php:331
143
  msgid "fade scale"
144
  msgstr ""
145
 
146
- #: ../responsive-lightbox.php:332
147
  msgid "slide left"
148
  msgstr ""
149
 
150
- #: ../responsive-lightbox.php:333
151
  msgid "slide right"
152
  msgstr ""
153
 
154
- #: ../responsive-lightbox.php:334
155
  msgid "slide up"
156
  msgstr ""
157
 
158
- #: ../responsive-lightbox.php:335
159
  msgid "slide down"
160
  msgstr ""
161
 
162
- #: ../responsive-lightbox.php:336
163
  msgid "fall"
164
  msgstr ""
165
 
166
- #: ../responsive-lightbox.php:342
 
 
 
 
167
  msgid "Enable"
168
  msgstr ""
169
 
170
- #: ../responsive-lightbox.php:343
171
  msgid "Disable"
172
  msgstr ""
173
 
174
- #: ../responsive-lightbox.php:348 ../responsive-lightbox.php:449
 
 
 
 
 
 
 
 
175
  msgid "General settings"
176
  msgstr ""
177
 
178
- #: ../responsive-lightbox.php:354 ../responsive-lightbox.php:461
179
  msgid "Lightbox settings"
180
  msgstr ""
181
 
182
- #: ../responsive-lightbox.php:450
183
  msgid "Lightbox script"
184
  msgstr ""
185
 
186
- #: ../responsive-lightbox.php:451
187
  msgid "Selector"
188
  msgstr ""
189
 
190
- #: ../responsive-lightbox.php:452
191
  msgid "Galleries"
192
  msgstr ""
193
 
194
- #: ../responsive-lightbox.php:453
195
  msgid "Video links"
196
  msgstr ""
197
 
198
- #: ../responsive-lightbox.php:454
199
  msgid "Image links"
200
  msgstr ""
201
 
202
- #: ../responsive-lightbox.php:455
203
  msgid "Single images as gallery"
204
  msgstr ""
205
 
206
- #: ../responsive-lightbox.php:456
207
  msgid "Custom events"
208
  msgstr ""
209
 
210
- #: ../responsive-lightbox.php:457
 
 
 
 
211
  msgid "Deactivation"
212
  msgstr ""
213
 
214
- #: ../responsive-lightbox.php:465
215
  msgid "Animation type"
216
  msgstr ""
217
 
218
- #: ../responsive-lightbox.php:466
219
  msgid "Force PNG icons"
220
  msgstr ""
221
 
222
- #: ../responsive-lightbox.php:467
223
  msgid "Top and bottom bars"
224
  msgstr ""
225
 
226
- #: ../responsive-lightbox.php:468
227
  msgid "Video max width"
228
  msgstr ""
229
 
230
- #: ../responsive-lightbox.php:472
231
  msgid "Animation speed"
232
  msgstr ""
233
 
234
- #: ../responsive-lightbox.php:473
235
  msgid "Slideshow"
236
  msgstr ""
237
 
238
- #: ../responsive-lightbox.php:474
239
  msgid "Slideshow autoplay"
240
  msgstr ""
241
 
242
- #: ../responsive-lightbox.php:475 ../responsive-lightbox.php:504
243
  msgid "Opacity"
244
  msgstr ""
245
 
246
- #: ../responsive-lightbox.php:476
247
  msgid "Show title"
248
  msgstr ""
249
 
250
- #: ../responsive-lightbox.php:477
251
  msgid "Allow resize big images"
252
  msgstr ""
253
 
254
- #: ../responsive-lightbox.php:478 ../responsive-lightbox.php:516
 
 
 
 
255
  msgid "Video width"
256
  msgstr ""
257
 
258
- #: ../responsive-lightbox.php:479 ../responsive-lightbox.php:517
259
  msgid "Video height"
260
  msgstr ""
261
 
262
- #: ../responsive-lightbox.php:480
263
  msgid "Theme"
264
  msgstr ""
265
 
266
- #: ../responsive-lightbox.php:481
267
  msgid "Horizontal padding"
268
  msgstr ""
269
 
270
- #: ../responsive-lightbox.php:482
271
  msgid "Hide Flash"
272
  msgstr ""
273
 
274
- #: ../responsive-lightbox.php:483
275
  msgid "Flash Window Mode (wmode)"
276
  msgstr ""
277
 
278
- #: ../responsive-lightbox.php:484
279
  msgid "Video autoplay"
280
  msgstr ""
281
 
282
- #: ../responsive-lightbox.php:485 ../responsive-lightbox.php:493
283
  msgid "Modal"
284
  msgstr ""
285
 
286
- #: ../responsive-lightbox.php:486
287
  msgid "Deeplinking"
288
  msgstr ""
289
 
290
- #: ../responsive-lightbox.php:487
291
  msgid "Overlay gallery"
292
  msgstr ""
293
 
294
- #: ../responsive-lightbox.php:488
295
  msgid "Keyboard shortcuts"
296
  msgstr ""
297
 
298
- #: ../responsive-lightbox.php:489
299
  msgid "Social (Twitter, Facebook)"
300
  msgstr ""
301
 
302
- #: ../responsive-lightbox.php:494
303
  msgid "Show overlay"
304
  msgstr ""
305
 
306
- #: ../responsive-lightbox.php:495
307
  msgid "Show close button"
308
  msgstr ""
309
 
310
- #: ../responsive-lightbox.php:496
311
  msgid "Enable escape button"
312
  msgstr ""
313
 
314
- #: ../responsive-lightbox.php:497
315
  msgid "Hide on overlay click"
316
  msgstr ""
317
 
318
- #: ../responsive-lightbox.php:498
319
  msgid "Hide on content click"
320
  msgstr ""
321
 
322
- #: ../responsive-lightbox.php:499
323
  msgid "Cyclic"
324
  msgstr ""
325
 
326
- #: ../responsive-lightbox.php:500
327
  msgid "Show nav arrows"
328
  msgstr ""
329
 
330
- #: ../responsive-lightbox.php:501
331
  msgid "Auto scale"
332
  msgstr ""
333
 
334
- #: ../responsive-lightbox.php:502
335
  msgid "Scrolling (in/out)"
336
  msgstr ""
337
 
338
- #: ../responsive-lightbox.php:503
339
  msgid "Center on scroll"
340
  msgstr ""
341
 
342
- #: ../responsive-lightbox.php:505
343
  msgid "Overlay opacity"
344
  msgstr ""
345
 
346
- #: ../responsive-lightbox.php:506
347
  msgid "Overlay color"
348
  msgstr ""
349
 
350
- #: ../responsive-lightbox.php:507
351
  msgid "Title show"
352
  msgstr ""
353
 
354
- #: ../responsive-lightbox.php:508
355
  msgid "Title position"
356
  msgstr ""
357
 
358
- #: ../responsive-lightbox.php:509
359
  msgid "Transition (in/out)"
360
  msgstr ""
361
 
362
- #: ../responsive-lightbox.php:510
363
  msgid "Easings (in/out)"
364
  msgstr ""
365
 
366
- #: ../responsive-lightbox.php:511
367
  msgid "Speed (in/out)"
368
  msgstr ""
369
 
370
- #: ../responsive-lightbox.php:512
371
  msgid "Change speed"
372
  msgstr ""
373
 
374
- #: ../responsive-lightbox.php:513
375
  msgid "Change fade"
376
  msgstr ""
377
 
378
- #: ../responsive-lightbox.php:514
379
  msgid "Padding"
380
  msgstr ""
381
 
382
- #: ../responsive-lightbox.php:515
383
  msgid "Margin"
384
  msgstr ""
385
 
386
- #: ../responsive-lightbox.php:521
387
  msgid "Effect"
388
  msgstr ""
389
 
390
- #: ../responsive-lightbox.php:522
391
  msgid "Keyboard navigation"
392
  msgstr ""
393
 
394
- #: ../responsive-lightbox.php:523
395
  msgid "Error message"
396
  msgstr ""
397
 
398
- #: ../responsive-lightbox.php:541
399
- msgid "Select your preffered ligthbox effect script."
400
  msgstr ""
401
 
402
  #: ../responsive-lightbox.php:551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "Select to which rel selector lightbox effect will be applied to."
404
  msgstr ""
405
 
406
- #: ../responsive-lightbox.php:569
407
  msgid "Enable triggering lightbox on custom jquery events."
408
  msgstr ""
409
 
410
- #: ../responsive-lightbox.php:572
411
  msgid "Enter a space separated list of events."
412
  msgstr ""
413
 
414
- #: ../responsive-lightbox.php:591
 
 
 
 
415
  msgid "Add lightbox to WordPress image galleries by default."
416
  msgstr ""
417
 
418
- #: ../responsive-lightbox.php:609
419
  msgid "Add lightbox to YouTube and Vimeo video links by default."
420
  msgstr ""
421
 
422
- #: ../responsive-lightbox.php:627
423
  msgid "Add lightbox to WordPress image links by default."
424
  msgstr ""
425
 
426
- #: ../responsive-lightbox.php:645
427
  msgid "Display single post images as a gallery."
428
  msgstr ""
429
 
430
- #: ../responsive-lightbox.php:663
431
  msgid "Delete settings on plugin deactivation."
432
  msgstr ""
433
 
434
- #: ../responsive-lightbox.php:681
435
  msgid "Select a method of applying a lightbox effect."
436
  msgstr ""
437
 
438
- #: ../responsive-lightbox.php:699
439
  msgid ""
440
  "Disable if you don't want to top and bottom bars to be hidden after a period "
441
  "of time."
442
  msgstr ""
443
 
444
- #: ../responsive-lightbox.php:702
445
  msgid ""
446
  "Enter the time after which the top and bottom bars will be hidden (when "
447
  "hiding is enabled)."
448
  msgstr ""
449
 
450
- #: ../responsive-lightbox.php:713
451
  msgid "Enter the max video width in a lightbox."
452
  msgstr ""
453
 
454
- #: ../responsive-lightbox.php:731
455
  msgid ""
456
  "Enable this if you're having problems with navigation icons not visible on "
457
  "some devices."
458
  msgstr ""
459
 
460
- #: ../responsive-lightbox.php:749
461
  msgid "Select animation speed for lightbox effect."
462
  msgstr ""
463
 
464
- #: ../responsive-lightbox.php:767
465
  msgid "Display images as slideshow."
466
  msgstr ""
467
 
468
- #: ../responsive-lightbox.php:770
469
  msgid "Enter time (in miliseconds)."
470
  msgstr ""
471
 
472
- #: ../responsive-lightbox.php:789
473
  msgid "Automatically start slideshow."
474
  msgstr ""
475
 
476
- #: ../responsive-lightbox.php:802
477
  msgid "Value between 0 and 100, 100 for no opacity."
478
  msgstr ""
479
 
480
- #: ../responsive-lightbox.php:820
481
  msgid "Display image tiltle."
482
  msgstr ""
483
 
484
- #: ../responsive-lightbox.php:838
485
  msgid "Resize the photos bigger than viewport."
486
  msgstr ""
487
 
488
- #: ../responsive-lightbox.php:848 ../responsive-lightbox.php:858
 
 
 
 
489
  msgid "in pixels"
490
  msgstr ""
491
 
492
- #: ../responsive-lightbox.php:876
493
  msgid "Select theme for lightbox effect."
494
  msgstr ""
495
 
496
- #: ../responsive-lightbox.php:886
497
  msgid "Horizontal padding (in pixels)."
498
  msgstr ""
499
 
500
- #: ../responsive-lightbox.php:904
501
  msgid ""
502
  "Hides all the flash object on a page. Enable this if flash appears over "
503
  "prettyPhoto."
504
  msgstr ""
505
 
506
- #: ../responsive-lightbox.php:922
507
  msgid "Select flash window mode."
508
  msgstr ""
509
 
510
- #: ../responsive-lightbox.php:940
511
  msgid "Automatically start videos."
512
  msgstr ""
513
 
514
- #: ../responsive-lightbox.php:958
515
  msgid "If set to true, only the close button will close the window."
516
  msgstr ""
517
 
518
- #: ../responsive-lightbox.php:976
519
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
520
  msgstr ""
521
 
522
- #: ../responsive-lightbox.php:994
523
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
524
  msgstr ""
525
 
526
- #: ../responsive-lightbox.php:1012
527
  msgid "Set to false if you open forms inside prettyPhoto."
528
  msgstr ""
529
 
530
- #: ../responsive-lightbox.php:1030
531
  msgid "Display links to Facebook and Twitter."
532
  msgstr ""
533
 
534
- #: ../responsive-lightbox.php:1048
535
  msgid "The transition type."
536
  msgstr ""
537
 
538
- #: ../responsive-lightbox.php:1058
539
  msgid "Space between FancyBox wrapper and content."
540
  msgstr ""
541
 
542
- #: ../responsive-lightbox.php:1068
543
  msgid "Space between viewport and FancyBox wrapper."
544
  msgstr ""
545
 
546
- #: ../responsive-lightbox.php:1086
547
  msgid ""
548
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
549
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
550
  "to FALSE."
551
  msgstr ""
552
 
553
- #: ../responsive-lightbox.php:1104
554
  msgid "Toggle overlay."
555
  msgstr ""
556
 
557
- #: ../responsive-lightbox.php:1122
558
  msgid "Toggle close button."
559
  msgstr ""
560
 
561
- #: ../responsive-lightbox.php:1140
562
  msgid "Toggle if pressing Esc button closes FancyBox."
563
  msgstr ""
564
 
565
- #: ../responsive-lightbox.php:1158
566
  msgid "Toggle if clicking the overlay should close FancyBox."
567
  msgstr ""
568
 
569
- #: ../responsive-lightbox.php:1176
570
  msgid "Toggle if clicking the content should close FancyBox."
571
  msgstr ""
572
 
573
- #: ../responsive-lightbox.php:1194
574
  msgid ""
575
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
576
  msgstr ""
577
 
578
- #: ../responsive-lightbox.php:1212
579
  msgid "Toggle navigation arrows."
580
  msgstr ""
581
 
582
- #: ../responsive-lightbox.php:1230
583
  msgid "If true, FancyBox is scaled to fit in viewport."
584
  msgstr ""
585
 
586
- #: ../responsive-lightbox.php:1248
587
  msgid "Set the overflow CSS property to create or hide scrollbars."
588
  msgstr ""
589
 
590
- #: ../responsive-lightbox.php:1266
591
  msgid "When true, FancyBox is centered while scrolling page."
592
  msgstr ""
593
 
594
- #: ../responsive-lightbox.php:1284
595
  msgid "When true, transparency of content is changed for elastic transitions."
596
  msgstr ""
597
 
598
- #: ../responsive-lightbox.php:1297
599
  msgid "Opacity of the overlay."
600
  msgstr ""
601
 
602
- #: ../responsive-lightbox.php:1307
603
  msgid "Color of the overlay."
604
  msgstr ""
605
 
606
- #: ../responsive-lightbox.php:1325
607
  msgid "Toggle title."
608
  msgstr ""
609
 
610
- #: ../responsive-lightbox.php:1343
611
  msgid "The position of title."
612
  msgstr ""
613
 
614
- #: ../responsive-lightbox.php:1361
615
  msgid "Easing used for elastic animations."
616
  msgstr ""
617
 
618
- #: ../responsive-lightbox.php:1371
619
  msgid "Speed of the fade and elastic transitions, in milliseconds."
620
  msgstr ""
621
 
622
- #: ../responsive-lightbox.php:1381
623
  msgid "Speed of resizing when changing gallery items, in milliseconds."
624
  msgstr ""
625
 
626
- #: ../responsive-lightbox.php:1391
627
  msgid "Speed of the content fading while changing gallery items."
628
  msgstr ""
629
 
630
- #: ../responsive-lightbox.php:1401
631
  msgid "Width of the video."
632
  msgstr ""
633
 
634
- #: ../responsive-lightbox.php:1411
635
  msgid "Height of the video."
636
  msgstr ""
637
 
638
- #: ../responsive-lightbox.php:1429
639
  msgid "The effect to use when showing the lightbox."
640
  msgstr ""
641
 
642
- #: ../responsive-lightbox.php:1447
643
  msgid "Enable/Disable keyboard navigation (left/right/escape)."
644
  msgstr ""
645
 
646
- #: ../responsive-lightbox.php:1457
647
  msgid "Error message if the content cannot be loaded."
648
  msgstr ""
649
 
650
- #: ../responsive-lightbox.php:1661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
651
  msgid ""
652
  "Changes were not saved because there was attempt to save settings of "
653
  "inactive script. The site has been reloaded to the proper script settings."
654
  msgstr ""
655
 
656
- #: ../responsive-lightbox.php:1671
657
  msgid "Settings restored to defaults."
658
  msgstr ""
659
 
660
- #: ../responsive-lightbox.php:1679
661
  msgid "Settings of SwipeBox script were restored to defaults."
662
  msgstr ""
663
 
664
- #: ../responsive-lightbox.php:1685
665
  msgid "Settings of prettyPhoto script were restored to defaults."
666
  msgstr ""
667
 
668
- #: ../responsive-lightbox.php:1691
669
  msgid "Settings of FancyBox script were restored to defaults."
670
  msgstr ""
671
 
672
- #: ../responsive-lightbox.php:1697
673
  msgid "Settings of Nivo script were restored to defaults."
674
  msgstr ""
675
 
676
- #: ../responsive-lightbox.php:1701
677
  msgid ""
678
  "Changes were not set to defaults because there was attempt to reset settings "
679
  "of inactive script. The site has been reloaded to the proper script settings."
680
  msgstr ""
681
 
682
- #: ../responsive-lightbox.php:1715 ../responsive-lightbox.php:1716
683
- #: ../responsive-lightbox.php:1730 ../responsive-lightbox.php:1744
684
  msgid "Responsive Lightbox"
685
  msgstr ""
686
 
687
- #: ../responsive-lightbox.php:1746
688
  msgid "Need support?"
689
  msgstr ""
690
 
691
- #: ../responsive-lightbox.php:1747
692
  msgid ""
693
  "If you are having problems with this plugin, please talk about them in the"
694
  msgstr ""
695
 
696
- #: ../responsive-lightbox.php:1747
697
  msgid "Support forum"
698
  msgstr ""
699
 
700
- #: ../responsive-lightbox.php:1749
701
  msgid "Do you like this plugin?"
702
  msgstr ""
703
 
704
- #: ../responsive-lightbox.php:1750
705
  msgid "Rate it 5"
706
  msgstr ""
707
 
708
- #: ../responsive-lightbox.php:1750
709
  msgid "on WordPress.org"
710
  msgstr ""
711
 
712
- #: ../responsive-lightbox.php:1751
713
  msgid "Blog about it & link to the"
714
  msgstr ""
715
 
716
- #: ../responsive-lightbox.php:1751
717
  msgid "plugin page"
718
  msgstr ""
719
 
720
- #: ../responsive-lightbox.php:1752
721
  msgid "Check out our other"
722
  msgstr ""
723
 
724
- #: ../responsive-lightbox.php:1752
725
  msgid "WordPress plugins"
726
  msgstr ""
727
 
728
- #: ../responsive-lightbox.php:1772
729
  msgid "Reset to defaults"
730
  msgstr ""
731
 
732
- #: ../responsive-lightbox.php:1799
733
  msgid "Are you sure you want to reset these settings to defaults?"
734
  msgstr ""
735
 
736
- #: ../responsive-lightbox.php:1800
737
  msgid "Are you sure you want to reset scripts settings to defaults?"
738
  msgstr ""
739
 
740
- #: ../responsive-lightbox.php:2047
741
  msgid "Support"
742
  msgstr ""
743
 
744
- #: ../responsive-lightbox.php:2069
745
  msgid "Settings"
746
  msgstr ""
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"
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 ""
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Responsive Lightbox ===
2
  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.8.1
7
- Stable tag: 1.3.6
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -18,11 +18,12 @@ For more information, check out plugin page at [dFactory](http://www.dfactory.eu
18
 
19
  = Features include: =
20
 
21
- * Select from 4 responsive lightbox scripts (SwipeBox, prettyPhoto, FancyBox, Nivo Lightbox)
22
  * Automatically add lightbox to WordPress image galleries
23
  * Automatically add lightbox to WordPress image links
24
  * Automatically add lightbox to WordPress video links (YouTube, Vimeo)
25
  * Option to display single post images as a gallery
 
26
  * Enter a selector for lightbox
27
  * Highly customizable settings for each of the lightbox scripts
28
  * Multisite support
@@ -59,6 +60,11 @@ No questions yet.
59
 
60
  == Changelog ==
61
 
 
 
 
 
 
62
  = 1.3.6 =
63
  * New: Added rl_lightbox_args filter hook for embeddding different scripts based on any custom conditions (page, post, category, user id, etc.)
64
 
@@ -135,5 +141,7 @@ Initial release
135
 
136
  == Upgrade Notice ==
137
 
138
- = 1.3.6 =
139
- * New: Added rl_lightbox_args filter hook for embeddding different scripts based on any custom conditions (page, post, category, user id, etc.)
 
 
1
+ === Responsive Lightbox by dFactory ===
2
  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.8.1
7
+ Stable tag: 1.4.0
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
18
 
19
  = Features include: =
20
 
21
+ * Select from 5 responsive lightbox scripts (SwipeBox, prettyPhoto, FancyBox, Nivo Lightbox, Image Lightbox)
22
  * Automatically add lightbox to WordPress image galleries
23
  * Automatically add lightbox to WordPress image links
24
  * Automatically add lightbox to WordPress video links (YouTube, Vimeo)
25
  * Option to display single post images as a gallery
26
+ * Option to trigger lightbox on custom jquery events
27
  * Enter a selector for lightbox
28
  * Highly customizable settings for each of the lightbox scripts
29
  * Multisite support
60
 
61
  == Changelog ==
62
 
63
+ = 1.4.0 =
64
+ * New: Added Image Lightbox script
65
+ * New: Option to load scripts in header or footer
66
+ * Tweak: Changed Swipebox script to custom built - thanks to Arno Welzel
67
+
68
  = 1.3.6 =
69
  * New: Added rl_lightbox_args filter hook for embeddding different scripts based on any custom conditions (page, post, category, user id, etc.)
70
 
141
 
142
  == Upgrade Notice ==
143
 
144
+ = 1.4.0 =
145
+
146
+ * New: Added Image Lightbox script
147
+ * New: Option to load scripts in header or footer
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.3.6
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
@@ -28,61 +28,62 @@ class Responsive_Lightbox
28
  'settings' => array(
29
  'script' => 'swipebox',
30
  'selector' => 'lightbox',
31
- 'galleries' => TRUE,
32
- 'videos' => TRUE,
33
- 'image_links' => TRUE,
34
- 'images_as_gallery' => FALSE,
35
- 'deactivation_delete' => FALSE,
36
- 'enable_custom_events' => FALSE,
 
37
  'custom_events' => 'ajaxComplete'
38
  ),
39
  'configuration' => array(
40
  'prettyphoto' => array(
41
  'animation_speed' => 'normal',
42
- 'slideshow' => FALSE,
43
  'slideshow_delay' => 5000,
44
- 'slideshow_autoplay' => FALSE,
45
  'opacity' => 75,
46
- 'show_title' => TRUE,
47
- 'allow_resize' => TRUE,
48
  'allow_expand' => true,
49
  'width' => 1080,
50
  'height' => 720,
51
  'separator' => '/',
52
  'theme' => 'pp_default',
53
  'horizontal_padding' => 20,
54
- 'hide_flash' => FALSE,
55
  'wmode' => 'opaque',
56
- 'video_autoplay' => FALSE,
57
- 'modal' => FALSE,
58
- 'deeplinking' => FALSE,
59
- 'overlay_gallery' => TRUE,
60
- 'keyboard_shortcuts' => TRUE,
61
- 'social' => FALSE
62
  ),
63
  'swipebox' => array(
64
  'animation' => 'css',
65
- 'force_png_icons' => FALSE,
66
- 'hide_bars' => TRUE,
67
  'hide_bars_delay' => 5000,
68
  'video_max_width' => 1080
69
  ),
70
  'fancybox' => array(
71
- 'modal' => FALSE,
72
- 'show_overlay' => TRUE,
73
- 'show_close_button' => TRUE,
74
- 'enable_escape_button' => TRUE,
75
- 'hide_on_overlay_click' => TRUE,
76
- 'hide_on_content_click' => FALSE,
77
- 'cyclic' => FALSE,
78
- 'show_nav_arrows' => TRUE,
79
- 'auto_scale' => TRUE,
80
  'scrolling' => 'yes',
81
- 'center_on_scroll' => TRUE,
82
- 'opacity' => TRUE,
83
  'overlay_opacity' => 70,
84
  'overlay_color' => '#666',
85
- 'title_show' => TRUE,
86
  'title_position' => 'outside',
87
  'transitions' => 'fade',
88
  'easings' => 'swing',
@@ -96,15 +97,25 @@ class Responsive_Lightbox
96
  ),
97
  'nivo' => array(
98
  'effect' => 'fade',
99
- 'keyboard_nav' => TRUE,
100
  'error_message' => 'The requested content cannot be loaded. Please try again later.'
 
 
 
 
 
 
 
 
101
  )
102
  ),
103
- 'version' => '1.3.6'
104
  );
105
  private $scripts = array();
106
  private $options = array();
107
  private $tabs = array();
 
 
108
  private $gallery_no = 0;
109
 
110
 
@@ -221,7 +232,7 @@ class Responsive_Lightbox
221
  {
222
  if($this->options['settings']['images_as_gallery'] === TRUE)
223
  {
224
- $content = str_replace($link, preg_replace('/rel=(?:\'|")(.*?)(?:\'|")/', 'rel="'.$this->options['settings']['selector'].$rel_hash.'"', $link), $content);
225
  }
226
  else
227
  {
@@ -238,15 +249,15 @@ class Responsive_Lightbox
238
  $new_rels[] = $rel;
239
  }
240
 
241
- $content = str_replace($link, preg_replace('/rel=(?:\'|")(.*?)(?:\'|")/', 'rel="'.(!empty($new_rels) ? implode(' ', $new_rels).' ' : '').$this->options['settings']['selector'].'-'.$id.'"', $link), $content);
242
  }
243
  else
244
- $content = str_replace($link, preg_replace('/rel=(?:\'|")(.*?)(?:\'|")/', 'rel="'.($result[1] !== '' ? $result[1].' ' : '').$this->options['settings']['selector'].'-'.$id.'"', $link), $content);
245
  }
246
  }
247
  }
248
  else
249
- $content = str_replace($link, '<a'.$links[1][$id].'href="'.$links[2][$id].'.'.$links[3][$id].'"'.$links[4][$id].' rel="'.$this->options['settings']['selector'].($this->options['settings']['images_as_gallery'] === TRUE ? $rel_hash : '-'.$id).'">', $content);
250
  }
251
  }
252
 
@@ -336,6 +347,9 @@ class Responsive_Lightbox
336
  'slideDown' => __('slide down', 'responsive-lightbox'),
337
  'fall' => __('fall', 'responsive-lightbox')
338
  )
 
 
 
339
  )
340
  );
341
 
@@ -344,6 +358,11 @@ class Responsive_Lightbox
344
  'no' => __('Disable', 'responsive-lightbox')
345
  );
346
 
 
 
 
 
 
347
  $this->tabs = array(
348
  'general-settings' => array(
349
  'name' => __('General settings', 'responsive-lightbox'),
@@ -455,6 +474,7 @@ class Responsive_Lightbox
455
  add_settings_field('rl_image_links', __('Image links', 'responsive-lightbox'), array(&$this, 'rl_image_links'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
456
  add_settings_field('rl_images_as_gallery', __('Single images as gallery', 'responsive-lightbox'), array(&$this, 'rl_images_as_gallery'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
457
  add_settings_field('rl_enable_custom_events', __('Custom events', 'responsive-lightbox'), array(&$this, 'rl_enable_custom_events'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
 
458
  add_settings_field('rl_deactivation_delete', __('Deactivation', 'responsive-lightbox'), array(&$this, 'rl_deactivation_delete'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
459
 
460
  //configuration
@@ -524,6 +544,15 @@ class Responsive_Lightbox
524
  add_settings_field('rl_nv_keyboard_nav', __('Keyboard navigation', 'responsive-lightbox'), array(&$this, 'rl_nv_keyboard_nav'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
525
  add_settings_field('rl_nv_error_message', __('Error message', 'responsive-lightbox'), array(&$this, 'rl_nv_error_message'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
526
  }
 
 
 
 
 
 
 
 
 
527
  }
528
 
529
 
@@ -534,9 +563,11 @@ class Responsive_Lightbox
534
 
535
  foreach($this->scripts as $val => $trans)
536
  {
 
 
537
  echo '
538
- <input id="rl-script-'.$val.'" type="radio" name="responsive_lightbox_settings[script]" value="'.esc_attr($val).'" '.checked($val, $this->options['settings']['script'], FALSE).' />
539
- <label for="rl-script-'.$val.'">'.$trans['name'].'</label>';
540
  }
541
 
542
  echo '
@@ -562,14 +593,16 @@ class Responsive_Lightbox
562
 
563
  foreach($this->choices as $val => $trans)
564
  {
 
 
565
  echo '
566
- <input id="rl-enable-custom-events-'.$val.'" type="radio" name="responsive_lightbox_settings[enable_custom_events]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? TRUE : FALSE), $this->options['settings']['enable_custom_events'], FALSE).' />
567
- <label for="rl-enable-custom-events-'.$val.'">'.$trans.'</label>';
568
  }
569
 
570
  echo '
571
  <p class="description">'.__('Enable triggering lightbox on custom jquery events.', 'responsive-lightbox').'</p>
572
- <div id="rl_custom_events"'.($this->options['settings']['enable_custom_events'] === FALSE ? ' style="display: none;"' : '').'>
573
  <input type="text" name="responsive_lightbox_settings[custom_events]" value="'.esc_attr($this->options['settings']['custom_events']).'" />
574
  <p class="description">'.__('Enter a space separated list of events.', 'responsive-lightbox').'</p>
575
  </div>
@@ -577,6 +610,26 @@ class Responsive_Lightbox
577
  }
578
 
579
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
580
  public function rl_galleries()
581
  {
582
  echo '
@@ -700,7 +753,7 @@ class Responsive_Lightbox
700
  echo '
701
  <p class="description">'.__('Disable if you don\'t want to top and bottom bars to be hidden after a period of time.', 'responsive-lightbox').'</p>
702
  <div id="rl_sb_hide_bars_delay"'.($this->options['configuration']['swipebox']['hide_bars'] === FALSE ? ' style="display: none;"' : '').'>
703
- <input type="text" name="responsive_lightbox_configuration[swipebox][hide_bars_delay]" value="'.esc_attr($this->options['configuration']['swipebox']['hide_bars_delay']).'" />
704
  <p class="description">'.__('Enter the time after which the top and bottom bars will be hidden (when hiding is enabled).', 'responsive-lightbox').'</p>
705
  </div>
706
  </div>';
@@ -711,7 +764,7 @@ class Responsive_Lightbox
711
  {
712
  echo '
713
  <div id="rl_sb_video_max_width">
714
- <input type="text" name="responsive_lightbox_configuration[swipebox][video_max_width]" value="'.esc_attr($this->options['configuration']['swipebox']['video_max_width']).'" />
715
  <p class="description">'.__('Enter the max video width in a lightbox.', 'responsive-lightbox').'</p>
716
  </div>';
717
  }
@@ -768,7 +821,7 @@ class Responsive_Lightbox
768
  echo '
769
  <p class="description">'.__('Display images as slideshow.', 'responsive-lightbox').'</p>
770
  <div id="rl_pp_slideshow_delay"'.($this->options['configuration']['prettyphoto']['slideshow'] === FALSE ? ' style="display: none;"' : '').'>
771
- <input type="text" name="responsive_lightbox_configuration[prettyphoto][slideshow_delay]" value="'.esc_attr($this->options['configuration']['prettyphoto']['slideshow_delay']).'" />
772
  <p class="description">'.__('Enter time (in miliseconds).', 'responsive-lightbox').'</p>
773
  </div>
774
  </div>';
@@ -864,7 +917,7 @@ class Responsive_Lightbox
864
  {
865
  echo '
866
  <div id="rl_pp_width">
867
- <input type="text" name="responsive_lightbox_configuration[prettyphoto][width]" value="'.esc_attr($this->options['configuration']['prettyphoto']['width']).'" />
868
  <p class="description">'.__('in pixels', 'responsive-lightbox').'</p>
869
  </div>';
870
  }
@@ -874,7 +927,7 @@ class Responsive_Lightbox
874
  {
875
  echo '
876
  <div id="rl_pp_height">
877
- <input type="text" name="responsive_lightbox_configuration[prettyphoto][height]" value="'.esc_attr($this->options['configuration']['prettyphoto']['height']).'" />
878
  <p class="description">'.__('in pixels', 'responsive-lightbox').'</p>
879
  </div>';
880
  }
@@ -902,7 +955,7 @@ class Responsive_Lightbox
902
  {
903
  echo '
904
  <div id="rl_pp_horizontal_padding">
905
- <input type="text" name="responsive_lightbox_configuration[prettyphoto][horizontal_padding]" value="'.esc_attr($this->options['configuration']['prettyphoto']['horizontal_padding']).'" />
906
  <p class="description">'.__('Horizontal padding (in pixels).', 'responsive-lightbox').'</p>
907
  </div>';
908
  }
@@ -1074,7 +1127,7 @@ class Responsive_Lightbox
1074
  {
1075
  echo '
1076
  <div id="rl_fb_padding">
1077
- <input type="text" name="responsive_lightbox_configuration[fancybox][padding]" value="'.esc_attr($this->options['configuration']['fancybox']['padding']).'" />
1078
  <p class="description">'.__('Space between FancyBox wrapper and content.', 'responsive-lightbox').'</p>
1079
  </div>';
1080
  }
@@ -1084,7 +1137,7 @@ class Responsive_Lightbox
1084
  {
1085
  echo '
1086
  <div id="rl_fb_margin">
1087
- <input type="text" name="responsive_lightbox_configuration[fancybox][margin]" value="'.esc_attr($this->options['configuration']['fancybox']['margin']).'" />
1088
  <p class="description">'.__('Space between viewport and FancyBox wrapper.', 'responsive-lightbox').'</p>
1089
  </div>';
1090
  }
@@ -1387,7 +1440,7 @@ class Responsive_Lightbox
1387
  {
1388
  echo '
1389
  <div id="rl_fb_speeds">
1390
- <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['speeds']).'" name="responsive_lightbox_configuration[fancybox][speeds]" />
1391
  <p class="description">'.__('Speed of the fade and elastic transitions, in milliseconds.', 'responsive-lightbox').'</p>
1392
  </div>';
1393
  }
@@ -1397,7 +1450,7 @@ class Responsive_Lightbox
1397
  {
1398
  echo '
1399
  <div id="rl_fb_change_speed">
1400
- <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['change_speed']).'" name="responsive_lightbox_configuration[fancybox][change_speed]" />
1401
  <p class="description">'.__('Speed of resizing when changing gallery items, in milliseconds.', 'responsive-lightbox').'</p>
1402
  </div>';
1403
  }
@@ -1407,7 +1460,7 @@ class Responsive_Lightbox
1407
  {
1408
  echo '
1409
  <div id="rl_fb_change_fade">
1410
- <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['change_fade']).'" name="responsive_lightbox_configuration[fancybox][change_fade]" />
1411
  <p class="description">'.__('Speed of the content fading while changing gallery items.', 'responsive-lightbox').'</p>
1412
  </div>';
1413
  }
@@ -1417,7 +1470,7 @@ class Responsive_Lightbox
1417
  {
1418
  echo '
1419
  <div id="rl_fb_video_width">
1420
- <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['video_width']).'" name="responsive_lightbox_configuration[fancybox][video_width]" />
1421
  <p class="description">'.__('Width of the video.', 'responsive-lightbox').'</p>
1422
  </div>';
1423
  }
@@ -1427,7 +1480,7 @@ class Responsive_Lightbox
1427
  {
1428
  echo '
1429
  <div id="rl_fb_video_height">
1430
- <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['video_height']).'" name="responsive_lightbox_configuration[fancybox][video_height]" />
1431
  <p class="description">'.__('Height of the video.', 'responsive-lightbox').'</p>
1432
  </div>';
1433
  }
@@ -1479,6 +1532,106 @@ class Responsive_Lightbox
1479
  }
1480
 
1481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1482
  /**
1483
  * Validates settings
1484
  */
@@ -1486,27 +1639,30 @@ class Responsive_Lightbox
1486
  {
1487
  if(isset($_POST['save_rl_settings']))
1488
  {
1489
- //script
1490
- $input['script'] = (isset($input['script']) && in_array($input['script'], array_keys($this->scripts)) ? $input['script'] : $this->defaults['settings']['script']);
1491
 
1492
- //selector
1493
  $input['selector'] = sanitize_text_field(isset($input['selector']) && $input['selector'] !== '' ? $input['selector'] : $this->defaults['settings']['selector']);
1494
 
1495
- //enable custom events
1496
- $input['enable_custom_events'] = (isset($input['enable_custom_events']) && in_array($input['enable_custom_events'], array_keys($this->choices)) ? ($input['enable_custom_events'] === 'yes' ? TRUE : FALSE) : $this->defaults['settings']['enable_custom_events']);
 
 
 
1497
 
1498
- //custom events
1499
- if($input['enable_custom_events'] === TRUE)
1500
  {
1501
  $input['custom_events'] = sanitize_text_field(isset($input['custom_events']) && $input['custom_events'] !== '' ? $input['custom_events'] : $this->defaults['settings']['custom_events']);
1502
  }
1503
 
1504
- //checkboxes
1505
- $input['galleries'] = (isset($input['galleries']) && in_array($input['galleries'], array_keys($this->choices)) ? ($input['galleries'] === 'yes' ? TRUE : FALSE) : $this->defaults['settings']['galleries']);
1506
- $input['videos'] = (isset($input['videos']) && in_array($input['videos'], array_keys($this->choices)) ? ($input['videos'] === 'yes' ? TRUE : FALSE) : $this->defaults['settings']['videos']);
1507
- $input['image_links'] = (isset($input['image_links']) && in_array($input['image_links'], array_keys($this->choices)) ? ($input['image_links'] === 'yes' ? TRUE : FALSE) : $this->defaults['settings']['image_links']);
1508
- $input['images_as_gallery'] = (isset($input['images_as_gallery']) && in_array($input['images_as_gallery'], array_keys($this->choices)) ? ($input['images_as_gallery'] === 'yes' ? TRUE : FALSE) : $this->defaults['settings']['images_as_gallery']);
1509
- $input['deactivation_delete'] = (isset($input['deactivation_delete']) && in_array($input['deactivation_delete'], array_keys($this->choices)) ? ($input['deactivation_delete'] === 'yes' ? TRUE : FALSE) : $this->defaults['settings']['deactivation_delete']);
1510
  }
1511
  elseif(isset($_POST['save_rl_configuration']))
1512
  {
@@ -1676,6 +1832,26 @@ class Responsive_Lightbox
1676
  //error message
1677
  $input['nivo']['error_message'] = sanitize_text_field($input['nivo']['error_message']);
1678
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1679
  else
1680
  {
1681
  //clear input to not change settings
@@ -1859,7 +2035,9 @@ class Responsive_Lightbox
1859
  wp_register_script(
1860
  'responsive-lightbox-prettyphoto',
1861
  plugins_url('assets/prettyphoto/js/jquery.prettyPhoto.js', __FILE__),
1862
- array('jquery')
 
 
1863
  );
1864
 
1865
  wp_enqueue_script('responsive-lightbox-prettyphoto');
@@ -1902,8 +2080,10 @@ class Responsive_Lightbox
1902
  {
1903
  wp_register_script(
1904
  'responsive-lightbox-swipebox',
1905
- plugins_url('assets/swipebox/source/jquery.swipebox.min.js', __FILE__),
1906
- array('jquery')
 
 
1907
  );
1908
 
1909
  wp_enqueue_script('responsive-lightbox-swipebox');
@@ -1938,7 +2118,9 @@ class Responsive_Lightbox
1938
  wp_register_script(
1939
  'responsive-lightbox-fancybox',
1940
  plugins_url('assets/fancybox/jquery.fancybox-1.3.4.js', __FILE__),
1941
- array('jquery')
 
 
1942
  );
1943
 
1944
  wp_enqueue_script('responsive-lightbox-fancybox');
@@ -1986,7 +2168,9 @@ class Responsive_Lightbox
1986
  wp_register_script(
1987
  'responsive-lightbox-nivo',
1988
  plugins_url('assets/nivo/nivo-lightbox.js', __FILE__),
1989
- array('jquery')
 
 
1990
  );
1991
 
1992
  wp_enqueue_script('responsive-lightbox-nivo');
@@ -2014,11 +2198,44 @@ class Responsive_Lightbox
2014
  )
2015
  );
2016
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2017
 
2018
  wp_register_script(
2019
  'responsive-lightbox-front',
2020
  plugins_url('js/front.js', __FILE__),
2021
- array('jquery')
 
 
2022
  );
2023
 
2024
  wp_enqueue_script('responsive-lightbox-front');
@@ -2064,7 +2281,7 @@ class Responsive_Lightbox
2064
 
2065
  $plugin = plugin_basename(__FILE__);
2066
 
2067
- if($file == $plugin)
2068
  {
2069
  return array_merge(
2070
  $links,
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.0
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
28
  'settings' => array(
29
  'script' => 'swipebox',
30
  'selector' => 'lightbox',
31
+ 'galleries' => true,
32
+ 'videos' => true,
33
+ 'image_links' => true,
34
+ 'images_as_gallery' => false,
35
+ 'deactivation_delete' => false,
36
+ 'loading_place' => 'header',
37
+ 'enable_custom_events' => false,
38
  'custom_events' => 'ajaxComplete'
39
  ),
40
  'configuration' => array(
41
  'prettyphoto' => array(
42
  'animation_speed' => 'normal',
43
+ 'slideshow' => false,
44
  'slideshow_delay' => 5000,
45
+ 'slideshow_autoplay' => false,
46
  'opacity' => 75,
47
+ 'show_title' => true,
48
+ 'allow_resize' => true,
49
  'allow_expand' => true,
50
  'width' => 1080,
51
  'height' => 720,
52
  'separator' => '/',
53
  'theme' => 'pp_default',
54
  'horizontal_padding' => 20,
55
+ 'hide_flash' => false,
56
  'wmode' => 'opaque',
57
+ 'video_autoplay' => false,
58
+ 'modal' => false,
59
+ 'deeplinking' => false,
60
+ 'overlay_gallery' => true,
61
+ 'keyboard_shortcuts' => true,
62
+ 'social' => false
63
  ),
64
  'swipebox' => array(
65
  'animation' => 'css',
66
+ 'force_png_icons' => false,
67
+ 'hide_bars' => true,
68
  'hide_bars_delay' => 5000,
69
  'video_max_width' => 1080
70
  ),
71
  'fancybox' => array(
72
+ 'modal' => false,
73
+ 'show_overlay' => true,
74
+ 'show_close_button' => true,
75
+ 'enable_escape_button' => true,
76
+ 'hide_on_overlay_click' => true,
77
+ 'hide_on_content_click' => false,
78
+ 'cyclic' => false,
79
+ 'show_nav_arrows' => true,
80
+ 'auto_scale' => true,
81
  'scrolling' => 'yes',
82
+ 'center_on_scroll' => true,
83
+ 'opacity' => true,
84
  'overlay_opacity' => 70,
85
  'overlay_color' => '#666',
86
+ 'title_show' => true,
87
  'title_position' => 'outside',
88
  'transitions' => 'fade',
89
  'easings' => 'swing',
97
  ),
98
  'nivo' => array(
99
  'effect' => 'fade',
100
+ 'keyboard_nav' => true,
101
  'error_message' => 'The requested content cannot be loaded. Please try again later.'
102
+ ),
103
+ 'imagelightbox' => array(
104
+ 'animation_speed' => 250,
105
+ 'preload_next' => true,
106
+ 'enable_keyboard' => true,
107
+ 'quit_on_end' => false,
108
+ 'quit_on_image_click' => false,
109
+ 'quit_on_document_click' => true
110
  )
111
  ),
112
+ 'version' => '1.4.0'
113
  );
114
  private $scripts = array();
115
  private $options = array();
116
  private $tabs = array();
117
+ private $choices = array();
118
+ private $loading_places = array();
119
  private $gallery_no = 0;
120
 
121
 
232
  {
233
  if($this->options['settings']['images_as_gallery'] === TRUE)
234
  {
235
+ $content = str_replace($link, preg_replace('/rel=(?:\'|")(.*?)(?:\'|")/', 'rel="'.$this->options['settings']['selector'].$rel_hash.'"'.($this->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="'.$id.'"' : ''), $link), $content);
236
  }
237
  else
238
  {
249
  $new_rels[] = $rel;
250
  }
251
 
252
+ $content = str_replace($link, preg_replace('/rel=(?:\'|")(.*?)(?:\'|")/', 'rel="'.(!empty($new_rels) ? implode(' ', $new_rels).' ' : '').$this->options['settings']['selector'].'-'.$id.'"'.($this->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="'.$id.'"' : ''), $link), $content);
253
  }
254
  else
255
+ $content = str_replace($link, preg_replace('/rel=(?:\'|")(.*?)(?:\'|")/', 'rel="'.($result[1] !== '' ? $result[1].' ' : '').$this->options['settings']['selector'].'-'.$id.'"'.($this->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="'.$id.'"' : ''), $link), $content);
256
  }
257
  }
258
  }
259
  else
260
+ $content = str_replace($link, '<a'.$links[1][$id].'href="'.$links[2][$id].'.'.$links[3][$id].'"'.$links[4][$id].' rel="'.$this->options['settings']['selector'].($this->options['settings']['images_as_gallery'] === TRUE ? $rel_hash : '-'.$id).'"'.($this->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="'.$id.'"' : '').'>', $content);
261
  }
262
  }
263
 
347
  'slideDown' => __('slide down', 'responsive-lightbox'),
348
  'fall' => __('fall', 'responsive-lightbox')
349
  )
350
+ ),
351
+ 'imagelightbox' => array(
352
+ 'name' => __('Image Lightbox', 'responsive-lightbox')
353
  )
354
  );
355
 
358
  'no' => __('Disable', 'responsive-lightbox')
359
  );
360
 
361
+ $this->loading_places = array(
362
+ 'header' => __('Header', 'responsive-lightbox'),
363
+ 'footer' => __('Footer', 'responsive-lightbox')
364
+ );
365
+
366
  $this->tabs = array(
367
  'general-settings' => array(
368
  'name' => __('General settings', 'responsive-lightbox'),
474
  add_settings_field('rl_image_links', __('Image links', 'responsive-lightbox'), array(&$this, 'rl_image_links'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
475
  add_settings_field('rl_images_as_gallery', __('Single images as gallery', 'responsive-lightbox'), array(&$this, 'rl_images_as_gallery'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
476
  add_settings_field('rl_enable_custom_events', __('Custom events', 'responsive-lightbox'), array(&$this, 'rl_enable_custom_events'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
477
+ add_settings_field('rl_loading_place', __('Loading place', 'responsive-lightbox'), array(&$this, 'rl_loading_place'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
478
  add_settings_field('rl_deactivation_delete', __('Deactivation', 'responsive-lightbox'), array(&$this, 'rl_deactivation_delete'), 'responsive_lightbox_settings', 'responsive_lightbox_settings');
479
 
480
  //configuration
544
  add_settings_field('rl_nv_keyboard_nav', __('Keyboard navigation', 'responsive-lightbox'), array(&$this, 'rl_nv_keyboard_nav'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
545
  add_settings_field('rl_nv_error_message', __('Error message', 'responsive-lightbox'), array(&$this, 'rl_nv_error_message'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
546
  }
547
+ elseif($this->options['settings']['script'] === 'imagelightbox')
548
+ {
549
+ add_settings_field('rl_il_animation_speed', __('Animation speed', 'responsive-lightbox'), array(&$this, 'rl_il_animation_speed'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
550
+ add_settings_field('rl_il_preload_next', __('Preload next image', 'responsive-lightbox'), array(&$this, 'rl_il_preload_next'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
551
+ add_settings_field('rl_il_enable_keyboard', __('Enable keyboard keys', 'responsive-lightbox'), array(&$this, 'rl_il_enable_keyboard'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
552
+ add_settings_field('rl_il_quit_on_end', __('Quit after last image', 'responsive-lightbox'), array(&$this, 'rl_il_quit_on_end'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
553
+ add_settings_field('rl_il_quit_on_image_click', __('Quit when image is clicked', 'responsive-lightbox'), array(&$this, 'rl_il_quit_on_image_click'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
554
+ add_settings_field('rl_il_quit_on_document_click', __('Quit when anything but image is clicked', 'responsive-lightbox'), array(&$this, 'rl_il_quit_on_document_click'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
555
+ }
556
  }
557
 
558
 
563
 
564
  foreach($this->scripts as $val => $trans)
565
  {
566
+ $val = esc_attr($val);
567
+
568
  echo '
569
+ <input id="rl-script-'.$val.'" type="radio" name="responsive_lightbox_settings[script]" value="'.$val.'" '.checked($val, $this->options['settings']['script'], false).' />
570
+ <label for="rl-script-'.$val.'">'.esc_html($trans['name']).'</label>';
571
  }
572
 
573
  echo '
593
 
594
  foreach($this->choices as $val => $trans)
595
  {
596
+ $val = esc_attr($val);
597
+
598
  echo '
599
+ <input id="rl-enable-custom-events-'.$val.'" type="radio" name="responsive_lightbox_settings[enable_custom_events]" value="'.$val.'" '.checked(($val === 'yes' ? true : false), $this->options['settings']['enable_custom_events'], false).' />
600
+ <label for="rl-enable-custom-events-'.$val.'">'.esc_html($trans).'</label>';
601
  }
602
 
603
  echo '
604
  <p class="description">'.__('Enable triggering lightbox on custom jquery events.', 'responsive-lightbox').'</p>
605
+ <div id="rl_custom_events"'.($this->options['settings']['enable_custom_events'] === false ? ' style="display: none;"' : '').'>
606
  <input type="text" name="responsive_lightbox_settings[custom_events]" value="'.esc_attr($this->options['settings']['custom_events']).'" />
607
  <p class="description">'.__('Enter a space separated list of events.', 'responsive-lightbox').'</p>
608
  </div>
610
  }
611
 
612
 
613
+ public function rl_loading_place()
614
+ {
615
+ echo '
616
+ <div id="rl_loading_place" class="wplikebtns">';
617
+
618
+ foreach($this->loading_places as $val => $trans)
619
+ {
620
+ $val = esc_attr($val);
621
+
622
+ echo '
623
+ <input id="rl-loading-place-'.$val.'" type="radio" name="responsive_lightbox_settings[loading_place]" value="'.$val.'" '.checked($val, $this->options['settings']['loading_place'], false).' />
624
+ <label for="rl-loading-place-'.$val.'">'.esc_html($trans).'</label>';
625
+ }
626
+
627
+ echo '
628
+ <p class="description">'.__('Select where all the lightbox scripts should be placed.', 'responsive-lightbox').'</p>
629
+ </div>';
630
+ }
631
+
632
+
633
  public function rl_galleries()
634
  {
635
  echo '
753
  echo '
754
  <p class="description">'.__('Disable if you don\'t want to top and bottom bars to be hidden after a period of time.', 'responsive-lightbox').'</p>
755
  <div id="rl_sb_hide_bars_delay"'.($this->options['configuration']['swipebox']['hide_bars'] === FALSE ? ' style="display: none;"' : '').'>
756
+ <input type="text" name="responsive_lightbox_configuration[swipebox][hide_bars_delay]" value="'.esc_attr($this->options['configuration']['swipebox']['hide_bars_delay']).'" /> <span>ms</span>
757
  <p class="description">'.__('Enter the time after which the top and bottom bars will be hidden (when hiding is enabled).', 'responsive-lightbox').'</p>
758
  </div>
759
  </div>';
764
  {
765
  echo '
766
  <div id="rl_sb_video_max_width">
767
+ <input type="text" name="responsive_lightbox_configuration[swipebox][video_max_width]" value="'.esc_attr($this->options['configuration']['swipebox']['video_max_width']).'" /> <span>px</span>
768
  <p class="description">'.__('Enter the max video width in a lightbox.', 'responsive-lightbox').'</p>
769
  </div>';
770
  }
821
  echo '
822
  <p class="description">'.__('Display images as slideshow.', 'responsive-lightbox').'</p>
823
  <div id="rl_pp_slideshow_delay"'.($this->options['configuration']['prettyphoto']['slideshow'] === FALSE ? ' style="display: none;"' : '').'>
824
+ <input type="text" name="responsive_lightbox_configuration[prettyphoto][slideshow_delay]" value="'.esc_attr($this->options['configuration']['prettyphoto']['slideshow_delay']).'" /> <span>ms</span>
825
  <p class="description">'.__('Enter time (in miliseconds).', 'responsive-lightbox').'</p>
826
  </div>
827
  </div>';
917
  {
918
  echo '
919
  <div id="rl_pp_width">
920
+ <input type="text" name="responsive_lightbox_configuration[prettyphoto][width]" value="'.esc_attr($this->options['configuration']['prettyphoto']['width']).'" /> <span>px</span>
921
  <p class="description">'.__('in pixels', 'responsive-lightbox').'</p>
922
  </div>';
923
  }
927
  {
928
  echo '
929
  <div id="rl_pp_height">
930
+ <input type="text" name="responsive_lightbox_configuration[prettyphoto][height]" value="'.esc_attr($this->options['configuration']['prettyphoto']['height']).'" /> <span>px</span>
931
  <p class="description">'.__('in pixels', 'responsive-lightbox').'</p>
932
  </div>';
933
  }
955
  {
956
  echo '
957
  <div id="rl_pp_horizontal_padding">
958
+ <input type="text" name="responsive_lightbox_configuration[prettyphoto][horizontal_padding]" value="'.esc_attr($this->options['configuration']['prettyphoto']['horizontal_padding']).'" /> <span>px</span>
959
  <p class="description">'.__('Horizontal padding (in pixels).', 'responsive-lightbox').'</p>
960
  </div>';
961
  }
1127
  {
1128
  echo '
1129
  <div id="rl_fb_padding">
1130
+ <input type="text" name="responsive_lightbox_configuration[fancybox][padding]" value="'.esc_attr($this->options['configuration']['fancybox']['padding']).'" /> <span>px</span>
1131
  <p class="description">'.__('Space between FancyBox wrapper and content.', 'responsive-lightbox').'</p>
1132
  </div>';
1133
  }
1137
  {
1138
  echo '
1139
  <div id="rl_fb_margin">
1140
+ <input type="text" name="responsive_lightbox_configuration[fancybox][margin]" value="'.esc_attr($this->options['configuration']['fancybox']['margin']).'" /> <span>px</span>
1141
  <p class="description">'.__('Space between viewport and FancyBox wrapper.', 'responsive-lightbox').'</p>
1142
  </div>';
1143
  }
1440
  {
1441
  echo '
1442
  <div id="rl_fb_speeds">
1443
+ <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['speeds']).'" name="responsive_lightbox_configuration[fancybox][speeds]" /> <span>ms</span>
1444
  <p class="description">'.__('Speed of the fade and elastic transitions, in milliseconds.', 'responsive-lightbox').'</p>
1445
  </div>';
1446
  }
1450
  {
1451
  echo '
1452
  <div id="rl_fb_change_speed">
1453
+ <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['change_speed']).'" name="responsive_lightbox_configuration[fancybox][change_speed]" /> <span>ms</span>
1454
  <p class="description">'.__('Speed of resizing when changing gallery items, in milliseconds.', 'responsive-lightbox').'</p>
1455
  </div>';
1456
  }
1460
  {
1461
  echo '
1462
  <div id="rl_fb_change_fade">
1463
+ <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['change_fade']).'" name="responsive_lightbox_configuration[fancybox][change_fade]" /> <span>ms</span>
1464
  <p class="description">'.__('Speed of the content fading while changing gallery items.', 'responsive-lightbox').'</p>
1465
  </div>';
1466
  }
1470
  {
1471
  echo '
1472
  <div id="rl_fb_video_width">
1473
+ <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['video_width']).'" name="responsive_lightbox_configuration[fancybox][video_width]" /> <span>px</span>
1474
  <p class="description">'.__('Width of the video.', 'responsive-lightbox').'</p>
1475
  </div>';
1476
  }
1480
  {
1481
  echo '
1482
  <div id="rl_fb_video_height">
1483
+ <input type="text" value="'.esc_attr($this->options['configuration']['fancybox']['video_height']).'" name="responsive_lightbox_configuration[fancybox][video_height]" /> <span>px</span>
1484
  <p class="description">'.__('Height of the video.', 'responsive-lightbox').'</p>
1485
  </div>';
1486
  }
1532
  }
1533
 
1534
 
1535
+ public function rl_il_animation_speed()
1536
+ {
1537
+ echo '
1538
+ <div id="rl_il_animation_speed">
1539
+ <input type="text" value="'.esc_attr($this->options['configuration']['imagelightbox']['animation_speed']).'" name="responsive_lightbox_configuration[imagelightbox][animation_speed]" /> <span>ms</span>
1540
+ <p class="description">'.__('Animation speed.', 'responsive-lightbox').'</p>
1541
+ </div>';
1542
+ }
1543
+
1544
+
1545
+ public function rl_il_preload_next()
1546
+ {
1547
+ echo '
1548
+ <div id="rl_il_preload_next" class="wplikebtns">';
1549
+
1550
+ foreach($this->choices as $val => $trans)
1551
+ {
1552
+ echo '
1553
+ <input id="rl-il-preload-next-'.$val.'" type="radio" name="responsive_lightbox_configuration[imagelightbox][preload_next]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? true : false), $this->options['configuration']['imagelightbox']['preload_next'], false).' />
1554
+ <label for="rl-il-preload-next-'.$val.'">'.$trans.'</label>';
1555
+ }
1556
+
1557
+ echo '
1558
+ <p class="description">'.__('Silently preload the next image.', 'responsive-lightbox').'</p>
1559
+ </div>';
1560
+ }
1561
+
1562
+
1563
+ public function rl_il_enable_keyboard()
1564
+ {
1565
+ echo '
1566
+ <div id="rl_il_enable_keyboard" class="wplikebtns">';
1567
+
1568
+ foreach($this->choices as $val => $trans)
1569
+ {
1570
+ echo '
1571
+ <input id="rl-il-enable-keyboard-'.$val.'" type="radio" name="responsive_lightbox_configuration[imagelightbox][enable_keyboard]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? true : false), $this->options['configuration']['imagelightbox']['enable_keyboard'], false).' />
1572
+ <label for="rl-il-enable-keyboard-'.$val.'">'.$trans.'</label>';
1573
+ }
1574
+
1575
+ echo '
1576
+ <p class="description">'.__('Enable keyboard shortcuts (arrows Left/Right and Esc).', 'responsive-lightbox').'</p>
1577
+ </div>';
1578
+ }
1579
+
1580
+
1581
+ public function rl_il_quit_on_end()
1582
+ {
1583
+ echo '
1584
+ <div id="rl_il_quit_on_end" class="wplikebtns">';
1585
+
1586
+ foreach($this->choices as $val => $trans)
1587
+ {
1588
+ echo '
1589
+ <input id="rl-il-quit-on-end-'.$val.'" type="radio" name="responsive_lightbox_configuration[imagelightbox][quit_on_end]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? true : false), $this->options['configuration']['imagelightbox']['quit_on_end'], false).' />
1590
+ <label for="rl-il-quit-on-end-'.$val.'">'.$trans.'</label>';
1591
+ }
1592
+
1593
+ echo '
1594
+ <p class="description">'.__('Quit after viewing the last image.', 'responsive-lightbox').'</p>
1595
+ </div>';
1596
+ }
1597
+
1598
+
1599
+ public function rl_il_quit_on_image_click()
1600
+ {
1601
+ echo '
1602
+ <div id="rl_il_quit_on_image_click" class="wplikebtns">';
1603
+
1604
+ foreach($this->choices as $val => $trans)
1605
+ {
1606
+ echo '
1607
+ <input id="rl-il-quit-on-image-click-'.$val.'" type="radio" name="responsive_lightbox_configuration[imagelightbox][quit_on_image_click]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? true : false), $this->options['configuration']['imagelightbox']['quit_on_image_click'], false).' />
1608
+ <label for="rl-il-quit-on-image-click-'.$val.'">'.$trans.'</label>';
1609
+ }
1610
+
1611
+ echo '
1612
+ <p class="description">'.__('Quit when the viewed image is clicked.', 'responsive-lightbox').'</p>
1613
+ </div>';
1614
+ }
1615
+
1616
+
1617
+ public function rl_il_quit_on_document_click()
1618
+ {
1619
+ echo '
1620
+ <div id="rl_il_quit_on_document_click" class="wplikebtns">';
1621
+
1622
+ foreach($this->choices as $val => $trans)
1623
+ {
1624
+ echo '
1625
+ <input id="rl-il-quit-on-document-click-'.$val.'" type="radio" name="responsive_lightbox_configuration[imagelightbox][quit_on_document_click]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? true : false), $this->options['configuration']['imagelightbox']['quit_on_document_click'], false).' />
1626
+ <label for="rl-il-quit-on-document-click-'.$val.'">'.$trans.'</label>';
1627
+ }
1628
+
1629
+ echo '
1630
+ <p class="description">'.__('Quit when anything but the viewed image is clicked.', 'responsive-lightbox').'</p>
1631
+ </div>';
1632
+ }
1633
+
1634
+
1635
  /**
1636
  * Validates settings
1637
  */
1639
  {
1640
  if(isset($_POST['save_rl_settings']))
1641
  {
1642
+ // script
1643
+ $input['script'] = (isset($input['script'], $this->scripts[$input['script']]) ? $input['script'] : $this->defaults['settings']['script']);
1644
 
1645
+ // selector
1646
  $input['selector'] = sanitize_text_field(isset($input['selector']) && $input['selector'] !== '' ? $input['selector'] : $this->defaults['settings']['selector']);
1647
 
1648
+ // loading place
1649
+ $input['loading_place'] = (isset($input['loading_place'], $this->loading_places[$input['loading_place']]) ? $input['loading_place'] : $this->defaults['settings']['loading_place']);
1650
+
1651
+ // enable custom events
1652
+ $input['enable_custom_events'] = (isset($input['enable_custom_events'], $this->choices[$input['enable_custom_events']]) ? ($input['enable_custom_events'] === 'yes' ? true : false) : $this->defaults['settings']['enable_custom_events']);
1653
 
1654
+ // custom events
1655
+ if($input['enable_custom_events'] === true)
1656
  {
1657
  $input['custom_events'] = sanitize_text_field(isset($input['custom_events']) && $input['custom_events'] !== '' ? $input['custom_events'] : $this->defaults['settings']['custom_events']);
1658
  }
1659
 
1660
+ // checkboxes
1661
+ $input['galleries'] = (isset($input['galleries'], $this->choices[$input['galleries']]) ? ($input['galleries'] === 'yes' ? true : false) : $this->defaults['settings']['galleries']);
1662
+ $input['videos'] = (isset($input['videos'], $this->choices[$input['videos']]) ? ($input['videos'] === 'yes' ? true : false) : $this->defaults['settings']['videos']);
1663
+ $input['image_links'] = (isset($input['image_links'], $this->choices[$input['image_links']]) ? ($input['image_links'] === 'yes' ? true : false) : $this->defaults['settings']['image_links']);
1664
+ $input['images_as_gallery'] = (isset($input['images_as_gallery'], $this->choices[$input['images_as_gallery']]) ? ($input['images_as_gallery'] === 'yes' ? true : false) : $this->defaults['settings']['images_as_gallery']);
1665
+ $input['deactivation_delete'] = (isset($input['deactivation_delete'], $this->choices[$input['deactivation_delete']]) ? ($input['deactivation_delete'] === 'yes' ? true : false) : $this->defaults['settings']['deactivation_delete']);
1666
  }
1667
  elseif(isset($_POST['save_rl_configuration']))
1668
  {
1832
  //error message
1833
  $input['nivo']['error_message'] = sanitize_text_field($input['nivo']['error_message']);
1834
  }
1835
+ elseif($this->options['settings']['script'] === 'imagelightbox' && $_POST['script_r'] === 'imagelightbox')
1836
+ {
1837
+ // animation speed
1838
+ $input['imagelightbox']['animation_speed'] = (int)$input['imagelightbox']['animation_speed'];
1839
+
1840
+ // preload next image
1841
+ $input['imagelightbox']['preload_next'] = (isset($input['imagelightbox']['preload_next'], $this->choices[$input['imagelightbox']['preload_next']]) ? ($input['imagelightbox']['preload_next'] === 'yes' ? true : false) : $this->defaults['configuration']['imagelightbox']['preload_next']);
1842
+
1843
+ // enable keyboard keys
1844
+ $input['imagelightbox']['enable_keyboard'] = (isset($input['imagelightbox']['enable_keyboard'], $this->choices[$input['imagelightbox']['enable_keyboard']]) ? ($input['imagelightbox']['enable_keyboard'] === 'yes' ? true : false) : $this->defaults['configuration']['imagelightbox']['enable_keyboard']);
1845
+
1846
+ // quit on last image
1847
+ $input['imagelightbox']['quit_on_end'] = (isset($input['imagelightbox']['quit_on_end'], $this->choices[$input['imagelightbox']['quit_on_end']]) ? ($input['imagelightbox']['quit_on_end'] === 'yes' ? true : false) : $this->defaults['configuration']['imagelightbox']['quit_on_end']);
1848
+
1849
+ // quit on image click
1850
+ $input['imagelightbox']['quit_on_image_click'] = (isset($input['imagelightbox']['quit_on_image_click'], $this->choices[$input['imagelightbox']['quit_on_image_click']]) ? ($input['imagelightbox']['quit_on_image_click'] === 'yes' ? true : false) : $this->defaults['configuration']['imagelightbox']['quit_on_image_click']);
1851
+
1852
+ // quit on document click
1853
+ $input['imagelightbox']['quit_on_document_click'] = (isset($input['imagelightbox']['quit_on_document_click'], $this->choices[$input['imagelightbox']['quit_on_document_click']]) ? ($input['imagelightbox']['quit_on_document_click'] === 'yes' ? true : false) : $this->defaults['configuration']['imagelightbox']['quit_on_document_click']);
1854
+ }
1855
  else
1856
  {
1857
  //clear input to not change settings
2035
  wp_register_script(
2036
  'responsive-lightbox-prettyphoto',
2037
  plugins_url('assets/prettyphoto/js/jquery.prettyPhoto.js', __FILE__),
2038
+ array('jquery'),
2039
+ '',
2040
+ ($this->options['settings']['loading_place'] === 'header' ? false : true)
2041
  );
2042
 
2043
  wp_enqueue_script('responsive-lightbox-prettyphoto');
2080
  {
2081
  wp_register_script(
2082
  'responsive-lightbox-swipebox',
2083
+ plugins_url('assets/swipebox/source/jquery.swipebox.js', __FILE__),
2084
+ array('jquery'),
2085
+ '',
2086
+ ($this->options['settings']['loading_place'] === 'header' ? false : true)
2087
  );
2088
 
2089
  wp_enqueue_script('responsive-lightbox-swipebox');
2118
  wp_register_script(
2119
  'responsive-lightbox-fancybox',
2120
  plugins_url('assets/fancybox/jquery.fancybox-1.3.4.js', __FILE__),
2121
+ array('jquery'),
2122
+ '',
2123
+ ($this->options['settings']['loading_place'] === 'header' ? false : true)
2124
  );
2125
 
2126
  wp_enqueue_script('responsive-lightbox-fancybox');
2168
  wp_register_script(
2169
  'responsive-lightbox-nivo',
2170
  plugins_url('assets/nivo/nivo-lightbox.js', __FILE__),
2171
+ array('jquery'),
2172
+ '',
2173
+ ($this->options['settings']['loading_place'] === 'header' ? false : true)
2174
  );
2175
 
2176
  wp_enqueue_script('responsive-lightbox-nivo');
2198
  )
2199
  );
2200
  }
2201
+ elseif($args['script'] === 'imagelightbox')
2202
+ {
2203
+ wp_register_script(
2204
+ 'responsive-lightbox-imagelightbox',
2205
+ plugins_url('assets/imagelightbox/js/imagelightbox.min.js', __FILE__),
2206
+ array('jquery'),
2207
+ '',
2208
+ ($this->options['settings']['loading_place'] === 'header' ? false : true)
2209
+ );
2210
+
2211
+ wp_enqueue_script('responsive-lightbox-imagelightbox');
2212
+
2213
+ wp_register_style(
2214
+ 'responsive-lightbox-imagelightbox-front',
2215
+ plugins_url('assets/imagelightbox/css/imagelightbox.css', __FILE__)
2216
+ );
2217
+
2218
+ wp_enqueue_style('responsive-lightbox-imagelightbox-front');
2219
+
2220
+ $args = array_merge(
2221
+ $args,
2222
+ array(
2223
+ 'animationSpeed' => $this->options['configuration']['imagelightbox']['animation_speed'],
2224
+ 'preloadNext' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['preload_next']),
2225
+ 'enableKeyboard' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['enable_keyboard']),
2226
+ 'quitOnEnd' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['quit_on_end']),
2227
+ 'quitOnImageClick' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['quit_on_image_click']),
2228
+ 'quitOnDocumentClick' => $this->getBooleanValue($this->options['configuration']['imagelightbox']['quit_on_document_click']),
2229
+ )
2230
+ );
2231
+ }
2232
 
2233
  wp_register_script(
2234
  'responsive-lightbox-front',
2235
  plugins_url('js/front.js', __FILE__),
2236
+ array('jquery'),
2237
+ '',
2238
+ ($this->options['settings']['loading_place'] === 'header' ? false : true)
2239
  );
2240
 
2241
  wp_enqueue_script('responsive-lightbox-front');
2281
 
2282
  $plugin = plugin_basename(__FILE__);
2283
 
2284
+ if($file == $plugin)
2285
  {
2286
  return array_merge(
2287
  $links,