Version Description
- Tweak: Added
RTL Mode
option in Grid widget. - Tweak: Added
Even
layout option in Blog widget. - Tweak: Added
Box Background Color
for posts in Blog widget.
Download this release
Release Info
Developer | leap13 |
Plugin | ![]() |
Version | 3.5.7 |
Comparing to | |
See all releases |
Code changes from version 3.5.6 to 3.5.7
- admin/includes/version-control.php +1 -1
- assets/frontend/css/premium-addons.css +8 -7
- assets/frontend/js/premium-addons.js +19 -16
- includes/class-addons-integration.php +1 -4
- languages/premium-addons-for-elementor.pot +481 -403
- premium-addons-for-elementor.php +3 -3
- readme.txt +7 -1
- widgets/premium-blog.php +186 -136
- widgets/premium-grid.php +31 -19
- widgets/premium-testimonials.php +0 -2
admin/includes/version-control.php
CHANGED
@@ -91,7 +91,7 @@ class Version_Control {
|
|
91 |
<tr class="pa-roll-row">
|
92 |
<th><?php echo __('Rollback Version', 'premium-addons-for-elementor'); ?></th>
|
93 |
<td>
|
94 |
-
<div><?php echo sprintf( '<a target="_blank" href="%1$s" class="button pa-btn pa-rollback-button elementor-button-spinner">%2$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __('Reinstall Version 3.5.
|
95 |
<p class="pa-roll-desc">
|
96 |
<span><?php echo __('Warning: Please backup your database before making the rollback.', 'premium-addons-for-elementor'); ?></span>
|
97 |
</p>
|
91 |
<tr class="pa-roll-row">
|
92 |
<th><?php echo __('Rollback Version', 'premium-addons-for-elementor'); ?></th>
|
93 |
<td>
|
94 |
+
<div><?php echo sprintf( '<a target="_blank" href="%1$s" class="button pa-btn pa-rollback-button elementor-button-spinner">%2$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __('Reinstall Version 3.5.6', 'premium-addons-for-elementor') ); ?></div>
|
95 |
<p class="pa-roll-desc">
|
96 |
<span><?php echo __('Warning: Please backup your database before making the rollback.', 'premium-addons-for-elementor'); ?></span>
|
97 |
</p>
|
assets/frontend/css/premium-addons.css
CHANGED
@@ -1459,6 +1459,7 @@ button.premium-modal-box-modal-close {
|
|
1459 |
}
|
1460 |
/*Testimonial Person Image Style*/
|
1461 |
.premium-testimonial-person-image {
|
|
|
1462 |
width: 100%;
|
1463 |
height: 100% !important;
|
1464 |
border-style: solid !important;
|
@@ -1913,7 +1914,6 @@ button.premium-modal-box-modal-close {
|
|
1913 |
margin: 0px 10px 20px;
|
1914 |
clear: both;
|
1915 |
padding: 30px;
|
1916 |
-
background: #ddd;
|
1917 |
}
|
1918 |
.premium-blog-post-container.classic .premium-blog-content-wrapper {
|
1919 |
position: relative;
|
@@ -2061,12 +2061,6 @@ button.premium-modal-box-modal-close {
|
|
2061 |
font-size: 16px;
|
2062 |
display: inline-block;
|
2063 |
}
|
2064 |
-
/*.premium-blog-pagination-container li .prev,
|
2065 |
-
.premium-blog-pagination-container li .next {
|
2066 |
-
border: none;
|
2067 |
-
border-radius: 0;
|
2068 |
-
font-size: 17.8px;
|
2069 |
-
}*/
|
2070 |
.premium-blog-wrap {
|
2071 |
display: -ms-flexbox;
|
2072 |
display: -webkit-flex;
|
@@ -2096,6 +2090,13 @@ button.premium-modal-box-modal-close {
|
|
2096 |
.premium-blog-wrap.premium-blog-col-4 .premium-blog-entry-title a{
|
2097 |
font-size: 20px;
|
2098 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2099 |
@media ( max-width: 1025px ) {
|
2100 |
.premium-blog-entry-title a {
|
2101 |
font-size: 18px;
|
1459 |
}
|
1460 |
/*Testimonial Person Image Style*/
|
1461 |
.premium-testimonial-person-image {
|
1462 |
+
object-fit: cover;
|
1463 |
width: 100%;
|
1464 |
height: 100% !important;
|
1465 |
border-style: solid !important;
|
1914 |
margin: 0px 10px 20px;
|
1915 |
clear: both;
|
1916 |
padding: 30px;
|
|
|
1917 |
}
|
1918 |
.premium-blog-post-container.classic .premium-blog-content-wrapper {
|
1919 |
position: relative;
|
2061 |
font-size: 16px;
|
2062 |
display: inline-block;
|
2063 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2064 |
.premium-blog-wrap {
|
2065 |
display: -ms-flexbox;
|
2066 |
display: -webkit-flex;
|
2090 |
.premium-blog-wrap.premium-blog-col-4 .premium-blog-entry-title a{
|
2091 |
font-size: 20px;
|
2092 |
}
|
2093 |
+
/*
|
2094 |
+
* Even Layout
|
2095 |
+
*/
|
2096 |
+
.premium-blog-even .premium-blog-post-container {
|
2097 |
+
height: 100%;
|
2098 |
+
}
|
2099 |
+
|
2100 |
@media ( max-width: 1025px ) {
|
2101 |
.premium-blog-entry-title a {
|
2102 |
font-size: 18px;
|
assets/frontend/js/premium-addons.js
CHANGED
@@ -75,7 +75,8 @@
|
|
75 |
isFilterClicked = false,
|
76 |
minimum = gridSettings["minimum"],
|
77 |
imageToShow = gridSettings["click_images"],
|
78 |
-
counter = minimum
|
|
|
79 |
|
80 |
if (layout === "metro") {
|
81 |
var suffix = "";
|
@@ -112,15 +113,16 @@
|
|
112 |
.imagesLoaded(function () { })
|
113 |
.done(function () {
|
114 |
galleryElement.isotope({
|
115 |
-
itemSelector:
|
116 |
-
percentPosition:
|
117 |
-
animationOptions:
|
118 |
-
duration:
|
119 |
-
easing:
|
120 |
},
|
121 |
-
filter:
|
122 |
-
layoutMode:
|
123 |
-
|
|
|
124 |
columnWidth: columnWidth
|
125 |
}
|
126 |
});
|
@@ -182,7 +184,7 @@
|
|
182 |
}
|
183 |
|
184 |
counter = counter + imageToShow;
|
185 |
-
|
186 |
$.ajax({
|
187 |
url: appendItems( counter ),
|
188 |
beforeSend: function () {
|
@@ -650,7 +652,6 @@
|
|
650 |
/****** Premium Blog Handler ******/
|
651 |
var PremiumBlogHandler = function ($scope, $) {
|
652 |
var blogElement = $scope.find(".premium-blog-wrap"),
|
653 |
-
masonryBlog = blogElement.data("pa-masonry"),
|
654 |
colsNumber = blogElement.data("col"),
|
655 |
carousel = blogElement.data("carousel"),
|
656 |
autoPlay = blogElement.data("play"),
|
@@ -671,16 +672,18 @@
|
|
671 |
$(this).addClass("active");
|
672 |
|
673 |
var selector = $(this).attr("data-filter");
|
674 |
-
|
675 |
blogElement.isotope({ filter: selector });
|
676 |
|
677 |
return false;
|
678 |
});
|
|
|
|
|
679 |
|
680 |
-
if (masonryBlog) {
|
681 |
-
blogElement.imagesLoaded(function () {
|
682 |
blogElement.isotope({
|
683 |
-
itemSelector: ".premium-blog-post-container",
|
684 |
percentPosition: true,
|
685 |
animationOptions: {
|
686 |
duration: 750,
|
@@ -691,7 +694,7 @@
|
|
691 |
});
|
692 |
}
|
693 |
|
694 |
-
if (carousel && !masonryBlog) {
|
695 |
$(blogElement).slick({
|
696 |
infinite: true,
|
697 |
slidesToShow: colsNumber,
|
75 |
isFilterClicked = false,
|
76 |
minimum = gridSettings["minimum"],
|
77 |
imageToShow = gridSettings["click_images"],
|
78 |
+
counter = minimum,
|
79 |
+
rtlMode = gridSettings["rtl_mode"];
|
80 |
|
81 |
if (layout === "metro") {
|
82 |
var suffix = "";
|
113 |
.imagesLoaded(function () { })
|
114 |
.done(function () {
|
115 |
galleryElement.isotope({
|
116 |
+
itemSelector: ".premium-gallery-item",
|
117 |
+
percentPosition: true,
|
118 |
+
animationOptions: {
|
119 |
+
duration: 750,
|
120 |
+
easing: "linear"
|
121 |
},
|
122 |
+
filter: gridSettings["active_cat"],
|
123 |
+
layoutMode: layout,
|
124 |
+
originLeft: rtlMode,
|
125 |
+
masonry: {
|
126 |
columnWidth: columnWidth
|
127 |
}
|
128 |
});
|
184 |
}
|
185 |
|
186 |
counter = counter + imageToShow;
|
187 |
+
|
188 |
$.ajax({
|
189 |
url: appendItems( counter ),
|
190 |
beforeSend: function () {
|
652 |
/****** Premium Blog Handler ******/
|
653 |
var PremiumBlogHandler = function ($scope, $) {
|
654 |
var blogElement = $scope.find(".premium-blog-wrap"),
|
|
|
655 |
colsNumber = blogElement.data("col"),
|
656 |
carousel = blogElement.data("carousel"),
|
657 |
autoPlay = blogElement.data("play"),
|
672 |
$(this).addClass("active");
|
673 |
|
674 |
var selector = $(this).attr("data-filter");
|
675 |
+
|
676 |
blogElement.isotope({ filter: selector });
|
677 |
|
678 |
return false;
|
679 |
});
|
680 |
+
|
681 |
+
var masonryBlog = blogElement.hasClass( "premium-blog-masonry" );
|
682 |
|
683 |
+
if ( masonryBlog ) {
|
684 |
+
blogElement.imagesLoaded( function () {
|
685 |
blogElement.isotope({
|
686 |
+
itemSelector: ".premium-blog-post-outer-container",
|
687 |
percentPosition: true,
|
688 |
animationOptions: {
|
689 |
duration: 750,
|
694 |
});
|
695 |
}
|
696 |
|
697 |
+
if ( carousel && ! masonryBlog ) {
|
698 |
$(blogElement).slick({
|
699 |
infinite: true,
|
700 |
slidesToShow: colsNumber,
|
includes/class-addons-integration.php
CHANGED
@@ -45,9 +45,6 @@ class Addons_Integration {
|
|
45 |
add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'enqueue_frontend_styles' ) );
|
46 |
|
47 |
add_action( 'elementor/frontend/after_register_scripts', array( $this, 'register_frontend_scripts' ) );
|
48 |
-
|
49 |
-
// add_action( 'wp_enqueue_scripts', array( $this, 'premium_maps_required_script' ) );
|
50 |
-
|
51 |
|
52 |
add_action( 'wp_ajax_get_elementor_template_content', array( $this, 'get_template_content' ) );
|
53 |
|
@@ -436,4 +433,4 @@ if ( ! function_exists( 'premium_addons_integration' ) ) {
|
|
436 |
return Addons_Integration::get_instance();
|
437 |
}
|
438 |
}
|
439 |
-
premium_addons_integration();
|
45 |
add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'enqueue_frontend_styles' ) );
|
46 |
|
47 |
add_action( 'elementor/frontend/after_register_scripts', array( $this, 'register_frontend_scripts' ) );
|
|
|
|
|
|
|
48 |
|
49 |
add_action( 'wp_ajax_get_elementor_template_content', array( $this, 'get_template_content' ) );
|
50 |
|
433 |
return Addons_Integration::get_instance();
|
434 |
}
|
435 |
}
|
436 |
+
premium_addons_integration();
|
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,42 +55,41 @@ 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 |
"<p class=\"pa-text-wrap\" style=\"display: flex; align-items: center; "
|
86 |
"padding:10px 10px 10px 0;\"><img src=\"%s\" style=\"margin-right: 0.8em; "
|
87 |
-
"width: 40px;\"><
|
88 |
-
"
|
89 |
-
|
90 |
-
"now.</a>"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/includes/admin-notices.php:
|
94 |
#, php-format
|
95 |
msgid ""
|
96 |
"<a href=\"%s\" style=\"text-decoration: none; margin-left: 1em; float:right; "
|
@@ -214,7 +213,7 @@ msgid "Rollback Version"
|
|
214 |
msgstr ""
|
215 |
|
216 |
#: admin/includes/version-control.php:94
|
217 |
-
msgid "Reinstall Version 3.
|
218 |
msgstr ""
|
219 |
|
220 |
#: admin/includes/version-control.php:96
|
@@ -319,7 +318,7 @@ msgid "Blog"
|
|
319 |
msgstr ""
|
320 |
|
321 |
#: admin/settings/modules-setting.php:208 widgets/premium-banner.php:314
|
322 |
-
#: widgets/premium-banner.php:
|
323 |
#: widgets/premium-button.php:57 widgets/premium-button.php:474
|
324 |
#: widgets/premium-contactform.php:182 widgets/premium-contactform.php:439
|
325 |
#: widgets/premium-image-button.php:52 widgets/premium-image-button.php:378
|
@@ -328,8 +327,8 @@ msgstr ""
|
|
328 |
msgid "Button"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: admin/settings/modules-setting.php:215 widgets/premium-blog.php:
|
332 |
-
#: widgets/premium-blog.php:
|
333 |
#: widgets/premium-carousel.php:62
|
334 |
msgid "Carousel"
|
335 |
msgstr ""
|
@@ -406,11 +405,11 @@ msgid "Testimonials"
|
|
406 |
msgstr ""
|
407 |
|
408 |
#: admin/settings/modules-setting.php:356 widgets/premium-banner.php:266
|
409 |
-
#: widgets/premium-banner.php:
|
410 |
-
#: widgets/premium-blog.php:
|
411 |
-
#: widgets/premium-counter.php:381 widgets/premium-grid.php:
|
412 |
-
#: widgets/premium-grid.php:
|
413 |
-
#: widgets/premium-maps.php:
|
414 |
#: widgets/premium-pricing-table.php:76 widgets/premium-pricing-table.php:462
|
415 |
#: widgets/premium-pricing-table.php:684 widgets/premium-progressbar.php:72
|
416 |
#: widgets/premium-progressbar.php:342 widgets/premium-title.php:24
|
@@ -420,7 +419,7 @@ msgid "Title"
|
|
420 |
msgstr ""
|
421 |
|
422 |
#: admin/settings/modules-setting.php:366 widgets/premium-videobox.php:27
|
423 |
-
#: widgets/premium-videobox.php:56 widgets/premium-videobox.php:
|
424 |
msgid "Video Box"
|
425 |
msgstr ""
|
426 |
|
@@ -1064,19 +1063,19 @@ msgid "Vertical Scroll: Section ID"
|
|
1064 |
msgstr ""
|
1065 |
|
1066 |
#: widgets/premium-banner.php:60 widgets/premium-banner.php:457
|
1067 |
-
#: widgets/premium-blog.php:59 widgets/premium-blog.php:
|
1068 |
-
#: widgets/premium-grid.php:
|
1069 |
#: widgets/premium-image-scroll.php:272 widgets/premium-image-separator.php:59
|
1070 |
#: widgets/premium-image-separator.php:227 widgets/premium-modalbox.php:262
|
1071 |
#: widgets/premium-modalbox.php:442 widgets/premium-person.php:48
|
1072 |
#: widgets/premium-person.php:55 widgets/premium-person.php:373
|
1073 |
#: widgets/premium-testimonials.php:57 widgets/premium-testimonials.php:229
|
1074 |
-
#: widgets/premium-videobox.php:
|
1075 |
msgid "Image"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: widgets/premium-banner.php:66 widgets/premium-counter.php:163
|
1079 |
-
#: widgets/premium-grid.php:
|
1080 |
msgid "Upload Image"
|
1081 |
msgstr ""
|
1082 |
|
@@ -1085,9 +1084,9 @@ msgid "Select an image for the Banner"
|
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: widgets/premium-banner.php:79 widgets/premium-banner.php:355
|
1088 |
-
#: widgets/premium-blog.php:
|
1089 |
#: widgets/premium-dual-header.php:119 widgets/premium-dual-header.php:143
|
1090 |
-
#: widgets/premium-grid.php:
|
1091 |
#: widgets/premium-image-scroll.php:110 widgets/premium-image-separator.php:135
|
1092 |
#: widgets/premium-pricing-table.php:323 widgets/premium-testimonials.php:157
|
1093 |
#: widgets/premium-testimonials.php:166 widgets/premium-videobox.php:75
|
@@ -1114,8 +1113,8 @@ msgstr ""
|
|
1114 |
#: widgets/premium-banner.php:111 widgets/premium-banner.php:342
|
1115 |
#: widgets/premium-banner.php:373 widgets/premium-button.php:77
|
1116 |
#: widgets/premium-button.php:103 widgets/premium-dual-header.php:131
|
1117 |
-
#: widgets/premium-dual-header.php:161 widgets/premium-grid.php:
|
1118 |
-
#: widgets/premium-grid.php:
|
1119 |
#: widgets/premium-image-button.php:98 widgets/premium-image-scroll.php:122
|
1120 |
#: widgets/premium-image-scroll.php:148 widgets/premium-image-separator.php:147
|
1121 |
#: widgets/premium-image-separator.php:159
|
@@ -1184,64 +1183,64 @@ msgid "Choose if you want the effect to be always triggered"
|
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: widgets/premium-banner.php:183 widgets/premium-blog.php:65
|
1187 |
-
#: widgets/premium-button.php:117 widgets/premium-grid.php:
|
1188 |
#: widgets/premium-image-button.php:112 widgets/premium-person.php:118
|
1189 |
msgid "Hover Effect"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
#: widgets/premium-banner.php:186 widgets/premium-blog.php:69
|
1193 |
-
#: widgets/premium-blog.php:90 widgets/premium-blog.php:
|
1194 |
-
#: widgets/premium-button.php:121 widgets/premium-grid.php:
|
1195 |
#: widgets/premium-image-button.php:116 widgets/premium-modalbox.php:91
|
1196 |
#: widgets/premium-person.php:121 widgets/premium-progressbar.php:154
|
1197 |
msgid "None"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
#: widgets/premium-banner.php:187 widgets/premium-blog.php:70
|
1201 |
-
#: widgets/premium-grid.php:
|
1202 |
msgid "Zoom In"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: widgets/premium-banner.php:188 widgets/premium-blog.php:71
|
1206 |
-
#: widgets/premium-grid.php:
|
1207 |
msgid "Zoom Out"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
#: widgets/premium-banner.php:189 widgets/premium-blog.php:72
|
1211 |
-
#: widgets/premium-grid.php:
|
1212 |
msgid "Scale"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
#: widgets/premium-banner.php:190 widgets/premium-blog.php:73
|
1216 |
-
#: widgets/premium-grid.php:
|
1217 |
msgid "Grayscale"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
#: widgets/premium-banner.php:191 widgets/premium-blog.php:74
|
1221 |
-
#: widgets/premium-grid.php:
|
1222 |
msgid "Blur"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#: widgets/premium-banner.php:192 widgets/premium-blog.php:75
|
1226 |
-
#: widgets/premium-grid.php:
|
1227 |
msgid "Bright"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
#: widgets/premium-banner.php:193 widgets/premium-blog.php:76
|
1231 |
-
#: widgets/premium-grid.php:
|
1232 |
msgid "Sepia"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
#: widgets/premium-banner.php:201 widgets/premium-contactform.php:130
|
1236 |
-
#: widgets/premium-contactform.php:212 widgets/premium-grid.php:
|
1237 |
-
#: widgets/premium-grid.php:
|
1238 |
#: widgets/premium-person.php:94 widgets/premium-person.php:572
|
1239 |
#: widgets/premium-progressbar.php:246 widgets/premium-progressbar.php:581
|
1240 |
msgid "Height"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: widgets/premium-banner.php:204 widgets/premium-carousel.php:
|
1244 |
-
#: widgets/premium-grid.php:
|
1245 |
msgid "Default"
|
1246 |
msgstr ""
|
1247 |
|
@@ -1295,8 +1294,8 @@ msgid ""
|
|
1295 |
"this class for your customizations."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: widgets/premium-banner.php:260 widgets/premium-blog.php:
|
1299 |
-
#: widgets/premium-carousel.php:96 widgets/premium-grid.php:
|
1300 |
#: widgets/premium-modalbox.php:69 widgets/premium-modalbox.php:166
|
1301 |
#: widgets/premium-modalbox.php:188 widgets/premium-testimonials.php:208
|
1302 |
#: widgets/premium-testimonials.php:383 widgets/premium-vscroll.php:63
|
@@ -1324,12 +1323,12 @@ msgid ""
|
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: widgets/premium-banner.php:296 widgets/premium-banner.php:303
|
1327 |
-
#: widgets/premium-banner.php:
|
1328 |
-
#: widgets/premium-grid.php:
|
1329 |
-
#: widgets/premium-maps.php:
|
1330 |
#: widgets/premium-person.php:475 widgets/premium-pricing-table.php:263
|
1331 |
#: widgets/premium-pricing-table.php:274 widgets/premium-pricing-table.php:486
|
1332 |
-
#: widgets/premium-pricing-table.php:1256 widgets/premium-videobox.php:
|
1333 |
msgid "Description"
|
1334 |
msgstr ""
|
1335 |
|
@@ -1349,43 +1348,43 @@ msgstr ""
|
|
1349 |
#: widgets/premium-modalbox.php:458 widgets/premium-pricing-table.php:86
|
1350 |
#: widgets/premium-pricing-table.php:196 widgets/premium-pricing-table.php:297
|
1351 |
#: widgets/premium-pricing-table.php:386 widgets/premium-pricing-table.php:1102
|
1352 |
-
#: widgets/premium-pricing-table.php:1266 widgets/premium-videobox.php:
|
1353 |
msgid "Text"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
#: widgets/premium-banner.php:338 widgets/premium-button.php:73
|
1357 |
-
#: widgets/premium-dual-header.php:127 widgets/premium-grid.php:
|
1358 |
#: widgets/premium-image-button.php:68 widgets/premium-pricing-table.php:308
|
1359 |
msgid "Link Type"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
#: widgets/premium-banner.php:341 widgets/premium-button.php:76
|
1363 |
-
#: widgets/premium-dual-header.php:130 widgets/premium-grid.php:
|
1364 |
#: widgets/premium-image-button.php:71 widgets/premium-image-scroll.php:121
|
1365 |
#: widgets/premium-image-scroll.php:134 widgets/premium-image-separator.php:146
|
1366 |
#: widgets/premium-image-separator.php:173
|
1367 |
-
#: widgets/premium-pricing-table.php:311 widgets/premium-videobox.php:
|
1368 |
msgid "URL"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: widgets/premium-banner.php:389 widgets/premium-blog.php:
|
1372 |
-
#: widgets/premium-blog.php:
|
1373 |
#: widgets/premium-countdown.php:122 widgets/premium-dual-header.php:177
|
1374 |
#: widgets/premium-fancytext.php:118 widgets/premium-image-button.php:332
|
1375 |
-
#: widgets/premium-maps.php:
|
1376 |
#: widgets/premium-modalbox.php:487 widgets/premium-person.php:216
|
1377 |
#: widgets/premium-pricing-table.php:235 widgets/premium-title.php:122
|
1378 |
msgid "Alignment"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: widgets/premium-banner.php:393 widgets/premium-blog.php:
|
1382 |
-
#: widgets/premium-blog.php:
|
1383 |
#: widgets/premium-button.php:432 widgets/premium-countdown.php:126
|
1384 |
#: widgets/premium-counter.php:183 widgets/premium-dual-header.php:181
|
1385 |
#: widgets/premium-fancytext.php:122 widgets/premium-fancytext.php:311
|
1386 |
-
#: widgets/premium-grid.php:
|
1387 |
#: widgets/premium-image-button.php:336 widgets/premium-image-separator.php:112
|
1388 |
-
#: widgets/premium-maps.php:
|
1389 |
#: widgets/premium-modalbox.php:491 widgets/premium-person.php:220
|
1390 |
#: widgets/premium-pricing-table.php:239 widgets/premium-pricing-table.php:438
|
1391 |
#: widgets/premium-progressbar.php:170 widgets/premium-title.php:126
|
@@ -1394,27 +1393,27 @@ msgstr ""
|
|
1394 |
msgid "Left"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: widgets/premium-banner.php:397 widgets/premium-blog.php:
|
1398 |
-
#: widgets/premium-blog.php:
|
1399 |
#: widgets/premium-countdown.php:130 widgets/premium-dual-header.php:185
|
1400 |
#: widgets/premium-fancytext.php:126 widgets/premium-fancytext.php:315
|
1401 |
-
#: widgets/premium-grid.php:
|
1402 |
#: widgets/premium-image-button.php:340 widgets/premium-image-separator.php:116
|
1403 |
-
#: widgets/premium-maps.php:
|
1404 |
#: widgets/premium-modalbox.php:495 widgets/premium-person.php:224
|
1405 |
#: widgets/premium-pricing-table.php:243 widgets/premium-progressbar.php:174
|
1406 |
#: widgets/premium-title.php:130 widgets/premium-title.php:231
|
1407 |
msgid "Center"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: widgets/premium-banner.php:401 widgets/premium-blog.php:
|
1411 |
-
#: widgets/premium-blog.php:
|
1412 |
#: widgets/premium-button.php:440 widgets/premium-countdown.php:134
|
1413 |
#: widgets/premium-counter.php:182 widgets/premium-dual-header.php:189
|
1414 |
#: widgets/premium-fancytext.php:130 widgets/premium-fancytext.php:319
|
1415 |
-
#: widgets/premium-grid.php:
|
1416 |
#: widgets/premium-image-button.php:344 widgets/premium-image-separator.php:120
|
1417 |
-
#: widgets/premium-maps.php:
|
1418 |
#: widgets/premium-modalbox.php:499 widgets/premium-person.php:228
|
1419 |
#: widgets/premium-pricing-table.php:247 widgets/premium-pricing-table.php:437
|
1420 |
#: widgets/premium-progressbar.php:178 widgets/premium-title.php:134
|
@@ -1423,11 +1422,11 @@ msgstr ""
|
|
1423 |
msgid "Right"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: widgets/premium-banner.php:417 widgets/premium-grid.php:
|
1427 |
msgid "Responsive"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: widgets/premium-banner.php:423 widgets/premium-grid.php:
|
1431 |
msgid "Responsive Controls"
|
1432 |
msgstr ""
|
1433 |
|
@@ -1437,42 +1436,42 @@ msgid ""
|
|
1437 |
"may enable this option which will hide the description text."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: widgets/premium-banner.php:431 widgets/premium-grid.php:
|
1441 |
msgid "Minimum Size"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: widgets/premium-banner.php:433 widgets/premium-grid.php:
|
1445 |
msgid "Note: minimum size for extra small screens is 1px."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: widgets/premium-banner.php:443 widgets/premium-grid.php:
|
1449 |
msgid "Maximum Size"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: widgets/premium-banner.php:445 widgets/premium-grid.php:
|
1453 |
msgid "Note: maximum size for extra small screens is 767px."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: widgets/premium-banner.php:464 widgets/premium-banner.php:
|
1457 |
-
#: widgets/premium-blog.php:
|
1458 |
-
#: widgets/premium-blog.php:
|
1459 |
-
#: widgets/premium-blog.php:
|
1460 |
#: widgets/premium-button.php:528 widgets/premium-button.php:669
|
1461 |
-
#: widgets/premium-carousel.php:
|
1462 |
#: widgets/premium-contactform.php:543 widgets/premium-countdown.php:397
|
1463 |
#: widgets/premium-countdown.php:474 widgets/premium-counter.php:287
|
1464 |
#: widgets/premium-fancytext.php:372 widgets/premium-fancytext.php:430
|
1465 |
-
#: widgets/premium-fancytext.php:477 widgets/premium-grid.php:
|
1466 |
-
#: widgets/premium-grid.php:
|
1467 |
#: widgets/premium-modalbox.php:625 widgets/premium-modalbox.php:732
|
1468 |
#: widgets/premium-modalbox.php:826 widgets/premium-modalbox.php:896
|
1469 |
#: widgets/premium-modalbox.php:948 widgets/premium-modalbox.php:1069
|
1470 |
#: widgets/premium-modalbox.php:1129 widgets/premium-pricing-table.php:551
|
1471 |
#: widgets/premium-pricing-table.php:1646
|
1472 |
#: widgets/premium-pricing-table.php:1663 widgets/premium-title.php:303
|
1473 |
-
#: widgets/premium-title.php:325 widgets/premium-videobox.php:
|
1474 |
-
#: widgets/premium-vscroll.php:
|
1475 |
-
#: widgets/premium-vscroll.php:
|
1476 |
msgid "Background Color"
|
1477 |
msgstr ""
|
1478 |
|
@@ -1484,20 +1483,24 @@ msgstr ""
|
|
1484 |
msgid "Hover Opacity"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: widgets/premium-banner.php:
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
|
|
|
|
|
|
|
|
1491 |
#: widgets/premium-contactform.php:274 widgets/premium-contactform.php:510
|
1492 |
#: widgets/premium-countdown.php:438 widgets/premium-counter.php:360
|
1493 |
-
#: widgets/premium-dual-header.php:
|
1494 |
-
#: widgets/premium-grid.php:
|
1495 |
-
#: widgets/premium-grid.php:
|
1496 |
-
#: widgets/premium-grid.php:
|
1497 |
-
#: widgets/premium-grid.php:
|
1498 |
#: widgets/premium-image-button.php:450 widgets/premium-image-button.php:637
|
1499 |
-
#: widgets/premium-image-scroll.php:
|
1500 |
-
#: widgets/premium-maps.php:
|
1501 |
#: widgets/premium-modalbox.php:759 widgets/premium-modalbox.php:916
|
1502 |
#: widgets/premium-modalbox.php:968 widgets/premium-modalbox.php:1093
|
1503 |
#: widgets/premium-modalbox.php:1153 widgets/premium-modalbox.php:1267
|
@@ -1508,27 +1511,27 @@ msgstr ""
|
|
1508 |
#: widgets/premium-pricing-table.php:1718
|
1509 |
#: widgets/premium-pricing-table.php:1796 widgets/premium-progressbar.php:261
|
1510 |
#: widgets/premium-testimonials.php:541 widgets/premium-title.php:512
|
1511 |
-
#: widgets/premium-videobox.php:
|
1512 |
-
#: widgets/premium-vscroll.php:
|
1513 |
-
#: widgets/premium-vscroll.php:
|
1514 |
msgid "Border Radius"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: widgets/premium-banner.php:
|
1518 |
-
#: widgets/premium-banner.php:
|
1519 |
-
#: widgets/premium-blog.php:
|
1520 |
-
#: widgets/premium-blog.php:
|
1521 |
-
#: widgets/premium-blog.php:
|
1522 |
-
#: widgets/premium-blog.php:
|
1523 |
-
#: widgets/premium-blog.php:
|
1524 |
-
#: widgets/premium-carousel.php:
|
1525 |
#: widgets/premium-countdown.php:459 widgets/premium-counter.php:211
|
1526 |
#: widgets/premium-counter.php:388 widgets/premium-counter.php:428
|
1527 |
#: widgets/premium-fancytext.php:347 widgets/premium-fancytext.php:405
|
1528 |
-
#: widgets/premium-fancytext.php:452 widgets/premium-grid.php:
|
1529 |
-
#: widgets/premium-grid.php:
|
1530 |
-
#: widgets/premium-grid.php:
|
1531 |
-
#: widgets/premium-maps.php:
|
1532 |
#: widgets/premium-modalbox.php:530 widgets/premium-modalbox.php:804
|
1533 |
#: widgets/premium-modalbox.php:885 widgets/premium-modalbox.php:937
|
1534 |
#: widgets/premium-modalbox.php:1054 widgets/premium-modalbox.php:1114
|
@@ -1546,58 +1549,58 @@ msgstr ""
|
|
1546 |
#: widgets/premium-progressbar.php:552 widgets/premium-testimonials.php:280
|
1547 |
#: widgets/premium-testimonials.php:305 widgets/premium-testimonials.php:355
|
1548 |
#: widgets/premium-testimonials.php:391 widgets/premium-testimonials.php:447
|
1549 |
-
#: widgets/premium-title.php:263 widgets/premium-videobox.php:
|
1550 |
msgid "Color"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: widgets/premium-banner.php:
|
1554 |
msgid "Title Background"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: widgets/premium-banner.php:
|
1558 |
msgid "Choose a background color for the title"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: widgets/premium-banner.php:
|
1562 |
-
#: widgets/premium-banner.php:
|
1563 |
-
#: widgets/premium-dual-header.php:
|
1564 |
-
#: widgets/premium-grid.php:
|
1565 |
-
#: widgets/premium-grid.php:
|
1566 |
#: widgets/premium-modalbox.php:697 widgets/premium-modalbox.php:775
|
1567 |
#: widgets/premium-pricing-table.php:1440
|
1568 |
#: widgets/premium-pricing-table.php:1518
|
1569 |
#: widgets/premium-pricing-table.php:1731
|
1570 |
#: widgets/premium-pricing-table.php:1809 widgets/premium-title.php:443
|
1571 |
-
#: widgets/premium-videobox.php:
|
1572 |
-
#: widgets/premium-vscroll.php:
|
1573 |
-
#: widgets/premium-vscroll.php:
|
1574 |
msgid "Shadow"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: widgets/premium-banner.php:
|
1578 |
-
#: widgets/premium-blog.php:
|
1579 |
-
#: widgets/premium-blog.php:
|
1580 |
#: widgets/premium-modalbox.php:547 widgets/premium-person.php:534
|
1581 |
-
#: widgets/premium-videobox.php:
|
1582 |
msgid "Hover Color"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: widgets/premium-banner.php:
|
1586 |
msgid "Hover Background Color"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: widgets/premium-banner.php:
|
1590 |
-
#: widgets/premium-blog.php:
|
1591 |
-
#: widgets/premium-blog.php:
|
1592 |
#: widgets/premium-button.php:759 widgets/premium-contactform.php:254
|
1593 |
-
#: widgets/premium-contactform.php:456 widgets/premium-dual-header.php:
|
1594 |
-
#: widgets/premium-dual-header.php:
|
1595 |
-
#: widgets/premium-grid.php:
|
1596 |
-
#: widgets/premium-grid.php:
|
1597 |
-
#: widgets/premium-grid.php:
|
1598 |
-
#: widgets/premium-grid.php:
|
1599 |
-
#: widgets/premium-image-button.php:704 widgets/premium-maps.php:
|
1600 |
-
#: widgets/premium-maps.php:
|
1601 |
#: widgets/premium-modalbox.php:674 widgets/premium-modalbox.php:985
|
1602 |
#: widgets/premium-modalbox.php:1170 widgets/premium-modalbox.php:1299
|
1603 |
#: widgets/premium-pricing-table.php:565 widgets/premium-pricing-table.php:662
|
@@ -1608,17 +1611,17 @@ msgstr ""
|
|
1608 |
#: widgets/premium-pricing-table.php:1538
|
1609 |
#: widgets/premium-pricing-table.php:1751
|
1610 |
#: widgets/premium-pricing-table.php:1829 widgets/premium-testimonials.php:560
|
1611 |
-
#: widgets/premium-title.php:536 widgets/premium-videobox.php:
|
1612 |
-
#: widgets/premium-videobox.php:
|
1613 |
-
#: widgets/premium-vscroll.php:
|
1614 |
msgid "Padding"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: widgets/premium-blog.php:67 widgets/premium-grid.php:
|
1618 |
msgid "Choose a hover effect for the image"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: widgets/premium-blog.php:77 widgets/premium-grid.php:
|
1622 |
#: widgets/premium-person.php:129
|
1623 |
msgid "Translate"
|
1624 |
msgstr ""
|
@@ -1652,7 +1655,7 @@ msgstr ""
|
|
1652 |
msgid "Display Options"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: widgets/premium-blog.php:111 widgets/premium-grid.php:
|
1656 |
msgid "Skin"
|
1657 |
msgstr ""
|
1658 |
|
@@ -1680,295 +1683,295 @@ msgstr ""
|
|
1680 |
msgid "Number of Columns"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: widgets/premium-blog.php:165 widgets/premium-grid.php:
|
1684 |
msgid "1 Column"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: widgets/premium-blog.php:166 widgets/premium-grid.php:
|
1688 |
msgid "2 Columns"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: widgets/premium-blog.php:167 widgets/premium-grid.php:
|
1692 |
msgid "3 Columns"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: widgets/premium-blog.php:168 widgets/premium-grid.php:
|
1696 |
msgid "4 Columns"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: widgets/premium-blog.php:
|
1700 |
msgid "Thumbnail Min Height"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: widgets/premium-blog.php:
|
1704 |
msgid "Thumbnail Max Height"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: widgets/premium-blog.php:
|
1708 |
msgid "Thumbnail Fit"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: widgets/premium-blog.php:
|
1712 |
msgid "Cover"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: widgets/premium-blog.php:
|
1716 |
msgid "Fill"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: widgets/premium-blog.php:
|
1720 |
msgid "Contain"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: widgets/premium-blog.php:
|
1724 |
msgid "Spacing"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: widgets/premium-blog.php:
|
1728 |
msgid "Post Options"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: widgets/premium-blog.php:
|
1732 |
msgid "Excerpt"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: widgets/premium-blog.php:
|
1736 |
msgid ""
|
1737 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
1738 |
"default except length is 55"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: widgets/premium-blog.php:
|
1742 |
msgid "Pull From Content Box"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: widgets/premium-blog.php:
|
1746 |
msgid "Post content will be pulled from post content box"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: widgets/premium-blog.php:
|
1750 |
msgid "Excerpt Length"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: widgets/premium-blog.php:
|
1754 |
msgid "Excerpt Type"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: widgets/premium-blog.php:
|
1758 |
-
#: widgets/premium-vscroll.php:
|
1759 |
msgid "Dots"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: widgets/premium-blog.php:
|
1763 |
msgid "Link Text"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: widgets/premium-blog.php:
|
1767 |
msgid "continue reading"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: widgets/premium-blog.php:
|
1771 |
msgid "Author Meta"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: widgets/premium-blog.php:
|
1775 |
msgid "Date Meta"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: widgets/premium-blog.php:
|
1779 |
msgid "Categories Meta"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: widgets/premium-blog.php:
|
1783 |
msgid "Display or hide categories meta"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: widgets/premium-blog.php:
|
1787 |
msgid "Comments Meta"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: widgets/premium-blog.php:
|
1791 |
msgid "Display or hide comments meta"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: widgets/premium-blog.php:
|
1795 |
msgid "Tags Meta"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: widgets/premium-blog.php:
|
1799 |
msgid "Display or hide post tags"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: widgets/premium-blog.php:
|
1803 |
msgid "Post Format Icon"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: widgets/premium-blog.php:
|
1807 |
msgid "Advanced Settings"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: widgets/premium-blog.php:
|
1811 |
msgid "Filter By Category"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: widgets/premium-blog.php:
|
1815 |
msgid "Get posts for specific category(s)"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: widgets/premium-blog.php:
|
1819 |
msgid "Filter Tabs"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: widgets/premium-blog.php:
|
1823 |
msgid "Filter By Tag"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: widgets/premium-blog.php:
|
1827 |
msgid "Get posts for specific tag(s)"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: widgets/premium-blog.php:
|
1831 |
msgid "Filter By Author"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: widgets/premium-blog.php:
|
1835 |
msgid "Get posts for specific author(s)"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: widgets/premium-blog.php:
|
1839 |
msgid "Posts to Exclude"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: widgets/premium-blog.php:
|
1843 |
msgid "Add post(s) to exclude"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: widgets/premium-blog.php:
|
1847 |
msgid "Order By"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: widgets/premium-blog.php:
|
1851 |
msgid "ID"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: widgets/premium-blog.php:
|
1855 |
#: widgets/premium-testimonials.php:297
|
1856 |
msgid "Author"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: widgets/premium-blog.php:
|
1860 |
#: widgets/premium-person.php:402 widgets/premium-testimonials.php:86
|
1861 |
#: widgets/premium-testimonials.php:127
|
1862 |
msgid "Name"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: widgets/premium-blog.php:
|
1866 |
msgid "Date"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: widgets/premium-blog.php:
|
1870 |
msgid "Last Modified"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: widgets/premium-blog.php:
|
1874 |
msgid "Random"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: widgets/premium-blog.php:
|
1878 |
msgid "Number of Comments"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: widgets/premium-blog.php:
|
1882 |
msgid "Order"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: widgets/premium-blog.php:
|
1886 |
msgid "Descending"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: widgets/premium-blog.php:
|
1890 |
msgid "Ascending"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: widgets/premium-blog.php:
|
1894 |
msgid "Pagination"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: widgets/premium-blog.php:
|
1898 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: widgets/premium-blog.php:
|
1902 |
msgid "Next Page String"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: widgets/premium-blog.php:
|
1906 |
msgid "Next"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: widgets/premium-blog.php:
|
1910 |
msgid "Previous Page String"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: widgets/premium-blog.php:
|
1914 |
msgid "Previous"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: widgets/premium-blog.php:
|
1918 |
msgid "Links in New Tab"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: widgets/premium-blog.php:
|
1922 |
msgid "Enable links to be opened in a new tab"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: widgets/premium-blog.php:
|
1926 |
msgid "Posts Per Page"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: widgets/premium-blog.php:
|
1930 |
msgid "Choose how many posts do you want to be displayed per page"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: widgets/premium-blog.php:
|
1934 |
msgid "Total Number of Posts"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: widgets/premium-blog.php:
|
1938 |
msgid "Offset Count"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: widgets/premium-blog.php:
|
1942 |
msgid "The index of post to start with"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: widgets/premium-blog.php:
|
1946 |
msgid "Enable Carousel"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: widgets/premium-blog.php:
|
1950 |
msgid "Fade"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: widgets/premium-blog.php:
|
1954 |
msgid "Auto Play"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: widgets/premium-blog.php:
|
1958 |
msgid "Autoplay Speed"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: widgets/premium-blog.php:
|
1962 |
msgid ""
|
1963 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
1964 |
"in milliseconds (ms)"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: widgets/premium-blog.php:
|
1968 |
msgid "Arrows Position"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: widgets/premium-blog.php:
|
1972 |
#: widgets/premium-button.php:636 widgets/premium-button.php:653
|
1973 |
#: widgets/premium-image-button.php:415 widgets/premium-image-button.php:537
|
1974 |
#: widgets/premium-image-button.php:554 widgets/premium-image-scroll.php:279
|
@@ -1976,32 +1979,32 @@ msgstr ""
|
|
1976 |
msgid "Icon Color"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: widgets/premium-blog.php:
|
1980 |
#: widgets/premium-image-button.php:570 widgets/premium-image-button.php:587
|
1981 |
#: widgets/premium-image-button.php:612 widgets/premium-image-scroll.php:292
|
1982 |
msgid "Overlay Color"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: widgets/premium-blog.php:
|
1986 |
#: widgets/premium-contactform.php:554
|
1987 |
msgid "Border Color"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: widgets/premium-blog.php:
|
1991 |
msgid "Meta"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: widgets/premium-blog.php:
|
1995 |
-
#: widgets/premium-blog.php:
|
1996 |
#: widgets/premium-button.php:749 widgets/premium-contactform.php:286
|
1997 |
-
#: widgets/premium-dual-header.php:
|
1998 |
-
#: widgets/premium-grid.php:
|
1999 |
-
#: widgets/premium-grid.php:
|
2000 |
-
#: widgets/premium-grid.php:
|
2001 |
-
#: widgets/premium-grid.php:
|
2002 |
#: widgets/premium-image-button.php:493 widgets/premium-image-button.php:694
|
2003 |
-
#: widgets/premium-maps.php:
|
2004 |
-
#: widgets/premium-maps.php:
|
2005 |
#: widgets/premium-pricing-table.php:643 widgets/premium-pricing-table.php:730
|
2006 |
#: widgets/premium-pricing-table.php:814 widgets/premium-pricing-table.php:884
|
2007 |
#: widgets/premium-pricing-table.php:931 widgets/premium-pricing-table.php:976
|
@@ -2015,75 +2018,75 @@ msgstr ""
|
|
2015 |
#: widgets/premium-pricing-table.php:1818 widgets/premium-progressbar.php:318
|
2016 |
#: widgets/premium-progressbar.php:376 widgets/premium-progressbar.php:421
|
2017 |
#: widgets/premium-testimonials.php:417 widgets/premium-title.php:430
|
2018 |
-
#: widgets/premium-title.php:524 widgets/premium-vscroll.php:
|
2019 |
-
#: widgets/premium-vscroll.php:
|
2020 |
msgid "Margin"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: widgets/premium-blog.php:
|
2024 |
msgid "Tags"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: widgets/premium-blog.php:
|
2028 |
-
#: widgets/premium-button.php:412 widgets/premium-carousel.php:
|
2029 |
#: widgets/premium-counter.php:228 widgets/premium-counter.php:250
|
2030 |
#: widgets/premium-image-button.php:316 widgets/premium-modalbox.php:862
|
2031 |
#: widgets/premium-pricing-table.php:396 widgets/premium-pricing-table.php:415
|
2032 |
#: widgets/premium-pricing-table.php:538 widgets/premium-pricing-table.php:1154
|
2033 |
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2034 |
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2035 |
-
#: widgets/premium-videobox.php:
|
2036 |
msgid "Size"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: widgets/premium-blog.php:
|
2040 |
msgid "Choose icon size in (PX, EM)"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: widgets/premium-blog.php:
|
2044 |
msgid "Pagination Style"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: widgets/premium-blog.php:
|
2048 |
-
#: widgets/premium-contactform.php:469 widgets/premium-grid.php:
|
2049 |
-
#: widgets/premium-grid.php:
|
2050 |
-
#: widgets/premium-image-scroll.php:307 widgets/premium-image-scroll.php:
|
2051 |
#: widgets/premium-modalbox.php:615 widgets/premium-modalbox.php:878
|
2052 |
#: widgets/premium-modalbox.php:1047 widgets/premium-pricing-table.php:1401
|
2053 |
-
#: widgets/premium-pricing-table.php:1692 widgets/premium-vscroll.php:
|
2054 |
msgid "Normal"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: widgets/premium-blog.php:
|
2058 |
-
#: widgets/premium-contactform.php:527 widgets/premium-grid.php:
|
2059 |
-
#: widgets/premium-grid.php:
|
2060 |
-
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:
|
2061 |
-
#: widgets/premium-image-scroll.php:
|
2062 |
#: widgets/premium-modalbox.php:930 widgets/premium-modalbox.php:1107
|
2063 |
#: widgets/premium-pricing-table.php:1479
|
2064 |
#: widgets/premium-pricing-table.php:1770
|
2065 |
msgid "Hover"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: widgets/premium-blog.php:
|
2069 |
msgid "Read More Text"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: widgets/premium-blog.php:
|
2073 |
-
#: widgets/premium-grid.php:
|
2074 |
msgid "Filter"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: widgets/premium-blog.php:
|
2078 |
-
#: widgets/premium-grid.php:
|
2079 |
msgid "Active Color"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: widgets/premium-blog.php:
|
2083 |
msgid "Background Active Color"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: widgets/premium-blog.php:
|
2087 |
msgid "All"
|
2088 |
msgstr ""
|
2089 |
|
@@ -2173,7 +2176,7 @@ msgstr ""
|
|
2173 |
msgid "Tilted Right"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: widgets/premium-button.php:192 widgets/premium-carousel.php:
|
2177 |
#: widgets/premium-countdown.php:61 widgets/premium-counter.php:272
|
2178 |
#: widgets/premium-title.php:66
|
2179 |
msgid "Style"
|
@@ -2196,7 +2199,7 @@ msgid "Rectangle Out"
|
|
2196 |
msgstr ""
|
2197 |
|
2198 |
#: widgets/premium-button.php:210 widgets/premium-button.php:221
|
2199 |
-
#: widgets/premium-button.php:234 widgets/premium-carousel.php:
|
2200 |
#: widgets/premium-counter.php:204 widgets/premium-image-button.php:198
|
2201 |
#: widgets/premium-image-button.php:209 widgets/premium-image-button.php:222
|
2202 |
#: widgets/premium-image-scroll.php:230 widgets/premium-modalbox.php:87
|
@@ -2274,11 +2277,11 @@ msgstr ""
|
|
2274 |
|
2275 |
#: widgets/premium-button.php:498 widgets/premium-button.php:620
|
2276 |
#: widgets/premium-contactform.php:474 widgets/premium-contactform.php:532
|
2277 |
-
#: widgets/premium-dual-header.php:246 widgets/premium-dual-header.php:
|
2278 |
-
#: widgets/premium-grid.php:
|
2279 |
#: widgets/premium-image-button.php:521 widgets/premium-pricing-table.php:1573
|
2280 |
-
#: widgets/premium-videobox.php:
|
2281 |
-
#: widgets/premium-vscroll.php:
|
2282 |
msgid "Text Color"
|
2283 |
msgstr ""
|
2284 |
|
@@ -2347,7 +2350,7 @@ msgstr ""
|
|
2347 |
msgid "Enable or disable navigation dots"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: widgets/premium-carousel.php:140 widgets/premium-grid.php:
|
2351 |
#: widgets/premium-pricing-table.php:434 widgets/premium-vscroll.php:186
|
2352 |
msgid "Position"
|
2353 |
msgstr ""
|
@@ -2531,63 +2534,72 @@ msgid ""
|
|
2531 |
"mobile layout will appear (Default: 768px)."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: widgets/premium-carousel.php:412
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2535 |
msgid "Navigation Arrows"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: widgets/premium-carousel.php:
|
2539 |
msgid "Right Icon"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: widgets/premium-carousel.php:
|
2543 |
msgid "Bottom Icon"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: widgets/premium-carousel.php:
|
2547 |
msgid "Top Icon"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: widgets/premium-carousel.php:
|
2551 |
msgid "Left Icon"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: widgets/premium-carousel.php:
|
2555 |
msgid "Circle Background"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: widgets/premium-carousel.php:
|
2559 |
msgid "Square Background"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: widgets/premium-carousel.php:
|
2563 |
msgid "Circle border"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: widgets/premium-carousel.php:
|
2567 |
msgid "Square border"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: widgets/premium-carousel.php:
|
2571 |
msgid "Border Size"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: widgets/premium-carousel.php:
|
2575 |
msgid "Position (PX)"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: widgets/premium-carousel.php:
|
2579 |
msgid "Navigation Dots"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: widgets/premium-carousel.php:
|
2583 |
msgid "Ripple Effect"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: widgets/premium-carousel.php:
|
2587 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: widgets/premium-carousel.php:
|
2591 |
msgid "Ripple Color"
|
2592 |
msgstr ""
|
2593 |
|
@@ -2604,7 +2616,7 @@ msgid "Fields"
|
|
2604 |
msgstr ""
|
2605 |
|
2606 |
#: widgets/premium-contactform.php:72 widgets/premium-contactform.php:189
|
2607 |
-
#: widgets/premium-grid.php:
|
2608 |
#: widgets/premium-modalbox.php:1192 widgets/premium-person.php:67
|
2609 |
msgid "Width"
|
2610 |
msgstr ""
|
@@ -2955,7 +2967,7 @@ msgstr ""
|
|
2955 |
msgid "Premium"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: widgets/premium-dual-header.php:72 widgets/premium-dual-header.php:
|
2959 |
msgid "Second Heading"
|
2960 |
msgstr ""
|
2961 |
|
@@ -2971,28 +2983,44 @@ msgstr ""
|
|
2971 |
msgid "Enable or disable link"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: widgets/premium-dual-header.php:223 widgets/premium-dual-header.php:
|
2975 |
msgid "Animated Background"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: widgets/premium-dual-header.php:231 widgets/premium-dual-header.php:
|
2979 |
msgid "Background Style"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: widgets/premium-dual-header.php:234 widgets/premium-dual-header.php:
|
2983 |
msgid ""
|
2984 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
2985 |
"style so the background will be clipped on the text."
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: widgets/premium-dual-header.php:236 widgets/premium-dual-header.php:
|
2989 |
msgid "Normal Background"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: widgets/premium-dual-header.php:237 widgets/premium-dual-header.php:
|
2993 |
msgid "Clipped Background"
|
2994 |
msgstr ""
|
2995 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2996 |
#: widgets/premium-fancytext.php:62
|
2997 |
msgid "Prefix"
|
2998 |
msgstr ""
|
@@ -3073,7 +3101,7 @@ msgid ""
|
|
3073 |
"5 seconds before backspace effect."
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: widgets/premium-fancytext.php:218 widgets/premium-videobox.php:
|
3077 |
msgid "Loop"
|
3078 |
msgstr ""
|
3079 |
|
@@ -3139,201 +3167,214 @@ msgid "Metro"
|
|
3139 |
msgstr ""
|
3140 |
|
3141 |
#: widgets/premium-grid.php:88
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3142 |
msgid "Images Fit"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: widgets/premium-grid.php:
|
3146 |
msgid "Columns"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: widgets/premium-grid.php:
|
3150 |
msgid "5 Columns"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: widgets/premium-grid.php:
|
3154 |
msgid "6 Columns"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: widgets/premium-grid.php:
|
3158 |
msgid "12 Columns"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: widgets/premium-grid.php:
|
3162 |
msgid "Load More Button"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: widgets/premium-grid.php:
|
3166 |
msgid "Requires number of images larger than 6"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: widgets/premium-grid.php:
|
3170 |
msgid "Button Text"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: widgets/premium-grid.php:
|
3174 |
msgid "Load More"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: widgets/premium-grid.php:
|
3178 |
msgid "Minimum Number of Images"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: widgets/premium-grid.php:
|
3182 |
msgid "Set the minimum number of images before showing load more button"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: widgets/premium-grid.php:
|
3186 |
msgid "Images to Show"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: widgets/premium-grid.php:
|
3190 |
msgid "Set the minimum number of images to show with each click"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: widgets/premium-grid.php:
|
3194 |
msgid "Button Alignment"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: widgets/premium-grid.php:
|
3198 |
msgid "Categories"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: widgets/premium-grid.php:
|
3202 |
msgid "First Category"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: widgets/premium-grid.php:
|
3206 |
msgid "First Category Label"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: widgets/premium-grid.php:
|
3210 |
msgid "Category"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: widgets/premium-grid.php:
|
3214 |
msgid "Rotation Degrees"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: widgets/premium-grid.php:
|
3218 |
msgid "Set rotation value in degrees"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: widgets/premium-grid.php:
|
3222 |
msgid "Active Category Index"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: widgets/premium-grid.php:
|
3226 |
msgid "Put the index of the default active category, default is 1"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: widgets/premium-grid.php:
|
3230 |
msgid "Images"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: widgets/premium-grid.php:
|
3234 |
msgid "Works only when layout set to 'Metro'"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: widgets/premium-grid.php:
|
3238 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: widgets/premium-grid.php:
|
3242 |
msgid "Whole Image Link"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: widgets/premium-grid.php:
|
3246 |
msgid "Whole Image Lightbox"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: widgets/premium-grid.php:
|
3250 |
msgid "Grid Settings"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: widgets/premium-grid.php:
|
3254 |
msgid "Image Gap"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: widgets/premium-grid.php:
|
3258 |
msgid "Choose a layout style for the gallery"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: widgets/premium-grid.php:
|
3262 |
msgid "Style 1"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: widgets/premium-grid.php:
|
3266 |
msgid "Style 2"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: widgets/premium-grid.php:
|
3270 |
msgid "Style 3"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: widgets/premium-grid.php:
|
3274 |
msgid "Lightbox"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: widgets/premium-grid.php:
|
3278 |
msgid "Lightbox Theme"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: widgets/premium-grid.php:
|
3282 |
msgid "Light Rounded"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: widgets/premium-grid.php:
|
3286 |
msgid "Dark Rounded"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: widgets/premium-grid.php:
|
3290 |
msgid "Light Square"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: widgets/premium-grid.php:
|
3294 |
msgid "Dark Square"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: widgets/premium-grid.php:
|
3298 |
msgid "Facebook"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: widgets/premium-grid.php:
|
3302 |
msgid "Overlay Gallery Images"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: widgets/premium-grid.php:
|
3306 |
msgid "Content Alignment"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: widgets/premium-grid.php:
|
3310 |
msgid ""
|
3311 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3312 |
"enable this option which will hide the description text."
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
|
|
3316 |
msgid "General"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: widgets/premium-grid.php:
|
3320 |
msgid "Hover CSS Filters"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: widgets/premium-grid.php:
|
3324 |
msgid "Icons"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: widgets/premium-grid.php:
|
3328 |
msgid "Background"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: widgets/premium-grid.php:
|
3332 |
msgid "Spinner Color"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: widgets/premium-grid.php:
|
3336 |
-
#: widgets/premium-vscroll.php:
|
3337 |
msgid "Text Hover Color"
|
3338 |
msgstr ""
|
3339 |
|
@@ -3417,8 +3458,8 @@ msgstr ""
|
|
3417 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: widgets/premium-image-scroll.php:260 widgets/premium-videobox.php:
|
3421 |
-
#: widgets/premium-videobox.php:
|
3422 |
msgid "Overlay"
|
3423 |
msgstr ""
|
3424 |
|
@@ -3430,11 +3471,15 @@ msgstr ""
|
|
3430 |
msgid "Hide"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: widgets/premium-image-scroll.php:
|
|
|
|
|
|
|
|
|
3434 |
#: widgets/premium-pricing-table.php:1040
|
3435 |
#: widgets/premium-pricing-table.php:1187
|
3436 |
#: widgets/premium-pricing-table.php:1298 widgets/premium-testimonials.php:517
|
3437 |
-
#: widgets/premium-vscroll.php:
|
3438 |
msgid "Container"
|
3439 |
msgstr ""
|
3440 |
|
@@ -3478,147 +3523,147 @@ msgstr ""
|
|
3478 |
msgid "blank"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: widgets/premium-maps.php:
|
3482 |
msgid "Center Location"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: widgets/premium-maps.php:
|
3486 |
msgid "Get User Location"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: widgets/premium-maps.php:
|
3490 |
msgid "Get center location from visitor's location"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: widgets/premium-maps.php:
|
3494 |
msgid "Latitude & Longitude Finder"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: widgets/premium-maps.php:
|
3498 |
msgid "Find Latitude & Longitude"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: widgets/premium-maps.php:
|
3502 |
msgid "Center Latitude"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: widgets/premium-maps.php:
|
3506 |
msgid "Center latitude and longitude are required to identify your location"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#: widgets/premium-maps.php:
|
3510 |
msgid "Center Longitude"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: widgets/premium-maps.php:
|
3514 |
msgid "Markers"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: widgets/premium-maps.php:
|
3518 |
msgid "Max Width"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: widgets/premium-maps.php:
|
3522 |
msgid "Set the Maximum width for markers description box"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: widgets/premium-maps.php:
|
3526 |
msgid "Latitude"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: widgets/premium-maps.php:
|
3530 |
msgid "Longitude"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
-
#: widgets/premium-maps.php:
|
3534 |
msgid "Custom Icon"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#: widgets/premium-maps.php:
|
3538 |
msgid "Map Pins"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
-
#: widgets/premium-maps.php:
|
3542 |
msgid "Premium Google Maps"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#: widgets/premium-maps.php:
|
3546 |
msgid "Add an optional description to your map pin"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: widgets/premium-maps.php:
|
3550 |
msgid "Controls"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
#: widgets/premium-maps.php:
|
3554 |
msgid "Map Type"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#: widgets/premium-maps.php:
|
3558 |
msgid "Road Map"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
-
#: widgets/premium-maps.php:
|
3562 |
msgid "Satellite"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: widgets/premium-maps.php:
|
3566 |
msgid "Terrain"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: widgets/premium-maps.php:
|
3570 |
msgid "Hybrid"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
-
#: widgets/premium-maps.php:
|
3574 |
msgid "Zoom"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
#: widgets/premium-maps.php:
|
3578 |
msgid "Map Type Controls"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
-
#: widgets/premium-maps.php:
|
3582 |
msgid "Zoom Controls"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
-
#: widgets/premium-maps.php:
|
3586 |
msgid "Street View Control"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
-
#: widgets/premium-maps.php:
|
3590 |
msgid "Fullscreen Control"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: widgets/premium-maps.php:
|
3594 |
msgid "Scroll Wheel Zoom"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
-
#: widgets/premium-maps.php:
|
3598 |
msgid "Info Container Always Opened"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: widgets/premium-maps.php:
|
3602 |
msgid "Info Container Opened when Hovered"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
-
#: widgets/premium-maps.php:
|
3606 |
msgid "Info Container Closed when Mouse Out"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: widgets/premium-maps.php:
|
3610 |
msgid "Marker Clustering"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#: widgets/premium-maps.php:
|
3614 |
msgid "Map Style"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: widgets/premium-maps.php:
|
3618 |
msgid "JSON Code"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#: widgets/premium-maps.php:
|
3622 |
msgid "Map"
|
3623 |
msgstr ""
|
3624 |
|
@@ -4185,58 +4230,86 @@ msgid ""
|
|
4185 |
"embed/z1hQgVpfTKU"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: widgets/premium-videobox.php:
|
4189 |
msgid "Show Related Videos"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: widgets/premium-videobox.php:
|
4193 |
msgid "Enable/Disable related videos after the video"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4197 |
msgid "Mute"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: widgets/premium-videobox.php:
|
4201 |
msgid "This will play the video muted"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4205 |
msgid "Choose an image for the video box"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: widgets/premium-videobox.php:
|
4209 |
-
#: widgets/premium-videobox.php:
|
4210 |
msgid "Play Icon"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#: widgets/premium-videobox.php:
|
4214 |
msgid "Horizontal Position (%)"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: widgets/premium-videobox.php:
|
4218 |
msgid "Vertical Position (%)"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: widgets/premium-videobox.php:
|
4222 |
msgid "Video Text"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: widgets/premium-videobox.php:
|
4226 |
msgid "Play Video"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: widgets/premium-videobox.php:
|
4230 |
msgid "Hover Animation"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: widgets/premium-videobox.php:
|
4234 |
msgid ""
|
4235 |
"Hover animation works only when you set a background color or image for play "
|
4236 |
"icon"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: widgets/premium-videobox.php:
|
4240 |
msgid "Hover Padding"
|
4241 |
msgstr ""
|
4242 |
|
@@ -4284,7 +4357,7 @@ msgstr ""
|
|
4284 |
msgid "Navigation"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: widgets/premium-vscroll.php:178 widgets/premium-vscroll.php:
|
4288 |
msgid "Navigation Menu"
|
4289 |
msgstr ""
|
4290 |
|
@@ -4337,33 +4410,38 @@ msgid "Full Section Scroll"
|
|
4337 |
msgstr ""
|
4338 |
|
4339 |
#: widgets/premium-vscroll.php:316
|
4340 |
-
msgid "
|
4341 |
msgstr ""
|
4342 |
|
4343 |
-
#: widgets/premium-vscroll.php:
|
4344 |
-
msgid
|
|
|
4345 |
msgstr ""
|
4346 |
|
4347 |
#: widgets/premium-vscroll.php:347
|
|
|
|
|
|
|
|
|
4348 |
msgid "Tooltips Text Color"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: widgets/premium-vscroll.php:
|
4352 |
msgid "Tooltips Background"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: widgets/premium-vscroll.php:
|
4356 |
msgid "Dots Color"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: widgets/premium-vscroll.php:
|
4360 |
msgid "Active Dot Color"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: widgets/premium-vscroll.php:
|
4364 |
msgid "Dots Border Color"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: widgets/premium-vscroll.php:
|
4368 |
msgid "Active"
|
4369 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2019-07-15 12:03+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:155
|
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:157
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/includes/admin-notices.php:165
|
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:167
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin/includes/admin-notices.php:185
|
43 |
msgid "Did you like"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin/includes/admin-notices.php:185
|
47 |
msgid "Plugin?"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/includes/admin-notices.php:186
|
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:187
|
59 |
msgid "Leave a Review"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin/includes/admin-notices.php:188
|
63 |
msgid "Maybe Later"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin/includes/admin-notices.php:189
|
67 |
msgid "I Already did"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin/includes/admin-notices.php:260
|
71 |
msgid "Premium Blocks for Gutenberg"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin/includes/admin-notices.php:260
|
75 |
msgid "is Now Available."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin/includes/admin-notices.php:261
|
79 |
msgid "Install it Now."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin/includes/admin-notices.php:296
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"<p class=\"pa-text-wrap\" style=\"display: flex; align-items: center; "
|
86 |
"padding:10px 10px 10px 0;\"><img src=\"%s\" style=\"margin-right: 0.8em; "
|
87 |
+
"width: 40px;\"><strong><span>Facebook Reviews Widget for Elementor </"
|
88 |
+
"strong> has been amazingly improved. </span><a href=\"%s\" target="
|
89 |
+
"\"_blank\" style=\"flex-grow: 2;\"> Check it out now.</a>"
|
|
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin/includes/admin-notices.php:298
|
93 |
#, php-format
|
94 |
msgid ""
|
95 |
"<a href=\"%s\" style=\"text-decoration: none; margin-left: 1em; float:right; "
|
213 |
msgstr ""
|
214 |
|
215 |
#: admin/includes/version-control.php:94
|
216 |
+
msgid "Reinstall Version 3.5.5"
|
217 |
msgstr ""
|
218 |
|
219 |
#: admin/includes/version-control.php:96
|
318 |
msgstr ""
|
319 |
|
320 |
#: admin/settings/modules-setting.php:208 widgets/premium-banner.php:314
|
321 |
+
#: widgets/premium-banner.php:651 widgets/premium-button.php:39
|
322 |
#: widgets/premium-button.php:57 widgets/premium-button.php:474
|
323 |
#: widgets/premium-contactform.php:182 widgets/premium-contactform.php:439
|
324 |
#: widgets/premium-image-button.php:52 widgets/premium-image-button.php:378
|
327 |
msgid "Button"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin/settings/modules-setting.php:215 widgets/premium-blog.php:592
|
331 |
+
#: widgets/premium-blog.php:1167 widgets/premium-carousel.php:28
|
332 |
#: widgets/premium-carousel.php:62
|
333 |
msgid "Carousel"
|
334 |
msgstr ""
|
405 |
msgstr ""
|
406 |
|
407 |
#: admin/settings/modules-setting.php:356 widgets/premium-banner.php:266
|
408 |
+
#: widgets/premium-banner.php:554 widgets/premium-blog.php:465
|
409 |
+
#: widgets/premium-blog.php:732 widgets/premium-counter.php:61
|
410 |
+
#: widgets/premium-counter.php:381 widgets/premium-grid.php:386
|
411 |
+
#: widgets/premium-grid.php:827 widgets/premium-maps.php:202
|
412 |
+
#: widgets/premium-maps.php:389 widgets/premium-modalbox.php:151
|
413 |
#: widgets/premium-pricing-table.php:76 widgets/premium-pricing-table.php:462
|
414 |
#: widgets/premium-pricing-table.php:684 widgets/premium-progressbar.php:72
|
415 |
#: widgets/premium-progressbar.php:342 widgets/premium-title.php:24
|
419 |
msgstr ""
|
420 |
|
421 |
#: admin/settings/modules-setting.php:366 widgets/premium-videobox.php:27
|
422 |
+
#: widgets/premium-videobox.php:56 widgets/premium-videobox.php:375
|
423 |
msgid "Video Box"
|
424 |
msgstr ""
|
425 |
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: widgets/premium-banner.php:60 widgets/premium-banner.php:457
|
1066 |
+
#: widgets/premium-blog.php:59 widgets/premium-blog.php:669
|
1067 |
+
#: widgets/premium-grid.php:743 widgets/premium-image-scroll.php:72
|
1068 |
#: widgets/premium-image-scroll.php:272 widgets/premium-image-separator.php:59
|
1069 |
#: widgets/premium-image-separator.php:227 widgets/premium-modalbox.php:262
|
1070 |
#: widgets/premium-modalbox.php:442 widgets/premium-person.php:48
|
1071 |
#: widgets/premium-person.php:55 widgets/premium-person.php:373
|
1072 |
#: widgets/premium-testimonials.php:57 widgets/premium-testimonials.php:229
|
1073 |
+
#: widgets/premium-videobox.php:247
|
1074 |
msgid "Image"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
#: widgets/premium-banner.php:66 widgets/premium-counter.php:163
|
1078 |
+
#: widgets/premium-grid.php:336
|
1079 |
msgid "Upload Image"
|
1080 |
msgstr ""
|
1081 |
|
1084 |
msgstr ""
|
1085 |
|
1086 |
#: widgets/premium-banner.php:79 widgets/premium-banner.php:355
|
1087 |
+
#: widgets/premium-blog.php:324 widgets/premium-button.php:86
|
1088 |
#: widgets/premium-dual-header.php:119 widgets/premium-dual-header.php:143
|
1089 |
+
#: widgets/premium-grid.php:422 widgets/premium-image-button.php:81
|
1090 |
#: widgets/premium-image-scroll.php:110 widgets/premium-image-separator.php:135
|
1091 |
#: widgets/premium-pricing-table.php:323 widgets/premium-testimonials.php:157
|
1092 |
#: widgets/premium-testimonials.php:166 widgets/premium-videobox.php:75
|
1113 |
#: widgets/premium-banner.php:111 widgets/premium-banner.php:342
|
1114 |
#: widgets/premium-banner.php:373 widgets/premium-button.php:77
|
1115 |
#: widgets/premium-button.php:103 widgets/premium-dual-header.php:131
|
1116 |
+
#: widgets/premium-dual-header.php:161 widgets/premium-grid.php:414
|
1117 |
+
#: widgets/premium-grid.php:434 widgets/premium-image-button.php:72
|
1118 |
#: widgets/premium-image-button.php:98 widgets/premium-image-scroll.php:122
|
1119 |
#: widgets/premium-image-scroll.php:148 widgets/premium-image-separator.php:147
|
1120 |
#: widgets/premium-image-separator.php:159
|
1183 |
msgstr ""
|
1184 |
|
1185 |
#: widgets/premium-banner.php:183 widgets/premium-blog.php:65
|
1186 |
+
#: widgets/premium-button.php:117 widgets/premium-grid.php:540
|
1187 |
#: widgets/premium-image-button.php:112 widgets/premium-person.php:118
|
1188 |
msgid "Hover Effect"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: widgets/premium-banner.php:186 widgets/premium-blog.php:69
|
1192 |
+
#: widgets/premium-blog.php:90 widgets/premium-blog.php:462
|
1193 |
+
#: widgets/premium-button.php:121 widgets/premium-grid.php:544
|
1194 |
#: widgets/premium-image-button.php:116 widgets/premium-modalbox.php:91
|
1195 |
#: widgets/premium-person.php:121 widgets/premium-progressbar.php:154
|
1196 |
msgid "None"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
#: widgets/premium-banner.php:187 widgets/premium-blog.php:70
|
1200 |
+
#: widgets/premium-grid.php:545 widgets/premium-person.php:122
|
1201 |
msgid "Zoom In"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
#: widgets/premium-banner.php:188 widgets/premium-blog.php:71
|
1205 |
+
#: widgets/premium-grid.php:546 widgets/premium-person.php:123
|
1206 |
msgid "Zoom Out"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
#: widgets/premium-banner.php:189 widgets/premium-blog.php:72
|
1210 |
+
#: widgets/premium-grid.php:547 widgets/premium-person.php:124
|
1211 |
msgid "Scale"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: widgets/premium-banner.php:190 widgets/premium-blog.php:73
|
1215 |
+
#: widgets/premium-grid.php:548 widgets/premium-person.php:125
|
1216 |
msgid "Grayscale"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
#: widgets/premium-banner.php:191 widgets/premium-blog.php:74
|
1220 |
+
#: widgets/premium-grid.php:549 widgets/premium-person.php:126
|
1221 |
msgid "Blur"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
#: widgets/premium-banner.php:192 widgets/premium-blog.php:75
|
1225 |
+
#: widgets/premium-grid.php:550 widgets/premium-person.php:127
|
1226 |
msgid "Bright"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: widgets/premium-banner.php:193 widgets/premium-blog.php:76
|
1230 |
+
#: widgets/premium-grid.php:551 widgets/premium-person.php:128
|
1231 |
msgid "Sepia"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: widgets/premium-banner.php:201 widgets/premium-contactform.php:130
|
1235 |
+
#: widgets/premium-contactform.php:212 widgets/premium-grid.php:366
|
1236 |
+
#: widgets/premium-grid.php:520 widgets/premium-maps.php:264
|
1237 |
#: widgets/premium-person.php:94 widgets/premium-person.php:572
|
1238 |
#: widgets/premium-progressbar.php:246 widgets/premium-progressbar.php:581
|
1239 |
msgid "Height"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: widgets/premium-banner.php:204 widgets/premium-carousel.php:559
|
1243 |
+
#: widgets/premium-grid.php:572
|
1244 |
msgid "Default"
|
1245 |
msgstr ""
|
1246 |
|
1294 |
"this class for your customizations."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: widgets/premium-banner.php:260 widgets/premium-blog.php:823
|
1298 |
+
#: widgets/premium-carousel.php:96 widgets/premium-grid.php:821
|
1299 |
#: widgets/premium-modalbox.php:69 widgets/premium-modalbox.php:166
|
1300 |
#: widgets/premium-modalbox.php:188 widgets/premium-testimonials.php:208
|
1301 |
#: widgets/premium-testimonials.php:383 widgets/premium-vscroll.php:63
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: widgets/premium-banner.php:296 widgets/premium-banner.php:303
|
1326 |
+
#: widgets/premium-banner.php:610 widgets/premium-grid.php:394
|
1327 |
+
#: widgets/premium-grid.php:857 widgets/premium-maps.php:211
|
1328 |
+
#: widgets/premium-maps.php:473 widgets/premium-person.php:206
|
1329 |
#: widgets/premium-person.php:475 widgets/premium-pricing-table.php:263
|
1330 |
#: widgets/premium-pricing-table.php:274 widgets/premium-pricing-table.php:486
|
1331 |
+
#: widgets/premium-pricing-table.php:1256 widgets/premium-videobox.php:312
|
1332 |
msgid "Description"
|
1333 |
msgstr ""
|
1334 |
|
1348 |
#: widgets/premium-modalbox.php:458 widgets/premium-pricing-table.php:86
|
1349 |
#: widgets/premium-pricing-table.php:196 widgets/premium-pricing-table.php:297
|
1350 |
#: widgets/premium-pricing-table.php:386 widgets/premium-pricing-table.php:1102
|
1351 |
+
#: widgets/premium-pricing-table.php:1266 widgets/premium-videobox.php:325
|
1352 |
msgid "Text"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: widgets/premium-banner.php:338 widgets/premium-button.php:73
|
1356 |
+
#: widgets/premium-dual-header.php:127 widgets/premium-grid.php:410
|
1357 |
#: widgets/premium-image-button.php:68 widgets/premium-pricing-table.php:308
|
1358 |
msgid "Link Type"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
#: widgets/premium-banner.php:341 widgets/premium-button.php:76
|
1362 |
+
#: widgets/premium-dual-header.php:130 widgets/premium-grid.php:413
|
1363 |
#: widgets/premium-image-button.php:71 widgets/premium-image-scroll.php:121
|
1364 |
#: widgets/premium-image-scroll.php:134 widgets/premium-image-separator.php:146
|
1365 |
#: widgets/premium-image-separator.php:173
|
1366 |
+
#: widgets/premium-pricing-table.php:311 widgets/premium-videobox.php:135
|
1367 |
msgid "URL"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: widgets/premium-banner.php:389 widgets/premium-blog.php:257
|
1371 |
+
#: widgets/premium-blog.php:521 widgets/premium-button.php:428
|
1372 |
#: widgets/premium-countdown.php:122 widgets/premium-dual-header.php:177
|
1373 |
#: widgets/premium-fancytext.php:118 widgets/premium-image-button.php:332
|
1374 |
+
#: widgets/premium-maps.php:444 widgets/premium-maps.php:526
|
1375 |
#: widgets/premium-modalbox.php:487 widgets/premium-person.php:216
|
1376 |
#: widgets/premium-pricing-table.php:235 widgets/premium-title.php:122
|
1377 |
msgid "Alignment"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: widgets/premium-banner.php:393 widgets/premium-blog.php:261
|
1381 |
+
#: widgets/premium-blog.php:525 widgets/premium-button.php:180
|
1382 |
#: widgets/premium-button.php:432 widgets/premium-countdown.php:126
|
1383 |
#: widgets/premium-counter.php:183 widgets/premium-dual-header.php:181
|
1384 |
#: widgets/premium-fancytext.php:122 widgets/premium-fancytext.php:311
|
1385 |
+
#: widgets/premium-grid.php:219 widgets/premium-grid.php:602
|
1386 |
#: widgets/premium-image-button.php:336 widgets/premium-image-separator.php:112
|
1387 |
+
#: widgets/premium-maps.php:448 widgets/premium-maps.php:530
|
1388 |
#: widgets/premium-modalbox.php:491 widgets/premium-person.php:220
|
1389 |
#: widgets/premium-pricing-table.php:239 widgets/premium-pricing-table.php:438
|
1390 |
#: widgets/premium-progressbar.php:170 widgets/premium-title.php:126
|
1393 |
msgid "Left"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: widgets/premium-banner.php:397 widgets/premium-blog.php:265
|
1397 |
+
#: widgets/premium-blog.php:529 widgets/premium-button.php:436
|
1398 |
#: widgets/premium-countdown.php:130 widgets/premium-dual-header.php:185
|
1399 |
#: widgets/premium-fancytext.php:126 widgets/premium-fancytext.php:315
|
1400 |
+
#: widgets/premium-grid.php:223 widgets/premium-grid.php:606
|
1401 |
#: widgets/premium-image-button.php:340 widgets/premium-image-separator.php:116
|
1402 |
+
#: widgets/premium-maps.php:452 widgets/premium-maps.php:534
|
1403 |
#: widgets/premium-modalbox.php:495 widgets/premium-person.php:224
|
1404 |
#: widgets/premium-pricing-table.php:243 widgets/premium-progressbar.php:174
|
1405 |
#: widgets/premium-title.php:130 widgets/premium-title.php:231
|
1406 |
msgid "Center"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: widgets/premium-banner.php:401 widgets/premium-blog.php:269
|
1410 |
+
#: widgets/premium-blog.php:533 widgets/premium-button.php:181
|
1411 |
#: widgets/premium-button.php:440 widgets/premium-countdown.php:134
|
1412 |
#: widgets/premium-counter.php:182 widgets/premium-dual-header.php:189
|
1413 |
#: widgets/premium-fancytext.php:130 widgets/premium-fancytext.php:319
|
1414 |
+
#: widgets/premium-grid.php:227 widgets/premium-grid.php:610
|
1415 |
#: widgets/premium-image-button.php:344 widgets/premium-image-separator.php:120
|
1416 |
+
#: widgets/premium-maps.php:456 widgets/premium-maps.php:538
|
1417 |
#: widgets/premium-modalbox.php:499 widgets/premium-person.php:228
|
1418 |
#: widgets/premium-pricing-table.php:247 widgets/premium-pricing-table.php:437
|
1419 |
#: widgets/premium-progressbar.php:178 widgets/premium-title.php:134
|
1422 |
msgid "Right"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: widgets/premium-banner.php:417 widgets/premium-grid.php:625
|
1426 |
msgid "Responsive"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: widgets/premium-banner.php:423 widgets/premium-grid.php:630
|
1430 |
msgid "Responsive Controls"
|
1431 |
msgstr ""
|
1432 |
|
1436 |
"may enable this option which will hide the description text."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: widgets/premium-banner.php:431 widgets/premium-grid.php:637
|
1440 |
msgid "Minimum Size"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: widgets/premium-banner.php:433 widgets/premium-grid.php:639
|
1444 |
msgid "Note: minimum size for extra small screens is 1px."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: widgets/premium-banner.php:443 widgets/premium-grid.php:648
|
1448 |
msgid "Maximum Size"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: widgets/premium-banner.php:445 widgets/premium-grid.php:650
|
1452 |
msgid "Note: maximum size for extra small screens is 767px."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: widgets/premium-banner.php:464 widgets/premium-banner.php:700
|
1456 |
+
#: widgets/premium-blog.php:852 widgets/premium-blog.php:997
|
1457 |
+
#: widgets/premium-blog.php:1068 widgets/premium-blog.php:1105
|
1458 |
+
#: widgets/premium-blog.php:1202 widgets/premium-blog.php:1323
|
1459 |
#: widgets/premium-button.php:528 widgets/premium-button.php:669
|
1460 |
+
#: widgets/premium-carousel.php:612 widgets/premium-contactform.php:487
|
1461 |
#: widgets/premium-contactform.php:543 widgets/premium-countdown.php:397
|
1462 |
#: widgets/premium-countdown.php:474 widgets/premium-counter.php:287
|
1463 |
#: widgets/premium-fancytext.php:372 widgets/premium-fancytext.php:430
|
1464 |
+
#: widgets/premium-fancytext.php:477 widgets/premium-grid.php:1007
|
1465 |
+
#: widgets/premium-grid.php:1101 widgets/premium-grid.php:1223
|
1466 |
#: widgets/premium-modalbox.php:625 widgets/premium-modalbox.php:732
|
1467 |
#: widgets/premium-modalbox.php:826 widgets/premium-modalbox.php:896
|
1468 |
#: widgets/premium-modalbox.php:948 widgets/premium-modalbox.php:1069
|
1469 |
#: widgets/premium-modalbox.php:1129 widgets/premium-pricing-table.php:551
|
1470 |
#: widgets/premium-pricing-table.php:1646
|
1471 |
#: widgets/premium-pricing-table.php:1663 widgets/premium-title.php:303
|
1472 |
+
#: widgets/premium-title.php:325 widgets/premium-videobox.php:588
|
1473 |
+
#: widgets/premium-vscroll.php:526 widgets/premium-vscroll.php:620
|
1474 |
+
#: widgets/premium-vscroll.php:679
|
1475 |
msgid "Background Color"
|
1476 |
msgstr ""
|
1477 |
|
1483 |
msgid "Hover Opacity"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: widgets/premium-banner.php:525
|
1487 |
+
msgid "Hover CSS Filter"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: widgets/premium-banner.php:541 widgets/premium-banner.php:728
|
1491 |
+
#: widgets/premium-blog.php:1132 widgets/premium-blog.php:1216
|
1492 |
+
#: widgets/premium-blog.php:1359 widgets/premium-button.php:550
|
1493 |
+
#: widgets/premium-button.php:692 widgets/premium-carousel.php:795
|
1494 |
#: widgets/premium-contactform.php:274 widgets/premium-contactform.php:510
|
1495 |
#: widgets/premium-countdown.php:438 widgets/premium-counter.php:360
|
1496 |
+
#: widgets/premium-dual-header.php:353 widgets/premium-dual-header.php:550
|
1497 |
+
#: widgets/premium-grid.php:700 widgets/premium-grid.php:757
|
1498 |
+
#: widgets/premium-grid.php:906 widgets/premium-grid.php:1029
|
1499 |
+
#: widgets/premium-grid.php:1123 widgets/premium-grid.php:1260
|
1500 |
+
#: widgets/premium-grid.php:1384 widgets/premium-grid.php:1472
|
1501 |
#: widgets/premium-image-button.php:450 widgets/premium-image-button.php:637
|
1502 |
+
#: widgets/premium-image-scroll.php:400 widgets/premium-image-scroll.php:435
|
1503 |
+
#: widgets/premium-maps.php:572 widgets/premium-modalbox.php:655
|
1504 |
#: widgets/premium-modalbox.php:759 widgets/premium-modalbox.php:916
|
1505 |
#: widgets/premium-modalbox.php:968 widgets/premium-modalbox.php:1093
|
1506 |
#: widgets/premium-modalbox.php:1153 widgets/premium-modalbox.php:1267
|
1511 |
#: widgets/premium-pricing-table.php:1718
|
1512 |
#: widgets/premium-pricing-table.php:1796 widgets/premium-progressbar.php:261
|
1513 |
#: widgets/premium-testimonials.php:541 widgets/premium-title.php:512
|
1514 |
+
#: widgets/premium-videobox.php:391 widgets/premium-videobox.php:483
|
1515 |
+
#: widgets/premium-vscroll.php:415 widgets/premium-vscroll.php:540
|
1516 |
+
#: widgets/premium-vscroll.php:713
|
1517 |
msgid "Border Radius"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: widgets/premium-banner.php:561 widgets/premium-banner.php:617
|
1521 |
+
#: widgets/premium-banner.php:662 widgets/premium-blog.php:739
|
1522 |
+
#: widgets/premium-blog.php:784 widgets/premium-blog.php:830
|
1523 |
+
#: widgets/premium-blog.php:902 widgets/premium-blog.php:969
|
1524 |
+
#: widgets/premium-blog.php:1054 widgets/premium-blog.php:1091
|
1525 |
+
#: widgets/premium-blog.php:1177 widgets/premium-blog.php:1247
|
1526 |
+
#: widgets/premium-blog.php:1286 widgets/premium-carousel.php:573
|
1527 |
+
#: widgets/premium-carousel.php:732 widgets/premium-countdown.php:371
|
1528 |
#: widgets/premium-countdown.php:459 widgets/premium-counter.php:211
|
1529 |
#: widgets/premium-counter.php:388 widgets/premium-counter.php:428
|
1530 |
#: widgets/premium-fancytext.php:347 widgets/premium-fancytext.php:405
|
1531 |
+
#: widgets/premium-fancytext.php:452 widgets/premium-grid.php:834
|
1532 |
+
#: widgets/premium-grid.php:865 widgets/premium-grid.php:993
|
1533 |
+
#: widgets/premium-grid.php:1087 widgets/premium-grid.php:1178
|
1534 |
+
#: widgets/premium-maps.php:397 widgets/premium-maps.php:480
|
1535 |
#: widgets/premium-modalbox.php:530 widgets/premium-modalbox.php:804
|
1536 |
#: widgets/premium-modalbox.php:885 widgets/premium-modalbox.php:937
|
1537 |
#: widgets/premium-modalbox.php:1054 widgets/premium-modalbox.php:1114
|
1549 |
#: widgets/premium-progressbar.php:552 widgets/premium-testimonials.php:280
|
1550 |
#: widgets/premium-testimonials.php:305 widgets/premium-testimonials.php:355
|
1551 |
#: widgets/premium-testimonials.php:391 widgets/premium-testimonials.php:447
|
1552 |
+
#: widgets/premium-title.php:263 widgets/premium-videobox.php:423
|
1553 |
msgid "Color"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: widgets/premium-banner.php:575
|
1557 |
msgid "Title Background"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: widgets/premium-banner.php:578
|
1561 |
msgid "Choose a background color for the title"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: widgets/premium-banner.php:600 widgets/premium-banner.php:641
|
1565 |
+
#: widgets/premium-banner.php:740 widgets/premium-dual-header.php:366
|
1566 |
+
#: widgets/premium-dual-header.php:563 widgets/premium-grid.php:769
|
1567 |
+
#: widgets/premium-grid.php:918 widgets/premium-grid.php:1041
|
1568 |
+
#: widgets/premium-grid.php:1135 widgets/premium-maps.php:585
|
1569 |
#: widgets/premium-modalbox.php:697 widgets/premium-modalbox.php:775
|
1570 |
#: widgets/premium-pricing-table.php:1440
|
1571 |
#: widgets/premium-pricing-table.php:1518
|
1572 |
#: widgets/premium-pricing-table.php:1731
|
1573 |
#: widgets/premium-pricing-table.php:1809 widgets/premium-title.php:443
|
1574 |
+
#: widgets/premium-videobox.php:403 widgets/premium-videobox.php:614
|
1575 |
+
#: widgets/premium-vscroll.php:552 widgets/premium-vscroll.php:635
|
1576 |
+
#: widgets/premium-vscroll.php:694
|
1577 |
msgid "Shadow"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: widgets/premium-banner.php:676 widgets/premium-blog.php:761
|
1581 |
+
#: widgets/premium-blog.php:807 widgets/premium-blog.php:924
|
1582 |
+
#: widgets/premium-blog.php:983 widgets/premium-blog.php:1257
|
1583 |
#: widgets/premium-modalbox.php:547 widgets/premium-person.php:534
|
1584 |
+
#: widgets/premium-videobox.php:437 widgets/premium-videobox.php:565
|
1585 |
msgid "Hover Color"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: widgets/premium-banner.php:710 widgets/premium-blog.php:1011
|
1589 |
msgid "Hover Background Color"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: widgets/premium-banner.php:748 widgets/premium-blog.php:882
|
1593 |
+
#: widgets/premium-blog.php:1154 widgets/premium-blog.php:1227
|
1594 |
+
#: widgets/premium-blog.php:1389 widgets/premium-button.php:602
|
1595 |
#: widgets/premium-button.php:759 widgets/premium-contactform.php:254
|
1596 |
+
#: widgets/premium-contactform.php:456 widgets/premium-dual-header.php:388
|
1597 |
+
#: widgets/premium-dual-header.php:585 widgets/premium-grid.php:730
|
1598 |
+
#: widgets/premium-grid.php:808 widgets/premium-grid.php:945
|
1599 |
+
#: widgets/premium-grid.php:1059 widgets/premium-grid.php:1153
|
1600 |
+
#: widgets/premium-grid.php:1290 widgets/premium-grid.php:1414
|
1601 |
+
#: widgets/premium-grid.php:1502 widgets/premium-image-button.php:503
|
1602 |
+
#: widgets/premium-image-button.php:704 widgets/premium-maps.php:432
|
1603 |
+
#: widgets/premium-maps.php:514 widgets/premium-maps.php:606
|
1604 |
#: widgets/premium-modalbox.php:674 widgets/premium-modalbox.php:985
|
1605 |
#: widgets/premium-modalbox.php:1170 widgets/premium-modalbox.php:1299
|
1606 |
#: widgets/premium-pricing-table.php:565 widgets/premium-pricing-table.php:662
|
1611 |
#: widgets/premium-pricing-table.php:1538
|
1612 |
#: widgets/premium-pricing-table.php:1751
|
1613 |
#: widgets/premium-pricing-table.php:1829 widgets/premium-testimonials.php:560
|
1614 |
+
#: widgets/premium-title.php:536 widgets/premium-videobox.php:498
|
1615 |
+
#: widgets/premium-videobox.php:602 widgets/premium-vscroll.php:454
|
1616 |
+
#: widgets/premium-vscroll.php:735
|
1617 |
msgid "Padding"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: widgets/premium-blog.php:67 widgets/premium-grid.php:542
|
1621 |
msgid "Choose a hover effect for the image"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: widgets/premium-blog.php:77 widgets/premium-grid.php:552
|
1625 |
#: widgets/premium-person.php:129
|
1626 |
msgid "Translate"
|
1627 |
msgstr ""
|
1655 |
msgid "Display Options"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: widgets/premium-blog.php:111 widgets/premium-grid.php:505
|
1659 |
msgid "Skin"
|
1660 |
msgstr ""
|
1661 |
|
1683 |
msgid "Number of Columns"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: widgets/premium-blog.php:165 widgets/premium-grid.php:151
|
1687 |
msgid "1 Column"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: widgets/premium-blog.php:166 widgets/premium-grid.php:152
|
1691 |
msgid "2 Columns"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: widgets/premium-blog.php:167 widgets/premium-grid.php:153
|
1695 |
msgid "3 Columns"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: widgets/premium-blog.php:168 widgets/premium-grid.php:154
|
1699 |
msgid "4 Columns"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: widgets/premium-blog.php:184
|
1703 |
msgid "Thumbnail Min Height"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: widgets/premium-blog.php:201
|
1707 |
msgid "Thumbnail Max Height"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: widgets/premium-blog.php:218
|
1711 |
msgid "Thumbnail Fit"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: widgets/premium-blog.php:221 widgets/premium-grid.php:119
|
1715 |
msgid "Cover"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: widgets/premium-blog.php:222 widgets/premium-grid.php:118
|
1719 |
msgid "Fill"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: widgets/premium-blog.php:223
|
1723 |
msgid "Contain"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: widgets/premium-blog.php:237 widgets/premium-pricing-table.php:1164
|
1727 |
msgid "Spacing"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: widgets/premium-blog.php:284
|
1731 |
msgid "Post Options"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: widgets/premium-blog.php:290
|
1735 |
msgid "Excerpt"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: widgets/premium-blog.php:292
|
1739 |
msgid ""
|
1740 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
1741 |
"default except length is 55"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: widgets/premium-blog.php:299
|
1745 |
msgid "Pull From Content Box"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: widgets/premium-blog.php:301
|
1749 |
msgid "Post content will be pulled from post content box"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: widgets/premium-blog.php:309
|
1753 |
msgid "Excerpt Length"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: widgets/premium-blog.php:320
|
1757 |
msgid "Excerpt Type"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: widgets/premium-blog.php:323 widgets/premium-carousel.php:130
|
1761 |
+
#: widgets/premium-vscroll.php:470
|
1762 |
msgid "Dots"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: widgets/premium-blog.php:333
|
1766 |
msgid "Link Text"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: widgets/premium-blog.php:335
|
1770 |
msgid "continue reading"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: widgets/premium-blog.php:345
|
1774 |
msgid "Author Meta"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: widgets/premium-blog.php:353
|
1778 |
msgid "Date Meta"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: widgets/premium-blog.php:361
|
1782 |
msgid "Categories Meta"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: widgets/premium-blog.php:363
|
1786 |
msgid "Display or hide categories meta"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: widgets/premium-blog.php:370
|
1790 |
msgid "Comments Meta"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: widgets/premium-blog.php:371
|
1794 |
msgid "Display or hide comments meta"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: widgets/premium-blog.php:379
|
1798 |
msgid "Tags Meta"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: widgets/premium-blog.php:381
|
1802 |
msgid "Display or hide post tags"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: widgets/premium-blog.php:388 widgets/premium-blog.php:940
|
1806 |
msgid "Post Format Icon"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: widgets/premium-blog.php:398 widgets/premium-image-scroll.php:174
|
1810 |
msgid "Advanced Settings"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: widgets/premium-blog.php:404
|
1814 |
msgid "Filter By Category"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: widgets/premium-blog.php:406
|
1818 |
msgid "Get posts for specific category(s)"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: widgets/premium-blog.php:415
|
1822 |
msgid "Filter Tabs"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: widgets/premium-blog.php:425
|
1826 |
msgid "Filter By Tag"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: widgets/premium-blog.php:427
|
1830 |
msgid "Get posts for specific tag(s)"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: widgets/premium-blog.php:436
|
1834 |
msgid "Filter By Author"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: widgets/premium-blog.php:438
|
1838 |
msgid "Get posts for specific author(s)"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: widgets/premium-blog.php:447
|
1842 |
msgid "Posts to Exclude"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: widgets/premium-blog.php:449
|
1846 |
msgid "Add post(s) to exclude"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: widgets/premium-blog.php:458
|
1850 |
msgid "Order By"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: widgets/premium-blog.php:463 widgets/premium-videobox.php:79
|
1854 |
msgid "ID"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: widgets/premium-blog.php:464 widgets/premium-testimonials.php:50
|
1858 |
#: widgets/premium-testimonials.php:297
|
1859 |
msgid "Author"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: widgets/premium-blog.php:466 widgets/premium-person.php:149
|
1863 |
#: widgets/premium-person.php:402 widgets/premium-testimonials.php:86
|
1864 |
#: widgets/premium-testimonials.php:127
|
1865 |
msgid "Name"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: widgets/premium-blog.php:467
|
1869 |
msgid "Date"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: widgets/premium-blog.php:468
|
1873 |
msgid "Last Modified"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: widgets/premium-blog.php:469
|
1877 |
msgid "Random"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: widgets/premium-blog.php:470
|
1881 |
msgid "Number of Comments"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: widgets/premium-blog.php:478
|
1885 |
msgid "Order"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: widgets/premium-blog.php:482
|
1889 |
msgid "Descending"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: widgets/premium-blog.php:483
|
1893 |
msgid "Ascending"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: widgets/premium-blog.php:491
|
1897 |
msgid "Pagination"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: widgets/premium-blog.php:493
|
1901 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: widgets/premium-blog.php:499
|
1905 |
msgid "Next Page String"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: widgets/premium-blog.php:501
|
1909 |
msgid "Next"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: widgets/premium-blog.php:510
|
1913 |
msgid "Previous Page String"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: widgets/premium-blog.php:512
|
1917 |
msgid "Previous"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: widgets/premium-blog.php:549
|
1921 |
msgid "Links in New Tab"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: widgets/premium-blog.php:551
|
1925 |
msgid "Enable links to be opened in a new tab"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: widgets/premium-blog.php:558
|
1929 |
msgid "Posts Per Page"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: widgets/premium-blog.php:559
|
1933 |
msgid "Choose how many posts do you want to be displayed per page"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: widgets/premium-blog.php:568
|
1937 |
msgid "Total Number of Posts"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: widgets/premium-blog.php:580
|
1941 |
msgid "Offset Count"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: widgets/premium-blog.php:581
|
1945 |
msgid "The index of post to start with"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: widgets/premium-blog.php:601
|
1949 |
msgid "Enable Carousel"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: widgets/premium-blog.php:608 widgets/premium-carousel.php:253
|
1953 |
msgid "Fade"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: widgets/premium-blog.php:618
|
1957 |
msgid "Auto Play"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: widgets/premium-blog.php:628 widgets/premium-carousel.php:293
|
1961 |
msgid "Autoplay Speed"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: widgets/premium-blog.php:629 widgets/premium-carousel.php:294
|
1965 |
msgid ""
|
1966 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
1967 |
"in milliseconds (ms)"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: widgets/premium-blog.php:641
|
1971 |
msgid "Arrows Position"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: widgets/premium-blog.php:676 widgets/premium-button.php:511
|
1975 |
#: widgets/premium-button.php:636 widgets/premium-button.php:653
|
1976 |
#: widgets/premium-image-button.php:415 widgets/premium-image-button.php:537
|
1977 |
#: widgets/premium-image-button.php:554 widgets/premium-image-scroll.php:279
|
1979 |
msgid "Icon Color"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: widgets/premium-blog.php:690 widgets/premium-grid.php:1077
|
1983 |
#: widgets/premium-image-button.php:570 widgets/premium-image-button.php:587
|
1984 |
#: widgets/premium-image-button.php:612 widgets/premium-image-scroll.php:292
|
1985 |
msgid "Overlay Color"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: widgets/premium-blog.php:704 widgets/premium-carousel.php:630
|
1989 |
#: widgets/premium-contactform.php:554
|
1990 |
msgid "Border Color"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: widgets/premium-blog.php:777
|
1994 |
msgid "Meta"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: widgets/premium-blog.php:871 widgets/premium-blog.php:1143
|
1998 |
+
#: widgets/premium-blog.php:1378 widgets/premium-button.php:592
|
1999 |
#: widgets/premium-button.php:749 widgets/premium-contactform.php:286
|
2000 |
+
#: widgets/premium-dual-header.php:375 widgets/premium-dual-header.php:572
|
2001 |
+
#: widgets/premium-grid.php:719 widgets/premium-grid.php:797
|
2002 |
+
#: widgets/premium-grid.php:934 widgets/premium-grid.php:1049
|
2003 |
+
#: widgets/premium-grid.php:1143 widgets/premium-grid.php:1279
|
2004 |
+
#: widgets/premium-grid.php:1403 widgets/premium-grid.php:1491
|
2005 |
#: widgets/premium-image-button.php:493 widgets/premium-image-button.php:694
|
2006 |
+
#: widgets/premium-maps.php:420 widgets/premium-maps.php:503
|
2007 |
+
#: widgets/premium-maps.php:594 widgets/premium-modalbox.php:1288
|
2008 |
#: widgets/premium-pricing-table.php:643 widgets/premium-pricing-table.php:730
|
2009 |
#: widgets/premium-pricing-table.php:814 widgets/premium-pricing-table.php:884
|
2010 |
#: widgets/premium-pricing-table.php:931 widgets/premium-pricing-table.php:976
|
2018 |
#: widgets/premium-pricing-table.php:1818 widgets/premium-progressbar.php:318
|
2019 |
#: widgets/premium-progressbar.php:376 widgets/premium-progressbar.php:421
|
2020 |
#: widgets/premium-testimonials.php:417 widgets/premium-title.php:430
|
2021 |
+
#: widgets/premium-title.php:524 widgets/premium-vscroll.php:440
|
2022 |
+
#: widgets/premium-vscroll.php:724
|
2023 |
msgid "Margin"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: widgets/premium-blog.php:895
|
2027 |
msgid "Tags"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: widgets/premium-blog.php:950 widgets/premium-blog.php:1191
|
2031 |
+
#: widgets/premium-button.php:412 widgets/premium-carousel.php:590
|
2032 |
#: widgets/premium-counter.php:228 widgets/premium-counter.php:250
|
2033 |
#: widgets/premium-image-button.php:316 widgets/premium-modalbox.php:862
|
2034 |
#: widgets/premium-pricing-table.php:396 widgets/premium-pricing-table.php:415
|
2035 |
#: widgets/premium-pricing-table.php:538 widgets/premium-pricing-table.php:1154
|
2036 |
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2037 |
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2038 |
+
#: widgets/premium-videobox.php:451
|
2039 |
msgid "Size"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: widgets/premium-blog.php:952
|
2043 |
msgid "Choose icon size in (PX, EM)"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: widgets/premium-blog.php:1027
|
2047 |
msgid "Pagination Style"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: widgets/premium-blog.php:1047 widgets/premium-button.php:492
|
2051 |
+
#: widgets/premium-contactform.php:469 widgets/premium-grid.php:987
|
2052 |
+
#: widgets/premium-grid.php:1324 widgets/premium-image-button.php:396
|
2053 |
+
#: widgets/premium-image-scroll.php:307 widgets/premium-image-scroll.php:386
|
2054 |
#: widgets/premium-modalbox.php:615 widgets/premium-modalbox.php:878
|
2055 |
#: widgets/premium-modalbox.php:1047 widgets/premium-pricing-table.php:1401
|
2056 |
+
#: widgets/premium-pricing-table.php:1692 widgets/premium-vscroll.php:586
|
2057 |
msgid "Normal"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: widgets/premium-blog.php:1084 widgets/premium-button.php:614
|
2061 |
+
#: widgets/premium-contactform.php:527 widgets/premium-grid.php:1071
|
2062 |
+
#: widgets/premium-grid.php:1427 widgets/premium-image-button.php:515
|
2063 |
+
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:340
|
2064 |
+
#: widgets/premium-image-scroll.php:421 widgets/premium-modalbox.php:722
|
2065 |
#: widgets/premium-modalbox.php:930 widgets/premium-modalbox.php:1107
|
2066 |
#: widgets/premium-pricing-table.php:1479
|
2067 |
#: widgets/premium-pricing-table.php:1770
|
2068 |
msgid "Hover"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: widgets/premium-blog.php:1240
|
2072 |
msgid "Read More Text"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: widgets/premium-blog.php:1277 widgets/premium-grid.php:319
|
2076 |
+
#: widgets/premium-grid.php:1169
|
2077 |
msgid "Filter"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: widgets/premium-blog.php:1300 widgets/premium-carousel.php:749
|
2081 |
+
#: widgets/premium-grid.php:1192
|
2082 |
msgid "Active Color"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: widgets/premium-blog.php:1337 widgets/premium-grid.php:1237
|
2086 |
msgid "Background Active Color"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: widgets/premium-blog.php:1686 widgets/premium-grid.php:260
|
2090 |
msgid "All"
|
2091 |
msgstr ""
|
2092 |
|
2176 |
msgid "Tilted Right"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: widgets/premium-button.php:192 widgets/premium-carousel.php:555
|
2180 |
#: widgets/premium-countdown.php:61 widgets/premium-counter.php:272
|
2181 |
#: widgets/premium-title.php:66
|
2182 |
msgid "Style"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
#: widgets/premium-button.php:210 widgets/premium-button.php:221
|
2202 |
+
#: widgets/premium-button.php:234 widgets/premium-carousel.php:704
|
2203 |
#: widgets/premium-counter.php:204 widgets/premium-image-button.php:198
|
2204 |
#: widgets/premium-image-button.php:209 widgets/premium-image-button.php:222
|
2205 |
#: widgets/premium-image-scroll.php:230 widgets/premium-modalbox.php:87
|
2277 |
|
2278 |
#: widgets/premium-button.php:498 widgets/premium-button.php:620
|
2279 |
#: widgets/premium-contactform.php:474 widgets/premium-contactform.php:532
|
2280 |
+
#: widgets/premium-dual-header.php:246 widgets/premium-dual-header.php:443
|
2281 |
+
#: widgets/premium-grid.php:1330 widgets/premium-image-button.php:402
|
2282 |
#: widgets/premium-image-button.php:521 widgets/premium-pricing-table.php:1573
|
2283 |
+
#: widgets/premium-videobox.php:551 widgets/premium-vscroll.php:592
|
2284 |
+
#: widgets/premium-vscroll.php:651
|
2285 |
msgid "Text Color"
|
2286 |
msgstr ""
|
2287 |
|
2350 |
msgid "Enable or disable navigation dots"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: widgets/premium-carousel.php:140 widgets/premium-grid.php:964
|
2354 |
#: widgets/premium-pricing-table.php:434 widgets/premium-vscroll.php:186
|
2355 |
msgid "Position"
|
2356 |
msgstr ""
|
2534 |
"mobile layout will appear (Default: 768px)."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: widgets/premium-carousel.php:412 widgets/premium-grid.php:661
|
2538 |
+
msgid "Helpful Documentations"
|
2539 |
+
msgstr ""
|
2540 |
+
|
2541 |
+
#: widgets/premium-carousel.php:419
|
2542 |
+
#, php-format
|
2543 |
+
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2544 |
+
msgstr ""
|
2545 |
+
|
2546 |
+
#: widgets/premium-carousel.php:428
|
2547 |
msgid "Navigation Arrows"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: widgets/premium-carousel.php:438
|
2551 |
msgid "Right Icon"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: widgets/premium-carousel.php:468
|
2555 |
msgid "Bottom Icon"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: widgets/premium-carousel.php:497
|
2559 |
msgid "Top Icon"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: widgets/premium-carousel.php:526
|
2563 |
msgid "Left Icon"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: widgets/premium-carousel.php:560 widgets/premium-counter.php:277
|
2567 |
msgid "Circle Background"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: widgets/premium-carousel.php:561 widgets/premium-counter.php:278
|
2571 |
msgid "Square Background"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: widgets/premium-carousel.php:562
|
2575 |
msgid "Circle border"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: widgets/premium-carousel.php:563
|
2579 |
msgid "Square border"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: widgets/premium-carousel.php:648
|
2583 |
msgid "Border Size"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: widgets/premium-carousel.php:671
|
2587 |
msgid "Position (PX)"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: widgets/premium-carousel.php:694 widgets/premium-vscroll.php:338
|
2591 |
msgid "Navigation Dots"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: widgets/premium-carousel.php:766
|
2595 |
msgid "Ripple Effect"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: widgets/premium-carousel.php:767
|
2599 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: widgets/premium-carousel.php:777
|
2603 |
msgid "Ripple Color"
|
2604 |
msgstr ""
|
2605 |
|
2616 |
msgstr ""
|
2617 |
|
2618 |
#: widgets/premium-contactform.php:72 widgets/premium-contactform.php:189
|
2619 |
+
#: widgets/premium-grid.php:346 widgets/premium-modalbox.php:1022
|
2620 |
#: widgets/premium-modalbox.php:1192 widgets/premium-person.php:67
|
2621 |
msgid "Width"
|
2622 |
msgstr ""
|
2967 |
msgid "Premium"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: widgets/premium-dual-header.php:72 widgets/premium-dual-header.php:403
|
2971 |
msgid "Second Heading"
|
2972 |
msgstr ""
|
2973 |
|
2983 |
msgid "Enable or disable link"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: widgets/premium-dual-header.php:223 widgets/premium-dual-header.php:420
|
2987 |
msgid "Animated Background"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: widgets/premium-dual-header.php:231 widgets/premium-dual-header.php:428
|
2991 |
msgid "Background Style"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: widgets/premium-dual-header.php:234 widgets/premium-dual-header.php:431
|
2995 |
msgid ""
|
2996 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
2997 |
"style so the background will be clipped on the text."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: widgets/premium-dual-header.php:236 widgets/premium-dual-header.php:433
|
3001 |
msgid "Normal Background"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: widgets/premium-dual-header.php:237 widgets/premium-dual-header.php:434
|
3005 |
msgid "Clipped Background"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: widgets/premium-dual-header.php:276 widgets/premium-dual-header.php:473
|
3009 |
+
msgid "Stroke"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: widgets/premium-dual-header.php:286 widgets/premium-dual-header.php:483
|
3013 |
+
msgid "Stroke Text Color"
|
3014 |
+
msgstr ""
|
3015 |
+
|
3016 |
+
#: widgets/premium-dual-header.php:300 widgets/premium-dual-header.php:497
|
3017 |
+
msgid "Stroke Fill Color"
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: widgets/premium-dual-header.php:314 widgets/premium-dual-header.php:511
|
3021 |
+
msgid "Stroke Fill Width"
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
#: widgets/premium-fancytext.php:62
|
3025 |
msgid "Prefix"
|
3026 |
msgstr ""
|
3101 |
"5 seconds before backspace effect."
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: widgets/premium-fancytext.php:218 widgets/premium-videobox.php:182
|
3105 |
msgid "Loop"
|
3106 |
msgstr ""
|
3107 |
|
3167 |
msgstr ""
|
3168 |
|
3169 |
#: widgets/premium-grid.php:88
|
3170 |
+
msgid "Maximum Height"
|
3171 |
+
msgstr ""
|
3172 |
+
|
3173 |
+
#: widgets/premium-grid.php:91
|
3174 |
+
msgid "You may need to click `Apply` button after settings this option"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: widgets/premium-grid.php:115
|
3178 |
msgid "Images Fit"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: widgets/premium-grid.php:144
|
3182 |
msgid "Columns"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: widgets/premium-grid.php:155
|
3186 |
msgid "5 Columns"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: widgets/premium-grid.php:156
|
3190 |
msgid "6 Columns"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: widgets/premium-grid.php:157
|
3194 |
msgid "12 Columns"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: widgets/premium-grid.php:171 widgets/premium-grid.php:1303
|
3198 |
msgid "Load More Button"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: widgets/premium-grid.php:172
|
3202 |
msgid "Requires number of images larger than 6"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: widgets/premium-grid.php:179 widgets/premium-modalbox.php:274
|
3206 |
msgid "Button Text"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: widgets/premium-grid.php:181
|
3210 |
msgid "Load More"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: widgets/premium-grid.php:191
|
3214 |
msgid "Minimum Number of Images"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: widgets/premium-grid.php:193
|
3218 |
msgid "Set the minimum number of images before showing load more button"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: widgets/premium-grid.php:203
|
3222 |
msgid "Images to Show"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: widgets/premium-grid.php:205
|
3226 |
msgid "Set the minimum number of images to show with each click"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: widgets/premium-grid.php:215
|
3230 |
msgid "Button Alignment"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: widgets/premium-grid.php:245 widgets/premium-grid.php:293
|
3234 |
msgid "Categories"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
+
#: widgets/premium-grid.php:250
|
3238 |
msgid "First Category"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
+
#: widgets/premium-grid.php:258
|
3242 |
msgid "First Category Label"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: widgets/premium-grid.php:272 widgets/premium-grid.php:402
|
3246 |
msgid "Category"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: widgets/premium-grid.php:280
|
3250 |
msgid "Rotation Degrees"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: widgets/premium-grid.php:282
|
3254 |
msgid "Set rotation value in degrees"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: widgets/premium-grid.php:310
|
3258 |
msgid "Active Category Index"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: widgets/premium-grid.php:312
|
3262 |
msgid "Put the index of the default active category, default is 1"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: widgets/premium-grid.php:329 widgets/premium-grid.php:461
|
3266 |
msgid "Images"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: widgets/premium-grid.php:347 widgets/premium-grid.php:367
|
3270 |
msgid "Works only when layout set to 'Metro'"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: widgets/premium-grid.php:404
|
3274 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: widgets/premium-grid.php:447
|
3278 |
msgid "Whole Image Link"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: widgets/premium-grid.php:454
|
3282 |
msgid "Whole Image Lightbox"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: widgets/premium-grid.php:482
|
3286 |
msgid "Grid Settings"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: widgets/premium-grid.php:488
|
3290 |
msgid "Image Gap"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: widgets/premium-grid.php:507
|
3294 |
msgid "Choose a layout style for the gallery"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: widgets/premium-grid.php:509 widgets/premium-title.php:70
|
3298 |
msgid "Style 1"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: widgets/premium-grid.php:510 widgets/premium-title.php:71
|
3302 |
msgid "Style 2"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: widgets/premium-grid.php:511 widgets/premium-title.php:72
|
3306 |
msgid "Style 3"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: widgets/premium-grid.php:561
|
3310 |
msgid "Lightbox"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: widgets/premium-grid.php:569
|
3314 |
msgid "Lightbox Theme"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: widgets/premium-grid.php:573
|
3318 |
msgid "Light Rounded"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: widgets/premium-grid.php:574
|
3322 |
msgid "Dark Rounded"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: widgets/premium-grid.php:575
|
3326 |
msgid "Light Square"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: widgets/premium-grid.php:576
|
3330 |
msgid "Dark Square"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: widgets/premium-grid.php:577 widgets/premium-person.php:252
|
3334 |
msgid "Facebook"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: widgets/premium-grid.php:588
|
3338 |
msgid "Overlay Gallery Images"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: widgets/premium-grid.php:598
|
3342 |
msgid "Content Alignment"
|
3343 |
msgstr ""
|
3344 |