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 | ![]() |
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 +5 -0
- assets/imagelightbox/js/imagelightbox.min.js +6 -0
- js/front.js +11 -1
- languages/responsive-lightbox-pl_PL.mo +0 -0
- languages/responsive-lightbox-pl_PL.po +253 -181
- languages/responsive-lightbox.mo +0 -0
- languages/responsive-lightbox.pot +253 -181
- readme.txt +13 -5
- responsive-lightbox.php +293 -76
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+")quot;,"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-
|
5 |
-
"PO-Revision-Date: 2014-
|
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:
|
19 |
msgid "prettyPhoto"
|
20 |
msgstr "prettyPhoto"
|
21 |
|
22 |
-
#: ../responsive-lightbox.php:
|
23 |
msgid "slow"
|
24 |
msgstr "wolno"
|
25 |
|
26 |
-
#: ../responsive-lightbox.php:
|
27 |
msgid "normal"
|
28 |
msgstr "normalnie"
|
29 |
|
30 |
-
#: ../responsive-lightbox.php:
|
31 |
msgid "fast"
|
32 |
msgstr "szybko"
|
33 |
|
34 |
-
#: ../responsive-lightbox.php:
|
35 |
msgid "default"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../responsive-lightbox.php:
|
39 |
msgid "light rounded"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../responsive-lightbox.php:
|
43 |
msgid "dark rounded"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../responsive-lightbox.php:
|
47 |
msgid "light square"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../responsive-lightbox.php:
|
51 |
msgid "dark square"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../responsive-lightbox.php:
|
55 |
msgid "facebook"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../responsive-lightbox.php:
|
59 |
msgid "window"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../responsive-lightbox.php:
|
63 |
msgid "transparent"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../responsive-lightbox.php:
|
67 |
msgid "opaque"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../responsive-lightbox.php:
|
71 |
msgid "direct"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../responsive-lightbox.php:
|
75 |
msgid "gpu"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../responsive-lightbox.php:
|
79 |
msgid "SwipeBox"
|
80 |
msgstr "SwipeBox"
|
81 |
|
82 |
-
#: ../responsive-lightbox.php:
|
83 |
msgid "CSS"
|
84 |
msgstr "CSS"
|
85 |
|
86 |
-
#: ../responsive-lightbox.php:
|
87 |
msgid "jQuery"
|
88 |
msgstr "jQuery"
|
89 |
|
90 |
-
#: ../responsive-lightbox.php:
|
91 |
msgid "FancyBox"
|
92 |
msgstr "FancyBox"
|
93 |
|
94 |
-
#: ../responsive-lightbox.php:
|
95 |
msgid "elastic"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../responsive-lightbox.php:
|
99 |
msgid "fade"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../responsive-lightbox.php:
|
103 |
msgid "none"
|
104 |
msgstr "brak"
|
105 |
|
106 |
-
#: ../responsive-lightbox.php:
|
107 |
msgid "auto"
|
108 |
msgstr "automatycznie"
|
109 |
|
110 |
-
#: ../responsive-lightbox.php:
|
111 |
msgid "yes"
|
112 |
msgstr "tak"
|
113 |
|
114 |
-
#: ../responsive-lightbox.php:
|
115 |
msgid "no"
|
116 |
msgstr "nie"
|
117 |
|
118 |
-
#: ../responsive-lightbox.php:
|
119 |
msgid "swing"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../responsive-lightbox.php:
|
123 |
msgid "linear"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../responsive-lightbox.php:
|
127 |
msgid "outside"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../responsive-lightbox.php:
|
131 |
msgid "inside"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../responsive-lightbox.php:
|
135 |
msgid "over"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../responsive-lightbox.php:
|
139 |
msgid "Nivo Lightbox"
|
140 |
msgstr "Nivo Lightbox"
|
141 |
|
142 |
-
#: ../responsive-lightbox.php:
|
143 |
msgid "fade scale"
|
144 |
msgstr "fade scale"
|
145 |
|
146 |
-
#: ../responsive-lightbox.php:
|
147 |
msgid "slide left"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../responsive-lightbox.php:
|
151 |
msgid "slide right"
|
152 |
msgstr "slide right"
|
153 |
|
154 |
-
#: ../responsive-lightbox.php:
|
155 |
msgid "slide up"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../responsive-lightbox.php:
|
159 |
msgid "slide down"
|
160 |
msgstr "slide down"
|
161 |
|
162 |
-
#: ../responsive-lightbox.php:
|
163 |
msgid "fall"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
167 |
msgid "Enable"
|
168 |
msgstr "Włącz"
|
169 |
|
170 |
-
#: ../responsive-lightbox.php:
|
171 |
msgid "Disable"
|
172 |
msgstr "Wyłącz"
|
173 |
|
174 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
msgid "General settings"
|
176 |
msgstr "Ustawienia ogólne"
|
177 |
|
178 |
-
#: ../responsive-lightbox.php:
|
179 |
msgid "Lightbox settings"
|
180 |
msgstr "Ustawienia lightbox"
|
181 |
|
182 |
-
#: ../responsive-lightbox.php:
|
183 |
msgid "Lightbox script"
|
184 |
msgstr "Skrypt lightbox"
|
185 |
|
186 |
-
#: ../responsive-lightbox.php:
|
187 |
msgid "Selector"
|
188 |
msgstr "Znacznik"
|
189 |
|
190 |
-
#: ../responsive-lightbox.php:
|
191 |
msgid "Galleries"
|
192 |
msgstr "Galerie"
|
193 |
|
194 |
-
#: ../responsive-lightbox.php:
|
195 |
msgid "Video links"
|
196 |
msgstr "Linki video"
|
197 |
|
198 |
-
#: ../responsive-lightbox.php:
|
199 |
msgid "Image links"
|
200 |
msgstr "Linki obrazków"
|
201 |
|
202 |
-
#: ../responsive-lightbox.php:
|
203 |
msgid "Single images as gallery"
|
204 |
msgstr "Galeria pojedynczych obrazków"
|
205 |
|
206 |
-
#: ../responsive-lightbox.php:
|
207 |
msgid "Custom events"
|
208 |
msgstr "Własne zdarzenia"
|
209 |
|
210 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
211 |
msgid "Deactivation"
|
212 |
msgstr "Deaktywacja"
|
213 |
|
214 |
-
#: ../responsive-lightbox.php:
|
215 |
msgid "Animation type"
|
216 |
msgstr "Typ animacji"
|
217 |
|
218 |
-
#: ../responsive-lightbox.php:
|
219 |
msgid "Force PNG icons"
|
220 |
msgstr "Wymuszanie ikon PNG"
|
221 |
|
222 |
-
#: ../responsive-lightbox.php:
|
223 |
msgid "Top and bottom bars"
|
224 |
msgstr "Górne i dolne paski"
|
225 |
|
226 |
-
#: ../responsive-lightbox.php:
|
227 |
msgid "Video max width"
|
228 |
msgstr "Maksymalna szerokość video"
|
229 |
|
230 |
-
#: ../responsive-lightbox.php:
|
231 |
msgid "Animation speed"
|
232 |
msgstr "Szybkość animacji"
|
233 |
|
234 |
-
#: ../responsive-lightbox.php:
|
235 |
msgid "Slideshow"
|
236 |
msgstr "Pokaz slidów"
|
237 |
|
238 |
-
#: ../responsive-lightbox.php:
|
239 |
msgid "Slideshow autoplay"
|
240 |
msgstr "Automatyczne odtwarzanie pokazu slajdów"
|
241 |
|
242 |
-
#: ../responsive-lightbox.php:
|
243 |
msgid "Opacity"
|
244 |
msgstr "Przezroczystość"
|
245 |
|
246 |
-
#: ../responsive-lightbox.php:
|
247 |
msgid "Show title"
|
248 |
msgstr "Wyświetlanie tytułu"
|
249 |
|
250 |
-
#: ../responsive-lightbox.php:
|
251 |
msgid "Allow resize big images"
|
252 |
msgstr "Powiększanie dużych zdjęć"
|
253 |
|
254 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
255 |
msgid "Video width"
|
256 |
msgstr "Szerokość video"
|
257 |
|
258 |
-
#: ../responsive-lightbox.php:
|
259 |
msgid "Video height"
|
260 |
msgstr "Wysokość video"
|
261 |
|
262 |
-
#: ../responsive-lightbox.php:
|
263 |
msgid "Theme"
|
264 |
msgstr "Motyw"
|
265 |
|
266 |
-
#: ../responsive-lightbox.php:
|
267 |
msgid "Horizontal padding"
|
268 |
msgstr "Odstępy w poziomie"
|
269 |
|
270 |
-
#: ../responsive-lightbox.php:
|
271 |
msgid "Hide Flash"
|
272 |
msgstr "Ukrywanie flash"
|
273 |
|
274 |
-
#: ../responsive-lightbox.php:
|
275 |
msgid "Flash Window Mode (wmode)"
|
276 |
msgstr "Tryb okna flash (wmode)"
|
277 |
|
278 |
-
#: ../responsive-lightbox.php:
|
279 |
msgid "Video autoplay"
|
280 |
msgstr "Automatyczne odtwarzanie wideo"
|
281 |
|
282 |
-
#: ../responsive-lightbox.php:
|
283 |
msgid "Modal"
|
284 |
msgstr "Tryb modal"
|
285 |
|
286 |
-
#: ../responsive-lightbox.php:
|
287 |
msgid "Deeplinking"
|
288 |
msgstr "Głębokie linki"
|
289 |
|
290 |
-
#: ../responsive-lightbox.php:
|
291 |
msgid "Overlay gallery"
|
292 |
msgstr "Efekt overlay galerii"
|
293 |
|
294 |
-
#: ../responsive-lightbox.php:
|
295 |
msgid "Keyboard shortcuts"
|
296 |
msgstr "Skróty klawiaturowe"
|
297 |
|
298 |
-
#: ../responsive-lightbox.php:
|
299 |
msgid "Social (Twitter, Facebook)"
|
300 |
msgstr "Linki społeczności (Twitter, Facebook)"
|
301 |
|
302 |
-
#: ../responsive-lightbox.php:
|
303 |
msgid "Show overlay"
|
304 |
msgstr "Wyświetlanie tła"
|
305 |
|
306 |
-
#: ../responsive-lightbox.php:
|
307 |
msgid "Show close button"
|
308 |
msgstr "Wyświetlanie przycisku Zamknij"
|
309 |
|
310 |
-
#: ../responsive-lightbox.php:
|
311 |
msgid "Enable escape button"
|
312 |
msgstr "Wyświetlanie przycisku Wyjdź"
|
313 |
|
314 |
-
#: ../responsive-lightbox.php:
|
315 |
msgid "Hide on overlay click"
|
316 |
msgstr "Ukryj po kliknięciu w tło"
|
317 |
|
318 |
-
#: ../responsive-lightbox.php:
|
319 |
msgid "Hide on content click"
|
320 |
msgstr "Ukryj po kliknięciu w treść"
|
321 |
|
322 |
-
#: ../responsive-lightbox.php:
|
323 |
msgid "Cyclic"
|
324 |
msgstr "Cykliczność"
|
325 |
|
326 |
-
#: ../responsive-lightbox.php:
|
327 |
msgid "Show nav arrows"
|
328 |
msgstr "Wyświetlanie strzałek"
|
329 |
|
330 |
-
#: ../responsive-lightbox.php:
|
331 |
msgid "Auto scale"
|
332 |
msgstr "Automatyczne skalowanie"
|
333 |
|
334 |
-
#: ../responsive-lightbox.php:
|
335 |
msgid "Scrolling (in/out)"
|
336 |
msgstr "Przewijanie"
|
337 |
|
338 |
-
#: ../responsive-lightbox.php:
|
339 |
msgid "Center on scroll"
|
340 |
msgstr "Centrowanie przy przewijaniu"
|
341 |
|
342 |
-
#: ../responsive-lightbox.php:
|
343 |
msgid "Overlay opacity"
|
344 |
msgstr "Przezroczystość tła"
|
345 |
|
346 |
-
#: ../responsive-lightbox.php:
|
347 |
msgid "Overlay color"
|
348 |
msgstr "Kolor tła"
|
349 |
|
350 |
-
#: ../responsive-lightbox.php:
|
351 |
msgid "Title show"
|
352 |
msgstr "Wyświetlanie tytułu"
|
353 |
|
354 |
-
#: ../responsive-lightbox.php:
|
355 |
msgid "Title position"
|
356 |
msgstr "Pozycja tytułu"
|
357 |
|
358 |
-
#: ../responsive-lightbox.php:
|
359 |
msgid "Transition (in/out)"
|
360 |
msgstr "Efekty przejścia"
|
361 |
|
362 |
-
#: ../responsive-lightbox.php:
|
363 |
msgid "Easings (in/out)"
|
364 |
msgstr "Wygładzanie animacji"
|
365 |
|
366 |
-
#: ../responsive-lightbox.php:
|
367 |
msgid "Speed (in/out)"
|
368 |
msgstr "Szybkość"
|
369 |
|
370 |
-
#: ../responsive-lightbox.php:
|
371 |
msgid "Change speed"
|
372 |
msgstr "Zmień szybkość"
|
373 |
|
374 |
-
#: ../responsive-lightbox.php:
|
375 |
msgid "Change fade"
|
376 |
msgstr "Zmień zanikanie"
|
377 |
|
378 |
-
#: ../responsive-lightbox.php:
|
379 |
msgid "Padding"
|
380 |
msgstr "Odstęp (padding)"
|
381 |
|
382 |
-
#: ../responsive-lightbox.php:
|
383 |
msgid "Margin"
|
384 |
msgstr "Margines (margin)"
|
385 |
|
386 |
-
#: ../responsive-lightbox.php:
|
387 |
msgid "Effect"
|
388 |
msgstr "Efekt"
|
389 |
|
390 |
-
#: ../responsive-lightbox.php:
|
391 |
msgid "Keyboard navigation"
|
392 |
msgstr "Nawigacja klawiaturą"
|
393 |
|
394 |
-
#: ../responsive-lightbox.php:
|
395 |
msgid "Error message"
|
396 |
msgstr "Treść komunikatu o błędzie"
|
397 |
|
398 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid "Select your preffered ligthbox effect script."
|
400 |
msgstr "Wybierz preferowany efekt lightbox."
|
401 |
|
402 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
411 |
msgid "Enter a space separated list of events."
|
412 |
msgstr "Wpisz oddzieloną spacją listę wydarzeń."
|
413 |
|
414 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
427 |
msgid "Display single post images as a gallery."
|
428 |
msgstr "Wyświetl pojedyncze obrazki jako pokaz sladów."
|
429 |
|
430 |
-
#: ../responsive-lightbox.php:
|
431 |
msgid "Delete settings on plugin deactivation."
|
432 |
msgstr "Usuń ustawienia przy deaktywacji wtyczki."
|
433 |
|
434 |
-
#: ../responsive-lightbox.php:
|
435 |
msgid "Select a method of applying a lightbox effect."
|
436 |
msgstr "Wybierz sposób dodawania efekty lightbox."
|
437 |
|
438 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
453 |
msgid "Enter the max video width in a lightbox."
|
454 |
msgstr "Podaj maksymalną szerokość video."
|
455 |
|
456 |
-
#: ../responsive-lightbox.php:
|
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:
|
463 |
msgid "Select animation speed for lightbox effect."
|
464 |
msgstr "Wybierz szybkość animacji efektu lightbox."
|
465 |
|
466 |
-
#: ../responsive-lightbox.php:
|
467 |
msgid "Display images as slideshow."
|
468 |
msgstr "Wyświetl obrazki jako pokaz sladów ."
|
469 |
|
470 |
-
#: ../responsive-lightbox.php:
|
471 |
msgid "Enter time (in miliseconds)."
|
472 |
msgstr "Podaj czas (w milisekundach)."
|
473 |
|
474 |
-
#: ../responsive-lightbox.php:
|
475 |
msgid "Automatically start slideshow."
|
476 |
msgstr "Automatyczne rozpoczynanie pokazu slajdów."
|
477 |
|
478 |
-
#: ../responsive-lightbox.php:
|
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:
|
483 |
msgid "Display image tiltle."
|
484 |
msgstr "Wyświetlanie tytułu obrazka."
|
485 |
|
486 |
-
#: ../responsive-lightbox.php:
|
487 |
msgid "Resize the photos bigger than viewport."
|
488 |
msgstr "Zmiana wielkość zdjęć większych niż aktualny ekran."
|
489 |
|
490 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
491 |
msgid "in pixels"
|
492 |
msgstr "w pikselach"
|
493 |
|
494 |
-
#: ../responsive-lightbox.php:
|
495 |
msgid "Select theme for lightbox effect."
|
496 |
msgstr "Wybierz motyw dla efektu lightbox."
|
497 |
|
498 |
-
#: ../responsive-lightbox.php:
|
499 |
msgid "Horizontal padding (in pixels)."
|
500 |
msgstr "Odstępy w poziomie (w pikselach)."
|
501 |
|
502 |
-
#: ../responsive-lightbox.php:
|
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:
|
511 |
msgid "Select flash window mode."
|
512 |
msgstr "Wybierz tryb okna flash."
|
513 |
|
514 |
-
#: ../responsive-lightbox.php:
|
515 |
msgid "Automatically start videos."
|
516 |
msgstr "Automatycznie rozpoczynaj video."
|
517 |
|
518 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
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:
|
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:
|
538 |
msgid "Display links to Facebook and Twitter."
|
539 |
msgstr "Wyświetl linki do Facebboka i Twittera."
|
540 |
|
541 |
-
#: ../responsive-lightbox.php:
|
542 |
msgid "The transition type."
|
543 |
msgstr "Typ animacji."
|
544 |
|
545 |
-
#: ../responsive-lightbox.php:
|
546 |
msgid "Space between FancyBox wrapper and content."
|
547 |
msgstr "Przestrzeń między FancyBox a treścią"
|
548 |
|
549 |
-
#: ../responsive-lightbox.php:
|
550 |
msgid "Space between viewport and FancyBox wrapper."
|
551 |
msgstr "Przestrzeń między ekranem a Fancybox"
|
552 |
|
553 |
-
#: ../responsive-lightbox.php:
|
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:
|
564 |
msgid "Toggle overlay."
|
565 |
msgstr "Włącz tło."
|
566 |
|
567 |
-
#: ../responsive-lightbox.php:
|
568 |
msgid "Toggle close button."
|
569 |
msgstr "Włącz przycisk Zamknij."
|
570 |
|
571 |
-
#: ../responsive-lightbox.php:
|
572 |
msgid "Toggle if pressing Esc button closes FancyBox."
|
573 |
msgstr "Włącz zamykanie FancyBox przy pomocy Esc."
|
574 |
|
575 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
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:
|
589 |
msgid "Toggle navigation arrows."
|
590 |
msgstr "Włącz strzałki nawigacyjne."
|
591 |
|
592 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
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:
|
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:
|
614 |
msgid "Opacity of the overlay."
|
615 |
msgstr "Przezroczystość tła."
|
616 |
|
617 |
-
#: ../responsive-lightbox.php:
|
618 |
msgid "Color of the overlay."
|
619 |
msgstr "Kolor tła."
|
620 |
|
621 |
-
#: ../responsive-lightbox.php:
|
622 |
msgid "Toggle title."
|
623 |
msgstr "Wyświetlanie tytułu."
|
624 |
|
625 |
-
#: ../responsive-lightbox.php:
|
626 |
msgid "The position of title."
|
627 |
msgstr "Pozycja tytułu."
|
628 |
|
629 |
-
#: ../responsive-lightbox.php:
|
630 |
msgid "Easing used for elastic animations."
|
631 |
msgstr "Wygładzanie animacji dla trybu elastic."
|
632 |
|
633 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
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:
|
648 |
msgid "Width of the video."
|
649 |
msgstr "Szerokość video."
|
650 |
|
651 |
-
#: ../responsive-lightbox.php:
|
652 |
msgid "Height of the video."
|
653 |
msgstr "Wysokość video."
|
654 |
|
655 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
677 |
msgid "Settings restored to defaults."
|
678 |
msgstr "Ustawienia zostały przywrócone do domyślnych."
|
679 |
|
680 |
-
#: ../responsive-lightbox.php:
|
681 |
msgid "Settings of SwipeBox script were restored to defaults."
|
682 |
msgstr "Ustawienia skryptu SwipeBox zostały przywrócone."
|
683 |
|
684 |
-
#: ../responsive-lightbox.php:
|
685 |
msgid "Settings of prettyPhoto script were restored to defaults."
|
686 |
msgstr "Ustawienia skryptu prettyPhoto zostały przywrócone."
|
687 |
|
688 |
-
#: ../responsive-lightbox.php:
|
689 |
msgid "Settings of FancyBox script were restored to defaults."
|
690 |
msgstr "Ustawienia skryptu FancyBox zostały przywrócone."
|
691 |
|
692 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
706 |
-
#: ../responsive-lightbox.php:
|
707 |
msgid "Responsive Lightbox"
|
708 |
msgstr "Efekt Lightbox"
|
709 |
|
710 |
-
#: ../responsive-lightbox.php:
|
711 |
msgid "Need support?"
|
712 |
msgstr "Potrzebujesz pomocy?"
|
713 |
|
714 |
-
#: ../responsive-lightbox.php:
|
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:
|
720 |
msgid "Support forum"
|
721 |
msgstr "Forum pomocy"
|
722 |
|
723 |
-
#: ../responsive-lightbox.php:
|
724 |
msgid "Do you like this plugin?"
|
725 |
msgstr "Lubisz tę wtyczkę?"
|
726 |
|
727 |
-
#: ../responsive-lightbox.php:
|
728 |
msgid "Rate it 5"
|
729 |
msgstr "Oceń ją na 5"
|
730 |
|
731 |
-
#: ../responsive-lightbox.php:
|
732 |
msgid "on WordPress.org"
|
733 |
msgstr "na WordPress.org"
|
734 |
|
735 |
-
#: ../responsive-lightbox.php:
|
736 |
msgid "Blog about it & link to the"
|
737 |
msgstr "Napisz o niej i dodaj link"
|
738 |
|
739 |
-
#: ../responsive-lightbox.php:
|
740 |
msgid "plugin page"
|
741 |
msgstr "do strony wtyczki"
|
742 |
|
743 |
-
#: ../responsive-lightbox.php:
|
744 |
msgid "Check out our other"
|
745 |
msgstr "Sprawdź nasze pozostałe"
|
746 |
|
747 |
-
#: ../responsive-lightbox.php:
|
748 |
msgid "WordPress plugins"
|
749 |
msgstr "wtyczki do WordPress'a"
|
750 |
|
751 |
-
#: ../responsive-lightbox.php:
|
752 |
msgid "Reset to defaults"
|
753 |
msgstr "Resetuj do domyślnych"
|
754 |
|
755 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
764 |
msgid "Support"
|
765 |
msgstr "Pomoc"
|
766 |
|
767 |
-
#: ../responsive-lightbox.php:
|
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-
|
5 |
-
"PO-Revision-Date: 2014-
|
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:
|
19 |
msgid "prettyPhoto"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: ../responsive-lightbox.php:
|
23 |
msgid "slow"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: ../responsive-lightbox.php:
|
27 |
msgid "normal"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../responsive-lightbox.php:
|
31 |
msgid "fast"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../responsive-lightbox.php:
|
35 |
msgid "default"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../responsive-lightbox.php:
|
39 |
msgid "light rounded"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../responsive-lightbox.php:
|
43 |
msgid "dark rounded"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../responsive-lightbox.php:
|
47 |
msgid "light square"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../responsive-lightbox.php:
|
51 |
msgid "dark square"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../responsive-lightbox.php:
|
55 |
msgid "facebook"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../responsive-lightbox.php:
|
59 |
msgid "window"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../responsive-lightbox.php:
|
63 |
msgid "transparent"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../responsive-lightbox.php:
|
67 |
msgid "opaque"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../responsive-lightbox.php:
|
71 |
msgid "direct"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../responsive-lightbox.php:
|
75 |
msgid "gpu"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../responsive-lightbox.php:
|
79 |
msgid "SwipeBox"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../responsive-lightbox.php:
|
83 |
msgid "CSS"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../responsive-lightbox.php:
|
87 |
msgid "jQuery"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../responsive-lightbox.php:
|
91 |
msgid "FancyBox"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../responsive-lightbox.php:
|
95 |
msgid "elastic"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../responsive-lightbox.php:
|
99 |
msgid "fade"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../responsive-lightbox.php:
|
103 |
msgid "none"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../responsive-lightbox.php:
|
107 |
msgid "auto"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../responsive-lightbox.php:
|
111 |
msgid "yes"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: ../responsive-lightbox.php:
|
115 |
msgid "no"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../responsive-lightbox.php:
|
119 |
msgid "swing"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../responsive-lightbox.php:
|
123 |
msgid "linear"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../responsive-lightbox.php:
|
127 |
msgid "outside"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../responsive-lightbox.php:
|
131 |
msgid "inside"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../responsive-lightbox.php:
|
135 |
msgid "over"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../responsive-lightbox.php:
|
139 |
msgid "Nivo Lightbox"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../responsive-lightbox.php:
|
143 |
msgid "fade scale"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../responsive-lightbox.php:
|
147 |
msgid "slide left"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../responsive-lightbox.php:
|
151 |
msgid "slide right"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../responsive-lightbox.php:
|
155 |
msgid "slide up"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../responsive-lightbox.php:
|
159 |
msgid "slide down"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../responsive-lightbox.php:
|
163 |
msgid "fall"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
167 |
msgid "Enable"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../responsive-lightbox.php:
|
171 |
msgid "Disable"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
msgid "General settings"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../responsive-lightbox.php:
|
179 |
msgid "Lightbox settings"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../responsive-lightbox.php:
|
183 |
msgid "Lightbox script"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../responsive-lightbox.php:
|
187 |
msgid "Selector"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../responsive-lightbox.php:
|
191 |
msgid "Galleries"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../responsive-lightbox.php:
|
195 |
msgid "Video links"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../responsive-lightbox.php:
|
199 |
msgid "Image links"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../responsive-lightbox.php:
|
203 |
msgid "Single images as gallery"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../responsive-lightbox.php:
|
207 |
msgid "Custom events"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
211 |
msgid "Deactivation"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../responsive-lightbox.php:
|
215 |
msgid "Animation type"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../responsive-lightbox.php:
|
219 |
msgid "Force PNG icons"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../responsive-lightbox.php:
|
223 |
msgid "Top and bottom bars"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../responsive-lightbox.php:
|
227 |
msgid "Video max width"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../responsive-lightbox.php:
|
231 |
msgid "Animation speed"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../responsive-lightbox.php:
|
235 |
msgid "Slideshow"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../responsive-lightbox.php:
|
239 |
msgid "Slideshow autoplay"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../responsive-lightbox.php:
|
243 |
msgid "Opacity"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../responsive-lightbox.php:
|
247 |
msgid "Show title"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../responsive-lightbox.php:
|
251 |
msgid "Allow resize big images"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
255 |
msgid "Video width"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../responsive-lightbox.php:
|
259 |
msgid "Video height"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../responsive-lightbox.php:
|
263 |
msgid "Theme"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../responsive-lightbox.php:
|
267 |
msgid "Horizontal padding"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../responsive-lightbox.php:
|
271 |
msgid "Hide Flash"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../responsive-lightbox.php:
|
275 |
msgid "Flash Window Mode (wmode)"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../responsive-lightbox.php:
|
279 |
msgid "Video autoplay"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../responsive-lightbox.php:
|
283 |
msgid "Modal"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../responsive-lightbox.php:
|
287 |
msgid "Deeplinking"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../responsive-lightbox.php:
|
291 |
msgid "Overlay gallery"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../responsive-lightbox.php:
|
295 |
msgid "Keyboard shortcuts"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../responsive-lightbox.php:
|
299 |
msgid "Social (Twitter, Facebook)"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../responsive-lightbox.php:
|
303 |
msgid "Show overlay"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../responsive-lightbox.php:
|
307 |
msgid "Show close button"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../responsive-lightbox.php:
|
311 |
msgid "Enable escape button"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../responsive-lightbox.php:
|
315 |
msgid "Hide on overlay click"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../responsive-lightbox.php:
|
319 |
msgid "Hide on content click"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../responsive-lightbox.php:
|
323 |
msgid "Cyclic"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ../responsive-lightbox.php:
|
327 |
msgid "Show nav arrows"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../responsive-lightbox.php:
|
331 |
msgid "Auto scale"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../responsive-lightbox.php:
|
335 |
msgid "Scrolling (in/out)"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../responsive-lightbox.php:
|
339 |
msgid "Center on scroll"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../responsive-lightbox.php:
|
343 |
msgid "Overlay opacity"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../responsive-lightbox.php:
|
347 |
msgid "Overlay color"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../responsive-lightbox.php:
|
351 |
msgid "Title show"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: ../responsive-lightbox.php:
|
355 |
msgid "Title position"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../responsive-lightbox.php:
|
359 |
msgid "Transition (in/out)"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../responsive-lightbox.php:
|
363 |
msgid "Easings (in/out)"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../responsive-lightbox.php:
|
367 |
msgid "Speed (in/out)"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../responsive-lightbox.php:
|
371 |
msgid "Change speed"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../responsive-lightbox.php:
|
375 |
msgid "Change fade"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../responsive-lightbox.php:
|
379 |
msgid "Padding"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../responsive-lightbox.php:
|
383 |
msgid "Margin"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../responsive-lightbox.php:
|
387 |
msgid "Effect"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../responsive-lightbox.php:
|
391 |
msgid "Keyboard navigation"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../responsive-lightbox.php:
|
395 |
msgid "Error message"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../responsive-lightbox.php:
|
399 |
-
msgid "
|
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:
|
407 |
msgid "Enable triggering lightbox on custom jquery events."
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../responsive-lightbox.php:
|
411 |
msgid "Enter a space separated list of events."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
415 |
msgid "Add lightbox to WordPress image galleries by default."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../responsive-lightbox.php:
|
419 |
msgid "Add lightbox to YouTube and Vimeo video links by default."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../responsive-lightbox.php:
|
423 |
msgid "Add lightbox to WordPress image links by default."
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../responsive-lightbox.php:
|
427 |
msgid "Display single post images as a gallery."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../responsive-lightbox.php:
|
431 |
msgid "Delete settings on plugin deactivation."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../responsive-lightbox.php:
|
435 |
msgid "Select a method of applying a lightbox effect."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../responsive-lightbox.php:
|
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:
|
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:
|
451 |
msgid "Enter the max video width in a lightbox."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../responsive-lightbox.php:
|
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:
|
461 |
msgid "Select animation speed for lightbox effect."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../responsive-lightbox.php:
|
465 |
msgid "Display images as slideshow."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../responsive-lightbox.php:
|
469 |
msgid "Enter time (in miliseconds)."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../responsive-lightbox.php:
|
473 |
msgid "Automatically start slideshow."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../responsive-lightbox.php:
|
477 |
msgid "Value between 0 and 100, 100 for no opacity."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../responsive-lightbox.php:
|
481 |
msgid "Display image tiltle."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../responsive-lightbox.php:
|
485 |
msgid "Resize the photos bigger than viewport."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
489 |
msgid "in pixels"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../responsive-lightbox.php:
|
493 |
msgid "Select theme for lightbox effect."
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../responsive-lightbox.php:
|
497 |
msgid "Horizontal padding (in pixels)."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../responsive-lightbox.php:
|
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:
|
507 |
msgid "Select flash window mode."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../responsive-lightbox.php:
|
511 |
msgid "Automatically start videos."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../responsive-lightbox.php:
|
515 |
msgid "If set to true, only the close button will close the window."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../responsive-lightbox.php:
|
519 |
msgid "Allow prettyPhoto to update the url to enable deeplinking."
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../responsive-lightbox.php:
|
523 |
msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../responsive-lightbox.php:
|
527 |
msgid "Set to false if you open forms inside prettyPhoto."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../responsive-lightbox.php:
|
531 |
msgid "Display links to Facebook and Twitter."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../responsive-lightbox.php:
|
535 |
msgid "The transition type."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../responsive-lightbox.php:
|
539 |
msgid "Space between FancyBox wrapper and content."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../responsive-lightbox.php:
|
543 |
msgid "Space between viewport and FancyBox wrapper."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../responsive-lightbox.php:
|
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:
|
554 |
msgid "Toggle overlay."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../responsive-lightbox.php:
|
558 |
msgid "Toggle close button."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../responsive-lightbox.php:
|
562 |
msgid "Toggle if pressing Esc button closes FancyBox."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../responsive-lightbox.php:
|
566 |
msgid "Toggle if clicking the overlay should close FancyBox."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../responsive-lightbox.php:
|
570 |
msgid "Toggle if clicking the content should close FancyBox."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../responsive-lightbox.php:
|
574 |
msgid ""
|
575 |
"When true, galleries will be cyclic, allowing you to keep pressing next/back."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../responsive-lightbox.php:
|
579 |
msgid "Toggle navigation arrows."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../responsive-lightbox.php:
|
583 |
msgid "If true, FancyBox is scaled to fit in viewport."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../responsive-lightbox.php:
|
587 |
msgid "Set the overflow CSS property to create or hide scrollbars."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../responsive-lightbox.php:
|
591 |
msgid "When true, FancyBox is centered while scrolling page."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../responsive-lightbox.php:
|
595 |
msgid "When true, transparency of content is changed for elastic transitions."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: ../responsive-lightbox.php:
|
599 |
msgid "Opacity of the overlay."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: ../responsive-lightbox.php:
|
603 |
msgid "Color of the overlay."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: ../responsive-lightbox.php:
|
607 |
msgid "Toggle title."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: ../responsive-lightbox.php:
|
611 |
msgid "The position of title."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../responsive-lightbox.php:
|
615 |
msgid "Easing used for elastic animations."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../responsive-lightbox.php:
|
619 |
msgid "Speed of the fade and elastic transitions, in milliseconds."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../responsive-lightbox.php:
|
623 |
msgid "Speed of resizing when changing gallery items, in milliseconds."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: ../responsive-lightbox.php:
|
627 |
msgid "Speed of the content fading while changing gallery items."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: ../responsive-lightbox.php:
|
631 |
msgid "Width of the video."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../responsive-lightbox.php:
|
635 |
msgid "Height of the video."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: ../responsive-lightbox.php:
|
639 |
msgid "The effect to use when showing the lightbox."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../responsive-lightbox.php:
|
643 |
msgid "Enable/Disable keyboard navigation (left/right/escape)."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../responsive-lightbox.php:
|
647 |
msgid "Error message if the content cannot be loaded."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: ../responsive-lightbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
657 |
msgid "Settings restored to defaults."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../responsive-lightbox.php:
|
661 |
msgid "Settings of SwipeBox script were restored to defaults."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../responsive-lightbox.php:
|
665 |
msgid "Settings of prettyPhoto script were restored to defaults."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../responsive-lightbox.php:
|
669 |
msgid "Settings of FancyBox script were restored to defaults."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../responsive-lightbox.php:
|
673 |
msgid "Settings of Nivo script were restored to defaults."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../responsive-lightbox.php:
|
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:
|
683 |
-
#: ../responsive-lightbox.php:
|
684 |
msgid "Responsive Lightbox"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../responsive-lightbox.php:
|
688 |
msgid "Need support?"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../responsive-lightbox.php:
|
692 |
msgid ""
|
693 |
"If you are having problems with this plugin, please talk about them in the"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../responsive-lightbox.php:
|
697 |
msgid "Support forum"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../responsive-lightbox.php:
|
701 |
msgid "Do you like this plugin?"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../responsive-lightbox.php:
|
705 |
msgid "Rate it 5"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../responsive-lightbox.php:
|
709 |
msgid "on WordPress.org"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../responsive-lightbox.php:
|
713 |
msgid "Blog about it & link to the"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: ../responsive-lightbox.php:
|
717 |
msgid "plugin page"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../responsive-lightbox.php:
|
721 |
msgid "Check out our other"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: ../responsive-lightbox.php:
|
725 |
msgid "WordPress plugins"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../responsive-lightbox.php:
|
729 |
msgid "Reset to defaults"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../responsive-lightbox.php:
|
733 |
msgid "Are you sure you want to reset these settings to defaults?"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../responsive-lightbox.php:
|
737 |
msgid "Are you sure you want to reset scripts settings to defaults?"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: ../responsive-lightbox.php:
|
741 |
msgid "Support"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../responsive-lightbox.php:
|
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 |