Version Description
- Tweak: Added
Blend Mode
option for image in Banner, Image Scroll and Person widgets. - Tweak: Added
Stripe Position
option for Style 7 in Title widget.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 3.9.4 |
Comparing to | |
See all releases |
Code changes from version 3.9.3 to 3.9.4
- admin/includes/admin-notices.php +1 -1
- assets/frontend/css/premium-addons.css +26 -4
- languages/premium-addons-for-elementor.pot +1585 -1399
- premium-addons-for-elementor.php +3 -3
- readme.txt +6 -1
- widgets/premium-banner.php +27 -0
- widgets/premium-blog.php +5 -0
- widgets/premium-button.php +4 -0
- widgets/premium-carousel.php +3 -0
- widgets/premium-contactform.php +4 -0
- widgets/premium-countdown.php +4 -0
- widgets/premium-counter.php +4 -0
- widgets/premium-dual-header.php +4 -0
- widgets/premium-fancytext.php +4 -0
- widgets/premium-grid.php +4 -0
- widgets/premium-image-button.php +4 -0
- widgets/premium-image-scroll.php +27 -0
- widgets/premium-image-separator.php +4 -0
- widgets/premium-maps.php +5 -1
- widgets/premium-modalbox.php +4 -1
- widgets/premium-person.php +27 -0
- widgets/premium-pricing-table.php +3 -0
- widgets/premium-progressbar.php +4 -0
- widgets/premium-testimonials.php +4 -0
- widgets/premium-title.php +46 -11
- widgets/premium-videobox.php +4 -0
- widgets/premium-vscroll.php +4 -0
admin/includes/admin-notices.php
CHANGED
@@ -398,7 +398,7 @@ class Admin_Notices {
|
|
398 |
*
|
399 |
* @return void
|
400 |
*/
|
401 |
-
private function render_admin_notices( $message, $class ) {
|
402 |
?>
|
403 |
<div class="error pa-new-feature-notice <?php echo $class; ?>">
|
404 |
<?php echo $message; ?>
|
398 |
*
|
399 |
* @return void
|
400 |
*/
|
401 |
+
private function render_admin_notices( $message, $class = '' ) {
|
402 |
?>
|
403 |
<div class="error pa-new-feature-notice <?php echo $class; ?>">
|
404 |
<?php echo $message; ?>
|
assets/frontend/css/premium-addons.css
CHANGED
@@ -675,6 +675,9 @@
|
|
675 |
margin-bottom: 15px;
|
676 |
}
|
677 |
.countdown .pre_countdown-section {
|
|
|
|
|
|
|
678 |
display: inline-flex;
|
679 |
align-items: center;
|
680 |
}
|
@@ -1389,15 +1392,28 @@
|
|
1389 |
margin: 0;
|
1390 |
padding: 10px;
|
1391 |
}
|
|
|
|
|
|
|
|
|
1392 |
/*Style 2,3,6,7,8 Header*/
|
1393 |
-
.premium-title-style1, .premium-title-style2, .premium-title-style5, .premium-title-style6
|
1394 |
display: inline-block;
|
1395 |
float: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1396 |
}
|
1397 |
.premium-title-style1 {
|
1398 |
border-left: 3px solid #6ec1e4;
|
1399 |
}
|
1400 |
-
.premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6{
|
1401 |
border-bottom: 3px solid #6ec1e4;
|
1402 |
}
|
1403 |
/*Style 6 Header*/
|
@@ -3272,7 +3288,10 @@
|
|
3272 |
}
|
3273 |
.premium-img-gallery-filter .premium-gallery-cats-container li, .premium-blog-filter .premium-blog-cats-container li {
|
3274 |
list-style: none;
|
3275 |
-
display: inline-
|
|
|
|
|
|
|
3276 |
}
|
3277 |
.premium-img-gallery.zoomin .pa-gallery-img:hover img {
|
3278 |
-webkit-transform: scale(1.1);
|
@@ -3451,7 +3470,10 @@
|
|
3451 |
transition: all 0.3s ease-in-out;
|
3452 |
}
|
3453 |
.premium-gallery-load-more-btn {
|
3454 |
-
display: inline-
|
|
|
|
|
|
|
3455 |
align-items: center;
|
3456 |
}
|
3457 |
.premium-loader {
|
675 |
margin-bottom: 15px;
|
676 |
}
|
677 |
.countdown .pre_countdown-section {
|
678 |
+
display: -webkit-inline-box;
|
679 |
+
display: -webkit-inline-flex;
|
680 |
+
display: -ms-inline-flexbox;
|
681 |
display: inline-flex;
|
682 |
align-items: center;
|
683 |
}
|
1392 |
margin: 0;
|
1393 |
padding: 10px;
|
1394 |
}
|
1395 |
+
.premium-title-header svg {
|
1396 |
+
width: 40px;
|
1397 |
+
height: 40px;
|
1398 |
+
}
|
1399 |
/*Style 2,3,6,7,8 Header*/
|
1400 |
+
.premium-title-style1, .premium-title-style2, .premium-title-style5, .premium-title-style6 {
|
1401 |
display: inline-block;
|
1402 |
float: none;
|
1403 |
+
}
|
1404 |
+
.premium-title-style7 {
|
1405 |
+
display: -webkit-inline-box;
|
1406 |
+
display: -webkit-inline-flex;
|
1407 |
+
display: -ms-inline-flexbox;
|
1408 |
+
display: inline-flex;
|
1409 |
+
-webkit-flex-direction: column;
|
1410 |
+
-ms-flex-direction: column;
|
1411 |
+
flex-direction: column;
|
1412 |
}
|
1413 |
.premium-title-style1 {
|
1414 |
border-left: 3px solid #6ec1e4;
|
1415 |
}
|
1416 |
+
.premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
|
1417 |
border-bottom: 3px solid #6ec1e4;
|
1418 |
}
|
1419 |
/*Style 6 Header*/
|
3288 |
}
|
3289 |
.premium-img-gallery-filter .premium-gallery-cats-container li, .premium-blog-filter .premium-blog-cats-container li {
|
3290 |
list-style: none;
|
3291 |
+
display: -webkit-inline-box;
|
3292 |
+
display: -webkit-inline-flex;
|
3293 |
+
display: -ms-inline-flexbox;
|
3294 |
+
display: inline-flex;
|
3295 |
}
|
3296 |
.premium-img-gallery.zoomin .pa-gallery-img:hover img {
|
3297 |
-webkit-transform: scale(1.1);
|
3470 |
transition: all 0.3s ease-in-out;
|
3471 |
}
|
3472 |
.premium-gallery-load-more-btn {
|
3473 |
+
display: -webkit-inline-box;
|
3474 |
+
display: -webkit-inline-flex;
|
3475 |
+
display: -ms-inline-flexbox;
|
3476 |
+
display: inline-flex;
|
3477 |
align-items: center;
|
3478 |
}
|
3479 |
.premium-loader {
|
languages/premium-addons-for-elementor.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
@@ -19,35 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPathExcluded-0: assets/js\n"
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
|
22 |
-
#: admin/includes/admin-notices.php:
|
23 |
msgid ""
|
24 |
"Premium Addons for Elementor is not working because you need to Install "
|
25 |
"Elementor plugin."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin/includes/admin-notices.php:
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: admin/includes/admin-notices.php:
|
33 |
msgid ""
|
34 |
"Premium Addons for Elementor is not working because you need to activate "
|
35 |
"Elementor plugin."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/includes/admin-notices.php:
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin/includes/admin-notices.php:
|
43 |
msgid "Did you like"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/includes/admin-notices.php:
|
47 |
msgid "Plugin?"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin/includes/admin-notices.php:
|
51 |
msgid ""
|
52 |
"Could you please do us a BIG favor ? if you could take 2 min of your time, "
|
53 |
"we'd really appreciate if you give Premium Addons for Elementor 5-star "
|
@@ -55,49 +55,84 @@ msgid ""
|
|
55 |
"stuff in the future!"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin/includes/admin-notices.php:
|
59 |
msgid "Leave a Review"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin/includes/admin-notices.php:
|
63 |
msgid "Maybe Later"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin/includes/admin-notices.php:
|
67 |
msgid "I Already did"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin/includes/admin-notices.php:
|
71 |
msgid "Premium Blocks for Gutenberg"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin/includes/admin-notices.php:
|
75 |
msgid "is Now Available."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin/includes/admin-notices.php:
|
79 |
msgid "Install it Now."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin/includes/admin-notices.php:
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
-
"<
|
86 |
-
"
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin/includes/admin-notices.php:
|
93 |
#, php-format
|
94 |
msgid ""
|
95 |
-
"<a href=\"%s\"
|
96 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: admin/includes/dep/maintenance.php:28 admin/includes/version-control.php:88
|
100 |
-
#: admin/settings/modules-setting.php:
|
101 |
msgid "Rollback to Previous Version"
|
102 |
msgstr ""
|
103 |
|
@@ -119,7 +154,7 @@ msgstr ""
|
|
119 |
|
120 |
#: admin/includes/plugin-info.php:40 admin/includes/reports.php:34
|
121 |
#: admin/includes/version-control.php:74 admin/settings/maps.php:73
|
122 |
-
#: admin/settings/modules-setting.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"Thank you for using %s. This plugin has been developed by %s and we hope you "
|
@@ -180,12 +215,12 @@ msgid "Community Forums"
|
|
180 |
msgstr ""
|
181 |
|
182 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
183 |
-
#: admin/settings/maps.php:137 admin/settings/modules-setting.php:
|
184 |
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
185 |
msgstr ""
|
186 |
|
187 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
188 |
-
#: admin/settings/maps.php:137 admin/settings/modules-setting.php:
|
189 |
msgid "Click Here to Rate it ★★★★★"
|
190 |
msgstr ""
|
191 |
|
@@ -212,10 +247,6 @@ msgstr ""
|
|
212 |
msgid "Rollback Version"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: admin/includes/version-control.php:95
|
216 |
-
msgid "Reinstall Version 3.7.2"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
#: admin/includes/version-control.php:97
|
220 |
msgid "Warning: Please backup your database before making the rollback."
|
221 |
msgstr ""
|
@@ -246,7 +277,7 @@ msgid ""
|
|
246 |
msgstr ""
|
247 |
|
248 |
#: admin/includes/version-control.php:115 admin/settings/maps.php:134
|
249 |
-
#: admin/settings/modules-setting.php:
|
250 |
msgid "Save Settings"
|
251 |
msgstr ""
|
252 |
|
@@ -293,460 +324,472 @@ msgstr ""
|
|
293 |
msgid "This will load the JS file for markers clusters"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin/settings/modules-setting.php:
|
297 |
-
msgid "Settings"
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: admin/settings/modules-setting.php:56
|
301 |
msgid "Are you sure you want to reinstall version "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin/settings/modules-setting.php:
|
305 |
msgid "Yes"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin/settings/modules-setting.php:
|
309 |
msgid "Cancel"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin/settings/modules-setting.php:
|
313 |
msgid "Banner"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin/settings/modules-setting.php:
|
317 |
msgid "Blog"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin/settings/modules-setting.php:
|
321 |
-
#: widgets/premium-banner.php:
|
322 |
-
#: widgets/premium-button.php:
|
323 |
-
#: widgets/premium-contactform.php:
|
324 |
-
#: widgets/premium-image-button.php:
|
325 |
-
#: widgets/premium-modalbox.php:
|
326 |
-
#: widgets/premium-pricing-table.php:
|
327 |
msgid "Button"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/settings/modules-setting.php:
|
331 |
-
#: widgets/premium-carousel.php:28 widgets/premium-carousel.php:
|
332 |
msgid "Carousel"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin/settings/modules-setting.php:
|
336 |
msgid "Contact Form7"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin/settings/modules-setting.php:
|
340 |
-
#: widgets/premium-countdown.php:
|
341 |
msgid "Countdown"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin/settings/modules-setting.php:
|
345 |
-
#: widgets/premium-counter.php:
|
346 |
msgid "Counter"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin/settings/modules-setting.php:
|
350 |
-
#: widgets/premium-dual-header.php:
|
351 |
msgid "Dual Heading"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/settings/modules-setting.php:
|
355 |
-
#: widgets/premium-fancytext.php:
|
356 |
-
#: widgets/premium-fancytext.php:
|
357 |
msgid "Fancy Text"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/settings/modules-setting.php:
|
361 |
msgid "Media Grid"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/settings/modules-setting.php:
|
365 |
msgid "Image Button"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin/settings/modules-setting.php:
|
369 |
msgid "Image Scroll"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/settings/modules-setting.php:
|
373 |
#: widgets/premium-image-separator.php:28
|
374 |
msgid "Image Separator"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/settings/modules-setting.php:
|
378 |
msgid "Maps"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/settings/modules-setting.php:
|
382 |
-
#: widgets/premium-modalbox.php:
|
383 |
msgid "Modal Box"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/settings/modules-setting.php:
|
387 |
-
#: widgets/premium-person.php:
|
388 |
msgid "Person"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin/settings/modules-setting.php:
|
392 |
-
#: widgets/premium-progressbar.php:
|
393 |
msgid "Progress Bar"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/settings/modules-setting.php:
|
397 |
-
#: widgets/premium-pricing-table.php:
|
398 |
msgid "Pricing Table"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/settings/modules-setting.php:
|
402 |
msgid "Testimonials"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin/settings/modules-setting.php:
|
406 |
-
#: widgets/premium-carousel.php:
|
407 |
msgid "Templates"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin/settings/modules-setting.php:
|
411 |
-
#: widgets/premium-banner.php:
|
412 |
-
#: widgets/premium-blog.php:
|
413 |
-
#: widgets/premium-counter.php:
|
414 |
-
#: widgets/premium-grid.php:
|
415 |
-
#: widgets/premium-maps.php:
|
416 |
-
#: widgets/premium-pricing-table.php:
|
417 |
-
#: widgets/premium-pricing-table.php:
|
418 |
-
#: widgets/premium-progressbar.php:
|
419 |
-
#: widgets/premium-title.php:
|
420 |
-
#: widgets/premium-title.php:
|
421 |
msgid "Title"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/settings/modules-setting.php:
|
425 |
-
#: widgets/premium-videobox.php:
|
426 |
msgid "Video Box"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/settings/modules-setting.php:
|
430 |
msgid "Vertical Scroll"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/settings/modules-setting.php:
|
434 |
msgid "Premium Alert Box"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/settings/modules-setting.php:
|
438 |
-
msgid "Premium
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/settings/modules-setting.php:
|
442 |
-
msgid "Premium
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/settings/modules-setting.php:
|
446 |
-
msgid "Premium
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/settings/modules-setting.php:
|
450 |
-
msgid "Premium
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin/settings/modules-setting.php:
|
454 |
-
msgid "Premium
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin/settings/modules-setting.php:
|
458 |
-
msgid "Premium
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin/settings/modules-setting.php:
|
462 |
-
msgid "Premium
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/settings/modules-setting.php:
|
466 |
-
msgid "Premium
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/settings/modules-setting.php:
|
470 |
-
msgid "Premium
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/settings/modules-setting.php:
|
474 |
-
msgid "Premium
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/settings/modules-setting.php:
|
478 |
-
msgid "Premium
|
|
|
|
|
|
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/settings/modules-setting.php:
|
482 |
msgid "Premium Image Comparison"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/settings/modules-setting.php:
|
486 |
-
msgid "Premium
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/settings/modules-setting.php:
|
490 |
msgid "Premium Magic Section"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/settings/modules-setting.php:
|
494 |
-
msgid "Premium
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/settings/modules-setting.php:
|
498 |
-
msgid "Premium
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/settings/modules-setting.php:
|
502 |
-
msgid "Premium
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/settings/modules-setting.php:
|
506 |
-
msgid "Premium
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/settings/modules-setting.php:
|
510 |
-
msgid "Premium
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/settings/modules-setting.php:
|
514 |
-
msgid "Premium
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/settings/modules-setting.php:
|
518 |
-
msgid "Premium
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/settings/modules-setting.php:
|
522 |
msgid "Premium Whatsapp Chat"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: admin/settings/modules-setting.php:
|
|
|
|
|
|
|
|
|
526 |
msgid "Premium Section Parallax"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: admin/settings/modules-setting.php:
|
530 |
msgid "Premium Section Particles"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin/settings/modules-setting.php:
|
534 |
msgid "Premium Section Animated Gradient"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: admin/settings/modules-setting.php:
|
538 |
msgid "Premium Section Ken Burns"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/class-helper-functions.php:
|
542 |
msgid "Arabic"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: includes/class-helper-functions.php:
|
546 |
msgid "Basque"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: includes/class-helper-functions.php:
|
550 |
msgid "Bulgarian"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: includes/class-helper-functions.php:
|
554 |
msgid "Bengali"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/class-helper-functions.php:
|
558 |
msgid "Catalan"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/class-helper-functions.php:
|
562 |
msgid "Czech"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/class-helper-functions.php:
|
566 |
msgid "Danish"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/class-helper-functions.php:
|
570 |
msgid "German"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/class-helper-functions.php:
|
574 |
msgid "Greek"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/class-helper-functions.php:
|
578 |
msgid "English"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/class-helper-functions.php:
|
582 |
msgid "English (australian)"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/class-helper-functions.php:
|
586 |
msgid "English (great britain)"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: includes/class-helper-functions.php:
|
590 |
msgid "Spanish"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/class-helper-functions.php:
|
594 |
msgid "Farsi"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: includes/class-helper-functions.php:
|
598 |
msgid "Finnish"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/class-helper-functions.php:
|
602 |
msgid "Filipino"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/class-helper-functions.php:
|
606 |
msgid "French"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: includes/class-helper-functions.php:
|
610 |
msgid "Galician"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/class-helper-functions.php:
|
614 |
msgid "Gujarati"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/class-helper-functions.php:
|
618 |
msgid "Hindi"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/class-helper-functions.php:
|
622 |
msgid "Croatian"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/class-helper-functions.php:
|
626 |
msgid "Hungarian"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/class-helper-functions.php:
|
630 |
msgid "Indonesian"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/class-helper-functions.php:
|
634 |
msgid "Italian"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: includes/class-helper-functions.php:
|
638 |
msgid "Hebrew"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: includes/class-helper-functions.php:
|
642 |
msgid "Japanese"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: includes/class-helper-functions.php:
|
646 |
msgid "Kannada"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/class-helper-functions.php:
|
650 |
msgid "Korean"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: includes/class-helper-functions.php:
|
654 |
msgid "Lithuanian"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: includes/class-helper-functions.php:
|
658 |
msgid "Latvian"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: includes/class-helper-functions.php:
|
662 |
msgid "Malayalam"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: includes/class-helper-functions.php:
|
666 |
msgid "Marathi"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/class-helper-functions.php:
|
670 |
msgid "Dutch"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: includes/class-helper-functions.php:
|
674 |
msgid "Norwegian"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: includes/class-helper-functions.php:
|
678 |
msgid "Polish"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: includes/class-helper-functions.php:
|
682 |
msgid "Portuguese"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: includes/class-helper-functions.php:
|
686 |
msgid "Portuguese (brazil)"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: includes/class-helper-functions.php:
|
690 |
msgid "Portuguese (portugal)"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/class-helper-functions.php:
|
694 |
msgid "Romanian"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/class-helper-functions.php:
|
698 |
msgid "Russian"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/class-helper-functions.php:
|
702 |
msgid "Slovak"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/class-helper-functions.php:
|
706 |
msgid "Slovenian"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/class-helper-functions.php:
|
710 |
msgid "Serbian"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/class-helper-functions.php:
|
714 |
msgid "Swedish"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/class-helper-functions.php:
|
718 |
msgid "Tagalog"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/class-helper-functions.php:
|
722 |
msgid "Tamil"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/class-helper-functions.php:
|
726 |
msgid "Telugu"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/class-helper-functions.php:
|
730 |
msgid "Thai"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/class-helper-functions.php:
|
734 |
msgid "Turkish"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: includes/class-helper-functions.php:
|
738 |
msgid "Ukrainian"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/class-helper-functions.php:
|
742 |
msgid "Vietnamese"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: includes/class-helper-functions.php:
|
746 |
msgid "Chinese (simplified)"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: includes/class-helper-functions.php:
|
750 |
msgid "Chinese (traditional)"
|
751 |
msgstr ""
|
752 |
|
@@ -1078,8 +1121,8 @@ msgstr ""
|
|
1078 |
msgid "Get Pro"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: includes/templates/classes/manager.php:189 widgets/premium-blog.php:
|
1082 |
-
#: widgets/premium-grid.php:
|
1083 |
msgid "All"
|
1084 |
msgstr ""
|
1085 |
|
@@ -1097,7 +1140,7 @@ msgid "Back to Library"
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: includes/templates/scripts/template-modal-header.php:9
|
1100 |
-
#: widgets/premium-modalbox.php:
|
1101 |
msgid "Close"
|
1102 |
msgstr ""
|
1103 |
|
@@ -1118,3060 +1161,3187 @@ msgstr ""
|
|
1118 |
msgid "Loading"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/templates/types/section.php:23 widgets/premium-vscroll.php:
|
1122 |
-
#: widgets/premium-vscroll.php:
|
1123 |
msgid "Sections"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: widgets/premium-banner.php:
|
1127 |
-
#: widgets/premium-blog.php:
|
1128 |
-
#: widgets/premium-grid.php:
|
1129 |
-
#: widgets/premium-image-scroll.php:
|
1130 |
-
#: widgets/premium-image-separator.php:
|
1131 |
-
#: widgets/premium-modalbox.php:
|
1132 |
-
#: widgets/premium-person.php:
|
1133 |
-
#: widgets/premium-testimonials.php:
|
1134 |
-
#: widgets/premium-videobox.php:
|
1135 |
msgid "Image"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: widgets/premium-banner.php:
|
1139 |
-
#: widgets/premium-grid.php:
|
1140 |
msgid "Upload Image"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: widgets/premium-banner.php:
|
1144 |
msgid "Select an image for the Banner"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: widgets/premium-banner.php:
|
1148 |
-
#: widgets/premium-blog.php:
|
1149 |
-
#: widgets/premium-dual-header.php:
|
1150 |
-
#: widgets/premium-grid.php:
|
1151 |
-
#: widgets/premium-image-scroll.php:
|
1152 |
-
#: widgets/premium-pricing-table.php:
|
1153 |
-
#: widgets/premium-testimonials.php:
|
1154 |
-
#: widgets/premium-videobox.php:
|
1155 |
msgid "Link"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: widgets/premium-banner.php:
|
1159 |
msgid "Custom Link"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: widgets/premium-banner.php:
|
1163 |
msgid "Add a custom link to the banner"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: widgets/premium-banner.php:
|
1167 |
msgid "Set custom Link"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: widgets/premium-banner.php:
|
1171 |
msgid "What custom link you want to set to banner?"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: widgets/premium-banner.php:
|
1175 |
-
#: widgets/premium-banner.php:
|
1176 |
-
#: widgets/premium-button.php:
|
1177 |
-
#: widgets/premium-dual-header.php:
|
1178 |
-
#: widgets/premium-grid.php:
|
1179 |
-
#: widgets/premium-image-button.php:
|
1180 |
-
#: widgets/premium-image-scroll.php:
|
1181 |
-
#: widgets/premium-image-separator.php:
|
1182 |
-
#: widgets/premium-pricing-table.php:
|
1183 |
msgid "Existing Page"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: widgets/premium-banner.php:
|
1187 |
msgid "Link Title"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: widgets/premium-banner.php:
|
1191 |
msgid "New Tab"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: widgets/premium-banner.php:
|
1195 |
msgid "Choose if you want the link be opened in a new tab or not"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: widgets/premium-banner.php:
|
1199 |
msgid "Nofollow Option"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: widgets/premium-banner.php:
|
1203 |
msgid "if you choose yes, the link will not be counted in search engines"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: widgets/premium-banner.php:
|
1207 |
msgid "Effect"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: widgets/premium-banner.php:
|
1211 |
msgid "Choose a hover effect for the banner"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: widgets/premium-banner.php:
|
1215 |
msgid "Effect 1"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: widgets/premium-banner.php:
|
1219 |
msgid "Effect 2"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: widgets/premium-banner.php:
|
1223 |
msgid "Effect 3"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: widgets/premium-banner.php:
|
1227 |
msgid "Effect 4"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: widgets/premium-banner.php:
|
1231 |
msgid "Effect 5"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: widgets/premium-banner.php:
|
1235 |
msgid "Effect 6"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: widgets/premium-banner.php:
|
1239 |
msgid "Always Hovered"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: widgets/premium-banner.php:
|
1243 |
msgid "Choose if you want the effect to be always triggered"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: widgets/premium-banner.php:
|
1247 |
-
#: widgets/premium-button.php:
|
1248 |
-
#: widgets/premium-image-button.php:
|
1249 |
msgid "Hover Effect"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: widgets/premium-banner.php:
|
1253 |
-
#: widgets/premium-blog.php:
|
1254 |
-
#: widgets/premium-button.php:
|
1255 |
-
#: widgets/premium-image-button.php:
|
1256 |
-
#: widgets/premium-person.php:
|
1257 |
msgid "None"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: widgets/premium-banner.php:
|
1261 |
-
#: widgets/premium-grid.php:
|
1262 |
msgid "Zoom In"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: widgets/premium-banner.php:
|
1266 |
-
#: widgets/premium-grid.php:
|
1267 |
msgid "Zoom Out"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: widgets/premium-banner.php:
|
1271 |
-
#: widgets/premium-grid.php:
|
1272 |
msgid "Scale"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: widgets/premium-banner.php:
|
1276 |
-
#: widgets/premium-grid.php:
|
1277 |
msgid "Grayscale"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: widgets/premium-banner.php:
|
1281 |
-
#: widgets/premium-grid.php:
|
1282 |
msgid "Blur"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: widgets/premium-banner.php:
|
1286 |
-
#: widgets/premium-grid.php:
|
1287 |
msgid "Bright"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: widgets/premium-banner.php:
|
1291 |
-
#: widgets/premium-grid.php:
|
1292 |
msgid "Sepia"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: widgets/premium-banner.php:
|
1296 |
-
#: widgets/premium-contactform.php:
|
1297 |
-
#: widgets/premium-grid.php:
|
1298 |
-
#: widgets/premium-
|
1299 |
-
#: widgets/premium-progressbar.php:581
|
1300 |
msgid "Height"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: widgets/premium-banner.php:
|
1304 |
msgid "Default"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: widgets/premium-banner.php:
|
1308 |
msgid "Custom"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: widgets/premium-banner.php:
|
1312 |
msgid ""
|
1313 |
"Choose if you want to set a custom height for the banner or keep it as it is"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: widgets/premium-banner.php:
|
1317 |
msgid "Min Height"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: widgets/premium-banner.php:
|
1321 |
msgid "Set a minimum height value in pixels"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: widgets/premium-banner.php:
|
1325 |
msgid "Vertical Align"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: widgets/premium-banner.php:
|
1329 |
-
#: widgets/premium-counter.php:
|
1330 |
-
#: widgets/premium-testimonials.php:
|
|
|
1331 |
msgid "Top"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: widgets/premium-banner.php:
|
1335 |
msgid "Middle"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: widgets/premium-banner.php:
|
1339 |
-
#: widgets/premium-pricing-table.php:
|
|
|
1340 |
msgid "Bottom"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: widgets/premium-banner.php:
|
1344 |
msgid "Full"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: widgets/premium-banner.php:
|
1348 |
msgid "Extra Class"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: widgets/premium-banner.php:
|
1352 |
msgid ""
|
1353 |
"Add extra class name that will be applied to the banner, and you can use "
|
1354 |
"this class for your customizations."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: widgets/premium-banner.php:
|
1358 |
-
#: widgets/premium-
|
1359 |
-
#: widgets/premium-modalbox.php:
|
1360 |
-
#: widgets/premium-testimonials.php:
|
1361 |
-
#: widgets/premium-vscroll.php:
|
1362 |
msgid "Content"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: widgets/premium-banner.php:
|
1366 |
msgid "Give a title to this banner"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: widgets/premium-banner.php:
|
1370 |
msgid "Premium Banner"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: widgets/premium-banner.php:
|
1374 |
-
#: widgets/premium-person.php:
|
1375 |
-
#: widgets/premium-pricing-table.php:
|
1376 |
-
#: widgets/premium-testimonials.php:
|
1377 |
msgid "HTML Tag"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: widgets/premium-banner.php:
|
1381 |
msgid ""
|
1382 |
"Select a heading tag for the title. Headings are defined with H1 to H6 tags"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: widgets/premium-banner.php:
|
1386 |
-
#: widgets/premium-banner.php:
|
1387 |
-
#: widgets/premium-grid.php:
|
1388 |
-
#: widgets/premium-maps.php:
|
1389 |
-
#: widgets/premium-person.php:
|
1390 |
-
#: widgets/premium-pricing-table.php:
|
1391 |
-
#: widgets/premium-pricing-table.php:
|
1392 |
msgid "Description"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: widgets/premium-banner.php:
|
1396 |
msgid "Give the description to this banner"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: widgets/premium-banner.php:
|
1400 |
msgid ""
|
1401 |
"Premium Banner gives you a wide range of styles and options that you will "
|
1402 |
"definitely fall in love with"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: widgets/premium-banner.php:
|
1406 |
-
#: widgets/premium-fancytext.php:
|
1407 |
-
#: widgets/premium-modalbox.php:
|
1408 |
-
#: widgets/premium-modalbox.php:
|
1409 |
-
#: widgets/premium-pricing-table.php:
|
1410 |
-
#: widgets/premium-pricing-table.php:
|
1411 |
-
#: widgets/premium-pricing-table.php:
|
1412 |
msgid "Text"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: widgets/premium-banner.php:
|
1416 |
-
#: widgets/premium-dual-header.php:
|
1417 |
-
#: widgets/premium-image-button.php:
|
1418 |
msgid "Link Type"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: widgets/premium-banner.php:
|
1422 |
-
#: widgets/premium-dual-header.php:
|
1423 |
-
#: widgets/premium-image-button.php:
|
1424 |
-
#: widgets/premium-image-scroll.php:
|
1425 |
-
#: widgets/premium-image-separator.php:
|
1426 |
-
#: widgets/premium-pricing-table.php:
|
1427 |
msgid "URL"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: widgets/premium-banner.php:
|
1431 |
-
#: widgets/premium-blog.php:
|
1432 |
-
#: widgets/premium-button.php:
|
1433 |
-
#: widgets/premium-dual-header.php:
|
1434 |
-
#: widgets/premium-
|
1435 |
-
#: widgets/premium-maps.php:
|
1436 |
-
#: widgets/premium-
|
1437 |
-
#: widgets/premium-
|
|
|
1438 |
msgid "Alignment"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: widgets/premium-banner.php:
|
1442 |
-
#: widgets/premium-blog.php:
|
1443 |
-
#: widgets/premium-button.php:
|
1444 |
-
#: widgets/premium-countdown.php:
|
1445 |
-
#: widgets/premium-dual-header.php:
|
1446 |
-
#: widgets/premium-fancytext.php:
|
1447 |
-
#: widgets/premium-grid.php:
|
1448 |
-
#: widgets/premium-image-
|
1449 |
-
#: widgets/premium-maps.php:
|
1450 |
-
#: widgets/premium-
|
1451 |
-
#: widgets/premium-
|
1452 |
-
#: widgets/premium-
|
1453 |
-
#: widgets/premium-
|
|
|
1454 |
msgid "Left"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: widgets/premium-banner.php:
|
1458 |
-
#: widgets/premium-blog.php:
|
1459 |
-
#: widgets/premium-button.php:
|
1460 |
-
#: widgets/premium-dual-header.php:
|
1461 |
-
#: widgets/premium-fancytext.php:
|
1462 |
-
#: widgets/premium-grid.php:
|
1463 |
-
#: widgets/premium-image-
|
1464 |
-
#: widgets/premium-maps.php:
|
1465 |
-
#: widgets/premium-
|
1466 |
-
#: widgets/premium-
|
1467 |
-
#: widgets/premium-title.php:
|
|
|
1468 |
msgid "Center"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: widgets/premium-banner.php:
|
1472 |
-
#: widgets/premium-blog.php:
|
1473 |
-
#: widgets/premium-button.php:
|
1474 |
-
#: widgets/premium-countdown.php:
|
1475 |
-
#: widgets/premium-dual-header.php:
|
1476 |
-
#: widgets/premium-fancytext.php:
|
1477 |
-
#: widgets/premium-grid.php:
|
1478 |
-
#: widgets/premium-image-
|
1479 |
-
#: widgets/premium-maps.php:
|
1480 |
-
#: widgets/premium-
|
1481 |
-
#: widgets/premium-
|
1482 |
-
#: widgets/premium-
|
1483 |
-
#: widgets/premium-
|
|
|
1484 |
msgid "Right"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: widgets/premium-banner.php:
|
1488 |
msgid "Responsive"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: widgets/premium-banner.php:
|
1492 |
msgid "Responsive Controls"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: widgets/premium-banner.php:
|
1496 |
msgid ""
|
1497 |
"If the description text is not suiting well on specific screen sizes, you "
|
1498 |
"may enable this option which will hide the description text."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: widgets/premium-banner.php:
|
1502 |
msgid "Minimum Size"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: widgets/premium-banner.php:
|
1506 |
msgid "Note: minimum size for extra small screens is 1px."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: widgets/premium-banner.php:
|
1510 |
msgid "Maximum Size"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: widgets/premium-banner.php:
|
1514 |
msgid "Note: maximum size for extra small screens is 767px."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: widgets/premium-banner.php:
|
1518 |
-
#: widgets/premium-blog.php:
|
1519 |
-
#: widgets/premium-blog.php:
|
1520 |
-
#: widgets/premium-blog.php:
|
1521 |
-
#: widgets/premium-button.php:
|
1522 |
-
#: widgets/premium-carousel.php:
|
1523 |
-
#: widgets/premium-contactform.php:
|
1524 |
-
#: widgets/premium-countdown.php:
|
1525 |
-
#: widgets/premium-counter.php:
|
1526 |
-
#: widgets/premium-fancytext.php:
|
1527 |
-
#: widgets/premium-grid.php:
|
1528 |
-
#: widgets/premium-grid.php:
|
1529 |
-
#: widgets/premium-grid.php:
|
1530 |
-
#: widgets/premium-modalbox.php:
|
1531 |
-
#: widgets/premium-modalbox.php:
|
1532 |
-
#: widgets/premium-modalbox.php:
|
1533 |
-
#: widgets/premium-
|
1534 |
-
#: widgets/premium-pricing-table.php:
|
1535 |
-
#: widgets/premium-
|
1536 |
-
#: widgets/premium-
|
1537 |
-
#: widgets/premium-vscroll.php:
|
|
|
1538 |
msgid "Background Color"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: widgets/premium-banner.php:
|
1542 |
msgid "Image Opacity"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: widgets/premium-banner.php:
|
1546 |
msgid "Hover Opacity"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: widgets/premium-banner.php:
|
1550 |
msgid "Hover CSS Filter"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: widgets/premium-banner.php:
|
1554 |
-
#: widgets/premium-
|
1555 |
-
#: widgets/premium-blog.php:
|
1556 |
-
#: widgets/premium-
|
1557 |
-
#: widgets/premium-
|
1558 |
-
#: widgets/premium-
|
1559 |
-
#: widgets/premium-
|
1560 |
-
#: widgets/premium-
|
1561 |
-
#: widgets/premium-
|
1562 |
-
#: widgets/premium-grid.php:
|
1563 |
-
#: widgets/premium-grid.php:
|
1564 |
-
#: widgets/premium-grid.php:
|
1565 |
-
#: widgets/premium-grid.php:
|
1566 |
-
#: widgets/premium-
|
1567 |
-
#: widgets/premium-image-
|
1568 |
-
#: widgets/premium-
|
1569 |
-
#: widgets/premium-
|
1570 |
-
#: widgets/premium-modalbox.php:
|
1571 |
-
#: widgets/premium-modalbox.php:
|
1572 |
-
#: widgets/premium-
|
1573 |
-
#: widgets/premium-pricing-table.php:
|
1574 |
-
#: widgets/premium-pricing-table.php:
|
1575 |
-
#: widgets/premium-pricing-table.php:
|
1576 |
-
#: widgets/premium-pricing-table.php:
|
1577 |
-
#: widgets/premium-pricing-table.php:
|
1578 |
-
#: widgets/premium-
|
1579 |
-
#: widgets/premium-
|
1580 |
-
#: widgets/premium-
|
1581 |
-
#: widgets/premium-vscroll.php:
|
|
|
1582 |
msgid "Border Radius"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: widgets/premium-banner.php:
|
1586 |
-
#: widgets/premium-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
#: widgets/premium-
|
1591 |
-
#: widgets/premium-
|
1592 |
-
#: widgets/premium-
|
1593 |
-
#: widgets/premium-
|
1594 |
-
#: widgets/premium-
|
1595 |
-
#: widgets/premium-
|
1596 |
-
#: widgets/premium-
|
1597 |
-
#: widgets/premium-
|
1598 |
-
#: widgets/premium-
|
1599 |
-
#: widgets/premium-
|
1600 |
-
#: widgets/premium-
|
1601 |
-
#: widgets/premium-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
#: widgets/premium-
|
1606 |
-
#: widgets/premium-
|
1607 |
-
#: widgets/premium-
|
1608 |
-
#: widgets/premium-
|
1609 |
-
#: widgets/premium-
|
1610 |
-
#: widgets/premium-
|
1611 |
-
#: widgets/premium-
|
1612 |
-
#: widgets/premium-
|
1613 |
-
#: widgets/premium-
|
1614 |
-
#: widgets/premium-
|
1615 |
-
#: widgets/premium-
|
1616 |
-
#: widgets/premium-
|
1617 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1618 |
msgid "Color"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: widgets/premium-banner.php:
|
1622 |
msgid "Title Background"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: widgets/premium-banner.php:
|
1626 |
msgid "Choose a background color for the title"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: widgets/premium-banner.php:
|
1630 |
msgid "Title Border Color"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: widgets/premium-banner.php:
|
1634 |
-
#: widgets/premium-banner.php:
|
1635 |
-
#: widgets/premium-dual-header.php:
|
1636 |
-
#: widgets/premium-grid.php:
|
1637 |
-
#: widgets/premium-grid.php:
|
1638 |
-
#: widgets/premium-modalbox.php:
|
1639 |
-
#: widgets/premium-pricing-table.php:
|
1640 |
-
#: widgets/premium-pricing-table.php:
|
1641 |
-
#: widgets/premium-pricing-table.php:
|
1642 |
-
#: widgets/premium-pricing-table.php:
|
1643 |
-
#: widgets/premium-videobox.php:
|
1644 |
-
#: widgets/premium-vscroll.php:
|
1645 |
-
#: widgets/premium-vscroll.php:
|
1646 |
msgid "Shadow"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: widgets/premium-banner.php:
|
1650 |
msgid "Inner Border Color"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: widgets/premium-banner.php:
|
1654 |
-
#: widgets/premium-blog.php:
|
1655 |
-
#: widgets/premium-blog.php:
|
1656 |
-
#: widgets/premium-modalbox.php:
|
1657 |
-
#: widgets/premium-videobox.php:
|
1658 |
msgid "Hover Color"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: widgets/premium-banner.php:
|
|
|
1662 |
msgid "Hover Background Color"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: widgets/premium-banner.php:
|
1666 |
-
#: widgets/premium-blog.php:
|
1667 |
-
#: widgets/premium-blog.php:
|
1668 |
-
#: widgets/premium-button.php:
|
1669 |
-
#: widgets/premium-contactform.php:
|
1670 |
-
#: widgets/premium-dual-header.php:
|
1671 |
-
#: widgets/premium-grid.php:
|
1672 |
-
#: widgets/premium-grid.php:
|
1673 |
-
#: widgets/premium-grid.php:
|
1674 |
-
#: widgets/premium-grid.php:
|
1675 |
-
#: widgets/premium-image-button.php:
|
1676 |
-
#: widgets/premium-maps.php:
|
1677 |
-
#: widgets/premium-modalbox.php:
|
1678 |
-
#: widgets/premium-modalbox.php:
|
1679 |
-
#: widgets/premium-
|
1680 |
-
#: widgets/premium-pricing-table.php:
|
1681 |
-
#: widgets/premium-pricing-table.php:
|
1682 |
-
#: widgets/premium-pricing-table.php:
|
1683 |
-
#: widgets/premium-pricing-table.php:
|
1684 |
-
#: widgets/premium-pricing-table.php:
|
1685 |
-
#: widgets/premium-pricing-table.php:
|
1686 |
-
#: widgets/premium-pricing-table.php:
|
1687 |
-
#: widgets/premium-
|
1688 |
-
#: widgets/premium-
|
1689 |
-
#: widgets/premium-vscroll.php:
|
|
|
1690 |
msgid "Padding"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1694 |
msgid "Choose a hover effect for the image"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: widgets/premium-blog.php:
|
1698 |
-
#: widgets/premium-person.php:
|
1699 |
msgid "Translate"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: widgets/premium-blog.php:
|
1703 |
-
|
|
|
|
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: widgets/premium-blog.php:
|
1707 |
-
msgid "
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: widgets/premium-blog.php:
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: widgets/premium-blog.php:
|
1715 |
-
msgid "
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: widgets/premium-blog.php:
|
1719 |
-
msgid "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: widgets/premium-blog.php:
|
1723 |
-
msgid "
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: widgets/premium-blog.php:
|
1727 |
-
|
1728 |
-
#: widgets/premium-pricing-table.php:455
|
1729 |
-
msgid "Display Options"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: widgets/premium-blog.php:
|
1733 |
-
msgid "
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: widgets/premium-blog.php:
|
1737 |
-
msgid "
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: widgets/premium-blog.php:
|
1741 |
-
msgid "
|
|
|
|
|
|
|
|
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: widgets/premium-blog.php:
|
1745 |
msgid "Title HTML Tag"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: widgets/premium-blog.php:
|
1749 |
msgid "Select a heading tag for the post title."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: widgets/premium-blog.php:
|
1753 |
msgid "Grid"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: widgets/premium-blog.php:
|
1757 |
msgid "Layout"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: widgets/premium-blog.php:
|
1761 |
msgid "Even"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: widgets/premium-blog.php:
|
1765 |
msgid "Masonry"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: widgets/premium-blog.php:
|
1769 |
msgid "Number of Columns"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: widgets/premium-blog.php:
|
1773 |
msgid "1 Column"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: widgets/premium-blog.php:
|
1777 |
msgid "2 Columns"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: widgets/premium-blog.php:
|
1781 |
msgid "3 Columns"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: widgets/premium-blog.php:
|
1785 |
msgid "4 Columns"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: widgets/premium-blog.php:
|
1789 |
msgid "Thumbnail Min Height"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: widgets/premium-blog.php:
|
1793 |
msgid "Thumbnail Max Height"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: widgets/premium-blog.php:
|
1797 |
msgid "Thumbnail Fit"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: widgets/premium-blog.php:
|
1801 |
msgid "Cover"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: widgets/premium-blog.php:
|
1805 |
msgid "Fill"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: widgets/premium-blog.php:
|
1809 |
msgid "Contain"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: widgets/premium-blog.php:
|
1813 |
msgid "Rows Spacing"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: widgets/premium-blog.php:
|
1817 |
msgid "Columns Spacing"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: widgets/premium-blog.php:
|
1821 |
msgid "Post Options"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: widgets/premium-blog.php:
|
1825 |
msgid "Excerpt"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: widgets/premium-blog.php:
|
1829 |
msgid ""
|
1830 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
1831 |
"default except length is 55"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: widgets/premium-blog.php:
|
1835 |
msgid "Pull From Content Box"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: widgets/premium-blog.php:
|
1839 |
msgid "Post content will be pulled from post content box"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: widgets/premium-blog.php:
|
1843 |
msgid "Excerpt Length"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: widgets/premium-blog.php:
|
1847 |
msgid "Excerpt Type"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: widgets/premium-blog.php:
|
1851 |
-
#: widgets/premium-vscroll.php:
|
1852 |
msgid "Dots"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: widgets/premium-blog.php:
|
1856 |
msgid "Link Text"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: widgets/premium-blog.php:
|
1860 |
msgid "continue reading"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: widgets/premium-blog.php:
|
1864 |
msgid "Author Meta"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: widgets/premium-blog.php:
|
1868 |
msgid "Date Meta"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: widgets/premium-blog.php:
|
1872 |
msgid "Categories Meta"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: widgets/premium-blog.php:
|
1876 |
msgid "Display or hide categories meta"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: widgets/premium-blog.php:
|
1880 |
msgid "Comments Meta"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: widgets/premium-blog.php:
|
1884 |
msgid "Display or hide comments meta"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: widgets/premium-blog.php:
|
1888 |
msgid "Tags Meta"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: widgets/premium-blog.php:
|
1892 |
msgid "Display or hide post tags"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: widgets/premium-blog.php:
|
1896 |
msgid "Post Format Icon"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
1900 |
msgid "Advanced Settings"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: widgets/premium-blog.php:
|
1904 |
msgid "Posts Per Page"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: widgets/premium-blog.php:
|
1908 |
msgid "Choose how many posts do you want to be displayed per page"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: widgets/premium-blog.php:
|
1912 |
msgid "Total Number of Posts"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: widgets/premium-blog.php:
|
1916 |
msgid "Offset Count"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: widgets/premium-blog.php:
|
1920 |
msgid "The index of post to start with"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: widgets/premium-blog.php:
|
1924 |
msgid "Filter By Category"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: widgets/premium-blog.php:
|
1928 |
msgid "Get posts for specific category(s)"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: widgets/premium-blog.php:
|
1932 |
msgid "Filter Tabs"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
1936 |
msgid "Filter By Tag"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: widgets/premium-blog.php:
|
1940 |
msgid "Get posts for specific tag(s)"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: widgets/premium-blog.php:
|
1944 |
msgid "Filter By Author"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: widgets/premium-blog.php:
|
1948 |
msgid "Get posts for specific author(s)"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: widgets/premium-blog.php:
|
1952 |
msgid "Posts to Exclude"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: widgets/premium-blog.php:
|
1956 |
msgid "Add post(s) to exclude"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: widgets/premium-blog.php:
|
1960 |
msgid "Order By"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: widgets/premium-blog.php:
|
1964 |
msgid "ID"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: widgets/premium-blog.php:
|
1968 |
-
#: widgets/premium-testimonials.php:
|
1969 |
msgid "Author"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: widgets/premium-blog.php:
|
1973 |
-
#: widgets/premium-person.php:
|
1974 |
-
#: widgets/premium-testimonials.php:
|
1975 |
msgid "Name"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: widgets/premium-blog.php:
|
1979 |
msgid "Date"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: widgets/premium-blog.php:
|
1983 |
msgid "Last Modified"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: widgets/premium-blog.php:
|
1987 |
msgid "Random"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: widgets/premium-blog.php:
|
1991 |
msgid "Number of Comments"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: widgets/premium-blog.php:
|
1995 |
msgid "Order"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: widgets/premium-blog.php:
|
1999 |
msgid "Descending"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: widgets/premium-blog.php:
|
2003 |
msgid "Ascending"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: widgets/premium-blog.php:
|
2007 |
-
msgid "Pagination"
|
2008 |
-
msgstr ""
|
2009 |
-
|
2010 |
-
#: widgets/premium-blog.php:582
|
2011 |
-
msgid "Pagination is the process of dividing the posts into discrete pages"
|
2012 |
-
msgstr ""
|
2013 |
-
|
2014 |
-
#: widgets/premium-blog.php:588
|
2015 |
-
msgid "Next Page String"
|
2016 |
-
msgstr ""
|
2017 |
-
|
2018 |
-
#: widgets/premium-blog.php:590
|
2019 |
-
msgid "Next"
|
2020 |
-
msgstr ""
|
2021 |
-
|
2022 |
-
#: widgets/premium-blog.php:599
|
2023 |
-
msgid "Previous Page String"
|
2024 |
-
msgstr ""
|
2025 |
-
|
2026 |
-
#: widgets/premium-blog.php:601
|
2027 |
-
msgid "Previous"
|
2028 |
-
msgstr ""
|
2029 |
-
|
2030 |
-
#: widgets/premium-blog.php:638
|
2031 |
msgid "Links in New Tab"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: widgets/premium-blog.php:
|
2035 |
msgid "Enable links to be opened in a new tab"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: widgets/premium-blog.php:
|
2039 |
msgid "Enable Carousel"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: widgets/premium-blog.php:
|
2043 |
msgid "Fade"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: widgets/premium-blog.php:
|
2047 |
msgid "Auto Play"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: widgets/premium-blog.php:
|
2051 |
msgid "Autoplay Speed"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: widgets/premium-blog.php:
|
2055 |
msgid ""
|
2056 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
2057 |
"in milliseconds (ms)"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: widgets/premium-blog.php:
|
2061 |
-
#: widgets/premium-vscroll.php:
|
2062 |
msgid "Navigation Dots"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: widgets/premium-blog.php:
|
2066 |
msgid "Navigation Arrows"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: widgets/premium-blog.php:
|
2070 |
msgid "Arrows Position"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2074 |
msgid "Plus Sign Color"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: widgets/premium-blog.php:
|
2078 |
-
#: widgets/premium-image-button.php:
|
2079 |
-
#: widgets/premium-image-
|
2080 |
msgid "Overlay Color"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: widgets/premium-blog.php:
|
2084 |
msgid "Border Color"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: widgets/premium-blog.php:
|
2088 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: widgets/premium-blog.php:
|
2092 |
-
msgid "
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: widgets/premium-blog.php:
|
2096 |
-
|
2097 |
-
#: widgets/premium-counter.php:233 widgets/premium-counter.php:255
|
2098 |
-
#: widgets/premium-image-button.php:325 widgets/premium-modalbox.php:824
|
2099 |
-
#: widgets/premium-pricing-table.php:402 widgets/premium-pricing-table.php:421
|
2100 |
-
#: widgets/premium-pricing-table.php:544 widgets/premium-pricing-table.php:1160
|
2101 |
-
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2102 |
-
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2103 |
-
#: widgets/premium-videobox.php:468
|
2104 |
-
msgid "Size"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: widgets/premium-blog.php:
|
2108 |
-
msgid "
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: widgets/premium-blog.php:
|
2112 |
-
msgid "Box"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: widgets/premium-blog.php:
|
2116 |
-
#: widgets/premium-button.php:
|
2117 |
-
#: widgets/premium-contactform.php:
|
2118 |
-
#: widgets/premium-dual-header.php:
|
2119 |
-
#: widgets/premium-grid.php:
|
2120 |
-
#: widgets/premium-grid.php:
|
2121 |
-
#: widgets/premium-image-button.php:
|
2122 |
-
#: widgets/premium-videobox.php:
|
2123 |
-
#: widgets/premium-vscroll.php:
|
2124 |
msgid "Text Color"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: widgets/premium-blog.php:
|
2128 |
msgid "Content Background Color"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
2132 |
msgid "Content Margin"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: widgets/premium-blog.php:
|
2136 |
msgid "Content Padding"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: widgets/premium-blog.php:
|
2140 |
msgid "Pagination Style"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: widgets/premium-blog.php:
|
2144 |
-
#: widgets/premium-carousel.php:
|
2145 |
-
#: widgets/premium-grid.php:
|
2146 |
-
#: widgets/premium-grid.php:
|
2147 |
-
#: widgets/premium-image-scroll.php:
|
2148 |
-
#: widgets/premium-
|
2149 |
-
#: widgets/premium-modalbox.php:
|
2150 |
-
#: widgets/premium-pricing-table.php:
|
2151 |
-
|
|
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: widgets/premium-blog.php:
|
2155 |
-
#: widgets/premium-
|
2156 |
-
|
2157 |
-
#: widgets/premium-grid.php:1674 widgets/premium-image-button.php:524
|
2158 |
-
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:340
|
2159 |
-
#: widgets/premium-image-scroll.php:421 widgets/premium-modalbox.php:697
|
2160 |
-
#: widgets/premium-modalbox.php:887 widgets/premium-modalbox.php:1050
|
2161 |
-
#: widgets/premium-pricing-table.php:1485
|
2162 |
-
#: widgets/premium-pricing-table.php:1776
|
2163 |
-
msgid "Hover"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: widgets/premium-blog.php:
|
2167 |
-
#: widgets/premium-button.php:
|
2168 |
-
#: widgets/premium-contactform.php:
|
2169 |
-
#: widgets/premium-dual-header.php:
|
2170 |
-
#: widgets/premium-grid.php:
|
2171 |
-
#: widgets/premium-grid.php:
|
2172 |
-
#: widgets/premium-grid.php:
|
2173 |
-
#: widgets/premium-grid.php:
|
2174 |
-
#: widgets/premium-image-button.php:
|
2175 |
-
#: widgets/premium-maps.php:
|
2176 |
-
#: widgets/premium-
|
2177 |
-
#: widgets/premium-
|
2178 |
-
#: widgets/premium-pricing-table.php:
|
2179 |
-
#: widgets/premium-pricing-table.php:
|
2180 |
-
#: widgets/premium-pricing-table.php:
|
2181 |
-
#: widgets/premium-pricing-table.php:
|
2182 |
-
#: widgets/premium-pricing-table.php:
|
2183 |
-
#: widgets/premium-pricing-table.php:
|
2184 |
-
#: widgets/premium-pricing-table.php:
|
2185 |
-
#: widgets/premium-pricing-table.php:
|
2186 |
-
#: widgets/premium-pricing-table.php:
|
2187 |
-
#: widgets/premium-
|
2188 |
-
#: widgets/premium-
|
2189 |
-
#: widgets/premium-
|
2190 |
-
#: widgets/premium-
|
|
|
|
|
2191 |
msgid "Margin"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: widgets/premium-blog.php:
|
2195 |
msgid "Carousel Dots"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: widgets/premium-blog.php:
|
2199 |
-
#: widgets/premium-carousel.php:
|
2200 |
msgid "Active Color"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: widgets/premium-blog.php:
|
2204 |
msgid "Carousel Arrows"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: widgets/premium-blog.php:
|
2208 |
msgid "Read More Text"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: widgets/premium-blog.php:
|
2212 |
msgid "Filter"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: widgets/premium-blog.php:
|
2216 |
msgid "Background Active Color"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: widgets/premium-button.php:
|
2220 |
msgid "Click Me"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: widgets/premium-button.php:
|
2224 |
msgid "Slide"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: widgets/premium-button.php:
|
2228 |
msgid "Shutter"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: widgets/premium-button.php:
|
2232 |
msgid "Icon Fade"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: widgets/premium-button.php:
|
2236 |
msgid "Icon Slide"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: widgets/premium-button.php:
|
2240 |
msgid "In & Out"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: widgets/premium-button.php:
|
2244 |
-
#: widgets/premium-image-button.php:
|
2245 |
-
#: widgets/premium-image-button.php:
|
2246 |
msgid "Slide Direction"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: widgets/premium-button.php:
|
2250 |
-
#: widgets/premium-image-button.php:
|
2251 |
msgid "Top to Bottom"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: widgets/premium-button.php:
|
2255 |
-
#: widgets/premium-image-button.php:
|
2256 |
msgid "Bottom to Top"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: widgets/premium-button.php:
|
2260 |
-
#: widgets/premium-image-button.php:
|
2261 |
msgid "Right to Left"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: widgets/premium-button.php:
|
2265 |
-
#: widgets/premium-image-button.php:
|
2266 |
msgid "Left to Right"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: widgets/premium-button.php:
|
2270 |
msgid "Shutter Direction"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: widgets/premium-button.php:
|
2274 |
msgid "Shutter in Horizontal"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: widgets/premium-button.php:
|
2278 |
msgid "Shutter in Vertical"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: widgets/premium-button.php:
|
2282 |
msgid "Shutter out Horizontal"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: widgets/premium-button.php:
|
2286 |
msgid "Shutter out Vertical"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: widgets/premium-button.php:
|
2290 |
msgid "Scaled Shutter Vertical"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: widgets/premium-button.php:
|
2294 |
msgid "Scaled Shutter Horizontal"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: widgets/premium-button.php:
|
2298 |
msgid "Tilted Left"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: widgets/premium-button.php:
|
2302 |
msgid "Tilted Right"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: widgets/premium-button.php:
|
2306 |
-
#: widgets/premium-counter.php:
|
|
|
2307 |
msgid "Style"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: widgets/premium-button.php:
|
2311 |
msgid "Radial In"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: widgets/premium-button.php:
|
2315 |
msgid "Radial Out"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: widgets/premium-button.php:
|
2319 |
msgid "Rectangle In"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: widgets/premium-button.php:
|
2323 |
msgid "Rectangle Out"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: widgets/premium-button.php:
|
2327 |
-
#: widgets/premium-button.php:
|
2328 |
-
#: widgets/premium-counter.php:
|
2329 |
-
#: widgets/premium-image-button.php:
|
2330 |
-
#: widgets/premium-image-scroll.php:
|
2331 |
-
#: widgets/premium-modalbox.php:
|
2332 |
-
#: widgets/premium-pricing-table.php:
|
2333 |
-
#: widgets/premium-pricing-table.php:
|
2334 |
-
#: widgets/premium-pricing-table.php:
|
|
|
2335 |
msgid "Icon"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: widgets/premium-button.php:
|
2339 |
-
#: widgets/premium-modalbox.php:
|
2340 |
msgid "Enable or disable button icon"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: widgets/premium-button.php:
|
2344 |
-
#: widgets/premium-image-button.php:
|
2345 |
msgid "Icon Position"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: widgets/premium-button.php:
|
2349 |
-
#: widgets/premium-modalbox.php:
|
2350 |
msgid "Before"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: widgets/premium-button.php:
|
2354 |
-
#: widgets/premium-modalbox.php:
|
2355 |
msgid "After"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: widgets/premium-button.php:
|
2359 |
-
#: widgets/premium-image-button.php:
|
2360 |
-
#: widgets/premium-image-scroll.php:
|
2361 |
-
#: widgets/premium-modalbox.php:
|
2362 |
msgid "Icon Size"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: widgets/premium-button.php:
|
2366 |
-
#: widgets/premium-button.php:
|
2367 |
-
#: widgets/premium-button.php:
|
2368 |
-
#: widgets/premium-image-button.php:
|
2369 |
-
#: widgets/premium-modalbox.php:
|
2370 |
-
#: widgets/premium-modalbox.php:
|
2371 |
msgid "Icon Spacing"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: widgets/premium-button.php:
|
2375 |
-
#: widgets/premium-modalbox.php:
|
2376 |
msgid "Small"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: widgets/premium-button.php:
|
2380 |
-
#: widgets/premium-modalbox.php:
|
2381 |
msgid "Medium"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: widgets/premium-button.php:
|
2385 |
-
#: widgets/premium-modalbox.php:
|
2386 |
msgid "Large"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: widgets/premium-button.php:
|
2390 |
-
#: widgets/premium-dual-header.php:
|
2391 |
-
#: widgets/premium-modalbox.php:
|
2392 |
msgid "Block"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: widgets/premium-button.php:
|
2396 |
msgid "onclick Event"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: widgets/premium-button.php:
|
2400 |
msgid "Example: myFunction();"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: widgets/premium-button.php:
|
2404 |
-
#: widgets/premium-button.php:
|
2405 |
-
#: widgets/premium-image-button.php:
|
2406 |
-
#: widgets/premium-image-scroll.php:
|
2407 |
-
#: widgets/premium-title.php:
|
2408 |
msgid "Icon Color"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: widgets/premium-button.php:
|
2412 |
-
#: widgets/premium-button.php:
|
2413 |
-
#: widgets/premium-image-button.php:
|
2414 |
-
#: widgets/premium-title.php:
|
2415 |
msgid "Icon Shadow"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: widgets/premium-button.php:
|
2419 |
-
#: widgets/premium-image-button.php:
|
2420 |
msgid "Text Shadow"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: widgets/premium-button.php:
|
2424 |
-
#: widgets/premium-image-button.php:
|
2425 |
msgid "Button Shadow"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: widgets/premium-carousel.php:
|
2429 |
msgid "Content Type"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: widgets/premium-carousel.php:
|
2433 |
msgid "How templates are selected"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: widgets/premium-carousel.php:
|
2437 |
msgid "Select Field"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: widgets/premium-carousel.php:
|
2441 |
msgid "Repeater"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: widgets/premium-carousel.php:
|
2445 |
msgid ""
|
2446 |
"Slider content is a template which you can choose from Elementor library. "
|
2447 |
"Each template will be a slider content"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: widgets/premium-carousel.php:
|
2451 |
-
#: widgets/premium-progressbar.php:
|
2452 |
msgid "Type"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: widgets/premium-carousel.php:
|
2456 |
msgid "Set a navigation type"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: widgets/premium-carousel.php:
|
2460 |
-
#: widgets/premium-image-scroll.php:
|
2461 |
msgid "Horizontal"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: widgets/premium-carousel.php:
|
2465 |
-
#: widgets/premium-image-scroll.php:
|
2466 |
msgid "Vertical"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: widgets/premium-carousel.php:
|
2470 |
msgid "Enable or disable navigation dots"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: widgets/premium-carousel.php:
|
2474 |
-
#: widgets/premium-pricing-table.php:
|
2475 |
msgid "Position"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: widgets/premium-carousel.php:
|
2479 |
msgid "Below Slides"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: widgets/premium-carousel.php:
|
2483 |
msgid "On Slides"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: widgets/premium-carousel.php:
|
2487 |
msgid "Horizontal Offset"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: widgets/premium-carousel.php:
|
2491 |
msgid "Vertical Offset"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: widgets/premium-carousel.php:
|
2495 |
msgid "Arrows"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: widgets/premium-carousel.php:
|
2499 |
msgid "Enable or disable navigation arrows"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: widgets/premium-carousel.php:
|
2503 |
msgid "Appearance"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: widgets/premium-carousel.php:
|
2507 |
msgid "All visible"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: widgets/premium-carousel.php:
|
2511 |
msgid "One at a time"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: widgets/premium-carousel.php:
|
2515 |
msgid "Desktop Slides"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: widgets/premium-carousel.php:
|
2519 |
msgid "Tabs Slides"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: widgets/premium-carousel.php:
|
2523 |
msgid "Mobile Slides"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: widgets/premium-carousel.php:
|
2527 |
msgid "Slides' Settings"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: widgets/premium-carousel.php:
|
2531 |
msgid "Infinite Loop"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: widgets/premium-carousel.php:
|
2535 |
msgid "Restart the slider automatically as it passes the last slide"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: widgets/premium-carousel.php:
|
2539 |
msgid "Enable fade transition between slides"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: widgets/premium-carousel.php:
|
2543 |
msgid "Zoom Effect"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: widgets/premium-carousel.php:
|
2547 |
msgid "Transition Speed"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: widgets/premium-carousel.php:
|
2551 |
msgid ""
|
2552 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: widgets/premium-carousel.php:
|
2556 |
msgid "Autoplay Slides"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: widgets/premium-carousel.php:
|
2560 |
msgid "Slide will start automatically"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: widgets/premium-carousel.php:
|
2564 |
msgid "Animations"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: widgets/premium-carousel.php:
|
2568 |
msgid ""
|
2569 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2570 |
"this class for your customizations."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: widgets/premium-carousel.php:
|
2574 |
msgid "Additional Settings"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: widgets/premium-carousel.php:
|
2578 |
msgid "Draggable Effect"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: widgets/premium-carousel.php:
|
2582 |
msgid "Allow the slides to be dragged by mouse click"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: widgets/premium-carousel.php:
|
2586 |
msgid "Touch Move"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: widgets/premium-carousel.php:
|
2590 |
msgid "Enable slide moving with touch"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: widgets/premium-carousel.php:
|
2594 |
msgid "RTL Mode"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: widgets/premium-carousel.php:
|
2598 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: widgets/premium-carousel.php:
|
2602 |
msgid "Adaptive Height"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: widgets/premium-carousel.php:
|
2606 |
msgid ""
|
2607 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2608 |
"space gaps"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: widgets/premium-carousel.php:
|
2612 |
msgid "Pause on Hover"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: widgets/premium-carousel.php:
|
2616 |
msgid "Pause the slider when mouse hover"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: widgets/premium-carousel.php:
|
2620 |
msgid "Center Mode"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: widgets/premium-carousel.php:
|
2624 |
msgid ""
|
2625 |
"Center mode enables a centered view with partial next/previous slides. "
|
2626 |
"Animations and all visible scroll type doesn't work with this mode"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: widgets/premium-carousel.php:
|
2630 |
msgid "Slides' Spacing"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: widgets/premium-carousel.php:
|
2634 |
msgid "Set a spacing value in pixels (px)"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: widgets/premium-carousel.php:
|
2638 |
msgid "Tablet Breakpoint"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: widgets/premium-carousel.php:
|
2642 |
msgid ""
|
2643 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
2644 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: widgets/premium-carousel.php:
|
2648 |
msgid "Mobile Breakpoint"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: widgets/premium-carousel.php:
|
2652 |
msgid ""
|
2653 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
2654 |
"mobile layout will appear (Default: 768px)."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: widgets/premium-carousel.php:
|
2658 |
msgid "Helpful Documentations"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: widgets/premium-carousel.php:
|
2662 |
#, php-format
|
2663 |
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: widgets/premium-carousel.php:
|
2667 |
msgid "Right Icon"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: widgets/premium-carousel.php:
|
2671 |
msgid "Bottom Icon"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: widgets/premium-carousel.php:
|
2675 |
msgid "Top Icon"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: widgets/premium-carousel.php:
|
2679 |
msgid "Left Icon"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: widgets/premium-carousel.php:
|
2683 |
msgid "Position (PX)"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: widgets/premium-carousel.php:
|
2687 |
msgid "Ripple Effect"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: widgets/premium-carousel.php:
|
2691 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: widgets/premium-carousel.php:
|
2695 |
msgid "Ripple Color"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: widgets/premium-contactform.php:
|
2699 |
msgid "Contact Form"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: widgets/premium-contactform.php:
|
2703 |
msgid "Select Your Contact Form"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: widgets/premium-contactform.php:
|
2707 |
msgid "Fields"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: widgets/premium-contactform.php:
|
2711 |
-
#: widgets/premium-grid.php:
|
2712 |
-
#: widgets/premium-modalbox.php:
|
2713 |
msgid "Width"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: widgets/premium-contactform.php:
|
2717 |
msgid "Input Field"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: widgets/premium-contactform.php:
|
2721 |
msgid "Text Area"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: widgets/premium-contactform.php:
|
2725 |
msgid "Form"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: widgets/premium-contactform.php:
|
2729 |
msgid "Input Field Background"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: widgets/premium-contactform.php:
|
2733 |
msgid "Focus Border Color"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: widgets/premium-contactform.php:
|
2737 |
msgid "Focus Border Animation"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: widgets/premium-contactform.php:
|
2741 |
msgid "Focus Line Color"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: widgets/premium-contactform.php:
|
2745 |
msgid "Labels"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: widgets/premium-contactform.php:
|
2749 |
msgid "Default Typography"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: widgets/premium-contactform.php:
|
2753 |
msgid "Default Font Color"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: widgets/premium-contactform.php:
|
2757 |
msgid "Input Typography"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: widgets/premium-contactform.php:
|
2761 |
msgid "Input Text Color"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: widgets/premium-contactform.php:
|
2765 |
msgid "Placeholder Color"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: widgets/premium-countdown.php:
|
2769 |
msgid "Inline"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: widgets/premium-countdown.php:
|
2773 |
msgid "Due Date"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: widgets/premium-countdown.php:
|
2777 |
msgid ""
|
2778 |
"Date format is (yyyy/mm/dd). Time format is (hh:mm:ss). Example: 2020-01-01 "
|
2779 |
"09:30."
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: widgets/premium-countdown.php:
|
2783 |
msgid "Time Zone"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: widgets/premium-countdown.php:
|
2787 |
msgid "WordPress Default"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: widgets/premium-countdown.php:
|
2791 |
msgid "User Local Time"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: widgets/premium-countdown.php:
|
2795 |
msgid "This will set the current time of the option that you will choose."
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: widgets/premium-countdown.php:
|
2799 |
msgid "Time Units"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: widgets/premium-countdown.php:
|
2803 |
msgid "Select the time units that you want to display in countdown timer."
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: widgets/premium-countdown.php:
|
2807 |
msgid "Years"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: widgets/premium-countdown.php:
|
2811 |
msgid "Month"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: widgets/premium-countdown.php:
|
2815 |
msgid "Week"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: widgets/premium-countdown.php:
|
2819 |
msgid "Day"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: widgets/premium-countdown.php:
|
2823 |
msgid "Hours"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: widgets/premium-countdown.php:
|
2827 |
msgid "Minutes"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: widgets/premium-countdown.php:
|
2831 |
msgid "Second"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: widgets/premium-countdown.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2835 |
msgid "Expire"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: widgets/premium-countdown.php:
|
2839 |
msgid "Expire Type"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: widgets/premium-countdown.php:
|
2843 |
msgid "Choose whether if you want to set a message or a redirect link"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: widgets/premium-countdown.php:
|
2847 |
msgid "Message"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: widgets/premium-countdown.php:
|
2851 |
msgid "Redirection Link"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: widgets/premium-countdown.php:
|
2855 |
msgid "On expiry Text"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: widgets/premium-countdown.php:
|
2859 |
msgid "Countdown is finished!"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: widgets/premium-countdown.php:
|
2863 |
msgid "Redirect To"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: widgets/premium-countdown.php:
|
2867 |
msgid "Strings Translation"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: widgets/premium-countdown.php:
|
2871 |
msgid "Day (Singular)"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: widgets/premium-countdown.php:
|
2875 |
msgid "Day (Plural)"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: widgets/premium-countdown.php:
|
2879 |
msgid "Week (Singular)"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: widgets/premium-countdown.php:
|
2883 |
msgid "Weeks (Plural)"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: widgets/premium-countdown.php:
|
2887 |
msgid "Month (Singular)"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: widgets/premium-countdown.php:
|
2891 |
msgid "Months (Plural)"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: widgets/premium-countdown.php:
|
2895 |
msgid "Year (Singular)"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: widgets/premium-countdown.php:
|
2899 |
msgid "Years (Plural)"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: widgets/premium-countdown.php:
|
2903 |
msgid "Hour (Singular)"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: widgets/premium-countdown.php:
|
2907 |
msgid "Hours (Plural)"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: widgets/premium-countdown.php:
|
2911 |
msgid "Minute (Singular)"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: widgets/premium-countdown.php:
|
2915 |
msgid "Minutes (Plural)"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: widgets/premium-countdown.php:
|
2919 |
msgid "Second (Singular)"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: widgets/premium-countdown.php:
|
2923 |
msgid "Seconds (Plural)"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: widgets/premium-countdown.php:
|
2927 |
msgid "Digits"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: widgets/premium-countdown.php:
|
2931 |
msgid "Background Size"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: widgets/premium-countdown.php:
|
2935 |
msgid "Units"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: widgets/premium-countdown.php:
|
2939 |
msgid "Spacing in Between"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
2943 |
msgid "Enter title for stats counter block"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: widgets/premium-counter.php:
|
2947 |
msgid "Starting Number"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: widgets/premium-counter.php:
|
2951 |
msgid "Ending Number"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: widgets/premium-counter.php:
|
2955 |
msgid "Thousands Separator"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: widgets/premium-counter.php:
|
2959 |
msgid "Separator converts 125000 into 125,000"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: widgets/premium-counter.php:
|
2963 |
msgid "Digits After Decimal Point"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: widgets/premium-counter.php:
|
2967 |
msgid "Value Prefix"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: widgets/premium-counter.php:
|
2971 |
msgid "Enter prefix for counter value"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: widgets/premium-counter.php:
|
2975 |
msgid "Value suffix"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: widgets/premium-counter.php:
|
2979 |
msgid "Enter suffix for counter value"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: widgets/premium-counter.php:
|
2983 |
msgid "Rolling Time"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: widgets/premium-counter.php:
|
2987 |
msgid "How long should it take to complete the digit?"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: widgets/premium-counter.php:
|
2991 |
msgid "Icon Type"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: widgets/premium-counter.php:
|
2995 |
msgid "Use a font awesome icon or upload a custom image"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: widgets/premium-counter.php:
|
2999 |
-
#: widgets/premium-modalbox.php:
|
3000 |
msgid "Font Awesome"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: widgets/premium-counter.php:
|
3004 |
-
#: widgets/premium-modalbox.php:
|
3005 |
msgid "Custom Image"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: widgets/premium-counter.php:
|
3009 |
msgid "Select an Icon"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: widgets/premium-counter.php:
|
3013 |
msgid "Choose a position for your icon"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: widgets/premium-counter.php:
|
3017 |
msgid ""
|
3018 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
3019 |
"create your own with various options"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: widgets/premium-counter.php:
|
3023 |
msgid "Simple"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: widgets/premium-counter.php:
|
3027 |
msgid "Circle Background"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: widgets/premium-counter.php:
|
3031 |
msgid "Square Background"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: widgets/premium-counter.php:
|
3035 |
msgid "Design Your Own"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: widgets/premium-counter.php:
|
3039 |
msgid "Background size"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: widgets/premium-counter.php:
|
3043 |
msgid "Vertical Alignment"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: widgets/premium-counter.php:
|
3047 |
msgid "Value"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: widgets/premium-counter.php:
|
3051 |
msgid "Prefix & Suffix"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: widgets/premium-counter.php:
|
3055 |
msgid "Prefix Color"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: widgets/premium-counter.php:
|
3059 |
msgid "Suffix Color"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: widgets/premium-dual-header.php:
|
3063 |
msgid "First Heading"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: widgets/premium-dual-header.php:
|
3067 |
msgid "Premium"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: widgets/premium-dual-header.php:
|
3071 |
msgid "Second Heading"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: widgets/premium-dual-header.php:
|
3075 |
msgid "Addons"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: widgets/premium-dual-header.php:
|
3079 |
msgid "Display"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: widgets/premium-dual-header.php:
|
3083 |
msgid "Enable or disable link"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: widgets/premium-dual-header.php:
|
3087 |
msgid "Animated Background"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: widgets/premium-dual-header.php:
|
3091 |
msgid "Background Style"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: widgets/premium-dual-header.php:
|
3095 |
msgid ""
|
3096 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
3097 |
"style so the background will be clipped on the text."
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: widgets/premium-dual-header.php:
|
3101 |
-
msgid "
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: widgets/premium-dual-header.php:
|
3105 |
-
msgid "Clipped Background"
|
3106 |
-
msgstr ""
|
3107 |
-
|
3108 |
-
#: widgets/premium-dual-header.php:276 widgets/premium-dual-header.php:473
|
3109 |
msgid "Stroke"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: widgets/premium-dual-header.php:
|
3113 |
msgid "Stroke Text Color"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: widgets/premium-dual-header.php:
|
3117 |
msgid "Stroke Fill Color"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: widgets/premium-dual-header.php:
|
3121 |
msgid "Stroke Fill Width"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: widgets/premium-fancytext.php:
|
3125 |
msgid "Prefix"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: widgets/premium-fancytext.php:
|
3129 |
msgid "This is"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: widgets/premium-fancytext.php:
|
3133 |
msgid "Text before Fancy text"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: widgets/premium-fancytext.php:
|
3137 |
msgid "Fancy String"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: widgets/premium-fancytext.php:
|
3141 |
msgid "Designer"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: widgets/premium-fancytext.php:
|
3145 |
msgid "Developer"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: widgets/premium-fancytext.php:
|
3149 |
msgid "Awesome"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: widgets/premium-fancytext.php:
|
3153 |
msgid "Suffix"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: widgets/premium-fancytext.php:
|
3157 |
msgid "Text after Fancy text"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: widgets/premium-fancytext.php:
|
3161 |
msgid "Typing"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: widgets/premium-fancytext.php:
|
3165 |
msgid "Slide Up"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: widgets/premium-fancytext.php:
|
3169 |
msgid "Type Speed"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: widgets/premium-fancytext.php:
|
3173 |
msgid "Set typing effect speed in milliseconds."
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: widgets/premium-fancytext.php:
|
3177 |
msgid "Back Speed"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: widgets/premium-fancytext.php:
|
3181 |
msgid "Set a speed for backspace effect in milliseconds."
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: widgets/premium-fancytext.php:
|
3185 |
msgid "Start Delay"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: widgets/premium-fancytext.php:
|
3189 |
msgid ""
|
3190 |
"If you set it on 5000 milliseconds, the first word/string will appear after "
|
3191 |
"5 seconds."
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: widgets/premium-fancytext.php:
|
3195 |
msgid "Back Delay"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: widgets/premium-fancytext.php:
|
3199 |
msgid ""
|
3200 |
"If you set it on 5000 milliseconds, the word/string will remain visible for "
|
3201 |
"5 seconds before backspace effect."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: widgets/premium-fancytext.php:
|
3205 |
msgid "Loop"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: widgets/premium-fancytext.php:
|
3209 |
msgid "Show Cursor"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
-
#: widgets/premium-fancytext.php:
|
3213 |
msgid "Cursor Mark"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: widgets/premium-fancytext.php:
|
3217 |
msgid "Animation Speed"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: widgets/premium-fancytext.php:
|
3221 |
msgid "Set a duration value in milliseconds for slide up effect."
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: widgets/premium-fancytext.php:
|
3225 |
msgid "Pause Time (Milliseconds)"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: widgets/premium-fancytext.php:
|
3229 |
msgid ""
|
3230 |
"How long should the word/string stay visible? Set a value in milliseconds."
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: widgets/premium-fancytext.php:
|
3234 |
msgid "Show Items"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: widgets/premium-fancytext.php:
|
3238 |
msgid "How many items should be visible at a time?"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: widgets/premium-fancytext.php:
|
3242 |
msgid "If you enabled this option, the slide will be paused when mouseover."
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: widgets/premium-fancytext.php:
|
3246 |
msgid "Fancy Text Alignment"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: widgets/premium-fancytext.php:
|
3250 |
msgid "Cursor Text"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: widgets/premium-grid.php:
|
3254 |
msgid "Grid Layout"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: widgets/premium-grid.php:
|
3258 |
msgid "Metro"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: widgets/premium-grid.php:
|
3262 |
msgid "Minimum Height"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: widgets/premium-grid.php:
|
3266 |
msgid "Images Fit"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: widgets/premium-grid.php:
|
3270 |
msgid "Columns"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: widgets/premium-grid.php:
|
3274 |
msgid "5 Columns"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: widgets/premium-grid.php:
|
3278 |
msgid "6 Columns"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: widgets/premium-grid.php:
|
3282 |
msgid "12 Columns"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: widgets/premium-grid.php:
|
3286 |
msgid "Load More Button"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: widgets/premium-grid.php:
|
3290 |
msgid "Requires number of images larger than 6"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: widgets/premium-grid.php:
|
3294 |
msgid "Button Text"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: widgets/premium-grid.php:
|
3298 |
msgid "Load More"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: widgets/premium-grid.php:
|
3302 |
msgid "Minimum Number of Images"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: widgets/premium-grid.php:
|
3306 |
msgid "Set the minimum number of images before showing load more button"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: widgets/premium-grid.php:
|
3310 |
msgid "Images to Show"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: widgets/premium-grid.php:
|
3314 |
msgid "Set the minimum number of images to show with each click"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: widgets/premium-grid.php:
|
3318 |
msgid "Button Alignment"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: widgets/premium-grid.php:
|
3322 |
msgid "Categories"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: widgets/premium-grid.php:
|
3326 |
msgid "First Category"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: widgets/premium-grid.php:
|
3330 |
-
msgid "First Category Label"
|
3331 |
-
msgstr ""
|
3332 |
-
|
3333 |
-
#: widgets/premium-grid.php:289 widgets/premium-grid.php:511
|
3334 |
msgid "Category"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: widgets/premium-grid.php:
|
3338 |
msgid "Rotation Degrees"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: widgets/premium-grid.php:
|
3342 |
msgid "Set rotation value in degrees"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: widgets/premium-grid.php:
|
3346 |
msgid "Active Category Index"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: widgets/premium-grid.php:
|
3350 |
msgid "Put the index of the default active category, default is 1"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: widgets/premium-grid.php:
|
3354 |
msgid "Shuffle Images on Filter Click"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: widgets/premium-grid.php:
|
3358 |
msgid "Images/Videos"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: widgets/premium-grid.php:
|
3362 |
msgid "Works only when layout set to 'Metro'"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: widgets/premium-grid.php:
|
3366 |
msgid "Video"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: widgets/premium-grid.php:
|
3370 |
msgid "YouTube"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: widgets/premium-grid.php:
|
3374 |
msgid "Vimeo"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: widgets/premium-grid.php:
|
3378 |
msgid "Self Hosted"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: widgets/premium-grid.php:
|
3382 |
msgid "Video URL"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: widgets/premium-grid.php:
|
3386 |
msgid "Select Video"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
3390 |
msgid "Controls"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: widgets/premium-grid.php:
|
3394 |
msgid "Mute"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: widgets/premium-grid.php:
|
3398 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: widgets/premium-grid.php:
|
3402 |
msgid "Whole Image Link"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: widgets/premium-grid.php:
|
3406 |
msgid "Whole Image Lightbox"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: widgets/premium-grid.php:
|
3410 |
msgid "Images"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: widgets/premium-grid.php:
|
3414 |
msgid "Shuffle Images on Page Load"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3418 |
msgid "Image Gap"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: widgets/premium-grid.php:
|
3422 |
msgid "Choose a layout style for the gallery"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: widgets/premium-grid.php:
|
|
|
3426 |
msgid "Style 1"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: widgets/premium-grid.php:
|
|
|
3430 |
msgid "Style 2"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: widgets/premium-grid.php:
|
3434 |
msgid "Style 3"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3438 |
msgid "Lightbox"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: widgets/premium-grid.php:
|
3442 |
msgid "Lightbox Style"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: widgets/premium-grid.php:
|
3446 |
msgid "PrettyPhoto"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: widgets/premium-grid.php:
|
3450 |
msgid "Elementor"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: widgets/premium-grid.php:
|
3454 |
msgid "Other Lightbox Plugin"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: widgets/premium-grid.php:
|
3458 |
msgid "Please note Elementor lightbox style is always applied on videos."
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: widgets/premium-grid.php:
|
3462 |
msgid "Lightbox Theme"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#: widgets/premium-grid.php:
|
3466 |
msgid "Light Rounded"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: widgets/premium-grid.php:
|
3470 |
msgid "Dark Rounded"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: widgets/premium-grid.php:
|
3474 |
msgid "Light Square"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: widgets/premium-grid.php:
|
3478 |
msgid "Dark Square"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: widgets/premium-grid.php:
|
3482 |
msgid "Facebook"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: widgets/premium-grid.php:
|
3486 |
msgid "Overlay Gallery Images"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: widgets/premium-grid.php:
|
3490 |
-
msgid "
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: widgets/premium-grid.php:
|
3494 |
-
msgid ""
|
3495 |
-
"This option moves the origin of the grid to the right side. Useful for RTL "
|
3496 |
-
"direction sites"
|
3497 |
-
msgstr ""
|
3498 |
-
|
3499 |
-
#: widgets/premium-grid.php:775
|
3500 |
-
msgid "Content Alignment"
|
3501 |
-
msgstr ""
|
3502 |
-
|
3503 |
-
#: widgets/premium-grid.php:810
|
3504 |
msgid ""
|
3505 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3506 |
"enable this option which will hide the description text."
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#: widgets/premium-grid.php:
|
3510 |
#, php-format
|
3511 |
msgid "%1$s Getting Started » %2$s"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: widgets/premium-grid.php:
|
3515 |
msgid "General"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
3519 |
msgid "Hover CSS Filters"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: widgets/premium-grid.php:
|
3523 |
-
msgid "
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: widgets/premium-grid.php:
|
3527 |
-
msgid "
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: widgets/premium-grid.php:
|
3531 |
msgid "Spinner Color"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: widgets/premium-grid.php:
|
3535 |
-
#: widgets/premium-vscroll.php:
|
3536 |
msgid "Text Hover Color"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: widgets/premium-image-button.php:
|
3540 |
msgid "Background Slide"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: widgets/premium-image-button.php:
|
3544 |
msgid "Diagonal Slide"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: widgets/premium-image-button.php:
|
3548 |
msgid "Overlap"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: widgets/premium-image-button.php:
|
3552 |
msgid "Bottom Left to Top Right"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: widgets/premium-image-button.php:
|
3556 |
msgid "Top Right to Bottom Left"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: widgets/premium-image-button.php:
|
3560 |
msgid "Top Left to Bottom Right"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: widgets/premium-image-button.php:
|
3564 |
msgid "Bottom Right to Top Left"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: widgets/premium-image-button.php:
|
3568 |
msgid "Overlap Direction"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: widgets/premium-image-scroll.php:
|
3572 |
msgid "Image Settings"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: widgets/premium-image-scroll.php:
|
3576 |
msgid "Choose the scroll image"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: widgets/premium-image-scroll.php:
|
3580 |
msgid "Image Height"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: widgets/premium-image-scroll.php:
|
3584 |
msgid "Add a custom link or select an existing page link"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: widgets/premium-image-scroll.php:
|
3588 |
msgid "Link/URL"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: widgets/premium-image-scroll.php:
|
3592 |
msgid "Direction"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: widgets/premium-image-scroll.php:
|
3596 |
msgid "Select Scroll Direction"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: widgets/premium-image-scroll.php:
|
3600 |
msgid "Reverse Direction"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: widgets/premium-image-scroll.php:
|
3604 |
msgid "Trigger"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: widgets/premium-image-scroll.php:
|
3608 |
msgid "Mouse Scroll"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: widgets/premium-image-scroll.php:
|
3612 |
msgid "Speed"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: widgets/premium-image-scroll.php:
|
3616 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: widgets/premium-image-scroll.php:
|
3620 |
-
#: widgets/premium-videobox.php:
|
3621 |
msgid "Overlay"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: widgets/premium-image-scroll.php:
|
3625 |
msgid "Show"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: widgets/premium-image-scroll.php:
|
3629 |
msgid "Hide"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: widgets/premium-image-scroll.php:
|
3633 |
msgid "Opacity"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: widgets/premium-image-
|
3637 |
-
#: widgets/premium-pricing-table.php:1046
|
3638 |
-
#: widgets/premium-pricing-table.php:1193
|
3639 |
-
#: widgets/premium-pricing-table.php:1304 widgets/premium-testimonials.php:517
|
3640 |
-
#: widgets/premium-vscroll.php:530
|
3641 |
-
msgid "Container"
|
3642 |
-
msgstr ""
|
3643 |
-
|
3644 |
-
#: widgets/premium-image-separator.php:65
|
3645 |
msgid "Choose the separator image"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: widgets/premium-image-separator.php:
|
3649 |
msgid "Image Size"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: widgets/premium-image-separator.php:
|
3653 |
msgid "Image Gutter (%)"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: widgets/premium-image-separator.php:
|
3657 |
msgid ""
|
3658 |
"-50% is default. Increase to push the image outside or decrease to pull the "
|
3659 |
"image inside."
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: widgets/premium-image-separator.php:
|
3663 |
msgid "Image Alignment"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: widgets/premium-image-separator.php:
|
3667 |
msgid "Image Hovering Title"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: widgets/premium-image-separator.php:
|
3671 |
-
#: widgets/premium-pricing-table.php:
|
3672 |
msgid "Link Target"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: widgets/premium-image-separator.php:
|
3676 |
-
#: widgets/premium-pricing-table.php:
|
3677 |
msgid " Where would you like the link be opened?"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: widgets/premium-image-separator.php:
|
3681 |
msgid "blank"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: widgets/premium-maps.php:
|
3685 |
msgid "Center Location"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: widgets/premium-maps.php:
|
3689 |
msgid "Get User Location"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
-
#: widgets/premium-maps.php:
|
3693 |
msgid "Get center location from visitor's location"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
#: widgets/premium-maps.php:
|
3697 |
msgid "Latitude & Longitude Finder"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: widgets/premium-maps.php:
|
3701 |
msgid "Find Latitude & Longitude"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
-
#: widgets/premium-maps.php:
|
3705 |
msgid "Center Latitude"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#: widgets/premium-maps.php:
|
3709 |
msgid "Center latitude and longitude are required to identify your location"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: widgets/premium-maps.php:
|
3713 |
msgid "Center Longitude"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: widgets/premium-maps.php:
|
3717 |
msgid "Markers"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: widgets/premium-maps.php:
|
3721 |
msgid "Max Width"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
#: widgets/premium-maps.php:
|
3725 |
msgid "Set the Maximum width for markers description box"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: widgets/premium-maps.php:
|
3729 |
msgid "Latitude"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: widgets/premium-maps.php:
|
3733 |
msgid "Longitude"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
-
#: widgets/premium-maps.php:
|
3737 |
msgid "Custom Icon"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: widgets/premium-maps.php:
|
3741 |
msgid "Map Pins"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: widgets/premium-maps.php:
|
3745 |
msgid "Premium Google Maps"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: widgets/premium-maps.php:
|
3749 |
msgid "Add an optional description to your map pin"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: widgets/premium-maps.php:
|
3753 |
msgid "Map Type"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
-
#: widgets/premium-maps.php:
|
3757 |
msgid "Road Map"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: widgets/premium-maps.php:
|
3761 |
msgid "Satellite"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: widgets/premium-maps.php:
|
3765 |
msgid "Terrain"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: widgets/premium-maps.php:
|
3769 |
msgid "Hybrid"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: widgets/premium-maps.php:
|
3773 |
msgid "Zoom"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: widgets/premium-maps.php:
|
3777 |
msgid "Map Type Controls"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: widgets/premium-maps.php:
|
3781 |
msgid "Zoom Controls"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: widgets/premium-maps.php:
|
3785 |
msgid "Street View Control"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: widgets/premium-maps.php:
|
3789 |
msgid "Fullscreen Control"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: widgets/premium-maps.php:
|
3793 |
msgid "Scroll Wheel Zoom"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: widgets/premium-maps.php:
|
3797 |
msgid "Info Container Always Opened"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: widgets/premium-maps.php:
|
3801 |
msgid "Info Container Opened when Hovered"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: widgets/premium-maps.php:
|
3805 |
msgid "Info Container Closed when Mouse Out"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: widgets/premium-maps.php:
|
3809 |
msgid "Marker Clustering"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: widgets/premium-maps.php:
|
3813 |
msgid "Map Style"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: widgets/premium-maps.php:
|
3817 |
msgid "JSON Code"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: widgets/premium-maps.php:
|
3821 |
msgid "Map"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: widgets/premium-modalbox.php:
|
3825 |
msgid "Header"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: widgets/premium-modalbox.php:
|
3829 |
msgid "Enable or disable modal header"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: widgets/premium-modalbox.php:
|
3833 |
msgid "Use font awesome icon or upload a custom image"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: widgets/premium-modalbox.php:
|
3837 |
msgid "Add a title for the modal box"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: widgets/premium-modalbox.php:
|
3841 |
msgid "Content to Show"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: widgets/premium-modalbox.php:
|
3845 |
msgid "Text Editor"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: widgets/premium-modalbox.php:
|
3849 |
msgid "Elementor Template"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: widgets/premium-modalbox.php:
|
3853 |
msgid "Modal content is a template which you can choose from Elementor library"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: widgets/premium-modalbox.php:
|
3857 |
msgid "Upper Close Button"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: widgets/premium-modalbox.php:
|
3861 |
msgid "Lower Close Button"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: widgets/premium-modalbox.php:
|
3865 |
msgid "Display Style"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: widgets/premium-modalbox.php:
|
3869 |
msgid "Choose where would you like the modal box appear on"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: widgets/premium-modalbox.php:
|
3873 |
msgid "Page Load"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: widgets/premium-modalbox.php:
|
3877 |
msgid "Premium Modal Box"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: widgets/premium-modalbox.php:
|
3881 |
msgid "Button Size"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: widgets/premium-modalbox.php:
|
3885 |
msgid "Delay in Popup Display (Sec)"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: widgets/premium-modalbox.php:
|
3889 |
msgid ""
|
3890 |
"When should the popup appear during page load? The value are counted in "
|
3891 |
"seconds"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: widgets/premium-modalbox.php:
|
3895 |
msgid "Icon Hover Color"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: widgets/premium-modalbox.php:
|
3899 |
-
#: widgets/premium-modalbox.php:
|
3900 |
-
#: widgets/premium-pricing-table.php:
|
3901 |
-
#: widgets/premium-pricing-table.php:
|
3902 |
msgid "Typography"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: widgets/premium-modalbox.php:
|
3906 |
msgid "Heading"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: widgets/premium-modalbox.php:
|
3910 |
msgid "Max Height"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: widgets/premium-modalbox.php:
|
3914 |
msgid "Footer Background Color"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: widgets/premium-person.php:
|
3918 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: widgets/premium-person.php:
|
3922 |
msgid "Job Title"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: widgets/premium-person.php:
|
3926 |
msgid "Senior Developer"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: widgets/premium-person.php:
|
3930 |
msgid ""
|
3931 |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper "
|
3932 |
"nulla non metus auctor fringilla"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: widgets/premium-person.php:
|
3936 |
msgid "Social Icons"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: widgets/premium-person.php:
|
|
|
|
|
|
|
|
|
3940 |
msgid "Twitter"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: widgets/premium-person.php:
|
3944 |
msgid "LinkedIn"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: widgets/premium-person.php:
|
3948 |
msgid "Google+"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: widgets/premium-person.php:
|
3952 |
msgid "Youtube"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: widgets/premium-person.php:
|
3956 |
msgid "Instagram"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: widgets/premium-person.php:
|
3960 |
msgid "Skype"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: widgets/premium-person.php:
|
3964 |
msgid "Pinterest"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: widgets/premium-person.php:
|
3968 |
msgid "Dribbble"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: widgets/premium-person.php:
|
3972 |
msgid "Behance"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: widgets/premium-person.php:
|
3976 |
msgid "Email Address"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: widgets/premium-person.php:
|
3980 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: widgets/premium-pricing-table.php:
|
3984 |
msgid "Select HTML tag for the title"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: widgets/premium-pricing-table.php:
|
3988 |
-
#: widgets/premium-pricing-table.php:
|
3989 |
-
#: widgets/premium-pricing-table.php:
|
3990 |
msgid "Price"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: widgets/premium-pricing-table.php:
|
3994 |
msgid "Slashed Price"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: widgets/premium-pricing-table.php:
|
3998 |
msgid "Currency"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: widgets/premium-pricing-table.php:
|
4002 |
msgid "Divider"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: widgets/premium-pricing-table.php:
|
4006 |
msgid "Duration"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: widgets/premium-pricing-table.php:
|
4010 |
-
msgid "
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: widgets/premium-pricing-table.php:
|
4014 |
-
|
|
|
|
|
|
|
|
|
4015 |
msgid "Features"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: widgets/premium-pricing-table.php:
|
4019 |
msgid "List Item #1"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: widgets/premium-pricing-table.php:
|
4023 |
msgid "List Item #2"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: widgets/premium-pricing-table.php:
|
4027 |
msgid "List Item #3"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: widgets/premium-pricing-table.php:
|
4031 |
msgid "Get Started"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: widgets/premium-pricing-table.php:
|
4035 |
-
#: widgets/premium-pricing-table.php:
|
4036 |
msgid "Badge"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: widgets/premium-pricing-table.php:
|
4040 |
msgid "Popular"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: widgets/premium-pricing-table.php:
|
4044 |
msgid "Unset"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: widgets/premium-pricing-table.php:
|
4048 |
msgid "Spacing"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: widgets/premium-pricing-table.php:
|
4052 |
msgid "Vertical Spacing"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: widgets/premium-pricing-table.php:
|
4056 |
msgid "Hover Text Color"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: widgets/premium-pricing-table.php:
|
4060 |
msgid "Vertical Distance"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: widgets/premium-pricing-table.php:
|
4064 |
-
#: widgets/premium-pricing-table.php:
|
4065 |
msgid "Horizontal Distance"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: widgets/premium-pricing-table.php:
|
4069 |
msgid "Box Settings"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: widgets/premium-progressbar.php:
|
4073 |
msgid "Progress Bar Settings"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: widgets/premium-progressbar.php:
|
4077 |
msgid "Number of Labels"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: widgets/premium-progressbar.php:
|
4081 |
msgid "Left & Right Labels"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: widgets/premium-progressbar.php:
|
4085 |
msgid "Multiple Labels"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: widgets/premium-progressbar.php:
|
4089 |
msgid "My Skill"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: widgets/premium-progressbar.php:
|
4093 |
-
#: widgets/premium-progressbar.php:
|
4094 |
msgid "Percentage"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: widgets/premium-progressbar.php:
|
4098 |
msgid "50%"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: widgets/premium-progressbar.php:
|
4102 |
-
#: widgets/premium-progressbar.php:
|
4103 |
msgid "Label"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: widgets/premium-progressbar.php:
|
4107 |
msgid "label"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: widgets/premium-progressbar.php:
|
4111 |
msgid "Enable Percentage"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: widgets/premium-progressbar.php:
|
4115 |
msgid "Enable percentage for labels"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: widgets/premium-progressbar.php:
|
4119 |
msgid "Labels Indicator"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: widgets/premium-progressbar.php:
|
4123 |
msgid "Pin"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: widgets/premium-progressbar.php:
|
4127 |
msgid "Arrow"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: widgets/premium-progressbar.php:
|
4131 |
msgid "Labels Alignment"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: widgets/premium-progressbar.php:
|
4135 |
msgid "Solid"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: widgets/premium-progressbar.php:
|
4139 |
msgid "Striped"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: widgets/premium-progressbar.php:
|
4143 |
msgid "Speed (milliseconds)"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: widgets/premium-progressbar.php:
|
4147 |
msgid "Animated"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: widgets/premium-progressbar.php:
|
4151 |
msgid "Indicator Background"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: widgets/premium-progressbar.php:
|
4155 |
msgid "Main Background"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: widgets/premium-progressbar.php:
|
4159 |
msgid "Labels' Color"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: widgets/premium-progressbar.php:
|
4163 |
msgid "Labels' Typography"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: widgets/premium-progressbar.php:
|
4167 |
msgid "Percentage Color"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: widgets/premium-progressbar.php:
|
4171 |
msgid "Percentage Typography"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: widgets/premium-progressbar.php:
|
4175 |
msgid "Indicator"
|
4176 |
msgstr ""
|
4177 |
|
@@ -4179,83 +4349,83 @@ msgstr ""
|
|
4179 |
msgid "Testimonial"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: widgets/premium-testimonials.php:
|
4183 |
msgid "Choose an image for the author"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: widgets/premium-testimonials.php:
|
4187 |
msgid "Image Style"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: widgets/premium-testimonials.php:
|
4191 |
msgid "Choose image style"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: widgets/premium-testimonials.php:
|
4195 |
msgid "Square"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: widgets/premium-testimonials.php:
|
4199 |
msgid "Circle"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: widgets/premium-testimonials.php:
|
4203 |
msgid "Rounded"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
-
#: widgets/premium-testimonials.php:
|
4207 |
msgid "Person Name"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: widgets/premium-testimonials.php:
|
4211 |
msgid "Enter author name"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: widgets/premium-testimonials.php:
|
4215 |
msgid "Select a heading tag for author name"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: widgets/premium-testimonials.php:
|
4219 |
msgid "Company"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: widgets/premium-testimonials.php:
|
4223 |
msgid "Company Name"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: widgets/premium-testimonials.php:
|
4227 |
msgid "Enter company name"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: widgets/premium-testimonials.php:
|
4231 |
msgid "Select a heading tag for company name"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: widgets/premium-testimonials.php:
|
4235 |
msgid "Add company URL"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: widgets/premium-testimonials.php:
|
4239 |
msgid "Select link target"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: widgets/premium-testimonials.php:
|
4243 |
msgid "Blank"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: widgets/premium-testimonials.php:
|
4247 |
msgid "Parent"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: widgets/premium-testimonials.php:
|
4251 |
msgid "Self"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: widgets/premium-testimonials.php:
|
4255 |
msgid "Testimonial Content"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: widgets/premium-testimonials.php:
|
4259 |
msgid ""
|
4260 |
"Donec id elit non mi porta gravida at eget metus. Vivamus sagittis lacus vel "
|
4261 |
"augue laoreet rutrum faucibus dolor auctor. Cras mattis consectetur purus "
|
@@ -4263,323 +4433,339 @@ msgid ""
|
|
4263 |
"Donec id elit non mi porta gravida at eget metus."
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: widgets/premium-testimonials.php:
|
4267 |
msgid "Border Width (PX)"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: widgets/premium-testimonials.php:
|
4271 |
msgid "Divider Color"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: widgets/premium-testimonials.php:
|
4275 |
msgid "Quotation Icon"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: widgets/premium-testimonials.php:
|
4279 |
msgid "Top Icon Position"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: widgets/premium-testimonials.php:
|
4283 |
msgid "Bottom Icon Position"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: widgets/premium-title.php:
|
4287 |
msgid "Premium Title"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: widgets/premium-title.php:
|
4291 |
-
msgid "Style 4"
|
4292 |
-
msgstr ""
|
4293 |
-
|
4294 |
-
#: widgets/premium-title.php:75
|
4295 |
msgid "Style 5"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: widgets/premium-title.php:
|
4299 |
msgid "Style 6"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: widgets/premium-title.php:
|
4303 |
msgid "Style 7"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: widgets/premium-title.php:
|
4307 |
msgid "Font Awesome Icon"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: widgets/premium-title.php:
|
|
|
|
|
|
|
|
|
4311 |
msgid "Stripe Width (PX)"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: widgets/premium-title.php:
|
4315 |
msgid "Stripe Height (PX)"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: widgets/premium-title.php:
|
4319 |
msgid "Stripe Top Spacing (PX)"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: widgets/premium-title.php:
|
4323 |
msgid "Stripe Bottom Spacing (PX)"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: widgets/premium-title.php:
|
4327 |
msgid "Stripe Alignment"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: widgets/premium-title.php:
|
4331 |
msgid "Line Color"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: widgets/premium-title.php:
|
4335 |
msgid "Triangle Color"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: widgets/premium-title.php:
|
4339 |
msgid "Stripe Color"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: widgets/premium-
|
4343 |
-
msgid "Icon Style"
|
4344 |
-
msgstr ""
|
4345 |
-
|
4346 |
-
#: widgets/premium-videobox.php:67
|
4347 |
msgid "Video Type"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: widgets/premium-videobox.php:
|
4351 |
msgid "Embed URL"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: widgets/premium-videobox.php:
|
4355 |
msgid "Video ID"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: widgets/premium-videobox.php:
|
4359 |
msgid ""
|
4360 |
"Enter the numbers and letters after the equal sign which located in your "
|
4361 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
4362 |
"example, z1hQgVpfTKU"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: widgets/premium-videobox.php:
|
4366 |
msgid ""
|
4367 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
4368 |
"embed/z1hQgVpfTKU"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: widgets/premium-videobox.php:
|
4372 |
msgid "Player Controls"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#: widgets/premium-videobox.php:
|
4376 |
msgid "Show/hide player controls"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#: widgets/premium-videobox.php:
|
4380 |
msgid "This will play the video muted"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: widgets/premium-videobox.php:
|
4384 |
msgid "Autoplay"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#: widgets/premium-videobox.php:
|
4388 |
msgid "Start Time"
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#: widgets/premium-videobox.php:
|
4392 |
msgid "Specify a start time (in seconds)"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#: widgets/premium-videobox.php:
|
4396 |
msgid "End Time"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#: widgets/premium-videobox.php:
|
4400 |
msgid "Specify an end time (in seconds)"
|
4401 |
msgstr ""
|
4402 |
|
4403 |
-
#: widgets/premium-videobox.php:
|
4404 |
msgid "Suggested Videos From"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
-
#: widgets/premium-videobox.php:
|
4408 |
msgid "Current Channel"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: widgets/premium-videobox.php:
|
4412 |
msgid "Any Channel"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: widgets/premium-videobox.php:
|
4416 |
msgid "Aspect Ratio"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
4420 |
msgid "Choose an image for the video box"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: widgets/premium-videobox.php:
|
4424 |
-
#: widgets/premium-videobox.php:
|
4425 |
msgid "Play Icon"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: widgets/premium-videobox.php:
|
4429 |
msgid "Horizontal Position (%)"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: widgets/premium-videobox.php:
|
4433 |
msgid "Vertical Position (%)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: widgets/premium-videobox.php:
|
4437 |
msgid "Video Text"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: widgets/premium-videobox.php:
|
4441 |
msgid "Play Video"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: widgets/premium-videobox.php:
|
4445 |
msgid "Hover Animation"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: widgets/premium-videobox.php:
|
4449 |
msgid ""
|
4450 |
"Hover animation works only when you set a background color or image for play "
|
4451 |
"icon"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: widgets/premium-videobox.php:
|
4455 |
msgid "Hover Padding"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: widgets/premium-vscroll.php:
|
4459 |
-
msgid "
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: widgets/premium-vscroll.php:
|
4463 |
-
msgid "
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: widgets/premium-vscroll.php:
|
4467 |
msgid "Choose which method you prefer to insert sections."
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: widgets/premium-vscroll.php:
|
4471 |
-
msgid "
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: widgets/premium-vscroll.php:
|
4475 |
-
msgid "
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: widgets/premium-vscroll.php:
|
4479 |
-
msgid "
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: widgets/premium-vscroll.php:
|
4483 |
-
msgid "
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: widgets/premium-vscroll.php:
|
4487 |
-
msgid "
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: widgets/premium-vscroll.php:
|
4491 |
-
msgid "
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: widgets/premium-vscroll.php:
|
4495 |
-
msgid "
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: widgets/premium-vscroll.php:
|
4499 |
-
msgid "
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: widgets/premium-vscroll.php:
|
4503 |
-
msgid "
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: widgets/premium-vscroll.php:
|
4507 |
-
msgid "
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: widgets/premium-vscroll.php:
|
4511 |
-
msgid "
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: widgets/premium-vscroll.php:
|
4515 |
-
msgid "
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: widgets/premium-vscroll.php:
|
4519 |
-
msgid "
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: widgets/premium-vscroll.php:
|
4523 |
-
msgid "
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: widgets/premium-vscroll.php:
|
4527 |
-
msgid "Dots
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: widgets/premium-vscroll.php:
|
4531 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: widgets/premium-vscroll.php:
|
|
|
|
|
|
|
|
|
4535 |
msgid "Scroll Settings"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: widgets/premium-vscroll.php:
|
4539 |
msgid "Scroll Speed"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: widgets/premium-vscroll.php:
|
4543 |
msgid "Set scolling speed in seconds, default: 0.7"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: widgets/premium-vscroll.php:
|
4547 |
msgid "Full Section Scroll"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: widgets/premium-vscroll.php:
|
4551 |
msgid "Save to Browser History"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: widgets/premium-vscroll.php:
|
4555 |
msgid ""
|
4556 |
"Enabling this option will save the current section ID to the browser history"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: widgets/premium-vscroll.php:
|
4560 |
msgid "Enable Full Section Scroll on Touch Devices"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: widgets/premium-vscroll.php:
|
4564 |
msgid "Tooltips"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: widgets/premium-vscroll.php:
|
4568 |
msgid "Tooltips Text Color"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#: widgets/premium-vscroll.php:
|
4572 |
msgid "Tooltips Background"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: widgets/premium-vscroll.php:
|
4576 |
msgid "Dots Color"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#: widgets/premium-vscroll.php:
|
4580 |
msgid "Active Dot Color"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: widgets/premium-vscroll.php:
|
4584 |
msgid "Dots Border Color"
|
4585 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2019-12-02 11:09+0200\n"
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: assets/js\n"
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
|
22 |
+
#: admin/includes/admin-notices.php:185
|
23 |
msgid ""
|
24 |
"Premium Addons for Elementor is not working because you need to Install "
|
25 |
"Elementor plugin."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/includes/admin-notices.php:187
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/includes/admin-notices.php:195
|
33 |
msgid ""
|
34 |
"Premium Addons for Elementor is not working because you need to activate "
|
35 |
"Elementor plugin."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/includes/admin-notices.php:197
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin/includes/admin-notices.php:215
|
43 |
msgid "Did you like"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin/includes/admin-notices.php:215
|
47 |
msgid "Plugin?"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/includes/admin-notices.php:216
|
51 |
msgid ""
|
52 |
"Could you please do us a BIG favor ? if you could take 2 min of your time, "
|
53 |
"we'd really appreciate if you give Premium Addons for Elementor 5-star "
|
55 |
"stuff in the future!"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin/includes/admin-notices.php:217
|
59 |
msgid "Leave a Review"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin/includes/admin-notices.php:218
|
63 |
msgid "Maybe Later"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin/includes/admin-notices.php:219
|
67 |
msgid "I Already did"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin/includes/admin-notices.php:290
|
71 |
msgid "Premium Blocks for Gutenberg"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin/includes/admin-notices.php:290
|
75 |
msgid "is Now Available."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin/includes/admin-notices.php:291
|
79 |
msgid "Install it Now."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin/includes/admin-notices.php:339
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
+
"<a class=\"pa-notice-close\" href=\"%s\"><span class=\"dashicons dashicons-"
|
86 |
+
"dismiss\"></span></a>"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: admin/includes/admin-notices.php:371
|
90 |
+
msgid ""
|
91 |
+
"Now, you can disable Elementor editor & Premium Addons translation with this "
|
92 |
+
"handy plugin. "
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: admin/includes/admin-notices.php:373
|
96 |
+
msgid "Click Here to Install"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: admin/includes/admin-notices.php:375
|
100 |
#, php-format
|
101 |
msgid ""
|
102 |
+
"<a class=\"pa-notice-close\" href=\"%s\"><span class=\"dashicons dashicons-"
|
103 |
+
"dismiss\"></span></a></p>"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: admin/includes/dep/admin-helper.php:47
|
107 |
+
msgid "Settings"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin/includes/dep/admin-helper.php:49 admin/includes/version-control.php:95
|
111 |
+
msgid "Rollback to Version "
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: admin/includes/dep/admin-helper.php:59
|
115 |
+
msgid "Go Pro"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: admin/includes/dep/admin-helper.php:92
|
119 |
+
msgid "View Premium Addons for Elementor Documentation"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: admin/includes/dep/admin-helper.php:92
|
123 |
+
msgid "Docs & FAQs"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: admin/includes/dep/admin-helper.php:93
|
127 |
+
msgid "View Premium Addons Video Tutorials"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: admin/includes/dep/admin-helper.php:93
|
131 |
+
msgid "Video Tutorials"
|
132 |
msgstr ""
|
133 |
|
134 |
#: admin/includes/dep/maintenance.php:28 admin/includes/version-control.php:88
|
135 |
+
#: admin/settings/modules-setting.php:41
|
136 |
msgid "Rollback to Previous Version"
|
137 |
msgstr ""
|
138 |
|
154 |
|
155 |
#: admin/includes/plugin-info.php:40 admin/includes/reports.php:34
|
156 |
#: admin/includes/version-control.php:74 admin/settings/maps.php:73
|
157 |
+
#: admin/settings/modules-setting.php:156
|
158 |
#, php-format
|
159 |
msgid ""
|
160 |
"Thank you for using %s. This plugin has been developed by %s and we hope you "
|
215 |
msgstr ""
|
216 |
|
217 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
218 |
+
#: admin/settings/maps.php:137 admin/settings/modules-setting.php:681
|
219 |
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
220 |
msgstr ""
|
221 |
|
222 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
223 |
+
#: admin/settings/maps.php:137 admin/settings/modules-setting.php:681
|
224 |
msgid "Click Here to Rate it ★★★★★"
|
225 |
msgstr ""
|
226 |
|
247 |
msgid "Rollback Version"
|
248 |
msgstr ""
|
249 |
|
|
|
|
|
|
|
|
|
250 |
#: admin/includes/version-control.php:97
|
251 |
msgid "Warning: Please backup your database before making the rollback."
|
252 |
msgstr ""
|
277 |
msgstr ""
|
278 |
|
279 |
#: admin/includes/version-control.php:115 admin/settings/maps.php:134
|
280 |
+
#: admin/settings/modules-setting.php:676
|
281 |
msgid "Save Settings"
|
282 |
msgstr ""
|
283 |
|
324 |
msgid "This will load the JS file for markers clusters"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin/settings/modules-setting.php:40
|
|
|
|
|
|
|
|
|
328 |
msgid "Are you sure you want to reinstall version "
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin/settings/modules-setting.php:42
|
332 |
msgid "Yes"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin/settings/modules-setting.php:43
|
336 |
msgid "Cancel"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/settings/modules-setting.php:174 widgets/premium-banner.php:34
|
340 |
msgid "Banner"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/settings/modules-setting.php:181 widgets/premium-blog.php:24
|
344 |
msgid "Blog"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin/settings/modules-setting.php:191 widgets/premium-banner.php:319
|
348 |
+
#: widgets/premium-banner.php:705 widgets/premium-button.php:40
|
349 |
+
#: widgets/premium-button.php:62 widgets/premium-button.php:489
|
350 |
+
#: widgets/premium-contactform.php:192 widgets/premium-contactform.php:449
|
351 |
+
#: widgets/premium-image-button.php:57 widgets/premium-image-button.php:393
|
352 |
+
#: widgets/premium-modalbox.php:254 widgets/premium-pricing-table.php:314
|
353 |
+
#: widgets/premium-pricing-table.php:521 widgets/premium-pricing-table.php:1380
|
354 |
msgid "Button"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/settings/modules-setting.php:198 widgets/premium-blog.php:614
|
358 |
+
#: widgets/premium-carousel.php:28 widgets/premium-carousel.php:65
|
359 |
msgid "Carousel"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin/settings/modules-setting.php:208 widgets/premium-contactform.php:23
|
363 |
msgid "Contact Form7"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin/settings/modules-setting.php:215 widgets/premium-countdown.php:24
|
367 |
+
#: widgets/premium-countdown.php:62
|
368 |
msgid "Countdown"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/settings/modules-setting.php:225 widgets/premium-counter.php:26
|
372 |
+
#: widgets/premium-counter.php:60
|
373 |
msgid "Counter"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/settings/modules-setting.php:232 widgets/premium-dual-header.php:30
|
377 |
+
#: widgets/premium-dual-header.php:58
|
378 |
msgid "Dual Heading"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/settings/modules-setting.php:242 widgets/premium-fancytext.php:23
|
382 |
+
#: widgets/premium-fancytext.php:59 widgets/premium-fancytext.php:89
|
383 |
+
#: widgets/premium-fancytext.php:343
|
384 |
msgid "Fancy Text"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin/settings/modules-setting.php:250 widgets/premium-grid.php:38
|
388 |
msgid "Media Grid"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin/settings/modules-setting.php:260 widgets/premium-image-button.php:26
|
392 |
msgid "Image Button"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/settings/modules-setting.php:268 widgets/premium-image-scroll.php:35
|
396 |
msgid "Image Scroll"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/settings/modules-setting.php:278
|
400 |
#: widgets/premium-image-separator.php:28
|
401 |
msgid "Image Separator"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin/settings/modules-setting.php:285 widgets/premium-maps.php:30
|
405 |
msgid "Maps"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/settings/modules-setting.php:295 widgets/premium-modalbox.php:37
|
409 |
+
#: widgets/premium-modalbox.php:1126
|
410 |
msgid "Modal Box"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/settings/modules-setting.php:303 widgets/premium-person.php:28
|
414 |
+
#: widgets/premium-person.php:173
|
415 |
msgid "Person"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin/settings/modules-setting.php:313 widgets/premium-progressbar.php:23
|
419 |
+
#: widgets/premium-progressbar.php:242
|
420 |
msgid "Progress Bar"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin/settings/modules-setting.php:321 widgets/premium-pricing-table.php:33
|
424 |
+
#: widgets/premium-pricing-table.php:95
|
425 |
msgid "Pricing Table"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/settings/modules-setting.php:331
|
429 |
msgid "Testimonials"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/settings/modules-setting.php:339 widgets/premium-carousel.php:84
|
433 |
+
#: widgets/premium-carousel.php:107
|
434 |
msgid "Templates"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/settings/modules-setting.php:351 widgets/premium-banner.php:271
|
438 |
+
#: widgets/premium-banner.php:582 widgets/premium-blog.php:577
|
439 |
+
#: widgets/premium-blog.php:965 widgets/premium-counter.php:66
|
440 |
+
#: widgets/premium-counter.php:390 widgets/premium-grid.php:541
|
441 |
+
#: widgets/premium-grid.php:1145 widgets/premium-maps.php:206
|
442 |
+
#: widgets/premium-maps.php:393 widgets/premium-modalbox.php:151
|
443 |
+
#: widgets/premium-pricing-table.php:84 widgets/premium-pricing-table.php:490
|
444 |
+
#: widgets/premium-pricing-table.php:713 widgets/premium-progressbar.php:76
|
445 |
+
#: widgets/premium-progressbar.php:346 widgets/premium-title.php:25
|
446 |
+
#: widgets/premium-title.php:53 widgets/premium-title.php:60
|
447 |
+
#: widgets/premium-title.php:282
|
448 |
msgid "Title"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/settings/modules-setting.php:359 widgets/premium-videobox.php:28
|
452 |
+
#: widgets/premium-videobox.php:65 widgets/premium-videobox.php:428
|
453 |
msgid "Video Box"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/settings/modules-setting.php:371 widgets/premium-vscroll.php:29
|
457 |
msgid "Vertical Scroll"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/settings/modules-setting.php:386
|
461 |
msgid "Premium Alert Box"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin/settings/modules-setting.php:394
|
465 |
+
msgid "Premium Behance Feed"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/settings/modules-setting.php:406
|
469 |
+
msgid "Premium Charts"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/settings/modules-setting.php:414
|
473 |
+
msgid "Premium Content Switcher"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin/settings/modules-setting.php:425
|
477 |
+
msgid "Premium Background Transition"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin/settings/modules-setting.php:433
|
481 |
+
msgid "Premium Divider"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin/settings/modules-setting.php:444
|
485 |
+
msgid "Premium Facebook Feed"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/settings/modules-setting.php:452
|
489 |
+
msgid "Premium Facebook Reviews"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/settings/modules-setting.php:462
|
493 |
+
msgid "Premium Flip Box"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/settings/modules-setting.php:470
|
497 |
+
msgid "Premium Google Reviews"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/settings/modules-setting.php:480
|
501 |
+
msgid "Premium Icon Box"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/settings/modules-setting.php:488
|
505 |
+
msgid "Premium iHover"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: admin/settings/modules-setting.php:498
|
509 |
+
msgid "Premium Image Accordion"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/settings/modules-setting.php:506
|
513 |
msgid "Premium Image Comparison"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/settings/modules-setting.php:517
|
517 |
+
msgid "Premium Image Hotspots"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: admin/settings/modules-setting.php:525
|
521 |
+
msgid "Premium Image Layers"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: admin/settings/modules-setting.php:535
|
525 |
+
msgid "Premium Instagram Feed"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/settings/modules-setting.php:543
|
529 |
msgid "Premium Magic Section"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/settings/modules-setting.php:554
|
533 |
+
msgid "Premium Messenger Chat"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/settings/modules-setting.php:562
|
537 |
+
msgid "Premium Multi Scroll"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/settings/modules-setting.php:573
|
541 |
+
msgid "Premium Preview Window"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/settings/modules-setting.php:581
|
545 |
+
msgid "Premium Table"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/settings/modules-setting.php:592
|
549 |
+
msgid "Premium Tabs"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/settings/modules-setting.php:600
|
553 |
+
msgid "Premium Twitter Feed"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/settings/modules-setting.php:611
|
557 |
+
msgid "Premium Unfold"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/settings/modules-setting.php:619
|
561 |
msgid "Premium Whatsapp Chat"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/settings/modules-setting.php:630
|
565 |
+
msgid "Premium Yelp Reviews"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: admin/settings/modules-setting.php:640
|
569 |
msgid "Premium Section Parallax"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin/settings/modules-setting.php:647
|
573 |
msgid "Premium Section Particles"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/settings/modules-setting.php:657
|
577 |
msgid "Premium Section Animated Gradient"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/settings/modules-setting.php:664
|
581 |
msgid "Premium Section Ken Burns"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/class-helper-functions.php:127
|
585 |
msgid "Arabic"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/class-helper-functions.php:128
|
589 |
msgid "Basque"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/class-helper-functions.php:129
|
593 |
msgid "Bulgarian"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/class-helper-functions.php:130
|
597 |
msgid "Bengali"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/class-helper-functions.php:131
|
601 |
msgid "Catalan"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/class-helper-functions.php:132
|
605 |
msgid "Czech"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/class-helper-functions.php:133
|
609 |
msgid "Danish"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/class-helper-functions.php:134
|
613 |
msgid "German"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/class-helper-functions.php:135
|
617 |
msgid "Greek"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/class-helper-functions.php:136
|
621 |
msgid "English"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/class-helper-functions.php:137
|
625 |
msgid "English (australian)"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/class-helper-functions.php:138
|
629 |
msgid "English (great britain)"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/class-helper-functions.php:139
|
633 |
msgid "Spanish"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/class-helper-functions.php:140
|
637 |
msgid "Farsi"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/class-helper-functions.php:141
|
641 |
msgid "Finnish"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/class-helper-functions.php:142
|
645 |
msgid "Filipino"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/class-helper-functions.php:143
|
649 |
msgid "French"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: includes/class-helper-functions.php:144
|
653 |
msgid "Galician"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: includes/class-helper-functions.php:145
|
657 |
msgid "Gujarati"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: includes/class-helper-functions.php:146
|
661 |
msgid "Hindi"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/class-helper-functions.php:147
|
665 |
msgid "Croatian"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: includes/class-helper-functions.php:148
|
669 |
msgid "Hungarian"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/class-helper-functions.php:149
|
673 |
msgid "Indonesian"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/class-helper-functions.php:150
|
677 |
msgid "Italian"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/class-helper-functions.php:151
|
681 |
msgid "Hebrew"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/class-helper-functions.php:152
|
685 |
msgid "Japanese"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/class-helper-functions.php:153
|
689 |
msgid "Kannada"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/class-helper-functions.php:154
|
693 |
msgid "Korean"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/class-helper-functions.php:155
|
697 |
msgid "Lithuanian"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/class-helper-functions.php:156
|
701 |
msgid "Latvian"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/class-helper-functions.php:157
|
705 |
msgid "Malayalam"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/class-helper-functions.php:158
|
709 |
msgid "Marathi"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/class-helper-functions.php:159
|
713 |
msgid "Dutch"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/class-helper-functions.php:160
|
717 |
msgid "Norwegian"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/class-helper-functions.php:161
|
721 |
msgid "Polish"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: includes/class-helper-functions.php:162
|
725 |
msgid "Portuguese"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/class-helper-functions.php:163
|
729 |
msgid "Portuguese (brazil)"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/class-helper-functions.php:164
|
733 |
msgid "Portuguese (portugal)"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/class-helper-functions.php:165
|
737 |
msgid "Romanian"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/class-helper-functions.php:166
|
741 |
msgid "Russian"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/class-helper-functions.php:167
|
745 |
msgid "Slovak"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/class-helper-functions.php:168
|
749 |
msgid "Slovenian"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/class-helper-functions.php:169
|
753 |
msgid "Serbian"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/class-helper-functions.php:170
|
757 |
msgid "Swedish"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/class-helper-functions.php:171
|
761 |
msgid "Tagalog"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/class-helper-functions.php:172
|
765 |
msgid "Tamil"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/class-helper-functions.php:173
|
769 |
msgid "Telugu"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/class-helper-functions.php:174
|
773 |
msgid "Thai"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/class-helper-functions.php:175
|
777 |
msgid "Turkish"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: includes/class-helper-functions.php:176
|
781 |
msgid "Ukrainian"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/class-helper-functions.php:177
|
785 |
msgid "Vietnamese"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/class-helper-functions.php:178
|
789 |
msgid "Chinese (simplified)"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/class-helper-functions.php:179
|
793 |
msgid "Chinese (traditional)"
|
794 |
msgstr ""
|
795 |
|
1121 |
msgid "Get Pro"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/templates/classes/manager.php:189 widgets/premium-blog.php:498
|
1125 |
+
#: widgets/premium-grid.php:282
|
1126 |
msgid "All"
|
1127 |
msgstr ""
|
1128 |
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: includes/templates/scripts/template-modal-header.php:9
|
1143 |
+
#: widgets/premium-modalbox.php:230
|
1144 |
msgid "Close"
|
1145 |
msgstr ""
|
1146 |
|
1161 |
msgid "Loading"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/templates/types/section.php:23 widgets/premium-vscroll.php:106
|
1165 |
+
#: widgets/premium-vscroll.php:128
|
1166 |
msgid "Sections"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: widgets/premium-banner.php:65 widgets/premium-banner.php:462
|
1170 |
+
#: widgets/premium-blog.php:68 widgets/premium-blog.php:779
|
1171 |
+
#: widgets/premium-grid.php:1051 widgets/premium-image-scroll.php:77
|
1172 |
+
#: widgets/premium-image-scroll.php:286 widgets/premium-image-separator.php:63
|
1173 |
+
#: widgets/premium-image-separator.php:231 widgets/premium-modalbox.php:255
|
1174 |
+
#: widgets/premium-modalbox.php:437 widgets/premium-person.php:56
|
1175 |
+
#: widgets/premium-person.php:75 widgets/premium-person.php:445
|
1176 |
+
#: widgets/premium-testimonials.php:61 widgets/premium-testimonials.php:233
|
1177 |
+
#: widgets/premium-videobox.php:300
|
1178 |
msgid "Image"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: widgets/premium-banner.php:71 widgets/premium-counter.php:172
|
1182 |
+
#: widgets/premium-grid.php:389
|
1183 |
msgid "Upload Image"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: widgets/premium-banner.php:72
|
1187 |
msgid "Select an image for the Banner"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: widgets/premium-banner.php:84 widgets/premium-banner.php:360
|
1191 |
+
#: widgets/premium-blog.php:362 widgets/premium-button.php:91
|
1192 |
+
#: widgets/premium-dual-header.php:123 widgets/premium-dual-header.php:147
|
1193 |
+
#: widgets/premium-grid.php:580 widgets/premium-image-button.php:86
|
1194 |
+
#: widgets/premium-image-scroll.php:124 widgets/premium-image-separator.php:139
|
1195 |
+
#: widgets/premium-pricing-table.php:351 widgets/premium-testimonials.php:161
|
1196 |
+
#: widgets/premium-testimonials.php:170 widgets/premium-videobox.php:84
|
1197 |
+
#: widgets/premium-videobox.php:125
|
1198 |
msgid "Link"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: widgets/premium-banner.php:91
|
1202 |
msgid "Custom Link"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: widgets/premium-banner.php:93
|
1206 |
msgid "Add a custom link to the banner"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: widgets/premium-banner.php:102
|
1210 |
msgid "Set custom Link"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: widgets/premium-banner.php:105
|
1214 |
msgid "What custom link you want to set to banner?"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: widgets/premium-banner.php:116 widgets/premium-banner.php:347
|
1218 |
+
#: widgets/premium-banner.php:378 widgets/premium-button.php:82
|
1219 |
+
#: widgets/premium-button.php:108 widgets/premium-dual-header.php:135
|
1220 |
+
#: widgets/premium-dual-header.php:165 widgets/premium-grid.php:569
|
1221 |
+
#: widgets/premium-grid.php:593 widgets/premium-image-button.php:77
|
1222 |
+
#: widgets/premium-image-button.php:103 widgets/premium-image-scroll.php:136
|
1223 |
+
#: widgets/premium-image-scroll.php:162 widgets/premium-image-separator.php:151
|
1224 |
+
#: widgets/premium-image-separator.php:163
|
1225 |
+
#: widgets/premium-pricing-table.php:340 widgets/premium-pricing-table.php:370
|
1226 |
msgid "Existing Page"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: widgets/premium-banner.php:129 widgets/premium-image-scroll.php:175
|
1230 |
msgid "Link Title"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: widgets/premium-banner.php:141
|
1234 |
msgid "New Tab"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: widgets/premium-banner.php:143
|
1238 |
msgid "Choose if you want the link be opened in a new tab or not"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: widgets/premium-banner.php:152
|
1242 |
msgid "Nofollow Option"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: widgets/premium-banner.php:154
|
1246 |
msgid "if you choose yes, the link will not be counted in search engines"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: widgets/premium-banner.php:163 widgets/premium-fancytext.php:156
|
1250 |
msgid "Effect"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: widgets/premium-banner.php:166
|
1254 |
msgid "Choose a hover effect for the banner"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: widgets/premium-banner.php:168
|
1258 |
msgid "Effect 1"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: widgets/premium-banner.php:169
|
1262 |
msgid "Effect 2"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: widgets/premium-banner.php:170
|
1266 |
msgid "Effect 3"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: widgets/premium-banner.php:171
|
1270 |
msgid "Effect 4"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: widgets/premium-banner.php:172
|
1274 |
msgid "Effect 5"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: widgets/premium-banner.php:173
|
1278 |
msgid "Effect 6"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: widgets/premium-banner.php:180
|
1282 |
msgid "Always Hovered"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: widgets/premium-banner.php:182
|
1286 |
msgid "Choose if you want the effect to be always triggered"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: widgets/premium-banner.php:188 widgets/premium-blog.php:74
|
1290 |
+
#: widgets/premium-button.php:122 widgets/premium-grid.php:745
|
1291 |
+
#: widgets/premium-image-button.php:117 widgets/premium-person.php:149
|
1292 |
msgid "Hover Effect"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: widgets/premium-banner.php:191 widgets/premium-blog.php:78
|
1296 |
+
#: widgets/premium-blog.php:121 widgets/premium-blog.php:574
|
1297 |
+
#: widgets/premium-button.php:126 widgets/premium-grid.php:749
|
1298 |
+
#: widgets/premium-image-button.php:121 widgets/premium-modalbox.php:92
|
1299 |
+
#: widgets/premium-person.php:152 widgets/premium-progressbar.php:158
|
1300 |
msgid "None"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: widgets/premium-banner.php:192 widgets/premium-blog.php:79
|
1304 |
+
#: widgets/premium-grid.php:750 widgets/premium-person.php:153
|
1305 |
msgid "Zoom In"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: widgets/premium-banner.php:193 widgets/premium-blog.php:80
|
1309 |
+
#: widgets/premium-grid.php:751 widgets/premium-person.php:154
|
1310 |
msgid "Zoom Out"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: widgets/premium-banner.php:194 widgets/premium-blog.php:81
|
1314 |
+
#: widgets/premium-grid.php:752 widgets/premium-person.php:155
|
1315 |
msgid "Scale"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: widgets/premium-banner.php:195 widgets/premium-blog.php:82
|
1319 |
+
#: widgets/premium-grid.php:753 widgets/premium-person.php:156
|
1320 |
msgid "Grayscale"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: widgets/premium-banner.php:196 widgets/premium-blog.php:83
|
1324 |
+
#: widgets/premium-grid.php:754 widgets/premium-person.php:157
|
1325 |
msgid "Blur"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: widgets/premium-banner.php:197 widgets/premium-blog.php:84
|
1329 |
+
#: widgets/premium-grid.php:755 widgets/premium-person.php:158
|
1330 |
msgid "Bright"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: widgets/premium-banner.php:198 widgets/premium-blog.php:85
|
1334 |
+
#: widgets/premium-grid.php:756 widgets/premium-person.php:159
|
1335 |
msgid "Sepia"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: widgets/premium-banner.php:206 widgets/premium-contactform.php:140
|
1339 |
+
#: widgets/premium-contactform.php:222 widgets/premium-grid.php:419
|
1340 |
+
#: widgets/premium-grid.php:725 widgets/premium-maps.php:268
|
1341 |
+
#: widgets/premium-progressbar.php:250 widgets/premium-progressbar.php:585
|
|
|
1342 |
msgid "Height"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: widgets/premium-banner.php:209 widgets/premium-grid.php:889
|
1346 |
msgid "Default"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: widgets/premium-banner.php:210
|
1350 |
msgid "Custom"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: widgets/premium-banner.php:213
|
1354 |
msgid ""
|
1355 |
"Choose if you want to set a custom height for the banner or keep it as it is"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: widgets/premium-banner.php:219
|
1359 |
msgid "Min Height"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: widgets/premium-banner.php:221
|
1363 |
msgid "Set a minimum height value in pixels"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: widgets/premium-banner.php:233 widgets/premium-pricing-table.php:887
|
1367 |
msgid "Vertical Align"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: widgets/premium-banner.php:239 widgets/premium-button.php:183
|
1371 |
+
#: widgets/premium-counter.php:190 widgets/premium-pricing-table.php:891
|
1372 |
+
#: widgets/premium-testimonials.php:197 widgets/premium-title.php:159
|
1373 |
+
#: widgets/premium-vscroll.php:253
|
1374 |
msgid "Top"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: widgets/premium-banner.php:240 widgets/premium-vscroll.php:254
|
1378 |
msgid "Middle"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: widgets/premium-banner.php:241 widgets/premium-button.php:184
|
1382 |
+
#: widgets/premium-pricing-table.php:899 widgets/premium-title.php:160
|
1383 |
+
#: widgets/premium-vscroll.php:255
|
1384 |
msgid "Bottom"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: widgets/premium-banner.php:242
|
1388 |
msgid "Full"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: widgets/premium-banner.php:253 widgets/premium-carousel.php:317
|
1392 |
msgid "Extra Class"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: widgets/premium-banner.php:256
|
1396 |
msgid ""
|
1397 |
"Add extra class name that will be applied to the banner, and you can use "
|
1398 |
"this class for your customizations."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: widgets/premium-banner.php:265 widgets/premium-carousel.php:99
|
1402 |
+
#: widgets/premium-modalbox.php:71 widgets/premium-modalbox.php:165
|
1403 |
+
#: widgets/premium-modalbox.php:185 widgets/premium-person.php:757
|
1404 |
+
#: widgets/premium-testimonials.php:212 widgets/premium-testimonials.php:387
|
1405 |
+
#: widgets/premium-vscroll.php:68
|
1406 |
msgid "Content"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: widgets/premium-banner.php:272
|
1410 |
msgid "Give a title to this banner"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: widgets/premium-banner.php:275
|
1414 |
msgid "Premium Banner"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: widgets/premium-banner.php:282 widgets/premium-dual-header.php:87
|
1418 |
+
#: widgets/premium-person.php:191 widgets/premium-person.php:220
|
1419 |
+
#: widgets/premium-pricing-table.php:105 widgets/premium-testimonials.php:102
|
1420 |
+
#: widgets/premium-testimonials.php:143 widgets/premium-title.php:112
|
1421 |
msgid "HTML Tag"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: widgets/premium-banner.php:283
|
1425 |
msgid ""
|
1426 |
"Select a heading tag for the title. Headings are defined with H1 to H6 tags"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: widgets/premium-banner.php:301 widgets/premium-banner.php:308
|
1430 |
+
#: widgets/premium-banner.php:651 widgets/premium-grid.php:549
|
1431 |
+
#: widgets/premium-grid.php:1175 widgets/premium-maps.php:215
|
1432 |
+
#: widgets/premium-maps.php:477 widgets/premium-person.php:237
|
1433 |
+
#: widgets/premium-person.php:597 widgets/premium-pricing-table.php:291
|
1434 |
+
#: widgets/premium-pricing-table.php:302 widgets/premium-pricing-table.php:514
|
1435 |
+
#: widgets/premium-pricing-table.php:1286 widgets/premium-videobox.php:365
|
1436 |
msgid "Description"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: widgets/premium-banner.php:309
|
1440 |
msgid "Give the description to this banner"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: widgets/premium-banner.php:312
|
1444 |
msgid ""
|
1445 |
"Premium Banner gives you a wide range of styles and options that you will "
|
1446 |
"definitely fall in love with"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: widgets/premium-banner.php:330 widgets/premium-button.php:68
|
1450 |
+
#: widgets/premium-fancytext.php:113 widgets/premium-image-button.php:63
|
1451 |
+
#: widgets/premium-modalbox.php:229 widgets/premium-modalbox.php:256
|
1452 |
+
#: widgets/premium-modalbox.php:452 widgets/premium-pricing-table.php:94
|
1453 |
+
#: widgets/premium-pricing-table.php:204 widgets/premium-pricing-table.php:325
|
1454 |
+
#: widgets/premium-pricing-table.php:414 widgets/premium-pricing-table.php:1131
|
1455 |
+
#: widgets/premium-pricing-table.php:1296 widgets/premium-videobox.php:378
|
1456 |
msgid "Text"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: widgets/premium-banner.php:343 widgets/premium-button.php:78
|
1460 |
+
#: widgets/premium-dual-header.php:131 widgets/premium-grid.php:565
|
1461 |
+
#: widgets/premium-image-button.php:73 widgets/premium-pricing-table.php:336
|
1462 |
msgid "Link Type"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: widgets/premium-banner.php:346 widgets/premium-button.php:81
|
1466 |
+
#: widgets/premium-dual-header.php:134 widgets/premium-grid.php:568
|
1467 |
+
#: widgets/premium-image-button.php:76 widgets/premium-image-scroll.php:135
|
1468 |
+
#: widgets/premium-image-scroll.php:148 widgets/premium-image-separator.php:150
|
1469 |
+
#: widgets/premium-image-separator.php:177
|
1470 |
+
#: widgets/premium-pricing-table.php:339 widgets/premium-videobox.php:144
|
1471 |
msgid "URL"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: widgets/premium-banner.php:394 widgets/premium-blog.php:295
|
1475 |
+
#: widgets/premium-blog.php:508 widgets/premium-blog.php:749
|
1476 |
+
#: widgets/premium-button.php:443 widgets/premium-countdown.php:154
|
1477 |
+
#: widgets/premium-dual-header.php:181 widgets/premium-fancytext.php:122
|
1478 |
+
#: widgets/premium-grid.php:354 widgets/premium-image-button.php:347
|
1479 |
+
#: widgets/premium-maps.php:448 widgets/premium-maps.php:530
|
1480 |
+
#: widgets/premium-modalbox.php:478 widgets/premium-person.php:123
|
1481 |
+
#: widgets/premium-person.php:247 widgets/premium-pricing-table.php:258
|
1482 |
+
#: widgets/premium-title.php:129
|
1483 |
msgid "Alignment"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: widgets/premium-banner.php:398 widgets/premium-blog.php:299
|
1487 |
+
#: widgets/premium-blog.php:512 widgets/premium-blog.php:753
|
1488 |
+
#: widgets/premium-button.php:185 widgets/premium-button.php:447
|
1489 |
+
#: widgets/premium-countdown.php:158 widgets/premium-counter.php:192
|
1490 |
+
#: widgets/premium-dual-header.php:185 widgets/premium-fancytext.php:126
|
1491 |
+
#: widgets/premium-fancytext.php:315 widgets/premium-grid.php:229
|
1492 |
+
#: widgets/premium-grid.php:358 widgets/premium-grid.php:823
|
1493 |
+
#: widgets/premium-image-button.php:351 widgets/premium-image-separator.php:116
|
1494 |
+
#: widgets/premium-maps.php:452 widgets/premium-maps.php:534
|
1495 |
+
#: widgets/premium-modalbox.php:482 widgets/premium-person.php:127
|
1496 |
+
#: widgets/premium-person.php:251 widgets/premium-pricing-table.php:262
|
1497 |
+
#: widgets/premium-pricing-table.php:466 widgets/premium-progressbar.php:174
|
1498 |
+
#: widgets/premium-title.php:133 widgets/premium-title.php:253
|
1499 |
+
#: widgets/premium-vscroll.php:159 widgets/premium-vscroll.php:240
|
1500 |
msgid "Left"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: widgets/premium-banner.php:402 widgets/premium-blog.php:303
|
1504 |
+
#: widgets/premium-blog.php:516 widgets/premium-blog.php:757
|
1505 |
+
#: widgets/premium-button.php:451 widgets/premium-countdown.php:162
|
1506 |
+
#: widgets/premium-dual-header.php:189 widgets/premium-fancytext.php:130
|
1507 |
+
#: widgets/premium-fancytext.php:319 widgets/premium-grid.php:233
|
1508 |
+
#: widgets/premium-grid.php:362 widgets/premium-grid.php:827
|
1509 |
+
#: widgets/premium-image-button.php:355 widgets/premium-image-separator.php:120
|
1510 |
+
#: widgets/premium-maps.php:456 widgets/premium-maps.php:538
|
1511 |
+
#: widgets/premium-modalbox.php:486 widgets/premium-person.php:131
|
1512 |
+
#: widgets/premium-person.php:255 widgets/premium-pricing-table.php:266
|
1513 |
+
#: widgets/premium-progressbar.php:178 widgets/premium-title.php:137
|
1514 |
+
#: widgets/premium-title.php:257
|
1515 |
msgid "Center"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: widgets/premium-banner.php:406 widgets/premium-blog.php:307
|
1519 |
+
#: widgets/premium-blog.php:520 widgets/premium-blog.php:761
|
1520 |
+
#: widgets/premium-button.php:186 widgets/premium-button.php:455
|
1521 |
+
#: widgets/premium-countdown.php:166 widgets/premium-counter.php:191
|
1522 |
+
#: widgets/premium-dual-header.php:193 widgets/premium-fancytext.php:134
|
1523 |
+
#: widgets/premium-fancytext.php:323 widgets/premium-grid.php:237
|
1524 |
+
#: widgets/premium-grid.php:366 widgets/premium-grid.php:831
|
1525 |
+
#: widgets/premium-image-button.php:359 widgets/premium-image-separator.php:124
|
1526 |
+
#: widgets/premium-maps.php:460 widgets/premium-maps.php:542
|
1527 |
+
#: widgets/premium-modalbox.php:490 widgets/premium-person.php:135
|
1528 |
+
#: widgets/premium-person.php:259 widgets/premium-pricing-table.php:270
|
1529 |
+
#: widgets/premium-pricing-table.php:465 widgets/premium-progressbar.php:182
|
1530 |
+
#: widgets/premium-title.php:141 widgets/premium-title.php:261
|
1531 |
+
#: widgets/premium-vscroll.php:160 widgets/premium-vscroll.php:241
|
1532 |
msgid "Right"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: widgets/premium-banner.php:422 widgets/premium-grid.php:933
|
1536 |
msgid "Responsive"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: widgets/premium-banner.php:428 widgets/premium-grid.php:938
|
1540 |
msgid "Responsive Controls"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: widgets/premium-banner.php:430
|
1544 |
msgid ""
|
1545 |
"If the description text is not suiting well on specific screen sizes, you "
|
1546 |
"may enable this option which will hide the description text."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: widgets/premium-banner.php:436 widgets/premium-grid.php:945
|
1550 |
msgid "Minimum Size"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: widgets/premium-banner.php:438 widgets/premium-grid.php:947
|
1554 |
msgid "Note: minimum size for extra small screens is 1px."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: widgets/premium-banner.php:448 widgets/premium-grid.php:956
|
1558 |
msgid "Maximum Size"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: widgets/premium-banner.php:450 widgets/premium-grid.php:958
|
1562 |
msgid "Note: maximum size for extra small screens is 767px."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: widgets/premium-banner.php:469 widgets/premium-banner.php:754
|
1566 |
+
#: widgets/premium-blog.php:902 widgets/premium-blog.php:1129
|
1567 |
+
#: widgets/premium-blog.php:1234 widgets/premium-blog.php:1271
|
1568 |
+
#: widgets/premium-blog.php:1433 widgets/premium-blog.php:1554
|
1569 |
+
#: widgets/premium-button.php:543 widgets/premium-button.php:684
|
1570 |
+
#: widgets/premium-carousel.php:629 widgets/premium-carousel.php:683
|
1571 |
+
#: widgets/premium-contactform.php:497 widgets/premium-contactform.php:553
|
1572 |
+
#: widgets/premium-countdown.php:429 widgets/premium-countdown.php:523
|
1573 |
+
#: widgets/premium-counter.php:296 widgets/premium-fancytext.php:376
|
1574 |
+
#: widgets/premium-fancytext.php:434 widgets/premium-fancytext.php:481
|
1575 |
+
#: widgets/premium-grid.php:1344 widgets/premium-grid.php:1428
|
1576 |
+
#: widgets/premium-grid.php:1536 widgets/premium-grid.php:1583
|
1577 |
+
#: widgets/premium-grid.php:1634 widgets/premium-modalbox.php:610
|
1578 |
+
#: widgets/premium-modalbox.php:711 widgets/premium-modalbox.php:798
|
1579 |
+
#: widgets/premium-modalbox.php:860 widgets/premium-modalbox.php:908
|
1580 |
+
#: widgets/premium-modalbox.php:1019 widgets/premium-modalbox.php:1075
|
1581 |
+
#: widgets/premium-person.php:681 widgets/premium-pricing-table.php:580
|
1582 |
+
#: widgets/premium-pricing-table.php:1676
|
1583 |
+
#: widgets/premium-pricing-table.php:1693 widgets/premium-title.php:330
|
1584 |
+
#: widgets/premium-title.php:352 widgets/premium-videobox.php:641
|
1585 |
+
#: widgets/premium-vscroll.php:557 widgets/premium-vscroll.php:651
|
1586 |
+
#: widgets/premium-vscroll.php:710
|
1587 |
msgid "Background Color"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: widgets/premium-banner.php:479
|
1591 |
msgid "Image Opacity"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: widgets/premium-banner.php:500
|
1595 |
msgid "Hover Opacity"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: widgets/premium-banner.php:530
|
1599 |
msgid "Hover CSS Filter"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: widgets/premium-banner.php:546 widgets/premium-banner.php:782
|
1603 |
+
#: widgets/premium-banner.php:830 widgets/premium-blog.php:938
|
1604 |
+
#: widgets/premium-blog.php:1321 widgets/premium-blog.php:1447
|
1605 |
+
#: widgets/premium-blog.php:1590 widgets/premium-button.php:565
|
1606 |
+
#: widgets/premium-button.php:707 widgets/premium-carousel.php:647
|
1607 |
+
#: widgets/premium-carousel.php:701 widgets/premium-carousel.php:817
|
1608 |
+
#: widgets/premium-contactform.php:284 widgets/premium-contactform.php:520
|
1609 |
+
#: widgets/premium-countdown.php:478 widgets/premium-counter.php:369
|
1610 |
+
#: widgets/premium-dual-header.php:357 widgets/premium-dual-header.php:554
|
1611 |
+
#: widgets/premium-grid.php:1008 widgets/premium-grid.php:1075
|
1612 |
+
#: widgets/premium-grid.php:1224 widgets/premium-grid.php:1366
|
1613 |
+
#: widgets/premium-grid.php:1450 widgets/premium-grid.php:1554
|
1614 |
+
#: widgets/premium-grid.php:1601 widgets/premium-grid.php:1652
|
1615 |
+
#: widgets/premium-grid.php:1780 widgets/premium-grid.php:1868
|
1616 |
+
#: widgets/premium-image-button.php:465 widgets/premium-image-button.php:652
|
1617 |
+
#: widgets/premium-image-scroll.php:437 widgets/premium-image-scroll.php:472
|
1618 |
+
#: widgets/premium-maps.php:576 widgets/premium-modalbox.php:638
|
1619 |
+
#: widgets/premium-modalbox.php:736 widgets/premium-modalbox.php:878
|
1620 |
+
#: widgets/premium-modalbox.php:926 widgets/premium-modalbox.php:1041
|
1621 |
+
#: widgets/premium-modalbox.php:1097 widgets/premium-modalbox.php:1203
|
1622 |
+
#: widgets/premium-person.php:720 widgets/premium-pricing-table.php:617
|
1623 |
+
#: widgets/premium-pricing-table.php:660 widgets/premium-pricing-table.php:1243
|
1624 |
+
#: widgets/premium-pricing-table.php:1457
|
1625 |
+
#: widgets/premium-pricing-table.php:1535
|
1626 |
+
#: widgets/premium-pricing-table.php:1748
|
1627 |
+
#: widgets/premium-pricing-table.php:1826 widgets/premium-progressbar.php:265
|
1628 |
+
#: widgets/premium-testimonials.php:545 widgets/premium-title.php:540
|
1629 |
+
#: widgets/premium-videobox.php:444 widgets/premium-videobox.php:536
|
1630 |
+
#: widgets/premium-vscroll.php:446 widgets/premium-vscroll.php:571
|
1631 |
+
#: widgets/premium-vscroll.php:744
|
1632 |
msgid "Border Radius"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: widgets/premium-banner.php:557 widgets/premium-image-scroll.php:389
|
1636 |
+
#: widgets/premium-person.php:481
|
1637 |
+
msgid "Blend Mode"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: widgets/premium-banner.php:560 widgets/premium-blog.php:1213
|
1641 |
+
#: widgets/premium-button.php:507 widgets/premium-carousel.php:606
|
1642 |
+
#: widgets/premium-contactform.php:479 widgets/premium-dual-header.php:240
|
1643 |
+
#: widgets/premium-dual-header.php:437 widgets/premium-grid.php:1324
|
1644 |
+
#: widgets/premium-grid.php:1516 widgets/premium-grid.php:1720
|
1645 |
+
#: widgets/premium-image-button.php:411 widgets/premium-image-scroll.php:321
|
1646 |
+
#: widgets/premium-image-scroll.php:392 widgets/premium-image-scroll.php:423
|
1647 |
+
#: widgets/premium-modalbox.php:601 widgets/premium-modalbox.php:844
|
1648 |
+
#: widgets/premium-modalbox.php:999 widgets/premium-person.php:484
|
1649 |
+
#: widgets/premium-pricing-table.php:1431
|
1650 |
+
#: widgets/premium-pricing-table.php:1722 widgets/premium-vscroll.php:313
|
1651 |
+
#: widgets/premium-vscroll.php:617
|
1652 |
+
msgid "Normal"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: widgets/premium-banner.php:589 widgets/premium-banner.php:658
|
1656 |
+
#: widgets/premium-banner.php:716 widgets/premium-blog.php:874
|
1657 |
+
#: widgets/premium-blog.php:980 widgets/premium-blog.php:1025
|
1658 |
+
#: widgets/premium-blog.php:1070 widgets/premium-blog.php:1220
|
1659 |
+
#: widgets/premium-blog.php:1257 widgets/premium-blog.php:1294
|
1660 |
+
#: widgets/premium-blog.php:1367 widgets/premium-blog.php:1408
|
1661 |
+
#: widgets/premium-blog.php:1478 widgets/premium-blog.php:1517
|
1662 |
+
#: widgets/premium-carousel.php:612 widgets/premium-carousel.php:666
|
1663 |
+
#: widgets/premium-carousel.php:754 widgets/premium-countdown.php:403
|
1664 |
+
#: widgets/premium-countdown.php:499 widgets/premium-countdown.php:587
|
1665 |
+
#: widgets/premium-counter.php:220 widgets/premium-counter.php:397
|
1666 |
+
#: widgets/premium-counter.php:437 widgets/premium-fancytext.php:351
|
1667 |
+
#: widgets/premium-fancytext.php:409 widgets/premium-fancytext.php:456
|
1668 |
+
#: widgets/premium-grid.php:1152 widgets/premium-grid.php:1183
|
1669 |
+
#: widgets/premium-grid.php:1330 widgets/premium-grid.php:1414
|
1670 |
+
#: widgets/premium-maps.php:401 widgets/premium-maps.php:484
|
1671 |
+
#: widgets/premium-modalbox.php:518 widgets/premium-modalbox.php:778
|
1672 |
+
#: widgets/premium-modalbox.php:850 widgets/premium-modalbox.php:898
|
1673 |
+
#: widgets/premium-modalbox.php:1005 widgets/premium-modalbox.php:1061
|
1674 |
+
#: widgets/premium-person.php:517 widgets/premium-person.php:561
|
1675 |
+
#: widgets/premium-person.php:605 widgets/premium-person.php:652
|
1676 |
+
#: widgets/premium-person.php:765 widgets/premium-pricing-table.php:552
|
1677 |
+
#: widgets/premium-pricing-table.php:724 widgets/premium-pricing-table.php:818
|
1678 |
+
#: widgets/premium-pricing-table.php:862 widgets/premium-pricing-table.php:934
|
1679 |
+
#: widgets/premium-pricing-table.php:979 widgets/premium-pricing-table.php:1031
|
1680 |
+
#: widgets/premium-pricing-table.php:1138
|
1681 |
+
#: widgets/premium-pricing-table.php:1169
|
1682 |
+
#: widgets/premium-pricing-table.php:1304
|
1683 |
+
#: widgets/premium-pricing-table.php:1391 widgets/premium-progressbar.php:354
|
1684 |
+
#: widgets/premium-progressbar.php:400 widgets/premium-progressbar.php:513
|
1685 |
+
#: widgets/premium-progressbar.php:556 widgets/premium-testimonials.php:284
|
1686 |
+
#: widgets/premium-testimonials.php:309 widgets/premium-testimonials.php:359
|
1687 |
+
#: widgets/premium-testimonials.php:395 widgets/premium-testimonials.php:451
|
1688 |
+
#: widgets/premium-title.php:290 widgets/premium-videobox.php:476
|
1689 |
msgid "Color"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: widgets/premium-banner.php:603
|
1693 |
msgid "Title Background"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: widgets/premium-banner.php:606
|
1697 |
msgid "Choose a background color for the title"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: widgets/premium-banner.php:618
|
1701 |
msgid "Title Border Color"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: widgets/premium-banner.php:641 widgets/premium-banner.php:695
|
1705 |
+
#: widgets/premium-banner.php:794 widgets/premium-dual-header.php:370
|
1706 |
+
#: widgets/premium-dual-header.php:567 widgets/premium-grid.php:1087
|
1707 |
+
#: widgets/premium-grid.php:1236 widgets/premium-grid.php:1378
|
1708 |
+
#: widgets/premium-grid.php:1462 widgets/premium-maps.php:589
|
1709 |
+
#: widgets/premium-modalbox.php:678 widgets/premium-modalbox.php:751
|
1710 |
+
#: widgets/premium-pricing-table.php:1470
|
1711 |
+
#: widgets/premium-pricing-table.php:1548
|
1712 |
+
#: widgets/premium-pricing-table.php:1761
|
1713 |
+
#: widgets/premium-pricing-table.php:1839 widgets/premium-title.php:470
|
1714 |
+
#: widgets/premium-videobox.php:456 widgets/premium-videobox.php:667
|
1715 |
+
#: widgets/premium-vscroll.php:583 widgets/premium-vscroll.php:666
|
1716 |
+
#: widgets/premium-vscroll.php:725
|
1717 |
msgid "Shadow"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: widgets/premium-banner.php:672
|
1721 |
msgid "Inner Border Color"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: widgets/premium-banner.php:730 widgets/premium-blog.php:888
|
1725 |
+
#: widgets/premium-blog.php:994 widgets/premium-blog.php:1039
|
1726 |
+
#: widgets/premium-blog.php:1084 widgets/premium-blog.php:1488
|
1727 |
+
#: widgets/premium-modalbox.php:535 widgets/premium-person.php:667
|
1728 |
+
#: widgets/premium-videobox.php:490 widgets/premium-videobox.php:618
|
1729 |
msgid "Hover Color"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: widgets/premium-banner.php:764 widgets/premium-blog.php:916
|
1733 |
+
#: widgets/premium-person.php:699
|
1734 |
msgid "Hover Background Color"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: widgets/premium-banner.php:802 widgets/premium-blog.php:949
|
1738 |
+
#: widgets/premium-blog.php:1343 widgets/premium-blog.php:1458
|
1739 |
+
#: widgets/premium-blog.php:1620 widgets/premium-button.php:617
|
1740 |
+
#: widgets/premium-button.php:774 widgets/premium-contactform.php:264
|
1741 |
+
#: widgets/premium-contactform.php:466 widgets/premium-dual-header.php:392
|
1742 |
+
#: widgets/premium-dual-header.php:589 widgets/premium-grid.php:1038
|
1743 |
+
#: widgets/premium-grid.php:1126 widgets/premium-grid.php:1263
|
1744 |
+
#: widgets/premium-grid.php:1396 widgets/premium-grid.php:1480
|
1745 |
+
#: widgets/premium-grid.php:1686 widgets/premium-grid.php:1810
|
1746 |
+
#: widgets/premium-grid.php:1898 widgets/premium-image-button.php:518
|
1747 |
+
#: widgets/premium-image-button.php:719 widgets/premium-maps.php:436
|
1748 |
+
#: widgets/premium-maps.php:518 widgets/premium-maps.php:610
|
1749 |
+
#: widgets/premium-modalbox.php:656 widgets/premium-modalbox.php:942
|
1750 |
+
#: widgets/premium-modalbox.php:1113 widgets/premium-modalbox.php:1233
|
1751 |
+
#: widgets/premium-person.php:742 widgets/premium-person.php:816
|
1752 |
+
#: widgets/premium-pricing-table.php:594 widgets/premium-pricing-table.php:691
|
1753 |
+
#: widgets/premium-pricing-table.php:778 widgets/premium-pricing-table.php:1106
|
1754 |
+
#: widgets/premium-pricing-table.php:1273
|
1755 |
+
#: widgets/premium-pricing-table.php:1365
|
1756 |
+
#: widgets/premium-pricing-table.php:1490
|
1757 |
+
#: widgets/premium-pricing-table.php:1568
|
1758 |
+
#: widgets/premium-pricing-table.php:1781
|
1759 |
+
#: widgets/premium-pricing-table.php:1859 widgets/premium-testimonials.php:564
|
1760 |
+
#: widgets/premium-title.php:564 widgets/premium-videobox.php:551
|
1761 |
+
#: widgets/premium-videobox.php:655 widgets/premium-vscroll.php:485
|
1762 |
+
#: widgets/premium-vscroll.php:766
|
1763 |
msgid "Padding"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: widgets/premium-banner.php:815 widgets/premium-image-scroll.php:414
|
1767 |
+
#: widgets/premium-pricing-table.php:633 widgets/premium-pricing-table.php:1069
|
1768 |
+
#: widgets/premium-pricing-table.php:1217
|
1769 |
+
#: widgets/premium-pricing-table.php:1328 widgets/premium-testimonials.php:521
|
1770 |
+
#: widgets/premium-vscroll.php:551
|
1771 |
+
msgid "Container"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: widgets/premium-blog.php:76 widgets/premium-grid.php:747
|
1775 |
msgid "Choose a hover effect for the image"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: widgets/premium-blog.php:86 widgets/premium-grid.php:757
|
1779 |
+
#: widgets/premium-person.php:160
|
1780 |
msgid "Translate"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: widgets/premium-blog.php:97 widgets/premium-counter.php:138
|
1784 |
+
#: widgets/premium-grid.php:673 widgets/premium-modalbox.php:244
|
1785 |
+
#: widgets/premium-pricing-table.php:477
|
1786 |
+
msgid "Display Options"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: widgets/premium-blog.php:103 widgets/premium-grid.php:696
|
1790 |
+
msgid "Skin"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: widgets/premium-blog.php:106
|
1794 |
+
msgid "Classic"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: widgets/premium-blog.php:107
|
1798 |
+
msgid "Modern"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: widgets/premium-blog.php:108
|
1802 |
+
msgid "Cards"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: widgets/premium-blog.php:117
|
1806 |
+
msgid "Overlay Effect"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: widgets/premium-blog.php:119
|
1810 |
+
msgid "Choose an overlay color effect"
|
|
|
|
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: widgets/premium-blog.php:122
|
1814 |
+
msgid "Framed"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: widgets/premium-blog.php:123
|
1818 |
+
msgid "Diagonal"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: widgets/premium-blog.php:124
|
1822 |
+
msgid "Bordered"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: widgets/premium-blog.php:125
|
1826 |
+
msgid "Squares"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: widgets/premium-blog.php:137
|
1830 |
msgid "Title HTML Tag"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: widgets/premium-blog.php:138
|
1834 |
msgid "Select a heading tag for the post title."
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: widgets/premium-blog.php:155
|
1838 |
msgid "Grid"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: widgets/premium-blog.php:163 widgets/premium-grid.php:80
|
1842 |
msgid "Layout"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: widgets/premium-blog.php:166 widgets/premium-grid.php:89
|
1846 |
msgid "Even"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: widgets/premium-blog.php:167 widgets/premium-grid.php:90
|
1850 |
msgid "Masonry"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: widgets/premium-blog.php:178
|
1854 |
msgid "Number of Columns"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: widgets/premium-blog.php:181 widgets/premium-grid.php:161
|
1858 |
msgid "1 Column"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: widgets/premium-blog.php:182 widgets/premium-grid.php:162
|
1862 |
msgid "2 Columns"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: widgets/premium-blog.php:183 widgets/premium-grid.php:163
|
1866 |
msgid "3 Columns"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: widgets/premium-blog.php:184 widgets/premium-grid.php:164
|
1870 |
msgid "4 Columns"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: widgets/premium-blog.php:200
|
1874 |
msgid "Thumbnail Min Height"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: widgets/premium-blog.php:217
|
1878 |
msgid "Thumbnail Max Height"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: widgets/premium-blog.php:234
|
1882 |
msgid "Thumbnail Fit"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: widgets/premium-blog.php:237 widgets/premium-grid.php:129
|
1886 |
msgid "Cover"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: widgets/premium-blog.php:238 widgets/premium-grid.php:128
|
1890 |
msgid "Fill"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: widgets/premium-blog.php:239
|
1894 |
msgid "Contain"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: widgets/premium-blog.php:253
|
1898 |
msgid "Rows Spacing"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: widgets/premium-blog.php:274
|
1902 |
msgid "Columns Spacing"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: widgets/premium-blog.php:322
|
1906 |
msgid "Post Options"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: widgets/premium-blog.php:328
|
1910 |
msgid "Excerpt"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: widgets/premium-blog.php:330
|
1914 |
msgid ""
|
1915 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
1916 |
"default except length is 55"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: widgets/premium-blog.php:337
|
1920 |
msgid "Pull From Content Box"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: widgets/premium-blog.php:339
|
1924 |
msgid "Post content will be pulled from post content box"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: widgets/premium-blog.php:347
|
1928 |
msgid "Excerpt Length"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: widgets/premium-blog.php:358
|
1932 |
msgid "Excerpt Type"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: widgets/premium-blog.php:361 widgets/premium-carousel.php:133
|
1936 |
+
#: widgets/premium-vscroll.php:501
|
1937 |
msgid "Dots"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: widgets/premium-blog.php:371
|
1941 |
msgid "Link Text"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: widgets/premium-blog.php:373
|
1945 |
msgid "continue reading"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: widgets/premium-blog.php:383
|
1949 |
msgid "Author Meta"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: widgets/premium-blog.php:391
|
1953 |
msgid "Date Meta"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: widgets/premium-blog.php:399
|
1957 |
msgid "Categories Meta"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: widgets/premium-blog.php:401
|
1961 |
msgid "Display or hide categories meta"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: widgets/premium-blog.php:408
|
1965 |
msgid "Comments Meta"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: widgets/premium-blog.php:409
|
1969 |
msgid "Display or hide comments meta"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: widgets/premium-blog.php:417
|
1973 |
msgid "Tags Meta"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: widgets/premium-blog.php:419
|
1977 |
msgid "Display or hide post tags"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: widgets/premium-blog.php:426 widgets/premium-blog.php:845
|
1981 |
msgid "Post Format Icon"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: widgets/premium-blog.php:428
|
1985 |
+
msgid "Please note that post format icon is hidden for 3 and 4 columns"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: widgets/premium-blog.php:437 widgets/premium-image-scroll.php:188
|
1989 |
msgid "Advanced Settings"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: widgets/premium-blog.php:443
|
1993 |
msgid "Posts Per Page"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: widgets/premium-blog.php:444
|
1997 |
msgid "Choose how many posts do you want to be displayed per page"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: widgets/premium-blog.php:453
|
2001 |
msgid "Total Number of Posts"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: widgets/premium-blog.php:465
|
2005 |
msgid "Offset Count"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: widgets/premium-blog.php:466
|
2009 |
msgid "The index of post to start with"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: widgets/premium-blog.php:475
|
2013 |
msgid "Filter By Category"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: widgets/premium-blog.php:477
|
2017 |
msgid "Get posts for specific category(s)"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: widgets/premium-blog.php:486 widgets/premium-grid.php:261
|
2021 |
msgid "Filter Tabs"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: widgets/premium-blog.php:496 widgets/premium-grid.php:280
|
2025 |
+
msgid "First Category Label"
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: widgets/premium-blog.php:537
|
2029 |
msgid "Filter By Tag"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: widgets/premium-blog.php:539
|
2033 |
msgid "Get posts for specific tag(s)"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: widgets/premium-blog.php:548
|
2037 |
msgid "Filter By Author"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: widgets/premium-blog.php:550
|
2041 |
msgid "Get posts for specific author(s)"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: widgets/premium-blog.php:559
|
2045 |
msgid "Posts to Exclude"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: widgets/premium-blog.php:561
|
2049 |
msgid "Add post(s) to exclude"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: widgets/premium-blog.php:570
|
2053 |
msgid "Order By"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: widgets/premium-blog.php:575 widgets/premium-videobox.php:88
|
2057 |
msgid "ID"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: widgets/premium-blog.php:576 widgets/premium-testimonials.php:54
|
2061 |
+
#: widgets/premium-testimonials.php:301
|
2062 |
msgid "Author"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: widgets/premium-blog.php:578 widgets/premium-person.php:180
|
2066 |
+
#: widgets/premium-person.php:508 widgets/premium-testimonials.php:90
|
2067 |
+
#: widgets/premium-testimonials.php:131
|
2068 |
msgid "Name"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: widgets/premium-blog.php:579
|
2072 |
msgid "Date"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: widgets/premium-blog.php:580
|
2076 |
msgid "Last Modified"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: widgets/premium-blog.php:581
|
2080 |
msgid "Random"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: widgets/premium-blog.php:582
|
2084 |
msgid "Number of Comments"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: widgets/premium-blog.php:590
|
2088 |
msgid "Order"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: widgets/premium-blog.php:594
|
2092 |
msgid "Descending"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: widgets/premium-blog.php:595
|
2096 |
msgid "Ascending"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: widgets/premium-blog.php:603
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2100 |
msgid "Links in New Tab"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: widgets/premium-blog.php:605
|
2104 |
msgid "Enable links to be opened in a new tab"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: widgets/premium-blog.php:623
|
2108 |
msgid "Enable Carousel"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: widgets/premium-blog.php:630 widgets/premium-carousel.php:256
|
2112 |
msgid "Fade"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: widgets/premium-blog.php:640
|
2116 |
msgid "Auto Play"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: widgets/premium-blog.php:650 widgets/premium-carousel.php:296
|
2120 |
msgid "Autoplay Speed"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: widgets/premium-blog.php:651 widgets/premium-carousel.php:297
|
2124 |
msgid ""
|
2125 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
2126 |
"in milliseconds (ms)"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: widgets/premium-blog.php:663 widgets/premium-carousel.php:718
|
2130 |
+
#: widgets/premium-vscroll.php:369
|
2131 |
msgid "Navigation Dots"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: widgets/premium-blog.php:673 widgets/premium-carousel.php:431
|
2135 |
msgid "Navigation Arrows"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: widgets/premium-blog.php:684
|
2139 |
msgid "Arrows Position"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: widgets/premium-blog.php:713
|
2143 |
+
msgid "Pagination"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: widgets/premium-blog.php:719
|
2147 |
+
msgid "Enable Pagination"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: widgets/premium-blog.php:721
|
2151 |
+
msgid "Pagination is the process of dividing the posts into discrete pages"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: widgets/premium-blog.php:727
|
2155 |
+
msgid "Next Page String"
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: widgets/premium-blog.php:729
|
2159 |
+
msgid "Next"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: widgets/premium-blog.php:738
|
2163 |
+
msgid "Previous Page String"
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: widgets/premium-blog.php:740
|
2167 |
+
msgid "Previous"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: widgets/premium-blog.php:786
|
2171 |
msgid "Plus Sign Color"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: widgets/premium-blog.php:803 widgets/premium-image-button.php:585
|
2175 |
+
#: widgets/premium-image-button.php:602 widgets/premium-image-button.php:627
|
2176 |
+
#: widgets/premium-image-scroll.php:306
|
2177 |
msgid "Overlay Color"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: widgets/premium-blog.php:817 widgets/premium-contactform.php:564
|
2181 |
msgid "Border Color"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: widgets/premium-blog.php:855 widgets/premium-blog.php:1422
|
2185 |
+
#: widgets/premium-button.php:427 widgets/premium-carousel.php:561
|
2186 |
+
#: widgets/premium-countdown.php:570 widgets/premium-counter.php:237
|
2187 |
+
#: widgets/premium-counter.php:259 widgets/premium-grid.php:1303
|
2188 |
+
#: widgets/premium-image-button.php:331 widgets/premium-modalbox.php:829
|
2189 |
+
#: widgets/premium-pricing-table.php:424 widgets/premium-pricing-table.php:443
|
2190 |
+
#: widgets/premium-pricing-table.php:566 widgets/premium-pricing-table.php:1183
|
2191 |
+
#: widgets/premium-progressbar.php:531 widgets/premium-progressbar.php:572
|
2192 |
+
#: widgets/premium-testimonials.php:241 widgets/premium-testimonials.php:463
|
2193 |
+
#: widgets/premium-videobox.php:504
|
2194 |
+
msgid "Size"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: widgets/premium-blog.php:857
|
2198 |
+
msgid "Choose icon size in (PX, EM)"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: widgets/premium-blog.php:1010
|
2202 |
+
msgid "Meta"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: widgets/premium-blog.php:1055
|
2206 |
+
msgid "Tags"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: widgets/premium-blog.php:1100
|
2210 |
+
msgid "Content Box"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: widgets/premium-blog.php:1115 widgets/premium-button.php:513
|
2214 |
+
#: widgets/premium-button.php:635 widgets/premium-contactform.php:484
|
2215 |
+
#: widgets/premium-contactform.php:542 widgets/premium-dual-header.php:250
|
2216 |
+
#: widgets/premium-dual-header.php:447 widgets/premium-grid.php:1522
|
2217 |
+
#: widgets/premium-grid.php:1573 widgets/premium-grid.php:1620
|
2218 |
+
#: widgets/premium-grid.php:1726 widgets/premium-image-button.php:417
|
2219 |
+
#: widgets/premium-image-button.php:536 widgets/premium-pricing-table.php:1603
|
2220 |
+
#: widgets/premium-videobox.php:604 widgets/premium-vscroll.php:623
|
2221 |
+
#: widgets/premium-vscroll.php:682
|
2222 |
msgid "Text Color"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: widgets/premium-blog.php:1139 widgets/premium-modalbox.php:1175
|
2226 |
msgid "Content Background Color"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: widgets/premium-blog.php:1158
|
2230 |
+
msgid "Spacing Between Posts"
|
2231 |
+
msgstr ""
|
2232 |
+
|
2233 |
+
#: widgets/premium-blog.php:1169
|
2234 |
msgid "Content Margin"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: widgets/premium-blog.php:1180
|
2238 |
msgid "Content Padding"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: widgets/premium-blog.php:1193
|
2242 |
msgid "Pagination Style"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: widgets/premium-blog.php:1250 widgets/premium-button.php:629
|
2246 |
+
#: widgets/premium-carousel.php:660 widgets/premium-contactform.php:537
|
2247 |
+
#: widgets/premium-grid.php:1408 widgets/premium-grid.php:1567
|
2248 |
+
#: widgets/premium-grid.php:1823 widgets/premium-image-button.php:530
|
2249 |
+
#: widgets/premium-image-scroll.php:220 widgets/premium-image-scroll.php:354
|
2250 |
+
#: widgets/premium-image-scroll.php:458 widgets/premium-modalbox.php:702
|
2251 |
+
#: widgets/premium-modalbox.php:892 widgets/premium-modalbox.php:1055
|
2252 |
+
#: widgets/premium-pricing-table.php:1509
|
2253 |
+
#: widgets/premium-pricing-table.php:1800
|
2254 |
+
msgid "Hover"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: widgets/premium-blog.php:1287 widgets/premium-grid.php:1614
|
2258 |
+
#: widgets/premium-vscroll.php:676
|
2259 |
+
msgid "Active"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: widgets/premium-blog.php:1332 widgets/premium-blog.php:1609
|
2263 |
+
#: widgets/premium-button.php:607 widgets/premium-button.php:764
|
2264 |
+
#: widgets/premium-contactform.php:296 widgets/premium-countdown.php:601
|
2265 |
+
#: widgets/premium-dual-header.php:379 widgets/premium-dual-header.php:576
|
2266 |
+
#: widgets/premium-grid.php:1027 widgets/premium-grid.php:1115
|
2267 |
+
#: widgets/premium-grid.php:1252 widgets/premium-grid.php:1386
|
2268 |
+
#: widgets/premium-grid.php:1470 widgets/premium-grid.php:1675
|
2269 |
+
#: widgets/premium-grid.php:1799 widgets/premium-grid.php:1887
|
2270 |
+
#: widgets/premium-image-button.php:508 widgets/premium-image-button.php:709
|
2271 |
+
#: widgets/premium-maps.php:424 widgets/premium-maps.php:507
|
2272 |
+
#: widgets/premium-maps.php:598 widgets/premium-modalbox.php:1222
|
2273 |
+
#: widgets/premium-person.php:731 widgets/premium-pricing-table.php:672
|
2274 |
+
#: widgets/premium-pricing-table.php:759 widgets/premium-pricing-table.php:843
|
2275 |
+
#: widgets/premium-pricing-table.php:913 widgets/premium-pricing-table.php:960
|
2276 |
+
#: widgets/premium-pricing-table.php:1005
|
2277 |
+
#: widgets/premium-pricing-table.php:1057
|
2278 |
+
#: widgets/premium-pricing-table.php:1087
|
2279 |
+
#: widgets/premium-pricing-table.php:1255
|
2280 |
+
#: widgets/premium-pricing-table.php:1346
|
2281 |
+
#: widgets/premium-pricing-table.php:1479
|
2282 |
+
#: widgets/premium-pricing-table.php:1557
|
2283 |
+
#: widgets/premium-pricing-table.php:1770
|
2284 |
+
#: widgets/premium-pricing-table.php:1848 widgets/premium-progressbar.php:322
|
2285 |
+
#: widgets/premium-progressbar.php:380 widgets/premium-progressbar.php:425
|
2286 |
+
#: widgets/premium-testimonials.php:421 widgets/premium-title.php:457
|
2287 |
+
#: widgets/premium-title.php:552 widgets/premium-vscroll.php:471
|
2288 |
+
#: widgets/premium-vscroll.php:755
|
2289 |
msgid "Margin"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: widgets/premium-blog.php:1356
|
2293 |
msgid "Carousel Dots"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: widgets/premium-blog.php:1381 widgets/premium-blog.php:1531
|
2297 |
+
#: widgets/premium-carousel.php:771
|
2298 |
msgid "Active Color"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: widgets/premium-blog.php:1397
|
2302 |
msgid "Carousel Arrows"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: widgets/premium-blog.php:1471
|
2306 |
msgid "Read More Text"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: widgets/premium-blog.php:1508 widgets/premium-grid.php:1496
|
2310 |
msgid "Filter"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: widgets/premium-blog.php:1568
|
2314 |
msgid "Background Active Color"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: widgets/premium-button.php:71 widgets/premium-image-button.php:66
|
2318 |
msgid "Click Me"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: widgets/premium-button.php:127
|
2322 |
msgid "Slide"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: widgets/premium-button.php:128
|
2326 |
msgid "Shutter"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: widgets/premium-button.php:129
|
2330 |
msgid "Icon Fade"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: widgets/premium-button.php:130 widgets/premium-image-button.php:124
|
2334 |
msgid "Icon Slide"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: widgets/premium-button.php:131
|
2338 |
msgid "In & Out"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: widgets/premium-button.php:139 widgets/premium-button.php:179
|
2342 |
+
#: widgets/premium-image-button.php:133 widgets/premium-image-button.php:151
|
2343 |
+
#: widgets/premium-image-button.php:169
|
2344 |
msgid "Slide Direction"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: widgets/premium-button.php:143 widgets/premium-image-button.php:137
|
2348 |
+
#: widgets/premium-image-button.php:174
|
2349 |
msgid "Top to Bottom"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: widgets/premium-button.php:144 widgets/premium-image-button.php:138
|
2353 |
+
#: widgets/premium-image-button.php:173
|
2354 |
msgid "Bottom to Top"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: widgets/premium-button.php:145 widgets/premium-image-button.php:139
|
2358 |
+
#: widgets/premium-image-button.php:176
|
2359 |
msgid "Right to Left"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: widgets/premium-button.php:146 widgets/premium-image-button.php:140
|
2363 |
+
#: widgets/premium-image-button.php:175
|
2364 |
msgid "Left to Right"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: widgets/premium-button.php:157
|
2368 |
msgid "Shutter Direction"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: widgets/premium-button.php:161
|
2372 |
msgid "Shutter in Horizontal"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: widgets/premium-button.php:162
|
2376 |
msgid "Shutter in Vertical"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: widgets/premium-button.php:163
|
2380 |
msgid "Shutter out Horizontal"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: widgets/premium-button.php:164
|
2384 |
msgid "Shutter out Vertical"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: widgets/premium-button.php:165
|
2388 |
msgid "Scaled Shutter Vertical"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: widgets/premium-button.php:166
|
2392 |
msgid "Scaled Shutter Horizontal"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: widgets/premium-button.php:167
|
2396 |
msgid "Tilted Left"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: widgets/premium-button.php:168
|
2400 |
msgid "Tilted Right"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: widgets/premium-button.php:197 widgets/premium-countdown.php:69
|
2404 |
+
#: widgets/premium-counter.php:281 widgets/premium-person.php:62
|
2405 |
+
#: widgets/premium-title.php:71
|
2406 |
msgid "Style"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: widgets/premium-button.php:201
|
2410 |
msgid "Radial In"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: widgets/premium-button.php:202
|
2414 |
msgid "Radial Out"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: widgets/premium-button.php:203
|
2418 |
msgid "Rectangle In"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: widgets/premium-button.php:204
|
2422 |
msgid "Rectangle Out"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: widgets/premium-button.php:215 widgets/premium-button.php:226
|
2426 |
+
#: widgets/premium-button.php:243 widgets/premium-carousel.php:728
|
2427 |
+
#: widgets/premium-counter.php:213 widgets/premium-image-button.php:203
|
2428 |
+
#: widgets/premium-image-button.php:214 widgets/premium-image-button.php:231
|
2429 |
+
#: widgets/premium-image-scroll.php:244 widgets/premium-modalbox.php:88
|
2430 |
+
#: widgets/premium-modalbox.php:279 widgets/premium-modalbox.php:290
|
2431 |
+
#: widgets/premium-pricing-table.php:60 widgets/premium-pricing-table.php:214
|
2432 |
+
#: widgets/premium-pricing-table.php:483 widgets/premium-pricing-table.php:541
|
2433 |
+
#: widgets/premium-pricing-table.php:1161 widgets/premium-title.php:89
|
2434 |
+
#: widgets/premium-title.php:482
|
2435 |
msgid "Icon"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: widgets/premium-button.php:220 widgets/premium-image-button.php:208
|
2439 |
+
#: widgets/premium-modalbox.php:284
|
2440 |
msgid "Enable or disable button icon"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: widgets/premium-button.php:259 widgets/premium-counter.php:185
|
2444 |
+
#: widgets/premium-image-button.php:247 widgets/premium-modalbox.php:307
|
2445 |
msgid "Icon Position"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: widgets/premium-button.php:263 widgets/premium-image-button.php:251
|
2449 |
+
#: widgets/premium-modalbox.php:311
|
2450 |
msgid "Before"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: widgets/premium-button.php:264 widgets/premium-image-button.php:252
|
2454 |
+
#: widgets/premium-modalbox.php:312
|
2455 |
msgid "After"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: widgets/premium-button.php:276 widgets/premium-button.php:291
|
2459 |
+
#: widgets/premium-image-button.php:264 widgets/premium-image-button.php:279
|
2460 |
+
#: widgets/premium-image-scroll.php:251 widgets/premium-modalbox.php:119
|
2461 |
+
#: widgets/premium-modalbox.php:324 widgets/premium-title.php:508
|
2462 |
msgid "Icon Size"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: widgets/premium-button.php:306 widgets/premium-button.php:325
|
2466 |
+
#: widgets/premium-button.php:346 widgets/premium-button.php:365
|
2467 |
+
#: widgets/premium-button.php:385 widgets/premium-button.php:406
|
2468 |
+
#: widgets/premium-image-button.php:293 widgets/premium-image-button.php:312
|
2469 |
+
#: widgets/premium-modalbox.php:340 widgets/premium-modalbox.php:359
|
2470 |
+
#: widgets/premium-modalbox.php:380 widgets/premium-modalbox.php:399
|
2471 |
msgid "Icon Spacing"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: widgets/premium-button.php:431 widgets/premium-image-button.php:335
|
2475 |
+
#: widgets/premium-modalbox.php:422
|
2476 |
msgid "Small"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: widgets/premium-button.php:432 widgets/premium-image-button.php:336
|
2480 |
+
#: widgets/premium-modalbox.php:423
|
2481 |
msgid "Medium"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: widgets/premium-button.php:433 widgets/premium-image-button.php:337
|
2485 |
+
#: widgets/premium-modalbox.php:424
|
2486 |
msgid "Large"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: widgets/premium-button.php:434 widgets/premium-countdown.php:73
|
2490 |
+
#: widgets/premium-dual-header.php:111 widgets/premium-image-button.php:338
|
2491 |
+
#: widgets/premium-modalbox.php:425
|
2492 |
msgid "Block"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: widgets/premium-button.php:468 widgets/premium-image-button.php:372
|
2496 |
msgid "onclick Event"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: widgets/premium-button.php:476 widgets/premium-image-button.php:380
|
2500 |
msgid "Example: myFunction();"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: widgets/premium-button.php:526 widgets/premium-button.php:651
|
2504 |
+
#: widgets/premium-button.php:668 widgets/premium-image-button.php:430
|
2505 |
+
#: widgets/premium-image-button.php:552 widgets/premium-image-button.php:569
|
2506 |
+
#: widgets/premium-image-scroll.php:293 widgets/premium-modalbox.php:552
|
2507 |
+
#: widgets/premium-title.php:493
|
2508 |
msgid "Icon Color"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: widgets/premium-button.php:577 widgets/premium-button.php:719
|
2512 |
+
#: widgets/premium-button.php:732 widgets/premium-image-button.php:477
|
2513 |
+
#: widgets/premium-image-button.php:664 widgets/premium-image-button.php:677
|
2514 |
+
#: widgets/premium-title.php:577
|
2515 |
msgid "Icon Shadow"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: widgets/premium-button.php:590 widgets/premium-button.php:744
|
2519 |
+
#: widgets/premium-image-button.php:491 widgets/premium-image-button.php:689
|
2520 |
msgid "Text Shadow"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: widgets/premium-button.php:599 widgets/premium-button.php:756
|
2524 |
+
#: widgets/premium-image-button.php:500 widgets/premium-image-button.php:701
|
2525 |
msgid "Button Shadow"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: widgets/premium-carousel.php:71 widgets/premium-vscroll.php:82
|
2529 |
msgid "Content Type"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: widgets/premium-carousel.php:72
|
2533 |
msgid "How templates are selected"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: widgets/premium-carousel.php:75
|
2537 |
msgid "Select Field"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: widgets/premium-carousel.php:76
|
2541 |
msgid "Repeater"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: widgets/premium-carousel.php:85
|
2545 |
msgid ""
|
2546 |
"Slider content is a template which you can choose from Elementor library. "
|
2547 |
"Each template will be a slider content"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: widgets/premium-carousel.php:120 widgets/premium-grid.php:447
|
2551 |
+
#: widgets/premium-progressbar.php:207
|
2552 |
msgid "Type"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: widgets/premium-carousel.php:121
|
2556 |
msgid "Set a navigation type"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: widgets/premium-carousel.php:124 widgets/premium-image-button.php:191
|
2560 |
+
#: widgets/premium-image-scroll.php:198
|
2561 |
msgid "Horizontal"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: widgets/premium-carousel.php:125 widgets/premium-image-button.php:192
|
2565 |
+
#: widgets/premium-image-scroll.php:199
|
2566 |
msgid "Vertical"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: widgets/premium-carousel.php:134
|
2570 |
msgid "Enable or disable navigation dots"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: widgets/premium-carousel.php:143 widgets/premium-grid.php:1282
|
2574 |
+
#: widgets/premium-pricing-table.php:462 widgets/premium-vscroll.php:156
|
2575 |
msgid "Position"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: widgets/premium-carousel.php:147
|
2579 |
msgid "Below Slides"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: widgets/premium-carousel.php:148
|
2583 |
msgid "On Slides"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: widgets/premium-carousel.php:158
|
2587 |
msgid "Horizontal Offset"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: widgets/premium-carousel.php:173
|
2591 |
msgid "Vertical Offset"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: widgets/premium-carousel.php:192
|
2595 |
msgid "Arrows"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: widgets/premium-carousel.php:193
|
2599 |
msgid "Enable or disable navigation arrows"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: widgets/premium-carousel.php:202
|
2603 |
msgid "Appearance"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: widgets/premium-carousel.php:207
|
2607 |
msgid "All visible"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: widgets/premium-carousel.php:208
|
2611 |
msgid "One at a time"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: widgets/premium-carousel.php:215
|
2615 |
msgid "Desktop Slides"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: widgets/premium-carousel.php:223
|
2619 |
msgid "Tabs Slides"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: widgets/premium-carousel.php:231
|
2623 |
msgid "Mobile Slides"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: widgets/premium-carousel.php:241
|
2627 |
msgid "Slides' Settings"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: widgets/premium-carousel.php:247
|
2631 |
msgid "Infinite Loop"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: widgets/premium-carousel.php:249
|
2635 |
msgid "Restart the slider automatically as it passes the last slide"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: widgets/premium-carousel.php:258
|
2639 |
msgid "Enable fade transition between slides"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: widgets/premium-carousel.php:267
|
2643 |
msgid "Zoom Effect"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: widgets/premium-carousel.php:278
|
2647 |
msgid "Transition Speed"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: widgets/premium-carousel.php:279
|
2651 |
msgid ""
|
2652 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: widgets/premium-carousel.php:287
|
2656 |
msgid "Autoplay Slides"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: widgets/premium-carousel.php:288
|
2660 |
msgid "Slide will start automatically"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: widgets/premium-carousel.php:309 widgets/premium-counter.php:202
|
2664 |
msgid "Animations"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: widgets/premium-carousel.php:319
|
2668 |
msgid ""
|
2669 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2670 |
"this class for your customizations."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: widgets/premium-carousel.php:327 widgets/premium-fancytext.php:149
|
2674 |
msgid "Additional Settings"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: widgets/premium-carousel.php:333
|
2678 |
msgid "Draggable Effect"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: widgets/premium-carousel.php:334
|
2682 |
msgid "Allow the slides to be dragged by mouse click"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: widgets/premium-carousel.php:342
|
2686 |
msgid "Touch Move"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: widgets/premium-carousel.php:343
|
2690 |
msgid "Enable slide moving with touch"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: widgets/premium-carousel.php:351 widgets/premium-grid.php:810
|
2694 |
msgid "RTL Mode"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: widgets/premium-carousel.php:352
|
2698 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: widgets/premium-carousel.php:362
|
2702 |
msgid "Adaptive Height"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: widgets/premium-carousel.php:363
|
2706 |
msgid ""
|
2707 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2708 |
"space gaps"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: widgets/premium-carousel.php:370 widgets/premium-fancytext.php:299
|
2712 |
msgid "Pause on Hover"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: widgets/premium-carousel.php:371
|
2716 |
msgid "Pause the slider when mouse hover"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: widgets/premium-carousel.php:378
|
2720 |
msgid "Center Mode"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: widgets/premium-carousel.php:379
|
2724 |
msgid ""
|
2725 |
"Center mode enables a centered view with partial next/previous slides. "
|
2726 |
"Animations and all visible scroll type doesn't work with this mode"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: widgets/premium-carousel.php:386
|
2730 |
msgid "Slides' Spacing"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: widgets/premium-carousel.php:387
|
2734 |
msgid "Set a spacing value in pixels (px)"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: widgets/premium-carousel.php:395
|
2738 |
msgid "Tablet Breakpoint"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: widgets/premium-carousel.php:396
|
2742 |
msgid ""
|
2743 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
2744 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: widgets/premium-carousel.php:404
|
2748 |
msgid "Mobile Breakpoint"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: widgets/premium-carousel.php:405
|
2752 |
msgid ""
|
2753 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
2754 |
"mobile layout will appear (Default: 768px)."
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: widgets/premium-carousel.php:415 widgets/premium-grid.php:969
|
2758 |
msgid "Helpful Documentations"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: widgets/premium-carousel.php:422
|
2762 |
#, php-format
|
2763 |
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: widgets/premium-carousel.php:441
|
2767 |
msgid "Right Icon"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: widgets/premium-carousel.php:471
|
2771 |
msgid "Bottom Icon"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: widgets/premium-carousel.php:501
|
2775 |
msgid "Top Icon"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: widgets/premium-carousel.php:531
|
2779 |
msgid "Left Icon"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: widgets/premium-carousel.php:583
|
2783 |
msgid "Position (PX)"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: widgets/premium-carousel.php:788
|
2787 |
msgid "Ripple Effect"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: widgets/premium-carousel.php:789
|
2791 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: widgets/premium-carousel.php:799
|
2795 |
msgid "Ripple Color"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: widgets/premium-contactform.php:57
|
2799 |
msgid "Contact Form"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: widgets/premium-contactform.php:65
|
2803 |
msgid "Select Your Contact Form"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: widgets/premium-contactform.php:77
|
2807 |
msgid "Fields"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: widgets/premium-contactform.php:82 widgets/premium-contactform.php:199
|
2811 |
+
#: widgets/premium-grid.php:399 widgets/premium-modalbox.php:975
|
2812 |
+
#: widgets/premium-modalbox.php:1133 widgets/premium-person.php:96
|
2813 |
msgid "Width"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: widgets/premium-contactform.php:89 widgets/premium-contactform.php:147
|
2817 |
msgid "Input Field"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: widgets/premium-contactform.php:115 widgets/premium-contactform.php:169
|
2821 |
msgid "Text Area"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: widgets/premium-contactform.php:246
|
2825 |
msgid "Form"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: widgets/premium-contactform.php:253
|
2829 |
msgid "Input Field Background"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: widgets/premium-contactform.php:308
|
2833 |
msgid "Focus Border Color"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: widgets/premium-contactform.php:319
|
2837 |
msgid "Focus Border Animation"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: widgets/premium-contactform.php:332
|
2841 |
msgid "Focus Line Color"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: widgets/premium-contactform.php:358 widgets/premium-progressbar.php:336
|
2845 |
msgid "Labels"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: widgets/premium-contactform.php:368
|
2849 |
msgid "Default Typography"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: widgets/premium-contactform.php:375
|
2853 |
msgid "Default Font Color"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: widgets/premium-contactform.php:400
|
2857 |
msgid "Input Typography"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: widgets/premium-contactform.php:408
|
2861 |
msgid "Input Text Color"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: widgets/premium-contactform.php:433
|
2865 |
msgid "Placeholder Color"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: widgets/premium-countdown.php:72 widgets/premium-dual-header.php:110
|
2869 |
msgid "Inline"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: widgets/premium-countdown.php:82
|
2873 |
msgid "Due Date"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: widgets/premium-countdown.php:88
|
2877 |
msgid ""
|
2878 |
"Date format is (yyyy/mm/dd). Time format is (hh:mm:ss). Example: 2020-01-01 "
|
2879 |
"09:30."
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: widgets/premium-countdown.php:95
|
2883 |
msgid "Time Zone"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: widgets/premium-countdown.php:98
|
2887 |
msgid "WordPress Default"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: widgets/premium-countdown.php:99
|
2891 |
msgid "User Local Time"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: widgets/premium-countdown.php:102
|
2895 |
msgid "This will set the current time of the option that you will choose."
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: widgets/premium-countdown.php:109
|
2899 |
msgid "Time Units"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: widgets/premium-countdown.php:111
|
2903 |
msgid "Select the time units that you want to display in countdown timer."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: widgets/premium-countdown.php:113
|
2907 |
msgid "Years"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: widgets/premium-countdown.php:114
|
2911 |
msgid "Month"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: widgets/premium-countdown.php:115
|
2915 |
msgid "Week"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: widgets/premium-countdown.php:116
|
2919 |
msgid "Day"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: widgets/premium-countdown.php:117
|
2923 |
msgid "Hours"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: widgets/premium-countdown.php:118
|
2927 |
msgid "Minutes"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: widgets/premium-countdown.php:119
|
2931 |
msgid "Second"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: widgets/premium-countdown.php:129
|
2935 |
+
msgid "Digits Separator"
|
2936 |
+
msgstr ""
|
2937 |
+
|
2938 |
+
#: widgets/premium-countdown.php:130
|
2939 |
+
msgid "Enable or disable digits separator"
|
2940 |
+
msgstr ""
|
2941 |
+
|
2942 |
+
#: widgets/premium-countdown.php:141
|
2943 |
+
msgid "Separator Text"
|
2944 |
+
msgstr ""
|
2945 |
+
|
2946 |
+
#: widgets/premium-countdown.php:183
|
2947 |
msgid "Expire"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: widgets/premium-countdown.php:190
|
2951 |
msgid "Expire Type"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: widgets/premium-countdown.php:193
|
2955 |
msgid "Choose whether if you want to set a message or a redirect link"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: widgets/premium-countdown.php:195
|
2959 |
msgid "Message"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: widgets/premium-countdown.php:196
|
2963 |
msgid "Redirection Link"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: widgets/premium-countdown.php:205
|
2967 |
msgid "On expiry Text"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: widgets/premium-countdown.php:208
|
2971 |
msgid "Countdown is finished!"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: widgets/premium-countdown.php:218
|
2975 |
msgid "Redirect To"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: widgets/premium-countdown.php:239
|
2979 |
msgid "Strings Translation"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: widgets/premium-countdown.php:246
|
2983 |
msgid "Day (Singular)"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: widgets/premium-countdown.php:256
|
2987 |
msgid "Day (Plural)"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: widgets/premium-countdown.php:266
|
2991 |
msgid "Week (Singular)"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: widgets/premium-countdown.php:276
|
2995 |
msgid "Weeks (Plural)"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: widgets/premium-countdown.php:287
|
2999 |
msgid "Month (Singular)"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: widgets/premium-countdown.php:298
|
3003 |
msgid "Months (Plural)"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: widgets/premium-countdown.php:309
|
3007 |
msgid "Year (Singular)"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: widgets/premium-countdown.php:320
|
3011 |
msgid "Years (Plural)"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: widgets/premium-countdown.php:331
|
3015 |
msgid "Hour (Singular)"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: widgets/premium-countdown.php:342
|
3019 |
msgid "Hours (Plural)"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: widgets/premium-countdown.php:353
|
3023 |
msgid "Minute (Singular)"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: widgets/premium-countdown.php:363
|
3027 |
msgid "Minutes (Plural)"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: widgets/premium-countdown.php:373
|
3031 |
msgid "Second (Singular)"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: widgets/premium-countdown.php:383
|
3035 |
msgid "Seconds (Plural)"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: widgets/premium-countdown.php:395
|
3039 |
msgid "Digits"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: widgets/premium-countdown.php:452
|
3043 |
msgid "Background Size"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: widgets/premium-countdown.php:491
|
3047 |
msgid "Units"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: widgets/premium-countdown.php:534
|
3051 |
msgid "Spacing in Between"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: widgets/premium-countdown.php:558
|
3055 |
+
msgid "Separator"
|
3056 |
+
msgstr ""
|
3057 |
+
|
3058 |
+
#: widgets/premium-counter.php:69
|
3059 |
msgid "Enter title for stats counter block"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: widgets/premium-counter.php:75
|
3063 |
msgid "Starting Number"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: widgets/premium-counter.php:83
|
3067 |
msgid "Ending Number"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: widgets/premium-counter.php:91
|
3071 |
msgid "Thousands Separator"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: widgets/premium-counter.php:94
|
3075 |
msgid "Separator converts 125000 into 125,000"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: widgets/premium-counter.php:101
|
3079 |
msgid "Digits After Decimal Point"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: widgets/premium-counter.php:109
|
3083 |
msgid "Value Prefix"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: widgets/premium-counter.php:112
|
3087 |
msgid "Enter prefix for counter value"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: widgets/premium-counter.php:118
|
3091 |
msgid "Value suffix"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: widgets/premium-counter.php:121
|
3095 |
msgid "Enter suffix for counter value"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: widgets/premium-counter.php:127
|
3099 |
msgid "Rolling Time"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: widgets/premium-counter.php:129
|
3103 |
msgid "How long should it take to complete the digit?"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: widgets/premium-counter.php:144
|
3107 |
msgid "Icon Type"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: widgets/premium-counter.php:146
|
3111 |
msgid "Use a font awesome icon or upload a custom image"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: widgets/premium-counter.php:148 widgets/premium-modalbox.php:93
|
3115 |
+
#: widgets/premium-modalbox.php:106
|
3116 |
msgid "Font Awesome"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: widgets/premium-counter.php:149 widgets/premium-modalbox.php:94
|
3120 |
+
#: widgets/premium-modalbox.php:135
|
3121 |
msgid "Custom Image"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: widgets/premium-counter.php:157 widgets/premium-pricing-table.php:69
|
3125 |
msgid "Select an Icon"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: widgets/premium-counter.php:187
|
3129 |
msgid "Choose a position for your icon"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: widgets/premium-counter.php:283
|
3133 |
msgid ""
|
3134 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
3135 |
"create your own with various options"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: widgets/premium-counter.php:285
|
3139 |
msgid "Simple"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: widgets/premium-counter.php:286
|
3143 |
msgid "Circle Background"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: widgets/premium-counter.php:287
|
3147 |
msgid "Square Background"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: widgets/premium-counter.php:288
|
3151 |
msgid "Design Your Own"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: widgets/premium-counter.php:313
|
3155 |
msgid "Background size"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: widgets/premium-counter.php:335
|
3159 |
msgid "Vertical Alignment"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: widgets/premium-counter.php:430 widgets/premium-progressbar.php:197
|
3163 |
msgid "Value"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: widgets/premium-counter.php:463 widgets/premium-fancytext.php:448
|
3167 |
msgid "Prefix & Suffix"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: widgets/premium-counter.php:470
|
3171 |
msgid "Prefix Color"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: widgets/premium-counter.php:494
|
3175 |
msgid "Suffix Color"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: widgets/premium-dual-header.php:65 widgets/premium-dual-header.php:210
|
3179 |
msgid "First Heading"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: widgets/premium-dual-header.php:68
|
3183 |
msgid "Premium"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: widgets/premium-dual-header.php:76 widgets/premium-dual-header.php:407
|
3187 |
msgid "Second Heading"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: widgets/premium-dual-header.php:79
|
3191 |
msgid "Addons"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: widgets/premium-dual-header.php:107
|
3195 |
msgid "Display"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: widgets/premium-dual-header.php:125
|
3199 |
msgid "Enable or disable link"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: widgets/premium-dual-header.php:227 widgets/premium-dual-header.php:424
|
3203 |
msgid "Animated Background"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: widgets/premium-dual-header.php:235 widgets/premium-dual-header.php:432
|
3207 |
msgid "Background Style"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: widgets/premium-dual-header.php:238 widgets/premium-dual-header.php:435
|
3211 |
msgid ""
|
3212 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
3213 |
"style so the background will be clipped on the text."
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: widgets/premium-dual-header.php:241 widgets/premium-dual-header.php:438
|
3217 |
+
msgid "Clipped"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: widgets/premium-dual-header.php:280 widgets/premium-dual-header.php:477
|
|
|
|
|
|
|
|
|
3221 |
msgid "Stroke"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: widgets/premium-dual-header.php:290 widgets/premium-dual-header.php:487
|
3225 |
msgid "Stroke Text Color"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: widgets/premium-dual-header.php:304 widgets/premium-dual-header.php:501
|
3229 |
msgid "Stroke Fill Color"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: widgets/premium-dual-header.php:318 widgets/premium-dual-header.php:515
|
3233 |
msgid "Stroke Fill Width"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: widgets/premium-fancytext.php:66
|
3237 |
msgid "Prefix"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: widgets/premium-fancytext.php:69
|
3241 |
msgid "This is"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: widgets/premium-fancytext.php:70
|
3245 |
msgid "Text before Fancy text"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: widgets/premium-fancytext.php:79
|
3249 |
msgid "Fancy String"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: widgets/premium-fancytext.php:93
|
3253 |
msgid "Designer"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: widgets/premium-fancytext.php:96
|
3257 |
msgid "Developer"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: widgets/premium-fancytext.php:99
|
3261 |
msgid "Awesome"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: widgets/premium-fancytext.php:110
|
3265 |
msgid "Suffix"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: widgets/premium-fancytext.php:114
|
3269 |
msgid "Text after Fancy text"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: widgets/premium-fancytext.php:159
|
3273 |
msgid "Typing"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: widgets/premium-fancytext.php:160
|
3277 |
msgid "Slide Up"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: widgets/premium-fancytext.php:170
|
3281 |
msgid "Type Speed"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: widgets/premium-fancytext.php:173
|
3285 |
msgid "Set typing effect speed in milliseconds."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: widgets/premium-fancytext.php:183
|
3289 |
msgid "Back Speed"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: widgets/premium-fancytext.php:186
|
3293 |
msgid "Set a speed for backspace effect in milliseconds."
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: widgets/premium-fancytext.php:196
|
3297 |
msgid "Start Delay"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: widgets/premium-fancytext.php:199
|
3301 |
msgid ""
|
3302 |
"If you set it on 5000 milliseconds, the first word/string will appear after "
|
3303 |
"5 seconds."
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: widgets/premium-fancytext.php:209
|
3307 |
msgid "Back Delay"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: widgets/premium-fancytext.php:212
|
3311 |
msgid ""
|
3312 |
"If you set it on 5000 milliseconds, the word/string will remain visible for "
|
3313 |
"5 seconds before backspace effect."
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: widgets/premium-fancytext.php:222 widgets/premium-videobox.php:203
|
3317 |
msgid "Loop"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: widgets/premium-fancytext.php:234
|
3321 |
msgid "Show Cursor"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: widgets/premium-fancytext.php:246
|
3325 |
msgid "Cursor Mark"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: widgets/premium-fancytext.php:260
|
3329 |
msgid "Animation Speed"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: widgets/premium-fancytext.php:263
|
3333 |
msgid "Set a duration value in milliseconds for slide up effect."
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: widgets/premium-fancytext.php:273
|
3337 |
msgid "Pause Time (Milliseconds)"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: widgets/premium-fancytext.php:276
|
3341 |
msgid ""
|
3342 |
"How long should the word/string stay visible? Set a value in milliseconds."
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: widgets/premium-fancytext.php:286
|
3346 |
msgid "Show Items"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: widgets/premium-fancytext.php:289
|
3350 |
msgid "How many items should be visible at a time?"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: widgets/premium-fancytext.php:301
|
3354 |
msgid "If you enabled this option, the slide will be paused when mouseover."
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: widgets/premium-fancytext.php:311
|
3358 |
msgid "Fancy Text Alignment"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: widgets/premium-fancytext.php:398
|
3362 |
msgid "Cursor Text"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: widgets/premium-grid.php:86
|
3366 |
msgid "Grid Layout"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: widgets/premium-grid.php:91
|
3370 |
msgid "Metro"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
#: widgets/premium-grid.php:99
|
3374 |
msgid "Minimum Height"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: widgets/premium-grid.php:125
|
3378 |
msgid "Images Fit"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: widgets/premium-grid.php:154
|
3382 |
msgid "Columns"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: widgets/premium-grid.php:165
|
3386 |
msgid "5 Columns"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: widgets/premium-grid.php:166
|
3390 |
msgid "6 Columns"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: widgets/premium-grid.php:167
|
3394 |
msgid "12 Columns"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: widgets/premium-grid.php:181 widgets/premium-grid.php:1699
|
3398 |
msgid "Load More Button"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: widgets/premium-grid.php:182
|
3402 |
msgid "Requires number of images larger than 6"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: widgets/premium-grid.php:189 widgets/premium-modalbox.php:266
|
3406 |
msgid "Button Text"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: widgets/premium-grid.php:191
|
3410 |
msgid "Load More"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: widgets/premium-grid.php:201
|
3414 |
msgid "Minimum Number of Images"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: widgets/premium-grid.php:203
|
3418 |
msgid "Set the minimum number of images before showing load more button"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: widgets/premium-grid.php:213
|
3422 |
msgid "Images to Show"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: widgets/premium-grid.php:215
|
3426 |
msgid "Set the minimum number of images to show with each click"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: widgets/premium-grid.php:225
|
3430 |
msgid "Button Alignment"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: widgets/premium-grid.php:255 widgets/premium-grid.php:315
|
3434 |
msgid "Categories"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: widgets/premium-grid.php:271
|
3438 |
msgid "First Category"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: widgets/premium-grid.php:294 widgets/premium-grid.php:557
|
|
|
|
|
|
|
|
|
3442 |
msgid "Category"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
+
#: widgets/premium-grid.php:302
|
3446 |
msgid "Rotation Degrees"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: widgets/premium-grid.php:304
|
3450 |
msgid "Set rotation value in degrees"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: widgets/premium-grid.php:333
|
3454 |
msgid "Active Category Index"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
+
#: widgets/premium-grid.php:335
|
3458 |
msgid "Put the index of the default active category, default is 1"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
+
#: widgets/premium-grid.php:344
|
3462 |
msgid "Shuffle Images on Filter Click"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: widgets/premium-grid.php:382
|
3466 |
msgid "Images/Videos"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: widgets/premium-grid.php:400 widgets/premium-grid.php:420
|
3470 |
msgid "Works only when layout set to 'Metro'"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: widgets/premium-grid.php:439
|
3474 |
msgid "Video"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: widgets/premium-grid.php:450
|
3478 |
msgid "YouTube"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: widgets/premium-grid.php:451 widgets/premium-videobox.php:76
|
3482 |
msgid "Vimeo"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: widgets/premium-grid.php:452 widgets/premium-videobox.php:77
|
3486 |
msgid "Self Hosted"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: widgets/premium-grid.php:464
|
3490 |
msgid "Video URL"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: widgets/premium-grid.php:483
|
3494 |
msgid "Select Video"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: widgets/premium-grid.php:502 widgets/premium-videobox.php:162
|
3498 |
+
msgid "Remote Video URL"
|
3499 |
+
msgstr ""
|
3500 |
+
|
3501 |
+
#: widgets/premium-grid.php:517 widgets/premium-maps.php:248
|
3502 |
msgid "Controls"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: widgets/premium-grid.php:530 widgets/premium-videobox.php:185
|
3506 |
msgid "Mute"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: widgets/premium-grid.php:559
|
3510 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: widgets/premium-grid.php:610
|
3514 |
msgid "Whole Image Link"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
+
#: widgets/premium-grid.php:620
|
3518 |
msgid "Whole Image Lightbox"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: widgets/premium-grid.php:630
|
3522 |
msgid "Images"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: widgets/premium-grid.php:649
|
3526 |
msgid "Shuffle Images on Page Load"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: widgets/premium-grid.php:656
|
3530 |
+
msgid "Youtube Videos Thumbnail Size"
|
3531 |
+
msgstr ""
|
3532 |
+
|
3533 |
+
#: widgets/premium-grid.php:659 widgets/premium-videobox.php:274
|
3534 |
+
msgid "Maximum Resolution"
|
3535 |
+
msgstr ""
|
3536 |
+
|
3537 |
+
#: widgets/premium-grid.php:660 widgets/premium-videobox.php:275
|
3538 |
+
msgid "High Quality"
|
3539 |
+
msgstr ""
|
3540 |
+
|
3541 |
+
#: widgets/premium-grid.php:661 widgets/premium-videobox.php:276
|
3542 |
+
msgid "Medium Quality"
|
3543 |
+
msgstr ""
|
3544 |
+
|
3545 |
+
#: widgets/premium-grid.php:662 widgets/premium-videobox.php:277
|
3546 |
+
msgid "Standard Quality"
|
3547 |
+
msgstr ""
|
3548 |
+
|
3549 |
+
#: widgets/premium-grid.php:679
|
3550 |
msgid "Image Gap"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: widgets/premium-grid.php:698
|
3554 |
msgid "Choose a layout style for the gallery"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: widgets/premium-grid.php:700 widgets/premium-person.php:66
|
3558 |
+
#: widgets/premium-title.php:75
|
3559 |
msgid "Style 1"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: widgets/premium-grid.php:701 widgets/premium-person.php:67
|
3563 |
+
#: widgets/premium-title.php:76
|
3564 |
msgid "Style 2"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: widgets/premium-grid.php:702 widgets/premium-title.php:77
|
3568 |
msgid "Style 3"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: widgets/premium-grid.php:703 widgets/premium-title.php:78
|
3572 |
+
msgid "Style 4"
|
3573 |
+
msgstr ""
|
3574 |
+
|
3575 |
+
#: widgets/premium-grid.php:713
|
3576 |
+
msgid "Style 4 works only with Even / Masonry Layout"
|
3577 |
+
msgstr ""
|
3578 |
+
|
3579 |
+
#: widgets/premium-grid.php:767
|
3580 |
+
msgid "Links Icon"
|
3581 |
+
msgstr ""
|
3582 |
+
|
3583 |
+
#: widgets/premium-grid.php:778
|
3584 |
+
msgid "Videos"
|
3585 |
+
msgstr ""
|
3586 |
+
|
3587 |
+
#: widgets/premium-grid.php:786
|
3588 |
+
msgid "Always Show Play Icon"
|
3589 |
+
msgstr ""
|
3590 |
+
|
3591 |
+
#: widgets/premium-grid.php:799
|
3592 |
+
msgid "Videos Play Icon"
|
3593 |
+
msgstr ""
|
3594 |
+
|
3595 |
+
#: widgets/premium-grid.php:811
|
3596 |
+
msgid ""
|
3597 |
+
"This option moves the origin of the grid to the right side. Useful for RTL "
|
3598 |
+
"direction sites"
|
3599 |
+
msgstr ""
|
3600 |
+
|
3601 |
+
#: widgets/premium-grid.php:819
|
3602 |
+
msgid "Content Alignment"
|
3603 |
+
msgstr ""
|
3604 |
+
|
3605 |
+
#: widgets/premium-grid.php:847 widgets/premium-grid.php:853
|
3606 |
msgid "Lightbox"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: widgets/premium-grid.php:862
|
3610 |
msgid "Lightbox Style"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: widgets/premium-grid.php:866
|
3614 |
msgid "PrettyPhoto"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: widgets/premium-grid.php:867
|
3618 |
msgid "Elementor"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: widgets/premium-grid.php:868
|
3622 |
msgid "Other Lightbox Plugin"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: widgets/premium-grid.php:878
|
3626 |
msgid "Please note Elementor lightbox style is always applied on videos."
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: widgets/premium-grid.php:886
|
3630 |
msgid "Lightbox Theme"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: widgets/premium-grid.php:890
|
3634 |
msgid "Light Rounded"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: widgets/premium-grid.php:891
|
3638 |
msgid "Dark Rounded"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: widgets/premium-grid.php:892
|
3642 |
msgid "Light Square"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: widgets/premium-grid.php:893
|
3646 |
msgid "Dark Square"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: widgets/premium-grid.php:894 widgets/premium-person.php:291
|
3650 |
msgid "Facebook"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: widgets/premium-grid.php:906
|
3654 |
msgid "Overlay Gallery Images"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: widgets/premium-grid.php:917
|
3658 |
+
msgid "Lightbox Icon"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: widgets/premium-grid.php:940
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3662 |
msgid ""
|
3663 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3664 |
"enable this option which will hide the description text."
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: widgets/premium-grid.php:975
|
3668 |
#, php-format
|
3669 |
msgid "%1$s Getting Started » %2$s"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: widgets/premium-grid.php:985
|
3673 |
msgid "General"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: widgets/premium-grid.php:1057
|
3677 |
+
msgid "Hover Overlay Color"
|
3678 |
+
msgstr ""
|
3679 |
+
|
3680 |
+
#: widgets/premium-grid.php:1107 widgets/premium-person.php:463
|
3681 |
msgid "Hover CSS Filters"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: widgets/premium-grid.php:1139
|
3685 |
+
msgid "Title / Description"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: widgets/premium-grid.php:1276
|
3689 |
+
msgid "Icons"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: widgets/premium-grid.php:1741
|
3693 |
msgid "Spinner Color"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: widgets/premium-grid.php:1829 widgets/premium-vscroll.php:637
|
3697 |
+
#: widgets/premium-vscroll.php:696
|
3698 |
msgid "Text Hover Color"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: widgets/premium-image-button.php:122
|
3702 |
msgid "Background Slide"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: widgets/premium-image-button.php:123
|
3706 |
msgid "Diagonal Slide"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: widgets/premium-image-button.php:125
|
3710 |
msgid "Overlap"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: widgets/premium-image-button.php:155
|
3714 |
msgid "Bottom Left to Top Right"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
+
#: widgets/premium-image-button.php:156
|
3718 |
msgid "Top Right to Bottom Left"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
+
#: widgets/premium-image-button.php:157
|
3722 |
msgid "Top Left to Bottom Right"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: widgets/premium-image-button.php:158
|
3726 |
msgid "Bottom Right to Top Left"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: widgets/premium-image-button.php:187
|
3730 |
msgid "Overlap Direction"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: widgets/premium-image-scroll.php:71 widgets/premium-image-separator.php:56
|
3734 |
msgid "Image Settings"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#: widgets/premium-image-scroll.php:83
|
3738 |
msgid "Choose the scroll image"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: widgets/premium-image-scroll.php:99
|
3742 |
msgid "Image Height"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
+
#: widgets/premium-image-scroll.php:126 widgets/premium-image-separator.php:141
|
3746 |
msgid "Add a custom link or select an existing page link"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
+
#: widgets/premium-image-scroll.php:132 widgets/premium-image-separator.php:147
|
3750 |
msgid "Link/URL"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: widgets/premium-image-scroll.php:194
|
3754 |
msgid "Direction"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: widgets/premium-image-scroll.php:195
|
3758 |
msgid "Select Scroll Direction"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: widgets/premium-image-scroll.php:207
|
3762 |
msgid "Reverse Direction"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: widgets/premium-image-scroll.php:217 widgets/premium-modalbox.php:508
|
3766 |
msgid "Trigger"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: widgets/premium-image-scroll.php:221
|
3770 |
msgid "Mouse Scroll"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: widgets/premium-image-scroll.php:229
|
3774 |
msgid "Speed"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: widgets/premium-image-scroll.php:230
|
3778 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: widgets/premium-image-scroll.php:274 widgets/premium-videobox.php:263
|
3782 |
+
#: widgets/premium-videobox.php:291
|
3783 |
msgid "Overlay"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: widgets/premium-image-scroll.php:276
|
3787 |
msgid "Show"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: widgets/premium-image-scroll.php:277
|
3791 |
msgid "Hide"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: widgets/premium-image-scroll.php:327 widgets/premium-image-scroll.php:360
|
3795 |
msgid "Opacity"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: widgets/premium-image-separator.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3799 |
msgid "Choose the separator image"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: widgets/premium-image-separator.php:77
|
3803 |
msgid "Image Size"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: widgets/premium-image-separator.php:99
|
3807 |
msgid "Image Gutter (%)"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: widgets/premium-image-separator.php:102
|
3811 |
msgid ""
|
3812 |
"-50% is default. Increase to push the image outside or decrease to pull the "
|
3813 |
"image inside."
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: widgets/premium-image-separator.php:112
|
3817 |
msgid "Image Alignment"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: widgets/premium-image-separator.php:196
|
3821 |
msgid "Image Hovering Title"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: widgets/premium-image-separator.php:208
|
3825 |
+
#: widgets/premium-pricing-table.php:385 widgets/premium-testimonials.php:190
|
3826 |
msgid "Link Target"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#: widgets/premium-image-separator.php:210
|
3830 |
+
#: widgets/premium-pricing-table.php:387
|
3831 |
msgid " Where would you like the link be opened?"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: widgets/premium-image-separator.php:217 widgets/premium-testimonials.php:199
|
3835 |
msgid "blank"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: widgets/premium-maps.php:70
|
3839 |
msgid "Center Location"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: widgets/premium-maps.php:87
|
3843 |
msgid "Get User Location"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: widgets/premium-maps.php:88
|
3847 |
msgid "Get center location from visitor's location"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: widgets/premium-maps.php:96 widgets/premium-maps.php:166
|
3851 |
msgid "Latitude & Longitude Finder"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: widgets/premium-maps.php:106 widgets/premium-maps.php:173
|
3855 |
msgid "Find Latitude & Longitude"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: widgets/premium-maps.php:120
|
3859 |
msgid "Center Latitude"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: widgets/premium-maps.php:123 widgets/premium-maps.php:137
|
3863 |
msgid "Center latitude and longitude are required to identify your location"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: widgets/premium-maps.php:134
|
3867 |
msgid "Center Longitude"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: widgets/premium-maps.php:150
|
3871 |
msgid "Markers"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: widgets/premium-maps.php:156
|
3875 |
msgid "Max Width"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: widgets/premium-maps.php:158
|
3879 |
msgid "Set the Maximum width for markers description box"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: widgets/premium-maps.php:185
|
3883 |
msgid "Latitude"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: widgets/premium-maps.php:196
|
3887 |
msgid "Longitude"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: widgets/premium-maps.php:224
|
3891 |
msgid "Custom Icon"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: widgets/premium-maps.php:232
|
3895 |
msgid "Map Pins"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: widgets/premium-maps.php:237
|
3899 |
msgid "Premium Google Maps"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: widgets/premium-maps.php:238
|
3903 |
msgid "Add an optional description to your map pin"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: widgets/premium-maps.php:254
|
3907 |
msgid "Map Type"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: widgets/premium-maps.php:257
|
3911 |
msgid "Road Map"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: widgets/premium-maps.php:258
|
3915 |
msgid "Satellite"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: widgets/premium-maps.php:259
|
3919 |
msgid "Terrain"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: widgets/premium-maps.php:260
|
3923 |
msgid "Hybrid"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: widgets/premium-maps.php:287
|
3927 |
msgid "Zoom"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: widgets/premium-maps.php:303
|
3931 |
msgid "Map Type Controls"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: widgets/premium-maps.php:310
|
3935 |
msgid "Zoom Controls"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: widgets/premium-maps.php:317
|
3939 |
msgid "Street View Control"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: widgets/premium-maps.php:324
|
3943 |
msgid "Fullscreen Control"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: widgets/premium-maps.php:331
|
3947 |
msgid "Scroll Wheel Zoom"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: widgets/premium-maps.php:338
|
3951 |
msgid "Info Container Always Opened"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: widgets/premium-maps.php:345
|
3955 |
msgid "Info Container Opened when Hovered"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: widgets/premium-maps.php:352
|
3959 |
msgid "Info Container Closed when Mouse Out"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: widgets/premium-maps.php:363
|
3963 |
msgid "Marker Clustering"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: widgets/premium-maps.php:374
|
3967 |
msgid "Map Style"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: widgets/premium-maps.php:380
|
3971 |
msgid "JSON Code"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: widgets/premium-maps.php:559
|
3975 |
msgid "Map"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: widgets/premium-modalbox.php:77
|
3979 |
msgid "Header"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: widgets/premium-modalbox.php:82
|
3983 |
msgid "Enable or disable modal header"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: widgets/premium-modalbox.php:90
|
3987 |
msgid "Use font awesome icon or upload a custom image"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: widgets/premium-modalbox.php:154
|
3991 |
msgid "Add a title for the modal box"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: widgets/premium-modalbox.php:172
|
3995 |
msgid "Content to Show"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: widgets/premium-modalbox.php:175
|
3999 |
msgid "Text Editor"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: widgets/premium-modalbox.php:176 widgets/premium-vscroll.php:97
|
4003 |
msgid "Elementor Template"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: widgets/premium-modalbox.php:186
|
4007 |
msgid "Modal content is a template which you can choose from Elementor library"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: widgets/premium-modalbox.php:210 widgets/premium-modalbox.php:818
|
4011 |
msgid "Upper Close Button"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: widgets/premium-modalbox.php:221 widgets/premium-modalbox.php:955
|
4015 |
msgid "Lower Close Button"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: widgets/premium-modalbox.php:250
|
4019 |
msgid "Display Style"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: widgets/premium-modalbox.php:252
|
4023 |
msgid "Choose where would you like the modal box appear on"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: widgets/premium-modalbox.php:257
|
4027 |
msgid "Page Load"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: widgets/premium-modalbox.php:267 widgets/premium-modalbox.php:456
|
4031 |
msgid "Premium Modal Box"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: widgets/premium-modalbox.php:419
|
4035 |
msgid "Button Size"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: widgets/premium-modalbox.php:465
|
4039 |
msgid "Delay in Popup Display (Sec)"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: widgets/premium-modalbox.php:467
|
4043 |
msgid ""
|
4044 |
"When should the popup appear during page load? The value are counted in "
|
4045 |
"seconds"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: widgets/premium-modalbox.php:569
|
4049 |
msgid "Icon Hover Color"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: widgets/premium-modalbox.php:588 widgets/premium-modalbox.php:790
|
4053 |
+
#: widgets/premium-modalbox.php:966 widgets/premium-pricing-table.php:878
|
4054 |
+
#: widgets/premium-pricing-table.php:951 widgets/premium-pricing-table.php:996
|
4055 |
+
#: widgets/premium-pricing-table.php:1048
|
4056 |
msgid "Typography"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: widgets/premium-modalbox.php:768
|
4060 |
msgid "Heading"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: widgets/premium-modalbox.php:1148
|
4064 |
msgid "Max Height"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: widgets/premium-modalbox.php:1185
|
4068 |
msgid "Footer Background Color"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: widgets/premium-person.php:98
|
4072 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: widgets/premium-person.php:209 widgets/premium-person.php:553
|
4076 |
msgid "Job Title"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: widgets/premium-person.php:212
|
4080 |
msgid "Senior Developer"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: widgets/premium-person.php:240
|
4084 |
msgid ""
|
4085 |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper "
|
4086 |
"nulla non metus auctor fringilla"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: widgets/premium-person.php:276 widgets/premium-person.php:641
|
4090 |
msgid "Social Icons"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: widgets/premium-person.php:282
|
4094 |
+
msgid "Enable Social Icons"
|
4095 |
+
msgstr ""
|
4096 |
+
|
4097 |
+
#: widgets/premium-person.php:305
|
4098 |
msgid "Twitter"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: widgets/premium-person.php:319
|
4102 |
msgid "LinkedIn"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: widgets/premium-person.php:333
|
4106 |
msgid "Google+"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: widgets/premium-person.php:347 widgets/premium-videobox.php:75
|
4110 |
msgid "Youtube"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: widgets/premium-person.php:360
|
4114 |
msgid "Instagram"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: widgets/premium-person.php:373
|
4118 |
msgid "Skype"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#: widgets/premium-person.php:386
|
4122 |
msgid "Pinterest"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: widgets/premium-person.php:400
|
4126 |
msgid "Dribbble"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: widgets/premium-person.php:414
|
4130 |
msgid "Behance"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: widgets/premium-person.php:428
|
4134 |
msgid "Email Address"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: widgets/premium-person.php:691
|
4138 |
+
msgid "Brands Default Colors"
|
4139 |
+
msgstr ""
|
4140 |
+
|
4141 |
+
#: widgets/premium-person.php:777
|
4142 |
+
msgid "Bottom Offset"
|
4143 |
+
msgstr ""
|
4144 |
+
|
4145 |
+
#: widgets/premium-person.php:799
|
4146 |
+
msgid "Transition Duration (sec)"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: widgets/premium-pricing-table.php:106
|
4150 |
msgid "Select HTML tag for the title"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: widgets/premium-pricing-table.php:127 widgets/premium-pricing-table.php:158
|
4154 |
+
#: widgets/premium-pricing-table.php:498 widgets/premium-pricing-table.php:800
|
4155 |
+
#: widgets/premium-pricing-table.php:926
|
4156 |
msgid "Price"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: widgets/premium-pricing-table.php:137 widgets/premium-pricing-table.php:810
|
4160 |
msgid "Slashed Price"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: widgets/premium-pricing-table.php:147 widgets/premium-pricing-table.php:854
|
4164 |
msgid "Currency"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
+
#: widgets/premium-pricing-table.php:169 widgets/premium-pricing-table.php:971
|
4168 |
msgid "Divider"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
+
#: widgets/premium-pricing-table.php:180 widgets/premium-pricing-table.php:1023
|
4172 |
msgid "Duration"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: widgets/premium-pricing-table.php:193
|
4176 |
+
msgid "Feature List"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: widgets/premium-pricing-table.php:206
|
4180 |
+
msgid "Feature Title"
|
4181 |
+
msgstr ""
|
4182 |
+
|
4183 |
+
#: widgets/premium-pricing-table.php:226 widgets/premium-pricing-table.php:506
|
4184 |
+
#: widgets/premium-pricing-table.php:1121
|
4185 |
msgid "Features"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: widgets/premium-pricing-table.php:234
|
4189 |
msgid "List Item #1"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: widgets/premium-pricing-table.php:241
|
4193 |
msgid "List Item #2"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: widgets/premium-pricing-table.php:248
|
4197 |
msgid "List Item #3"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: widgets/premium-pricing-table.php:326
|
4201 |
msgid "Get Started"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: widgets/premium-pricing-table.php:405 widgets/premium-pricing-table.php:529
|
4205 |
+
#: widgets/premium-pricing-table.php:1593
|
4206 |
msgid "Badge"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: widgets/premium-pricing-table.php:415
|
4210 |
msgid "Popular"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: widgets/premium-pricing-table.php:895
|
4214 |
msgid "Unset"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: widgets/premium-pricing-table.php:1194
|
4218 |
msgid "Spacing"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: widgets/premium-pricing-table.php:1207
|
4222 |
msgid "Vertical Spacing"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: widgets/premium-pricing-table.php:1405
|
4226 |
msgid "Hover Text Color"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: widgets/premium-pricing-table.php:1627
|
4230 |
msgid "Vertical Distance"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: widgets/premium-pricing-table.php:1643
|
4234 |
+
#: widgets/premium-pricing-table.php:1662
|
4235 |
msgid "Horizontal Distance"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: widgets/premium-pricing-table.php:1713
|
4239 |
msgid "Box Settings"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: widgets/premium-progressbar.php:58
|
4243 |
msgid "Progress Bar Settings"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: widgets/premium-progressbar.php:63
|
4247 |
msgid "Number of Labels"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: widgets/premium-progressbar.php:67
|
4251 |
msgid "Left & Right Labels"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: widgets/premium-progressbar.php:68 widgets/premium-progressbar.php:440
|
4255 |
msgid "Multiple Labels"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: widgets/premium-progressbar.php:79
|
4259 |
msgid "My Skill"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: widgets/premium-progressbar.php:90 widgets/premium-progressbar.php:116
|
4263 |
+
#: widgets/premium-progressbar.php:391
|
4264 |
msgid "Percentage"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: widgets/premium-progressbar.php:93
|
4268 |
msgid "50%"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: widgets/premium-progressbar.php:105 widgets/premium-progressbar.php:125
|
4272 |
+
#: widgets/premium-progressbar.php:129
|
4273 |
msgid "Label"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: widgets/premium-progressbar.php:109 widgets/premium-progressbar.php:110
|
4277 |
msgid "label"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: widgets/premium-progressbar.php:142
|
4281 |
msgid "Enable Percentage"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: widgets/premium-progressbar.php:145
|
4285 |
msgid "Enable percentage for labels"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: widgets/premium-progressbar.php:154
|
4289 |
msgid "Labels Indicator"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: widgets/premium-progressbar.php:159
|
4293 |
msgid "Pin"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: widgets/premium-progressbar.php:160 widgets/premium-progressbar.php:501
|
4297 |
msgid "Arrow"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
+
#: widgets/premium-progressbar.php:170
|
4301 |
msgid "Labels Alignment"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: widgets/premium-progressbar.php:211
|
4305 |
msgid "Solid"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
+
#: widgets/premium-progressbar.php:212
|
4309 |
msgid "Striped"
|
4310 |
msgstr ""
|
4311 |
|
4312 |
+
#: widgets/premium-progressbar.php:219
|
4313 |
msgid "Speed (milliseconds)"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
+
#: widgets/premium-progressbar.php:227
|
4317 |
msgid "Animated"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: widgets/premium-progressbar.php:286
|
4321 |
msgid "Indicator Background"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: widgets/premium-progressbar.php:306
|
4325 |
msgid "Main Background"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: widgets/premium-progressbar.php:449
|
4329 |
msgid "Labels' Color"
|
4330 |
msgstr ""
|
4331 |
|
4332 |
+
#: widgets/premium-progressbar.php:463
|
4333 |
msgid "Labels' Typography"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: widgets/premium-progressbar.php:472
|
4337 |
msgid "Percentage Color"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: widgets/premium-progressbar.php:489
|
4341 |
msgid "Percentage Typography"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: widgets/premium-progressbar.php:545
|
4345 |
msgid "Indicator"
|
4346 |
msgstr ""
|
4347 |
|
4349 |
msgid "Testimonial"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: widgets/premium-testimonials.php:67
|
4353 |
msgid "Choose an image for the author"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: widgets/premium-testimonials.php:75
|
4357 |
msgid "Image Style"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: widgets/premium-testimonials.php:77
|
4361 |
msgid "Choose image style"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: widgets/premium-testimonials.php:79
|
4365 |
msgid "Square"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: widgets/premium-testimonials.php:80
|
4369 |
msgid "Circle"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: widgets/premium-testimonials.php:81
|
4373 |
msgid "Rounded"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: widgets/premium-testimonials.php:93
|
4377 |
msgid "Person Name"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: widgets/premium-testimonials.php:94
|
4381 |
msgid "Enter author name"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: widgets/premium-testimonials.php:104
|
4385 |
msgid "Select a heading tag for author name"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: widgets/premium-testimonials.php:124 widgets/premium-testimonials.php:351
|
4389 |
msgid "Company"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
+
#: widgets/premium-testimonials.php:134
|
4393 |
msgid "Company Name"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
+
#: widgets/premium-testimonials.php:135
|
4397 |
msgid "Enter company name"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: widgets/premium-testimonials.php:145
|
4401 |
msgid "Select a heading tag for company name"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
+
#: widgets/premium-testimonials.php:179
|
4405 |
msgid "Add company URL"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: widgets/premium-testimonials.php:192
|
4409 |
msgid "Select link target"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: widgets/premium-testimonials.php:194
|
4413 |
msgid "Blank"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: widgets/premium-testimonials.php:195
|
4417 |
msgid "Parent"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: widgets/premium-testimonials.php:196
|
4421 |
msgid "Self"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: widgets/premium-testimonials.php:219
|
4425 |
msgid "Testimonial Content"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: widgets/premium-testimonials.php:222
|
4429 |
msgid ""
|
4430 |
"Donec id elit non mi porta gravida at eget metus. Vivamus sagittis lacus vel "
|
4431 |
"augue laoreet rutrum faucibus dolor auctor. Cras mattis consectetur purus "
|
4433 |
"Donec id elit non mi porta gravida at eget metus."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: widgets/premium-testimonials.php:263
|
4437 |
msgid "Border Width (PX)"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: widgets/premium-testimonials.php:334
|
4441 |
msgid "Divider Color"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: widgets/premium-testimonials.php:443
|
4445 |
msgid "Quotation Icon"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: widgets/premium-testimonials.php:485
|
4449 |
msgid "Top Icon Position"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
+
#: widgets/premium-testimonials.php:502
|
4453 |
msgid "Bottom Icon Position"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: widgets/premium-title.php:62
|
4457 |
msgid "Premium Title"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: widgets/premium-title.php:79
|
|
|
|
|
|
|
|
|
4461 |
msgid "Style 5"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: widgets/premium-title.php:80
|
4465 |
msgid "Style 6"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: widgets/premium-title.php:81
|
4469 |
msgid "Style 7"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: widgets/premium-title.php:96
|
4473 |
msgid "Font Awesome Icon"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: widgets/premium-title.php:156
|
4477 |
+
msgid "Stripe Position"
|
4478 |
+
msgstr ""
|
4479 |
+
|
4480 |
+
#: widgets/premium-title.php:180
|
4481 |
msgid "Stripe Width (PX)"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: widgets/premium-title.php:199
|
4485 |
msgid "Stripe Height (PX)"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: widgets/premium-title.php:218
|
4489 |
msgid "Stripe Top Spacing (PX)"
|
4490 |
msgstr ""
|
4491 |
|
4492 |
+
#: widgets/premium-title.php:233
|
4493 |
msgid "Stripe Bottom Spacing (PX)"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: widgets/premium-title.php:249
|
4497 |
msgid "Stripe Alignment"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: widgets/premium-title.php:372 widgets/premium-title.php:403
|
4501 |
msgid "Line Color"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: widgets/premium-title.php:421
|
4505 |
msgid "Triangle Color"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: widgets/premium-title.php:439
|
4509 |
msgid "Stripe Color"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: widgets/premium-videobox.php:71
|
|
|
|
|
|
|
|
|
4513 |
msgid "Video Type"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
+
#: widgets/premium-videobox.php:89 widgets/premium-videobox.php:112
|
4517 |
msgid "Embed URL"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
+
#: widgets/premium-videobox.php:99
|
4521 |
msgid "Video ID"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
+
#: widgets/premium-videobox.php:100
|
4525 |
msgid ""
|
4526 |
"Enter the numbers and letters after the equal sign which located in your "
|
4527 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
4528 |
"example, z1hQgVpfTKU"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: widgets/premium-videobox.php:113
|
4532 |
msgid ""
|
4533 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
4534 |
"embed/z1hQgVpfTKU"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: widgets/premium-videobox.php:176
|
4538 |
msgid "Player Controls"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: widgets/premium-videobox.php:178
|
4542 |
msgid "Show/hide player controls"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
+
#: widgets/premium-videobox.php:187
|
4546 |
msgid "This will play the video muted"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
+
#: widgets/premium-videobox.php:193
|
4550 |
msgid "Autoplay"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
+
#: widgets/premium-videobox.php:210
|
4554 |
msgid "Start Time"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
+
#: widgets/premium-videobox.php:212
|
4558 |
msgid "Specify a start time (in seconds)"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#: widgets/premium-videobox.php:221
|
4562 |
msgid "End Time"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: widgets/premium-videobox.php:223
|
4566 |
msgid "Specify an end time (in seconds)"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: widgets/premium-videobox.php:232
|
4570 |
msgid "Suggested Videos From"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
+
#: widgets/premium-videobox.php:235
|
4574 |
msgid "Current Channel"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: widgets/premium-videobox.php:236
|
4578 |
msgid "Any Channel"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
+
#: widgets/premium-videobox.php:246
|
4582 |
msgid "Aspect Ratio"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
+
#: widgets/premium-videobox.php:271
|
4586 |
+
msgid "Thumbnail Size"
|
4587 |
+
msgstr ""
|
4588 |
+
|
4589 |
+
#: widgets/premium-videobox.php:301
|
4590 |
msgid "Choose an image for the video box"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: widgets/premium-videobox.php:315 widgets/premium-videobox.php:321
|
4594 |
+
#: widgets/premium-videobox.php:466
|
4595 |
msgid "Play Icon"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: widgets/premium-videobox.php:329 widgets/premium-videobox.php:409
|
4599 |
msgid "Horizontal Position (%)"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: widgets/premium-videobox.php:346 widgets/premium-videobox.php:392
|
4603 |
msgid "Vertical Position (%)"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: widgets/premium-videobox.php:371 widgets/premium-videobox.php:594
|
4607 |
msgid "Video Text"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: widgets/premium-videobox.php:381
|
4611 |
msgid "Play Video"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: widgets/premium-videobox.php:569
|
4615 |
msgid "Hover Animation"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: widgets/premium-videobox.php:571
|
4619 |
msgid ""
|
4620 |
"Hover animation works only when you set a background color or image for play "
|
4621 |
"icon"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: widgets/premium-videobox.php:578
|
4625 |
msgid "Hover Padding"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: widgets/premium-vscroll.php:85
|
4629 |
+
msgid "Elementor Templates"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: widgets/premium-vscroll.php:86 widgets/premium-vscroll.php:120
|
4633 |
+
msgid "Section ID"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: widgets/premium-vscroll.php:89
|
4637 |
msgid "Choose which method you prefer to insert sections."
|
4638 |
msgstr ""
|
4639 |
|
4640 |
+
#: widgets/premium-vscroll.php:142
|
4641 |
+
msgid "Navigation"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: widgets/premium-vscroll.php:148 widgets/premium-vscroll.php:597
|
4645 |
+
msgid "Navigation Menu"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: widgets/premium-vscroll.php:150
|
4649 |
+
msgid "This option works only on the frontend"
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: widgets/premium-vscroll.php:171
|
4653 |
+
msgid "Offset Top"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
#: widgets/premium-vscroll.php:185
|
4657 |
+
msgid "Offset Left"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
+
#: widgets/premium-vscroll.php:200
|
4661 |
+
msgid "Offset Right"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: widgets/premium-vscroll.php:217
|
4665 |
+
msgid "List Item"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: widgets/premium-vscroll.php:225
|
4669 |
+
msgid "Menu Items"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: widgets/premium-vscroll.php:237
|
4673 |
+
msgid "Dots Horizontal Position"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: widgets/premium-vscroll.php:250
|
4677 |
+
msgid "Dots Vertical Position"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: widgets/premium-vscroll.php:263
|
4681 |
+
msgid "Dots Tooltips"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: widgets/premium-vscroll.php:272
|
4685 |
+
msgid "Shape"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: widgets/premium-vscroll.php:275
|
4689 |
+
msgid "Circles"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: widgets/premium-vscroll.php:276
|
4693 |
+
msgid "Lines"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: widgets/premium-vscroll.php:287
|
4697 |
+
msgid "Dots Tooltips Text"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
+
#: widgets/premium-vscroll.php:290
|
4701 |
+
msgid "Add text for each navigation dot separated by ','"
|
4702 |
+
msgstr ""
|
4703 |
+
|
4704 |
+
#: widgets/premium-vscroll.php:299
|
4705 |
+
msgid "Entrance Animation"
|
4706 |
+
msgstr ""
|
4707 |
+
|
4708 |
+
#: widgets/premium-vscroll.php:308
|
4709 |
+
msgid "Animation Duration"
|
4710 |
+
msgstr ""
|
4711 |
+
|
4712 |
+
#: widgets/premium-vscroll.php:312
|
4713 |
+
msgid "Slow"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: widgets/premium-vscroll.php:314
|
4717 |
+
msgid "Fast"
|
4718 |
+
msgstr ""
|
4719 |
+
|
4720 |
+
#: widgets/premium-vscroll.php:326
|
4721 |
msgid "Scroll Settings"
|
4722 |
msgstr ""
|
4723 |
|
4724 |
+
#: widgets/premium-vscroll.php:332
|
4725 |
msgid "Scroll Speed"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: widgets/premium-vscroll.php:334
|
4729 |
msgid "Set scolling speed in seconds, default: 0.7"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
+
#: widgets/premium-vscroll.php:340
|
4733 |
msgid "Full Section Scroll"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: widgets/premium-vscroll.php:348
|
4737 |
msgid "Save to Browser History"
|
4738 |
msgstr ""
|
4739 |
|
4740 |
+
#: widgets/premium-vscroll.php:350
|
4741 |
msgid ""
|
4742 |
"Enabling this option will save the current section ID to the browser history"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: widgets/premium-vscroll.php:357
|
4746 |
msgid "Enable Full Section Scroll on Touch Devices"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: widgets/premium-vscroll.php:378
|
4750 |
msgid "Tooltips"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: widgets/premium-vscroll.php:387
|
4754 |
msgid "Tooltips Text Color"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: widgets/premium-vscroll.php:416
|
4758 |
msgid "Tooltips Background"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: widgets/premium-vscroll.php:507
|
4762 |
msgid "Dots Color"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: widgets/premium-vscroll.php:521
|
4766 |
msgid "Active Dot Color"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: widgets/premium-vscroll.php:535
|
4770 |
msgid "Dots Border Color"
|
4771 |
msgstr ""
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 3.9.
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -14,12 +14,12 @@ License: GNU General Public License v3.0
|
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
-
define('PREMIUM_ADDONS_VERSION', '3.9.
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) );
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
-
define('PREMIUM_ADDONS_STABLE_VERSION', '3.9.
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 3.9.4
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
+
define('PREMIUM_ADDONS_VERSION', '3.9.4');
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) );
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
+
define('PREMIUM_ADDONS_STABLE_VERSION', '3.9.3');
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate Link: https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_c
|
|
5 |
Requires at Least: 4.5
|
6 |
Tested Up To: 5.3
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable Tag: 3.9.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -175,6 +175,11 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
175 |
|
176 |
== Changelog ==
|
177 |
|
|
|
|
|
|
|
|
|
|
|
178 |
= 3.9.3 =
|
179 |
|
180 |
- Fixed: `Warning: A non-numeric value encountered` when Offset or Posts Per Page option is left blank in Blog widget.
|
5 |
Requires at Least: 4.5
|
6 |
Tested Up To: 5.3
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable Tag: 3.9.4
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
175 |
|
176 |
== Changelog ==
|
177 |
|
178 |
+
= 3.9.4 =
|
179 |
+
|
180 |
+
- Tweak: Added `Blend Mode` option for image in Banner, Image Scroll and Person widgets.
|
181 |
+
- Tweak: Added `Stripe Position` option for Style 7 in Title widget.
|
182 |
+
|
183 |
= 3.9.3 =
|
184 |
|
185 |
- Fixed: `Warning: A non-numeric value encountered` when Offset or Posts Per Page option is left blank in Blog widget.
|
widgets/premium-banner.php
CHANGED
@@ -51,6 +51,10 @@ class Premium_Banner extends Widget_Base {
|
|
51 |
public function get_script_depends() {
|
52 |
return ['premium-addons-js'];
|
53 |
}
|
|
|
|
|
|
|
|
|
54 |
|
55 |
// Adding the controls fields for the premium banner
|
56 |
// This will controls the animation, colors and background, dimensions etc
|
@@ -547,6 +551,29 @@ class Premium_Banner extends Widget_Base {
|
|
547 |
]
|
548 |
]
|
549 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
|
551 |
$this->end_controls_section();
|
552 |
|
51 |
public function get_script_depends() {
|
52 |
return ['premium-addons-js'];
|
53 |
}
|
54 |
+
|
55 |
+
public function get_custom_help_url() {
|
56 |
+
return 'https://premiumaddons.com/support/';
|
57 |
+
}
|
58 |
|
59 |
// Adding the controls fields for the premium banner
|
60 |
// This will controls the animation, colors and background, dimensions etc
|
551 |
]
|
552 |
]
|
553 |
);
|
554 |
+
|
555 |
+
$this->add_control('blend_mode',
|
556 |
+
[
|
557 |
+
'label' => __( 'Blend Mode', 'elementor' ),
|
558 |
+
'type' => Controls_Manager::SELECT,
|
559 |
+
'options' => [
|
560 |
+
'' => __( 'Normal', 'elementor' ),
|
561 |
+
'multiply' => 'Multiply',
|
562 |
+
'screen' => 'Screen',
|
563 |
+
'overlay' => 'Overlay',
|
564 |
+
'darken' => 'Darken',
|
565 |
+
'lighten' => 'Lighten',
|
566 |
+
'color-dodge' => 'Color Dodge',
|
567 |
+
'saturation' => 'Saturation',
|
568 |
+
'color' => 'Color',
|
569 |
+
'luminosity' => 'Luminosity',
|
570 |
+
],
|
571 |
+
'separator' => 'before',
|
572 |
+
'selectors' => [
|
573 |
+
'{{WRAPPER}} .premium-banner-ib' => 'mix-blend-mode: {{VALUE}}',
|
574 |
+
],
|
575 |
+
]
|
576 |
+
);
|
577 |
|
578 |
$this->end_controls_section();
|
579 |
|
widgets/premium-blog.php
CHANGED
@@ -53,6 +53,11 @@ class Premium_Blog extends Widget_Base {
|
|
53 |
public function get_categories() {
|
54 |
return [ 'premium-elements' ];
|
55 |
}
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
// Adding the controls fields for Premium Blog
|
58 |
// This will controls the animation, colors and background, dimensions etc
|
53 |
public function get_categories() {
|
54 |
return [ 'premium-elements' ];
|
55 |
}
|
56 |
+
|
57 |
+
|
58 |
+
public function get_custom_help_url() {
|
59 |
+
return 'https://premiumaddons.com/support/';
|
60 |
+
}
|
61 |
|
62 |
// Adding the controls fields for Premium Blog
|
63 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-button.php
CHANGED
@@ -47,6 +47,10 @@ class Premium_Button extends Widget_Base {
|
|
47 |
public function get_categories() {
|
48 |
return [ 'premium-elements' ];
|
49 |
}
|
|
|
|
|
|
|
|
|
50 |
|
51 |
// Adding the controls fields for the premium button
|
52 |
// This will controls the animation, colors and background, dimensions etc
|
47 |
public function get_categories() {
|
48 |
return [ 'premium-elements' ];
|
49 |
}
|
50 |
+
|
51 |
+
public function get_custom_help_url() {
|
52 |
+
return 'https://premiumaddons.com/support/';
|
53 |
+
}
|
54 |
|
55 |
// Adding the controls fields for the premium button
|
56 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-carousel.php
CHANGED
@@ -53,6 +53,9 @@ class Premium_Carousel extends Widget_Base {
|
|
53 |
return [ 'premium-elements' ];
|
54 |
}
|
55 |
|
|
|
|
|
|
|
56 |
|
57 |
// Adding the controls fields for the premium carousel
|
58 |
// This will controls the animation, colors and background, dimensions etc
|
53 |
return [ 'premium-elements' ];
|
54 |
}
|
55 |
|
56 |
+
public function get_custom_help_url() {
|
57 |
+
return 'https://premiumaddons.com/support/';
|
58 |
+
}
|
59 |
|
60 |
// Adding the controls fields for the premium carousel
|
61 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-contactform.php
CHANGED
@@ -42,6 +42,10 @@ class Premium_Contactform extends Widget_Base {
|
|
42 |
'premium-addons-js'
|
43 |
];
|
44 |
}
|
|
|
|
|
|
|
|
|
45 |
|
46 |
// Adding the controls fields for the premium contact form
|
47 |
// This will controls the animation, colors and background, dimensions etc
|
42 |
'premium-addons-js'
|
43 |
];
|
44 |
}
|
45 |
+
|
46 |
+
public function get_custom_help_url() {
|
47 |
+
return 'https://premiumaddons.com/support/';
|
48 |
+
}
|
49 |
|
50 |
// Adding the controls fields for the premium contact form
|
51 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-countdown.php
CHANGED
@@ -48,6 +48,10 @@ class Premium_Countdown extends Widget_Base {
|
|
48 |
public function get_categories() {
|
49 |
return [ 'premium-elements' ];
|
50 |
}
|
|
|
|
|
|
|
|
|
51 |
|
52 |
// Adding the controls fields for the premium countdown
|
53 |
// This will controls the animation, colors and background, dimensions etc
|
48 |
public function get_categories() {
|
49 |
return [ 'premium-elements' ];
|
50 |
}
|
51 |
+
|
52 |
+
public function get_custom_help_url() {
|
53 |
+
return 'https://premiumaddons.com/support/';
|
54 |
+
}
|
55 |
|
56 |
// Adding the controls fields for the premium countdown
|
57 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-counter.php
CHANGED
@@ -47,6 +47,10 @@ class Premium_Counter extends Widget_Base {
|
|
47 |
public function get_categories() {
|
48 |
return [ 'premium-elements' ];
|
49 |
}
|
|
|
|
|
|
|
|
|
50 |
|
51 |
// Adding the controls fields for the premium counter
|
52 |
// This will controls the animation, colors and background, dimensions etc
|
47 |
public function get_categories() {
|
48 |
return [ 'premium-elements' ];
|
49 |
}
|
50 |
+
|
51 |
+
public function get_custom_help_url() {
|
52 |
+
return 'https://premiumaddons.com/support/';
|
53 |
+
}
|
54 |
|
55 |
// Adding the controls fields for the premium counter
|
56 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-dual-header.php
CHANGED
@@ -43,6 +43,10 @@ class Premium_Dual_Header extends Widget_Base {
|
|
43 |
public function get_categories() {
|
44 |
return [ 'premium-elements' ];
|
45 |
}
|
|
|
|
|
|
|
|
|
46 |
|
47 |
// Adding the controls fields for the premium dual header
|
48 |
// This will controls the animation, colors and background, dimensions etc
|
43 |
public function get_categories() {
|
44 |
return [ 'premium-elements' ];
|
45 |
}
|
46 |
+
|
47 |
+
public function get_custom_help_url() {
|
48 |
+
return 'https://premiumaddons.com/support/';
|
49 |
+
}
|
50 |
|
51 |
// Adding the controls fields for the premium dual header
|
52 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-fancytext.php
CHANGED
@@ -44,6 +44,10 @@ class Premium_Fancytext extends Widget_Base {
|
|
44 |
public function get_categories() {
|
45 |
return [ 'premium-elements' ];
|
46 |
}
|
|
|
|
|
|
|
|
|
47 |
|
48 |
// Adding the controls fields for the premium fancy text
|
49 |
// This will controls the animation, colors and background, dimensions etc
|
44 |
public function get_categories() {
|
45 |
return [ 'premium-elements' ];
|
46 |
}
|
47 |
+
|
48 |
+
public function get_custom_help_url() {
|
49 |
+
return 'https://premiumaddons.com/support/';
|
50 |
+
}
|
51 |
|
52 |
// Adding the controls fields for the premium fancy text
|
53 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-grid.php
CHANGED
@@ -69,6 +69,10 @@ class Premium_Grid extends Widget_Base {
|
|
69 |
return ['layout', 'gallery', 'images', 'videos', 'portfolio', 'visual', 'masonry'];
|
70 |
}
|
71 |
|
|
|
|
|
|
|
|
|
72 |
protected function _register_controls() {
|
73 |
|
74 |
$this->start_controls_section('premium_gallery_general',
|
69 |
return ['layout', 'gallery', 'images', 'videos', 'portfolio', 'visual', 'masonry'];
|
70 |
}
|
71 |
|
72 |
+
public function get_custom_help_url() {
|
73 |
+
return 'https://premiumaddons.com/support/';
|
74 |
+
}
|
75 |
+
|
76 |
protected function _register_controls() {
|
77 |
|
78 |
$this->start_controls_section('premium_gallery_general',
|
widgets/premium-image-button.php
CHANGED
@@ -43,6 +43,10 @@ class Premium_Image_Button extends Widget_Base {
|
|
43 |
public function get_categories() {
|
44 |
return [ 'premium-elements' ];
|
45 |
}
|
|
|
|
|
|
|
|
|
46 |
|
47 |
// Adding the controls fields for the premium image button
|
48 |
// This will controls the animation, colors and background, dimensions etc
|
43 |
public function get_categories() {
|
44 |
return [ 'premium-elements' ];
|
45 |
}
|
46 |
+
|
47 |
+
public function get_custom_help_url() {
|
48 |
+
return 'https://premiumaddons.com/support/';
|
49 |
+
}
|
50 |
|
51 |
// Adding the controls fields for the premium image button
|
52 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-image-scroll.php
CHANGED
@@ -59,6 +59,10 @@ class Premium_Image_Scroll extends Widget_Base {
|
|
59 |
'premium-addons-js'
|
60 |
];
|
61 |
}
|
|
|
|
|
|
|
|
|
62 |
|
63 |
protected function _register_controls() {
|
64 |
|
@@ -380,6 +384,29 @@ class Premium_Image_Scroll extends Widget_Base {
|
|
380 |
|
381 |
$this->end_controls_tabs();
|
382 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
$this->end_controls_section();
|
384 |
|
385 |
$this->start_controls_section('container_style',
|
59 |
'premium-addons-js'
|
60 |
];
|
61 |
}
|
62 |
+
|
63 |
+
public function get_custom_help_url() {
|
64 |
+
return 'https://premiumaddons.com/support/';
|
65 |
+
}
|
66 |
|
67 |
protected function _register_controls() {
|
68 |
|
384 |
|
385 |
$this->end_controls_tabs();
|
386 |
|
387 |
+
$this->add_control('blend_mode',
|
388 |
+
[
|
389 |
+
'label' => __( 'Blend Mode', 'elementor' ),
|
390 |
+
'type' => Controls_Manager::SELECT,
|
391 |
+
'options' => [
|
392 |
+
'' => __( 'Normal', 'elementor' ),
|
393 |
+
'multiply' => 'Multiply',
|
394 |
+
'screen' => 'Screen',
|
395 |
+
'overlay' => 'Overlay',
|
396 |
+
'darken' => 'Darken',
|
397 |
+
'lighten' => 'Lighten',
|
398 |
+
'color-dodge' => 'Color Dodge',
|
399 |
+
'saturation' => 'Saturation',
|
400 |
+
'color' => 'Color',
|
401 |
+
'luminosity' => 'Luminosity',
|
402 |
+
],
|
403 |
+
'separator' => 'before',
|
404 |
+
'selectors' => [
|
405 |
+
'{{WRAPPER}} .premium-image-scroll-container img' => 'mix-blend-mode: {{VALUE}}',
|
406 |
+
],
|
407 |
+
]
|
408 |
+
);
|
409 |
+
|
410 |
$this->end_controls_section();
|
411 |
|
412 |
$this->start_controls_section('container_style',
|
widgets/premium-image-separator.php
CHANGED
@@ -41,6 +41,10 @@ class Premium_Image_Separator extends Widget_Base {
|
|
41 |
public function get_categories() {
|
42 |
return [ 'premium-elements' ];
|
43 |
}
|
|
|
|
|
|
|
|
|
44 |
|
45 |
// Adding the controls fields for the premium image separator
|
46 |
// This will controls the animation, colors and background, dimensions etc
|
41 |
public function get_categories() {
|
42 |
return [ 'premium-elements' ];
|
43 |
}
|
44 |
+
|
45 |
+
public function get_custom_help_url() {
|
46 |
+
return 'https://premiumaddons.com/support/';
|
47 |
+
}
|
48 |
|
49 |
// Adding the controls fields for the premium image separator
|
50 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-maps.php
CHANGED
@@ -53,7 +53,11 @@ class Premium_Maps extends Widget_Base {
|
|
53 |
}
|
54 |
|
55 |
public function get_keywords() {
|
56 |
-
return [ 'google', 'marker' ];
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
|
59 |
// Adding the controls fields for the premium maps
|
53 |
}
|
54 |
|
55 |
public function get_keywords() {
|
56 |
+
return [ 'google', 'marker', 'pin' ];
|
57 |
+
}
|
58 |
+
|
59 |
+
public function get_custom_help_url() {
|
60 |
+
return 'https://premiumaddons.com/support/';
|
61 |
}
|
62 |
|
63 |
// Adding the controls fields for the premium maps
|
widgets/premium-modalbox.php
CHANGED
@@ -58,7 +58,10 @@ class Premium_Modalbox extends Widget_Base {
|
|
58 |
return [ 'premium-elements' ];
|
59 |
}
|
60 |
|
61 |
-
|
|
|
|
|
|
|
62 |
// Adding the controls fields for the premium modal box
|
63 |
// This will controls the animation, colors and background, dimensions etc
|
64 |
protected function _register_controls() {
|
58 |
return [ 'premium-elements' ];
|
59 |
}
|
60 |
|
61 |
+
public function get_custom_help_url() {
|
62 |
+
return 'https://premiumaddons.com/support/';
|
63 |
+
}
|
64 |
+
|
65 |
// Adding the controls fields for the premium modal box
|
66 |
// This will controls the animation, colors and background, dimensions etc
|
67 |
protected function _register_controls() {
|
widgets/premium-person.php
CHANGED
@@ -41,6 +41,10 @@ class Premium_Person extends Widget_Base {
|
|
41 |
public function get_categories() {
|
42 |
return [ 'premium-elements' ];
|
43 |
}
|
|
|
|
|
|
|
|
|
44 |
|
45 |
// Adding the controls fields for the premium person
|
46 |
// This will controls the animation, colors and background, dimensions etc
|
@@ -472,6 +476,29 @@ class Premium_Person extends Widget_Base {
|
|
472 |
]
|
473 |
);
|
474 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
/*End Image Style Section*/
|
476 |
$this->end_controls_section();
|
477 |
|
41 |
public function get_categories() {
|
42 |
return [ 'premium-elements' ];
|
43 |
}
|
44 |
+
|
45 |
+
public function get_custom_help_url() {
|
46 |
+
return 'https://premiumaddons.com/support/';
|
47 |
+
}
|
48 |
|
49 |
// Adding the controls fields for the premium person
|
50 |
// This will controls the animation, colors and background, dimensions etc
|
476 |
]
|
477 |
);
|
478 |
|
479 |
+
$this->add_control('blend_mode',
|
480 |
+
[
|
481 |
+
'label' => __( 'Blend Mode', 'elementor' ),
|
482 |
+
'type' => Controls_Manager::SELECT,
|
483 |
+
'options' => [
|
484 |
+
'' => __( 'Normal', 'elementor' ),
|
485 |
+
'multiply' => 'Multiply',
|
486 |
+
'screen' => 'Screen',
|
487 |
+
'overlay' => 'Overlay',
|
488 |
+
'darken' => 'Darken',
|
489 |
+
'lighten' => 'Lighten',
|
490 |
+
'color-dodge' => 'Color Dodge',
|
491 |
+
'saturation' => 'Saturation',
|
492 |
+
'color' => 'Color',
|
493 |
+
'luminosity' => 'Luminosity',
|
494 |
+
],
|
495 |
+
'separator' => 'before',
|
496 |
+
'selectors' => [
|
497 |
+
'{{WRAPPER}} .premium-person-image-container img' => 'mix-blend-mode: {{VALUE}}',
|
498 |
+
],
|
499 |
+
]
|
500 |
+
);
|
501 |
+
|
502 |
/*End Image Style Section*/
|
503 |
$this->end_controls_section();
|
504 |
|
widgets/premium-pricing-table.php
CHANGED
@@ -47,6 +47,9 @@ class Premium_Pricing_Table extends Widget_Base {
|
|
47 |
return [ 'premium-elements' ];
|
48 |
}
|
49 |
|
|
|
|
|
|
|
50 |
|
51 |
// Adding the controls fields for the premium pricing table
|
52 |
// This will controls the animation, colors and background, dimensions etc
|
47 |
return [ 'premium-elements' ];
|
48 |
}
|
49 |
|
50 |
+
public function get_custom_help_url() {
|
51 |
+
return 'https://premiumaddons.com/support/';
|
52 |
+
}
|
53 |
|
54 |
// Adding the controls fields for the premium pricing table
|
55 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-progressbar.php
CHANGED
@@ -43,6 +43,10 @@ class Premium_Progressbar extends Widget_Base {
|
|
43 |
'premium-addons-js'
|
44 |
];
|
45 |
}
|
|
|
|
|
|
|
|
|
46 |
|
47 |
// Adding the controls fields for the premium progress bar
|
48 |
// This will controls the animation, colors and background, dimensions etc
|
43 |
'premium-addons-js'
|
44 |
];
|
45 |
}
|
46 |
+
|
47 |
+
public function get_custom_help_url() {
|
48 |
+
return 'https://premiumaddons.com/support/';
|
49 |
+
}
|
50 |
|
51 |
// Adding the controls fields for the premium progress bar
|
52 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-testimonials.php
CHANGED
@@ -41,6 +41,10 @@ class Premium_Testimonials extends Widget_Base {
|
|
41 |
return [ 'premium-elements' ];
|
42 |
}
|
43 |
|
|
|
|
|
|
|
|
|
44 |
// Adding the controls fields for the premium testimonial
|
45 |
// This will controls the animation, colors and background, dimensions etc
|
46 |
protected function _register_controls() {
|
41 |
return [ 'premium-elements' ];
|
42 |
}
|
43 |
|
44 |
+
public function get_custom_help_url() {
|
45 |
+
return 'https://premiumaddons.com/support/';
|
46 |
+
}
|
47 |
+
|
48 |
// Adding the controls fields for the premium testimonial
|
49 |
// This will controls the animation, colors and background, dimensions etc
|
50 |
protected function _register_controls() {
|
widgets/premium-title.php
CHANGED
@@ -39,6 +39,10 @@ class Premium_Title extends Widget_Base {
|
|
39 |
return [ 'premium-elements' ];
|
40 |
}
|
41 |
|
|
|
|
|
|
|
|
|
42 |
// Adding the controls fields for the premium title
|
43 |
// This will controls the animation, colors and background, dimensions etc
|
44 |
protected function _register_controls() {
|
@@ -146,7 +150,30 @@ class Premium_Title extends Widget_Base {
|
|
146 |
]
|
147 |
);
|
148 |
|
149 |
-
/*Style
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
/*Stripe Width*/
|
151 |
$this->add_responsive_control('premium_title_style7_strip_width',
|
152 |
[
|
@@ -452,7 +479,7 @@ class Premium_Title extends Widget_Base {
|
|
452 |
/*Start Icon Style Section*/
|
453 |
$this->start_controls_section('premium_title_icon_style_section',
|
454 |
[
|
455 |
-
'label' => __('Icon
|
456 |
'tab' => Controls_Manager::TAB_STYLE,
|
457 |
'condition' => [
|
458 |
'premium_title_icon_switcher' => 'yes'
|
@@ -589,18 +616,22 @@ class Premium_Title extends Widget_Base {
|
|
589 |
<span class="premium-title-style7-stripe-wrap">
|
590 |
<span class="premium-title-style7-stripe"></span>
|
591 |
</span>
|
592 |
-
|
593 |
-
<?php
|
|
|
594 |
if ( $is_new || $migrated ) :
|
595 |
Icons_Manager::render_icon( $settings['premium_title_icon_updated'], [ 'class' => 'premium-title-icon', 'aria-hidden' => 'true' ] );
|
596 |
else: ?>
|
597 |
<i <?php echo $this->get_render_attribute_string( 'icon' ); ?>></i>
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
|
|
|
|
|
|
604 |
</div>
|
605 |
|
606 |
<?php
|
@@ -636,10 +667,11 @@ class Premium_Title extends Widget_Base {
|
|
636 |
#>
|
637 |
<div {{{ view.getRenderAttributeString('premium_title_container') }}}>
|
638 |
<{{{titleTag}}} {{{view.getRenderAttributeString('premium_title')}}}>
|
639 |
-
<# if(
|
640 |
<span class="premium-title-style7-stripe-wrap">
|
641 |
<span class="premium-title-style7-stripe"></span>
|
642 |
</span>
|
|
|
643 |
<# }
|
644 |
if( 'yes' === settings.premium_title_icon_switcher ) {
|
645 |
if ( iconHTML && iconHTML.rendered && ( ! settings.premium_title_icon || migrated ) ) { #>
|
@@ -650,6 +682,9 @@ class Premium_Title extends Widget_Base {
|
|
650 |
} #>
|
651 |
<span {{{ view.getRenderAttributeString('premium_title_text') }}}>{{{ titleText }}}</span>
|
652 |
</{{{titleTag}}}>
|
|
|
|
|
|
|
653 |
</div>
|
654 |
|
655 |
<?php
|
39 |
return [ 'premium-elements' ];
|
40 |
}
|
41 |
|
42 |
+
public function get_custom_help_url() {
|
43 |
+
return 'https://premiumaddons.com/support/';
|
44 |
+
}
|
45 |
+
|
46 |
// Adding the controls fields for the premium title
|
47 |
// This will controls the animation, colors and background, dimensions etc
|
48 |
protected function _register_controls() {
|
150 |
]
|
151 |
);
|
152 |
|
153 |
+
/*Style 7*/
|
154 |
+
$this->add_control('premium_title_stripe_pos',
|
155 |
+
[
|
156 |
+
'label' => __('Stripe Position', 'premium-addons-for-elementor'),
|
157 |
+
'type' => Controls_Manager::SELECT,
|
158 |
+
'options' => [
|
159 |
+
'top' => __('Top', 'premium-addons-for-elementor'),
|
160 |
+
'bottom' => __('Bottom', 'premium-addons-for-elementor')
|
161 |
+
],
|
162 |
+
'selectors_dictionary' => [
|
163 |
+
'top' => 'initial',
|
164 |
+
'bottom' => '2',
|
165 |
+
],
|
166 |
+
'default' => 'top',
|
167 |
+
'label_block' => true,
|
168 |
+
'condition' => [
|
169 |
+
'premium_title_style' => 'style7',
|
170 |
+
],
|
171 |
+
'selectors' => [
|
172 |
+
'{{WRAPPER}} .premium-title-style7-stripe-wrap' => 'order: {{VALUE}}'
|
173 |
+
]
|
174 |
+
]
|
175 |
+
);
|
176 |
+
|
177 |
/*Stripe Width*/
|
178 |
$this->add_responsive_control('premium_title_style7_strip_width',
|
179 |
[
|
479 |
/*Start Icon Style Section*/
|
480 |
$this->start_controls_section('premium_title_icon_style_section',
|
481 |
[
|
482 |
+
'label' => __('Icon', 'premium-addons-for-elementor'),
|
483 |
'tab' => Controls_Manager::TAB_STYLE,
|
484 |
'condition' => [
|
485 |
'premium_title_icon_switcher' => 'yes'
|
616 |
<span class="premium-title-style7-stripe-wrap">
|
617 |
<span class="premium-title-style7-stripe"></span>
|
618 |
</span>
|
619 |
+
<div class="premium-title-style7-inner">
|
620 |
+
<?php endif;
|
621 |
+
if( 'yes' === $settings['premium_title_icon_switcher'] ) :
|
622 |
if ( $is_new || $migrated ) :
|
623 |
Icons_Manager::render_icon( $settings['premium_title_icon_updated'], [ 'class' => 'premium-title-icon', 'aria-hidden' => 'true' ] );
|
624 |
else: ?>
|
625 |
<i <?php echo $this->get_render_attribute_string( 'icon' ); ?>></i>
|
626 |
+
<?php endif;
|
627 |
+
endif; ?>
|
628 |
+
<span <?php echo $this->get_render_attribute_string('premium_title_text'); ?>>
|
629 |
+
<?php echo esc_html( $settings['premium_title_text'] ); ?>
|
630 |
+
</span>
|
631 |
+
</<?php echo $title_tag; ?>>
|
632 |
+
<?php if ( $settings['premium_title_style'] === 'style7' ) : ?>
|
633 |
+
</div>
|
634 |
+
<?php endif; ?>
|
635 |
</div>
|
636 |
|
637 |
<?php
|
667 |
#>
|
668 |
<div {{{ view.getRenderAttributeString('premium_title_container') }}}>
|
669 |
<{{{titleTag}}} {{{view.getRenderAttributeString('premium_title')}}}>
|
670 |
+
<# if( 'style7' === selectedStyle ) { #>
|
671 |
<span class="premium-title-style7-stripe-wrap">
|
672 |
<span class="premium-title-style7-stripe"></span>
|
673 |
</span>
|
674 |
+
<div class="premium-title-style7-inner">
|
675 |
<# }
|
676 |
if( 'yes' === settings.premium_title_icon_switcher ) {
|
677 |
if ( iconHTML && iconHTML.rendered && ( ! settings.premium_title_icon || migrated ) ) { #>
|
682 |
} #>
|
683 |
<span {{{ view.getRenderAttributeString('premium_title_text') }}}>{{{ titleText }}}</span>
|
684 |
</{{{titleTag}}}>
|
685 |
+
<# if( 'style7' === selectedStyle ) { #>
|
686 |
+
</div>
|
687 |
+
<# } #>
|
688 |
</div>
|
689 |
|
690 |
<?php
|
widgets/premium-videobox.php
CHANGED
@@ -51,6 +51,10 @@ class Premium_Videobox extends Widget_Base {
|
|
51 |
public function get_keywords() {
|
52 |
return ['youtube', 'vimeo', 'self', 'hosted', 'media'];
|
53 |
}
|
|
|
|
|
|
|
|
|
54 |
|
55 |
// Adding the controls fields for Premium Video Box
|
56 |
// This will controls the animation, colors and background, dimensions etc
|
51 |
public function get_keywords() {
|
52 |
return ['youtube', 'vimeo', 'self', 'hosted', 'media'];
|
53 |
}
|
54 |
+
|
55 |
+
public function get_custom_help_url() {
|
56 |
+
return 'https://premiumaddons.com/support/';
|
57 |
+
}
|
58 |
|
59 |
// Adding the controls fields for Premium Video Box
|
60 |
// This will controls the animation, colors and background, dimensions etc
|
widgets/premium-vscroll.php
CHANGED
@@ -55,6 +55,10 @@ class Premium_Vscroll extends Widget_Base {
|
|
55 |
return true;
|
56 |
}
|
57 |
|
|
|
|
|
|
|
|
|
58 |
// Adding the controls fields for the premium vertical scroll
|
59 |
// This will controls the animation, colors and background, dimensions etc
|
60 |
protected function _register_controls() {
|
55 |
return true;
|
56 |
}
|
57 |
|
58 |
+
public function get_custom_help_url() {
|
59 |
+
return 'https://premiumaddons.com/support/';
|
60 |
+
}
|
61 |
+
|
62 |
// Adding the controls fields for the premium vertical scroll
|
63 |
// This will controls the animation, colors and background, dimensions etc
|
64 |
protected function _register_controls() {
|