Responsive Lightbox & Gallery - Version 1.3.0

Version Description

  • New: Added Nivo Lightbox script
  • New: Option to reset plugin settings to defaults
Download this release

Release Info

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

Code changes from version 1.2.3 to 1.3.0

assets/nivo/README.md ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ Nivo Lightbox
2
+ =============
3
+
4
+ A simple, flexible, responsive, retina-ready jQuery lightbox plugin. See http://dev7studios.com/nivo-lightbox for more info.
assets/nivo/changelog.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ *** Nivo Lightbox Changelog ***
2
+
3
+ 2013.08.01 - version 1.0
4
+ * Initial release
assets/nivo/license.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copyright (c) 2013 Dev7studios
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
assets/nivo/nivo-lightbox.css ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Nivo Lightbox v1.0
3
+ * http://dev7studios.com/nivo-lightbox
4
+ *
5
+ * Copyright 2013, Dev7studios
6
+ * Free to use and abuse under the MIT license.
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ */
9
+
10
+ .nivo-lightbox-overlay {
11
+ position: fixed;
12
+ top: 0;
13
+ left: 0;
14
+ z-index: 99998;
15
+ width: 100%;
16
+ height: 100%;
17
+ overflow: hidden;
18
+ visibility: hidden;
19
+ opacity: 0;
20
+ -webkit-box-sizing: border-box;
21
+ -moz-box-sizing: border-box;
22
+ box-sizing: border-box;
23
+ }
24
+ .nivo-lightbox-overlay.nivo-lightbox-open {
25
+ visibility: visible;
26
+ opacity: 1;
27
+ }
28
+ .nivo-lightbox-wrap {
29
+ position: absolute;
30
+ top: 10%;
31
+ bottom: 10%;
32
+ left: 10%;
33
+ right: 10%;
34
+ }
35
+ .nivo-lightbox-content {
36
+ width: 100%;
37
+ height: 100%;
38
+ }
39
+ .nivo-lightbox-title-wrap {
40
+ position: absolute;
41
+ bottom: 0;
42
+ left: 0;
43
+ width: 100%;
44
+ z-index: 99999;
45
+ text-align: center;
46
+ }
47
+ .nivo-lightbox-nav { display: none; }
48
+ .nivo-lightbox-prev {
49
+ position: absolute;
50
+ top: 50%;
51
+ left: 0;
52
+ }
53
+ .nivo-lightbox-next {
54
+ position: absolute;
55
+ top: 50%;
56
+ right: 0;
57
+ }
58
+ .nivo-lightbox-close {
59
+ position: absolute;
60
+ top: 2%;
61
+ right: 2%;
62
+ }
63
+
64
+ .nivo-lightbox-image { text-align: center; }
65
+ .nivo-lightbox-image img {
66
+ max-width: 100%;
67
+ max-height: 100%;
68
+ width: auto;
69
+ height: auto;
70
+ vertical-align: middle;
71
+ }
72
+ .nivo-lightbox-content iframe {
73
+ width: 100%;
74
+ height: 100%;
75
+ }
76
+ .nivo-lightbox-ajax {
77
+ max-height: 100%;
78
+ overflow: auto;
79
+ -webkit-box-sizing: border-box;
80
+ -moz-box-sizing: border-box;
81
+ box-sizing: border-box;
82
+ /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
83
+ }
84
+ .nivo-lightbox-error {
85
+ display: table;
86
+ text-align: center;
87
+ width: 100%;
88
+ height: 100%;
89
+ color: #fff;
90
+ text-shadow: 0 1px 1px #000;
91
+ }
92
+ .nivo-lightbox-error p {
93
+ display: table-cell;
94
+ vertical-align: middle;
95
+ }
96
+
97
+ /* Effects
98
+ **********************************************/
99
+ .nivo-lightbox-effect-fade,
100
+ .nivo-lightbox-effect-fadeScale,
101
+ .nivo-lightbox-effect-slideLeft,
102
+ .nivo-lightbox-effect-slideRight,
103
+ .nivo-lightbox-effect-slideUp,
104
+ .nivo-lightbox-effect-slideDown,
105
+ .nivo-lightbox-effect-fall {
106
+ -webkit-transition: all 0.2s ease-in-out;
107
+ -moz-transition: all 0.2s ease-in-out;
108
+ -ms-transition: all 0.2s ease-in-out;
109
+ -o-transition: all 0.2s ease-in-out;
110
+ transition: all 0.2s ease-in-out;
111
+ }
112
+
113
+ /* fadeScale */
114
+ .nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
115
+ -webkit-transition: all 0.3s;
116
+ -moz-transition: all 0.3s;
117
+ -ms-transition: all 0.3s;
118
+ -o-transition: all 0.3s;
119
+ transition: all 0.3s;
120
+ -webkit-transform: scale(0.7);
121
+ -moz-transform: scale(0.7);
122
+ -ms-transform: scale(0.7);
123
+ transform: scale(0.7);
124
+ }
125
+ .nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
126
+ -webkit-transform: scale(1);
127
+ -moz-transform: scale(1);
128
+ -ms-transform: scale(1);
129
+ transform: scale(1);
130
+ }
131
+
132
+ /* slideLeft / slideRight / slideUp / slideDown */
133
+ .nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
134
+ .nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
135
+ .nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
136
+ .nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
137
+ -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
138
+ -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
139
+ -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
140
+ -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
141
+ transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
142
+ }
143
+ .nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
144
+ -webkit-transform: translateX(-10%);
145
+ -moz-transform: translateX(-10%);
146
+ -ms-transform: translateX(-10%);
147
+ transform: translateX(-10%);
148
+ }
149
+ .nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
150
+ -webkit-transform: translateX(10%);
151
+ -moz-transform: translateX(10%);
152
+ -ms-transform: translateX(10%);
153
+ transform: translateX(10%);
154
+ }
155
+ .nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
156
+ .nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
157
+ -webkit-transform: translateX(0);
158
+ -moz-transform: translateX(0);
159
+ -ms-transform: translateX(0);
160
+ transform: translateX(0);
161
+ }
162
+ .nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
163
+ -webkit-transform: translateY(-10%);
164
+ -moz-transform: translateY(-10%);
165
+ -ms-transform: translateY(-10%);
166
+ transform: translateY(-10%);
167
+ }
168
+ .nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
169
+ -webkit-transform: translateY(10%);
170
+ -moz-transform: translateY(10%);
171
+ -ms-transform: translateY(10%);
172
+ transform: translateY(10%);
173
+ }
174
+ .nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
175
+ .nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
176
+ -webkit-transform: translateY(0);
177
+ -moz-transform: translateY(0);
178
+ -ms-transform: translateY(0);
179
+ transform: translateY(0);
180
+ }
181
+
182
+ /* fall */
183
+ .nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
184
+ -webkit-perspective: 1000px;
185
+ -moz-perspective: 1000px;
186
+ perspective: 1000px;
187
+ }
188
+ .nivo-lightbox-effect-fall .nivo-lightbox-wrap {
189
+ -webkit-transition: all 0.3s ease-out;
190
+ -moz-transition: all 0.3s ease-out;
191
+ -ms-transition: all 0.3s ease-out;
192
+ -o-transition: all 0.3s ease-out;
193
+ transition: all 0.3s ease-out;
194
+ -webkit-transform: translateZ(300px);
195
+ -moz-transform: translateZ(300px);
196
+ -ms-transform: translateZ(300px);
197
+ transform: translateZ(300px);
198
+ }
199
+ .nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
200
+ -webkit-transform: translateZ(0);
201
+ -moz-transform: translateZ(0);
202
+ -ms-transform: translateZ(0);
203
+ transform: translateZ(0);
204
+ }
assets/nivo/nivo-lightbox.min.js ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Nivo Lightbox v1.0
3
+ * http://dev7studios.com/nivo-lightbox
4
+ *
5
+ * Copyright 2013, Dev7studios
6
+ * Free to use and abuse under the MIT license.
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ */
9
+
10
+ (function(e,t,n,r){function o(t,n){this.el=t;this.$el=e(this.el);this.options=e.extend({},s,n);this._defaults=s;this._name=i;this.init()}var i="nivoLightbox",s={effect:"fade",theme:"default",keyboardNav:true,onInit:function(){},beforeShowLightbox:function(){},afterShowLightbox:function(e){},beforeHideLightbox:function(){},afterHideLightbox:function(){},onPrev:function(e){},onNext:function(e){},errorMessage:"The requested content cannot be loaded. Please try again later."};o.prototype={init:function(){var t=this;this.$el.on("click",function(e){e.preventDefault();t.showLightbox()});if(this.options.keyboardNav){e("body").off("keyup").on("keyup",function(n){var r=n.keyCode?n.keyCode:n.which;if(r==27)t.destructLightbox();if(r==37)e(".nivo-lightbox-prev").trigger("click");if(r==39)e(".nivo-lightbox-next").trigger("click")})}this.options.onInit.call(this)},showLightbox:function(){var t=this;this.options.beforeShowLightbox.call(this);var n=this.constructLightbox();if(!n)return;var r=n.find(".nivo-lightbox-content");if(!r)return;var i=this.$el;e("body").addClass("nivo-lightbox-body-effect-"+this.options.effect);this.processContent(r,i);if(this.$el.attr("data-lightbox-gallery")){var t=this,s=e('[data-lightbox-gallery="'+this.$el.attr("data-lightbox-gallery")+'"]');e(".nivo-lightbox-nav").show();e(".nivo-lightbox-prev").off("click").on("click",function(n){n.preventDefault();var o=s.index(i);i=s.eq(o-1);if(!e(i).length)i=s.last();t.processContent(r,i);t.options.onPrev.call(this,[i])});e(".nivo-lightbox-next").off("click").on("click",function(n){n.preventDefault();var o=s.index(i);i=s.eq(o+1);if(!e(i).length)i=s.first();t.processContent(r,i);t.options.onNext.call(this,[i])})}setTimeout(function(){n.addClass("nivo-lightbox-open");t.options.afterShowLightbox.call(this,[n])},1)},processContent:function(n,r){var i=this;var s=r.attr("href");n.html("").addClass("nivo-lightbox-loading");if(this.isHidpi()&&r.attr("data-lightbox-hidpi")){s=r.attr("data-lightbox-hidpi")}if(s.match(/\.(jpeg|jpg|gif|png)$/)!=null){var o=e("<img>",{src:s});o.one("load",function(){var r=e('<div class="nivo-lightbox-image" />');r.append(o);n.html(r).removeClass("nivo-lightbox-loading");r.css({"line-height":e(".nivo-lightbox-content").height()+"px",height:e(".nivo-lightbox-content").height()+"px"});e(t).resize(function(){r.css({"line-height":e(".nivo-lightbox-content").height()+"px",height:e(".nivo-lightbox-content").height()+"px"})})}).each(function(){if(this.complete)e(this).load()});o.error(function(){var t=e('<div class="nivo-lightbox-error"><p>'+i.options.errorMessage+"</p></div>");n.html(t).removeClass("nivo-lightbox-loading")})}else if(video=s.match(/(youtube|youtu|vimeo)\.(com|be)\/(watch\?v=(\w+)|(\w+))/)){var u="",a="nivo-lightbox-video";if(video[1]=="youtube"){u="http://www.youtube.com/v/"+video[4];a="nivo-lightbox-youtube"}if(video[1]=="youtu"){u="http://www.youtube.com/v/"+video[3];a="nivo-lightbox-youtube"}if(video[1]=="vimeo"){u="http://player.vimeo.com/video/"+video[3];a="nivo-lightbox-vimeo"}if(u){var f=e("<iframe>",{src:u,"class":a,frameborder:0,vspace:0,hspace:0,scrolling:"auto"});n.html(f);f.load(function(){n.removeClass("nivo-lightbox-loading")})}}else if(r.attr("data-lightbox-type")=="ajax"){var i=this;e.ajax({url:s,cache:false,success:function(r){var i=e('<div class="nivo-lightbox-ajax" />');i.append(r);n.html(i).removeClass("nivo-lightbox-loading");if(i.outerHeight()<n.height()){i.css({position:"relative",top:"50%","margin-top":-(i.outerHeight()/2)+"px"})}e(t).resize(function(){if(i.outerHeight()<n.height()){i.css({position:"relative",top:"50%","margin-top":-(i.outerHeight()/2)+"px"})}})},error:function(){var t=e('<div class="nivo-lightbox-error"><p>'+i.options.errorMessage+"</p></div>");n.html(t).removeClass("nivo-lightbox-loading")}})}else if(s.substring(0,1)=="#"){if(e(s).length){var l=e('<div class="nivo-lightbox-inline" />');l.append(e(s).clone().show());n.html(l).removeClass("nivo-lightbox-loading");if(l.outerHeight()<n.height()){l.css({position:"relative",top:"50%","margin-top":-(l.outerHeight()/2)+"px"})}e(t).resize(function(){if(l.outerHeight()<n.height()){l.css({position:"relative",top:"50%","margin-top":-(l.outerHeight()/2)+"px"})}})}else{var l=e('<div class="nivo-lightbox-error"><p>'+i.options.errorMessage+"</p></div>");n.html(l).removeClass("nivo-lightbox-loading")}}else{var f=e("<iframe>",{src:s,"class":"nivo-lightbox-item",frameborder:0,vspace:0,hspace:0,scrolling:"auto"});n.html(f);f.load(function(){n.removeClass("nivo-lightbox-loading")})}if(r.attr("title")){var c=e("<span>",{"class":"nivo-lightbox-title"});c.text(r.attr("title"));e(".nivo-lightbox-title-wrap").html(c)}else{e(".nivo-lightbox-title-wrap").html("")}},constructLightbox:function(){if(e(".nivo-lightbox-overlay").length)return e(".nivo-lightbox-overlay");var t=e("<div>",{"class":"nivo-lightbox-overlay nivo-lightbox-theme-"+this.options.theme+" nivo-lightbox-effect-"+this.options.effect});var n=e("<div>",{"class":"nivo-lightbox-wrap"});var r=e("<div>",{"class":"nivo-lightbox-content"});var i=e('<a href="#" class="nivo-lightbox-nav nivo-lightbox-prev">Previous</a><a href="#" class="nivo-lightbox-nav nivo-lightbox-next">Next</a>');var s=e('<a href="#" class="nivo-lightbox-close" title="Close">Close</a>');var o=e("<div>",{"class":"nivo-lightbox-title-wrap"});var u=0;if(u)t.addClass("nivo-lightbox-ie");n.append(r);n.append(o);t.append(n);t.append(i);t.append(s);e("body").append(t);var a=this;t.on("click",function(t){if(t.target===this||e(t.target).hasClass("nivo-lightbox-content")||e(t.target).hasClass("nivo-lightbox-image"))a.destructLightbox()});s.on("click",function(e){e.preventDefault();a.destructLightbox()});return t},destructLightbox:function(){var t=this;this.options.beforeHideLightbox.call(this);e(".nivo-lightbox-overlay").removeClass("nivo-lightbox-open");e(".nivo-lightbox-nav").hide();e("body").removeClass("nivo-lightbox-body-effect-"+t.options.effect);var n=0;if(n){e(".nivo-lightbox-overlay iframe").attr("src"," ");e(".nivo-lightbox-overlay iframe").remove()}e(".nivo-lightbox-prev").off("click");e(".nivo-lightbox-next").off("click");this.options.afterHideLightbox.call(this)},isHidpi:function(){var e="(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)";if(t.devicePixelRatio>1)return true;if(t.matchMedia&&t.matchMedia(e).matches)return true;return false}};e.fn[i]=function(t){return this.each(function(){if(!e.data(this,i)){e.data(this,i,new o(this,t))}})}})(jQuery,window,document)
assets/nivo/themes/default/close.png ADDED
Binary file
assets/nivo/themes/default/close@2x.png ADDED
Binary file
assets/nivo/themes/default/default.css ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Nivo Lightbox Default Theme v1.0
3
+ * http://dev7studios.com/nivo-lightbox
4
+ *
5
+ * Copyright 2013, Dev7studios
6
+ * Free to use and abuse under the MIT license.
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ */
9
+
10
+ .nivo-lightbox-theme-default.nivo-lightbox-overlay {
11
+ background: #666;
12
+ background: rgba(0,0,0,0.6);
13
+ }
14
+ .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(loading.gif) no-repeat 50% 50%; }
15
+
16
+ .nivo-lightbox-theme-default .nivo-lightbox-nav {
17
+ top: 10%;
18
+ width: 8%;
19
+ height: 80%;
20
+ text-indent: -9999px;
21
+ background-repeat: no-repeat;
22
+ background-position: 50% 50%;
23
+ opacity: 0.5;
24
+ }
25
+ .nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
26
+ opacity: 1;
27
+ background-color: rgba(0,0,0,0.5);
28
+ }
29
+ .nivo-lightbox-theme-default .nivo-lightbox-prev {
30
+ background-image: url(prev.png);
31
+ border-radius: 0 3px 3px 0;
32
+ }
33
+ .nivo-lightbox-theme-default .nivo-lightbox-next {
34
+ background-image: url(next.png);
35
+ border-radius: 3px 0 0 3px;
36
+ }
37
+
38
+ .nivo-lightbox-theme-default .nivo-lightbox-close {
39
+ display: block;
40
+ background: url(close.png) no-repeat 5px 5px;
41
+ width: 16px;
42
+ height: 16px;
43
+ text-indent: -9999px;
44
+ padding: 5px;
45
+ opacity: 0.5;
46
+ }
47
+ .nivo-lightbox-theme-default .nivo-lightbox-close:hover { opacity: 1; }
48
+
49
+ .nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
50
+ .nivo-lightbox-theme-default .nivo-lightbox-title {
51
+ font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
52
+ font-style: normal;
53
+ font-weight: normal;
54
+ background: #000;
55
+ color: #fff;
56
+ padding: 7px 15px;
57
+ border-radius: 30px;
58
+ }
59
+
60
+ .nivo-lightbox-theme-default .nivo-lightbox-image img {
61
+ background: #fff;
62
+ -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
63
+ -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
64
+ box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
65
+ }
66
+ .nivo-lightbox-theme-default .nivo-lightbox-ajax,
67
+ .nivo-lightbox-theme-default .nivo-lightbox-inline {
68
+ background: #fff;
69
+ padding: 40px;
70
+ -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
71
+ -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
72
+ box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
73
+ }
74
+
75
+ @media (-webkit-min-device-pixel-ratio: 1.3),
76
+ (-o-min-device-pixel-ratio: 2.6/2),
77
+ (min--moz-device-pixel-ratio: 1.3),
78
+ (min-device-pixel-ratio: 1.3),
79
+ (min-resolution: 1.3dppx) {
80
+
81
+ .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
82
+ background-image: url(loading@2x.gif);
83
+ background-size: 32px 32px;
84
+ }
85
+ .nivo-lightbox-theme-default .nivo-lightbox-prev {
86
+ background-image: url(prev@2x.png);
87
+ background-size: 48px 48px;
88
+ }
89
+ .nivo-lightbox-theme-default .nivo-lightbox-next {
90
+ background-image: url(next@2x.png);
91
+ background-size: 48px 48px;
92
+ }
93
+ .nivo-lightbox-theme-default .nivo-lightbox-close {
94
+ background-image: url(close@2x.png);
95
+ background-size: 16px 16px;
96
+ }
97
+
98
+ }
assets/nivo/themes/default/loading.gif ADDED
Binary file
assets/nivo/themes/default/loading@2x.gif ADDED
Binary file
assets/nivo/themes/default/next.png ADDED
Binary file
assets/nivo/themes/default/next@2x.png ADDED
Binary file
assets/nivo/themes/default/prev.png ADDED
Binary file
assets/nivo/themes/default/prev@2x.png ADDED
Binary file
assets/prettyphoto/{README → README.md} RENAMED
File without changes
css/admin.css CHANGED
@@ -9,4 +9,5 @@
9
  .df-credits .df-link a { vertical-align: middle; padding: 5px 0 0 4px; }
10
  .wplike-slider span.middle { width: 150px; }
11
  .wplike-slider span.left { margin-right: 10px; }
12
- .wplike-slider span.right { margin-left: 10px; }
 
9
  .df-credits .df-link a { vertical-align: middle; padding: 5px 0 0 4px; }
10
  .wplike-slider span.middle { width: 150px; }
11
  .wplike-slider span.left { margin-right: 10px; }
12
+ .wplike-slider span.right { margin-left: 10px; }
13
+ #rl_nv_error_message input { width: 400px; }
js/admin.js CHANGED
@@ -64,17 +64,17 @@ jQuery(document).ready(function($) {
64
  });
65
 
66
  $(document).on('change', '#rl-pp-slideshow-yes, #rl-pp-slideshow-no', function(event) {
67
- if($('#rl-pp-slideshow-yes:checked').val() === 'yes') {
68
  $('#rl_pp_slideshow_delay').fadeIn(300);
69
- } else if($('#rl-pp-slideshow-no:checked').val() === 'no') {
70
  $('#rl_pp_slideshow_delay').fadeOut(300);
71
  }
72
  });
73
 
74
  $(document).on('change', '#rl-sb-hide-bars-yes, #rl-sb-hide-bars-no', function(event) {
75
- if($('#rl-sb-hide-bars-yes:checked').val() === 'yes') {
76
  $('#rl_sb_hide_bars_delay').fadeIn(300);
77
- } else if($('#rl-sb-hide-bars-no:checked').val() === 'no') {
78
  $('#rl_sb_hide_bars_delay').fadeOut(300);
79
  }
80
  });
@@ -82,4 +82,8 @@ jQuery(document).ready(function($) {
82
  $(document).on('click', 'input#reset_rl_configuration', function(event) {
83
  return confirm(rlArgs.resetScriptToDefaults);
84
  });
 
 
 
 
85
  });
64
  });
65
 
66
  $(document).on('change', '#rl-pp-slideshow-yes, #rl-pp-slideshow-no', function(event) {
67
+ if($(this).val() === 'yes') {
68
  $('#rl_pp_slideshow_delay').fadeIn(300);
69
+ } else {
70
  $('#rl_pp_slideshow_delay').fadeOut(300);
71
  }
72
  });
73
 
74
  $(document).on('change', '#rl-sb-hide-bars-yes, #rl-sb-hide-bars-no', function(event) {
75
+ if($(this).val() === 'yes') {
76
  $('#rl_sb_hide_bars_delay').fadeIn(300);
77
+ } else {
78
  $('#rl_sb_hide_bars_delay').fadeOut(300);
79
  }
80
  });
82
  $(document).on('click', 'input#reset_rl_configuration', function(event) {
83
  return confirm(rlArgs.resetScriptToDefaults);
84
  });
85
+
86
+ $(document).on('click', 'input#reset_rl_settings', function(event) {
87
+ return confirm(rlArgs.resetSettingsToDefaults);
88
+ });
89
  });
js/front.js CHANGED
@@ -63,6 +63,20 @@ jQuery(document).ready(function($) {
63
  width: parseInt(rlArgs.videoWidth),
64
  height: parseInt(rlArgs.videoHeight)
65
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  }
67
  });
68
 
63
  width: parseInt(rlArgs.videoWidth),
64
  height: parseInt(rlArgs.videoHeight)
65
  });
66
+ } else if(rlArgs.script === 'nivo') {
67
+ $.each($('a[rel*="'+rlArgs.selector+'"]'), function() {
68
+ var match = $(this).attr('rel').match(new RegExp(rlArgs.selector+'\\[(gallery\\-(?:[\\da-z]{1,4}))\\]', 'ig'));
69
+
70
+ if(match !== null) {
71
+ $(this).attr('data-lightbox-gallery', match[0]);
72
+ }
73
+ });
74
+
75
+ $('a[rel*="'+rlArgs.selector+'"]').nivoLightbox({
76
+ effect: rlArgs.effect,
77
+ keyboardNav: (rlArgs.keyboardNav === '1' ? true : false),
78
+ errorMessage: rlArgs.errorMessage,
79
+ });
80
  }
81
  });
82
 
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: 2013-10-15 11:32+0100\n"
5
- "PO-Revision-Date: 2013-10-15 11:33+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: Polski\n"
@@ -15,381 +15,421 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../responsive-lightbox.php:267
19
  msgid "prettyPhoto"
20
  msgstr "prettyPhoto"
21
 
22
- #: ../responsive-lightbox.php:269
23
  msgid "slow"
24
  msgstr "wolno"
25
 
26
- #: ../responsive-lightbox.php:270
27
  msgid "normal"
28
  msgstr "normalnie"
29
 
30
- #: ../responsive-lightbox.php:271
31
  msgid "fast"
32
  msgstr "szybko"
33
 
34
- #: ../responsive-lightbox.php:274
35
  msgid "default"
36
  msgstr ""
37
 
38
- #: ../responsive-lightbox.php:275
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
- #: ../responsive-lightbox.php:276
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
- #: ../responsive-lightbox.php:277
47
  msgid "light square"
48
  msgstr ""
49
 
50
- #: ../responsive-lightbox.php:278
51
  msgid "dark square"
52
  msgstr ""
53
 
54
- #: ../responsive-lightbox.php:279
55
  msgid "facebook"
56
  msgstr ""
57
 
58
- #: ../responsive-lightbox.php:282
59
  msgid "window"
60
  msgstr ""
61
 
62
- #: ../responsive-lightbox.php:283
63
  msgid "transparent"
64
  msgstr ""
65
 
66
- #: ../responsive-lightbox.php:284
67
  msgid "opaque"
68
  msgstr ""
69
 
70
- #: ../responsive-lightbox.php:285
71
  msgid "direct"
72
  msgstr ""
73
 
74
- #: ../responsive-lightbox.php:286
75
  msgid "gpu"
76
  msgstr ""
77
 
78
- #: ../responsive-lightbox.php:291
79
  msgid "SwipeBox"
80
  msgstr "SwipeBox"
81
 
82
- #: ../responsive-lightbox.php:293
83
  msgid "CSS"
84
  msgstr "CSS"
85
 
86
- #: ../responsive-lightbox.php:294
87
  msgid "jQuery"
88
  msgstr "jQuery"
89
 
90
- #: ../responsive-lightbox.php:298
91
  msgid "FancyBox"
92
  msgstr "FancyBox"
93
 
94
- #: ../responsive-lightbox.php:300
95
  msgid "elastic"
96
  msgstr ""
97
 
98
- #: ../responsive-lightbox.php:301
99
  msgid "fade"
100
  msgstr ""
101
 
102
- #: ../responsive-lightbox.php:302
103
  msgid "none"
104
  msgstr "brak"
105
 
106
- #: ../responsive-lightbox.php:305
107
  msgid "auto"
108
  msgstr "automatycznie"
109
 
110
- #: ../responsive-lightbox.php:306
111
  msgid "yes"
112
  msgstr "tak"
113
 
114
- #: ../responsive-lightbox.php:307
115
  msgid "no"
116
  msgstr "nie"
117
 
118
- #: ../responsive-lightbox.php:310
119
  msgid "swing"
120
  msgstr ""
121
 
122
- #: ../responsive-lightbox.php:311
123
  msgid "linear"
124
  msgstr ""
125
 
126
- #: ../responsive-lightbox.php:314
127
  msgid "outside"
128
  msgstr ""
129
 
130
- #: ../responsive-lightbox.php:315
131
  msgid "inside"
132
  msgstr ""
133
 
134
- #: ../responsive-lightbox.php:316
135
  msgid "over"
136
  msgstr ""
137
 
138
- #: ../responsive-lightbox.php:322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "Enable"
140
  msgstr "Włącz"
141
 
142
- #: ../responsive-lightbox.php:323
143
  msgid "Disable"
144
  msgstr "Wyłącz"
145
 
146
- #: ../responsive-lightbox.php:328 ../responsive-lightbox.php:428
147
  msgid "General settings"
148
  msgstr "Ustawienia ogólne"
149
 
150
- #: ../responsive-lightbox.php:333 ../responsive-lightbox.php:439
151
  msgid "Lightbox settings"
152
  msgstr "Ustawienia lightbox"
153
 
154
- #: ../responsive-lightbox.php:429
155
  msgid "Lightbox script"
156
  msgstr "Skrypt lightbox"
157
 
158
- #: ../responsive-lightbox.php:430
159
  msgid "Selector"
160
  msgstr "Znacznik"
161
 
162
- #: ../responsive-lightbox.php:431
163
  msgid "Galleries"
164
  msgstr "Galerie"
165
 
166
- #: ../responsive-lightbox.php:432
167
  msgid "Video links"
168
  msgstr "Linki video"
169
 
170
- #: ../responsive-lightbox.php:433
171
  msgid "Image links"
172
  msgstr "Linki obrazków"
173
 
174
- #: ../responsive-lightbox.php:434
175
  msgid "Single images as gallery"
176
  msgstr "Galeria pojedynczych obrazków"
177
 
178
- #: ../responsive-lightbox.php:435
179
  msgid "Deactivation"
180
  msgstr "Deaktywacja"
181
 
182
- #: ../responsive-lightbox.php:443
183
  msgid "Animation type"
184
  msgstr "Typ animacji"
185
 
186
- #: ../responsive-lightbox.php:444
187
  msgid "Force PNG icons"
188
  msgstr "Wymuszanie ikon PNG"
189
 
190
- #: ../responsive-lightbox.php:445
191
  msgid "Top and bottom bars"
192
  msgstr "Górne i dolne paski"
193
 
194
- #: ../responsive-lightbox.php:446
195
  msgid "Video max width"
196
  msgstr "Maksymalna szerokość video"
197
 
198
- #: ../responsive-lightbox.php:450
199
  msgid "Animation speed"
200
  msgstr "Szybkość animacji"
201
 
202
- #: ../responsive-lightbox.php:451
203
  msgid "Slideshow"
204
  msgstr "Pokaz slidów"
205
 
206
- #: ../responsive-lightbox.php:452
207
  msgid "Slideshow autoplay"
208
  msgstr "Automatyczne odtwarzanie pokazu slajdów"
209
 
210
- #: ../responsive-lightbox.php:453 ../responsive-lightbox.php:482
211
  msgid "Opacity"
212
  msgstr "Przezroczystość"
213
 
214
- #: ../responsive-lightbox.php:454
215
  msgid "Show title"
216
  msgstr "Wyświetlanie tytułu"
217
 
218
- #: ../responsive-lightbox.php:455
219
  msgid "Allow resize big images"
220
  msgstr "Powiększanie dużych zdjęć"
221
 
222
- #: ../responsive-lightbox.php:456 ../responsive-lightbox.php:494
223
  msgid "Video width"
224
  msgstr "Szerokość video"
225
 
226
- #: ../responsive-lightbox.php:457 ../responsive-lightbox.php:495
227
  msgid "Video height"
228
  msgstr "Wysokość video"
229
 
230
- #: ../responsive-lightbox.php:458
231
  msgid "Theme"
232
  msgstr "Motyw"
233
 
234
- #: ../responsive-lightbox.php:459
235
  msgid "Horizontal padding"
236
  msgstr "Odstępy w poziomie"
237
 
238
- #: ../responsive-lightbox.php:460
239
  msgid "Hide Flash"
240
  msgstr "Ukrywanie flash"
241
 
242
- #: ../responsive-lightbox.php:461
243
  msgid "Flash Window Mode (wmode)"
244
  msgstr "Tryb okna flash (wmode)"
245
 
246
- #: ../responsive-lightbox.php:462
247
  msgid "Video autoplay"
248
  msgstr "Automatyczne odtwarzanie wideo"
249
 
250
- #: ../responsive-lightbox.php:463 ../responsive-lightbox.php:471
251
  msgid "Modal"
252
  msgstr "Tryb modal"
253
 
254
- #: ../responsive-lightbox.php:464
255
  msgid "Deeplinking"
256
  msgstr "Głębokie linki"
257
 
258
- #: ../responsive-lightbox.php:465
259
  msgid "Overlay gallery"
260
  msgstr "Efekt overlay galerii"
261
 
262
- #: ../responsive-lightbox.php:466
263
  msgid "Keyboard shortcuts"
264
  msgstr "Skróty klawiaturowe"
265
 
266
- #: ../responsive-lightbox.php:467
267
  msgid "Social (Twitter, Facebook)"
268
  msgstr "Linki społeczności (Twitter, Facebook)"
269
 
270
- #: ../responsive-lightbox.php:472
271
  msgid "Show overlay"
272
  msgstr "Wyświetlanie tła"
273
 
274
- #: ../responsive-lightbox.php:473
275
  msgid "Show close button"
276
  msgstr "Wyświetlanie przycisku Zamknij"
277
 
278
- #: ../responsive-lightbox.php:474
279
  msgid "Enable escape button"
280
  msgstr "Wyświetlanie przycisku Wyjdź"
281
 
282
- #: ../responsive-lightbox.php:475
283
  msgid "Hide on overlay click"
284
  msgstr "Ukryj po kliknięciu w tło"
285
 
286
- #: ../responsive-lightbox.php:476
287
  msgid "Hide on content click"
288
  msgstr "Ukryj po kliknięciu w treść"
289
 
290
- #: ../responsive-lightbox.php:477
291
  msgid "Cyclic"
292
  msgstr "Cykliczność"
293
 
294
- #: ../responsive-lightbox.php:478
295
  msgid "Show nav arrows"
296
  msgstr "Wyświetlanie strzałek"
297
 
298
- #: ../responsive-lightbox.php:479
299
  msgid "Auto scale"
300
  msgstr "Automatyczne skalowanie"
301
 
302
- #: ../responsive-lightbox.php:480
303
  msgid "Scrolling (in/out)"
304
  msgstr "Przewijanie"
305
 
306
- #: ../responsive-lightbox.php:481
307
  msgid "Center on scroll"
308
  msgstr "Centrowanie przy przewijaniu"
309
 
310
- #: ../responsive-lightbox.php:483
311
  msgid "Overlay opacity"
312
  msgstr "Przezroczystość tła"
313
 
314
- #: ../responsive-lightbox.php:484
315
  msgid "Overlay color"
316
  msgstr "Kolor tła"
317
 
318
- #: ../responsive-lightbox.php:485
319
  msgid "Title show"
320
  msgstr "Wyświetlanie tytułu"
321
 
322
- #: ../responsive-lightbox.php:486
323
  msgid "Title position"
324
  msgstr "Pozycja tytułu"
325
 
326
- #: ../responsive-lightbox.php:487
327
  msgid "Transition (in/out)"
328
  msgstr "Efekty przejścia"
329
 
330
- #: ../responsive-lightbox.php:488
331
  msgid "Easings (in/out)"
332
  msgstr "Wygładzanie animacji"
333
 
334
- #: ../responsive-lightbox.php:489
335
  msgid "Speed (in/out)"
336
  msgstr "Szybkość"
337
 
338
- #: ../responsive-lightbox.php:490
339
  msgid "Change speed"
340
  msgstr "Zmień szybkość"
341
 
342
- #: ../responsive-lightbox.php:491
343
  msgid "Change fade"
344
  msgstr "Zmień zanikanie"
345
 
346
- #: ../responsive-lightbox.php:492
347
  msgid "Padding"
348
  msgstr "Odstęp (padding)"
349
 
350
- #: ../responsive-lightbox.php:493
351
  msgid "Margin"
352
  msgstr "Margines (margin)"
353
 
354
- #: ../responsive-lightbox.php:513
 
 
 
 
 
 
 
 
 
 
 
 
355
  msgid "Select your preffered ligthbox effect script."
356
  msgstr "Wybierz preferowany efekt lightbox."
357
 
358
- #: ../responsive-lightbox.php:523
359
  msgid "Select to which rel selector lightbox effect will be applied to."
360
  msgstr "Wybierz dla któego znacznika będzie dodawany efekt lightbox."
361
 
362
- #: ../responsive-lightbox.php:541
363
  msgid "Add lightbox to WordPress image galleries by default."
364
  msgstr "Dodaj efekt lightbox do galerii obrazków WordPressa."
365
 
366
- #: ../responsive-lightbox.php:559
367
  msgid "Add lightbox to YouTube and Vimeo video links by default."
368
  msgstr "Dodaj efekt lightbox do linków video (YouTube i Vimeo) WordPressa."
369
 
370
- #: ../responsive-lightbox.php:577
371
  msgid "Add lightbox to WordPress image links by default."
372
  msgstr "Dodaj efekt lightbox do pojedynczych obrazków WordPressa."
373
 
374
- #: ../responsive-lightbox.php:595
375
  msgid "Display single post images as a gallery."
376
  msgstr "Wyświetl pojedyncze obrazki jako pokaz sladów."
377
 
378
- #: ../responsive-lightbox.php:613
379
  msgid "Delete settings on plugin deactivation."
380
  msgstr "Usuń ustawienia przy deaktywacji wtyczki."
381
 
382
- #: ../responsive-lightbox.php:631
383
  msgid "Select a method of applying a lightbox effect."
384
  msgstr "Wybierz sposób dodawania efekty lightbox."
385
 
386
- #: ../responsive-lightbox.php:649
387
  msgid ""
388
  "Disable if you don't want to top and bottom bars to be hidden after a period "
389
  "of time."
390
  msgstr "Wyłącz to, jeśli nie chcesz ukrywać górnego i dolnego paska."
391
 
392
- #: ../responsive-lightbox.php:652
393
  msgid ""
394
  "Enter the time after which the top and bottom bars will be hidden (when "
395
  "hiding is enabled)."
@@ -397,57 +437,57 @@ msgstr ""
397
  "Podaj czas po którym chcesz ukryć górny i dolny pasek (jeśli opcja ukrywania "
398
  "jest włączona)."
399
 
400
- #: ../responsive-lightbox.php:663
401
  msgid "Enter the max video width in a lightbox."
402
  msgstr "Podaj maksymalną szerokość video."
403
 
404
- #: ../responsive-lightbox.php:681
405
  msgid ""
406
  "Enable this if you're having problems with navigation icons not visible on "
407
  "some devices."
408
  msgstr "Włącz tę opcję jeśli masz problemy z wyświetlaniem ikon nawigacji."
409
 
410
- #: ../responsive-lightbox.php:699
411
  msgid "Select animation speed for lightbox effect."
412
  msgstr "Wybierz szybkość animacji efektu lightbox."
413
 
414
- #: ../responsive-lightbox.php:717
415
  msgid "Display images as slideshow."
416
  msgstr "Wyświetl obrazki jako pokaz sladów ."
417
 
418
- #: ../responsive-lightbox.php:720
419
  msgid "Enter time (in miliseconds)."
420
  msgstr "Podaj czas (w milisekundach)."
421
 
422
- #: ../responsive-lightbox.php:739
423
  msgid "Automatically start slideshow."
424
  msgstr "Automatyczne rozpoczynanie pokazu slajdów."
425
 
426
- #: ../responsive-lightbox.php:752
427
  msgid "Value between 0 and 100, 100 for no opacity."
428
  msgstr "Wartość pomiędzy 0 i 100 (100 oznacza brak przezroczystości)."
429
 
430
- #: ../responsive-lightbox.php:770
431
  msgid "Display image tiltle."
432
  msgstr "Wyświetlanie tytułu obrazka."
433
 
434
- #: ../responsive-lightbox.php:788
435
  msgid "Resize the photos bigger than viewport."
436
  msgstr "Zmiana wielkość zdjęć większych niż aktualny ekran."
437
 
438
- #: ../responsive-lightbox.php:798 ../responsive-lightbox.php:808
439
  msgid "in pixels"
440
  msgstr "w pikselach"
441
 
442
- #: ../responsive-lightbox.php:826
443
  msgid "Select theme for lightbox effect."
444
  msgstr "Wybierz motyw dla efektu lightbox."
445
 
446
- #: ../responsive-lightbox.php:836
447
  msgid "Horizontal padding (in pixels)."
448
  msgstr "Odstępy w poziomie (w pikselach)."
449
 
450
- #: ../responsive-lightbox.php:854
451
  msgid ""
452
  "Hides all the flash object on a page. Enable this if flash appears over "
453
  "prettyPhoto."
@@ -455,50 +495,50 @@ msgstr ""
455
  "Ukywa wszystkie obiekty flash na stronie. Włącz to jeśli animacje flash "
456
  "wyświetlane są nad lightboxem."
457
 
458
- #: ../responsive-lightbox.php:872
459
  msgid "Select flash window mode."
460
  msgstr "Wybierz tryb okna flash."
461
 
462
- #: ../responsive-lightbox.php:890
463
  msgid "Automatically start videos."
464
  msgstr "Automatycznie rozpoczynaj video."
465
 
466
- #: ../responsive-lightbox.php:908
467
  msgid "If set to true, only the close button will close the window."
468
  msgstr ""
469
  "Jeśli będzie włączone, tylko kliknięcie przycisku spowoduje zamknięcie okna."
470
 
471
- #: ../responsive-lightbox.php:926
472
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
473
  msgstr "Zezwól prettyPhoto na aktualizacje adresów URL i głębokie linkowanie."
474
 
475
- #: ../responsive-lightbox.php:944
476
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
477
  msgstr ""
478
  "Jeśli będzie włączone, galeria będzie wyświetlana na cały ekran po "
479
  "najechaniu myszką."
480
 
481
- #: ../responsive-lightbox.php:962
482
  msgid "Set to false if you open forms inside prettyPhoto."
483
  msgstr "Wyłącz to jeśli chcesz otwierać formularze wewnątrz prettyPhoto."
484
 
485
- #: ../responsive-lightbox.php:980
486
  msgid "Display links to Facebook and Twitter."
487
  msgstr "Wyświetl linki do Facebboka i Twittera."
488
 
489
- #: ../responsive-lightbox.php:998
490
  msgid "The transition type."
491
  msgstr "Typ animacji."
492
 
493
- #: ../responsive-lightbox.php:1008
494
  msgid "Space between FancyBox wrapper and content."
495
  msgstr "Przestrzeń między FancyBox a treścią"
496
 
497
- #: ../responsive-lightbox.php:1018
498
  msgid "Space between viewport and FancyBox wrapper."
499
  msgstr "Przestrzeń między ekranem a Fancybox"
500
 
501
- #: ../responsive-lightbox.php:1036
502
  msgid ""
503
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
504
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
@@ -508,99 +548,112 @@ msgstr ""
508
  "TRUE, natomiast \"hideOnOverlayClick\", \"hideOnContentClick\", "
509
  "\"enableEscapeButton\", \"showCloseButton\" zostaną ustawione na FALSE."
510
 
511
- #: ../responsive-lightbox.php:1054
512
  msgid "Toggle overlay."
513
  msgstr "Włącz tło."
514
 
515
- #: ../responsive-lightbox.php:1072
516
  msgid "Toggle close button."
517
  msgstr "Włącz przycisk Zamknij."
518
 
519
- #: ../responsive-lightbox.php:1090
520
  msgid "Toggle if pressing Esc button closes FancyBox."
521
  msgstr "Włącz zamykanie FancyBox przy pomocy Esc."
522
 
523
- #: ../responsive-lightbox.php:1108
524
  msgid "Toggle if clicking the overlay should close FancyBox."
525
  msgstr "Włącz zamykanie FancyBox kliknięciem w tło."
526
 
527
- #: ../responsive-lightbox.php:1126
528
  msgid "Toggle if clicking the content should close FancyBox."
529
  msgstr "Włącz zamykanie FancyBox kliknięciem w treść."
530
 
531
- #: ../responsive-lightbox.php:1144
532
  msgid ""
533
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
534
  msgstr "Jeśli będzie włączone, galerie będą wyświetlane cyklicznie."
535
 
536
- #: ../responsive-lightbox.php:1162
537
  msgid "Toggle navigation arrows."
538
  msgstr "Włącz strzałki nawigacyjne."
539
 
540
- #: ../responsive-lightbox.php:1180
541
  msgid "If true, FancyBox is scaled to fit in viewport."
542
  msgstr "Jeśli będzie włączone, FancyBox będzie skalowany do rozmiaru okna."
543
 
544
- #: ../responsive-lightbox.php:1198
545
  msgid "Set the overflow CSS property to create or hide scrollbars."
546
  msgstr ""
547
  "Ustaw parametr overflow dw CSS aby tworzyć lub ukrywać elementy nawigacji."
548
 
549
- #: ../responsive-lightbox.php:1216
550
  msgid "When true, FancyBox is centered while scrolling page."
551
  msgstr ""
552
  "Jeśli będzie zaznaczone, FancyBox będzie wycentrowany w trakcie przewijania "
553
  "strony."
554
 
555
- #: ../responsive-lightbox.php:1234
556
  msgid "When true, transparency of content is changed for elastic transitions."
557
  msgstr ""
558
  "Jeśli będzie zaznaczone, przezroczystość treści zmieni się w trakcie "
559
  "animacji."
560
 
561
- #: ../responsive-lightbox.php:1247
562
  msgid "Opacity of the overlay."
563
  msgstr "Przezroczystość tła."
564
 
565
- #: ../responsive-lightbox.php:1257
566
  msgid "Color of the overlay."
567
  msgstr "Kolor tła."
568
 
569
- #: ../responsive-lightbox.php:1275
570
  msgid "Toggle title."
571
  msgstr "Wyświetlanie tytułu."
572
 
573
- #: ../responsive-lightbox.php:1293
574
  msgid "The position of title."
575
  msgstr "Pozycja tytułu."
576
 
577
- #: ../responsive-lightbox.php:1311
578
  msgid "Easing used for elastic animations."
579
  msgstr "Wygładzanie animacji dla trybu elastic."
580
 
581
- #: ../responsive-lightbox.php:1321
582
  msgid "Speed of the fade and elastic transitions, in milliseconds."
583
  msgstr "Podaj czas trwania animacji fade i elastic (w milisekundach)"
584
 
585
- #: ../responsive-lightbox.php:1331
586
  msgid "Speed of resizing when changing gallery items, in milliseconds."
587
  msgstr ""
588
  "Szybkość zmiany wielkości okna w trakcie przechodzenia między obrazkami (w "
589
  "milisekundach)."
590
 
591
- #: ../responsive-lightbox.php:1341
592
  msgid "Speed of the content fading while changing gallery items."
593
  msgstr "Szybkość zanikania elementów w trakcie przechodzenia między obrazkami."
594
 
595
- #: ../responsive-lightbox.php:1351
596
  msgid "Width of the video."
597
  msgstr "Szerokość video."
598
 
599
- #: ../responsive-lightbox.php:1361
600
  msgid "Height of the video."
601
  msgstr "Wysokość video."
602
 
603
- #: ../responsive-lightbox.php:1545
 
 
 
 
 
 
 
 
 
 
 
 
 
604
  msgid ""
605
  "Changes were not saved because there was attempt to save settings of "
606
  "inactive script. The site has been reloaded to the proper script settings."
@@ -608,19 +661,27 @@ msgstr ""
608
  "Zmiany nie zostały zapisane ponieważ wykryto próbę zapisu ustawień "
609
  "nieaktywnego skryptu. Strona została odświeżona z prawidłowymi ustawieniami."
610
 
611
- #: ../responsive-lightbox.php:1557
 
 
 
 
612
  msgid "Settings of SwipeBox script were restored to defaults."
613
  msgstr "Ustawienia skryptu SwipeBox zostały przywrócone."
614
 
615
- #: ../responsive-lightbox.php:1563
616
  msgid "Settings of prettyPhoto script were restored to defaults."
617
  msgstr "Ustawienia skryptu prettyPhoto zostały przywrócone."
618
 
619
- #: ../responsive-lightbox.php:1569
620
  msgid "Settings of FancyBox script were restored to defaults."
621
  msgstr "Ustawienia skryptu FancyBox zostały przywrócone."
622
 
623
- #: ../responsive-lightbox.php:1573
 
 
 
 
624
  msgid ""
625
  "Changes were not set to defaults because there was attempt to reset settings "
626
  "of inactive script. The site has been reloaded to the proper script settings."
@@ -629,64 +690,68 @@ msgstr ""
629
  "resetowania ustawień nieaktywnego skryptu. Strona została odświeżona z "
630
  "prawidłowymi ustawieniami."
631
 
632
- #: ../responsive-lightbox.php:1587 ../responsive-lightbox.php:1588
633
- #: ../responsive-lightbox.php:1602 ../responsive-lightbox.php:1634
634
  msgid "Responsive Lightbox"
635
  msgstr "Efekt Lightbox"
636
 
637
- #: ../responsive-lightbox.php:1627
638
  msgid "Reset to defaults"
639
  msgstr "Resetuj do domyślnych"
640
 
641
- #: ../responsive-lightbox.php:1636
642
  msgid "Need support?"
643
  msgstr "Potrzebujesz pomocy?"
644
 
645
- #: ../responsive-lightbox.php:1637
646
  msgid ""
647
  "If you are having problems with this plugin, please talk about them in the"
648
  msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o nich na"
649
 
650
- #: ../responsive-lightbox.php:1637
651
  msgid "Support forum"
652
  msgstr "Forum pomocy"
653
 
654
- #: ../responsive-lightbox.php:1639
655
  msgid "Do you like this plugin?"
656
  msgstr "Lubisz tę wtyczkę?"
657
 
658
- #: ../responsive-lightbox.php:1640
659
  msgid "Rate it 5"
660
  msgstr "Oceń ją na 5"
661
 
662
- #: ../responsive-lightbox.php:1640
663
  msgid "on WordPress.org"
664
  msgstr "na WordPress.org"
665
 
666
- #: ../responsive-lightbox.php:1641
667
  msgid "Blog about it & link to the"
668
  msgstr "Napisz o niej i dodaj link"
669
 
670
- #: ../responsive-lightbox.php:1641
671
  msgid "plugin page"
672
  msgstr "do strony wtyczki"
673
 
674
- #: ../responsive-lightbox.php:1642
675
  msgid "Check out our other"
676
  msgstr "Sprawdź nasze pozostałe"
677
 
678
- #: ../responsive-lightbox.php:1642
679
  msgid "WordPress plugins"
680
  msgstr "wtyczki do WordPress'a"
681
 
682
- #: ../responsive-lightbox.php:1669
 
 
 
 
683
  msgid "Are you sure you want to reset scripts settings to defaults?"
684
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia?"
685
 
686
- #: ../responsive-lightbox.php:1882
687
  msgid "Support"
688
  msgstr "Pomoc"
689
 
690
- #: ../responsive-lightbox.php:1904
691
  msgid "Settings"
692
  msgstr "Ustawienia"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
+ "POT-Creation-Date: 2013-10-28 14:23+0100\n"
5
+ "PO-Revision-Date: 2013-10-28 14:26+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: Polski\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../responsive-lightbox.php:272
19
  msgid "prettyPhoto"
20
  msgstr "prettyPhoto"
21
 
22
+ #: ../responsive-lightbox.php:274
23
  msgid "slow"
24
  msgstr "wolno"
25
 
26
+ #: ../responsive-lightbox.php:275
27
  msgid "normal"
28
  msgstr "normalnie"
29
 
30
+ #: ../responsive-lightbox.php:276
31
  msgid "fast"
32
  msgstr "szybko"
33
 
34
+ #: ../responsive-lightbox.php:279
35
  msgid "default"
36
  msgstr ""
37
 
38
+ #: ../responsive-lightbox.php:280
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
+ #: ../responsive-lightbox.php:281
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
+ #: ../responsive-lightbox.php:282
47
  msgid "light square"
48
  msgstr ""
49
 
50
+ #: ../responsive-lightbox.php:283
51
  msgid "dark square"
52
  msgstr ""
53
 
54
+ #: ../responsive-lightbox.php:284
55
  msgid "facebook"
56
  msgstr ""
57
 
58
+ #: ../responsive-lightbox.php:287
59
  msgid "window"
60
  msgstr ""
61
 
62
+ #: ../responsive-lightbox.php:288
63
  msgid "transparent"
64
  msgstr ""
65
 
66
+ #: ../responsive-lightbox.php:289
67
  msgid "opaque"
68
  msgstr ""
69
 
70
+ #: ../responsive-lightbox.php:290
71
  msgid "direct"
72
  msgstr ""
73
 
74
+ #: ../responsive-lightbox.php:291
75
  msgid "gpu"
76
  msgstr ""
77
 
78
+ #: ../responsive-lightbox.php:296
79
  msgid "SwipeBox"
80
  msgstr "SwipeBox"
81
 
82
+ #: ../responsive-lightbox.php:298
83
  msgid "CSS"
84
  msgstr "CSS"
85
 
86
+ #: ../responsive-lightbox.php:299
87
  msgid "jQuery"
88
  msgstr "jQuery"
89
 
90
+ #: ../responsive-lightbox.php:303
91
  msgid "FancyBox"
92
  msgstr "FancyBox"
93
 
94
+ #: ../responsive-lightbox.php:305
95
  msgid "elastic"
96
  msgstr ""
97
 
98
+ #: ../responsive-lightbox.php:306 ../responsive-lightbox.php:327
99
  msgid "fade"
100
  msgstr ""
101
 
102
+ #: ../responsive-lightbox.php:307
103
  msgid "none"
104
  msgstr "brak"
105
 
106
+ #: ../responsive-lightbox.php:310
107
  msgid "auto"
108
  msgstr "automatycznie"
109
 
110
+ #: ../responsive-lightbox.php:311
111
  msgid "yes"
112
  msgstr "tak"
113
 
114
+ #: ../responsive-lightbox.php:312
115
  msgid "no"
116
  msgstr "nie"
117
 
118
+ #: ../responsive-lightbox.php:315
119
  msgid "swing"
120
  msgstr ""
121
 
122
+ #: ../responsive-lightbox.php:316
123
  msgid "linear"
124
  msgstr ""
125
 
126
+ #: ../responsive-lightbox.php:319
127
  msgid "outside"
128
  msgstr ""
129
 
130
+ #: ../responsive-lightbox.php:320
131
  msgid "inside"
132
  msgstr ""
133
 
134
+ #: ../responsive-lightbox.php:321
135
  msgid "over"
136
  msgstr ""
137
 
138
+ #: ../responsive-lightbox.php:325
139
+ msgid "Nivo Lightbox"
140
+ msgstr "Nivo Lightbox"
141
+
142
+ #: ../responsive-lightbox.php:328
143
+ msgid "fade scale"
144
+ msgstr "fade scale"
145
+
146
+ #: ../responsive-lightbox.php:329
147
+ msgid "slide left"
148
+ msgstr ""
149
+
150
+ #: ../responsive-lightbox.php:330
151
+ msgid "slide right"
152
+ msgstr "slide right"
153
+
154
+ #: ../responsive-lightbox.php:331
155
+ msgid "slide up"
156
+ msgstr ""
157
+
158
+ #: ../responsive-lightbox.php:332
159
+ msgid "slide down"
160
+ msgstr "slide down"
161
+
162
+ #: ../responsive-lightbox.php:333
163
+ msgid "fall"
164
+ msgstr ""
165
+
166
+ #: ../responsive-lightbox.php:339
167
  msgid "Enable"
168
  msgstr "Włącz"
169
 
170
+ #: ../responsive-lightbox.php:340
171
  msgid "Disable"
172
  msgstr "Wyłącz"
173
 
174
+ #: ../responsive-lightbox.php:345 ../responsive-lightbox.php:446
175
  msgid "General settings"
176
  msgstr "Ustawienia ogólne"
177
 
178
+ #: ../responsive-lightbox.php:351 ../responsive-lightbox.php:457
179
  msgid "Lightbox settings"
180
  msgstr "Ustawienia lightbox"
181
 
182
+ #: ../responsive-lightbox.php:447
183
  msgid "Lightbox script"
184
  msgstr "Skrypt lightbox"
185
 
186
+ #: ../responsive-lightbox.php:448
187
  msgid "Selector"
188
  msgstr "Znacznik"
189
 
190
+ #: ../responsive-lightbox.php:449
191
  msgid "Galleries"
192
  msgstr "Galerie"
193
 
194
+ #: ../responsive-lightbox.php:450
195
  msgid "Video links"
196
  msgstr "Linki video"
197
 
198
+ #: ../responsive-lightbox.php:451
199
  msgid "Image links"
200
  msgstr "Linki obrazków"
201
 
202
+ #: ../responsive-lightbox.php:452
203
  msgid "Single images as gallery"
204
  msgstr "Galeria pojedynczych obrazków"
205
 
206
+ #: ../responsive-lightbox.php:453
207
  msgid "Deactivation"
208
  msgstr "Deaktywacja"
209
 
210
+ #: ../responsive-lightbox.php:461
211
  msgid "Animation type"
212
  msgstr "Typ animacji"
213
 
214
+ #: ../responsive-lightbox.php:462
215
  msgid "Force PNG icons"
216
  msgstr "Wymuszanie ikon PNG"
217
 
218
+ #: ../responsive-lightbox.php:463
219
  msgid "Top and bottom bars"
220
  msgstr "Górne i dolne paski"
221
 
222
+ #: ../responsive-lightbox.php:464
223
  msgid "Video max width"
224
  msgstr "Maksymalna szerokość video"
225
 
226
+ #: ../responsive-lightbox.php:468
227
  msgid "Animation speed"
228
  msgstr "Szybkość animacji"
229
 
230
+ #: ../responsive-lightbox.php:469
231
  msgid "Slideshow"
232
  msgstr "Pokaz slidów"
233
 
234
+ #: ../responsive-lightbox.php:470
235
  msgid "Slideshow autoplay"
236
  msgstr "Automatyczne odtwarzanie pokazu slajdów"
237
 
238
+ #: ../responsive-lightbox.php:471 ../responsive-lightbox.php:500
239
  msgid "Opacity"
240
  msgstr "Przezroczystość"
241
 
242
+ #: ../responsive-lightbox.php:472
243
  msgid "Show title"
244
  msgstr "Wyświetlanie tytułu"
245
 
246
+ #: ../responsive-lightbox.php:473
247
  msgid "Allow resize big images"
248
  msgstr "Powiększanie dużych zdjęć"
249
 
250
+ #: ../responsive-lightbox.php:474 ../responsive-lightbox.php:512
251
  msgid "Video width"
252
  msgstr "Szerokość video"
253
 
254
+ #: ../responsive-lightbox.php:475 ../responsive-lightbox.php:513
255
  msgid "Video height"
256
  msgstr "Wysokość video"
257
 
258
+ #: ../responsive-lightbox.php:476
259
  msgid "Theme"
260
  msgstr "Motyw"
261
 
262
+ #: ../responsive-lightbox.php:477
263
  msgid "Horizontal padding"
264
  msgstr "Odstępy w poziomie"
265
 
266
+ #: ../responsive-lightbox.php:478
267
  msgid "Hide Flash"
268
  msgstr "Ukrywanie flash"
269
 
270
+ #: ../responsive-lightbox.php:479
271
  msgid "Flash Window Mode (wmode)"
272
  msgstr "Tryb okna flash (wmode)"
273
 
274
+ #: ../responsive-lightbox.php:480
275
  msgid "Video autoplay"
276
  msgstr "Automatyczne odtwarzanie wideo"
277
 
278
+ #: ../responsive-lightbox.php:481 ../responsive-lightbox.php:489
279
  msgid "Modal"
280
  msgstr "Tryb modal"
281
 
282
+ #: ../responsive-lightbox.php:482
283
  msgid "Deeplinking"
284
  msgstr "Głębokie linki"
285
 
286
+ #: ../responsive-lightbox.php:483
287
  msgid "Overlay gallery"
288
  msgstr "Efekt overlay galerii"
289
 
290
+ #: ../responsive-lightbox.php:484
291
  msgid "Keyboard shortcuts"
292
  msgstr "Skróty klawiaturowe"
293
 
294
+ #: ../responsive-lightbox.php:485
295
  msgid "Social (Twitter, Facebook)"
296
  msgstr "Linki społeczności (Twitter, Facebook)"
297
 
298
+ #: ../responsive-lightbox.php:490
299
  msgid "Show overlay"
300
  msgstr "Wyświetlanie tła"
301
 
302
+ #: ../responsive-lightbox.php:491
303
  msgid "Show close button"
304
  msgstr "Wyświetlanie przycisku Zamknij"
305
 
306
+ #: ../responsive-lightbox.php:492
307
  msgid "Enable escape button"
308
  msgstr "Wyświetlanie przycisku Wyjdź"
309
 
310
+ #: ../responsive-lightbox.php:493
311
  msgid "Hide on overlay click"
312
  msgstr "Ukryj po kliknięciu w tło"
313
 
314
+ #: ../responsive-lightbox.php:494
315
  msgid "Hide on content click"
316
  msgstr "Ukryj po kliknięciu w treść"
317
 
318
+ #: ../responsive-lightbox.php:495
319
  msgid "Cyclic"
320
  msgstr "Cykliczność"
321
 
322
+ #: ../responsive-lightbox.php:496
323
  msgid "Show nav arrows"
324
  msgstr "Wyświetlanie strzałek"
325
 
326
+ #: ../responsive-lightbox.php:497
327
  msgid "Auto scale"
328
  msgstr "Automatyczne skalowanie"
329
 
330
+ #: ../responsive-lightbox.php:498
331
  msgid "Scrolling (in/out)"
332
  msgstr "Przewijanie"
333
 
334
+ #: ../responsive-lightbox.php:499
335
  msgid "Center on scroll"
336
  msgstr "Centrowanie przy przewijaniu"
337
 
338
+ #: ../responsive-lightbox.php:501
339
  msgid "Overlay opacity"
340
  msgstr "Przezroczystość tła"
341
 
342
+ #: ../responsive-lightbox.php:502
343
  msgid "Overlay color"
344
  msgstr "Kolor tła"
345
 
346
+ #: ../responsive-lightbox.php:503
347
  msgid "Title show"
348
  msgstr "Wyświetlanie tytułu"
349
 
350
+ #: ../responsive-lightbox.php:504
351
  msgid "Title position"
352
  msgstr "Pozycja tytułu"
353
 
354
+ #: ../responsive-lightbox.php:505
355
  msgid "Transition (in/out)"
356
  msgstr "Efekty przejścia"
357
 
358
+ #: ../responsive-lightbox.php:506
359
  msgid "Easings (in/out)"
360
  msgstr "Wygładzanie animacji"
361
 
362
+ #: ../responsive-lightbox.php:507
363
  msgid "Speed (in/out)"
364
  msgstr "Szybkość"
365
 
366
+ #: ../responsive-lightbox.php:508
367
  msgid "Change speed"
368
  msgstr "Zmień szybkość"
369
 
370
+ #: ../responsive-lightbox.php:509
371
  msgid "Change fade"
372
  msgstr "Zmień zanikanie"
373
 
374
+ #: ../responsive-lightbox.php:510
375
  msgid "Padding"
376
  msgstr "Odstęp (padding)"
377
 
378
+ #: ../responsive-lightbox.php:511
379
  msgid "Margin"
380
  msgstr "Margines (margin)"
381
 
382
+ #: ../responsive-lightbox.php:517
383
+ msgid "Effect"
384
+ msgstr "Efekt"
385
+
386
+ #: ../responsive-lightbox.php:518
387
+ msgid "Keyboard navigation"
388
+ msgstr "Nawigacja klawiaturą"
389
+
390
+ #: ../responsive-lightbox.php:519
391
+ msgid "Error message"
392
+ msgstr "Treść komunikatu o błędzie"
393
+
394
+ #: ../responsive-lightbox.php:537
395
  msgid "Select your preffered ligthbox effect script."
396
  msgstr "Wybierz preferowany efekt lightbox."
397
 
398
+ #: ../responsive-lightbox.php:547
399
  msgid "Select to which rel selector lightbox effect will be applied to."
400
  msgstr "Wybierz dla któego znacznika będzie dodawany efekt lightbox."
401
 
402
+ #: ../responsive-lightbox.php:565
403
  msgid "Add lightbox to WordPress image galleries by default."
404
  msgstr "Dodaj efekt lightbox do galerii obrazków WordPressa."
405
 
406
+ #: ../responsive-lightbox.php:583
407
  msgid "Add lightbox to YouTube and Vimeo video links by default."
408
  msgstr "Dodaj efekt lightbox do linków video (YouTube i Vimeo) WordPressa."
409
 
410
+ #: ../responsive-lightbox.php:601
411
  msgid "Add lightbox to WordPress image links by default."
412
  msgstr "Dodaj efekt lightbox do pojedynczych obrazków WordPressa."
413
 
414
+ #: ../responsive-lightbox.php:619
415
  msgid "Display single post images as a gallery."
416
  msgstr "Wyświetl pojedyncze obrazki jako pokaz sladów."
417
 
418
+ #: ../responsive-lightbox.php:637
419
  msgid "Delete settings on plugin deactivation."
420
  msgstr "Usuń ustawienia przy deaktywacji wtyczki."
421
 
422
+ #: ../responsive-lightbox.php:655
423
  msgid "Select a method of applying a lightbox effect."
424
  msgstr "Wybierz sposób dodawania efekty lightbox."
425
 
426
+ #: ../responsive-lightbox.php:673
427
  msgid ""
428
  "Disable if you don't want to top and bottom bars to be hidden after a period "
429
  "of time."
430
  msgstr "Wyłącz to, jeśli nie chcesz ukrywać górnego i dolnego paska."
431
 
432
+ #: ../responsive-lightbox.php:676
433
  msgid ""
434
  "Enter the time after which the top and bottom bars will be hidden (when "
435
  "hiding is enabled)."
437
  "Podaj czas po którym chcesz ukryć górny i dolny pasek (jeśli opcja ukrywania "
438
  "jest włączona)."
439
 
440
+ #: ../responsive-lightbox.php:687
441
  msgid "Enter the max video width in a lightbox."
442
  msgstr "Podaj maksymalną szerokość video."
443
 
444
+ #: ../responsive-lightbox.php:705
445
  msgid ""
446
  "Enable this if you're having problems with navigation icons not visible on "
447
  "some devices."
448
  msgstr "Włącz tę opcję jeśli masz problemy z wyświetlaniem ikon nawigacji."
449
 
450
+ #: ../responsive-lightbox.php:723
451
  msgid "Select animation speed for lightbox effect."
452
  msgstr "Wybierz szybkość animacji efektu lightbox."
453
 
454
+ #: ../responsive-lightbox.php:741
455
  msgid "Display images as slideshow."
456
  msgstr "Wyświetl obrazki jako pokaz sladów ."
457
 
458
+ #: ../responsive-lightbox.php:744
459
  msgid "Enter time (in miliseconds)."
460
  msgstr "Podaj czas (w milisekundach)."
461
 
462
+ #: ../responsive-lightbox.php:763
463
  msgid "Automatically start slideshow."
464
  msgstr "Automatyczne rozpoczynanie pokazu slajdów."
465
 
466
+ #: ../responsive-lightbox.php:776
467
  msgid "Value between 0 and 100, 100 for no opacity."
468
  msgstr "Wartość pomiędzy 0 i 100 (100 oznacza brak przezroczystości)."
469
 
470
+ #: ../responsive-lightbox.php:794
471
  msgid "Display image tiltle."
472
  msgstr "Wyświetlanie tytułu obrazka."
473
 
474
+ #: ../responsive-lightbox.php:812
475
  msgid "Resize the photos bigger than viewport."
476
  msgstr "Zmiana wielkość zdjęć większych niż aktualny ekran."
477
 
478
+ #: ../responsive-lightbox.php:822 ../responsive-lightbox.php:832
479
  msgid "in pixels"
480
  msgstr "w pikselach"
481
 
482
+ #: ../responsive-lightbox.php:850
483
  msgid "Select theme for lightbox effect."
484
  msgstr "Wybierz motyw dla efektu lightbox."
485
 
486
+ #: ../responsive-lightbox.php:860
487
  msgid "Horizontal padding (in pixels)."
488
  msgstr "Odstępy w poziomie (w pikselach)."
489
 
490
+ #: ../responsive-lightbox.php:878
491
  msgid ""
492
  "Hides all the flash object on a page. Enable this if flash appears over "
493
  "prettyPhoto."
495
  "Ukywa wszystkie obiekty flash na stronie. Włącz to jeśli animacje flash "
496
  "wyświetlane są nad lightboxem."
497
 
498
+ #: ../responsive-lightbox.php:896
499
  msgid "Select flash window mode."
500
  msgstr "Wybierz tryb okna flash."
501
 
502
+ #: ../responsive-lightbox.php:914
503
  msgid "Automatically start videos."
504
  msgstr "Automatycznie rozpoczynaj video."
505
 
506
+ #: ../responsive-lightbox.php:932
507
  msgid "If set to true, only the close button will close the window."
508
  msgstr ""
509
  "Jeśli będzie włączone, tylko kliknięcie przycisku spowoduje zamknięcie okna."
510
 
511
+ #: ../responsive-lightbox.php:950
512
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
513
  msgstr "Zezwól prettyPhoto na aktualizacje adresów URL i głębokie linkowanie."
514
 
515
+ #: ../responsive-lightbox.php:968
516
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
517
  msgstr ""
518
  "Jeśli będzie włączone, galeria będzie wyświetlana na cały ekran po "
519
  "najechaniu myszką."
520
 
521
+ #: ../responsive-lightbox.php:986
522
  msgid "Set to false if you open forms inside prettyPhoto."
523
  msgstr "Wyłącz to jeśli chcesz otwierać formularze wewnątrz prettyPhoto."
524
 
525
+ #: ../responsive-lightbox.php:1004
526
  msgid "Display links to Facebook and Twitter."
527
  msgstr "Wyświetl linki do Facebboka i Twittera."
528
 
529
+ #: ../responsive-lightbox.php:1022
530
  msgid "The transition type."
531
  msgstr "Typ animacji."
532
 
533
+ #: ../responsive-lightbox.php:1032
534
  msgid "Space between FancyBox wrapper and content."
535
  msgstr "Przestrzeń między FancyBox a treścią"
536
 
537
+ #: ../responsive-lightbox.php:1042
538
  msgid "Space between viewport and FancyBox wrapper."
539
  msgstr "Przestrzeń między ekranem a Fancybox"
540
 
541
+ #: ../responsive-lightbox.php:1060
542
  msgid ""
543
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
544
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
548
  "TRUE, natomiast \"hideOnOverlayClick\", \"hideOnContentClick\", "
549
  "\"enableEscapeButton\", \"showCloseButton\" zostaną ustawione na FALSE."
550
 
551
+ #: ../responsive-lightbox.php:1078
552
  msgid "Toggle overlay."
553
  msgstr "Włącz tło."
554
 
555
+ #: ../responsive-lightbox.php:1096
556
  msgid "Toggle close button."
557
  msgstr "Włącz przycisk Zamknij."
558
 
559
+ #: ../responsive-lightbox.php:1114
560
  msgid "Toggle if pressing Esc button closes FancyBox."
561
  msgstr "Włącz zamykanie FancyBox przy pomocy Esc."
562
 
563
+ #: ../responsive-lightbox.php:1132
564
  msgid "Toggle if clicking the overlay should close FancyBox."
565
  msgstr "Włącz zamykanie FancyBox kliknięciem w tło."
566
 
567
+ #: ../responsive-lightbox.php:1150
568
  msgid "Toggle if clicking the content should close FancyBox."
569
  msgstr "Włącz zamykanie FancyBox kliknięciem w treść."
570
 
571
+ #: ../responsive-lightbox.php:1168
572
  msgid ""
573
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
574
  msgstr "Jeśli będzie włączone, galerie będą wyświetlane cyklicznie."
575
 
576
+ #: ../responsive-lightbox.php:1186
577
  msgid "Toggle navigation arrows."
578
  msgstr "Włącz strzałki nawigacyjne."
579
 
580
+ #: ../responsive-lightbox.php:1204
581
  msgid "If true, FancyBox is scaled to fit in viewport."
582
  msgstr "Jeśli będzie włączone, FancyBox będzie skalowany do rozmiaru okna."
583
 
584
+ #: ../responsive-lightbox.php:1222
585
  msgid "Set the overflow CSS property to create or hide scrollbars."
586
  msgstr ""
587
  "Ustaw parametr overflow dw CSS aby tworzyć lub ukrywać elementy nawigacji."
588
 
589
+ #: ../responsive-lightbox.php:1240
590
  msgid "When true, FancyBox is centered while scrolling page."
591
  msgstr ""
592
  "Jeśli będzie zaznaczone, FancyBox będzie wycentrowany w trakcie przewijania "
593
  "strony."
594
 
595
+ #: ../responsive-lightbox.php:1258
596
  msgid "When true, transparency of content is changed for elastic transitions."
597
  msgstr ""
598
  "Jeśli będzie zaznaczone, przezroczystość treści zmieni się w trakcie "
599
  "animacji."
600
 
601
+ #: ../responsive-lightbox.php:1271
602
  msgid "Opacity of the overlay."
603
  msgstr "Przezroczystość tła."
604
 
605
+ #: ../responsive-lightbox.php:1281
606
  msgid "Color of the overlay."
607
  msgstr "Kolor tła."
608
 
609
+ #: ../responsive-lightbox.php:1299
610
  msgid "Toggle title."
611
  msgstr "Wyświetlanie tytułu."
612
 
613
+ #: ../responsive-lightbox.php:1317
614
  msgid "The position of title."
615
  msgstr "Pozycja tytułu."
616
 
617
+ #: ../responsive-lightbox.php:1335
618
  msgid "Easing used for elastic animations."
619
  msgstr "Wygładzanie animacji dla trybu elastic."
620
 
621
+ #: ../responsive-lightbox.php:1345
622
  msgid "Speed of the fade and elastic transitions, in milliseconds."
623
  msgstr "Podaj czas trwania animacji fade i elastic (w milisekundach)"
624
 
625
+ #: ../responsive-lightbox.php:1355
626
  msgid "Speed of resizing when changing gallery items, in milliseconds."
627
  msgstr ""
628
  "Szybkość zmiany wielkości okna w trakcie przechodzenia między obrazkami (w "
629
  "milisekundach)."
630
 
631
+ #: ../responsive-lightbox.php:1365
632
  msgid "Speed of the content fading while changing gallery items."
633
  msgstr "Szybkość zanikania elementów w trakcie przechodzenia między obrazkami."
634
 
635
+ #: ../responsive-lightbox.php:1375
636
  msgid "Width of the video."
637
  msgstr "Szerokość video."
638
 
639
+ #: ../responsive-lightbox.php:1385
640
  msgid "Height of the video."
641
  msgstr "Wysokość video."
642
 
643
+ #: ../responsive-lightbox.php:1403
644
+ msgid "The effect to use when showing the lightbox."
645
+ msgstr "Wybierz efekt, który chcesz zastosować do wyświetlania lightboxa."
646
+
647
+ #: ../responsive-lightbox.php:1421
648
+ msgid "Enable/Disable keyboard navigation (left/right/escape)."
649
+ msgstr ""
650
+ "Włącz / Wyłącz nawigację klawiaturą (strzałka w lewo, w prawo i przycisk ESC)"
651
+
652
+ #: ../responsive-lightbox.php:1431
653
+ msgid "Error message if the content cannot be loaded."
654
+ msgstr "Komunikat w przypadku gdy nie można załądować treści."
655
+
656
+ #: ../responsive-lightbox.php:1626
657
  msgid ""
658
  "Changes were not saved because there was attempt to save settings of "
659
  "inactive script. The site has been reloaded to the proper script settings."
661
  "Zmiany nie zostały zapisane ponieważ wykryto próbę zapisu ustawień "
662
  "nieaktywnego skryptu. Strona została odświeżona z prawidłowymi ustawieniami."
663
 
664
+ #: ../responsive-lightbox.php:1636
665
+ msgid "Settings restored to defaults."
666
+ msgstr "Ustawienia zostały przywrócone do domyślnych."
667
+
668
+ #: ../responsive-lightbox.php:1644
669
  msgid "Settings of SwipeBox script were restored to defaults."
670
  msgstr "Ustawienia skryptu SwipeBox zostały przywrócone."
671
 
672
+ #: ../responsive-lightbox.php:1650
673
  msgid "Settings of prettyPhoto script were restored to defaults."
674
  msgstr "Ustawienia skryptu prettyPhoto zostały przywrócone."
675
 
676
+ #: ../responsive-lightbox.php:1656
677
  msgid "Settings of FancyBox script were restored to defaults."
678
  msgstr "Ustawienia skryptu FancyBox zostały przywrócone."
679
 
680
+ #: ../responsive-lightbox.php:1662
681
+ msgid "Settings of Nivo script were restored to defaults."
682
+ msgstr "Ustawienia skryptu Nivo Lightbox zostały przywrócone."
683
+
684
+ #: ../responsive-lightbox.php:1666
685
  msgid ""
686
  "Changes were not set to defaults because there was attempt to reset settings "
687
  "of inactive script. The site has been reloaded to the proper script settings."
690
  "resetowania ustawień nieaktywnego skryptu. Strona została odświeżona z "
691
  "prawidłowymi ustawieniami."
692
 
693
+ #: ../responsive-lightbox.php:1680 ../responsive-lightbox.php:1681
694
+ #: ../responsive-lightbox.php:1695 ../responsive-lightbox.php:1727
695
  msgid "Responsive Lightbox"
696
  msgstr "Efekt Lightbox"
697
 
698
+ #: ../responsive-lightbox.php:1720
699
  msgid "Reset to defaults"
700
  msgstr "Resetuj do domyślnych"
701
 
702
+ #: ../responsive-lightbox.php:1729
703
  msgid "Need support?"
704
  msgstr "Potrzebujesz pomocy?"
705
 
706
+ #: ../responsive-lightbox.php:1730
707
  msgid ""
708
  "If you are having problems with this plugin, please talk about them in the"
709
  msgstr "Jeśli masz jakiekolwiek problemy z tą wtyczką, powiedz o nich na"
710
 
711
+ #: ../responsive-lightbox.php:1730
712
  msgid "Support forum"
713
  msgstr "Forum pomocy"
714
 
715
+ #: ../responsive-lightbox.php:1732
716
  msgid "Do you like this plugin?"
717
  msgstr "Lubisz tę wtyczkę?"
718
 
719
+ #: ../responsive-lightbox.php:1733
720
  msgid "Rate it 5"
721
  msgstr "Oceń ją na 5"
722
 
723
+ #: ../responsive-lightbox.php:1733
724
  msgid "on WordPress.org"
725
  msgstr "na WordPress.org"
726
 
727
+ #: ../responsive-lightbox.php:1734
728
  msgid "Blog about it & link to the"
729
  msgstr "Napisz o niej i dodaj link"
730
 
731
+ #: ../responsive-lightbox.php:1734
732
  msgid "plugin page"
733
  msgstr "do strony wtyczki"
734
 
735
+ #: ../responsive-lightbox.php:1735
736
  msgid "Check out our other"
737
  msgstr "Sprawdź nasze pozostałe"
738
 
739
+ #: ../responsive-lightbox.php:1735
740
  msgid "WordPress plugins"
741
  msgstr "wtyczki do WordPress'a"
742
 
743
+ #: ../responsive-lightbox.php:1762
744
+ msgid "Are you sure you want to reset these settings to defaults?"
745
+ msgstr "Jesteś pewny, że chcesz zresetować ustawienia do domyślnych?"
746
+
747
+ #: ../responsive-lightbox.php:1763
748
  msgid "Are you sure you want to reset scripts settings to defaults?"
749
  msgstr "Jesteś pewny, że chcesz zresetować ustawienia?"
750
 
751
+ #: ../responsive-lightbox.php:2009
752
  msgid "Support"
753
  msgstr "Pomoc"
754
 
755
+ #: ../responsive-lightbox.php:2031
756
  msgid "Settings"
757
  msgstr "Ustawienia"
languages/responsive-lightbox.mo ADDED
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: 2013-10-15 11:32+0100\n"
5
- "PO-Revision-Date: 2013-10-15 11:32+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: English\n"
@@ -15,656 +15,720 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../responsive-lightbox.php:267
19
  msgid "prettyPhoto"
20
  msgstr ""
21
 
22
- #: ../responsive-lightbox.php:269
23
  msgid "slow"
24
  msgstr ""
25
 
26
- #: ../responsive-lightbox.php:270
27
  msgid "normal"
28
  msgstr ""
29
 
30
- #: ../responsive-lightbox.php:271
31
  msgid "fast"
32
  msgstr ""
33
 
34
- #: ../responsive-lightbox.php:274
35
  msgid "default"
36
  msgstr ""
37
 
38
- #: ../responsive-lightbox.php:275
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
- #: ../responsive-lightbox.php:276
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
- #: ../responsive-lightbox.php:277
47
  msgid "light square"
48
  msgstr ""
49
 
50
- #: ../responsive-lightbox.php:278
51
  msgid "dark square"
52
  msgstr ""
53
 
54
- #: ../responsive-lightbox.php:279
55
  msgid "facebook"
56
  msgstr ""
57
 
58
- #: ../responsive-lightbox.php:282
59
  msgid "window"
60
  msgstr ""
61
 
62
- #: ../responsive-lightbox.php:283
63
  msgid "transparent"
64
  msgstr ""
65
 
66
- #: ../responsive-lightbox.php:284
67
  msgid "opaque"
68
  msgstr ""
69
 
70
- #: ../responsive-lightbox.php:285
71
  msgid "direct"
72
  msgstr ""
73
 
74
- #: ../responsive-lightbox.php:286
75
  msgid "gpu"
76
  msgstr ""
77
 
78
- #: ../responsive-lightbox.php:291
79
  msgid "SwipeBox"
80
  msgstr ""
81
 
82
- #: ../responsive-lightbox.php:293
83
  msgid "CSS"
84
  msgstr ""
85
 
86
- #: ../responsive-lightbox.php:294
87
  msgid "jQuery"
88
  msgstr ""
89
 
90
- #: ../responsive-lightbox.php:298
91
  msgid "FancyBox"
92
  msgstr ""
93
 
94
- #: ../responsive-lightbox.php:300
95
  msgid "elastic"
96
  msgstr ""
97
 
98
- #: ../responsive-lightbox.php:301
99
  msgid "fade"
100
  msgstr ""
101
 
102
- #: ../responsive-lightbox.php:302
103
  msgid "none"
104
  msgstr ""
105
 
106
- #: ../responsive-lightbox.php:305
107
  msgid "auto"
108
  msgstr ""
109
 
110
- #: ../responsive-lightbox.php:306
111
  msgid "yes"
112
  msgstr ""
113
 
114
- #: ../responsive-lightbox.php:307
115
  msgid "no"
116
  msgstr ""
117
 
118
- #: ../responsive-lightbox.php:310
119
  msgid "swing"
120
  msgstr ""
121
 
122
- #: ../responsive-lightbox.php:311
123
  msgid "linear"
124
  msgstr ""
125
 
126
- #: ../responsive-lightbox.php:314
127
  msgid "outside"
128
  msgstr ""
129
 
130
- #: ../responsive-lightbox.php:315
131
  msgid "inside"
132
  msgstr ""
133
 
134
- #: ../responsive-lightbox.php:316
135
  msgid "over"
136
  msgstr ""
137
 
138
- #: ../responsive-lightbox.php:322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "Enable"
140
  msgstr ""
141
 
142
- #: ../responsive-lightbox.php:323
143
  msgid "Disable"
144
  msgstr ""
145
 
146
- #: ../responsive-lightbox.php:328 ../responsive-lightbox.php:428
147
  msgid "General settings"
148
  msgstr ""
149
 
150
- #: ../responsive-lightbox.php:333 ../responsive-lightbox.php:439
151
  msgid "Lightbox settings"
152
  msgstr ""
153
 
154
- #: ../responsive-lightbox.php:429
155
  msgid "Lightbox script"
156
  msgstr ""
157
 
158
- #: ../responsive-lightbox.php:430
159
  msgid "Selector"
160
  msgstr ""
161
 
162
- #: ../responsive-lightbox.php:431
163
  msgid "Galleries"
164
  msgstr ""
165
 
166
- #: ../responsive-lightbox.php:432
167
  msgid "Video links"
168
  msgstr ""
169
 
170
- #: ../responsive-lightbox.php:433
171
  msgid "Image links"
172
  msgstr ""
173
 
174
- #: ../responsive-lightbox.php:434
175
  msgid "Single images as gallery"
176
  msgstr ""
177
 
178
- #: ../responsive-lightbox.php:435
179
  msgid "Deactivation"
180
  msgstr ""
181
 
182
- #: ../responsive-lightbox.php:443
183
  msgid "Animation type"
184
  msgstr ""
185
 
186
- #: ../responsive-lightbox.php:444
187
  msgid "Force PNG icons"
188
  msgstr ""
189
 
190
- #: ../responsive-lightbox.php:445
191
  msgid "Top and bottom bars"
192
  msgstr ""
193
 
194
- #: ../responsive-lightbox.php:446
195
  msgid "Video max width"
196
  msgstr ""
197
 
198
- #: ../responsive-lightbox.php:450
199
  msgid "Animation speed"
200
  msgstr ""
201
 
202
- #: ../responsive-lightbox.php:451
203
  msgid "Slideshow"
204
  msgstr ""
205
 
206
- #: ../responsive-lightbox.php:452
207
  msgid "Slideshow autoplay"
208
  msgstr ""
209
 
210
- #: ../responsive-lightbox.php:453 ../responsive-lightbox.php:482
211
  msgid "Opacity"
212
  msgstr ""
213
 
214
- #: ../responsive-lightbox.php:454
215
  msgid "Show title"
216
  msgstr ""
217
 
218
- #: ../responsive-lightbox.php:455
219
  msgid "Allow resize big images"
220
  msgstr ""
221
 
222
- #: ../responsive-lightbox.php:456 ../responsive-lightbox.php:494
223
  msgid "Video width"
224
  msgstr ""
225
 
226
- #: ../responsive-lightbox.php:457 ../responsive-lightbox.php:495
227
  msgid "Video height"
228
  msgstr ""
229
 
230
- #: ../responsive-lightbox.php:458
231
  msgid "Theme"
232
  msgstr ""
233
 
234
- #: ../responsive-lightbox.php:459
235
  msgid "Horizontal padding"
236
  msgstr ""
237
 
238
- #: ../responsive-lightbox.php:460
239
  msgid "Hide Flash"
240
  msgstr ""
241
 
242
- #: ../responsive-lightbox.php:461
243
  msgid "Flash Window Mode (wmode)"
244
  msgstr ""
245
 
246
- #: ../responsive-lightbox.php:462
247
  msgid "Video autoplay"
248
  msgstr ""
249
 
250
- #: ../responsive-lightbox.php:463 ../responsive-lightbox.php:471
251
  msgid "Modal"
252
  msgstr ""
253
 
254
- #: ../responsive-lightbox.php:464
255
  msgid "Deeplinking"
256
  msgstr ""
257
 
258
- #: ../responsive-lightbox.php:465
259
  msgid "Overlay gallery"
260
  msgstr ""
261
 
262
- #: ../responsive-lightbox.php:466
263
  msgid "Keyboard shortcuts"
264
  msgstr ""
265
 
266
- #: ../responsive-lightbox.php:467
267
  msgid "Social (Twitter, Facebook)"
268
  msgstr ""
269
 
270
- #: ../responsive-lightbox.php:472
271
  msgid "Show overlay"
272
  msgstr ""
273
 
274
- #: ../responsive-lightbox.php:473
275
  msgid "Show close button"
276
  msgstr ""
277
 
278
- #: ../responsive-lightbox.php:474
279
  msgid "Enable escape button"
280
  msgstr ""
281
 
282
- #: ../responsive-lightbox.php:475
283
  msgid "Hide on overlay click"
284
  msgstr ""
285
 
286
- #: ../responsive-lightbox.php:476
287
  msgid "Hide on content click"
288
  msgstr ""
289
 
290
- #: ../responsive-lightbox.php:477
291
  msgid "Cyclic"
292
  msgstr ""
293
 
294
- #: ../responsive-lightbox.php:478
295
  msgid "Show nav arrows"
296
  msgstr ""
297
 
298
- #: ../responsive-lightbox.php:479
299
  msgid "Auto scale"
300
  msgstr ""
301
 
302
- #: ../responsive-lightbox.php:480
303
  msgid "Scrolling (in/out)"
304
  msgstr ""
305
 
306
- #: ../responsive-lightbox.php:481
307
  msgid "Center on scroll"
308
  msgstr ""
309
 
310
- #: ../responsive-lightbox.php:483
311
  msgid "Overlay opacity"
312
  msgstr ""
313
 
314
- #: ../responsive-lightbox.php:484
315
  msgid "Overlay color"
316
  msgstr ""
317
 
318
- #: ../responsive-lightbox.php:485
319
  msgid "Title show"
320
  msgstr ""
321
 
322
- #: ../responsive-lightbox.php:486
323
  msgid "Title position"
324
  msgstr ""
325
 
326
- #: ../responsive-lightbox.php:487
327
  msgid "Transition (in/out)"
328
  msgstr ""
329
 
330
- #: ../responsive-lightbox.php:488
331
  msgid "Easings (in/out)"
332
  msgstr ""
333
 
334
- #: ../responsive-lightbox.php:489
335
  msgid "Speed (in/out)"
336
  msgstr ""
337
 
338
- #: ../responsive-lightbox.php:490
339
  msgid "Change speed"
340
  msgstr ""
341
 
342
- #: ../responsive-lightbox.php:491
343
  msgid "Change fade"
344
  msgstr ""
345
 
346
- #: ../responsive-lightbox.php:492
347
  msgid "Padding"
348
  msgstr ""
349
 
350
- #: ../responsive-lightbox.php:493
351
  msgid "Margin"
352
  msgstr ""
353
 
354
- #: ../responsive-lightbox.php:513
 
 
 
 
 
 
 
 
 
 
 
 
355
  msgid "Select your preffered ligthbox effect script."
356
  msgstr ""
357
 
358
- #: ../responsive-lightbox.php:523
359
  msgid "Select to which rel selector lightbox effect will be applied to."
360
  msgstr ""
361
 
362
- #: ../responsive-lightbox.php:541
363
  msgid "Add lightbox to WordPress image galleries by default."
364
  msgstr ""
365
 
366
- #: ../responsive-lightbox.php:559
367
  msgid "Add lightbox to YouTube and Vimeo video links by default."
368
  msgstr ""
369
 
370
- #: ../responsive-lightbox.php:577
371
  msgid "Add lightbox to WordPress image links by default."
372
  msgstr ""
373
 
374
- #: ../responsive-lightbox.php:595
375
  msgid "Display single post images as a gallery."
376
  msgstr ""
377
 
378
- #: ../responsive-lightbox.php:613
379
  msgid "Delete settings on plugin deactivation."
380
  msgstr ""
381
 
382
- #: ../responsive-lightbox.php:631
383
  msgid "Select a method of applying a lightbox effect."
384
  msgstr ""
385
 
386
- #: ../responsive-lightbox.php:649
387
  msgid ""
388
  "Disable if you don't want to top and bottom bars to be hidden after a period "
389
  "of time."
390
  msgstr ""
391
 
392
- #: ../responsive-lightbox.php:652
393
  msgid ""
394
  "Enter the time after which the top and bottom bars will be hidden (when "
395
  "hiding is enabled)."
396
  msgstr ""
397
 
398
- #: ../responsive-lightbox.php:663
399
  msgid "Enter the max video width in a lightbox."
400
  msgstr ""
401
 
402
- #: ../responsive-lightbox.php:681
403
  msgid ""
404
  "Enable this if you're having problems with navigation icons not visible on "
405
  "some devices."
406
  msgstr ""
407
 
408
- #: ../responsive-lightbox.php:699
409
  msgid "Select animation speed for lightbox effect."
410
  msgstr ""
411
 
412
- #: ../responsive-lightbox.php:717
413
  msgid "Display images as slideshow."
414
  msgstr ""
415
 
416
- #: ../responsive-lightbox.php:720
417
  msgid "Enter time (in miliseconds)."
418
  msgstr ""
419
 
420
- #: ../responsive-lightbox.php:739
421
  msgid "Automatically start slideshow."
422
  msgstr ""
423
 
424
- #: ../responsive-lightbox.php:752
425
  msgid "Value between 0 and 100, 100 for no opacity."
426
  msgstr ""
427
 
428
- #: ../responsive-lightbox.php:770
429
  msgid "Display image tiltle."
430
  msgstr ""
431
 
432
- #: ../responsive-lightbox.php:788
433
  msgid "Resize the photos bigger than viewport."
434
  msgstr ""
435
 
436
- #: ../responsive-lightbox.php:798 ../responsive-lightbox.php:808
437
  msgid "in pixels"
438
  msgstr ""
439
 
440
- #: ../responsive-lightbox.php:826
441
  msgid "Select theme for lightbox effect."
442
  msgstr ""
443
 
444
- #: ../responsive-lightbox.php:836
445
  msgid "Horizontal padding (in pixels)."
446
  msgstr ""
447
 
448
- #: ../responsive-lightbox.php:854
449
  msgid ""
450
  "Hides all the flash object on a page. Enable this if flash appears over "
451
  "prettyPhoto."
452
  msgstr ""
453
 
454
- #: ../responsive-lightbox.php:872
455
  msgid "Select flash window mode."
456
  msgstr ""
457
 
458
- #: ../responsive-lightbox.php:890
459
  msgid "Automatically start videos."
460
  msgstr ""
461
 
462
- #: ../responsive-lightbox.php:908
463
  msgid "If set to true, only the close button will close the window."
464
  msgstr ""
465
 
466
- #: ../responsive-lightbox.php:926
467
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
468
  msgstr ""
469
 
470
- #: ../responsive-lightbox.php:944
471
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
472
  msgstr ""
473
 
474
- #: ../responsive-lightbox.php:962
475
  msgid "Set to false if you open forms inside prettyPhoto."
476
  msgstr ""
477
 
478
- #: ../responsive-lightbox.php:980
479
  msgid "Display links to Facebook and Twitter."
480
  msgstr ""
481
 
482
- #: ../responsive-lightbox.php:998
483
  msgid "The transition type."
484
  msgstr ""
485
 
486
- #: ../responsive-lightbox.php:1008
487
  msgid "Space between FancyBox wrapper and content."
488
  msgstr ""
489
 
490
- #: ../responsive-lightbox.php:1018
491
  msgid "Space between viewport and FancyBox wrapper."
492
  msgstr ""
493
 
494
- #: ../responsive-lightbox.php:1036
495
  msgid ""
496
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
497
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
498
  "to FALSE."
499
  msgstr ""
500
 
501
- #: ../responsive-lightbox.php:1054
502
  msgid "Toggle overlay."
503
  msgstr ""
504
 
505
- #: ../responsive-lightbox.php:1072
506
  msgid "Toggle close button."
507
  msgstr ""
508
 
509
- #: ../responsive-lightbox.php:1090
510
  msgid "Toggle if pressing Esc button closes FancyBox."
511
  msgstr ""
512
 
513
- #: ../responsive-lightbox.php:1108
514
  msgid "Toggle if clicking the overlay should close FancyBox."
515
  msgstr ""
516
 
517
- #: ../responsive-lightbox.php:1126
518
  msgid "Toggle if clicking the content should close FancyBox."
519
  msgstr ""
520
 
521
- #: ../responsive-lightbox.php:1144
522
  msgid ""
523
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
524
  msgstr ""
525
 
526
- #: ../responsive-lightbox.php:1162
527
  msgid "Toggle navigation arrows."
528
  msgstr ""
529
 
530
- #: ../responsive-lightbox.php:1180
531
  msgid "If true, FancyBox is scaled to fit in viewport."
532
  msgstr ""
533
 
534
- #: ../responsive-lightbox.php:1198
535
  msgid "Set the overflow CSS property to create or hide scrollbars."
536
  msgstr ""
537
 
538
- #: ../responsive-lightbox.php:1216
539
  msgid "When true, FancyBox is centered while scrolling page."
540
  msgstr ""
541
 
542
- #: ../responsive-lightbox.php:1234
543
  msgid "When true, transparency of content is changed for elastic transitions."
544
  msgstr ""
545
 
546
- #: ../responsive-lightbox.php:1247
547
  msgid "Opacity of the overlay."
548
  msgstr ""
549
 
550
- #: ../responsive-lightbox.php:1257
551
  msgid "Color of the overlay."
552
  msgstr ""
553
 
554
- #: ../responsive-lightbox.php:1275
555
  msgid "Toggle title."
556
  msgstr ""
557
 
558
- #: ../responsive-lightbox.php:1293
559
  msgid "The position of title."
560
  msgstr ""
561
 
562
- #: ../responsive-lightbox.php:1311
563
  msgid "Easing used for elastic animations."
564
  msgstr ""
565
 
566
- #: ../responsive-lightbox.php:1321
567
  msgid "Speed of the fade and elastic transitions, in milliseconds."
568
  msgstr ""
569
 
570
- #: ../responsive-lightbox.php:1331
571
  msgid "Speed of resizing when changing gallery items, in milliseconds."
572
  msgstr ""
573
 
574
- #: ../responsive-lightbox.php:1341
575
  msgid "Speed of the content fading while changing gallery items."
576
  msgstr ""
577
 
578
- #: ../responsive-lightbox.php:1351
579
  msgid "Width of the video."
580
  msgstr ""
581
 
582
- #: ../responsive-lightbox.php:1361
583
  msgid "Height of the video."
584
  msgstr ""
585
 
586
- #: ../responsive-lightbox.php:1545
 
 
 
 
 
 
 
 
 
 
 
 
587
  msgid ""
588
  "Changes were not saved because there was attempt to save settings of "
589
  "inactive script. The site has been reloaded to the proper script settings."
590
  msgstr ""
591
 
592
- #: ../responsive-lightbox.php:1557
 
 
 
 
593
  msgid "Settings of SwipeBox script were restored to defaults."
594
  msgstr ""
595
 
596
- #: ../responsive-lightbox.php:1563
597
  msgid "Settings of prettyPhoto script were restored to defaults."
598
  msgstr ""
599
 
600
- #: ../responsive-lightbox.php:1569
601
  msgid "Settings of FancyBox script were restored to defaults."
602
  msgstr ""
603
 
604
- #: ../responsive-lightbox.php:1573
 
 
 
 
605
  msgid ""
606
  "Changes were not set to defaults because there was attempt to reset settings "
607
  "of inactive script. The site has been reloaded to the proper script settings."
608
  msgstr ""
609
 
610
- #: ../responsive-lightbox.php:1587 ../responsive-lightbox.php:1588
611
- #: ../responsive-lightbox.php:1602 ../responsive-lightbox.php:1634
612
  msgid "Responsive Lightbox"
613
  msgstr ""
614
 
615
- #: ../responsive-lightbox.php:1627
616
  msgid "Reset to defaults"
617
  msgstr ""
618
 
619
- #: ../responsive-lightbox.php:1636
620
  msgid "Need support?"
621
  msgstr ""
622
 
623
- #: ../responsive-lightbox.php:1637
624
  msgid ""
625
  "If you are having problems with this plugin, please talk about them in the"
626
  msgstr ""
627
 
628
- #: ../responsive-lightbox.php:1637
629
  msgid "Support forum"
630
  msgstr ""
631
 
632
- #: ../responsive-lightbox.php:1639
633
  msgid "Do you like this plugin?"
634
  msgstr ""
635
 
636
- #: ../responsive-lightbox.php:1640
637
  msgid "Rate it 5"
638
  msgstr ""
639
 
640
- #: ../responsive-lightbox.php:1640
641
  msgid "on WordPress.org"
642
  msgstr ""
643
 
644
- #: ../responsive-lightbox.php:1641
645
  msgid "Blog about it & link to the"
646
  msgstr ""
647
 
648
- #: ../responsive-lightbox.php:1641
649
  msgid "plugin page"
650
  msgstr ""
651
 
652
- #: ../responsive-lightbox.php:1642
653
  msgid "Check out our other"
654
  msgstr ""
655
 
656
- #: ../responsive-lightbox.php:1642
657
  msgid "WordPress plugins"
658
  msgstr ""
659
 
660
- #: ../responsive-lightbox.php:1669
 
 
 
 
661
  msgid "Are you sure you want to reset scripts settings to defaults?"
662
  msgstr ""
663
 
664
- #: ../responsive-lightbox.php:1882
665
  msgid "Support"
666
  msgstr ""
667
 
668
- #: ../responsive-lightbox.php:1904
669
  msgid "Settings"
670
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Responsive Lightbox\n"
4
+ "POT-Creation-Date: 2013-10-28 14:23+0100\n"
5
+ "PO-Revision-Date: 2013-10-28 14:23+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: English\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../responsive-lightbox.php:272
19
  msgid "prettyPhoto"
20
  msgstr ""
21
 
22
+ #: ../responsive-lightbox.php:274
23
  msgid "slow"
24
  msgstr ""
25
 
26
+ #: ../responsive-lightbox.php:275
27
  msgid "normal"
28
  msgstr ""
29
 
30
+ #: ../responsive-lightbox.php:276
31
  msgid "fast"
32
  msgstr ""
33
 
34
+ #: ../responsive-lightbox.php:279
35
  msgid "default"
36
  msgstr ""
37
 
38
+ #: ../responsive-lightbox.php:280
39
  msgid "light rounded"
40
  msgstr ""
41
 
42
+ #: ../responsive-lightbox.php:281
43
  msgid "dark rounded"
44
  msgstr ""
45
 
46
+ #: ../responsive-lightbox.php:282
47
  msgid "light square"
48
  msgstr ""
49
 
50
+ #: ../responsive-lightbox.php:283
51
  msgid "dark square"
52
  msgstr ""
53
 
54
+ #: ../responsive-lightbox.php:284
55
  msgid "facebook"
56
  msgstr ""
57
 
58
+ #: ../responsive-lightbox.php:287
59
  msgid "window"
60
  msgstr ""
61
 
62
+ #: ../responsive-lightbox.php:288
63
  msgid "transparent"
64
  msgstr ""
65
 
66
+ #: ../responsive-lightbox.php:289
67
  msgid "opaque"
68
  msgstr ""
69
 
70
+ #: ../responsive-lightbox.php:290
71
  msgid "direct"
72
  msgstr ""
73
 
74
+ #: ../responsive-lightbox.php:291
75
  msgid "gpu"
76
  msgstr ""
77
 
78
+ #: ../responsive-lightbox.php:296
79
  msgid "SwipeBox"
80
  msgstr ""
81
 
82
+ #: ../responsive-lightbox.php:298
83
  msgid "CSS"
84
  msgstr ""
85
 
86
+ #: ../responsive-lightbox.php:299
87
  msgid "jQuery"
88
  msgstr ""
89
 
90
+ #: ../responsive-lightbox.php:303
91
  msgid "FancyBox"
92
  msgstr ""
93
 
94
+ #: ../responsive-lightbox.php:305
95
  msgid "elastic"
96
  msgstr ""
97
 
98
+ #: ../responsive-lightbox.php:306 ../responsive-lightbox.php:327
99
  msgid "fade"
100
  msgstr ""
101
 
102
+ #: ../responsive-lightbox.php:307
103
  msgid "none"
104
  msgstr ""
105
 
106
+ #: ../responsive-lightbox.php:310
107
  msgid "auto"
108
  msgstr ""
109
 
110
+ #: ../responsive-lightbox.php:311
111
  msgid "yes"
112
  msgstr ""
113
 
114
+ #: ../responsive-lightbox.php:312
115
  msgid "no"
116
  msgstr ""
117
 
118
+ #: ../responsive-lightbox.php:315
119
  msgid "swing"
120
  msgstr ""
121
 
122
+ #: ../responsive-lightbox.php:316
123
  msgid "linear"
124
  msgstr ""
125
 
126
+ #: ../responsive-lightbox.php:319
127
  msgid "outside"
128
  msgstr ""
129
 
130
+ #: ../responsive-lightbox.php:320
131
  msgid "inside"
132
  msgstr ""
133
 
134
+ #: ../responsive-lightbox.php:321
135
  msgid "over"
136
  msgstr ""
137
 
138
+ #: ../responsive-lightbox.php:325
139
+ msgid "Nivo Lightbox"
140
+ msgstr ""
141
+
142
+ #: ../responsive-lightbox.php:328
143
+ msgid "fade scale"
144
+ msgstr ""
145
+
146
+ #: ../responsive-lightbox.php:329
147
+ msgid "slide left"
148
+ msgstr ""
149
+
150
+ #: ../responsive-lightbox.php:330
151
+ msgid "slide right"
152
+ msgstr ""
153
+
154
+ #: ../responsive-lightbox.php:331
155
+ msgid "slide up"
156
+ msgstr ""
157
+
158
+ #: ../responsive-lightbox.php:332
159
+ msgid "slide down"
160
+ msgstr ""
161
+
162
+ #: ../responsive-lightbox.php:333
163
+ msgid "fall"
164
+ msgstr ""
165
+
166
+ #: ../responsive-lightbox.php:339
167
  msgid "Enable"
168
  msgstr ""
169
 
170
+ #: ../responsive-lightbox.php:340
171
  msgid "Disable"
172
  msgstr ""
173
 
174
+ #: ../responsive-lightbox.php:345 ../responsive-lightbox.php:446
175
  msgid "General settings"
176
  msgstr ""
177
 
178
+ #: ../responsive-lightbox.php:351 ../responsive-lightbox.php:457
179
  msgid "Lightbox settings"
180
  msgstr ""
181
 
182
+ #: ../responsive-lightbox.php:447
183
  msgid "Lightbox script"
184
  msgstr ""
185
 
186
+ #: ../responsive-lightbox.php:448
187
  msgid "Selector"
188
  msgstr ""
189
 
190
+ #: ../responsive-lightbox.php:449
191
  msgid "Galleries"
192
  msgstr ""
193
 
194
+ #: ../responsive-lightbox.php:450
195
  msgid "Video links"
196
  msgstr ""
197
 
198
+ #: ../responsive-lightbox.php:451
199
  msgid "Image links"
200
  msgstr ""
201
 
202
+ #: ../responsive-lightbox.php:452
203
  msgid "Single images as gallery"
204
  msgstr ""
205
 
206
+ #: ../responsive-lightbox.php:453
207
  msgid "Deactivation"
208
  msgstr ""
209
 
210
+ #: ../responsive-lightbox.php:461
211
  msgid "Animation type"
212
  msgstr ""
213
 
214
+ #: ../responsive-lightbox.php:462
215
  msgid "Force PNG icons"
216
  msgstr ""
217
 
218
+ #: ../responsive-lightbox.php:463
219
  msgid "Top and bottom bars"
220
  msgstr ""
221
 
222
+ #: ../responsive-lightbox.php:464
223
  msgid "Video max width"
224
  msgstr ""
225
 
226
+ #: ../responsive-lightbox.php:468
227
  msgid "Animation speed"
228
  msgstr ""
229
 
230
+ #: ../responsive-lightbox.php:469
231
  msgid "Slideshow"
232
  msgstr ""
233
 
234
+ #: ../responsive-lightbox.php:470
235
  msgid "Slideshow autoplay"
236
  msgstr ""
237
 
238
+ #: ../responsive-lightbox.php:471 ../responsive-lightbox.php:500
239
  msgid "Opacity"
240
  msgstr ""
241
 
242
+ #: ../responsive-lightbox.php:472
243
  msgid "Show title"
244
  msgstr ""
245
 
246
+ #: ../responsive-lightbox.php:473
247
  msgid "Allow resize big images"
248
  msgstr ""
249
 
250
+ #: ../responsive-lightbox.php:474 ../responsive-lightbox.php:512
251
  msgid "Video width"
252
  msgstr ""
253
 
254
+ #: ../responsive-lightbox.php:475 ../responsive-lightbox.php:513
255
  msgid "Video height"
256
  msgstr ""
257
 
258
+ #: ../responsive-lightbox.php:476
259
  msgid "Theme"
260
  msgstr ""
261
 
262
+ #: ../responsive-lightbox.php:477
263
  msgid "Horizontal padding"
264
  msgstr ""
265
 
266
+ #: ../responsive-lightbox.php:478
267
  msgid "Hide Flash"
268
  msgstr ""
269
 
270
+ #: ../responsive-lightbox.php:479
271
  msgid "Flash Window Mode (wmode)"
272
  msgstr ""
273
 
274
+ #: ../responsive-lightbox.php:480
275
  msgid "Video autoplay"
276
  msgstr ""
277
 
278
+ #: ../responsive-lightbox.php:481 ../responsive-lightbox.php:489
279
  msgid "Modal"
280
  msgstr ""
281
 
282
+ #: ../responsive-lightbox.php:482
283
  msgid "Deeplinking"
284
  msgstr ""
285
 
286
+ #: ../responsive-lightbox.php:483
287
  msgid "Overlay gallery"
288
  msgstr ""
289
 
290
+ #: ../responsive-lightbox.php:484
291
  msgid "Keyboard shortcuts"
292
  msgstr ""
293
 
294
+ #: ../responsive-lightbox.php:485
295
  msgid "Social (Twitter, Facebook)"
296
  msgstr ""
297
 
298
+ #: ../responsive-lightbox.php:490
299
  msgid "Show overlay"
300
  msgstr ""
301
 
302
+ #: ../responsive-lightbox.php:491
303
  msgid "Show close button"
304
  msgstr ""
305
 
306
+ #: ../responsive-lightbox.php:492
307
  msgid "Enable escape button"
308
  msgstr ""
309
 
310
+ #: ../responsive-lightbox.php:493
311
  msgid "Hide on overlay click"
312
  msgstr ""
313
 
314
+ #: ../responsive-lightbox.php:494
315
  msgid "Hide on content click"
316
  msgstr ""
317
 
318
+ #: ../responsive-lightbox.php:495
319
  msgid "Cyclic"
320
  msgstr ""
321
 
322
+ #: ../responsive-lightbox.php:496
323
  msgid "Show nav arrows"
324
  msgstr ""
325
 
326
+ #: ../responsive-lightbox.php:497
327
  msgid "Auto scale"
328
  msgstr ""
329
 
330
+ #: ../responsive-lightbox.php:498
331
  msgid "Scrolling (in/out)"
332
  msgstr ""
333
 
334
+ #: ../responsive-lightbox.php:499
335
  msgid "Center on scroll"
336
  msgstr ""
337
 
338
+ #: ../responsive-lightbox.php:501
339
  msgid "Overlay opacity"
340
  msgstr ""
341
 
342
+ #: ../responsive-lightbox.php:502
343
  msgid "Overlay color"
344
  msgstr ""
345
 
346
+ #: ../responsive-lightbox.php:503
347
  msgid "Title show"
348
  msgstr ""
349
 
350
+ #: ../responsive-lightbox.php:504
351
  msgid "Title position"
352
  msgstr ""
353
 
354
+ #: ../responsive-lightbox.php:505
355
  msgid "Transition (in/out)"
356
  msgstr ""
357
 
358
+ #: ../responsive-lightbox.php:506
359
  msgid "Easings (in/out)"
360
  msgstr ""
361
 
362
+ #: ../responsive-lightbox.php:507
363
  msgid "Speed (in/out)"
364
  msgstr ""
365
 
366
+ #: ../responsive-lightbox.php:508
367
  msgid "Change speed"
368
  msgstr ""
369
 
370
+ #: ../responsive-lightbox.php:509
371
  msgid "Change fade"
372
  msgstr ""
373
 
374
+ #: ../responsive-lightbox.php:510
375
  msgid "Padding"
376
  msgstr ""
377
 
378
+ #: ../responsive-lightbox.php:511
379
  msgid "Margin"
380
  msgstr ""
381
 
382
+ #: ../responsive-lightbox.php:517
383
+ msgid "Effect"
384
+ msgstr ""
385
+
386
+ #: ../responsive-lightbox.php:518
387
+ msgid "Keyboard navigation"
388
+ msgstr ""
389
+
390
+ #: ../responsive-lightbox.php:519
391
+ msgid "Error message"
392
+ msgstr ""
393
+
394
+ #: ../responsive-lightbox.php:537
395
  msgid "Select your preffered ligthbox effect script."
396
  msgstr ""
397
 
398
+ #: ../responsive-lightbox.php:547
399
  msgid "Select to which rel selector lightbox effect will be applied to."
400
  msgstr ""
401
 
402
+ #: ../responsive-lightbox.php:565
403
  msgid "Add lightbox to WordPress image galleries by default."
404
  msgstr ""
405
 
406
+ #: ../responsive-lightbox.php:583
407
  msgid "Add lightbox to YouTube and Vimeo video links by default."
408
  msgstr ""
409
 
410
+ #: ../responsive-lightbox.php:601
411
  msgid "Add lightbox to WordPress image links by default."
412
  msgstr ""
413
 
414
+ #: ../responsive-lightbox.php:619
415
  msgid "Display single post images as a gallery."
416
  msgstr ""
417
 
418
+ #: ../responsive-lightbox.php:637
419
  msgid "Delete settings on plugin deactivation."
420
  msgstr ""
421
 
422
+ #: ../responsive-lightbox.php:655
423
  msgid "Select a method of applying a lightbox effect."
424
  msgstr ""
425
 
426
+ #: ../responsive-lightbox.php:673
427
  msgid ""
428
  "Disable if you don't want to top and bottom bars to be hidden after a period "
429
  "of time."
430
  msgstr ""
431
 
432
+ #: ../responsive-lightbox.php:676
433
  msgid ""
434
  "Enter the time after which the top and bottom bars will be hidden (when "
435
  "hiding is enabled)."
436
  msgstr ""
437
 
438
+ #: ../responsive-lightbox.php:687
439
  msgid "Enter the max video width in a lightbox."
440
  msgstr ""
441
 
442
+ #: ../responsive-lightbox.php:705
443
  msgid ""
444
  "Enable this if you're having problems with navigation icons not visible on "
445
  "some devices."
446
  msgstr ""
447
 
448
+ #: ../responsive-lightbox.php:723
449
  msgid "Select animation speed for lightbox effect."
450
  msgstr ""
451
 
452
+ #: ../responsive-lightbox.php:741
453
  msgid "Display images as slideshow."
454
  msgstr ""
455
 
456
+ #: ../responsive-lightbox.php:744
457
  msgid "Enter time (in miliseconds)."
458
  msgstr ""
459
 
460
+ #: ../responsive-lightbox.php:763
461
  msgid "Automatically start slideshow."
462
  msgstr ""
463
 
464
+ #: ../responsive-lightbox.php:776
465
  msgid "Value between 0 and 100, 100 for no opacity."
466
  msgstr ""
467
 
468
+ #: ../responsive-lightbox.php:794
469
  msgid "Display image tiltle."
470
  msgstr ""
471
 
472
+ #: ../responsive-lightbox.php:812
473
  msgid "Resize the photos bigger than viewport."
474
  msgstr ""
475
 
476
+ #: ../responsive-lightbox.php:822 ../responsive-lightbox.php:832
477
  msgid "in pixels"
478
  msgstr ""
479
 
480
+ #: ../responsive-lightbox.php:850
481
  msgid "Select theme for lightbox effect."
482
  msgstr ""
483
 
484
+ #: ../responsive-lightbox.php:860
485
  msgid "Horizontal padding (in pixels)."
486
  msgstr ""
487
 
488
+ #: ../responsive-lightbox.php:878
489
  msgid ""
490
  "Hides all the flash object on a page. Enable this if flash appears over "
491
  "prettyPhoto."
492
  msgstr ""
493
 
494
+ #: ../responsive-lightbox.php:896
495
  msgid "Select flash window mode."
496
  msgstr ""
497
 
498
+ #: ../responsive-lightbox.php:914
499
  msgid "Automatically start videos."
500
  msgstr ""
501
 
502
+ #: ../responsive-lightbox.php:932
503
  msgid "If set to true, only the close button will close the window."
504
  msgstr ""
505
 
506
+ #: ../responsive-lightbox.php:950
507
  msgid "Allow prettyPhoto to update the url to enable deeplinking."
508
  msgstr ""
509
 
510
+ #: ../responsive-lightbox.php:968
511
  msgid "If enabled, a gallery will overlay the fullscreen image on mouse over."
512
  msgstr ""
513
 
514
+ #: ../responsive-lightbox.php:986
515
  msgid "Set to false if you open forms inside prettyPhoto."
516
  msgstr ""
517
 
518
+ #: ../responsive-lightbox.php:1004
519
  msgid "Display links to Facebook and Twitter."
520
  msgstr ""
521
 
522
+ #: ../responsive-lightbox.php:1022
523
  msgid "The transition type."
524
  msgstr ""
525
 
526
+ #: ../responsive-lightbox.php:1032
527
  msgid "Space between FancyBox wrapper and content."
528
  msgstr ""
529
 
530
+ #: ../responsive-lightbox.php:1042
531
  msgid "Space between viewport and FancyBox wrapper."
532
  msgstr ""
533
 
534
+ #: ../responsive-lightbox.php:1060
535
  msgid ""
536
  "When true, \"overlayShow\" is set to TRUE and \"hideOnOverlayClick\", "
537
  "\"hideOnContentClick\", \"enableEscapeButton\", \"showCloseButton\" are set "
538
  "to FALSE."
539
  msgstr ""
540
 
541
+ #: ../responsive-lightbox.php:1078
542
  msgid "Toggle overlay."
543
  msgstr ""
544
 
545
+ #: ../responsive-lightbox.php:1096
546
  msgid "Toggle close button."
547
  msgstr ""
548
 
549
+ #: ../responsive-lightbox.php:1114
550
  msgid "Toggle if pressing Esc button closes FancyBox."
551
  msgstr ""
552
 
553
+ #: ../responsive-lightbox.php:1132
554
  msgid "Toggle if clicking the overlay should close FancyBox."
555
  msgstr ""
556
 
557
+ #: ../responsive-lightbox.php:1150
558
  msgid "Toggle if clicking the content should close FancyBox."
559
  msgstr ""
560
 
561
+ #: ../responsive-lightbox.php:1168
562
  msgid ""
563
  "When true, galleries will be cyclic, allowing you to keep pressing next/back."
564
  msgstr ""
565
 
566
+ #: ../responsive-lightbox.php:1186
567
  msgid "Toggle navigation arrows."
568
  msgstr ""
569
 
570
+ #: ../responsive-lightbox.php:1204
571
  msgid "If true, FancyBox is scaled to fit in viewport."
572
  msgstr ""
573
 
574
+ #: ../responsive-lightbox.php:1222
575
  msgid "Set the overflow CSS property to create or hide scrollbars."
576
  msgstr ""
577
 
578
+ #: ../responsive-lightbox.php:1240
579
  msgid "When true, FancyBox is centered while scrolling page."
580
  msgstr ""
581
 
582
+ #: ../responsive-lightbox.php:1258
583
  msgid "When true, transparency of content is changed for elastic transitions."
584
  msgstr ""
585
 
586
+ #: ../responsive-lightbox.php:1271
587
  msgid "Opacity of the overlay."
588
  msgstr ""
589
 
590
+ #: ../responsive-lightbox.php:1281
591
  msgid "Color of the overlay."
592
  msgstr ""
593
 
594
+ #: ../responsive-lightbox.php:1299
595
  msgid "Toggle title."
596
  msgstr ""
597
 
598
+ #: ../responsive-lightbox.php:1317
599
  msgid "The position of title."
600
  msgstr ""
601
 
602
+ #: ../responsive-lightbox.php:1335
603
  msgid "Easing used for elastic animations."
604
  msgstr ""
605
 
606
+ #: ../responsive-lightbox.php:1345
607
  msgid "Speed of the fade and elastic transitions, in milliseconds."
608
  msgstr ""
609
 
610
+ #: ../responsive-lightbox.php:1355
611
  msgid "Speed of resizing when changing gallery items, in milliseconds."
612
  msgstr ""
613
 
614
+ #: ../responsive-lightbox.php:1365
615
  msgid "Speed of the content fading while changing gallery items."
616
  msgstr ""
617
 
618
+ #: ../responsive-lightbox.php:1375
619
  msgid "Width of the video."
620
  msgstr ""
621
 
622
+ #: ../responsive-lightbox.php:1385
623
  msgid "Height of the video."
624
  msgstr ""
625
 
626
+ #: ../responsive-lightbox.php:1403
627
+ msgid "The effect to use when showing the lightbox."
628
+ msgstr ""
629
+
630
+ #: ../responsive-lightbox.php:1421
631
+ msgid "Enable/Disable keyboard navigation (left/right/escape)."
632
+ msgstr ""
633
+
634
+ #: ../responsive-lightbox.php:1431
635
+ msgid "Error message if the content cannot be loaded."
636
+ msgstr ""
637
+
638
+ #: ../responsive-lightbox.php:1626
639
  msgid ""
640
  "Changes were not saved because there was attempt to save settings of "
641
  "inactive script. The site has been reloaded to the proper script settings."
642
  msgstr ""
643
 
644
+ #: ../responsive-lightbox.php:1636
645
+ msgid "Settings restored to defaults."
646
+ msgstr ""
647
+
648
+ #: ../responsive-lightbox.php:1644
649
  msgid "Settings of SwipeBox script were restored to defaults."
650
  msgstr ""
651
 
652
+ #: ../responsive-lightbox.php:1650
653
  msgid "Settings of prettyPhoto script were restored to defaults."
654
  msgstr ""
655
 
656
+ #: ../responsive-lightbox.php:1656
657
  msgid "Settings of FancyBox script were restored to defaults."
658
  msgstr ""
659
 
660
+ #: ../responsive-lightbox.php:1662
661
+ msgid "Settings of Nivo script were restored to defaults."
662
+ msgstr ""
663
+
664
+ #: ../responsive-lightbox.php:1666
665
  msgid ""
666
  "Changes were not set to defaults because there was attempt to reset settings "
667
  "of inactive script. The site has been reloaded to the proper script settings."
668
  msgstr ""
669
 
670
+ #: ../responsive-lightbox.php:1680 ../responsive-lightbox.php:1681
671
+ #: ../responsive-lightbox.php:1695 ../responsive-lightbox.php:1727
672
  msgid "Responsive Lightbox"
673
  msgstr ""
674
 
675
+ #: ../responsive-lightbox.php:1720
676
  msgid "Reset to defaults"
677
  msgstr ""
678
 
679
+ #: ../responsive-lightbox.php:1729
680
  msgid "Need support?"
681
  msgstr ""
682
 
683
+ #: ../responsive-lightbox.php:1730
684
  msgid ""
685
  "If you are having problems with this plugin, please talk about them in the"
686
  msgstr ""
687
 
688
+ #: ../responsive-lightbox.php:1730
689
  msgid "Support forum"
690
  msgstr ""
691
 
692
+ #: ../responsive-lightbox.php:1732
693
  msgid "Do you like this plugin?"
694
  msgstr ""
695
 
696
+ #: ../responsive-lightbox.php:1733
697
  msgid "Rate it 5"
698
  msgstr ""
699
 
700
+ #: ../responsive-lightbox.php:1733
701
  msgid "on WordPress.org"
702
  msgstr ""
703
 
704
+ #: ../responsive-lightbox.php:1734
705
  msgid "Blog about it & link to the"
706
  msgstr ""
707
 
708
+ #: ../responsive-lightbox.php:1734
709
  msgid "plugin page"
710
  msgstr ""
711
 
712
+ #: ../responsive-lightbox.php:1735
713
  msgid "Check out our other"
714
  msgstr ""
715
 
716
+ #: ../responsive-lightbox.php:1735
717
  msgid "WordPress plugins"
718
  msgstr ""
719
 
720
+ #: ../responsive-lightbox.php:1762
721
+ msgid "Are you sure you want to reset these settings to defaults?"
722
+ msgstr ""
723
+
724
+ #: ../responsive-lightbox.php:1763
725
  msgid "Are you sure you want to reset scripts settings to defaults?"
726
  msgstr ""
727
 
728
+ #: ../responsive-lightbox.php:2009
729
  msgid "Support"
730
  msgstr ""
731
 
732
+ #: ../responsive-lightbox.php:2031
733
  msgid "Settings"
734
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.dfactory.eu/
4
  Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
5
  Requires at least: 3.3
6
  Tested up to: 3.7
7
- Stable tag: 1.2.3
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -18,7 +18,7 @@ For more information, check out plugin page at [dFactory](http://www.dfactory.eu
18
 
19
  = Features include: =
20
 
21
- * Select from 3 responsive lightbox scripts (SwipeBox, prettyPhoto, FancyBox)
22
  * Automatically add lightbox to WordPress image galleries
23
  * Automatically add lightbox to WordPress image links
24
  * Automatically add lightbox to WordPress video links (YouTube, Vimeo)
@@ -55,6 +55,10 @@ No questions yet.
55
 
56
  == Changelog ==
57
 
 
 
 
 
58
  = 1.2.3 =
59
  * New: Serbo-Croatian translation, thanks to Borisa Djuraskovic
60
 
@@ -106,5 +110,6 @@ Initial release
106
 
107
  == Upgrade Notice ==
108
 
109
- = 1.2.3 =
110
- * New: Serbo-Croatian translation, thanks to Borisa Djuraskovic
 
4
  Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
5
  Requires at least: 3.3
6
  Tested up to: 3.7
7
+ Stable tag: 1.3.0
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
18
 
19
  = Features include: =
20
 
21
+ * Select from 4 responsive lightbox scripts (SwipeBox, prettyPhoto, FancyBox, Nivo Lightbox)
22
  * Automatically add lightbox to WordPress image galleries
23
  * Automatically add lightbox to WordPress image links
24
  * Automatically add lightbox to WordPress video links (YouTube, Vimeo)
55
 
56
  == Changelog ==
57
 
58
+ = 1.3.0 =
59
+ * New: Added Nivo Lightbox script
60
+ * New: Option to reset plugin settings to defaults
61
+
62
  = 1.2.3 =
63
  * New: Serbo-Croatian translation, thanks to Borisa Djuraskovic
64
 
110
 
111
  == Upgrade Notice ==
112
 
113
+ = 1.3.0 =
114
+ * New: Added Nivo Lightbox script
115
+ * New: Option to reset plugin settings to defaults
responsive-lightbox.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Responsive Lightbox
4
  Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
5
- Version: 1.2.3
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
@@ -88,9 +88,14 @@ class Responsive_Lightbox
88
  'margin' => 5,
89
  'video_width' => 1080,
90
  'video_height' => 720
 
 
 
 
 
91
  )
92
  ),
93
- 'version' => '1.2.3'
94
  );
95
  private $scripts = array();
96
  private $options = array();
@@ -153,7 +158,7 @@ class Responsive_Lightbox
153
  if($this->options['settings']['videos'] === TRUE)
154
  add_filter('the_content', array(&$this, 'add_videos_lightbox_selector'));
155
 
156
- if($this->options['settings']['image_links'] === TRUE)
157
  add_filter('the_content', array(&$this, 'add_links_lightbox_selector'));
158
  }
159
 
@@ -315,6 +320,18 @@ class Responsive_Lightbox
315
  'inside' => __('inside', 'responsive-lightbox'),
316
  'over' => __('over', 'responsive-lightbox')
317
  )
 
 
 
 
 
 
 
 
 
 
 
 
318
  )
319
  );
320
 
@@ -327,7 +344,8 @@ class Responsive_Lightbox
327
  'general-settings' => array(
328
  'name' => __('General settings', 'responsive-lightbox'),
329
  'key' => 'responsive_lightbox_settings',
330
- 'submit' => 'save_rl_settings'
 
331
  ),
332
  'configuration' => array(
333
  'name' => __('Lightbox settings', 'responsive-lightbox'),
@@ -381,7 +399,7 @@ class Responsive_Lightbox
381
  $current_blog_id = $wpdb->blogid;
382
  $blogs_ids = $wpdb->get_col($wpdb->prepare('SELECT blog_id FROM '.$wpdb->blogs, ''));
383
 
384
- if(($activated_blogs = get_site_option('responsive_lightbox_activated', FALSE, FALSE)) === FALSE)
385
  $activated_blogs = array();
386
 
387
  foreach($blogs_ids as $blog_id)
@@ -494,6 +512,12 @@ class Responsive_Lightbox
494
  add_settings_field('rl_fb_video_width', __('Video width', 'responsive-lightbox'), array(&$this, 'rl_fb_video_width'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
495
  add_settings_field('rl_fb_video_height', __('Video height', 'responsive-lightbox'), array(&$this, 'rl_fb_video_height'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
496
  }
 
 
 
 
 
 
497
  }
498
 
499
 
@@ -1363,6 +1387,52 @@ class Responsive_Lightbox
1363
  }
1364
 
1365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1366
  /**
1367
  * Validates settings
1368
  */
@@ -1537,6 +1607,17 @@ class Responsive_Lightbox
1537
  //video height
1538
  $input['fancybox']['video_height'] = (int)($input['fancybox']['video_height'] > 0 ? $input['fancybox']['video_height'] : $this->defaults['configuration']['fancybox']['video_height']);
1539
  }
 
 
 
 
 
 
 
 
 
 
 
1540
  else
1541
  {
1542
  //clear input to not change settings
@@ -1548,6 +1629,12 @@ class Responsive_Lightbox
1548
  //we have to merge rest of the scripts settings
1549
  $input = array_merge($this->options['configuration'], $input);
1550
  }
 
 
 
 
 
 
1551
  elseif(isset($_POST['reset_rl_configuration']))
1552
  {
1553
  if($this->options['settings']['script'] === 'swipebox' && $_POST['script_r'] === 'swipebox')
@@ -1566,7 +1653,13 @@ class Responsive_Lightbox
1566
  {
1567
  $input['fancybox'] = $this->defaults['configuration']['fancybox'];
1568
 
1569
- add_settings_error('reset_prettyphoto_settings', 'prettyphoto_reset', __('Settings of FancyBox script were restored to defaults.', 'responsive-lightbox'), 'updated');
 
 
 
 
 
 
1570
  }
1571
  else
1572
  {
@@ -1624,7 +1717,7 @@ class Responsive_Lightbox
1624
  submit_button('', 'primary', $this->tabs[$tab_key]['submit'], FALSE);
1625
 
1626
  echo ' ';
1627
- echo ($tab_key === 'configuration' ? submit_button(__('Reset to defaults', 'responsive-lightbox'), 'secondary', $this->tabs[$tab_key]['reset'], FALSE) : '');
1628
 
1629
  echo '
1630
  </p>
@@ -1666,6 +1759,7 @@ class Responsive_Lightbox
1666
  'responsive-lightbox-admin',
1667
  'rlArgs',
1668
  array(
 
1669
  'resetScriptToDefaults' => __('Are you sure you want to reset scripts settings to defaults?', 'responsive-lightbox'),
1670
  'opacity_pp' => $this->options['configuration']['prettyphoto']['opacity'],
1671
  'opacity_fb' => $this->options['configuration']['fancybox']['overlay_opacity']
@@ -1825,6 +1919,39 @@ class Responsive_Lightbox
1825
  )
1826
  );
1827
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1828
 
1829
  wp_register_script(
1830
  'responsive-lightbox-front',
2
  /*
3
  Plugin Name: Responsive Lightbox
4
  Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
5
+ Version: 1.3.0
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
88
  'margin' => 5,
89
  'video_width' => 1080,
90
  'video_height' => 720
91
+ ),
92
+ 'nivo' => array(
93
+ 'effect' => 'fade',
94
+ 'keyboard_nav' => TRUE,
95
+ 'error_message' => 'The requested content cannot be loaded. Please try again later.'
96
  )
97
  ),
98
+ 'version' => '1.3.0'
99
  );
100
  private $scripts = array();
101
  private $options = array();
158
  if($this->options['settings']['videos'] === TRUE)
159
  add_filter('the_content', array(&$this, 'add_videos_lightbox_selector'));
160
 
161
+ if($this->options['settings']['image_links'] === TRUE || $this->options['settings']['images_as_gallery'] === TRUE)
162
  add_filter('the_content', array(&$this, 'add_links_lightbox_selector'));
163
  }
164
 
320
  'inside' => __('inside', 'responsive-lightbox'),
321
  'over' => __('over', 'responsive-lightbox')
322
  )
323
+ ),
324
+ 'nivo' => array(
325
+ 'name' => __('Nivo Lightbox', 'responsive-lightbox'),
326
+ 'effects' => array(
327
+ 'fade' => __('fade', 'responsive-lightbox'),
328
+ 'fadeScale' => __('fade scale', 'responsive-lightbox'),
329
+ 'slideLeft' => __('slide left', 'responsive-lightbox'),
330
+ 'slideRight' => __('slide right', 'responsive-lightbox'),
331
+ 'slideUp' => __('slide up', 'responsive-lightbox'),
332
+ 'slideDown' => __('slide down', 'responsive-lightbox'),
333
+ 'fall' => __('fall', 'responsive-lightbox')
334
+ )
335
  )
336
  );
337
 
344
  'general-settings' => array(
345
  'name' => __('General settings', 'responsive-lightbox'),
346
  'key' => 'responsive_lightbox_settings',
347
+ 'submit' => 'save_rl_settings',
348
+ 'reset' => 'reset_rl_settings',
349
  ),
350
  'configuration' => array(
351
  'name' => __('Lightbox settings', 'responsive-lightbox'),
399
  $current_blog_id = $wpdb->blogid;
400
  $blogs_ids = $wpdb->get_col($wpdb->prepare('SELECT blog_id FROM '.$wpdb->blogs, ''));
401
 
402
+ if(($activated_blogs = get_site_option('responsive_lightbox_activated_blogs', FALSE, FALSE)) === FALSE)
403
  $activated_blogs = array();
404
 
405
  foreach($blogs_ids as $blog_id)
512
  add_settings_field('rl_fb_video_width', __('Video width', 'responsive-lightbox'), array(&$this, 'rl_fb_video_width'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
513
  add_settings_field('rl_fb_video_height', __('Video height', 'responsive-lightbox'), array(&$this, 'rl_fb_video_height'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
514
  }
515
+ elseif($this->options['settings']['script'] === 'nivo')
516
+ {
517
+ add_settings_field('rl_nv_effect', __('Effect', 'responsive-lightbox'), array(&$this, 'rl_nv_effect'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
518
+ add_settings_field('rl_nv_keyboard_nav', __('Keyboard navigation', 'responsive-lightbox'), array(&$this, 'rl_nv_keyboard_nav'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
519
+ add_settings_field('rl_nv_error_message', __('Error message', 'responsive-lightbox'), array(&$this, 'rl_nv_error_message'), 'responsive_lightbox_configuration', 'responsive_lightbox_configuration');
520
+ }
521
  }
522
 
523
 
1387
  }
1388
 
1389
 
1390
+ public function rl_nv_effect()
1391
+ {
1392
+ echo '
1393
+ <div id="rl_nv_effect" class="wplikebtns">';
1394
+
1395
+ foreach($this->scripts['nivo']['effects'] as $val => $trans)
1396
+ {
1397
+ echo '
1398
+ <input id="rl-nv-effect-'.$val.'" type="radio" name="responsive_lightbox_configuration[nivo][effect]" value="'.esc_attr($val).'" '.checked($val, $this->options['configuration']['nivo']['effect'], FALSE).' />
1399
+ <label for="rl-nv-effect-'.$val.'">'.$trans.'</label>';
1400
+ }
1401
+
1402
+ echo '
1403
+ <p class="description">'.__('The effect to use when showing the lightbox.', 'responsive-lightbox').'</p>
1404
+ </div>';
1405
+ }
1406
+
1407
+
1408
+ public function rl_nv_keyboard_nav()
1409
+ {
1410
+ echo '
1411
+ <div id="rl_nv_keyboard_nav" class="wplikebtns">';
1412
+
1413
+ foreach($this->choices as $val => $trans)
1414
+ {
1415
+ echo '
1416
+ <input id="rl-nv-keyboard-nav-'.$val.'" type="radio" name="responsive_lightbox_configuration[nivo][keyboard_nav]" value="'.esc_attr($val).'" '.checked(($val === 'yes' ? TRUE : FALSE), $this->options['configuration']['nivo']['keyboard_nav'], FALSE).' />
1417
+ <label for="rl-nv-keyboard-nav-'.$val.'">'.$trans.'</label>';
1418
+ }
1419
+
1420
+ echo '
1421
+ <p class="description">'.__('Enable/Disable keyboard navigation (left/right/escape).', 'responsive-lightbox').'</p>
1422
+ </div>';
1423
+ }
1424
+
1425
+
1426
+ public function rl_nv_error_message()
1427
+ {
1428
+ echo '
1429
+ <div id="rl_nv_error_message">
1430
+ <input type="text" value="'.esc_attr($this->options['configuration']['nivo']['error_message']).'" name="responsive_lightbox_configuration[nivo][error_message]" />
1431
+ <p class="description">'.__('Error message if the content cannot be loaded.', 'responsive-lightbox').'</p>
1432
+ </div>';
1433
+ }
1434
+
1435
+
1436
  /**
1437
  * Validates settings
1438
  */
1607
  //video height
1608
  $input['fancybox']['video_height'] = (int)($input['fancybox']['video_height'] > 0 ? $input['fancybox']['video_height'] : $this->defaults['configuration']['fancybox']['video_height']);
1609
  }
1610
+ elseif($this->options['settings']['script'] === 'nivo' && $_POST['script_r'] === 'nivo')
1611
+ {
1612
+ //effect
1613
+ $input['nivo']['effect'] = (isset($input['nivo']['effect']) && in_array($input['nivo']['effect'], array_keys($this->scripts['nivo']['effects'])) ? $input['nivo']['effect'] : $this->defaults['configuration']['nivo']['effect']);
1614
+
1615
+ //keyboard navigation
1616
+ $input['nivo']['keyboard_nav'] = (isset($input['nivo']['keyboard_nav']) && in_array($input['nivo']['keyboard_nav'], array_keys($this->choices)) ? ($input['nivo']['keyboard_nav'] === 'yes' ? TRUE : FALSE) : $this->defaults['configuration']['nivo']['keyboard_nav']);
1617
+
1618
+ //error message
1619
+ $input['nivo']['error_message'] = sanitize_text_field($input['nivo']['error_message']);
1620
+ }
1621
  else
1622
  {
1623
  //clear input to not change settings
1629
  //we have to merge rest of the scripts settings
1630
  $input = array_merge($this->options['configuration'], $input);
1631
  }
1632
+ elseif(isset($_POST['reset_rl_settings']))
1633
+ {
1634
+ $input = $this->defaults['settings'];
1635
+
1636
+ add_settings_error('reset_general_settings', 'general_reset', __('Settings restored to defaults.', 'responsive-lightbox'), 'updated');
1637
+ }
1638
  elseif(isset($_POST['reset_rl_configuration']))
1639
  {
1640
  if($this->options['settings']['script'] === 'swipebox' && $_POST['script_r'] === 'swipebox')
1653
  {
1654
  $input['fancybox'] = $this->defaults['configuration']['fancybox'];
1655
 
1656
+ add_settings_error('reset_fancybox_settings', 'fancybox_reset', __('Settings of FancyBox script were restored to defaults.', 'responsive-lightbox'), 'updated');
1657
+ }
1658
+ elseif($this->options['settings']['script'] === 'nivo' && $_POST['script_r'] === 'nivo')
1659
+ {
1660
+ $input['nivo'] = $this->defaults['configuration']['nivo'];
1661
+
1662
+ add_settings_error('reset_nivo_settings', 'nivo_reset', __('Settings of Nivo script were restored to defaults.', 'responsive-lightbox'), 'updated');
1663
  }
1664
  else
1665
  {
1717
  submit_button('', 'primary', $this->tabs[$tab_key]['submit'], FALSE);
1718
 
1719
  echo ' ';
1720
+ echo submit_button(__('Reset to defaults', 'responsive-lightbox'), 'secondary', $this->tabs[$tab_key]['reset'], FALSE);
1721
 
1722
  echo '
1723
  </p>
1759
  'responsive-lightbox-admin',
1760
  'rlArgs',
1761
  array(
1762
+ 'resetSettingsToDefaults' => __('Are you sure you want to reset these settings to defaults?', 'responsive-lightbox'),
1763
  'resetScriptToDefaults' => __('Are you sure you want to reset scripts settings to defaults?', 'responsive-lightbox'),
1764
  'opacity_pp' => $this->options['configuration']['prettyphoto']['opacity'],
1765
  'opacity_fb' => $this->options['configuration']['fancybox']['overlay_opacity']
1919
  )
1920
  );
1921
  }
1922
+ elseif($this->options['settings']['script'] === 'nivo')
1923
+ {
1924
+ wp_register_script(
1925
+ 'responsive-lightbox-nivo',
1926
+ plugins_url('assets/nivo/nivo-lightbox.min.js', __FILE__),
1927
+ array('jquery')
1928
+ );
1929
+
1930
+ wp_enqueue_script('responsive-lightbox-nivo');
1931
+
1932
+ wp_register_style(
1933
+ 'responsive-lightbox-nivo-front',
1934
+ plugins_url('assets/nivo/nivo-lightbox.css', __FILE__)
1935
+ );
1936
+
1937
+ wp_enqueue_style('responsive-lightbox-nivo-front');
1938
+
1939
+ wp_register_style(
1940
+ 'responsive-lightbox-nivo-front-template',
1941
+ plugins_url('assets/nivo/themes/default/default.css', __FILE__)
1942
+ );
1943
+
1944
+ wp_enqueue_style('responsive-lightbox-nivo-front-template');
1945
+
1946
+ $args = array_merge(
1947
+ $args,
1948
+ array(
1949
+ 'effect' => $this->options['configuration']['nivo']['effect'],
1950
+ 'keyboardNav' => $this->getBooleanValue($this->options['configuration']['nivo']['keyboard_nav']),
1951
+ 'errorMessage' => esc_attr($this->options['configuration']['nivo']['error_message'])
1952
+ )
1953
+ );
1954
+ }
1955
 
1956
  wp_register_script(
1957
  'responsive-lightbox-front',