Version Description
- New. WP Instagram Feed Gallery renamed
Download this release
Release Info
Developer | quadlayers |
Plugin | Instagram Gallery |
Version | 2.4.7 |
Comparing to | |
See all releases |
Code changes from version 2.4.6 to 2.4.7
- assets/admin-style.css +0 -349
- assets/js/qligg.min.min.js +0 -1
- includes/pages/premium.php +1 -1
- includes/pages/token.php +1 -1
- includes/pages/views/edit.php +2 -2
- includes/pages/welcome.php +3 -3
- includes/settings.php +3 -3
- includes/widget.php +6 -6
- insta-gallery.php +4 -4
- languages/index.php +0 -2
- languages/insta-gallery-es_ES.mo +0 -0
- languages/insta-gallery-es_ES.po +0 -428
- languages/insta-gallery.pot +894 -412
- readme.txt +5 -2
- templates/masonry.php +0 -15
assets/admin-style.css
DELETED
@@ -1,349 +0,0 @@
|
|
1 |
-
@CHARSET "ISO-8859-1";
|
2 |
-
.ig-thm-color{
|
3 |
-
color: #e23565;
|
4 |
-
}
|
5 |
-
.ig-page-header .ig-logo {
|
6 |
-
float: left;
|
7 |
-
margin-right: 20px;
|
8 |
-
max-height: 35px;
|
9 |
-
}
|
10 |
-
|
11 |
-
|
12 |
-
.ig-list-buttons {
|
13 |
-
display: inline-block;
|
14 |
-
margin: 0px;
|
15 |
-
}
|
16 |
-
|
17 |
-
.ig-list-buttons li {
|
18 |
-
display: inline-block;
|
19 |
-
margin-right: 20px;
|
20 |
-
margin-bottom: 0px;
|
21 |
-
vertical-align: middle;
|
22 |
-
color: #AAAAAA;
|
23 |
-
position: relative;
|
24 |
-
}
|
25 |
-
|
26 |
-
.ig-list-buttons input[type=radio] {
|
27 |
-
position: absolute;
|
28 |
-
visibility: hidden;
|
29 |
-
}
|
30 |
-
|
31 |
-
.ig-list-buttons label {
|
32 |
-
display: block;
|
33 |
-
position: relative;
|
34 |
-
font-size: 1.35em;
|
35 |
-
padding: 10px 5px 10px 50px;
|
36 |
-
z-index: 9;
|
37 |
-
cursor: pointer;
|
38 |
-
-webkit-transition: all 0.25s linear;
|
39 |
-
transition: all 0.25s linear;
|
40 |
-
}
|
41 |
-
|
42 |
-
.ig-list-buttons li:hover label {
|
43 |
-
color: #e23565;
|
44 |
-
}
|
45 |
-
|
46 |
-
.ig-list-buttons li .check {
|
47 |
-
display: block;
|
48 |
-
position: absolute;
|
49 |
-
border: 5px solid #AAAAAA;
|
50 |
-
border-radius: 50%;
|
51 |
-
height: 25px;
|
52 |
-
width: 25px;
|
53 |
-
top: 5px;
|
54 |
-
left: 10px;
|
55 |
-
z-index: 5;
|
56 |
-
-webkit-transition: border .25s linear;
|
57 |
-
transition: border .25s linear;
|
58 |
-
}
|
59 |
-
|
60 |
-
.ig-list-buttons li:hover .check {
|
61 |
-
border-color: #e23565;
|
62 |
-
}
|
63 |
-
|
64 |
-
.ig-list-buttons li .check::before {
|
65 |
-
display: block;
|
66 |
-
position: absolute;
|
67 |
-
content: '';
|
68 |
-
border-radius: 100%;
|
69 |
-
height: 15px;
|
70 |
-
width: 15px;
|
71 |
-
top: 5px;
|
72 |
-
left: 5px;
|
73 |
-
margin: auto;
|
74 |
-
-webkit-transition: background 0.25s linear;
|
75 |
-
transition: background 0.25s linear;
|
76 |
-
}
|
77 |
-
|
78 |
-
.ig-list-buttons input[type=radio]:checked ~ .check {
|
79 |
-
border-color: #e23565;
|
80 |
-
}
|
81 |
-
|
82 |
-
.ig-list-buttons input[type=radio]:checked ~ .check::before {
|
83 |
-
background: #e23565;
|
84 |
-
}
|
85 |
-
|
86 |
-
.ig-list-buttons input[type=radio]:checked ~ label {
|
87 |
-
color: #e23565;
|
88 |
-
}
|
89 |
-
|
90 |
-
.ig-btn {
|
91 |
-
display: inline-block;
|
92 |
-
padding: 5px 20px;
|
93 |
-
background: #972dbe;
|
94 |
-
cursor: pointer;
|
95 |
-
color: #fff;
|
96 |
-
text-transform: uppercase;
|
97 |
-
text-decoration: none;
|
98 |
-
-webkit-transition: all .5s;
|
99 |
-
transition: all .5s;
|
100 |
-
}
|
101 |
-
|
102 |
-
.ig-btn:hover {
|
103 |
-
background: #feb547;
|
104 |
-
color: #fff;
|
105 |
-
}
|
106 |
-
|
107 |
-
.ig-btn .dashicons {
|
108 |
-
text-decoration: none;
|
109 |
-
line-height: normal;
|
110 |
-
vertical-align: middle;
|
111 |
-
height: initial;
|
112 |
-
padding-right: 5px;
|
113 |
-
}
|
114 |
-
|
115 |
-
.ig-tab-content-row {
|
116 |
-
display: none;
|
117 |
-
border: 1px solid #aaaaaa;
|
118 |
-
}
|
119 |
-
|
120 |
-
.ig-tab-content-row.active {
|
121 |
-
display: table-row;
|
122 |
-
}
|
123 |
-
.ig-gallery-list input[type="text"] {
|
124 |
-
font-weight: bold;
|
125 |
-
font-size: 110%;
|
126 |
-
padding: 3px 10px;
|
127 |
-
background: #f7f7f7;
|
128 |
-
color: #72777c;
|
129 |
-
cursor: copy;
|
130 |
-
border-color: transparent;
|
131 |
-
box-shadow: none;
|
132 |
-
}
|
133 |
-
.ig-gallery-list input[type="text"]:focus{
|
134 |
-
border-color: transparent;
|
135 |
-
box-shadow: none;
|
136 |
-
}
|
137 |
-
.ig-generate-msgs {
|
138 |
-
color: #e23565;
|
139 |
-
display: none;
|
140 |
-
}
|
141 |
-
.ig-tab-content-row.error{
|
142 |
-
border-color: #e23565;
|
143 |
-
}
|
144 |
-
.ig-tab-content-row.error .ig-generate-msgs {
|
145 |
-
display: block;
|
146 |
-
}
|
147 |
-
.ig_page_msg p{
|
148 |
-
font-size: 20px;
|
149 |
-
color: #e93b59;
|
150 |
-
}
|
151 |
-
.wp-core-ui .button-primary.ig-add-update {
|
152 |
-
background: #e23565;
|
153 |
-
font-size: 20px;
|
154 |
-
padding: 6px 20px;
|
155 |
-
height: auto;
|
156 |
-
margin: 15px 0px;
|
157 |
-
box-shadow: none;
|
158 |
-
text-shadow: none;
|
159 |
-
-webkit-transition: all .5s;
|
160 |
-
transition: all .5s;
|
161 |
-
border-color: #fff;
|
162 |
-
text-transform: uppercase;
|
163 |
-
}
|
164 |
-
|
165 |
-
.wp-core-ui .button-primary.ig-add-update:hover {
|
166 |
-
background: #feb547;
|
167 |
-
color: #fff;
|
168 |
-
}
|
169 |
-
|
170 |
-
.ig-table-edit td {
|
171 |
-
vertical-align: top;
|
172 |
-
}
|
173 |
-
|
174 |
-
.ig-table-edit input[type="checkbox"],.ig_adv-setting input[type="checkbox"] {
|
175 |
-
zoom: 1.5;
|
176 |
-
}
|
177 |
-
.ig-table-edit input[type="checkbox"]:checked:before {
|
178 |
-
color: #e23565;
|
179 |
-
}
|
180 |
-
.ig-table-edit input[type="color"] {
|
181 |
-
vertical-align: top;
|
182 |
-
padding: 1px 2px;
|
183 |
-
width: 50px;
|
184 |
-
height: 26px;
|
185 |
-
}
|
186 |
-
.igf-response {
|
187 |
-
font-size: 16px;
|
188 |
-
color: #e93b59;
|
189 |
-
padding: 5px;
|
190 |
-
}
|
191 |
-
/* ******** ig account setting ********** */
|
192 |
-
.ig-account-section {
|
193 |
-
border: 1px solid #e5e5e5;
|
194 |
-
box-shadow: 0 1px 1px rgba(0,0,0,.04);
|
195 |
-
background: #fff;
|
196 |
-
padding: 10px;
|
197 |
-
}
|
198 |
-
.ig-account-section .notice p {
|
199 |
-
color: #e93b59;
|
200 |
-
font-size: 14px;
|
201 |
-
}
|
202 |
-
.ig-account-cards .ig-account-card {
|
203 |
-
display: inline-block;
|
204 |
-
margin: 10px;
|
205 |
-
border: 1px solid #ddd;
|
206 |
-
padding: 15px;
|
207 |
-
-webkit-transition: .3s;
|
208 |
-
transition: .3s;
|
209 |
-
flex-basis: 350px;
|
210 |
-
word-break: break-word;
|
211 |
-
}
|
212 |
-
.ig-ac-have-token .ig-account-card:first-child {
|
213 |
-
flex-basis: auto;
|
214 |
-
}
|
215 |
-
.ig-ac-have-token .ig-account-card figure {
|
216 |
-
text-align: center;
|
217 |
-
}
|
218 |
-
.ig-account-cards {
|
219 |
-
display: flex;
|
220 |
-
flex-wrap: wrap;
|
221 |
-
margin: -10px;
|
222 |
-
}
|
223 |
-
.ig-account-cards form h4 {
|
224 |
-
margin-top: 0;
|
225 |
-
margin-bottom: 10px;
|
226 |
-
font-size: 18px;
|
227 |
-
}
|
228 |
-
.ig-account-cards .ig-account-card:hover {
|
229 |
-
background: #eee;
|
230 |
-
}
|
231 |
-
.ig-account-cards form input[type="text"] {
|
232 |
-
width: 100%;
|
233 |
-
}
|
234 |
-
#ig-remove-token {
|
235 |
-
display: none;
|
236 |
-
}
|
237 |
-
|
238 |
-
/* ******** ig docs page ********** */
|
239 |
-
.ig-doc-header {
|
240 |
-
background: #fff;
|
241 |
-
padding: 1px 10px 5px 10px;
|
242 |
-
border: 1px solid #ddd;
|
243 |
-
margin-bottom: 10px;
|
244 |
-
}
|
245 |
-
.ig-doc-body article {
|
246 |
-
background: #fff;
|
247 |
-
padding: 1px 10px 5px 10px;
|
248 |
-
border: 1px solid #ddd;
|
249 |
-
margin-bottom: 10px;
|
250 |
-
-webkit-transition: .3s;
|
251 |
-
transition: .3s;
|
252 |
-
}
|
253 |
-
.ig-doc-body article:hover {
|
254 |
-
box-shadow: 0 0 11px rgba(33,33,33,.2);
|
255 |
-
}
|
256 |
-
input.ig-doc-red-url {
|
257 |
-
cursor: copy;
|
258 |
-
min-width: 650px;
|
259 |
-
color: #e93b59;
|
260 |
-
}
|
261 |
-
.ig-doc-body figure img, .ig-doc-figure {
|
262 |
-
border: 1px solid #e93b59;
|
263 |
-
box-shadow: 0 3px 10px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.2);
|
264 |
-
}
|
265 |
-
#TB_window figure.ig-doc-figure {
|
266 |
-
margin: auto;
|
267 |
-
display: inline-block;
|
268 |
-
}
|
269 |
-
.ig-doc-body article table th {
|
270 |
-
text-align: left;
|
271 |
-
}
|
272 |
-
.ig-doc-body article table th,.ig-doc-body article table td {
|
273 |
-
padding: 3px 5px;
|
274 |
-
border: 1px solid #ddd;
|
275 |
-
}
|
276 |
-
.ig-doc-body article table {
|
277 |
-
border-collapse: collapse;
|
278 |
-
}
|
279 |
-
|
280 |
-
|
281 |
-
/* ******** ig advance setting ********** */
|
282 |
-
.ig_adv-setting-toggle{
|
283 |
-
cursor: pointer;
|
284 |
-
border: 0px;
|
285 |
-
}
|
286 |
-
.ig_adv-setting-toggle .dashicons-minus{display: none;}
|
287 |
-
.ig_adv-setting-toggle.active .dashicons-minus{display: initial;}
|
288 |
-
.ig_adv-setting-toggle.active .dashicons-plus{display: none;}
|
289 |
-
.ig_adv-setting{display: none;}
|
290 |
-
.ig_adv-setting input[type="url"] {
|
291 |
-
min-width: 75%;
|
292 |
-
}
|
293 |
-
.ig_adv-setting .ig-spinner {
|
294 |
-
position: relative;
|
295 |
-
padding: 10px 30px;
|
296 |
-
height:60px;
|
297 |
-
-webkit-box-sizing: content-box;
|
298 |
-
-moz-box-sizing: content-box;
|
299 |
-
box-sizing: content-box;
|
300 |
-
}
|
301 |
-
.ig_adv-setting .ig-spinner .ig-spin {
|
302 |
-
position: absolute;
|
303 |
-
top: 50%;
|
304 |
-
left: 50%;
|
305 |
-
width: 60px;
|
306 |
-
margin:-30px 0 0 -30px;
|
307 |
-
-webkit-animation:igspin 4s linear infinite;
|
308 |
-
-moz-animation:igspin 4s linear infinite;
|
309 |
-
animation:igspin 4s linear infinite;
|
310 |
-
}
|
311 |
-
@-moz-keyframes igspin { 100% { -moz-transform: rotate(360deg); } }
|
312 |
-
@-webkit-keyframes igspin { 100% { -webkit-transform: rotate(360deg); } }
|
313 |
-
@keyframes igspin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
|
314 |
-
|
315 |
-
/* ******** paypal btn ********** */
|
316 |
-
.ig_donation-wrap {
|
317 |
-
padding: 10px 20px;
|
318 |
-
background: lightgoldenrodyellow;
|
319 |
-
margin-top: 35px;
|
320 |
-
font-weight: bold;
|
321 |
-
}
|
322 |
-
|
323 |
-
.ig_donation-wrap p {
|
324 |
-
font-size: 125%;
|
325 |
-
}
|
326 |
-
.ig_donation_text {
|
327 |
-
display: inline-block;
|
328 |
-
vertical-align: middle;
|
329 |
-
line-height: normal;
|
330 |
-
}
|
331 |
-
.ig_donation_btn {
|
332 |
-
display: inline-block;
|
333 |
-
margin-left: 20px;
|
334 |
-
text-decoration: none;
|
335 |
-
padding: 6px 20px;
|
336 |
-
background: #fecb5d;
|
337 |
-
color: #23282d;
|
338 |
-
text-transform: uppercase;
|
339 |
-
box-shadow: 1px 1px 5px #888888;
|
340 |
-
font: bold 100%/24px sans-serif;
|
341 |
-
}
|
342 |
-
.ig_donation_btn:hover{
|
343 |
-
color: #fff;
|
344 |
-
background: #972dbe;
|
345 |
-
}
|
346 |
-
.ig_donation_btn img {
|
347 |
-
vertical-align: middle;
|
348 |
-
height: 24px;
|
349 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/qligg.min.min.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
(function(c){var b=0,d={};function a(f,i){var e=c(".insta-gallery-list",f),h=c(".insta-gallery-spinner",f),g=f.data("feed");c.ajax({url:qligg.ajax_url,type:"post",timeout:30000,data:{action:"qligg_load_item_images",next_max_id:i,feed:g},beforeSend:function(){h.show()},success:function(j){if(j.success!==true){e.append(c(j.data));h.hide();return}var k=c(j.data);e.append(k).trigger("qligg.loaded",[k])},complete:function(){},error:function(j,k){h.hide();console.log(k)}})}c(".ig-block").on("qligg.loaded",function(i,j){var l=c(i.delegateTarget),n=c(".insta-gallery-list",l),g=c(".insta-gallery-spinner",l),f=c(".insta-gallery-button.load",l),m=l.data("feed"),k=c(j).length,h=0;if(k){n.find(".insta-gallery-image").load(function(o){h++;if(h>=k){n.trigger("qligg.imagesLoaded",[j])}})}if(k<m.limit){g.hide();setTimeout(function(){f.fadeOut()},300)}});c(".ig-block").on("qligg.imagesLoaded",function(h){var f=c(h.delegateTarget),g=c(".insta-gallery-spinner",f);g.hide()});c(".ig-block[data-feed_layout=gallery]").on("qligg.imagesLoaded",function(h,f){var g=c(h.delegateTarget);g.addClass("ig-block-loaded");c(f).each(function(e,j){setTimeout(function(){c(j).addClass("ig-image-loaded")},150+(e*30))})});c(".ig-block[data-feed_layout=carousel]").on("qligg.imagesLoaded",function(h,f){var g=c(h.delegateTarget);g.addClass("ig-block-loaded");c(f).each(function(e,j){c(j).addClass("ig-image-loaded")})});c(".ig-block[data-feed_layout=carousel]").on("qligg.imagesLoaded",function(j,f){var g=c(j.delegateTarget),i=c(".swiper-container",g),h=g.data("feed");b++;d[b]=new Swiper(i,{loop:true,autoHeight:true,observer:true,observeParents:true,spaceBetween:parseInt(h.spacing),slidesPerView:parseInt(h.carousel.slides),autoplay:h.carousel.autoplay?{delay:parseInt(h.carousel.interval),}:false,pagination:{el:".swiper-pagination",dynamicBullets:true,clickable:true,type:"bullets",},navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev",},breakpoints:{420:{slidesPerView:1,spaceBetween:2,},767:{slidesPerView:Math.min(2,h.carousel.slides)},1023:{slidesPerView:Math.min(3,h.carousel.slides)}}})});c(".ig-block[data-feed_layout=masonry]").on("qligg.imagesLoaded",function(i,f){var h=c(i.delegateTarget),g=c(".insta-gallery-list",h);if(!g.data("masonry")){g.masonry({itemSelector:".insta-gallery-item",isResizable:true,isAnimated:false,transitionDuration:0})}else{g.masonry("appended",f,false)}});c(".ig-block[data-feed_layout=masonry]").on("layoutComplete",function(h,g){var f=c(h.delegateTarget);f.addClass("ig-block-loaded");c(g).each(function(e,j){setTimeout(function(){c(j.element).addClass("ig-image-loaded")},500+(e*50))})});c(".ig-block").on("qligg.loaded",function(i){var g=c(i.delegateTarget),f=c(".insta-gallery-list",g),h=g.data("feed");c(".insta-gallery-item .insta-gallery-icon.qligg-icon-instagram",f).on("click",function(j){j.stopPropagation()});if(!h.popup.display){return}c(".insta-gallery-item",f).magnificPopup({type:"inline",callbacks:{elementParse:function(m){var n="",l="",e="",k="",j="";if(m.el.data("feed").type=="video"){n='<video autoplay><source src="'+m.el.data("feed").video+'" type="video/mp4"></video>'}else{if(m.el.data("feed").type=="gallery"){n="this is a gallery"}else{n='<img src="'+m.el.data("feed").img_standard+'"/>'}}e='<div class="mfp-icons"><div class="mfp-counter">'+(m.index+1)+" / "+c(".insta-gallery-item",f).length+'</div><a class="mfp-link" href="'+m.el.data("feed").link+'" target="_blank" rel="noopener"><i class="qligg-icon-instagram"></i>Instagram</a></div>';if(h.popup.profile){l='<div class="mfp-user"><a href="'+h.profile.link+'" title="'+h.profile.name+'" target="_blank" rel="noopener"><img src="'+h.profile.picture+'"><p>@'+h.profile.user+"</p></a></div>"}if(h.popup.caption){k='<div class="mfp-caption">'+m.el.data("feed").caption+"</div>"}if(h.popup.likes){j='<div class="mfp-info"><div class="mfp-likes"><i class="qligg-icon-heart"></i>'+m.el.data("feed").likes+'</div><div class="mfp-comments"><i class="qligg-icon-comment"></i>'+m.el.data("feed").comments+'</div><div class="mfp-date">'+m.el.data("feed").date+"</div></div>"}m.src='<div class="mfp-figure '+h.popup.align+'">'+n+'<div class="mfp-close"></div><div class="mfp-bottom-bar"><div class="mfp-title">'+l+e+k+j+"</div></div></div>"}},gallery:{enabled:true}})});c(".ig-block").on("click",".insta-gallery-button.load",function(h){h.preventDefault();var f=c(h.delegateTarget);if(!f.hasClass("ig-block-loaded")){return false}var g=c(".insta-gallery-list .insta-gallery-item:last-child",f).attr("id");a(f,g)});c(".ig-block").each(function(f,g){var e=c(this);if(e.hasClass("ig-block-loaded")){return false}a(e,0)});if(navigator.appVersion.indexOf("MSIE 8.")!=-1){document.body.className+=" instagal-ie-8"}if(navigator.appVersion.indexOf("MSIE 9.")!=-1){document.body.className+=" instagal-ie-9"}})(jQuery);
|
|
includes/pages/premium.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<div class="welcome-header">
|
4 |
<h1><?php esc_html_e('Premium', 'insta-gallery'); ?></h1>
|
5 |
<div class="about-description">
|
6 |
-
<?php
|
7 |
</div>
|
8 |
<br/>
|
9 |
<a class="btn-instagram" target="_blank" href="<?php echo esc_url(QLIGG_PURCHASE_URL); ?>"><?php esc_html_e('Purchase Now', 'insta-gallery'); ?></a>
|
3 |
<div class="welcome-header">
|
4 |
<h1><?php esc_html_e('Premium', 'insta-gallery'); ?></h1>
|
5 |
<div class="about-description">
|
6 |
+
<?php printf(esc_html__('Unlock the power of our premium %s plugin which allows you to add unlimited Instagram accounts and offers you more layout options.', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?>
|
7 |
</div>
|
8 |
<br/>
|
9 |
<a class="btn-instagram" target="_blank" href="<?php echo esc_url(QLIGG_PURCHASE_URL); ?>"><?php esc_html_e('Purchase Now', 'insta-gallery'); ?></a>
|
includes/pages/token.php
CHANGED
@@ -117,7 +117,7 @@ if (!defined('ABSPATH'))
|
|
117 |
<span class="spinner"></span>
|
118 |
<button type="submit" class="btn-instagram secondary"><?php _e('Update', 'insta-gallery'); ?></button>
|
119 |
<span class="description">
|
120 |
-
<?php //
|
121 |
</span>
|
122 |
</td>
|
123 |
</tr>
|
117 |
<span class="spinner"></span>
|
118 |
<button type="submit" class="btn-instagram secondary"><?php _e('Update', 'insta-gallery'); ?></button>
|
119 |
<span class="description">
|
120 |
+
<?php //printf(esc_html__('Update settings and copy/paste generated shortcode in your post/pages or go to Widgets and use %s widget', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?>
|
121 |
</span>
|
122 |
</td>
|
123 |
</tr>
|
includes/pages/views/edit.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
if (!defined('ABSPATH'))
|
3 |
exit;
|
4 |
?>
|
5 |
-
<form method="post" id="ig-update-form" class="<?php //echo!isset($ig_item_id) ? 'hidden' : '';
|
6 |
<table class="widefat form-table ig-table">
|
7 |
<tbody>
|
8 |
<tr>
|
@@ -623,7 +623,7 @@ if (!defined('ABSPATH'))
|
|
623 |
<span class="spinner"></span>
|
624 |
<button type="submit" class="btn-instagram secondary"><?php _e('Update', 'insta-gallery'); ?></button>
|
625 |
<span>
|
626 |
-
<?php
|
627 |
</span>
|
628 |
</td>
|
629 |
</tr>
|
2 |
if (!defined('ABSPATH'))
|
3 |
exit;
|
4 |
?>
|
5 |
+
<form method="post" id="ig-update-form" class="<?php //echo!isset($ig_item_id) ? 'hidden' : ''; ?>">
|
6 |
<table class="widefat form-table ig-table">
|
7 |
<tbody>
|
8 |
<tr>
|
623 |
<span class="spinner"></span>
|
624 |
<button type="submit" class="btn-instagram secondary"><?php _e('Update', 'insta-gallery'); ?></button>
|
625 |
<span>
|
626 |
+
<?php printf(esc_html__('Update settings and copy/paste generated shortcode in your post/pages or go to Widgets and use %s widget', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?>
|
627 |
</span>
|
628 |
</td>
|
629 |
</tr>
|
includes/pages/welcome.php
CHANGED
@@ -14,21 +14,21 @@ if (!defined('ABSPATH'))
|
|
14 |
<div class="feature-section" style="padding: 15px 0;">
|
15 |
<h3><?php esc_html_e('Community', 'insta-gallery'); ?></h3>
|
16 |
<p>
|
17 |
-
<?php
|
18 |
</p>
|
19 |
<a style="background-color: #ffffff;color: #626262;text-decoration: none;padding: 10px 30px;border-radius: 30px;margin: 10px 0 0 0;display: inline-block;" target="_blank" href="<?php echo QLIGG_GROUP_URL; ?>"><?php esc_html_e('Join us', 'insta-gallery'); ?></a>
|
20 |
</div>
|
21 |
<!--<div class="feature-section one-col is-wide wp-clearfix">
|
22 |
<h3><?php esc_html_e('Demo', 'insta-gallery'); ?></h3>
|
23 |
<p>
|
24 |
-
<?php
|
25 |
</p>
|
26 |
<a style="background-color: #006cff;color: #ffffff;text-decoration: none;padding: 10px 30px;border-radius: 30px;margin: 10px 0 0 0;display: inline-block;" target="_blank" href="<?php echo QLIGG_DEMO_URL; ?>"><?php esc_html_e('View demo', 'insta-gallery'); ?></a>
|
27 |
</div>-->
|
28 |
<div class="feature-section" style="padding: 15px 0;">
|
29 |
<h3><?php esc_html_e('Support', 'insta-gallery'); ?></h3>
|
30 |
<p>
|
31 |
-
<?php
|
32 |
</p>
|
33 |
<a style="background-color: #006cff;color: #ffffff;text-decoration: none;padding: 10px 30px;border-radius: 30px;margin: 10px 0 0 0;display: inline-block;" target="_blank" href="<?php echo QLIGG_SUPPORT_URL; ?>"><?php esc_html_e('Submit ticket', 'insta-gallery'); ?></a>
|
34 |
</div>
|
14 |
<div class="feature-section" style="padding: 15px 0;">
|
15 |
<h3><?php esc_html_e('Community', 'insta-gallery'); ?></h3>
|
16 |
<p>
|
17 |
+
<?php printf(esc_html__('If you want to get in touch with other %s users or be aware of our promotional discounts join our community now.', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?>
|
18 |
</p>
|
19 |
<a style="background-color: #ffffff;color: #626262;text-decoration: none;padding: 10px 30px;border-radius: 30px;margin: 10px 0 0 0;display: inline-block;" target="_blank" href="<?php echo QLIGG_GROUP_URL; ?>"><?php esc_html_e('Join us', 'insta-gallery'); ?></a>
|
20 |
</div>
|
21 |
<!--<div class="feature-section one-col is-wide wp-clearfix">
|
22 |
<h3><?php esc_html_e('Demo', 'insta-gallery'); ?></h3>
|
23 |
<p>
|
24 |
+
<?php printf(esc_html__('Thank you for choosing our %s plugin for WordPress! Here you can see our demo and a description about the features we offer in the premium version.', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?>
|
25 |
</p>
|
26 |
<a style="background-color: #006cff;color: #ffffff;text-decoration: none;padding: 10px 30px;border-radius: 30px;margin: 10px 0 0 0;display: inline-block;" target="_blank" href="<?php echo QLIGG_DEMO_URL; ?>"><?php esc_html_e('View demo', 'insta-gallery'); ?></a>
|
27 |
</div>-->
|
28 |
<div class="feature-section" style="padding: 15px 0;">
|
29 |
<h3><?php esc_html_e('Support', 'insta-gallery'); ?></h3>
|
30 |
<p>
|
31 |
+
<?php printf(esc_html__('If you have any doubt or you find any issue don\'t hesitate to contact us through our ticket system or join our community to meet other %s users.', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?>
|
32 |
</p>
|
33 |
<a style="background-color: #006cff;color: #ffffff;text-decoration: none;padding: 10px 30px;border-radius: 30px;margin: 10px 0 0 0;display: inline-block;" target="_blank" href="<?php echo QLIGG_SUPPORT_URL; ?>"><?php esc_html_e('Submit ticket', 'insta-gallery'); ?></a>
|
34 |
</div>
|
includes/settings.php
CHANGED
@@ -29,9 +29,9 @@ if (!class_exists('QLIGG_Settings')) {
|
|
29 |
?>
|
30 |
<div class="qlwrap wrap about-wrap full-width-layout">
|
31 |
|
32 |
-
<h1><?php
|
33 |
|
34 |
-
<p class="about-text"><?php
|
35 |
|
36 |
<p class="about-text">
|
37 |
<?php printf('<a href="%s" target="_blank">%s</a>', QLIGG_DEMO_URL, esc_html__('Check out our demo', 'insta-gallery')); ?></a>
|
@@ -136,7 +136,7 @@ if (!class_exists('QLIGG_Settings')) {
|
|
136 |
}
|
137 |
|
138 |
function add_menu() {
|
139 |
-
add_menu_page(
|
140 |
add_submenu_page(QLIGG_DOMAIN, __('Welcome', 'insta-gallery'), esc_html__('Welcome', 'insta-gallery'), 'manage_options', QLIGG_DOMAIN, array($this, 'settings_welcome'));
|
141 |
add_submenu_page(QLIGG_DOMAIN, __('Account', 'insta-gallery'), esc_html__('Account', 'insta-gallery'), 'edit_posts', QLIGG_DOMAIN . '_token', array($this, 'settings_token'));
|
142 |
add_submenu_page(QLIGG_DOMAIN, __('Feeds', 'insta-gallery'), esc_html__('Feeds', 'insta-gallery'), 'edit_posts', QLIGG_DOMAIN . '_feeds', array($this, 'settings_feeds'));
|
29 |
?>
|
30 |
<div class="qlwrap wrap about-wrap full-width-layout">
|
31 |
|
32 |
+
<h1><?php echo esc_html(QLIGG_PLUGIN_NAME); ?></h1>
|
33 |
|
34 |
+
<p class="about-text"><?php printf(esc_html__('Thanks for using %s! We will do our absolute best to support you and fix all the issues.', 'insta-gallery'), QLIGG_PLUGIN_NAME); ?></p>
|
35 |
|
36 |
<p class="about-text">
|
37 |
<?php printf('<a href="%s" target="_blank">%s</a>', QLIGG_DEMO_URL, esc_html__('Check out our demo', 'insta-gallery')); ?></a>
|
136 |
}
|
137 |
|
138 |
function add_menu() {
|
139 |
+
add_menu_page('Instagram Gallery', 'Instagram Gallery', 'manage_options', QLIGG_DOMAIN, array($this, 'settings_welcome'), 'dashicons-camera');
|
140 |
add_submenu_page(QLIGG_DOMAIN, __('Welcome', 'insta-gallery'), esc_html__('Welcome', 'insta-gallery'), 'manage_options', QLIGG_DOMAIN, array($this, 'settings_welcome'));
|
141 |
add_submenu_page(QLIGG_DOMAIN, __('Account', 'insta-gallery'), esc_html__('Account', 'insta-gallery'), 'edit_posts', QLIGG_DOMAIN . '_token', array($this, 'settings_token'));
|
142 |
add_submenu_page(QLIGG_DOMAIN, __('Feeds', 'insta-gallery'), esc_html__('Feeds', 'insta-gallery'), 'edit_posts', QLIGG_DOMAIN . '_feeds', array($this, 'settings_feeds'));
|
includes/widget.php
CHANGED
@@ -5,9 +5,9 @@ if (!defined('ABSPATH'))
|
|
5 |
class QLIGG_Widget extends WP_Widget {
|
6 |
|
7 |
public function __construct() {
|
8 |
-
parent::__construct('QLIGG_Widget',
|
9 |
'classname' => 'instagal-widget',
|
10 |
-
'description' => esc_html__('Displays your Instagram
|
11 |
));
|
12 |
}
|
13 |
|
@@ -43,7 +43,7 @@ class QLIGG_Widget extends WP_Widget {
|
|
43 |
</p>
|
44 |
<?php if (!empty($InstaGalleryItems) && is_array($InstaGalleryItems)): ?>
|
45 |
<p>
|
46 |
-
<label for="<?php echo esc_attr($this->get_field_id('instagal_id')); ?>"><?php esc_html_e('Select Instagram
|
47 |
id="<?php echo esc_attr($this->get_field_id('instagal_id')); ?>" name="<?php echo esc_attr($this->get_field_name('instagal_id')); ?>" class="widefat">
|
48 |
<?php
|
49 |
foreach ($InstaGalleryItems as $k => $IGItem) {
|
@@ -55,12 +55,12 @@ class QLIGG_Widget extends WP_Widget {
|
|
55 |
}
|
56 |
?>
|
57 |
<option value="<?php echo $k; ?>" <?php selected($k, $instagal_id) ?>><?php echo $label; ?></option>
|
58 |
-
|
59 |
</select>
|
60 |
</p>
|
61 |
-
|
62 |
<p style="color: #e23565;">
|
63 |
-
|
64 |
</p>
|
65 |
<?php endif; ?>
|
66 |
<p style="text-align: center;" >
|
5 |
class QLIGG_Widget extends WP_Widget {
|
6 |
|
7 |
public function __construct() {
|
8 |
+
parent::__construct('QLIGG_Widget', QLIGG_PLUGIN_NAME, array(
|
9 |
'classname' => 'instagal-widget',
|
10 |
+
'description' => esc_html__('Displays your Instagram gallery', 'insta-gallery')
|
11 |
));
|
12 |
}
|
13 |
|
43 |
</p>
|
44 |
<?php if (!empty($InstaGalleryItems) && is_array($InstaGalleryItems)): ?>
|
45 |
<p>
|
46 |
+
<label for="<?php echo esc_attr($this->get_field_id('instagal_id')); ?>"><?php esc_html_e('Select your Instagram gallery', 'insta-gallery'); ?>: </label> <select
|
47 |
id="<?php echo esc_attr($this->get_field_id('instagal_id')); ?>" name="<?php echo esc_attr($this->get_field_name('instagal_id')); ?>" class="widefat">
|
48 |
<?php
|
49 |
foreach ($InstaGalleryItems as $k => $IGItem) {
|
55 |
}
|
56 |
?>
|
57 |
<option value="<?php echo $k; ?>" <?php selected($k, $instagal_id) ?>><?php echo $label; ?></option>
|
58 |
+
<?php } ?>
|
59 |
</select>
|
60 |
</p>
|
61 |
+
<?php else: ?>
|
62 |
<p style="color: #e23565;">
|
63 |
+
<?php _e('Please add Gallery item in plugin panel, Then come back and select your Gallery to display.', 'insta-gallery'); ?>
|
64 |
</p>
|
65 |
<?php endif; ?>
|
66 |
<p style="text-align: center;" >
|
insta-gallery.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Plugin Name: WP
|
4 |
* Plugin URI: https://quadlayers.com/portfolio/instagram-gallery/
|
5 |
* Description: Display beautifull and responsive galleries on your website from your Instagram feed account.
|
6 |
-
* Version: 2.4.
|
7 |
* Author: Quadlayers
|
8 |
* Author URI: https://quadlayers.com
|
9 |
* License: GPL-2.0+
|
@@ -15,10 +15,10 @@ if (!defined('ABSPATH'))
|
|
15 |
exit;
|
16 |
|
17 |
if (!defined('QLIGG_PLUGIN_NAME')) {
|
18 |
-
define('QLIGG_PLUGIN_NAME', '
|
19 |
}
|
20 |
if (!defined('QLIGG_PLUGIN_VERSION')) {
|
21 |
-
define('QLIGG_PLUGIN_VERSION', '2.4.
|
22 |
}
|
23 |
if (!defined('QLIGG_PLUGIN_FILE')) {
|
24 |
define('QLIGG_PLUGIN_FILE', __FILE__);
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Plugin Name: WP Social Feed Gallery
|
4 |
* Plugin URI: https://quadlayers.com/portfolio/instagram-gallery/
|
5 |
* Description: Display beautifull and responsive galleries on your website from your Instagram feed account.
|
6 |
+
* Version: 2.4.7
|
7 |
* Author: Quadlayers
|
8 |
* Author URI: https://quadlayers.com
|
9 |
* License: GPL-2.0+
|
15 |
exit;
|
16 |
|
17 |
if (!defined('QLIGG_PLUGIN_NAME')) {
|
18 |
+
define('QLIGG_PLUGIN_NAME', 'WP Social Feed Gallery');
|
19 |
}
|
20 |
if (!defined('QLIGG_PLUGIN_VERSION')) {
|
21 |
+
define('QLIGG_PLUGIN_VERSION', '2.4.7');
|
22 |
}
|
23 |
if (!defined('QLIGG_PLUGIN_FILE')) {
|
24 |
define('QLIGG_PLUGIN_FILE', __FILE__);
|
languages/index.php
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Silence is golden.
|
|
|
|
languages/insta-gallery-es_ES.mo
DELETED
Binary file
|
languages/insta-gallery-es_ES.po
DELETED
@@ -1,428 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2018-05-15 16:33+0000\n"
|
5 |
-
"PO-Revision-Date: 2018-05-15 16:34+0000\n"
|
6 |
-
"Last-Translator: bunti <buntisoft@gmail.com>\n"
|
7 |
-
"Language-Team: Spanish (Spain)\n"
|
8 |
-
"Language: es_ES\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Loco https://localise.biz/\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
-
"Report-Msgid-Bugs-To: "
|
18 |
-
|
19 |
-
#: insta-gallery.php:95
|
20 |
-
msgid "settings updated successfully"
|
21 |
-
msgstr "opciones actualizadas correctamente"
|
22 |
-
|
23 |
-
#: insta-gallery.php:117 app/wp-front.php:144 app/wp-front.php:149
|
24 |
-
#: app/wp-panel.php:82 app/wp-widget.php:19
|
25 |
-
msgid "Instagram Gallery"
|
26 |
-
msgstr "Instagram Gallery"
|
27 |
-
|
28 |
-
#: insta-gallery.php:138
|
29 |
-
msgid "Settings"
|
30 |
-
msgstr "Configuración"
|
31 |
-
|
32 |
-
#: app/wp-front.php:339
|
33 |
-
msgid "ERROR: invalid display type, please check gallery settings."
|
34 |
-
msgstr ""
|
35 |
-
"ERROR: display inválido, por favor revisa la configuración de la galería."
|
36 |
-
|
37 |
-
#: app/wp-front.php:346
|
38 |
-
msgid "Instagram account may be private or inavalid username/tagname."
|
39 |
-
msgstr ""
|
40 |
-
"La cuenta de Instagram puede ser privada o el usuario/hashtag inválido."
|
41 |
-
|
42 |
-
#: app/wp-front.php:347
|
43 |
-
msgid "network or server side issue."
|
44 |
-
msgstr "problema de red o del servidor."
|
45 |
-
|
46 |
-
#: app/wp-panel.php:64
|
47 |
-
msgid "Gallery item updated successfully."
|
48 |
-
msgstr "El ítem se actualizó correctamente."
|
49 |
-
|
50 |
-
#: app/wp-panel.php:74
|
51 |
-
msgid "Gallery item deleted successfully."
|
52 |
-
msgstr "El ítem se eliminó correctamente."
|
53 |
-
|
54 |
-
#: app/wp-panel.php:83
|
55 |
-
msgid "easy way to display Instagram pictures on the website."
|
56 |
-
msgstr "una manera fácil de mostrar fotos de Instagram en un sitio web."
|
57 |
-
|
58 |
-
#: app/wp-widget.php:21
|
59 |
-
msgid "Displays your Instagram Gallery"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: app/wp-widget.php:55
|
63 |
-
msgid "Title"
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: app/wp-widget.php:62
|
67 |
-
msgid "Select Instagram Gallery"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: app/wp-widget.php:68 app/views/edit.php:47 app/views/list.php:34
|
71 |
-
msgid "Username"
|
72 |
-
msgstr "Usuario"
|
73 |
-
|
74 |
-
#: app/wp-widget.php:70 app/views/edit.php:49 app/views/list.php:36
|
75 |
-
msgid "Tagname"
|
76 |
-
msgstr "Hashtag"
|
77 |
-
|
78 |
-
#: app/wp-widget.php:79
|
79 |
-
msgid ""
|
80 |
-
"Please add Gallery item in plugin panel, Then come back and select your "
|
81 |
-
"Gallery to display."
|
82 |
-
msgstr ""
|
83 |
-
"Por favor agrega un ítem desde el panel del plugin, luego vuelve y "
|
84 |
-
"selecciona la galería a mostrar."
|
85 |
-
|
86 |
-
#: app/wp-widget.php:83 app/views/list.php:11 app/views/list.php:11
|
87 |
-
msgid "Add New Gallery"
|
88 |
-
msgstr "Nueva Galería"
|
89 |
-
|
90 |
-
#: app/views/edit.php:37
|
91 |
-
msgid "View Galleries List"
|
92 |
-
msgstr "Ver Lista de Galerías"
|
93 |
-
|
94 |
-
#: app/views/edit.php:37
|
95 |
-
msgid "Back to List"
|
96 |
-
msgstr "Volver a listas"
|
97 |
-
|
98 |
-
#: app/views/edit.php:43
|
99 |
-
msgid "Display Instagram Gallery from"
|
100 |
-
msgstr "Mostrar Galería desde"
|
101 |
-
|
102 |
-
#: app/views/edit.php:51
|
103 |
-
msgid ""
|
104 |
-
"Please select option to display pictures from Instagram Username OR # Tag."
|
105 |
-
msgstr ""
|
106 |
-
"Por favor selecciona una opción para mostrar fotos desde un usuario o # Tag."
|
107 |
-
|
108 |
-
#: app/views/edit.php:59
|
109 |
-
msgid "Instagram Username"
|
110 |
-
msgstr "Usuario de Instagram"
|
111 |
-
|
112 |
-
#: app/views/edit.php:65
|
113 |
-
msgid "Please enter Instagram Username."
|
114 |
-
msgstr "Por favor ingresa un nombre de usuario."
|
115 |
-
|
116 |
-
#: app/views/edit.php:68 app/views/edit.php:88
|
117 |
-
msgid "Pictures Limit"
|
118 |
-
msgstr "Limite de fotos"
|
119 |
-
|
120 |
-
#: app/views/edit.php:70
|
121 |
-
msgid "number of pictures to display (max: 12)"
|
122 |
-
msgstr "número de fotos a mostrar (max: 12)"
|
123 |
-
|
124 |
-
#: app/views/edit.php:79
|
125 |
-
msgid "Instagram Tagname"
|
126 |
-
msgstr "Hashtag"
|
127 |
-
|
128 |
-
#: app/views/edit.php:85
|
129 |
-
msgid "Please enter Instagram Tagname."
|
130 |
-
msgstr "Por favor ingresa un Hashtag."
|
131 |
-
|
132 |
-
#: app/views/edit.php:90
|
133 |
-
msgid "number of pictures to display."
|
134 |
-
msgstr "número de fotos a mostrar."
|
135 |
-
|
136 |
-
#: app/views/edit.php:96
|
137 |
-
msgid "Show As"
|
138 |
-
msgstr "Mostrar como"
|
139 |
-
|
140 |
-
#: app/views/edit.php:99
|
141 |
-
msgid "Gallery"
|
142 |
-
msgstr "Galería"
|
143 |
-
|
144 |
-
#: app/views/edit.php:102
|
145 |
-
msgid "Carousel"
|
146 |
-
msgstr "Carrusel"
|
147 |
-
|
148 |
-
#: app/views/edit.php:110
|
149 |
-
msgid "Pictures will be displayed as Grid."
|
150 |
-
msgstr "Las fotos se mostrarán en una cuadrícula."
|
151 |
-
|
152 |
-
#: app/views/edit.php:114
|
153 |
-
msgid "No. of Grid Columns"
|
154 |
-
msgstr "No. de columnas"
|
155 |
-
|
156 |
-
#: app/views/edit.php:116
|
157 |
-
msgid "number of pictures in a row"
|
158 |
-
msgstr "número de fotos por fila"
|
159 |
-
|
160 |
-
#: app/views/edit.php:120
|
161 |
-
msgid "Image hover effect"
|
162 |
-
msgstr "Efecto hover"
|
163 |
-
|
164 |
-
#: app/views/edit.php:122
|
165 |
-
msgid "mouseover animation effect on image"
|
166 |
-
msgstr "animación al pasar el mouse"
|
167 |
-
|
168 |
-
#: app/views/edit.php:125
|
169 |
-
msgid "Space between images"
|
170 |
-
msgstr "Espacio entre imágenes"
|
171 |
-
|
172 |
-
#: app/views/edit.php:127
|
173 |
-
msgid "add blank space between images"
|
174 |
-
msgstr "agregar espacio entre imágenes"
|
175 |
-
|
176 |
-
#: app/views/edit.php:135
|
177 |
-
msgid "Pictures will be displayed as Carousel slider."
|
178 |
-
msgstr "Las fotos se mostrarán como carrusel."
|
179 |
-
|
180 |
-
#: app/views/edit.php:139
|
181 |
-
msgid "Slides per view"
|
182 |
-
msgstr "Imágenes por vista"
|
183 |
-
|
184 |
-
#: app/views/edit.php:141
|
185 |
-
msgid "display number of pictures per slide view."
|
186 |
-
msgstr "número de fotos por slide."
|
187 |
-
|
188 |
-
#: app/views/edit.php:145
|
189 |
-
msgid "Autoplay"
|
190 |
-
msgstr "Autoplay"
|
191 |
-
|
192 |
-
#: app/views/edit.php:147
|
193 |
-
msgid "autoplay carousel items."
|
194 |
-
msgstr "activa el autoplay."
|
195 |
-
|
196 |
-
#: app/views/edit.php:150
|
197 |
-
msgid "Navigation arrows"
|
198 |
-
msgstr "Flechas de navegación"
|
199 |
-
|
200 |
-
#: app/views/edit.php:152
|
201 |
-
msgid "show prev-next navigation arrows."
|
202 |
-
msgstr "mostrar flechas anterior-siguiente."
|
203 |
-
|
204 |
-
#: app/views/edit.php:155
|
205 |
-
msgid "Navigation arrows color"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: app/views/edit.php:159
|
209 |
-
msgid "change navigation arrows color here."
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: app/views/edit.php:162
|
213 |
-
msgid "Dotted navigation"
|
214 |
-
msgstr "Puntos de navegación"
|
215 |
-
|
216 |
-
#: app/views/edit.php:164
|
217 |
-
msgid "show dotted navigation buttons."
|
218 |
-
msgstr "mostrar puntos de navegación."
|
219 |
-
|
220 |
-
#: app/views/edit.php:165 app/views/edit.php:204
|
221 |
-
msgid "Deprecated: this option will be removed in the future updates."
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: app/views/edit.php:169
|
225 |
-
msgid "Space between slides"
|
226 |
-
msgstr "Espacio ente slides"
|
227 |
-
|
228 |
-
#: app/views/edit.php:171
|
229 |
-
msgid "add blank space between carousel items."
|
230 |
-
msgstr "agregar espacio en blanco entre las imágenes del carrusel."
|
231 |
-
|
232 |
-
#: app/views/edit.php:177
|
233 |
-
msgid "Images thumbnail size"
|
234 |
-
msgstr "Tamaño de imágen"
|
235 |
-
|
236 |
-
#: app/views/edit.php:179
|
237 |
-
msgid "Medium"
|
238 |
-
msgstr "Mediano"
|
239 |
-
|
240 |
-
#: app/views/edit.php:180
|
241 |
-
msgid "Small"
|
242 |
-
msgstr "Pequeño"
|
243 |
-
|
244 |
-
#: app/views/edit.php:185
|
245 |
-
msgid "Images hover effect color"
|
246 |
-
msgstr "Color de efecto hover"
|
247 |
-
|
248 |
-
#: app/views/edit.php:188
|
249 |
-
msgid "select color which is displayed when hovered over images."
|
250 |
-
msgstr "selecciona el color que será mostrado al pasar sobre las imágenes."
|
251 |
-
|
252 |
-
#: app/views/edit.php:189
|
253 |
-
msgid "color name should be in Hexadecimal notation. e.g. #dddddd"
|
254 |
-
msgstr "el color debe ser un valor Hexadecimal. ej: #dddddd"
|
255 |
-
|
256 |
-
#: app/views/edit.php:193
|
257 |
-
msgid "Popup images on click"
|
258 |
-
msgstr "Activar popup al hacer click"
|
259 |
-
|
260 |
-
#: app/views/edit.php:195
|
261 |
-
msgid ""
|
262 |
-
"show popup gallery by clicking on image thumbnail. else it will open "
|
263 |
-
"Instagram page."
|
264 |
-
msgstr ""
|
265 |
-
"muestra una galería en formato popup al hacer clic en la imagen, si no, "
|
266 |
-
"abrirá la página de Instagram."
|
267 |
-
|
268 |
-
#: app/views/edit.php:196
|
269 |
-
msgid ""
|
270 |
-
"uncheck this if it conflicts with other plugins, like: fancybox, prettyphoto "
|
271 |
-
"etc."
|
272 |
-
msgstr ""
|
273 |
-
"desmarca esta opción si hace conflicto con otros plugins como: fancybox, "
|
274 |
-
"prettyphoto, etc."
|
275 |
-
|
276 |
-
#: app/views/edit.php:200
|
277 |
-
msgid "Display image caption"
|
278 |
-
msgstr "Mostrar descripción de la imágen"
|
279 |
-
|
280 |
-
#: app/views/edit.php:202
|
281 |
-
msgid "Display caption/tags below images when popup."
|
282 |
-
msgstr "Mostrar texto/tags debajo de la imagen en modo popup."
|
283 |
-
|
284 |
-
#: app/views/edit.php:208
|
285 |
-
msgid "Display Likes"
|
286 |
-
msgstr "Mostrar likes"
|
287 |
-
|
288 |
-
#: app/views/edit.php:210
|
289 |
-
msgid "display likes count of images."
|
290 |
-
msgstr "mostrar cantidad de likes."
|
291 |
-
|
292 |
-
#: app/views/edit.php:213
|
293 |
-
msgid "Display Comments"
|
294 |
-
msgstr "Mostrar comentarios"
|
295 |
-
|
296 |
-
#: app/views/edit.php:215
|
297 |
-
msgid "display comments count of images."
|
298 |
-
msgstr "mostrar cantidad de comentarios."
|
299 |
-
|
300 |
-
#: app/views/edit.php:218
|
301 |
-
msgid "Display Instagram Link Button"
|
302 |
-
msgstr "Mostrar botón de enlace a Instagram"
|
303 |
-
|
304 |
-
#: app/views/edit.php:220
|
305 |
-
msgid "show the button to open Instagram site link"
|
306 |
-
msgstr "suestra el botón para abrir la página de Instagram"
|
307 |
-
|
308 |
-
#: app/views/edit.php:226
|
309 |
-
msgid "Instagram Button Text"
|
310 |
-
msgstr "Texto del botón"
|
311 |
-
|
312 |
-
#: app/views/edit.php:228
|
313 |
-
msgid "update Instagram button text here."
|
314 |
-
msgstr "actualiza el texto del botón."
|
315 |
-
|
316 |
-
#: app/views/edit.php:231
|
317 |
-
msgid "Button Background Color"
|
318 |
-
msgstr "Color de fondo del botón"
|
319 |
-
|
320 |
-
#: app/views/edit.php:235
|
321 |
-
msgid "color which is displayed on button background."
|
322 |
-
msgstr "el color de fondo que tendrá el botón."
|
323 |
-
|
324 |
-
#: app/views/edit.php:238
|
325 |
-
msgid "Button Hover Color"
|
326 |
-
msgstr "Color secundario del botón"
|
327 |
-
|
328 |
-
#: app/views/edit.php:242
|
329 |
-
msgid "color which is displayed when hovered over button."
|
330 |
-
msgstr "el color que será mostrado al pasar el mouse por el botón."
|
331 |
-
|
332 |
-
#: app/views/edit.php:251 app/views/list.php:133
|
333 |
-
msgid "Update"
|
334 |
-
msgstr "Actualizar"
|
335 |
-
|
336 |
-
#: app/views/edit.php:253
|
337 |
-
msgid ""
|
338 |
-
"update settings and copy/paste generated shortcode in your post/pages or "
|
339 |
-
"goto Widgets and use Instagram Gallery widget."
|
340 |
-
msgstr ""
|
341 |
-
"actualiza las opciones y copia/pega el shortcode generado en tu post/página "
|
342 |
-
"o ve a Widgets para usar el widget de Instagram Gallery."
|
343 |
-
|
344 |
-
#: app/views/list.php:21
|
345 |
-
msgid "Gallery Item"
|
346 |
-
msgstr "Item"
|
347 |
-
|
348 |
-
#: app/views/list.php:22
|
349 |
-
msgid "Shortcode"
|
350 |
-
msgstr "Shortcode"
|
351 |
-
|
352 |
-
#: app/views/list.php:23
|
353 |
-
msgid "Action"
|
354 |
-
msgstr "Acción"
|
355 |
-
|
356 |
-
#: app/views/list.php:41
|
357 |
-
msgid "Edit"
|
358 |
-
msgstr "Editar"
|
359 |
-
|
360 |
-
#: app/views/list.php:42
|
361 |
-
msgid "Delete"
|
362 |
-
msgstr "Borrar"
|
363 |
-
|
364 |
-
#: app/views/list.php:53
|
365 |
-
msgid "Additional Setting"
|
366 |
-
msgstr "Opciones adicionales"
|
367 |
-
|
368 |
-
#: app/views/list.php:61
|
369 |
-
msgid "Gallery Loader Icon"
|
370 |
-
msgstr "Icono de carga"
|
371 |
-
|
372 |
-
#: app/views/list.php:75
|
373 |
-
msgid "Update Spinner"
|
374 |
-
msgstr "Actualizar Spinner"
|
375 |
-
|
376 |
-
#: app/views/list.php:76
|
377 |
-
msgid "Reset Spinner"
|
378 |
-
msgstr "Resetear Spinner"
|
379 |
-
|
380 |
-
#: app/views/list.php:79
|
381 |
-
msgid ""
|
382 |
-
"please select the image from media to replace with default Gallery loader "
|
383 |
-
"icon."
|
384 |
-
msgstr "por favor selecciona una imagen para remplazar el icono de carga."
|
385 |
-
|
386 |
-
#: app/views/list.php:126
|
387 |
-
msgid "Remove everything on uninstall"
|
388 |
-
msgstr "Remover todo al desinstalar"
|
389 |
-
|
390 |
-
#: app/views/list.php:128
|
391 |
-
msgid ""
|
392 |
-
"check this box to remove all data related to this plugin when removing the "
|
393 |
-
"plugin."
|
394 |
-
msgstr ""
|
395 |
-
"marca esta opción para remover todos los datos relacionados a este plugin al "
|
396 |
-
"desinstalarlo."
|
397 |
-
|
398 |
-
#: app/views/list.php:142
|
399 |
-
msgid ""
|
400 |
-
"Please Donate now to support the Maintainance and Advancement of this plugin."
|
401 |
-
" Thanks"
|
402 |
-
msgstr ""
|
403 |
-
"Por favor dona ahora para apoyar el mantenimiento y avance de este plugin. "
|
404 |
-
"Gracias"
|
405 |
-
|
406 |
-
#: app/views/list.php:143
|
407 |
-
msgid "Donate"
|
408 |
-
msgstr "Donar"
|
409 |
-
|
410 |
-
#: app/views/list.php:151
|
411 |
-
msgid "Are you sure want to delete this item?"
|
412 |
-
msgstr "Estás seguro/a de que quieres borrar este ítem?"
|
413 |
-
|
414 |
-
#: app/views/list.php:174
|
415 |
-
msgid "please make sure every settings will be removed on plugin uninstall."
|
416 |
-
msgstr "por favor asegúrate de que cada opción sea removida al desinstalar."
|
417 |
-
|
418 |
-
#. Description of the plugin
|
419 |
-
msgid "Display Gallery on the website from Instagram."
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#. Author of the plugin
|
423 |
-
msgid "Karan Singh"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#. Author URI of the plugin
|
427 |
-
msgid "https://www.karansingh.ml/"
|
428 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/insta-gallery.pot
CHANGED
@@ -1,412 +1,894 @@
|
|
1 |
-
#, fuzzy
|
2 |
-
msgid ""
|
3 |
-
msgstr ""
|
4 |
-
"Project-Id-Version:
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"X-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
#:
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
#:
|
28 |
-
msgid "
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#:
|
32 |
-
msgid "
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#:
|
36 |
-
msgid "
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#:
|
40 |
-
msgid "
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
msgid "
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#:
|
135 |
-
msgid "
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
#:
|
139 |
-
msgid "
|
140 |
-
msgstr ""
|
141 |
-
|
142 |
-
#:
|
143 |
-
msgid "
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#:
|
147 |
-
msgid "
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
"
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#:
|
287 |
-
msgid "
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#:
|
291 |
-
msgid "
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#:
|
295 |
-
msgid "
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#:
|
299 |
-
msgid "
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#:
|
303 |
-
msgid "
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#:
|
307 |
-
msgid "
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#:
|
311 |
-
msgid "
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#:
|
315 |
-
msgid "
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#:
|
319 |
-
msgid "
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
#:
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
#:
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
#:
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
"
|
371 |
-
"
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: WP Social Feed Gallery\n"
|
5 |
+
"POT-Creation-Date: 2019-08-09 08:43-0300\n"
|
6 |
+
"PO-Revision-Date: 2019-08-09 08:43-0300\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.1\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-WPHeader: insta-gallery.php\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
18 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
|
22 |
+
#: includes/ajax.php:28
|
23 |
+
msgid "Settings updated successfully"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: includes/ajax.php:31 includes/ajax.php:68 includes/ajax.php:91
|
27 |
+
#: includes/ajax.php:170 includes/ajax.php:191
|
28 |
+
msgid "Invalid Request"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: includes/ajax.php:41
|
32 |
+
msgid "Empty access token"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/ajax.php:47
|
36 |
+
msgid "Invalid access token"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: includes/ajax.php:55
|
40 |
+
msgid ""
|
41 |
+
"Account already connected. To connect a new account logout from Instagram in "
|
42 |
+
"this browser."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/ajax.php:65
|
46 |
+
msgid "Access token created"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/ajax.php:78 includes/frontend.php:56
|
50 |
+
msgid "Invalid item id"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/ajax.php:88
|
54 |
+
msgid "Token removed successfully"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/ajax.php:101
|
58 |
+
msgid "Select gallery item type"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/ajax.php:104
|
62 |
+
msgid "Username is empty"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/ajax.php:107
|
66 |
+
msgid "Tag is empty"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/api.php:274
|
70 |
+
msgid "Please provide a valid #tag"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/api.php:305
|
74 |
+
msgid "Unknow error occurred, please try again"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/frontend.php:248
|
78 |
+
#, php-format
|
79 |
+
msgid "The layout %s is not a available."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/pages/premium.php:4 includes/pages/views/edit.php:94
|
83 |
+
#: includes/pages/views/edit.php:99 includes/settings.php:13
|
84 |
+
#: includes/settings.php:143
|
85 |
+
msgid "Premium"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: includes/pages/premium.php:6
|
89 |
+
#, php-format
|
90 |
+
msgid ""
|
91 |
+
"Unlock the power of our premium %s plugin which allows you to add unlimited "
|
92 |
+
"Instagram accounts and offers you more layout options."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: includes/pages/premium.php:9
|
96 |
+
msgid "Purchase Now"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: includes/pages/premium.php:10
|
100 |
+
msgid "Get Support"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: includes/pages/premium.php:14
|
104 |
+
msgid "Multiple accounts"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: includes/pages/premium.php:16
|
108 |
+
msgid ""
|
109 |
+
"Include unlimited user accounts and create feeds galleries for different "
|
110 |
+
"users with their own layout and settings."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: includes/pages/premium.php:20
|
114 |
+
msgid "Customize colors"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/pages/premium.php:22
|
118 |
+
msgid ""
|
119 |
+
"Customize the colors of the Instagram Feed with a custom background, "
|
120 |
+
"padding, and a rounded border. It also includes the user or tag profile info "
|
121 |
+
"in the header of the box."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/pages/premium.php:26
|
125 |
+
msgid "Load more button"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/pages/premium.php:28
|
129 |
+
msgid ""
|
130 |
+
"Allow your users to load more images in the gallery providing an improved "
|
131 |
+
"user experience."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/pages/premium.php:43
|
135 |
+
msgid "More content"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/pages/premium.php:45
|
139 |
+
msgid "Include some extra content for the images and the images popup."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/pages/premium.php:50
|
143 |
+
msgid "Popup content"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/pages/premium.php:52
|
147 |
+
msgid ""
|
148 |
+
"Our premium version allows you to include some extra content in the image "
|
149 |
+
"popup, like the user profile, the image caption, and the number of comments "
|
150 |
+
"and likes."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: includes/pages/premium.php:60
|
154 |
+
msgid "Layouts"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: includes/pages/premium.php:62
|
158 |
+
msgid ""
|
159 |
+
"Unlock the power of the masonry and highlight layouts that allows you to "
|
160 |
+
"display the Instagram Feeds in a grid that supports items of variable size."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/pages/premium.php:67
|
164 |
+
msgid "Masonry layout"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/pages/premium.php:69
|
168 |
+
msgid ""
|
169 |
+
"The masonry layout is a grid that displays the images with a fixed with and "
|
170 |
+
"variable height size."
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: includes/pages/premium.php:73
|
174 |
+
msgid "Highlight layout"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: includes/pages/premium.php:75
|
178 |
+
msgid ""
|
179 |
+
"The highlight layout is a masonry grid that allows you to stand out some "
|
180 |
+
"images with two or three columns width size."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/pages/token.php:7 includes/pages/token.php:8
|
184 |
+
msgid "Add New Account"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: includes/pages/token.php:11
|
188 |
+
msgid "Button not working?"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/pages/token.php:14
|
192 |
+
msgid "Manually connect an account"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/pages/token.php:16
|
196 |
+
msgid "Enter a valid Access Token"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/pages/token.php:18 includes/pages/token.php:118
|
200 |
+
#: includes/pages/views/edit.php:624
|
201 |
+
msgid "Update"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: includes/pages/token.php:20
|
205 |
+
msgid "Get access token"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/pages/token.php:28 includes/pages/views/list.php:17
|
209 |
+
msgid "Image"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: includes/pages/token.php:29
|
213 |
+
msgid "ID"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/pages/token.php:30 includes/pages/views/edit.php:17
|
217 |
+
#: includes/pages/views/edit.php:38
|
218 |
+
msgid "User"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/pages/token.php:31
|
222 |
+
msgid "Name"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/pages/token.php:32
|
226 |
+
msgid "Token"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/pages/token.php:33 includes/pages/views/list.php:21
|
230 |
+
msgid "Action"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: includes/pages/token.php:52
|
234 |
+
msgid "Copy"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: includes/pages/token.php:55 includes/pages/views/list.php:54
|
238 |
+
msgid "Delete"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/pages/token.php:75
|
242 |
+
msgid "Loader icon"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/pages/token.php:89
|
246 |
+
msgid "Upload"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/pages/token.php:90
|
250 |
+
msgid "Reset Spinner"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/pages/token.php:92
|
254 |
+
msgid "Please select the image from media to replace with default loader icon."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/pages/token.php:101
|
258 |
+
msgid "Remove data on uninstall"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/pages/token.php:105
|
262 |
+
msgid ""
|
263 |
+
"Check this box to remove all data related to this plugin when removing the "
|
264 |
+
"plugin."
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: includes/pages/views/edit.php:12 includes/pages/views/list.php:19
|
268 |
+
msgid "Type"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: includes/pages/views/edit.php:22 includes/pages/views/edit.php:66
|
272 |
+
msgid "Tag"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: includes/pages/views/edit.php:27
|
276 |
+
msgid "Please select option to display images from Instagram @username or #tag"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/pages/views/edit.php:42
|
280 |
+
#, php-format
|
281 |
+
msgid ""
|
282 |
+
"No Instagram account connected. Please connect your account <a href=\"%s"
|
283 |
+
"\">here</a>."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/pages/views/edit.php:54
|
287 |
+
msgid "Please enter Instagram username"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/pages/views/edit.php:69
|
291 |
+
msgid "Please enter Instagram tag"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/pages/views/edit.php:79
|
295 |
+
msgid "Layout"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/pages/views/edit.php:84
|
299 |
+
msgid "Gallery"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/pages/views/edit.php:89
|
303 |
+
msgid "Carousel"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/pages/views/edit.php:94
|
307 |
+
msgid "Masonry"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/pages/views/edit.php:99
|
311 |
+
msgid "Highlight"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/pages/views/edit.php:112
|
315 |
+
msgid "Box"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/pages/views/edit.php:116
|
319 |
+
msgid "Display the Instagram Feed inside a customizable box"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/pages/views/edit.php:118 includes/pages/views/edit.php:134
|
323 |
+
#: includes/pages/views/edit.php:144 includes/pages/views/edit.php:154
|
324 |
+
#: includes/pages/views/edit.php:170 includes/pages/views/edit.php:180
|
325 |
+
#: includes/pages/views/edit.php:221 includes/pages/views/edit.php:229
|
326 |
+
#: includes/pages/views/edit.php:237 includes/pages/views/edit.php:334
|
327 |
+
#: includes/pages/views/edit.php:350 includes/pages/views/edit.php:360
|
328 |
+
#: includes/pages/views/edit.php:370 includes/pages/views/edit.php:389
|
329 |
+
#: includes/pages/views/edit.php:399 includes/pages/views/edit.php:438
|
330 |
+
#: includes/pages/views/edit.php:446 includes/pages/views/edit.php:456
|
331 |
+
#: includes/pages/views/edit.php:469 includes/pages/views/edit.php:533
|
332 |
+
#: includes/pages/views/edit.php:549 includes/pages/views/edit.php:559
|
333 |
+
#: includes/pages/views/edit.php:569
|
334 |
+
msgid "This is a premium feature."
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: includes/pages/views/edit.php:128
|
338 |
+
msgid "Box padding"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: includes/pages/views/edit.php:132
|
342 |
+
msgid "Add padding to the Instagram Feed"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/pages/views/edit.php:138
|
346 |
+
msgid "Box radius"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: includes/pages/views/edit.php:142 includes/pages/views/edit.php:348
|
350 |
+
msgid "Add radius to the Instagram Feed"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: includes/pages/views/edit.php:148
|
354 |
+
msgid "Box background"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: includes/pages/views/edit.php:152
|
358 |
+
msgid "Color which is displayed on box background"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/pages/views/edit.php:164
|
362 |
+
msgid "Profile"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/pages/views/edit.php:168 includes/pages/views/edit.php:436
|
366 |
+
msgid "Display user profile or tag info"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/pages/views/edit.php:174
|
370 |
+
msgid "Profile description"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/pages/views/edit.php:178
|
374 |
+
msgid "Box description here"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/pages/views/edit.php:190
|
378 |
+
msgid "Limit"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/pages/views/edit.php:192
|
382 |
+
msgid "Number of images to display"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/pages/views/edit.php:202
|
386 |
+
msgid "Columns"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/pages/views/edit.php:206
|
390 |
+
msgid "Number of images in a row"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/pages/views/edit.php:217
|
394 |
+
msgid "Highlight by tag"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/pages/views/edit.php:220
|
398 |
+
msgid "Highlight feeds items with this tags"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/pages/views/edit.php:225
|
402 |
+
msgid "Highlight by id"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/pages/views/edit.php:228
|
406 |
+
msgid "Highlight feeds items with this ids"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: includes/pages/views/edit.php:233
|
410 |
+
msgid "Highlight by position"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/pages/views/edit.php:236
|
414 |
+
msgid "Highlight feeds items in this positions"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/pages/views/edit.php:247
|
418 |
+
msgid "Slides per view"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/pages/views/edit.php:250
|
422 |
+
msgid "Number of images per slide"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/pages/views/edit.php:254
|
426 |
+
msgid "Autoplay"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/pages/views/edit.php:257
|
430 |
+
msgid "Autoplay carousel items"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/pages/views/edit.php:261
|
434 |
+
msgid "Autoplay Interval"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/pages/views/edit.php:265
|
438 |
+
msgid "Moves to next picture after specified time interval"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/pages/views/edit.php:269
|
442 |
+
msgid "Navigation"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: includes/pages/views/edit.php:272
|
446 |
+
msgid "Display navigation arrows"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/pages/views/edit.php:276
|
450 |
+
msgid "Navigation color"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/pages/views/edit.php:279
|
454 |
+
msgid "Change navigation arrows color"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/pages/views/edit.php:283
|
458 |
+
msgid "Pagination"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: includes/pages/views/edit.php:286
|
462 |
+
msgid "Display pagination dots"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/pages/views/edit.php:290
|
466 |
+
msgid "Pagination color"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/pages/views/edit.php:293
|
470 |
+
msgid "Change pagination dotts color"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/pages/views/edit.php:303
|
474 |
+
msgid "Images size"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/pages/views/edit.php:306
|
478 |
+
msgid "Standard"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: includes/pages/views/edit.php:307
|
482 |
+
msgid "Medium"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/pages/views/edit.php:308
|
486 |
+
msgid "Small"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/pages/views/edit.php:313
|
490 |
+
msgid "Images spacing"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: includes/pages/views/edit.php:317 includes/pages/views/edit.php:378
|
494 |
+
#: includes/pages/views/edit.php:407
|
495 |
+
msgid "Add blank space between images"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/pages/views/edit.php:328
|
499 |
+
msgid "Images card"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/pages/views/edit.php:332
|
503 |
+
msgid "Display card gallery by clicking on image"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/pages/views/edit.php:344
|
507 |
+
msgid "Card radius"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/pages/views/edit.php:354
|
511 |
+
msgid "Card font size"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/pages/views/edit.php:358
|
515 |
+
msgid "Add font-size to the Instagram Feed"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/pages/views/edit.php:364
|
519 |
+
msgid "Card background"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/pages/views/edit.php:368
|
523 |
+
msgid "Color which is displayed when carded over images"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/pages/views/edit.php:374
|
527 |
+
msgid "Card padding"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/pages/views/edit.php:383
|
531 |
+
msgid "Card info"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/pages/views/edit.php:387 includes/pages/views/edit.php:454
|
535 |
+
#: includes/pages/views/edit.php:468 includes/pages/views/edit.php:507
|
536 |
+
msgid "Display likes count of images"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: includes/pages/views/edit.php:393
|
540 |
+
msgid "Card caption"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: includes/pages/views/edit.php:397
|
544 |
+
msgid "Display caption count of images"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: includes/pages/views/edit.php:403
|
548 |
+
msgid "Card length"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: includes/pages/views/edit.php:418
|
552 |
+
msgid "Images popup"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/pages/views/edit.php:421
|
556 |
+
msgid "Display popup gallery by clicking on image"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: includes/pages/views/edit.php:432
|
560 |
+
msgid "Images popup profile"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/pages/views/edit.php:442
|
564 |
+
msgid "Images popup caption"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: includes/pages/views/edit.php:445
|
568 |
+
msgid "Display caption in the popup"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: includes/pages/views/edit.php:450
|
572 |
+
msgid "Images popup likes"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: includes/pages/views/edit.php:460
|
576 |
+
msgid "Images popup align"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: includes/pages/views/edit.php:463
|
580 |
+
msgid "Top"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: includes/pages/views/edit.php:464
|
584 |
+
msgid "Left"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: includes/pages/views/edit.php:465
|
588 |
+
msgid "Right"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: includes/pages/views/edit.php:466
|
592 |
+
msgid "Bottom"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: includes/pages/views/edit.php:479
|
596 |
+
msgid "Images mask"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: includes/pages/views/edit.php:483
|
600 |
+
msgid "Image mouseover effect"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: includes/pages/views/edit.php:494
|
604 |
+
msgid "Images mask color"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: includes/pages/views/edit.php:498
|
608 |
+
msgid "Color which is displayed when hovered over images"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: includes/pages/views/edit.php:503
|
612 |
+
msgid "Images mask likes"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/pages/views/edit.php:512
|
616 |
+
msgid "Images mask comments"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: includes/pages/views/edit.php:516
|
620 |
+
msgid "Display comments count of images"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/pages/views/edit.php:527
|
624 |
+
msgid "Instagram load more"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: includes/pages/views/edit.php:531
|
628 |
+
msgid "Display the load more button"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/pages/views/edit.php:543
|
632 |
+
msgid "Instagram load more text"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/pages/views/edit.php:547
|
636 |
+
msgid "Instagram load more text here"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: includes/pages/views/edit.php:553
|
640 |
+
msgid "Instagram load more background"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: includes/pages/views/edit.php:557
|
644 |
+
msgid "Color which is displayed on button load background"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: includes/pages/views/edit.php:563
|
648 |
+
msgid "Instagram load more hover background"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: includes/pages/views/edit.php:567
|
652 |
+
msgid "Color which is displayed when hovered over button load more"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: includes/pages/views/edit.php:579
|
656 |
+
msgid "Instagram button"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: includes/pages/views/edit.php:583
|
660 |
+
msgid "Display the button to open Instagram site link"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: includes/pages/views/edit.php:594
|
664 |
+
msgid "Instagram button text"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: includes/pages/views/edit.php:598
|
668 |
+
msgid "Instagram button text here"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/pages/views/edit.php:603
|
672 |
+
msgid "Instagram button background"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/pages/views/edit.php:606
|
676 |
+
msgid "Color which is displayed on button background"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/pages/views/edit.php:610
|
680 |
+
msgid "Instagram button hover background"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/pages/views/edit.php:613
|
684 |
+
msgid "Color which is displayed when hovered over button"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/pages/views/edit.php:626
|
688 |
+
#, php-format
|
689 |
+
msgid ""
|
690 |
+
"Update settings and copy/paste generated shortcode in your post/pages or go "
|
691 |
+
"to Widgets and use %s widget"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: includes/pages/views/list.php:7 includes/pages/views/list.php:9
|
695 |
+
#: includes/widget.php:67
|
696 |
+
msgid "Add New Gallery"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: includes/pages/views/list.php:18
|
700 |
+
msgid "Source"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: includes/pages/views/list.php:20
|
704 |
+
msgid "Shortcode"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: includes/pages/views/list.php:51
|
708 |
+
msgid "Edit"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: includes/pages/welcome.php:10
|
712 |
+
msgid ""
|
713 |
+
"Hello we're QuadLayers! We've recently acquired this plugin and this is the "
|
714 |
+
"first update. We will do our absolute best to support it and fix all the "
|
715 |
+
"issues."
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: includes/pages/welcome.php:15
|
719 |
+
msgid "Community"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: includes/pages/welcome.php:17
|
723 |
+
#, php-format
|
724 |
+
msgid ""
|
725 |
+
"If you want to get in touch with other %s users or be aware of our "
|
726 |
+
"promotional discounts join our community now."
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#: includes/pages/welcome.php:19
|
730 |
+
msgid "Join us"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: includes/pages/welcome.php:22
|
734 |
+
msgid "Demo"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: includes/pages/welcome.php:24
|
738 |
+
#, php-format
|
739 |
+
msgid ""
|
740 |
+
"Thank you for choosing our %s plugin for WordPress! Here you can see our "
|
741 |
+
"demo and a description about the features we offer in the premium version."
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/pages/welcome.php:26
|
745 |
+
msgid "View demo"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: includes/pages/welcome.php:29
|
749 |
+
msgid "Support"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: includes/pages/welcome.php:31
|
753 |
+
#, php-format
|
754 |
+
msgid ""
|
755 |
+
"If you have any doubt or you find any issue don't hesitate to contact us "
|
756 |
+
"through our ticket system or join our community to meet other %s users."
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: includes/pages/welcome.php:33
|
760 |
+
msgid "Submit ticket"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: includes/settings.php:15
|
764 |
+
msgid "Settings"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: includes/settings.php:34
|
768 |
+
#, php-format
|
769 |
+
msgid ""
|
770 |
+
"Thanks for using %s! We will do our absolute best to support you and fix all "
|
771 |
+
"the issues."
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: includes/settings.php:37
|
775 |
+
msgid "Check out our demo"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: includes/settings.php:56
|
779 |
+
msgid "QuadLayers"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: includes/settings.php:140
|
783 |
+
msgid "Welcome"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: includes/settings.php:141
|
787 |
+
msgid "Account"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: includes/settings.php:142
|
791 |
+
msgid "Feeds"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/settings.php:153
|
795 |
+
msgid "Are you sure want to delete this item?"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: includes/settings.php:154
|
799 |
+
msgid "Are you sure want to delete this access token?"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: includes/settings.php:155
|
803 |
+
msgid "Are you sure want to delete all settings on plugin uninstall?"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: includes/utis.php:19 includes/utis.php:70
|
807 |
+
msgid "Something went wrong, remove this token"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: includes/utis.php:82
|
811 |
+
#, php-format
|
812 |
+
msgid "Tag #%s"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: includes/utis.php:95
|
816 |
+
msgid "Please update Instagram User in the gallery settings tab."
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: includes/utis.php:100
|
820 |
+
msgid "Please update Instagram Access Token in the account settings tab."
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: includes/widget.php:10
|
824 |
+
msgid "Displays your Instagram gallery"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: includes/widget.php:42
|
828 |
+
msgid "Title"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: includes/widget.php:46
|
832 |
+
msgid "Select your Instagram gallery"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: includes/widget.php:52
|
836 |
+
msgid "Username"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: includes/widget.php:54
|
840 |
+
msgid "Tagname"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: includes/widget.php:63
|
844 |
+
msgid ""
|
845 |
+
"Please add Gallery item in plugin panel, Then come back and select your "
|
846 |
+
"Gallery to display."
|
847 |
+
msgstr ""
|
848 |
+
|
849 |
+
#: insta-gallery.php:83
|
850 |
+
#, php-format
|
851 |
+
msgid "Hello! Thank you for choosing the %s plugin!"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: insta-gallery.php:85
|
855 |
+
msgid ""
|
856 |
+
"Could you please give it a 5-star rating on WordPress? We know its a big "
|
857 |
+
"favor, but we've worked very much and very hard to release this great "
|
858 |
+
"product. Your feedback will boost our motivation and help us promote and "
|
859 |
+
"continue to improve this product."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: insta-gallery.php:88
|
863 |
+
msgid "Yes, of course!"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: insta-gallery.php:91
|
867 |
+
msgid "Report a bug"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: templates/alert.php:2
|
871 |
+
msgid "Unable to get results"
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#. Plugin Name of the plugin/theme
|
875 |
+
msgid "WP Social Feed Gallery"
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#. Plugin URI of the plugin/theme
|
879 |
+
msgid "https://quadlayers.com/portfolio/instagram-gallery/"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#. Description of the plugin/theme
|
883 |
+
msgid ""
|
884 |
+
"Display beautifull and responsive galleries on your website from your "
|
885 |
+
"Instagram feed account."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#. Author of the plugin/theme
|
889 |
+
msgid "Quadlayers"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#. Author URI of the plugin/theme
|
893 |
+
msgid "https://quadlayers.com"
|
894 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
=== WP
|
2 |
Contributors: quadlayers
|
3 |
Donate link: https://quadlayers.com/portfolio/instagram-gallery/
|
4 |
Tags: instagram, instagram feed, instagram widget, instagram gallery, instagram pictures, gallery widget, pictures, carousel slider, image gallery, image slider
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.2
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 2.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -88,6 +88,9 @@ There may be some other plugins(like: fancybox, elementor) which also uses image
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
91 |
= 2.4.6 =
|
92 |
* New. removed assets and author to resolve Instagram trademark infringement
|
93 |
* Fix. "Invalid scope field(s): public_content"
|
1 |
+
=== WP Social Feed Gallery ===
|
2 |
Contributors: quadlayers
|
3 |
Donate link: https://quadlayers.com/portfolio/instagram-gallery/
|
4 |
Tags: instagram, instagram feed, instagram widget, instagram gallery, instagram pictures, gallery widget, pictures, carousel slider, image gallery, image slider
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.2
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 2.4.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
+
= 2.4.7 =
|
92 |
+
* New. WP Instagram Feed Gallery renamed
|
93 |
+
|
94 |
= 2.4.6 =
|
95 |
* New. removed assets and author to resolve Instagram trademark infringement
|
96 |
* Fix. "Invalid scope field(s): public_content"
|
templates/masonry.php
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<div id="<?php echo esc_attr($item_selector); ?>" class="insta-gallery-feed" data-feed="<?php echo htmlentities(json_encode($feed_options), ENT_QUOTES, 'UTF-8'); ?>" data-feed_layout="<?php echo esc_attr($instagram_feed['insta_layout']); ?>">
|
2 |
-
<div class="insta-gallery-list">
|
3 |
-
</div>
|
4 |
-
<div class="insta-gallery-spinner"></div>
|
5 |
-
<div class="insta-gallery-actions">
|
6 |
-
<?php if ($instagram_feed['insta_button_load']) : ?>
|
7 |
-
<a href="#" target="blank" class="insta-gallery-button load"><?php _e('Load more...', 'insta-gallery'); ?></a>
|
8 |
-
<?php endif; ?>
|
9 |
-
<?php if ($instagram_feed['insta_button']) : ?>
|
10 |
-
<a href="<?php echo esc_url($profile_info['link']); ?>" target="blank" class="insta-gallery-button follow">
|
11 |
-
<i class="qligg-icon-instagram-o"></i>
|
12 |
-
<?php echo esc_html($instagram_feed['insta_button-text']); ?></a>
|
13 |
-
<?php endif; ?>
|
14 |
-
</div>
|
15 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|