Version Description
- Tweak: Unnecessary
esc_html()
function removed to enhance performance. - Tweak: Enable adding an icon to the category label by using icon HTML format in Premium Grid widget.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 2.9.7 |
Comparing to | |
See all releases |
Code changes from version 2.9.6 to 2.9.7
- admin/includes/notices.php +12 -72
- admin/settings/version-control.php +1 -1
- languages/premium-addons-for-elementor.pot +939 -773
- premium-addons-for-elementor.php +3 -3
- readme.txt +7 -1
- widgets/premium-grid.php +1 -1
admin/includes/notices.php
CHANGED
@@ -29,7 +29,6 @@ class Premium_Admin_Notices {
|
|
29 |
public function init(){
|
30 |
$this->handle_review_notice();
|
31 |
$this->handle_pbg_notice();
|
32 |
-
$this->handle_xmas_notice();
|
33 |
}
|
34 |
|
35 |
/**
|
@@ -39,7 +38,6 @@ class Premium_Admin_Notices {
|
|
39 |
$this->required_plugins_check();
|
40 |
$this->get_review_notice();
|
41 |
$this->get_pbg_notice();
|
42 |
-
$this->get_xmas_notice();
|
43 |
}
|
44 |
|
45 |
/**
|
@@ -83,28 +81,6 @@ class Premium_Admin_Notices {
|
|
83 |
exit;
|
84 |
}
|
85 |
|
86 |
-
/**
|
87 |
-
* Checks if get Christmas sale message is dismissed.
|
88 |
-
* @access public
|
89 |
-
* @return void
|
90 |
-
*/
|
91 |
-
public function handle_xmas_notice() {
|
92 |
-
|
93 |
-
if ( ! isset( $_GET['get_pro_xmas'] ) ) {
|
94 |
-
return;
|
95 |
-
}
|
96 |
-
|
97 |
-
if ( 'opt_out' === $_GET['get_pro_xmas'] ) {
|
98 |
-
check_admin_referer( 'opt_out' );
|
99 |
-
|
100 |
-
update_option( 'get_pro_xmas_notice', '1' );
|
101 |
-
}
|
102 |
-
|
103 |
-
wp_redirect( remove_query_arg( 'get_pro_xmas' ) );
|
104 |
-
exit;
|
105 |
-
}
|
106 |
-
|
107 |
-
|
108 |
/**
|
109 |
* Shows an admin notice when Elementor is missing.
|
110 |
* @since 1.0.0
|
@@ -216,15 +192,19 @@ class Premium_Admin_Notices {
|
|
216 |
return;
|
217 |
} else if ( '1' !== $pbg_notice ) {
|
218 |
$optout_url = wp_nonce_url( add_query_arg( 'pbg', 'opt_out' ), 'opt_out' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
|
220 |
-
$pbg_message = sprintf( __('<p style="display: flex; align-items: center; padding:10px 10px 10px 0;"><img src="%s" style="margin-right: 0.8em; width: 40px;"><span><strong>Premium Blocks for Gutenberg </strong></span><span>is Now Available. </span><a href="%s" style="flex-grow: 2;"><span class="button-primary" style="margin-left:5px;">Install it Now.<span></a>', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_URL .'admin/images/premium-blocks-logo.png', $install_url );
|
221 |
-
|
222 |
-
}
|
223 |
-
|
224 |
-
$pbg_message .= sprintf(__('<a href="%s" style="text-decoration: none; margin-left: 1em; float:right; "><span class="dashicons dashicons-dismiss"></span></a></p>', 'premium-addons-for-elementor'), $optout_url );
|
225 |
-
|
226 |
-
$this->render_admin_notices( $pbg_message );
|
227 |
-
|
228 |
}
|
229 |
|
230 |
}
|
@@ -233,46 +213,6 @@ class Premium_Admin_Notices {
|
|
233 |
|
234 |
}
|
235 |
|
236 |
-
/**
|
237 |
-
* Shows an admin notice when PAPRO is not installed.
|
238 |
-
* @since 2.6.8
|
239 |
-
* @return void
|
240 |
-
*/
|
241 |
-
public function get_xmas_notice() {
|
242 |
-
|
243 |
-
$pro_path = sprintf( '%1$s/%1$s-for-elementor.php', self::$papro);
|
244 |
-
|
245 |
-
$theme = self::get_installed_theme();
|
246 |
-
|
247 |
-
$notice_url = sprintf( 'https://premiumaddons.com/christmas?utm_source=christmas-2018-notification&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=%s', $theme );
|
248 |
-
|
249 |
-
if ( ! self::is_plugin_installed( $pro_path ) && current_user_can( 'install_plugins' ) ) {
|
250 |
-
|
251 |
-
$get_xmas = get_option( 'get_pro_xmas_notice' );
|
252 |
-
|
253 |
-
if ( '1' === $get_xmas ) {
|
254 |
-
return;
|
255 |
-
} else if ( '1' !== $get_xmas ) {
|
256 |
-
$optout_url = wp_nonce_url( add_query_arg( 'get_pro_xmas', 'opt_out' ), 'opt_out' );
|
257 |
-
?>
|
258 |
-
<div class="error pa-notice-wrap pa-black-notice">
|
259 |
-
<div class="pa-img-wrap">
|
260 |
-
<img src="<?php echo esc_attr( PREMIUM_ADDONS_URL .'admin/images/premium-addons-logo.png' ); ?>">
|
261 |
-
</div>
|
262 |
-
<div class="pa-text-wrap">
|
263 |
-
<p><strong><?php echo __('Premium Addons for Elementor', 'premium-addons-for-elementor'); ?></strong></p>
|
264 |
-
<p>
|
265 |
-
<strong><?php echo __('Christmas Sale!', 'premium-addons-for-elementor'); ?></strong> <?php echo __('Get Premium Addons PRO with 15% Discount. ','premium-addons-for-elementor'); ?><a href="<?php echo esc_url( $notice_url ); ?>" target="_blank"><?php echo __('Check it Out','premium-addons-for-elementor'); ?></a>
|
266 |
-
</p>
|
267 |
-
</div>
|
268 |
-
<div class="pa-notice-close"><a href="<?php echo esc_url( $optout_url ); ?>"><span class="dashicons dashicons-dismiss"></span></a></div>
|
269 |
-
</div>
|
270 |
-
<?php
|
271 |
-
}
|
272 |
-
}
|
273 |
-
}
|
274 |
-
|
275 |
-
|
276 |
/**
|
277 |
* Returns the active theme slug
|
278 |
*/
|
29 |
public function init(){
|
30 |
$this->handle_review_notice();
|
31 |
$this->handle_pbg_notice();
|
|
|
32 |
}
|
33 |
|
34 |
/**
|
38 |
$this->required_plugins_check();
|
39 |
$this->get_review_notice();
|
40 |
$this->get_pbg_notice();
|
|
|
41 |
}
|
42 |
|
43 |
/**
|
81 |
exit;
|
82 |
}
|
83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
/**
|
85 |
* Shows an admin notice when Elementor is missing.
|
86 |
* @since 1.0.0
|
192 |
return;
|
193 |
} else if ( '1' !== $pbg_notice ) {
|
194 |
$optout_url = wp_nonce_url( add_query_arg( 'pbg', 'opt_out' ), 'opt_out' );
|
195 |
+
|
196 |
+
?>
|
197 |
+
<div class="error">
|
198 |
+
<p style="display: flex; align-items: center; padding:10px 10px 10px 0;">
|
199 |
+
<img src="<?php echo PREMIUM_ADDONS_URL .'admin/images/premium-blocks-logo.png'; ?>" style="margin-right: 0.8em; width: 40px;">
|
200 |
+
<span><strong><?php echo __('Premium Block for Gutenberg', 'premium-addons-for-elementor'); ?> </strong><?php echo __('is Now Available.','premium-addons-for-elementor'); ?> </span>
|
201 |
+
<a href="<?php echo $install_url; ?>" style="flex-grow: 2;"><span class="button-primary" style="margin-left:5px;"><?php echo __('Install it Now.','premium-addons-for-elementor'); ?></span></a>
|
202 |
+
<a href="<?php echo $optout_url; ?>" style="text-decoration: none; margin-left: 1em; float:right; "><span class="dashicons dashicons-dismiss"></span></a>
|
203 |
+
</p>
|
204 |
+
</div>
|
205 |
+
|
206 |
+
<?php }
|
207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
}
|
209 |
|
210 |
}
|
213 |
|
214 |
}
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
/**
|
217 |
* Returns the active theme slug
|
218 |
*/
|
admin/settings/version-control.php
CHANGED
@@ -79,7 +79,7 @@ class PA_Version_Control {
|
|
79 |
<tr class="pa-roll-row">
|
80 |
<th>Rollback Version</th>
|
81 |
<td>
|
82 |
-
<div><?php echo sprintf( '<a target="_blank" href="%s" class="button pa-btn pa-rollback-button elementor-button-spinner">Reinstall Version 2.9.
|
83 |
<p class="pa-roll-desc"><span>Warning: Please backup your database before making the rollback.</span></p>
|
84 |
</td>
|
85 |
</tr>
|
79 |
<tr class="pa-roll-row">
|
80 |
<th>Rollback Version</th>
|
81 |
<td>
|
82 |
+
<div><?php echo sprintf( '<a target="_blank" href="%s" class="button pa-btn pa-rollback-button elementor-button-spinner">Reinstall Version 2.9.6</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ) ); ?> </div>
|
83 |
<p class="pa-roll-desc"><span>Warning: Please backup your database before making the rollback.</span></p>
|
84 |
</td>
|
85 |
</tr>
|
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:
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
@@ -19,59 +19,71 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPathExcluded-0: assets/js\n"
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
|
22 |
-
#: admin/includes/notices.php:
|
23 |
msgid ""
|
24 |
"<p>Premium Addons for Elementor is not working because you need to Install "
|
25 |
"Elementor plugin.</p>"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin/includes/notices.php:
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: admin/includes/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/notices.php:
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin/includes/notices.php:
|
43 |
-
|
44 |
-
msgid ""
|
45 |
-
"<p style=\"display: flex; align-items: center; padding:10px 10px 10px 0;"
|
46 |
-
"\"><img src=\"%s\" style=\"margin-right: 0.8em; width: 40px;\">Did you "
|
47 |
-
"like<strong> Premium Addons for Elementor </strong>Plugin?"
|
48 |
-
"<span> please help us by leaving a five star review on WordPress.org."
|
49 |
-
" </span><a href=\"%s\" target=\"_blank\" style=\"flex-grow: 2;\">Leave a "
|
50 |
-
"Review.</a>"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: admin/includes/notices.php:
|
54 |
-
|
55 |
-
msgid ""
|
56 |
-
"<a href=\"%s\" style=\"text-decoration: none; margin-left: 1em; float:right; "
|
57 |
-
"\"><span class=\"dashicons dashicons-dismiss\"></span></a></p>"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: admin/includes/notices.php:
|
61 |
-
#, php-format
|
62 |
msgid ""
|
63 |
-
"
|
64 |
-
"
|
65 |
-
"
|
66 |
-
"
|
67 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgstr ""
|
69 |
|
70 |
#: admin/settings/about.php:13
|
71 |
msgid "About"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin/settings/about.php:35 admin/settings/elements.php:
|
75 |
#: admin/settings/gomaps.php:61 admin/settings/sys-info.php:31
|
76 |
#: admin/settings/version-control.php:61
|
77 |
#, php-format
|
@@ -96,115 +108,115 @@ msgstr ""
|
|
96 |
msgid "Cancel"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/settings/elements.php:
|
100 |
msgid "Premium Image Separator"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/settings/elements.php:
|
104 |
msgid "Premium Alert Box"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin/settings/elements.php:
|
108 |
msgid "Premium Icon Box"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: admin/settings/elements.php:
|
112 |
msgid "Premium Twitter Feed"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin/settings/elements.php:
|
116 |
msgid "Premium Instagram Feed"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin/settings/elements.php:
|
120 |
msgid "Premium Flip Box"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin/settings/elements.php:
|
124 |
msgid "Premium Unfold"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin/settings/elements.php:
|
128 |
msgid "Premium Messenger Chat"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin/settings/elements.php:
|
132 |
msgid "Premium Tabs"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin/settings/elements.php:
|
136 |
msgid "Premium Chart"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin/settings/elements.php:
|
140 |
msgid "Premium Preview Window"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin/settings/elements.php:
|
144 |
msgid "Premium Image Hotspots"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin/settings/elements.php:
|
148 |
msgid "Premium Facebook Reviews"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin/settings/elements.php:
|
152 |
msgid "Premium Image Comparison"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin/settings/elements.php:
|
156 |
msgid "Premium Divider"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin/settings/elements.php:
|
160 |
msgid "Premium Magic Section"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: admin/settings/elements.php:
|
164 |
msgid "Premium Google Reviews"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin/settings/elements.php:
|
168 |
msgid "Premium Behance Feed"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin/settings/elements.php:
|
172 |
msgid "Premium Tables"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin/settings/elements.php:
|
176 |
msgid "Premium Image Layers"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin/settings/elements.php:
|
180 |
msgid "Premium iHover"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin/settings/elements.php:
|
184 |
msgid "Premium Content Switcher"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin/settings/elements.php:
|
188 |
msgid "Premium Facebook Feed"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: admin/settings/elements.php:
|
192 |
msgid "Premium Whatsapp Chat"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: admin/settings/elements.php:
|
196 |
msgid "Premium Section Parallax"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: admin/settings/elements.php:
|
200 |
msgid "Premium Section Particles"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin/settings/elements.php:
|
204 |
msgid "Premium Section Animated Gradient"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin/settings/elements.php:
|
208 |
msgid "Premium Section Ken Burns"
|
209 |
msgstr ""
|
210 |
|
@@ -244,515 +256,528 @@ msgstr ""
|
|
244 |
msgid "Rolling Back to Version "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: widgets/premium-banner.php:42 widgets/premium-banner.php:
|
248 |
#: widgets/premium-blog.php:43 widgets/premium-blog.php:378
|
249 |
-
#: widgets/premium-grid.php:
|
250 |
-
#: widgets/premium-modalbox.php:
|
251 |
-
#: widgets/premium-person.php:
|
252 |
-
#: widgets/premium-testimonials.php:
|
|
|
253 |
msgid "Image"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: widgets/premium-banner.php:
|
257 |
-
#: widgets/premium-grid.php:
|
258 |
msgid "Upload Image"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: widgets/premium-banner.php:
|
262 |
msgid "Select an image for the Banner"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: widgets/premium-banner.php:
|
266 |
#: widgets/premium-blog.php:218 widgets/premium-button.php:68
|
267 |
-
#: widgets/premium-dual-header.php:
|
268 |
-
#: widgets/premium-grid.php:
|
269 |
#: widgets/premium-image-separator.php:120
|
270 |
-
#: widgets/premium-pricing-table.php:
|
271 |
-
#: widgets/premium-testimonials.php:145 widgets/premium-videobox.php:
|
272 |
msgid "Link"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: widgets/premium-banner.php:
|
276 |
msgid "Custom Link"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: widgets/premium-banner.php:
|
280 |
msgid "Add a custom link to the banner"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: widgets/premium-banner.php:
|
284 |
msgid "Set custom Link"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: widgets/premium-banner.php:
|
288 |
msgid "What custom link you want to set to banner?"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: widgets/premium-banner.php:
|
292 |
-
#: widgets/premium-banner.php:
|
293 |
-
#: widgets/premium-button.php:84 widgets/premium-dual-header.php:
|
294 |
-
#: widgets/premium-dual-header.php:
|
295 |
-
#: widgets/premium-grid.php:
|
296 |
#: widgets/premium-image-button.php:80 widgets/premium-image-separator.php:132
|
297 |
#: widgets/premium-image-separator.php:144
|
298 |
-
#: widgets/premium-pricing-table.php:
|
299 |
msgid "Existing Page"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: widgets/premium-banner.php:
|
303 |
msgid "Link the banner with an existing page"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: widgets/premium-banner.php:
|
307 |
msgid "New Tab"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: widgets/premium-banner.php:
|
311 |
msgid "Choose if you want the link be opened in a new tab or not"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: widgets/premium-banner.php:
|
315 |
msgid "Nofollow Option"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: widgets/premium-banner.php:
|
319 |
msgid "if you choose yes, the link will not be counted in search engines"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: widgets/premium-banner.php:
|
323 |
msgid "Effect"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: widgets/premium-banner.php:
|
327 |
msgid "Choose a hover effect for the banner"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: widgets/premium-banner.php:
|
331 |
msgid "Always Hovered"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: widgets/premium-banner.php:
|
335 |
msgid "Choose if you want the effect to be always triggered"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: widgets/premium-banner.php:
|
339 |
-
#: widgets/premium-button.php:99 widgets/premium-grid.php:
|
340 |
#: widgets/premium-image-button.php:95 widgets/premium-person.php:100
|
341 |
msgid "Hover Effect"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: widgets/premium-banner.php:
|
345 |
#: widgets/premium-blog.php:76 widgets/premium-button.php:103
|
346 |
-
#: widgets/premium-grid.php:
|
347 |
-
#: widgets/premium-
|
|
|
348 |
msgid "None"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: widgets/premium-banner.php:
|
352 |
-
#: widgets/premium-grid.php:
|
353 |
msgid "Zoom In"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: widgets/premium-banner.php:
|
357 |
-
#: widgets/premium-grid.php:
|
358 |
msgid "Zoom Out"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: widgets/premium-banner.php:
|
362 |
-
#: widgets/premium-grid.php:
|
363 |
msgid "Scale"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: widgets/premium-banner.php:
|
367 |
-
#: widgets/premium-grid.php:
|
368 |
msgid "Grayscale"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: widgets/premium-banner.php:
|
372 |
-
#: widgets/premium-grid.php:
|
373 |
msgid "Blur"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: widgets/premium-banner.php:
|
377 |
-
#: widgets/premium-grid.php:
|
378 |
msgid "Bright"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: widgets/premium-banner.php:
|
382 |
-
#: widgets/premium-grid.php:
|
383 |
msgid "Sepia"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: widgets/premium-banner.php:
|
387 |
-
#: widgets/premium-contactform.php:196 widgets/premium-grid.php:
|
388 |
-
#: widgets/premium-maps.php:
|
389 |
-
#: widgets/premium-person.php:
|
390 |
-
#: widgets/premium-progressbar.php:
|
391 |
msgid "Height"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: widgets/premium-banner.php:
|
395 |
msgid ""
|
396 |
"Choose if you want to set a custom height for the banner or keep it as it is"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: widgets/premium-banner.php:
|
400 |
msgid "Min Height"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: widgets/premium-banner.php:
|
404 |
msgid "Set a minimum height value in pixels"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: widgets/premium-banner.php:
|
408 |
msgid "Vertical Align"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: widgets/premium-banner.php:
|
412 |
-
#: widgets/premium-counter.php:
|
413 |
-
#: widgets/premium-testimonials.php:165
|
414 |
msgid "Top"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: widgets/premium-banner.php:
|
418 |
msgid "Middle"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: widgets/premium-banner.php:
|
422 |
-
#: widgets/premium-pricing-table.php:
|
423 |
msgid "Bottom"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: widgets/premium-banner.php:
|
427 |
msgid "Full"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: widgets/premium-banner.php:
|
431 |
msgid "Extra Class"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: widgets/premium-banner.php:
|
435 |
msgid ""
|
436 |
"Add extra class name that will be applied to the banner, and you can use "
|
437 |
"this class for your customizations."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: widgets/premium-banner.php:
|
441 |
-
#: widgets/premium-blog.php:533 widgets/premium-carousel.php:
|
442 |
-
#: widgets/premium-grid.php:
|
443 |
-
#: widgets/premium-modalbox.php:
|
444 |
#: widgets/premium-testimonials.php:180 widgets/premium-testimonials.php:356
|
|
|
445 |
msgid "Content"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: widgets/premium-banner.php:
|
449 |
-
#: widgets/premium-blog.php:436 widgets/premium-counter.php:
|
450 |
-
#: widgets/premium-counter.php:
|
451 |
-
#: widgets/premium-maps.php:
|
452 |
-
#: widgets/premium-modalbox.php:
|
453 |
-
#: widgets/premium-pricing-table.php:
|
454 |
-
#: widgets/premium-progressbar.php:
|
455 |
-
#: widgets/premium-title.php:
|
456 |
-
#: widgets/premium-title.php:
|
457 |
msgid "Title"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: widgets/premium-banner.php:
|
461 |
msgid "Give a title to this banner"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: widgets/premium-banner.php:
|
465 |
msgid "Premium Banner"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: widgets/premium-banner.php:
|
469 |
#: widgets/premium-person.php:142 widgets/premium-person.php:171
|
470 |
#: widgets/premium-pricing-table.php:77 widgets/premium-testimonials.php:77
|
471 |
-
#: widgets/premium-testimonials.php:118 widgets/premium-title.php:
|
472 |
msgid "HTML Tag"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: widgets/premium-banner.php:
|
476 |
msgid ""
|
477 |
"Select a heading tag for the title. Headings are defined with H1 to H6 tags"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: widgets/premium-banner.php:
|
481 |
-
#: widgets/premium-banner.php:
|
482 |
-
#: widgets/premium-grid.php:
|
483 |
-
#: widgets/premium-maps.php:
|
484 |
-
#: widgets/premium-person.php:
|
485 |
-
#: widgets/premium-pricing-table.php:
|
486 |
-
#: widgets/premium-pricing-table.php:
|
487 |
msgid "Description"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: widgets/premium-banner.php:
|
491 |
msgid "Give the description to this banner"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: widgets/premium-banner.php:
|
495 |
msgid ""
|
496 |
"Premium Banner gives you a wide range of styles and options that you will "
|
497 |
"definitely fall in love with"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: widgets/premium-banner.php:
|
501 |
-
#: widgets/premium-button.php:38 widgets/premium-button.php:
|
502 |
#: widgets/premium-contactform.php:166 widgets/premium-contactform.php:418
|
503 |
#: widgets/premium-image-button.php:34 widgets/premium-image-button.php:366
|
504 |
-
#: widgets/premium-
|
505 |
-
#: widgets/premium-pricing-table.php:
|
506 |
msgid "Button"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: widgets/premium-banner.php:
|
510 |
#: widgets/premium-fancytext.php:89 widgets/premium-image-button.php:41
|
511 |
-
#: widgets/premium-modalbox.php:
|
512 |
-
#: widgets/premium-
|
513 |
-
#: widgets/premium-pricing-table.php:
|
514 |
-
#: widgets/premium-pricing-table.php:
|
|
|
515 |
msgid "Text"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: widgets/premium-banner.php:
|
519 |
-
#: widgets/premium-dual-header.php:
|
520 |
-
#: widgets/premium-image-button.php:51 widgets/premium-pricing-table.php:
|
521 |
msgid "Link Type"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: widgets/premium-banner.php:
|
525 |
-
#: widgets/premium-dual-header.php:
|
526 |
#: widgets/premium-image-button.php:54 widgets/premium-image-separator.php:131
|
527 |
#: widgets/premium-image-separator.php:159
|
528 |
-
#: widgets/premium-pricing-table.php:
|
529 |
msgid "URL"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: widgets/premium-banner.php:
|
533 |
-
#: widgets/premium-button.php:
|
534 |
-
#: widgets/premium-dual-header.php:
|
535 |
-
#: widgets/premium-image-button.php:319 widgets/premium-maps.php:
|
536 |
-
#: widgets/premium-maps.php:
|
537 |
-
#: widgets/premium-person.php:198 widgets/premium-pricing-table.php:
|
538 |
-
#: widgets/premium-title.php:
|
539 |
msgid "Alignment"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: widgets/premium-banner.php:
|
543 |
-
#: widgets/premium-button.php:
|
544 |
-
#: widgets/premium-countdown.php:114 widgets/premium-counter.php:
|
545 |
-
#: widgets/premium-dual-header.php:
|
546 |
-
#: widgets/premium-grid.php:
|
547 |
-
#: widgets/premium-image-separator.php:97 widgets/premium-maps.php:
|
548 |
-
#: widgets/premium-maps.php:
|
549 |
-
#: widgets/premium-person.php:202 widgets/premium-pricing-table.php:
|
550 |
-
#: widgets/premium-pricing-table.php:
|
551 |
-
#: widgets/premium-title.php:
|
|
|
552 |
msgid "Left"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: widgets/premium-banner.php:
|
556 |
-
#: widgets/premium-button.php:
|
557 |
-
#: widgets/premium-dual-header.php:
|
558 |
-
#: widgets/premium-grid.php:
|
559 |
-
#: widgets/premium-image-separator.php:101 widgets/premium-maps.php:
|
560 |
-
#: widgets/premium-maps.php:
|
561 |
-
#: widgets/premium-person.php:206 widgets/premium-pricing-table.php:
|
562 |
-
#: widgets/premium-progressbar.php:
|
563 |
-
#: widgets/premium-title.php:
|
564 |
msgid "Center"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: widgets/premium-banner.php:
|
568 |
-
#: widgets/premium-button.php:
|
569 |
-
#: widgets/premium-countdown.php:122 widgets/premium-counter.php:
|
570 |
-
#: widgets/premium-dual-header.php:
|
571 |
-
#: widgets/premium-grid.php:
|
572 |
-
#: widgets/premium-image-separator.php:105 widgets/premium-maps.php:
|
573 |
-
#: widgets/premium-maps.php:
|
574 |
-
#: widgets/premium-person.php:210 widgets/premium-pricing-table.php:
|
575 |
-
#: widgets/premium-pricing-table.php:
|
576 |
-
#: widgets/premium-title.php:
|
|
|
577 |
msgid "Right"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: widgets/premium-banner.php:
|
581 |
msgid "Responsive"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: widgets/premium-banner.php:
|
585 |
msgid "Responsive Controls"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: widgets/premium-banner.php:
|
589 |
msgid ""
|
590 |
"If the description text is not suiting well on specific screen sizes, you "
|
591 |
"may enable this option which will hide the description text."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: widgets/premium-banner.php:
|
595 |
msgid "Minimum Size"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: widgets/premium-banner.php:
|
599 |
msgid "Note: minimum size for extra small screens is 1px."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: widgets/premium-banner.php:
|
603 |
msgid "Maximum Size"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: widgets/premium-banner.php:
|
607 |
msgid "Note: maximum size for extra small screens is 767px."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: widgets/premium-banner.php:
|
611 |
#: widgets/premium-blog.php:567 widgets/premium-blog.php:690
|
612 |
#: widgets/premium-blog.php:753 widgets/premium-blog.php:787
|
613 |
-
#: widgets/premium-button.php:
|
614 |
-
#: widgets/premium-carousel.php:
|
615 |
#: widgets/premium-contactform.php:522 widgets/premium-countdown.php:363
|
616 |
-
#: widgets/premium-counter.php:
|
617 |
#: widgets/premium-fancytext.php:379 widgets/premium-fancytext.php:426
|
618 |
-
#: widgets/premium-grid.php:
|
619 |
-
#: widgets/premium-grid.php:
|
620 |
-
#: widgets/premium-modalbox.php:
|
621 |
-
#: widgets/premium-modalbox.php:
|
622 |
-
#: widgets/premium-modalbox.php:
|
623 |
-
#: widgets/premium-pricing-table.php:
|
624 |
-
#: widgets/premium-pricing-table.php:
|
625 |
-
#: widgets/premium-title.php:
|
|
|
|
|
626 |
msgid "Background Color"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: widgets/premium-banner.php:
|
630 |
msgid "Image Opacity"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: widgets/premium-banner.php:
|
634 |
msgid "Hover Opacity"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: widgets/premium-banner.php:
|
638 |
-
#: widgets/premium-button.php:
|
639 |
-
#: widgets/premium-carousel.php:
|
640 |
#: widgets/premium-contactform.php:489 widgets/premium-countdown.php:404
|
641 |
-
#: widgets/premium-counter.php:
|
642 |
-
#: widgets/premium-dual-header.php:
|
643 |
-
#: widgets/premium-grid.php:
|
644 |
-
#: widgets/premium-grid.php:
|
645 |
-
#: widgets/premium-grid.php:
|
646 |
-
#: widgets/premium-image-button.php:635 widgets/premium-maps.php:
|
647 |
-
#: widgets/premium-modalbox.php:
|
648 |
-
#: widgets/premium-modalbox.php:
|
649 |
-
#: widgets/premium-modalbox.php:
|
650 |
-
#: widgets/premium-modalbox.php:
|
651 |
-
#: widgets/premium-pricing-table.php:
|
652 |
-
#: widgets/premium-pricing-table.php:
|
653 |
-
#: widgets/premium-pricing-table.php:
|
654 |
-
#: widgets/premium-pricing-table.php:
|
655 |
-
#: widgets/premium-pricing-table.php:
|
656 |
-
#: widgets/premium-title.php:
|
657 |
-
#: widgets/premium-videobox.php:
|
|
|
658 |
msgid "Border Radius"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: widgets/premium-banner.php:
|
662 |
-
#: widgets/premium-banner.php:
|
663 |
#: widgets/premium-blog.php:492 widgets/premium-blog.php:541
|
664 |
#: widgets/premium-blog.php:588 widgets/premium-blog.php:660
|
665 |
#: widgets/premium-blog.php:740 widgets/premium-blog.php:774
|
666 |
-
#: widgets/premium-carousel.php:
|
667 |
#: widgets/premium-countdown.php:337 widgets/premium-countdown.php:425
|
668 |
-
#: widgets/premium-counter.php:
|
669 |
-
#: widgets/premium-counter.php:
|
670 |
#: widgets/premium-fancytext.php:354 widgets/premium-fancytext.php:401
|
671 |
-
#: widgets/premium-grid.php:
|
672 |
-
#: widgets/premium-grid.php:
|
673 |
-
#: widgets/premium-grid.php:
|
674 |
-
#: widgets/premium-maps.php:
|
675 |
-
#: widgets/premium-modalbox.php:
|
676 |
-
#: widgets/premium-modalbox.php:
|
677 |
-
#: widgets/premium-modalbox.php:
|
678 |
-
#: widgets/premium-person.php:
|
679 |
-
#: widgets/premium-person.php:
|
680 |
-
#: widgets/premium-pricing-table.php:
|
681 |
-
#: widgets/premium-pricing-table.php:
|
682 |
-
#: widgets/premium-pricing-table.php:
|
683 |
-
#: widgets/premium-pricing-table.php:
|
684 |
-
#: widgets/premium-pricing-table.php:
|
685 |
-
#: widgets/premium-pricing-table.php:
|
686 |
-
#: widgets/premium-pricing-table.php:
|
687 |
-
#: widgets/premium-progressbar.php:
|
688 |
-
#: widgets/premium-progressbar.php:
|
689 |
#: widgets/premium-testimonials.php:278 widgets/premium-testimonials.php:328
|
690 |
#: widgets/premium-testimonials.php:364 widgets/premium-testimonials.php:420
|
691 |
-
#: widgets/premium-title.php:
|
692 |
msgid "Color"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: widgets/premium-banner.php:
|
696 |
msgid "Title Background"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: widgets/premium-banner.php:
|
700 |
msgid "Choose a background color for the title"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: widgets/premium-banner.php:
|
704 |
-
#: widgets/premium-banner.php:
|
705 |
-
#: widgets/premium-dual-header.php:
|
706 |
-
#: widgets/premium-grid.php:
|
707 |
-
#: widgets/premium-grid.php:
|
708 |
-
#: widgets/premium-modalbox.php:
|
709 |
-
#: widgets/premium-pricing-table.php:
|
710 |
-
#: widgets/premium-pricing-table.php:
|
711 |
-
#: widgets/premium-pricing-table.php:
|
712 |
-
#: widgets/premium-pricing-table.php:
|
713 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
714 |
msgid "Shadow"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: widgets/premium-banner.php:
|
718 |
#: widgets/premium-blog.php:517 widgets/premium-blog.php:613
|
719 |
-
#: widgets/premium-blog.php:675 widgets/premium-
|
720 |
-
#: widgets/premium-
|
|
|
721 |
msgid "Hover Color"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: widgets/premium-banner.php:
|
725 |
msgid "Hover Background Color"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: widgets/premium-banner.php:
|
729 |
-
#: widgets/premium-button.php:
|
730 |
-
#: widgets/premium-contactform.php:435 widgets/premium-dual-header.php:
|
731 |
-
#: widgets/premium-dual-header.php:
|
732 |
-
#: widgets/premium-grid.php:
|
733 |
-
#: widgets/premium-grid.php:
|
734 |
-
#: widgets/premium-grid.php:
|
735 |
-
#: widgets/premium-image-button.php:708 widgets/premium-maps.php:
|
736 |
-
#: widgets/premium-maps.php:
|
737 |
-
#: widgets/premium-modalbox.php:
|
738 |
-
#: widgets/premium-modalbox.php:
|
739 |
-
#: widgets/premium-pricing-table.php:
|
740 |
-
#: widgets/premium-pricing-table.php:
|
741 |
-
#: widgets/premium-pricing-table.php:
|
742 |
-
#: widgets/premium-pricing-table.php:
|
743 |
-
#: widgets/premium-pricing-table.php:
|
744 |
-
#: widgets/premium-pricing-table.php:
|
745 |
-
#: widgets/premium-pricing-table.php:
|
746 |
-
#: widgets/premium-pricing-table.php:
|
747 |
-
#: widgets/premium-videobox.php:
|
|
|
748 |
msgid "Padding"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: widgets/premium-blog.php:52 widgets/premium-grid.php:
|
752 |
msgid "Choose a hover effect for the image"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: widgets/premium-blog.php:62 widgets/premium-grid.php:
|
756 |
#: widgets/premium-person.php:111
|
757 |
msgid "Translate"
|
758 |
msgstr ""
|
@@ -781,8 +806,8 @@ msgstr ""
|
|
781 |
msgid "Squares"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: widgets/premium-blog.php:100 widgets/premium-grid.php:
|
785 |
-
#: widgets/premium-grid.php:
|
786 |
msgid "Categories"
|
787 |
msgstr ""
|
788 |
|
@@ -802,7 +827,7 @@ msgstr ""
|
|
802 |
msgid "Grid"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: widgets/premium-blog.php:138 widgets/premium-grid.php:
|
806 |
msgid "Masonry"
|
807 |
msgstr ""
|
808 |
|
@@ -810,19 +835,19 @@ msgstr ""
|
|
810 |
msgid "Number of Columns"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: widgets/premium-blog.php:153 widgets/premium-grid.php:
|
814 |
msgid "2 Columns"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: widgets/premium-blog.php:154 widgets/premium-grid.php:
|
818 |
msgid "3 Columns"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: widgets/premium-blog.php:155 widgets/premium-grid.php:
|
822 |
msgid "4 Columns"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: widgets/premium-blog.php:170 widgets/premium-pricing-table.php:
|
826 |
msgid "Spacing"
|
827 |
msgstr ""
|
828 |
|
@@ -844,8 +869,8 @@ msgstr ""
|
|
844 |
msgid "Excerpt Type"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: widgets/premium-blog.php:217 widgets/premium-carousel.php:
|
848 |
-
#: widgets/premium-carousel.php:
|
849 |
msgid "Dots"
|
850 |
msgstr ""
|
851 |
|
@@ -933,21 +958,21 @@ msgstr ""
|
|
933 |
msgid "The index of post to start with"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: widgets/premium-blog.php:386 widgets/premium-button.php:
|
937 |
-
#: widgets/premium-button.php:
|
938 |
#: widgets/premium-image-button.php:403 widgets/premium-image-button.php:532
|
939 |
-
#: widgets/premium-image-button.php:549 widgets/premium-modalbox.php:
|
940 |
-
#: widgets/premium-title.php:
|
941 |
msgid "Icon Color"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: widgets/premium-blog.php:401 widgets/premium-grid.php:
|
945 |
#: widgets/premium-image-button.php:565 widgets/premium-image-button.php:582
|
946 |
-
#: widgets/premium-image-button.php:608
|
947 |
msgid "Overlay Color"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: widgets/premium-blog.php:416 widgets/premium-carousel.php:
|
951 |
#: widgets/premium-contactform.php:533
|
952 |
msgid "Border Color"
|
953 |
msgstr ""
|
@@ -960,14 +985,14 @@ msgstr ""
|
|
960 |
msgid "Tags"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: widgets/premium-blog.php:640 widgets/premium-button.php:
|
964 |
-
#: widgets/premium-carousel.php:
|
965 |
-
#: widgets/premium-counter.php:
|
966 |
-
#: widgets/premium-modalbox.php:
|
967 |
-
#: widgets/premium-pricing-table.php:
|
968 |
-
#: widgets/premium-pricing-table.php:
|
969 |
-
#: widgets/premium-progressbar.php:
|
970 |
-
#: widgets/premium-testimonials.php:432 widgets/premium-videobox.php:
|
971 |
msgid "Size"
|
972 |
msgstr ""
|
973 |
|
@@ -979,30 +1004,30 @@ msgstr ""
|
|
979 |
msgid "Pagination Style"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: widgets/premium-blog.php:734 widgets/premium-button.php:
|
983 |
-
#: widgets/premium-contactform.php:448 widgets/premium-grid.php:
|
984 |
-
#: widgets/premium-image-button.php:384 widgets/premium-modalbox.php:
|
985 |
-
#: widgets/premium-modalbox.php:
|
986 |
-
#: widgets/premium-pricing-table.php:
|
987 |
-
#: widgets/premium-pricing-table.php:
|
988 |
msgid "Normal"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: widgets/premium-blog.php:768 widgets/premium-button.php:
|
992 |
-
#: widgets/premium-contactform.php:506 widgets/premium-grid.php:
|
993 |
-
#: widgets/premium-image-button.php:510 widgets/premium-modalbox.php:
|
994 |
-
#: widgets/premium-modalbox.php:
|
995 |
-
#: widgets/premium-pricing-table.php:
|
996 |
-
#: widgets/premium-pricing-table.php:
|
997 |
msgid "Hover"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: widgets/premium-blog.php:
|
1001 |
-
msgid "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: widgets/premium-blog.php:
|
1005 |
-
msgid "Next
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: widgets/premium-button.php:48 widgets/premium-image-button.php:44
|
@@ -1029,7 +1054,7 @@ msgstr ""
|
|
1029 |
msgid "In & Out"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: widgets/premium-button.php:116 widgets/premium-button.php:
|
1033 |
#: widgets/premium-image-button.php:111 widgets/premium-image-button.php:129
|
1034 |
#: widgets/premium-image-button.php:147
|
1035 |
msgid "Slide Direction"
|
@@ -1091,385 +1116,412 @@ msgstr ""
|
|
1091 |
msgid "Tilted Right"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: widgets/premium-button.php:
|
1095 |
-
#: widgets/premium-countdown.php:43 widgets/premium-counter.php:
|
1096 |
-
#: widgets/premium-title.php:
|
1097 |
msgid "Style"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: widgets/premium-button.php:
|
1101 |
msgid "Radial In"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: widgets/premium-button.php:
|
1105 |
msgid "Radial Out"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: widgets/premium-button.php:
|
1109 |
msgid "Rectangle In"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: widgets/premium-button.php:
|
1113 |
msgid "Rectangle Out"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: widgets/premium-button.php:
|
1117 |
-
#: widgets/premium-button.php:
|
1118 |
-
#: widgets/premium-counter.php:
|
1119 |
#: widgets/premium-image-button.php:194 widgets/premium-image-button.php:207
|
1120 |
-
#: widgets/premium-modalbox.php:62 widgets/premium-modalbox.php:
|
1121 |
-
#: widgets/premium-modalbox.php:
|
1122 |
-
#: widgets/premium-pricing-table.php:180 widgets/premium-pricing-table.php:
|
1123 |
-
#: widgets/premium-pricing-table.php:
|
1124 |
-
#: widgets/premium-title.php:
|
1125 |
msgid "Icon"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: widgets/premium-button.php:
|
1129 |
-
#: widgets/premium-modalbox.php:
|
1130 |
msgid "Enable or disable button icon"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: widgets/premium-button.php:
|
1134 |
-
#: widgets/premium-image-button.php:219 widgets/premium-modalbox.php:
|
1135 |
msgid "Icon Position"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: widgets/premium-button.php:
|
1139 |
-
#: widgets/premium-modalbox.php:
|
1140 |
msgid "Before"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: widgets/premium-button.php:
|
1144 |
-
#: widgets/premium-modalbox.php:
|
1145 |
msgid "After"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: widgets/premium-button.php:
|
1149 |
#: widgets/premium-image-button.php:236 widgets/premium-image-button.php:250
|
1150 |
-
#: widgets/premium-modalbox.php:
|
|
|
1151 |
msgid "Icon Size"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: widgets/premium-button.php:
|
1155 |
-
#: widgets/premium-button.php:
|
1156 |
-
#: widgets/premium-button.php:
|
1157 |
#: widgets/premium-image-button.php:263 widgets/premium-image-button.php:282
|
1158 |
-
#: widgets/premium-modalbox.php:
|
1159 |
-
#: widgets/premium-modalbox.php:
|
1160 |
msgid "Icon Spacing"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: widgets/premium-button.php:
|
|
|
1164 |
msgid "Small"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: widgets/premium-button.php:
|
|
|
1168 |
msgid "Medium"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: widgets/premium-button.php:
|
|
|
1172 |
msgid "Large"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: widgets/premium-button.php:
|
1176 |
-
#: widgets/premium-dual-header.php:
|
|
|
1177 |
msgid "Block"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: widgets/premium-button.php:
|
1181 |
msgid "onclick Event"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: widgets/premium-button.php:
|
1185 |
msgid "Example: myFunction();"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: widgets/premium-button.php:
|
1189 |
#: widgets/premium-contactform.php:453 widgets/premium-contactform.php:511
|
1190 |
-
#: widgets/premium-dual-header.php:
|
1191 |
#: widgets/premium-image-button.php:390 widgets/premium-image-button.php:516
|
1192 |
-
#: widgets/premium-pricing-table.php:
|
|
|
1193 |
msgid "Text Color"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: widgets/premium-button.php:
|
1197 |
-
#: widgets/premium-button.php:
|
1198 |
#: widgets/premium-image-button.php:648 widgets/premium-image-button.php:661
|
1199 |
-
#: widgets/premium-title.php:
|
1200 |
msgid "Icon Shadow"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: widgets/premium-button.php:
|
1204 |
#: widgets/premium-image-button.php:468 widgets/premium-image-button.php:674
|
1205 |
msgid "Text Shadow"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: widgets/premium-button.php:
|
1209 |
#: widgets/premium-image-button.php:478 widgets/premium-image-button.php:687
|
1210 |
msgid "Button Shadow"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: widgets/premium-button.php:
|
1214 |
-
#: widgets/premium-dual-header.php:
|
1215 |
-
#: widgets/premium-grid.php:
|
1216 |
-
#: widgets/premium-grid.php:
|
1217 |
-
#: widgets/premium-grid.php:
|
1218 |
#: widgets/premium-image-button.php:487 widgets/premium-image-button.php:697
|
1219 |
-
#: widgets/premium-maps.php:
|
1220 |
-
#: widgets/premium-maps.php:
|
1221 |
-
#: widgets/premium-pricing-table.php:
|
1222 |
-
#: widgets/premium-pricing-table.php:
|
1223 |
-
#: widgets/premium-pricing-table.php:
|
1224 |
-
#: widgets/premium-pricing-table.php:
|
1225 |
-
#: widgets/premium-pricing-table.php:
|
1226 |
-
#: widgets/premium-pricing-table.php:
|
1227 |
-
#: widgets/premium-pricing-table.php:
|
1228 |
-
#: widgets/premium-pricing-table.php:
|
1229 |
-
#: widgets/premium-pricing-table.php:
|
1230 |
-
#: widgets/premium-pricing-table.php:
|
1231 |
-
#: widgets/premium-progressbar.php:
|
1232 |
-
#: widgets/premium-testimonials.php:390 widgets/premium-title.php:
|
1233 |
-
#: widgets/premium-title.php:
|
|
|
1234 |
msgid "Margin"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: widgets/premium-carousel.php:
|
1238 |
msgid "Carousel"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: widgets/premium-carousel.php:53
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1242 |
msgid ""
|
1243 |
"Slider content is a template which you can choose from Elementor library. "
|
1244 |
"Each template will be a slider content"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: widgets/premium-carousel.php:
|
1248 |
msgid "Type"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: widgets/premium-carousel.php:
|
1252 |
msgid "Set a navigation type"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: widgets/premium-carousel.php:
|
1256 |
msgid "Horizontal"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: widgets/premium-carousel.php:
|
1260 |
msgid "Vertical"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: widgets/premium-carousel.php:
|
1264 |
msgid "Appearance"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: widgets/premium-carousel.php:
|
1268 |
msgid "All visible"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: widgets/premium-carousel.php:
|
1272 |
msgid "One at a time"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: widgets/premium-carousel.php:
|
1276 |
msgid "Desktop Slides"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: widgets/premium-carousel.php:
|
1280 |
msgid "Tabs Slides"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: widgets/premium-carousel.php:
|
1284 |
msgid "Mobile Slides"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: widgets/premium-carousel.php:
|
1288 |
msgid "Slides' Settings"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: widgets/premium-carousel.php:
|
1292 |
msgid "Infinite Loop"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: widgets/premium-carousel.php:
|
1296 |
msgid "Restart the slider automatically as it passes the last slide"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: widgets/premium-carousel.php:
|
1300 |
msgid "Transition Speed"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: widgets/premium-carousel.php:
|
1304 |
msgid ""
|
1305 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: widgets/premium-carousel.php:
|
1309 |
msgid "Autoplay Slides"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: widgets/premium-carousel.php:
|
1313 |
msgid "Slide will start automatically"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: widgets/premium-carousel.php:
|
1317 |
msgid "Autoplay Speed"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: widgets/premium-carousel.php:
|
1321 |
msgid ""
|
1322 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
1323 |
"in milliseconds (ms)"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: widgets/premium-carousel.php:
|
1327 |
msgid "Animations"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: widgets/premium-carousel.php:
|
1331 |
msgid ""
|
1332 |
"Add extra class name that will be applied to the carousel, and you can use "
|
1333 |
"this class for your customizations."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: widgets/premium-carousel.php:
|
1337 |
msgid "Navigation"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: widgets/premium-carousel.php:
|
1341 |
msgid "Arrows"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: widgets/premium-carousel.php:
|
1345 |
msgid "Enable or disable navigation arrows"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: widgets/premium-carousel.php:
|
1349 |
msgid "Right Icon"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: widgets/premium-carousel.php:
|
1353 |
msgid "Bottom Icon"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: widgets/premium-carousel.php:
|
1357 |
msgid "Top Icon"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: widgets/premium-carousel.php:
|
1361 |
msgid "Left Icon"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: widgets/premium-carousel.php:
|
1365 |
msgid "Default"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: widgets/premium-carousel.php:
|
1369 |
msgid "Circle Background"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: widgets/premium-carousel.php:
|
1373 |
msgid "Square Background"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: widgets/premium-carousel.php:
|
1377 |
msgid "Circle border"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: widgets/premium-carousel.php:
|
1381 |
msgid "Square border"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: widgets/premium-carousel.php:
|
1385 |
msgid "Border Size"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: widgets/premium-carousel.php:
|
1389 |
msgid "Position (PX)"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: widgets/premium-carousel.php:
|
1393 |
msgid "Enable or disable navigation dots"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: widgets/premium-carousel.php:
|
1397 |
msgid "Active Color"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: widgets/premium-carousel.php:
|
1401 |
msgid "Ripple Effect"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: widgets/premium-carousel.php:
|
1405 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: widgets/premium-carousel.php:
|
1409 |
msgid "Ripple Color"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: widgets/premium-carousel.php:
|
1413 |
msgid "Additional Settings"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: widgets/premium-carousel.php:
|
1417 |
msgid "Draggable Effect"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: widgets/premium-carousel.php:
|
1421 |
msgid "Allow the slides to be dragged by mouse click"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: widgets/premium-carousel.php:
|
1425 |
msgid "Touch Move"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: widgets/premium-carousel.php:
|
1429 |
msgid "Enable slide moving with touch"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: widgets/premium-carousel.php:
|
1433 |
msgid "RTL Mode"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: widgets/premium-carousel.php:
|
1437 |
msgid "Turn on RTL mode if your language starts from right to left"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: widgets/premium-carousel.php:
|
1441 |
msgid "Adaptive Height"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: widgets/premium-carousel.php:
|
1445 |
msgid ""
|
1446 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
1447 |
"space gaps"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: widgets/premium-carousel.php:
|
1451 |
msgid "Pause on Hover"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: widgets/premium-carousel.php:
|
1455 |
msgid "Pause the slider when mouse hover"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: widgets/premium-carousel.php:
|
1459 |
msgid "Center Mode"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: widgets/premium-carousel.php:
|
1463 |
msgid ""
|
1464 |
"Center mode enables a centered view with partial next/previous slides. "
|
1465 |
"Animations and all visible scroll type doesn't work with this mode"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: widgets/premium-carousel.php:
|
1469 |
msgid "Slides' Spacing"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: widgets/premium-carousel.php:
|
1473 |
msgid "Set a spacing value in pixels (px)"
|
1474 |
msgstr ""
|
1475 |
|
@@ -1486,7 +1538,7 @@ msgid "Fields"
|
|
1486 |
msgstr ""
|
1487 |
|
1488 |
#: widgets/premium-contactform.php:56 widgets/premium-contactform.php:173
|
1489 |
-
#: widgets/premium-modalbox.php:
|
1490 |
#: widgets/premium-person.php:49
|
1491 |
msgid "Width"
|
1492 |
msgstr ""
|
@@ -1519,7 +1571,7 @@ msgstr ""
|
|
1519 |
msgid "Focus Line Color"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: widgets/premium-contactform.php:327 widgets/premium-progressbar.php:
|
1523 |
msgid "Labels"
|
1524 |
msgstr ""
|
1525 |
|
@@ -1547,7 +1599,7 @@ msgstr ""
|
|
1547 |
msgid "Countdown"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: widgets/premium-countdown.php:46 widgets/premium-dual-header.php:
|
1551 |
msgid "Inline"
|
1552 |
msgstr ""
|
1553 |
|
@@ -1721,179 +1773,181 @@ msgstr ""
|
|
1721 |
msgid "Spacing in Between"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: widgets/premium-counter.php:
|
1725 |
msgid "Counter"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: widgets/premium-counter.php:
|
1729 |
msgid "Enter title for stats counter block"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: widgets/premium-counter.php:
|
1733 |
-
#: widgets/premium-progressbar.php:
|
1734 |
msgid "Value"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: widgets/premium-counter.php:
|
1738 |
msgid "Enter Counter Value"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: widgets/premium-counter.php:
|
1742 |
msgid "Thousands Separator"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: widgets/premium-counter.php:
|
1746 |
msgid "Separate coverts 125000 into 125,000"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: widgets/premium-counter.php:
|
1750 |
msgid "Decimal Point"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: widgets/premium-counter.php:
|
1754 |
msgid ""
|
1755 |
"Set a decimal number (Eg - 12.76). The decimal point will be replaced with "
|
1756 |
"the value that you will enter above"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: widgets/premium-counter.php:
|
1760 |
msgid "Digits After Decimal Point"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: widgets/premium-counter.php:
|
1764 |
msgid "Value Prefix"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: widgets/premium-counter.php:
|
1768 |
msgid "Enter prefix for counter value"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: widgets/premium-counter.php:
|
1772 |
msgid "Value suffix"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: widgets/premium-counter.php:
|
1776 |
msgid "Enter suffix for counter value"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: widgets/premium-counter.php:
|
1780 |
msgid "Rolling Time"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: widgets/premium-counter.php:
|
1784 |
msgid "How long should it take to complete the digit?"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: widgets/premium-counter.php:
|
1788 |
-
#: widgets/premium-pricing-table.php:
|
1789 |
msgid "Display Options"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: widgets/premium-counter.php:
|
1793 |
msgid "Icon Type"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: widgets/premium-counter.php:
|
1797 |
msgid "Use a font awesome icon or upload a custom image"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: widgets/premium-counter.php:
|
|
|
1801 |
msgid "Font Awesome"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: widgets/premium-counter.php:
|
|
|
1805 |
msgid "Custom Image"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: widgets/premium-counter.php:
|
1809 |
msgid "Select an Icon"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: widgets/premium-counter.php:
|
1813 |
msgid "Choose a position for your icon"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: widgets/premium-counter.php:
|
1817 |
msgid ""
|
1818 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
1819 |
"create your own with various options"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: widgets/premium-counter.php:
|
1823 |
msgid "Simple"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: widgets/premium-counter.php:
|
1827 |
msgid "Design Your Own"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: widgets/premium-counter.php:
|
1831 |
msgid "Background size"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: widgets/premium-counter.php:
|
1835 |
msgid "Vertical Alignment"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: widgets/premium-counter.php:
|
1839 |
msgid "Prefix & Suffix"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: widgets/premium-counter.php:
|
1843 |
msgid "Prefix Color"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: widgets/premium-counter.php:
|
1847 |
msgid "Suffix Color"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: widgets/premium-dual-header.php:
|
1851 |
msgid "Dual Heading"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: widgets/premium-dual-header.php:
|
1855 |
msgid "First Heading"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: widgets/premium-dual-header.php:
|
1859 |
msgid "Premium"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: widgets/premium-dual-header.php:
|
1863 |
msgid "Second Heading"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: widgets/premium-dual-header.php:
|
1867 |
msgid "Addons"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: widgets/premium-dual-header.php:
|
1871 |
msgid "Display"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: widgets/premium-dual-header.php:
|
1875 |
msgid "Enable or disable link"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: widgets/premium-dual-header.php:
|
1879 |
msgid "Animated Background"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: widgets/premium-dual-header.php:
|
1883 |
msgid "Background Style"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: widgets/premium-dual-header.php:
|
1887 |
msgid ""
|
1888 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
1889 |
"style so the background will be clipped on the text."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: widgets/premium-dual-header.php:
|
1893 |
msgid "Normal Background"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: widgets/premium-dual-header.php:
|
1897 |
msgid "Clipped Background"
|
1898 |
msgstr ""
|
1899 |
|
@@ -1982,7 +2036,7 @@ msgid ""
|
|
1982 |
"5 seconds before backspace effect."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: widgets/premium-fancytext.php:202
|
1986 |
msgid "Loop"
|
1987 |
msgstr ""
|
1988 |
|
@@ -2027,139 +2081,148 @@ msgstr ""
|
|
2027 |
msgid "Cursor Text"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: widgets/premium-grid.php:
|
2031 |
msgid "First Category"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: widgets/premium-grid.php:
|
2035 |
msgid "First Category Label"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: widgets/premium-grid.php:
|
2039 |
msgid "All"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: widgets/premium-grid.php:
|
2043 |
msgid "Category"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: widgets/premium-grid.php:
|
2047 |
msgid "Rotation Degrees"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: widgets/premium-grid.php:
|
2051 |
msgid "Set rotation value in degress"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: widgets/premium-grid.php:
|
2055 |
msgid "Active Category Index"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: widgets/premium-grid.php:
|
2059 |
msgid "Put the index of the default active category, default is 1"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
2063 |
msgid "Images"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: widgets/premium-grid.php:
|
2067 |
-
#: widgets/premium-person.php:
|
2068 |
#: widgets/premium-testimonials.php:106
|
2069 |
msgid "Name"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: widgets/premium-grid.php:
|
2073 |
-
msgid "
|
|
|
|
|
|
|
|
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: widgets/premium-grid.php:
|
2077 |
msgid "Grid Settings"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: widgets/premium-grid.php:
|
2081 |
msgid "Columns"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: widgets/premium-grid.php:
|
2085 |
msgid "1 Column"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: widgets/premium-grid.php:
|
2089 |
msgid "5 Columns"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: widgets/premium-grid.php:
|
2093 |
msgid "6 Columns"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
2097 |
msgid "Grid Layout"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: widgets/premium-grid.php:
|
2101 |
msgid "Even"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: widgets/premium-grid.php:
|
2105 |
msgid "Image Gap"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: widgets/premium-grid.php:
|
2109 |
msgid "Skin"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: widgets/premium-grid.php:
|
2113 |
msgid "Choose a layout style for the gallery"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: widgets/premium-grid.php:
|
2117 |
msgid "Style 1"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: widgets/premium-grid.php:
|
2121 |
msgid "Style 2"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: widgets/premium-grid.php:
|
2125 |
msgid "Style 3"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: widgets/premium-grid.php:
|
2129 |
-
msgid "Filter"
|
2130 |
-
msgstr ""
|
2131 |
-
|
2132 |
-
#: widgets/premium-grid.php:364
|
2133 |
msgid "Lightbox"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: widgets/premium-grid.php:
|
2137 |
msgid "Content Alignment"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: widgets/premium-grid.php:
|
2141 |
msgid ""
|
2142 |
"If the content text is not suiting well on specific screen sizes, you may "
|
2143 |
"enable this option which will hide the description text."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: widgets/premium-grid.php:
|
2147 |
msgid "General"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: widgets/premium-grid.php:
|
2151 |
msgid "Icons"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: widgets/premium-grid.php:
|
|
|
2155 |
msgid "Position"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: widgets/premium-grid.php:
|
2159 |
msgid "Background"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: widgets/premium-grid.php:
|
2163 |
msgid "Background Active Color"
|
2164 |
msgstr ""
|
2165 |
|
@@ -2234,17 +2297,16 @@ msgid "Image Hovering Title"
|
|
2234 |
msgstr ""
|
2235 |
|
2236 |
#: widgets/premium-image-separator.php:185
|
2237 |
-
#: widgets/premium-pricing-table.php:
|
2238 |
msgid "Link Target"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
#: widgets/premium-image-separator.php:187
|
2242 |
-
#: widgets/premium-pricing-table.php:
|
2243 |
msgid " Where would you like the link be opened?"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: widgets/premium-image-separator.php:194
|
2247 |
-
#: widgets/premium-pricing-table.php:332 widgets/premium-testimonials.php:167
|
2248 |
msgid "blank"
|
2249 |
msgstr ""
|
2250 |
|
@@ -2252,135 +2314,143 @@ msgstr ""
|
|
2252 |
msgid "Center Location"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: widgets/premium-maps.php:59
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2256 |
msgid "Latitude & Longitude Finder"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: widgets/premium-maps.php:
|
2260 |
msgid "Find Latitude & Longitude"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: widgets/premium-maps.php:
|
2264 |
msgid "Center Latitude"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: widgets/premium-maps.php:
|
2268 |
msgid "Center latitude and longitude are required to identify your location"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: widgets/premium-maps.php:
|
2272 |
msgid "Center Longitude"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: widgets/premium-maps.php:
|
2276 |
msgid "Markers"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: widgets/premium-maps.php:
|
2280 |
msgid "Max Width"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: widgets/premium-maps.php:
|
2284 |
msgid "Set the Maximum width for markers description box"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: widgets/premium-maps.php:
|
2288 |
msgid "Latitude"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: widgets/premium-maps.php:
|
2292 |
msgid "Longitude"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: widgets/premium-maps.php:
|
2296 |
msgid "Custom Icon"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: widgets/premium-maps.php:
|
2300 |
msgid "Map Pins"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: widgets/premium-maps.php:
|
2304 |
msgid "Premium Google Maps"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: widgets/premium-maps.php:
|
2308 |
msgid "Add an optional description to your map pin"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: widgets/premium-maps.php:
|
2312 |
msgid "Controls"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: widgets/premium-maps.php:
|
2316 |
msgid "Map Type"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: widgets/premium-maps.php:
|
2320 |
msgid "Road Map"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: widgets/premium-maps.php:
|
2324 |
msgid "Satellite"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: widgets/premium-maps.php:
|
2328 |
msgid "Terrain"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: widgets/premium-maps.php:
|
2332 |
msgid "Hybrid"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: widgets/premium-maps.php:
|
2336 |
msgid "Zoom"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: widgets/premium-maps.php:
|
2340 |
msgid "Map Type Controls"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: widgets/premium-maps.php:
|
2344 |
msgid "Zoom Controls"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: widgets/premium-maps.php:
|
2348 |
msgid "Street View Control"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: widgets/premium-maps.php:
|
2352 |
msgid "Fullscreen Control"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: widgets/premium-maps.php:
|
2356 |
msgid "Scroll Wheel Zoom"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: widgets/premium-maps.php:
|
2360 |
msgid "Info Container Always Opened"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: widgets/premium-maps.php:
|
2364 |
msgid "Info Container Opened when Hovered"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: widgets/premium-maps.php:
|
2368 |
msgid "Info Container Closed when Mouse Out"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: widgets/premium-maps.php:
|
2372 |
msgid "Marker Clustering"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: widgets/premium-maps.php:
|
2376 |
msgid "Map Style"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: widgets/premium-maps.php:
|
2380 |
msgid "JSON Code"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: widgets/premium-maps.php:
|
2384 |
msgid "Map"
|
2385 |
msgstr ""
|
2386 |
|
@@ -2396,85 +2466,105 @@ msgstr ""
|
|
2396 |
msgid "Use font awesome icon or upload a custom image"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: widgets/premium-modalbox.php:
|
2400 |
msgid "Provide the modal box with a title"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: widgets/premium-modalbox.php:
|
2404 |
msgid "Content to Show"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: widgets/premium-modalbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2408 |
msgid "Modal content is a template which you can choose from Elementor library"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: widgets/premium-modalbox.php:
|
2412 |
msgid "Upper Close Button"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: widgets/premium-modalbox.php:
|
2416 |
msgid "Lower Close Button"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: widgets/premium-modalbox.php:
|
|
|
|
|
|
|
|
|
2420 |
msgid "Display Style"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: widgets/premium-modalbox.php:
|
2424 |
msgid "Choose where would you like the modal box appear on"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: widgets/premium-modalbox.php:
|
|
|
|
|
|
|
|
|
2428 |
msgid "Button Text"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: widgets/premium-modalbox.php:
|
2432 |
msgid "Premium Modal Box"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: widgets/premium-modalbox.php:
|
2436 |
msgid "Button Size"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: widgets/premium-modalbox.php:
|
2440 |
msgid "Delay in Popup Display (Sec)"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: widgets/premium-modalbox.php:
|
2444 |
msgid ""
|
2445 |
"When should the popup appear during page load? The value are counted in "
|
2446 |
"seconds"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: widgets/premium-modalbox.php:
|
2450 |
msgid "Trigger"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: widgets/premium-modalbox.php:
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
|
|
|
|
|
|
|
|
2457 |
msgid "Typography"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: widgets/premium-modalbox.php:
|
2461 |
msgid "Heading"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: widgets/premium-modalbox.php:
|
2465 |
msgid "Modal Box"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: widgets/premium-modalbox.php:
|
2469 |
-
msgid "
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: widgets/premium-modalbox.php:
|
2473 |
-
msgid "
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: widgets/premium-modalbox.php:
|
2477 |
-
msgid "
|
2478 |
msgstr ""
|
2479 |
|
2480 |
#: widgets/premium-person.php:51
|
@@ -2493,7 +2583,7 @@ msgstr ""
|
|
2493 |
msgid "John Frank"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: widgets/premium-person.php:160 widgets/premium-person.php:
|
2497 |
msgid "Job Title"
|
2498 |
msgstr ""
|
2499 |
|
@@ -2501,37 +2591,13 @@ msgstr ""
|
|
2501 |
msgid "Senior Developer"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: widgets/premium-person.php:175
|
2505 |
-
msgid "H1"
|
2506 |
-
msgstr ""
|
2507 |
-
|
2508 |
-
#: widgets/premium-person.php:176
|
2509 |
-
msgid "H2"
|
2510 |
-
msgstr ""
|
2511 |
-
|
2512 |
-
#: widgets/premium-person.php:177
|
2513 |
-
msgid "H3"
|
2514 |
-
msgstr ""
|
2515 |
-
|
2516 |
-
#: widgets/premium-person.php:178
|
2517 |
-
msgid "H4"
|
2518 |
-
msgstr ""
|
2519 |
-
|
2520 |
-
#: widgets/premium-person.php:179
|
2521 |
-
msgid "H5"
|
2522 |
-
msgstr ""
|
2523 |
-
|
2524 |
-
#: widgets/premium-person.php:180
|
2525 |
-
msgid "H6"
|
2526 |
-
msgstr ""
|
2527 |
-
|
2528 |
#: widgets/premium-person.php:191
|
2529 |
msgid ""
|
2530 |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper "
|
2531 |
"nulla non metus auctor fringilla"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: widgets/premium-person.php:227 widgets/premium-person.php:
|
2535 |
msgid "Social Icons"
|
2536 |
msgstr ""
|
2537 |
|
@@ -2551,23 +2617,31 @@ msgstr ""
|
|
2551 |
msgid "Google+"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: widgets/premium-person.php:278
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2555 |
msgid "Pinterest"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: widgets/premium-person.php:
|
2559 |
msgid "Dribbble"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: widgets/premium-person.php:
|
2563 |
msgid "Behance"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: widgets/premium-person.php:
|
2567 |
msgid "Email Address"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: widgets/premium-person.php:
|
2571 |
msgid "Content Background"
|
2572 |
msgstr ""
|
2573 |
|
@@ -2576,24 +2650,24 @@ msgid "Select HTML tag for the title"
|
|
2576 |
msgstr ""
|
2577 |
|
2578 |
#: widgets/premium-pricing-table.php:99 widgets/premium-pricing-table.php:128
|
2579 |
-
#: widgets/premium-pricing-table.php:
|
2580 |
-
#: widgets/premium-pricing-table.php:
|
2581 |
msgid "Price"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: widgets/premium-pricing-table.php:109 widgets/premium-pricing-table.php:
|
2585 |
msgid "Slashed Price"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: widgets/premium-pricing-table.php:118 widgets/premium-pricing-table.php:
|
2589 |
msgid "Currency"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: widgets/premium-pricing-table.php:138 widgets/premium-pricing-table.php:
|
2593 |
msgid "Divider"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: widgets/premium-pricing-table.php:148 widgets/premium-pricing-table.php:
|
2597 |
msgid "Duration"
|
2598 |
msgstr ""
|
2599 |
|
@@ -2601,8 +2675,8 @@ msgstr ""
|
|
2601 |
msgid "Icon List"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: widgets/premium-pricing-table.php:187 widgets/premium-pricing-table.php:
|
2605 |
-
#: widgets/premium-pricing-table.php:
|
2606 |
msgid "Features"
|
2607 |
msgstr ""
|
2608 |
|
@@ -2618,161 +2692,157 @@ msgstr ""
|
|
2618 |
msgid "List Item #3"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: widgets/premium-pricing-table.php:
|
2622 |
-
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
|
2623 |
-
msgstr ""
|
2624 |
-
|
2625 |
-
#: widgets/premium-pricing-table.php:271
|
2626 |
msgid "Get Started"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: widgets/premium-pricing-table.php:
|
2630 |
-
#: widgets/premium-pricing-table.php:
|
2631 |
msgid "Badge"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: widgets/premium-pricing-table.php:
|
2635 |
msgid "Popular"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: widgets/premium-pricing-table.php:
|
2639 |
-
#: widgets/premium-pricing-table.php:
|
2640 |
-
#: widgets/premium-pricing-table.php:
|
2641 |
msgid "Container"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: widgets/premium-pricing-table.php:
|
2645 |
msgid "Unset"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: widgets/premium-pricing-table.php:
|
2649 |
msgid "Vertical Spacing"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: widgets/premium-pricing-table.php:
|
2653 |
msgid "Hover Text Color"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: widgets/premium-pricing-table.php:
|
2657 |
msgid "Vertical Distance"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: widgets/premium-pricing-table.php:
|
2661 |
-
#: widgets/premium-pricing-table.php:
|
2662 |
msgid "Horizontal Distance"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: widgets/premium-pricing-table.php:
|
2666 |
msgid "Box Settings"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: widgets/premium-progressbar.php:
|
2670 |
msgid "Progress Bar Settings"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: widgets/premium-progressbar.php:
|
2674 |
msgid "Number of Labels"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: widgets/premium-progressbar.php:
|
2678 |
msgid "Left & Right Labels"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: widgets/premium-progressbar.php:
|
2682 |
msgid "Multiple Labels"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: widgets/premium-progressbar.php:
|
2686 |
msgid "My Skill"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: widgets/premium-progressbar.php:
|
2690 |
-
#: widgets/premium-progressbar.php:
|
2691 |
msgid "Percentage"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: widgets/premium-progressbar.php:
|
2695 |
msgid "50%"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: widgets/premium-progressbar.php:
|
2699 |
-
#: widgets/premium-progressbar.php:
|
2700 |
msgid "Label"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: widgets/premium-progressbar.php:
|
2704 |
msgid "label"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: widgets/premium-progressbar.php:
|
2708 |
-
msgid "50"
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
#: widgets/premium-progressbar.php:118
|
2712 |
msgid "Enable Percentage"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: widgets/premium-progressbar.php:
|
2716 |
msgid "Enable percentage for labels"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: widgets/premium-progressbar.php:
|
2720 |
msgid "Labels Indicator"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: widgets/premium-progressbar.php:
|
2724 |
msgid "Pin"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: widgets/premium-progressbar.php:
|
2728 |
msgid "Arrow"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: widgets/premium-progressbar.php:
|
2732 |
msgid "Labels Alignment"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: widgets/premium-progressbar.php:
|
2736 |
msgid "Solid"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: widgets/premium-progressbar.php:
|
2740 |
msgid "Stripped"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: widgets/premium-progressbar.php:
|
|
|
|
|
|
|
|
|
2744 |
msgid "Animated"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: widgets/premium-progressbar.php:
|
2748 |
msgid "Progress Bar"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: widgets/premium-progressbar.php:
|
2752 |
msgid "Indicator Background"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: widgets/premium-progressbar.php:
|
2756 |
msgid "Main Background"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: widgets/premium-progressbar.php:
|
2760 |
msgid "Labels' Color"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: widgets/premium-progressbar.php:
|
2764 |
msgid "Labels' Typography"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: widgets/premium-progressbar.php:
|
2768 |
msgid "Percentage Color"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: widgets/premium-progressbar.php:
|
2772 |
msgid "Percentage Typography"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: widgets/premium-progressbar.php:
|
2776 |
msgid "Indicator"
|
2777 |
msgstr ""
|
2778 |
|
@@ -2884,170 +2954,266 @@ msgstr ""
|
|
2884 |
msgid "Bottom Icon Position"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: widgets/premium-title.php:
|
2888 |
msgid "Premium Title"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: widgets/premium-title.php:
|
2892 |
-
msgid "Style1"
|
2893 |
-
msgstr ""
|
2894 |
-
|
2895 |
-
#: widgets/premium-title.php:53
|
2896 |
-
msgid "Style2"
|
2897 |
-
msgstr ""
|
2898 |
-
|
2899 |
-
#: widgets/premium-title.php:54
|
2900 |
-
msgid "Style3"
|
2901 |
-
msgstr ""
|
2902 |
-
|
2903 |
-
#: widgets/premium-title.php:55
|
2904 |
-
msgid "Style4"
|
2905 |
-
msgstr ""
|
2906 |
-
|
2907 |
-
#: widgets/premium-title.php:56
|
2908 |
-
msgid "Style5"
|
2909 |
-
msgstr ""
|
2910 |
-
|
2911 |
-
#: widgets/premium-title.php:57
|
2912 |
-
msgid "Style6"
|
2913 |
-
msgstr ""
|
2914 |
-
|
2915 |
-
#: widgets/premium-title.php:58
|
2916 |
-
msgid "Style7"
|
2917 |
-
msgstr ""
|
2918 |
-
|
2919 |
-
#: widgets/premium-title.php:75
|
2920 |
msgid "Font Awesome Icon"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: widgets/premium-title.php:
|
2924 |
msgid "h2"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: widgets/premium-title.php:
|
2928 |
msgid "Strip Width (PX)"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: widgets/premium-title.php:
|
2932 |
msgid "Strip Height (PX)"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: widgets/premium-title.php:
|
2936 |
msgid "Strip Top Spacing (PX)"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: widgets/premium-title.php:
|
2940 |
msgid "Strip Bottom Spacing (PX)"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: widgets/premium-title.php:
|
2944 |
msgid "Align"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: widgets/premium-title.php:
|
2948 |
msgid "Line Color"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: widgets/premium-title.php:
|
2952 |
msgid "Triangle Color"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: widgets/premium-title.php:
|
2956 |
msgid "Strip Color"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: widgets/premium-title.php:
|
2960 |
msgid "Icon Style"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: widgets/premium-videobox.php:
|
2964 |
msgid "Video Box"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: widgets/premium-videobox.php:
|
2968 |
msgid "Choose an image for the video box"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: widgets/premium-videobox.php:
|
2972 |
msgid "Video Type"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: widgets/premium-videobox.php:
|
2976 |
-
msgid "
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: widgets/premium-videobox.php:
|
2980 |
-
msgid "
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: widgets/premium-videobox.php:
|
2984 |
msgid "ID"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: widgets/premium-videobox.php:
|
2988 |
msgid "Embed URL"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: widgets/premium-videobox.php:
|
2992 |
msgid "Video ID"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: widgets/premium-videobox.php:
|
2996 |
msgid ""
|
2997 |
"Enter the numbers and letters after the equal sign which located in your "
|
2998 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
2999 |
"example, z1hQgVpfTKU"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: widgets/premium-videobox.php:
|
3003 |
msgid ""
|
3004 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
3005 |
-
"embed/z1hQgVpfTKU
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: widgets/premium-videobox.php:
|
3009 |
msgid "Show Related Videos"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: widgets/premium-videobox.php:
|
3013 |
msgid "Enable/Disable related videos after the video"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3017 |
msgid "Additional Options"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: widgets/premium-videobox.php:
|
3021 |
msgid "Play Icon"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: widgets/premium-videobox.php:
|
3025 |
-
msgid "
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: widgets/premium-videobox.php:
|
3029 |
-
msgid "
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: widgets/premium-videobox.php:
|
3033 |
-
#: widgets/premium-videobox.php:
|
3034 |
msgid "Video Text"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: widgets/premium-videobox.php:
|
3038 |
msgid "Play Video"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: widgets/premium-videobox.php:
|
3042 |
msgid "Hover Animation"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: widgets/premium-videobox.php:
|
3046 |
msgid ""
|
3047 |
"Hover animation works only when you set a background color or image for play "
|
3048 |
"icon"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
-
#: widgets/premium-videobox.php:
|
3052 |
msgid "Hover Padding"
|
3053 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2019-01-04 16:59+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/notices.php:101
|
23 |
msgid ""
|
24 |
"<p>Premium Addons for Elementor is not working because you need to Install "
|
25 |
"Elementor plugin.</p>"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/includes/notices.php:103
|
29 |
msgid "Install Now"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/includes/notices.php:111
|
33 |
msgid ""
|
34 |
"Premium Addons for Elementor is not working because you need to activate "
|
35 |
"Elementor plugin."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/includes/notices.php:113
|
39 |
msgid "Activate Now"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin/includes/notices.php:128
|
43 |
+
msgid "Did you like"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin/includes/notices.php:128
|
47 |
+
msgid "Plugin?"
|
|
|
|
|
|
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/includes/notices.php:129
|
|
|
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 "
|
54 |
+
"rating on WordPress. By spreading the love, we can create even greater free "
|
55 |
+
"stuff in the future!"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: admin/includes/notices.php:130
|
59 |
+
msgid "Leave a Review"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: admin/includes/notices.php:131
|
63 |
+
msgid "Maybe Later"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: admin/includes/notices.php:132
|
67 |
+
msgid "I Already did"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: admin/includes/notices.php:200
|
71 |
+
msgid "Premium Block for Gutenberg"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: admin/includes/notices.php:200
|
75 |
+
msgid "is Now Available."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: admin/includes/notices.php:201
|
79 |
+
msgid "Install it Now."
|
80 |
msgstr ""
|
81 |
|
82 |
#: admin/settings/about.php:13
|
83 |
msgid "About"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin/settings/about.php:35 admin/settings/elements.php:112
|
87 |
#: admin/settings/gomaps.php:61 admin/settings/sys-info.php:31
|
88 |
#: admin/settings/version-control.php:61
|
89 |
#, php-format
|
108 |
msgid "Cancel"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/settings/elements.php:189
|
112 |
msgid "Premium Image Separator"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin/settings/elements.php:319
|
116 |
msgid "Premium Alert Box"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin/settings/elements.php:327
|
120 |
msgid "Premium Icon Box"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin/settings/elements.php:340
|
124 |
msgid "Premium Twitter Feed"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/settings/elements.php:348
|
128 |
msgid "Premium Instagram Feed"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/settings/elements.php:359
|
132 |
msgid "Premium Flip Box"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin/settings/elements.php:367
|
136 |
msgid "Premium Unfold"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin/settings/elements.php:378
|
140 |
msgid "Premium Messenger Chat"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin/settings/elements.php:386
|
144 |
msgid "Premium Tabs"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin/settings/elements.php:396
|
148 |
msgid "Premium Chart"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin/settings/elements.php:404
|
152 |
msgid "Premium Preview Window"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin/settings/elements.php:414
|
156 |
msgid "Premium Image Hotspots"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin/settings/elements.php:422
|
160 |
msgid "Premium Facebook Reviews"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin/settings/elements.php:432
|
164 |
msgid "Premium Image Comparison"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin/settings/elements.php:440
|
168 |
msgid "Premium Divider"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/settings/elements.php:451
|
172 |
msgid "Premium Magic Section"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/settings/elements.php:459
|
176 |
msgid "Premium Google Reviews"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin/settings/elements.php:469
|
180 |
msgid "Premium Behance Feed"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin/settings/elements.php:477
|
184 |
msgid "Premium Tables"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin/settings/elements.php:488
|
188 |
msgid "Premium Image Layers"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin/settings/elements.php:496
|
192 |
msgid "Premium iHover"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin/settings/elements.php:507
|
196 |
msgid "Premium Content Switcher"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/settings/elements.php:515
|
200 |
msgid "Premium Facebook Feed"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin/settings/elements.php:526
|
204 |
msgid "Premium Whatsapp Chat"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin/settings/elements.php:537
|
208 |
msgid "Premium Section Parallax"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/settings/elements.php:544
|
212 |
msgid "Premium Section Particles"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: admin/settings/elements.php:554
|
216 |
msgid "Premium Section Animated Gradient"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: admin/settings/elements.php:561
|
220 |
msgid "Premium Section Ken Burns"
|
221 |
msgstr ""
|
222 |
|
256 |
msgid "Rolling Back to Version "
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: widgets/premium-banner.php:42 widgets/premium-banner.php:425
|
260 |
#: widgets/premium-blog.php:43 widgets/premium-blog.php:378
|
261 |
+
#: widgets/premium-grid.php:510 widgets/premium-image-separator.php:43
|
262 |
+
#: widgets/premium-modalbox.php:237 widgets/premium-modalbox.php:421
|
263 |
+
#: widgets/premium-person.php:30 widgets/premium-person.php:37
|
264 |
+
#: widgets/premium-testimonials.php:36 widgets/premium-testimonials.php:202
|
265 |
+
#: widgets/premium-videobox.php:43
|
266 |
msgid "Image"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: widgets/premium-banner.php:48 widgets/premium-counter.php:146
|
270 |
+
#: widgets/premium-grid.php:142
|
271 |
msgid "Upload Image"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: widgets/premium-banner.php:49
|
275 |
msgid "Select an image for the Banner"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: widgets/premium-banner.php:61 widgets/premium-banner.php:324
|
279 |
#: widgets/premium-blog.php:218 widgets/premium-button.php:68
|
280 |
+
#: widgets/premium-dual-header.php:103 widgets/premium-dual-header.php:127
|
281 |
+
#: widgets/premium-grid.php:187 widgets/premium-image-button.php:64
|
282 |
#: widgets/premium-image-separator.php:120
|
283 |
+
#: widgets/premium-pricing-table.php:297 widgets/premium-testimonials.php:136
|
284 |
+
#: widgets/premium-testimonials.php:145 widgets/premium-videobox.php:71
|
285 |
msgid "Link"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: widgets/premium-banner.php:68
|
289 |
msgid "Custom Link"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: widgets/premium-banner.php:70
|
293 |
msgid "Add a custom link to the banner"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: widgets/premium-banner.php:79
|
297 |
msgid "Set custom Link"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: widgets/premium-banner.php:81
|
301 |
msgid "What custom link you want to set to banner?"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: widgets/premium-banner.php:92 widgets/premium-banner.php:311
|
305 |
+
#: widgets/premium-banner.php:341 widgets/premium-button.php:59
|
306 |
+
#: widgets/premium-button.php:84 widgets/premium-dual-header.php:115
|
307 |
+
#: widgets/premium-dual-header.php:144 widgets/premium-grid.php:179
|
308 |
+
#: widgets/premium-grid.php:198 widgets/premium-image-button.php:55
|
309 |
#: widgets/premium-image-button.php:80 widgets/premium-image-separator.php:132
|
310 |
#: widgets/premium-image-separator.php:144
|
311 |
+
#: widgets/premium-pricing-table.php:286 widgets/premium-pricing-table.php:309
|
312 |
msgid "Existing Page"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: widgets/premium-banner.php:94
|
316 |
msgid "Link the banner with an existing page"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: widgets/premium-banner.php:106
|
320 |
msgid "New Tab"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: widgets/premium-banner.php:108
|
324 |
msgid "Choose if you want the link be opened in a new tab or not"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: widgets/premium-banner.php:117
|
328 |
msgid "Nofollow Option"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: widgets/premium-banner.php:119
|
332 |
msgid "if you choose yes, the link will not be counted in search engines"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: widgets/premium-banner.php:128 widgets/premium-fancytext.php:132
|
336 |
msgid "Effect"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: widgets/premium-banner.php:131
|
340 |
msgid "Choose a hover effect for the banner"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: widgets/premium-banner.php:145
|
344 |
msgid "Always Hovered"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: widgets/premium-banner.php:147
|
348 |
msgid "Choose if you want the effect to be always triggered"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: widgets/premium-banner.php:153 widgets/premium-blog.php:50
|
352 |
+
#: widgets/premium-button.php:99 widgets/premium-grid.php:351
|
353 |
#: widgets/premium-image-button.php:95 widgets/premium-person.php:100
|
354 |
msgid "Hover Effect"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: widgets/premium-banner.php:156 widgets/premium-blog.php:54
|
358 |
#: widgets/premium-blog.php:76 widgets/premium-button.php:103
|
359 |
+
#: widgets/premium-grid.php:355 widgets/premium-image-button.php:99
|
360 |
+
#: widgets/premium-modalbox.php:66 widgets/premium-person.php:103
|
361 |
+
#: widgets/premium-progressbar.php:137
|
362 |
msgid "None"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: widgets/premium-banner.php:157 widgets/premium-blog.php:55
|
366 |
+
#: widgets/premium-grid.php:356 widgets/premium-person.php:104
|
367 |
msgid "Zoom In"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: widgets/premium-banner.php:158 widgets/premium-blog.php:56
|
371 |
+
#: widgets/premium-grid.php:357 widgets/premium-person.php:105
|
372 |
msgid "Zoom Out"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: widgets/premium-banner.php:159 widgets/premium-blog.php:57
|
376 |
+
#: widgets/premium-grid.php:358 widgets/premium-person.php:106
|
377 |
msgid "Scale"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: widgets/premium-banner.php:160 widgets/premium-blog.php:58
|
381 |
+
#: widgets/premium-grid.php:359 widgets/premium-person.php:107
|
382 |
msgid "Grayscale"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: widgets/premium-banner.php:161 widgets/premium-blog.php:59
|
386 |
+
#: widgets/premium-grid.php:360 widgets/premium-person.php:108
|
387 |
msgid "Blur"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: widgets/premium-banner.php:162 widgets/premium-blog.php:60
|
391 |
+
#: widgets/premium-grid.php:361 widgets/premium-person.php:109
|
392 |
msgid "Bright"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: widgets/premium-banner.php:163 widgets/premium-blog.php:61
|
396 |
+
#: widgets/premium-grid.php:362 widgets/premium-person.php:110
|
397 |
msgid "Sepia"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: widgets/premium-banner.php:171 widgets/premium-contactform.php:114
|
401 |
+
#: widgets/premium-contactform.php:196 widgets/premium-grid.php:331
|
402 |
+
#: widgets/premium-maps.php:236 widgets/premium-person.php:76
|
403 |
+
#: widgets/premium-person.php:515 widgets/premium-progressbar.php:231
|
404 |
+
#: widgets/premium-progressbar.php:566
|
405 |
msgid "Height"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: widgets/premium-banner.php:178
|
409 |
msgid ""
|
410 |
"Choose if you want to set a custom height for the banner or keep it as it is"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: widgets/premium-banner.php:184
|
414 |
msgid "Min Height"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: widgets/premium-banner.php:186
|
418 |
msgid "Set a minimum height value in pixels"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: widgets/premium-banner.php:198 widgets/premium-pricing-table.php:825
|
422 |
msgid "Vertical Align"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: widgets/premium-banner.php:204 widgets/premium-button.php:160
|
426 |
+
#: widgets/premium-counter.php:164 widgets/premium-pricing-table.php:829
|
427 |
+
#: widgets/premium-testimonials.php:165 widgets/premium-vscroll.php:245
|
428 |
msgid "Top"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: widgets/premium-banner.php:205 widgets/premium-vscroll.php:246
|
432 |
msgid "Middle"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: widgets/premium-banner.php:206 widgets/premium-button.php:161
|
436 |
+
#: widgets/premium-pricing-table.php:837 widgets/premium-vscroll.php:247
|
437 |
msgid "Bottom"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: widgets/premium-banner.php:207
|
441 |
msgid "Full"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: widgets/premium-banner.php:218 widgets/premium-carousel.php:206
|
445 |
msgid "Extra Class"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: widgets/premium-banner.php:220
|
449 |
msgid ""
|
450 |
"Add extra class name that will be applied to the banner, and you can use "
|
451 |
"this class for your customizations."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: widgets/premium-banner.php:229 widgets/premium-blog.php:93
|
455 |
+
#: widgets/premium-blog.php:533 widgets/premium-carousel.php:81
|
456 |
+
#: widgets/premium-grid.php:574 widgets/premium-modalbox.php:44
|
457 |
+
#: widgets/premium-modalbox.php:141 widgets/premium-modalbox.php:163
|
458 |
#: widgets/premium-testimonials.php:180 widgets/premium-testimonials.php:356
|
459 |
+
#: widgets/premium-vscroll.php:46
|
460 |
msgid "Content"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: widgets/premium-banner.php:235 widgets/premium-banner.php:505
|
464 |
+
#: widgets/premium-blog.php:436 widgets/premium-counter.php:43
|
465 |
+
#: widgets/premium-counter.php:363 widgets/premium-grid.php:580
|
466 |
+
#: widgets/premium-maps.php:174 widgets/premium-maps.php:358
|
467 |
+
#: widgets/premium-modalbox.php:126 widgets/premium-pricing-table.php:56
|
468 |
+
#: widgets/premium-pricing-table.php:429 widgets/premium-pricing-table.php:651
|
469 |
+
#: widgets/premium-progressbar.php:56 widgets/premium-progressbar.php:327
|
470 |
+
#: widgets/premium-title.php:31 widgets/premium-title.php:38
|
471 |
+
#: widgets/premium-title.php:238
|
472 |
msgid "Title"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: widgets/premium-banner.php:236
|
476 |
msgid "Give a title to this banner"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: widgets/premium-banner.php:239
|
480 |
msgid "Premium Banner"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: widgets/premium-banner.php:246 widgets/premium-dual-header.php:67
|
484 |
#: widgets/premium-person.php:142 widgets/premium-person.php:171
|
485 |
#: widgets/premium-pricing-table.php:77 widgets/premium-testimonials.php:77
|
486 |
+
#: widgets/premium-testimonials.php:118 widgets/premium-title.php:88
|
487 |
msgid "HTML Tag"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: widgets/premium-banner.php:247
|
491 |
msgid ""
|
492 |
"Select a heading tag for the title. Headings are defined with H1 to H6 tags"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: widgets/premium-banner.php:265 widgets/premium-banner.php:272
|
496 |
+
#: widgets/premium-banner.php:561 widgets/premium-grid.php:160
|
497 |
+
#: widgets/premium-grid.php:611 widgets/premium-maps.php:183
|
498 |
+
#: widgets/premium-maps.php:442 widgets/premium-person.php:188
|
499 |
+
#: widgets/premium-person.php:418 widgets/premium-pricing-table.php:238
|
500 |
+
#: widgets/premium-pricing-table.php:249 widgets/premium-pricing-table.php:453
|
501 |
+
#: widgets/premium-pricing-table.php:1223
|
502 |
msgid "Description"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: widgets/premium-banner.php:273
|
506 |
msgid "Give the description to this banner"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: widgets/premium-banner.php:276
|
510 |
msgid ""
|
511 |
"Premium Banner gives you a wide range of styles and options that you will "
|
512 |
"definitely fall in love with"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: widgets/premium-banner.php:283 widgets/premium-banner.php:602
|
516 |
+
#: widgets/premium-button.php:38 widgets/premium-button.php:466
|
517 |
#: widgets/premium-contactform.php:166 widgets/premium-contactform.php:418
|
518 |
#: widgets/premium-image-button.php:34 widgets/premium-image-button.php:366
|
519 |
+
#: widgets/premium-modalbox.php:236 widgets/premium-pricing-table.php:260
|
520 |
+
#: widgets/premium-pricing-table.php:460 widgets/premium-pricing-table.php:1317
|
521 |
msgid "Button"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: widgets/premium-banner.php:294 widgets/premium-button.php:45
|
525 |
#: widgets/premium-fancytext.php:89 widgets/premium-image-button.php:41
|
526 |
+
#: widgets/premium-modalbox.php:210 widgets/premium-modalbox.php:238
|
527 |
+
#: widgets/premium-modalbox.php:437 widgets/premium-pricing-table.php:66
|
528 |
+
#: widgets/premium-pricing-table.php:171 widgets/premium-pricing-table.php:271
|
529 |
+
#: widgets/premium-pricing-table.php:353 widgets/premium-pricing-table.php:1069
|
530 |
+
#: widgets/premium-pricing-table.php:1233 widgets/premium-videobox.php:233
|
531 |
msgid "Text"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: widgets/premium-banner.php:307 widgets/premium-button.php:55
|
535 |
+
#: widgets/premium-dual-header.php:111 widgets/premium-grid.php:175
|
536 |
+
#: widgets/premium-image-button.php:51 widgets/premium-pricing-table.php:282
|
537 |
msgid "Link Type"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: widgets/premium-banner.php:310 widgets/premium-button.php:58
|
541 |
+
#: widgets/premium-dual-header.php:114 widgets/premium-grid.php:178
|
542 |
#: widgets/premium-image-button.php:54 widgets/premium-image-separator.php:131
|
543 |
#: widgets/premium-image-separator.php:159
|
544 |
+
#: widgets/premium-pricing-table.php:285 widgets/premium-videobox.php:113
|
545 |
msgid "URL"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: widgets/premium-banner.php:357 widgets/premium-blog.php:348
|
549 |
+
#: widgets/premium-button.php:419 widgets/premium-countdown.php:110
|
550 |
+
#: widgets/premium-dual-header.php:160 widgets/premium-fancytext.php:98
|
551 |
+
#: widgets/premium-image-button.php:319 widgets/premium-maps.php:413
|
552 |
+
#: widgets/premium-maps.php:495 widgets/premium-modalbox.php:466
|
553 |
+
#: widgets/premium-person.php:198 widgets/premium-pricing-table.php:210
|
554 |
+
#: widgets/premium-title.php:105
|
555 |
msgid "Alignment"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: widgets/premium-banner.php:361 widgets/premium-blog.php:352
|
559 |
+
#: widgets/premium-button.php:162 widgets/premium-button.php:423
|
560 |
+
#: widgets/premium-countdown.php:114 widgets/premium-counter.php:166
|
561 |
+
#: widgets/premium-dual-header.php:164 widgets/premium-fancytext.php:102
|
562 |
+
#: widgets/premium-grid.php:384 widgets/premium-image-button.php:323
|
563 |
+
#: widgets/premium-image-separator.php:97 widgets/premium-maps.php:417
|
564 |
+
#: widgets/premium-maps.php:499 widgets/premium-modalbox.php:470
|
565 |
+
#: widgets/premium-person.php:202 widgets/premium-pricing-table.php:214
|
566 |
+
#: widgets/premium-pricing-table.php:405 widgets/premium-progressbar.php:153
|
567 |
+
#: widgets/premium-title.php:109 widgets/premium-title.php:210
|
568 |
+
#: widgets/premium-vscroll.php:153 widgets/premium-vscroll.php:233
|
569 |
msgid "Left"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: widgets/premium-banner.php:365 widgets/premium-blog.php:356
|
573 |
+
#: widgets/premium-button.php:427 widgets/premium-countdown.php:118
|
574 |
+
#: widgets/premium-dual-header.php:168 widgets/premium-fancytext.php:106
|
575 |
+
#: widgets/premium-grid.php:388 widgets/premium-image-button.php:327
|
576 |
+
#: widgets/premium-image-separator.php:101 widgets/premium-maps.php:421
|
577 |
+
#: widgets/premium-maps.php:503 widgets/premium-modalbox.php:474
|
578 |
+
#: widgets/premium-person.php:206 widgets/premium-pricing-table.php:218
|
579 |
+
#: widgets/premium-progressbar.php:157 widgets/premium-title.php:113
|
580 |
+
#: widgets/premium-title.php:214
|
581 |
msgid "Center"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: widgets/premium-banner.php:369 widgets/premium-blog.php:360
|
585 |
+
#: widgets/premium-button.php:163 widgets/premium-button.php:431
|
586 |
+
#: widgets/premium-countdown.php:122 widgets/premium-counter.php:165
|
587 |
+
#: widgets/premium-dual-header.php:172 widgets/premium-fancytext.php:110
|
588 |
+
#: widgets/premium-grid.php:392 widgets/premium-image-button.php:331
|
589 |
+
#: widgets/premium-image-separator.php:105 widgets/premium-maps.php:425
|
590 |
+
#: widgets/premium-maps.php:507 widgets/premium-modalbox.php:478
|
591 |
+
#: widgets/premium-person.php:210 widgets/premium-pricing-table.php:222
|
592 |
+
#: widgets/premium-pricing-table.php:404 widgets/premium-progressbar.php:161
|
593 |
+
#: widgets/premium-title.php:117 widgets/premium-title.php:218
|
594 |
+
#: widgets/premium-vscroll.php:154 widgets/premium-vscroll.php:234
|
595 |
msgid "Right"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: widgets/premium-banner.php:385 widgets/premium-grid.php:407
|
599 |
msgid "Responsive"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: widgets/premium-banner.php:391 widgets/premium-grid.php:412
|
603 |
msgid "Responsive Controls"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: widgets/premium-banner.php:393
|
607 |
msgid ""
|
608 |
"If the description text is not suiting well on specific screen sizes, you "
|
609 |
"may enable this option which will hide the description text."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: widgets/premium-banner.php:399 widgets/premium-grid.php:419
|
613 |
msgid "Minimum Size"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: widgets/premium-banner.php:401 widgets/premium-grid.php:421
|
617 |
msgid "Note: minimum size for extra small screens is 1px."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: widgets/premium-banner.php:411 widgets/premium-grid.php:430
|
621 |
msgid "Maximum Size"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: widgets/premium-banner.php:413 widgets/premium-grid.php:432
|
625 |
msgid "Note: maximum size for extra small screens is 767px."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: widgets/premium-banner.php:432 widgets/premium-banner.php:651
|
629 |
#: widgets/premium-blog.php:567 widgets/premium-blog.php:690
|
630 |
#: widgets/premium-blog.php:753 widgets/premium-blog.php:787
|
631 |
+
#: widgets/premium-button.php:520 widgets/premium-button.php:668
|
632 |
+
#: widgets/premium-carousel.php:414 widgets/premium-contactform.php:466
|
633 |
#: widgets/premium-contactform.php:522 widgets/premium-countdown.php:363
|
634 |
+
#: widgets/premium-counter.php:269 widgets/premium-fancytext.php:329
|
635 |
#: widgets/premium-fancytext.php:379 widgets/premium-fancytext.php:426
|
636 |
+
#: widgets/premium-grid.php:765 widgets/premium-grid.php:864
|
637 |
+
#: widgets/premium-grid.php:987 widgets/premium-modalbox.php:604
|
638 |
+
#: widgets/premium-modalbox.php:711 widgets/premium-modalbox.php:805
|
639 |
+
#: widgets/premium-modalbox.php:866 widgets/premium-modalbox.php:918
|
640 |
+
#: widgets/premium-modalbox.php:1039 widgets/premium-modalbox.php:1099
|
641 |
+
#: widgets/premium-pricing-table.php:518 widgets/premium-pricing-table.php:1613
|
642 |
+
#: widgets/premium-pricing-table.php:1630 widgets/premium-title.php:286
|
643 |
+
#: widgets/premium-title.php:308 widgets/premium-videobox.php:519
|
644 |
+
#: widgets/premium-vscroll.php:469 widgets/premium-vscroll.php:563
|
645 |
+
#: widgets/premium-vscroll.php:622
|
646 |
msgid "Background Color"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: widgets/premium-banner.php:442
|
650 |
msgid "Image Opacity"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: widgets/premium-banner.php:463
|
654 |
msgid "Hover Opacity"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: widgets/premium-banner.php:492 widgets/premium-banner.php:679
|
658 |
+
#: widgets/premium-button.php:544 widgets/premium-button.php:693
|
659 |
+
#: widgets/premium-carousel.php:597 widgets/premium-contactform.php:264
|
660 |
#: widgets/premium-contactform.php:489 widgets/premium-countdown.php:404
|
661 |
+
#: widgets/premium-counter.php:342 widgets/premium-dual-header.php:282
|
662 |
+
#: widgets/premium-dual-header.php:424 widgets/premium-grid.php:467
|
663 |
+
#: widgets/premium-grid.php:525 widgets/premium-grid.php:661
|
664 |
+
#: widgets/premium-grid.php:789 widgets/premium-grid.php:888
|
665 |
+
#: widgets/premium-grid.php:1024 widgets/premium-image-button.php:440
|
666 |
+
#: widgets/premium-image-button.php:635 widgets/premium-maps.php:541
|
667 |
+
#: widgets/premium-modalbox.php:634 widgets/premium-modalbox.php:738
|
668 |
+
#: widgets/premium-modalbox.php:886 widgets/premium-modalbox.php:938
|
669 |
+
#: widgets/premium-modalbox.php:1063 widgets/premium-modalbox.php:1123
|
670 |
+
#: widgets/premium-modalbox.php:1237 widgets/premium-pricing-table.php:555
|
671 |
+
#: widgets/premium-pricing-table.php:598 widgets/premium-pricing-table.php:1180
|
672 |
+
#: widgets/premium-pricing-table.php:1394
|
673 |
+
#: widgets/premium-pricing-table.php:1472
|
674 |
+
#: widgets/premium-pricing-table.php:1685
|
675 |
+
#: widgets/premium-pricing-table.php:1763 widgets/premium-progressbar.php:246
|
676 |
+
#: widgets/premium-title.php:495 widgets/premium-videobox.php:302
|
677 |
+
#: widgets/premium-videobox.php:403 widgets/premium-vscroll.php:358
|
678 |
+
#: widgets/premium-vscroll.php:483 widgets/premium-vscroll.php:656
|
679 |
msgid "Border Radius"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: widgets/premium-banner.php:512 widgets/premium-banner.php:568
|
683 |
+
#: widgets/premium-banner.php:613 widgets/premium-blog.php:444
|
684 |
#: widgets/premium-blog.php:492 widgets/premium-blog.php:541
|
685 |
#: widgets/premium-blog.php:588 widgets/premium-blog.php:660
|
686 |
#: widgets/premium-blog.php:740 widgets/premium-blog.php:774
|
687 |
+
#: widgets/premium-carousel.php:375 widgets/premium-carousel.php:533
|
688 |
#: widgets/premium-countdown.php:337 widgets/premium-countdown.php:425
|
689 |
+
#: widgets/premium-counter.php:193 widgets/premium-counter.php:370
|
690 |
+
#: widgets/premium-counter.php:403 widgets/premium-fancytext.php:304
|
691 |
#: widgets/premium-fancytext.php:354 widgets/premium-fancytext.php:401
|
692 |
+
#: widgets/premium-grid.php:587 widgets/premium-grid.php:619
|
693 |
+
#: widgets/premium-grid.php:751 widgets/premium-grid.php:850
|
694 |
+
#: widgets/premium-grid.php:942 widgets/premium-maps.php:366
|
695 |
+
#: widgets/premium-maps.php:449 widgets/premium-modalbox.php:509
|
696 |
+
#: widgets/premium-modalbox.php:783 widgets/premium-modalbox.php:855
|
697 |
+
#: widgets/premium-modalbox.php:907 widgets/premium-modalbox.php:1024
|
698 |
+
#: widgets/premium-modalbox.php:1084 widgets/premium-person.php:354
|
699 |
+
#: widgets/premium-person.php:390 widgets/premium-person.php:426
|
700 |
+
#: widgets/premium-person.php:462 widgets/premium-person.php:503
|
701 |
+
#: widgets/premium-pricing-table.php:491 widgets/premium-pricing-table.php:662
|
702 |
+
#: widgets/premium-pricing-table.php:756 widgets/premium-pricing-table.php:800
|
703 |
+
#: widgets/premium-pricing-table.php:872 widgets/premium-pricing-table.php:917
|
704 |
+
#: widgets/premium-pricing-table.php:969 widgets/premium-pricing-table.php:1076
|
705 |
+
#: widgets/premium-pricing-table.php:1107
|
706 |
+
#: widgets/premium-pricing-table.php:1241
|
707 |
+
#: widgets/premium-pricing-table.php:1328 widgets/premium-progressbar.php:335
|
708 |
+
#: widgets/premium-progressbar.php:381 widgets/premium-progressbar.php:494
|
709 |
+
#: widgets/premium-progressbar.php:537 widgets/premium-testimonials.php:253
|
710 |
#: widgets/premium-testimonials.php:278 widgets/premium-testimonials.php:328
|
711 |
#: widgets/premium-testimonials.php:364 widgets/premium-testimonials.php:420
|
712 |
+
#: widgets/premium-title.php:246 widgets/premium-videobox.php:338
|
713 |
msgid "Color"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: widgets/premium-banner.php:526
|
717 |
msgid "Title Background"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: widgets/premium-banner.php:529
|
721 |
msgid "Choose a background color for the title"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: widgets/premium-banner.php:551 widgets/premium-banner.php:592
|
725 |
+
#: widgets/premium-banner.php:691 widgets/premium-dual-header.php:295
|
726 |
+
#: widgets/premium-dual-header.php:437 widgets/premium-grid.php:537
|
727 |
+
#: widgets/premium-grid.php:674 widgets/premium-grid.php:802
|
728 |
+
#: widgets/premium-grid.php:901 widgets/premium-maps.php:554
|
729 |
+
#: widgets/premium-modalbox.php:676 widgets/premium-modalbox.php:754
|
730 |
+
#: widgets/premium-pricing-table.php:1407
|
731 |
+
#: widgets/premium-pricing-table.php:1485
|
732 |
+
#: widgets/premium-pricing-table.php:1698
|
733 |
+
#: widgets/premium-pricing-table.php:1776 widgets/premium-title.php:426
|
734 |
+
#: widgets/premium-videobox.php:315 widgets/premium-videobox.php:545
|
735 |
+
#: widgets/premium-vscroll.php:495 widgets/premium-vscroll.php:578
|
736 |
+
#: widgets/premium-vscroll.php:637
|
737 |
msgid "Shadow"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: widgets/premium-banner.php:627 widgets/premium-blog.php:468
|
741 |
#: widgets/premium-blog.php:517 widgets/premium-blog.php:613
|
742 |
+
#: widgets/premium-blog.php:675 widgets/premium-modalbox.php:526
|
743 |
+
#: widgets/premium-person.php:477 widgets/premium-videobox.php:353
|
744 |
+
#: widgets/premium-videobox.php:494
|
745 |
msgid "Hover Color"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: widgets/premium-banner.php:661 widgets/premium-blog.php:705
|
749 |
msgid "Hover Background Color"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: widgets/premium-banner.php:699 widgets/premium-button.php:601
|
753 |
+
#: widgets/premium-button.php:765 widgets/premium-contactform.php:244
|
754 |
+
#: widgets/premium-contactform.php:435 widgets/premium-dual-header.php:316
|
755 |
+
#: widgets/premium-dual-header.php:458 widgets/premium-grid.php:497
|
756 |
+
#: widgets/premium-grid.php:561 widgets/premium-grid.php:703
|
757 |
+
#: widgets/premium-grid.php:822 widgets/premium-grid.php:921
|
758 |
+
#: widgets/premium-grid.php:1055 widgets/premium-image-button.php:498
|
759 |
+
#: widgets/premium-image-button.php:708 widgets/premium-maps.php:401
|
760 |
+
#: widgets/premium-maps.php:483 widgets/premium-maps.php:575
|
761 |
+
#: widgets/premium-modalbox.php:653 widgets/premium-modalbox.php:955
|
762 |
+
#: widgets/premium-modalbox.php:1140 widgets/premium-modalbox.php:1260
|
763 |
+
#: widgets/premium-pricing-table.php:532 widgets/premium-pricing-table.php:629
|
764 |
+
#: widgets/premium-pricing-table.php:716 widgets/premium-pricing-table.php:1044
|
765 |
+
#: widgets/premium-pricing-table.php:1210
|
766 |
+
#: widgets/premium-pricing-table.php:1302
|
767 |
+
#: widgets/premium-pricing-table.php:1427
|
768 |
+
#: widgets/premium-pricing-table.php:1505
|
769 |
+
#: widgets/premium-pricing-table.php:1718
|
770 |
+
#: widgets/premium-pricing-table.php:1796 widgets/premium-title.php:519
|
771 |
+
#: widgets/premium-videobox.php:419 widgets/premium-videobox.php:533
|
772 |
+
#: widgets/premium-vscroll.php:397 widgets/premium-vscroll.php:678
|
773 |
msgid "Padding"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: widgets/premium-blog.php:52 widgets/premium-grid.php:353
|
777 |
msgid "Choose a hover effect for the image"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: widgets/premium-blog.php:62 widgets/premium-grid.php:363
|
781 |
#: widgets/premium-person.php:111
|
782 |
msgid "Translate"
|
783 |
msgstr ""
|
806 |
msgid "Squares"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: widgets/premium-blog.php:100 widgets/premium-grid.php:51
|
810 |
+
#: widgets/premium-grid.php:99
|
811 |
msgid "Categories"
|
812 |
msgstr ""
|
813 |
|
827 |
msgid "Grid"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: widgets/premium-blog.php:138 widgets/premium-grid.php:280
|
831 |
msgid "Masonry"
|
832 |
msgstr ""
|
833 |
|
835 |
msgid "Number of Columns"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: widgets/premium-blog.php:153 widgets/premium-grid.php:260
|
839 |
msgid "2 Columns"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: widgets/premium-blog.php:154 widgets/premium-grid.php:261
|
843 |
msgid "3 Columns"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: widgets/premium-blog.php:155 widgets/premium-grid.php:262
|
847 |
msgid "4 Columns"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: widgets/premium-blog.php:170 widgets/premium-pricing-table.php:1131
|
851 |
msgid "Spacing"
|
852 |
msgstr ""
|
853 |
|
869 |
msgid "Excerpt Type"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: widgets/premium-blog.php:217 widgets/premium-carousel.php:490
|
873 |
+
#: widgets/premium-carousel.php:496 widgets/premium-vscroll.php:413
|
874 |
msgid "Dots"
|
875 |
msgstr ""
|
876 |
|
958 |
msgid "The index of post to start with"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: widgets/premium-blog.php:386 widgets/premium-button.php:503
|
962 |
+
#: widgets/premium-button.php:635 widgets/premium-button.php:652
|
963 |
#: widgets/premium-image-button.php:403 widgets/premium-image-button.php:532
|
964 |
+
#: widgets/premium-image-button.php:549 widgets/premium-modalbox.php:543
|
965 |
+
#: widgets/premium-title.php:449
|
966 |
msgid "Icon Color"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: widgets/premium-blog.php:401 widgets/premium-grid.php:840
|
970 |
#: widgets/premium-image-button.php:565 widgets/premium-image-button.php:582
|
971 |
+
#: widgets/premium-image-button.php:608
|
972 |
msgid "Overlay Color"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: widgets/premium-blog.php:416 widgets/premium-carousel.php:432
|
976 |
#: widgets/premium-contactform.php:533
|
977 |
msgid "Border Color"
|
978 |
msgstr ""
|
985 |
msgid "Tags"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: widgets/premium-blog.php:640 widgets/premium-button.php:402
|
989 |
+
#: widgets/premium-carousel.php:392 widgets/premium-counter.php:210
|
990 |
+
#: widgets/premium-counter.php:232 widgets/premium-image-button.php:302
|
991 |
+
#: widgets/premium-modalbox.php:832 widgets/premium-pricing-table.php:363
|
992 |
+
#: widgets/premium-pricing-table.php:382 widgets/premium-pricing-table.php:505
|
993 |
+
#: widgets/premium-pricing-table.php:1121 widgets/premium-progressbar.php:512
|
994 |
+
#: widgets/premium-progressbar.php:553 widgets/premium-testimonials.php:210
|
995 |
+
#: widgets/premium-testimonials.php:432 widgets/premium-videobox.php:368
|
996 |
msgid "Size"
|
997 |
msgstr ""
|
998 |
|
1004 |
msgid "Pagination Style"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: widgets/premium-blog.php:734 widgets/premium-button.php:484
|
1008 |
+
#: widgets/premium-contactform.php:448 widgets/premium-grid.php:745
|
1009 |
+
#: widgets/premium-image-button.php:384 widgets/premium-modalbox.php:594
|
1010 |
+
#: widgets/premium-modalbox.php:848 widgets/premium-modalbox.php:1017
|
1011 |
+
#: widgets/premium-pricing-table.php:1368
|
1012 |
+
#: widgets/premium-pricing-table.php:1659 widgets/premium-vscroll.php:529
|
1013 |
msgid "Normal"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: widgets/premium-blog.php:768 widgets/premium-button.php:613
|
1017 |
+
#: widgets/premium-contactform.php:506 widgets/premium-grid.php:834
|
1018 |
+
#: widgets/premium-image-button.php:510 widgets/premium-modalbox.php:701
|
1019 |
+
#: widgets/premium-modalbox.php:900 widgets/premium-modalbox.php:1077
|
1020 |
+
#: widgets/premium-pricing-table.php:1446
|
1021 |
+
#: widgets/premium-pricing-table.php:1737
|
1022 |
msgid "Hover"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: widgets/premium-blog.php:978
|
1026 |
+
msgid "Previous"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: widgets/premium-blog.php:979
|
1030 |
+
msgid "Next"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: widgets/premium-button.php:48 widgets/premium-image-button.php:44
|
1054 |
msgid "In & Out"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: widgets/premium-button.php:116 widgets/premium-button.php:156
|
1058 |
#: widgets/premium-image-button.php:111 widgets/premium-image-button.php:129
|
1059 |
#: widgets/premium-image-button.php:147
|
1060 |
msgid "Slide Direction"
|
1116 |
msgid "Tilted Right"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: widgets/premium-button.php:174 widgets/premium-carousel.php:357
|
1120 |
+
#: widgets/premium-countdown.php:43 widgets/premium-counter.php:254
|
1121 |
+
#: widgets/premium-title.php:49
|
1122 |
msgid "Style"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: widgets/premium-button.php:178
|
1126 |
msgid "Radial In"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: widgets/premium-button.php:179
|
1130 |
msgid "Radial Out"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: widgets/premium-button.php:180
|
1134 |
msgid "Rectangle In"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: widgets/premium-button.php:181
|
1138 |
msgid "Rectangle Out"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: widgets/premium-button.php:193 widgets/premium-button.php:205
|
1142 |
+
#: widgets/premium-button.php:219 widgets/premium-carousel.php:505
|
1143 |
+
#: widgets/premium-counter.php:186 widgets/premium-image-button.php:182
|
1144 |
#: widgets/premium-image-button.php:194 widgets/premium-image-button.php:207
|
1145 |
+
#: widgets/premium-modalbox.php:62 widgets/premium-modalbox.php:262
|
1146 |
+
#: widgets/premium-modalbox.php:273 widgets/premium-pricing-table.php:36
|
1147 |
+
#: widgets/premium-pricing-table.php:180 widgets/premium-pricing-table.php:422
|
1148 |
+
#: widgets/premium-pricing-table.php:480 widgets/premium-pricing-table.php:1099
|
1149 |
+
#: widgets/premium-title.php:68
|
1150 |
msgid "Icon"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: widgets/premium-button.php:198 widgets/premium-image-button.php:187
|
1154 |
+
#: widgets/premium-modalbox.php:267
|
1155 |
msgid "Enable or disable button icon"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: widgets/premium-button.php:231 widgets/premium-counter.php:159
|
1159 |
+
#: widgets/premium-image-button.php:219 widgets/premium-modalbox.php:286
|
1160 |
msgid "Icon Position"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: widgets/premium-button.php:235 widgets/premium-image-button.php:223
|
1164 |
+
#: widgets/premium-modalbox.php:290
|
1165 |
msgid "Before"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: widgets/premium-button.php:236 widgets/premium-image-button.php:224
|
1169 |
+
#: widgets/premium-modalbox.php:291
|
1170 |
msgid "After"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: widgets/premium-button.php:248 widgets/premium-button.php:262
|
1174 |
#: widgets/premium-image-button.php:236 widgets/premium-image-button.php:250
|
1175 |
+
#: widgets/premium-modalbox.php:93 widgets/premium-modalbox.php:303
|
1176 |
+
#: widgets/premium-title.php:464
|
1177 |
msgid "Icon Size"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: widgets/premium-button.php:276 widgets/premium-button.php:297
|
1181 |
+
#: widgets/premium-button.php:318 widgets/premium-button.php:339
|
1182 |
+
#: widgets/premium-button.php:359 widgets/premium-button.php:380
|
1183 |
#: widgets/premium-image-button.php:263 widgets/premium-image-button.php:282
|
1184 |
+
#: widgets/premium-modalbox.php:318 widgets/premium-modalbox.php:339
|
1185 |
+
#: widgets/premium-modalbox.php:360 widgets/premium-modalbox.php:381
|
1186 |
msgid "Icon Spacing"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: widgets/premium-button.php:406 widgets/premium-image-button.php:306
|
1190 |
+
#: widgets/premium-modalbox.php:405
|
1191 |
msgid "Small"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: widgets/premium-button.php:407 widgets/premium-image-button.php:307
|
1195 |
+
#: widgets/premium-modalbox.php:406
|
1196 |
msgid "Medium"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: widgets/premium-button.php:408 widgets/premium-image-button.php:308
|
1200 |
+
#: widgets/premium-modalbox.php:407
|
1201 |
msgid "Large"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: widgets/premium-button.php:409 widgets/premium-countdown.php:47
|
1205 |
+
#: widgets/premium-dual-header.php:91 widgets/premium-image-button.php:309
|
1206 |
+
#: widgets/premium-modalbox.php:408
|
1207 |
msgid "Block"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: widgets/premium-button.php:444 widgets/premium-image-button.php:344
|
1211 |
msgid "onclick Event"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: widgets/premium-button.php:452 widgets/premium-image-button.php:352
|
1215 |
msgid "Example: myFunction();"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: widgets/premium-button.php:490 widgets/premium-button.php:619
|
1219 |
#: widgets/premium-contactform.php:453 widgets/premium-contactform.php:511
|
1220 |
+
#: widgets/premium-dual-header.php:229 widgets/premium-dual-header.php:371
|
1221 |
#: widgets/premium-image-button.php:390 widgets/premium-image-button.php:516
|
1222 |
+
#: widgets/premium-pricing-table.php:1540 widgets/premium-videobox.php:479
|
1223 |
+
#: widgets/premium-vscroll.php:535 widgets/premium-vscroll.php:594
|
1224 |
msgid "Text Color"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: widgets/premium-button.php:557 widgets/premium-button.php:706
|
1228 |
+
#: widgets/premium-button.php:719 widgets/premium-image-button.php:453
|
1229 |
#: widgets/premium-image-button.php:648 widgets/premium-image-button.php:661
|
1230 |
+
#: widgets/premium-title.php:532
|
1231 |
msgid "Icon Shadow"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: widgets/premium-button.php:571 widgets/premium-button.php:732
|
1235 |
#: widgets/premium-image-button.php:468 widgets/premium-image-button.php:674
|
1236 |
msgid "Text Shadow"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: widgets/premium-button.php:581 widgets/premium-button.php:745
|
1240 |
#: widgets/premium-image-button.php:478 widgets/premium-image-button.php:687
|
1241 |
msgid "Button Shadow"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: widgets/premium-button.php:590 widgets/premium-button.php:754
|
1245 |
+
#: widgets/premium-dual-header.php:304 widgets/premium-dual-header.php:446
|
1246 |
+
#: widgets/premium-grid.php:486 widgets/premium-grid.php:549
|
1247 |
+
#: widgets/premium-grid.php:691 widgets/premium-grid.php:811
|
1248 |
+
#: widgets/premium-grid.php:910 widgets/premium-grid.php:1043
|
1249 |
#: widgets/premium-image-button.php:487 widgets/premium-image-button.php:697
|
1250 |
+
#: widgets/premium-maps.php:389 widgets/premium-maps.php:472
|
1251 |
+
#: widgets/premium-maps.php:563 widgets/premium-modalbox.php:1249
|
1252 |
+
#: widgets/premium-pricing-table.php:610 widgets/premium-pricing-table.php:697
|
1253 |
+
#: widgets/premium-pricing-table.php:781 widgets/premium-pricing-table.php:851
|
1254 |
+
#: widgets/premium-pricing-table.php:898 widgets/premium-pricing-table.php:943
|
1255 |
+
#: widgets/premium-pricing-table.php:995 widgets/premium-pricing-table.php:1025
|
1256 |
+
#: widgets/premium-pricing-table.php:1192
|
1257 |
+
#: widgets/premium-pricing-table.php:1283
|
1258 |
+
#: widgets/premium-pricing-table.php:1416
|
1259 |
+
#: widgets/premium-pricing-table.php:1494
|
1260 |
+
#: widgets/premium-pricing-table.php:1707
|
1261 |
+
#: widgets/premium-pricing-table.php:1785 widgets/premium-progressbar.php:303
|
1262 |
+
#: widgets/premium-progressbar.php:361 widgets/premium-progressbar.php:406
|
1263 |
+
#: widgets/premium-testimonials.php:390 widgets/premium-title.php:413
|
1264 |
+
#: widgets/premium-title.php:507 widgets/premium-vscroll.php:383
|
1265 |
+
#: widgets/premium-vscroll.php:667
|
1266 |
msgid "Margin"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: widgets/premium-carousel.php:47
|
1270 |
msgid "Carousel"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: widgets/premium-carousel.php:53 widgets/premium-vscroll.php:60
|
1274 |
+
msgid "Content Type"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: widgets/premium-carousel.php:54
|
1278 |
+
msgid "How templates are selected"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: widgets/premium-carousel.php:57
|
1282 |
+
msgid "Select Field"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: widgets/premium-carousel.php:58
|
1286 |
+
msgid "Repeater"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: widgets/premium-carousel.php:66 widgets/premium-carousel.php:89
|
1290 |
+
msgid "Templates"
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: widgets/premium-carousel.php:67
|
1294 |
msgid ""
|
1295 |
"Slider content is a template which you can choose from Elementor library. "
|
1296 |
"Each template will be a slider content"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: widgets/premium-carousel.php:102 widgets/premium-progressbar.php:188
|
1300 |
msgid "Type"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: widgets/premium-carousel.php:103
|
1304 |
msgid "Set a navigation type"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: widgets/premium-carousel.php:106 widgets/premium-image-button.php:169
|
1308 |
msgid "Horizontal"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: widgets/premium-carousel.php:107 widgets/premium-image-button.php:170
|
1312 |
msgid "Vertical"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: widgets/premium-carousel.php:115
|
1316 |
msgid "Appearance"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: widgets/premium-carousel.php:119
|
1320 |
msgid "All visible"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: widgets/premium-carousel.php:120
|
1324 |
msgid "One at a time"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: widgets/premium-carousel.php:127
|
1328 |
msgid "Desktop Slides"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: widgets/premium-carousel.php:135
|
1332 |
msgid "Tabs Slides"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: widgets/premium-carousel.php:143
|
1336 |
msgid "Mobile Slides"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: widgets/premium-carousel.php:153
|
1340 |
msgid "Slides' Settings"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: widgets/premium-carousel.php:159
|
1344 |
msgid "Infinite Loop"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: widgets/premium-carousel.php:161
|
1348 |
msgid "Restart the slider automatically as it passes the last slide"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: widgets/premium-carousel.php:168
|
1352 |
msgid "Transition Speed"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: widgets/premium-carousel.php:169
|
1356 |
msgid ""
|
1357 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: widgets/premium-carousel.php:177
|
1361 |
msgid "Autoplay Slides"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: widgets/premium-carousel.php:178
|
1365 |
msgid "Slide will start automatically"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: widgets/premium-carousel.php:186
|
1369 |
msgid "Autoplay Speed"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: widgets/premium-carousel.php:187
|
1373 |
msgid ""
|
1374 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
1375 |
"in milliseconds (ms)"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: widgets/premium-carousel.php:199 widgets/premium-counter.php:176
|
1379 |
msgid "Animations"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: widgets/premium-carousel.php:208
|
1383 |
msgid ""
|
1384 |
"Add extra class name that will be applied to the carousel, and you can use "
|
1385 |
"this class for your customizations."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: widgets/premium-carousel.php:216 widgets/premium-vscroll.php:136
|
1389 |
msgid "Navigation"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: widgets/premium-carousel.php:223 widgets/premium-carousel.php:230
|
1393 |
msgid "Arrows"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: widgets/premium-carousel.php:231
|
1397 |
msgid "Enable or disable navigation arrows"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: widgets/premium-carousel.php:239
|
1401 |
msgid "Right Icon"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: widgets/premium-carousel.php:269
|
1405 |
msgid "Bottom Icon"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: widgets/premium-carousel.php:299
|
1409 |
msgid "Top Icon"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: widgets/premium-carousel.php:328
|
1413 |
msgid "Left Icon"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: widgets/premium-carousel.php:361
|
1417 |
msgid "Default"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: widgets/premium-carousel.php:362 widgets/premium-counter.php:259
|
1421 |
msgid "Circle Background"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: widgets/premium-carousel.php:363 widgets/premium-counter.php:260
|
1425 |
msgid "Square Background"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: widgets/premium-carousel.php:364
|
1429 |
msgid "Circle border"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: widgets/premium-carousel.php:365
|
1433 |
msgid "Square border"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: widgets/premium-carousel.php:450
|
1437 |
msgid "Border Size"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: widgets/premium-carousel.php:473
|
1441 |
msgid "Position (PX)"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: widgets/premium-carousel.php:497
|
1445 |
msgid "Enable or disable navigation dots"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: widgets/premium-carousel.php:550 widgets/premium-grid.php:956
|
1449 |
msgid "Active Color"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: widgets/premium-carousel.php:567
|
1453 |
msgid "Ripple Effect"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: widgets/premium-carousel.php:568
|
1457 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: widgets/premium-carousel.php:578
|
1461 |
msgid "Ripple Color"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: widgets/premium-carousel.php:614 widgets/premium-fancytext.php:125
|
1465 |
msgid "Additional Settings"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: widgets/premium-carousel.php:621
|
1469 |
msgid "Draggable Effect"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: widgets/premium-carousel.php:622
|
1473 |
msgid "Allow the slides to be dragged by mouse click"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: widgets/premium-carousel.php:630
|
1477 |
msgid "Touch Move"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: widgets/premium-carousel.php:631
|
1481 |
msgid "Enable slide moving with touch"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: widgets/premium-carousel.php:639
|
1485 |
msgid "RTL Mode"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: widgets/premium-carousel.php:640
|
1489 |
msgid "Turn on RTL mode if your language starts from right to left"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: widgets/premium-carousel.php:650
|
1493 |
msgid "Adaptive Height"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: widgets/premium-carousel.php:651
|
1497 |
msgid ""
|
1498 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
1499 |
"space gaps"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: widgets/premium-carousel.php:658 widgets/premium-fancytext.php:281
|
1503 |
msgid "Pause on Hover"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: widgets/premium-carousel.php:659
|
1507 |
msgid "Pause the slider when mouse hover"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: widgets/premium-carousel.php:666
|
1511 |
msgid "Center Mode"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: widgets/premium-carousel.php:667
|
1515 |
msgid ""
|
1516 |
"Center mode enables a centered view with partial next/previous slides. "
|
1517 |
"Animations and all visible scroll type doesn't work with this mode"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: widgets/premium-carousel.php:674
|
1521 |
msgid "Slides' Spacing"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: widgets/premium-carousel.php:675
|
1525 |
msgid "Set a spacing value in pixels (px)"
|
1526 |
msgstr ""
|
1527 |
|
1538 |
msgstr ""
|
1539 |
|
1540 |
#: widgets/premium-contactform.php:56 widgets/premium-contactform.php:173
|
1541 |
+
#: widgets/premium-modalbox.php:992 widgets/premium-modalbox.php:1162
|
1542 |
#: widgets/premium-person.php:49
|
1543 |
msgid "Width"
|
1544 |
msgstr ""
|
1571 |
msgid "Focus Line Color"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: widgets/premium-contactform.php:327 widgets/premium-progressbar.php:317
|
1575 |
msgid "Labels"
|
1576 |
msgstr ""
|
1577 |
|
1599 |
msgid "Countdown"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: widgets/premium-countdown.php:46 widgets/premium-dual-header.php:90
|
1603 |
msgid "Inline"
|
1604 |
msgstr ""
|
1605 |
|
1773 |
msgid "Spacing in Between"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: widgets/premium-counter.php:37
|
1777 |
msgid "Counter"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: widgets/premium-counter.php:46
|
1781 |
msgid "Enter title for stats counter block"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: widgets/premium-counter.php:52 widgets/premium-counter.php:396
|
1785 |
+
#: widgets/premium-progressbar.php:176
|
1786 |
msgid "Value"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: widgets/premium-counter.php:54
|
1790 |
msgid "Enter Counter Value"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: widgets/premium-counter.php:61
|
1794 |
msgid "Thousands Separator"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: widgets/premium-counter.php:63
|
1798 |
msgid "Separate coverts 125000 into 125,000"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: widgets/premium-counter.php:70
|
1802 |
msgid "Decimal Point"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: widgets/premium-counter.php:72
|
1806 |
msgid ""
|
1807 |
"Set a decimal number (Eg - 12.76). The decimal point will be replaced with "
|
1808 |
"the value that you will enter above"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: widgets/premium-counter.php:79
|
1812 |
msgid "Digits After Decimal Point"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: widgets/premium-counter.php:87
|
1816 |
msgid "Value Prefix"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: widgets/premium-counter.php:90
|
1820 |
msgid "Enter prefix for counter value"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: widgets/premium-counter.php:96
|
1824 |
msgid "Value suffix"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: widgets/premium-counter.php:99
|
1828 |
msgid "Enter suffix for counter value"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: widgets/premium-counter.php:105
|
1832 |
msgid "Rolling Time"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: widgets/premium-counter.php:107
|
1836 |
msgid "How long should it take to complete the digit?"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: widgets/premium-counter.php:116 widgets/premium-modalbox.php:225
|
1840 |
+
#: widgets/premium-pricing-table.php:416
|
1841 |
msgid "Display Options"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: widgets/premium-counter.php:122
|
1845 |
msgid "Icon Type"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: widgets/premium-counter.php:124
|
1849 |
msgid "Use a font awesome icon or upload a custom image"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: widgets/premium-counter.php:126 widgets/premium-modalbox.php:67
|
1853 |
+
#: widgets/premium-modalbox.php:81
|
1854 |
msgid "Font Awesome"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: widgets/premium-counter.php:127 widgets/premium-modalbox.php:68
|
1858 |
+
#: widgets/premium-modalbox.php:109
|
1859 |
msgid "Custom Image"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: widgets/premium-counter.php:135 widgets/premium-pricing-table.php:45
|
1863 |
msgid "Select an Icon"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: widgets/premium-counter.php:161
|
1867 |
msgid "Choose a position for your icon"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: widgets/premium-counter.php:256
|
1871 |
msgid ""
|
1872 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
1873 |
"create your own with various options"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: widgets/premium-counter.php:258
|
1877 |
msgid "Simple"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: widgets/premium-counter.php:261
|
1881 |
msgid "Design Your Own"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: widgets/premium-counter.php:286
|
1885 |
msgid "Background size"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: widgets/premium-counter.php:308
|
1889 |
msgid "Vertical Alignment"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: widgets/premium-counter.php:429 widgets/premium-fancytext.php:393
|
1893 |
msgid "Prefix & Suffix"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: widgets/premium-counter.php:436
|
1897 |
msgid "Prefix Color"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: widgets/premium-counter.php:460
|
1901 |
msgid "Suffix Color"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: widgets/premium-dual-header.php:38
|
1905 |
msgid "Dual Heading"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: widgets/premium-dual-header.php:45 widgets/premium-dual-header.php:189
|
1909 |
msgid "First Heading"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: widgets/premium-dual-header.php:48
|
1913 |
msgid "Premium"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: widgets/premium-dual-header.php:56 widgets/premium-dual-header.php:331
|
1917 |
msgid "Second Heading"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: widgets/premium-dual-header.php:59
|
1921 |
msgid "Addons"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: widgets/premium-dual-header.php:87
|
1925 |
msgid "Display"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: widgets/premium-dual-header.php:105
|
1929 |
msgid "Enable or disable link"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: widgets/premium-dual-header.php:206 widgets/premium-dual-header.php:348
|
1933 |
msgid "Animated Background"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: widgets/premium-dual-header.php:214 widgets/premium-dual-header.php:356
|
1937 |
msgid "Background Style"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: widgets/premium-dual-header.php:217 widgets/premium-dual-header.php:359
|
1941 |
msgid ""
|
1942 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
1943 |
"style so the background will be clipped on the text."
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: widgets/premium-dual-header.php:219 widgets/premium-dual-header.php:361
|
1947 |
msgid "Normal Background"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: widgets/premium-dual-header.php:220 widgets/premium-dual-header.php:362
|
1951 |
msgid "Clipped Background"
|
1952 |
msgstr ""
|
1953 |
|
2036 |
"5 seconds before backspace effect."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: widgets/premium-fancytext.php:202 widgets/premium-videobox.php:154
|
2040 |
msgid "Loop"
|
2041 |
msgstr ""
|
2042 |
|
2081 |
msgid "Cursor Text"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: widgets/premium-grid.php:56
|
2085 |
msgid "First Category"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: widgets/premium-grid.php:64
|
2089 |
msgid "First Category Label"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: widgets/premium-grid.php:66
|
2093 |
msgid "All"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: widgets/premium-grid.php:78 widgets/premium-grid.php:168
|
2097 |
msgid "Category"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: widgets/premium-grid.php:86
|
2101 |
msgid "Rotation Degrees"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: widgets/premium-grid.php:88
|
2105 |
msgid "Set rotation value in degress"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: widgets/premium-grid.php:116
|
2109 |
msgid "Active Category Index"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: widgets/premium-grid.php:118
|
2113 |
msgid "Put the index of the default active category, default is 1"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: widgets/premium-grid.php:125 widgets/premium-grid.php:933
|
2117 |
+
msgid "Filter"
|
2118 |
+
msgstr ""
|
2119 |
+
|
2120 |
+
#: widgets/premium-grid.php:135 widgets/premium-grid.php:225
|
2121 |
msgid "Images"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: widgets/premium-grid.php:152 widgets/premium-person.php:131
|
2125 |
+
#: widgets/premium-person.php:345 widgets/premium-testimonials.php:65
|
2126 |
#: widgets/premium-testimonials.php:106
|
2127 |
msgid "Name"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: widgets/premium-grid.php:211
|
2131 |
+
msgid "Whole Image Link"
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: widgets/premium-grid.php:218
|
2135 |
+
msgid "Whole Image Lightbox"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: widgets/premium-grid.php:246
|
2139 |
msgid "Grid Settings"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: widgets/premium-grid.php:252
|
2143 |
msgid "Columns"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: widgets/premium-grid.php:259
|
2147 |
msgid "1 Column"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: widgets/premium-grid.php:263
|
2151 |
msgid "5 Columns"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: widgets/premium-grid.php:264
|
2155 |
msgid "6 Columns"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: widgets/premium-grid.php:265
|
2159 |
+
msgid "12 Columns"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: widgets/premium-grid.php:276
|
2163 |
msgid "Grid Layout"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: widgets/premium-grid.php:279
|
2167 |
msgid "Even"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: widgets/premium-grid.php:299
|
2171 |
msgid "Image Gap"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: widgets/premium-grid.php:316
|
2175 |
msgid "Skin"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: widgets/premium-grid.php:318
|
2179 |
msgid "Choose a layout style for the gallery"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: widgets/premium-grid.php:320
|
2183 |
msgid "Style 1"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: widgets/premium-grid.php:321
|
2187 |
msgid "Style 2"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: widgets/premium-grid.php:322
|
2191 |
msgid "Style 3"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: widgets/premium-grid.php:372
|
|
|
|
|
|
|
|
|
2195 |
msgid "Lightbox"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: widgets/premium-grid.php:380
|
2199 |
msgid "Content Alignment"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: widgets/premium-grid.php:414
|
2203 |
msgid ""
|
2204 |
"If the content text is not suiting well on specific screen sizes, you may "
|
2205 |
"enable this option which will hide the description text."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: widgets/premium-grid.php:443
|
2209 |
msgid "General"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: widgets/premium-grid.php:716
|
2213 |
msgid "Icons"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: widgets/premium-grid.php:722 widgets/premium-pricing-table.php:401
|
2217 |
+
#: widgets/premium-vscroll.php:150
|
2218 |
msgid "Position"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: widgets/premium-grid.php:979
|
2222 |
msgid "Background"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: widgets/premium-grid.php:1001
|
2226 |
msgid "Background Active Color"
|
2227 |
msgstr ""
|
2228 |
|
2297 |
msgstr ""
|
2298 |
|
2299 |
#: widgets/premium-image-separator.php:185
|
2300 |
+
#: widgets/premium-pricing-table.php:324 widgets/premium-testimonials.php:158
|
2301 |
msgid "Link Target"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: widgets/premium-image-separator.php:187
|
2305 |
+
#: widgets/premium-pricing-table.php:326
|
2306 |
msgid " Where would you like the link be opened?"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: widgets/premium-image-separator.php:194 widgets/premium-testimonials.php:167
|
|
|
2310 |
msgid "blank"
|
2311 |
msgstr ""
|
2312 |
|
2314 |
msgid "Center Location"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: widgets/premium-maps.php:59
|
2318 |
+
msgid "Get User Location"
|
2319 |
+
msgstr ""
|
2320 |
+
|
2321 |
+
#: widgets/premium-maps.php:60
|
2322 |
+
msgid "Get center location from visitor's location"
|
2323 |
+
msgstr ""
|
2324 |
+
|
2325 |
+
#: widgets/premium-maps.php:68 widgets/premium-maps.php:136
|
2326 |
msgid "Latitude & Longitude Finder"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: widgets/premium-maps.php:78 widgets/premium-maps.php:143
|
2330 |
msgid "Find Latitude & Longitude"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: widgets/premium-maps.php:92
|
2334 |
msgid "Center Latitude"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: widgets/premium-maps.php:94 widgets/premium-maps.php:107
|
2338 |
msgid "Center latitude and longitude are required to identify your location"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: widgets/premium-maps.php:105
|
2342 |
msgid "Center Longitude"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: widgets/premium-maps.php:120
|
2346 |
msgid "Markers"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: widgets/premium-maps.php:126
|
2350 |
msgid "Max Width"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: widgets/premium-maps.php:128
|
2354 |
msgid "Set the Maximum width for markers description box"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: widgets/premium-maps.php:155
|
2358 |
msgid "Latitude"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: widgets/premium-maps.php:165
|
2362 |
msgid "Longitude"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: widgets/premium-maps.php:192
|
2366 |
msgid "Custom Icon"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: widgets/premium-maps.php:200
|
2370 |
msgid "Map Pins"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: widgets/premium-maps.php:205
|
2374 |
msgid "Premium Google Maps"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: widgets/premium-maps.php:206
|
2378 |
msgid "Add an optional description to your map pin"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: widgets/premium-maps.php:216
|
2382 |
msgid "Controls"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: widgets/premium-maps.php:222
|
2386 |
msgid "Map Type"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: widgets/premium-maps.php:225
|
2390 |
msgid "Road Map"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: widgets/premium-maps.php:226
|
2394 |
msgid "Satellite"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: widgets/premium-maps.php:227
|
2398 |
msgid "Terrain"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: widgets/premium-maps.php:228
|
2402 |
msgid "Hybrid"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: widgets/premium-maps.php:255
|
2406 |
msgid "Zoom"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: widgets/premium-maps.php:271
|
2410 |
msgid "Map Type Controls"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: widgets/premium-maps.php:278
|
2414 |
msgid "Zoom Controls"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: widgets/premium-maps.php:285
|
2418 |
msgid "Street View Control"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: widgets/premium-maps.php:292
|
2422 |
msgid "Fullscreen Control"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: widgets/premium-maps.php:299
|
2426 |
msgid "Scroll Wheel Zoom"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: widgets/premium-maps.php:306
|
2430 |
msgid "Info Container Always Opened"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: widgets/premium-maps.php:313
|
2434 |
msgid "Info Container Opened when Hovered"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: widgets/premium-maps.php:320
|
2438 |
msgid "Info Container Closed when Mouse Out"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: widgets/premium-maps.php:330
|
2442 |
msgid "Marker Clustering"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: widgets/premium-maps.php:339
|
2446 |
msgid "Map Style"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: widgets/premium-maps.php:345
|
2450 |
msgid "JSON Code"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: widgets/premium-maps.php:524
|
2454 |
msgid "Map"
|
2455 |
msgstr ""
|
2456 |
|
2466 |
msgid "Use font awesome icon or upload a custom image"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: widgets/premium-modalbox.php:129
|
2470 |
msgid "Provide the modal box with a title"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: widgets/premium-modalbox.php:149
|
2474 |
msgid "Content to Show"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: widgets/premium-modalbox.php:152
|
2478 |
+
msgid "Text Editor"
|
2479 |
+
msgstr ""
|
2480 |
+
|
2481 |
+
#: widgets/premium-modalbox.php:153 widgets/premium-vscroll.php:75
|
2482 |
+
msgid "Elementor Template"
|
2483 |
+
msgstr ""
|
2484 |
+
|
2485 |
+
#: widgets/premium-modalbox.php:164
|
2486 |
msgid "Modal content is a template which you can choose from Elementor library"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: widgets/premium-modalbox.php:190 widgets/premium-modalbox.php:820
|
2490 |
msgid "Upper Close Button"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: widgets/premium-modalbox.php:202 widgets/premium-modalbox.php:970
|
2494 |
msgid "Lower Close Button"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: widgets/premium-modalbox.php:211
|
2498 |
+
msgid "Close"
|
2499 |
+
msgstr ""
|
2500 |
+
|
2501 |
+
#: widgets/premium-modalbox.php:232
|
2502 |
msgid "Display Style"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: widgets/premium-modalbox.php:234
|
2506 |
msgid "Choose where would you like the modal box appear on"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: widgets/premium-modalbox.php:239
|
2510 |
+
msgid "Page Load"
|
2511 |
+
msgstr ""
|
2512 |
+
|
2513 |
+
#: widgets/premium-modalbox.php:249
|
2514 |
msgid "Button Text"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: widgets/premium-modalbox.php:250 widgets/premium-modalbox.php:441
|
2518 |
msgid "Premium Modal Box"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: widgets/premium-modalbox.php:402
|
2522 |
msgid "Button Size"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: widgets/premium-modalbox.php:451
|
2526 |
msgid "Delay in Popup Display (Sec)"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: widgets/premium-modalbox.php:453
|
2530 |
msgid ""
|
2531 |
"When should the popup appear during page load? The value are counted in "
|
2532 |
"seconds"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: widgets/premium-modalbox.php:498
|
2536 |
msgid "Trigger"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: widgets/premium-modalbox.php:560
|
2540 |
+
msgid "Icon Hover Color"
|
2541 |
+
msgstr ""
|
2542 |
+
|
2543 |
+
#: widgets/premium-modalbox.php:580 widgets/premium-modalbox.php:796
|
2544 |
+
#: widgets/premium-modalbox.php:982 widgets/premium-pricing-table.php:816
|
2545 |
+
#: widgets/premium-pricing-table.php:889 widgets/premium-pricing-table.php:934
|
2546 |
+
#: widgets/premium-pricing-table.php:986
|
2547 |
msgid "Typography"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: widgets/premium-modalbox.php:772
|
2551 |
msgid "Heading"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: widgets/premium-modalbox.php:1154
|
2555 |
msgid "Modal Box"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: widgets/premium-modalbox.php:1177
|
2559 |
+
msgid "Max Height"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: widgets/premium-modalbox.php:1206
|
2563 |
+
msgid "Content Background Color"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: widgets/premium-modalbox.php:1217
|
2567 |
+
msgid "Footer Background Color"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
#: widgets/premium-person.php:51
|
2583 |
msgid "John Frank"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: widgets/premium-person.php:160 widgets/premium-person.php:382
|
2587 |
msgid "Job Title"
|
2588 |
msgstr ""
|
2589 |
|
2591 |
msgid "Senior Developer"
|
2592 |
msgstr ""
|
2593 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2594 |
#: widgets/premium-person.php:191
|
2595 |
msgid ""
|
2596 |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper "
|
2597 |
"nulla non metus auctor fringilla"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: widgets/premium-person.php:227 widgets/premium-person.php:454
|
2601 |
msgid "Social Icons"
|
2602 |
msgstr ""
|
2603 |
|
2617 |
msgid "Google+"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: widgets/premium-person.php:278 widgets/premium-videobox.php:61
|
2621 |
+
msgid "Youtube"
|
2622 |
+
msgstr ""
|
2623 |
+
|
2624 |
+
#: widgets/premium-person.php:288
|
2625 |
+
msgid "Instagram"
|
2626 |
+
msgstr ""
|
2627 |
+
|
2628 |
+
#: widgets/premium-person.php:298
|
2629 |
msgid "Pinterest"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: widgets/premium-person.php:309
|
2633 |
msgid "Dribbble"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: widgets/premium-person.php:320
|
2637 |
msgid "Behance"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: widgets/premium-person.php:331
|
2641 |
msgid "Email Address"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: widgets/premium-person.php:495
|
2645 |
msgid "Content Background"
|
2646 |
msgstr ""
|
2647 |
|
2650 |
msgstr ""
|
2651 |
|
2652 |
#: widgets/premium-pricing-table.php:99 widgets/premium-pricing-table.php:128
|
2653 |
+
#: widgets/premium-pricing-table.php:437 widgets/premium-pricing-table.php:738
|
2654 |
+
#: widgets/premium-pricing-table.php:864
|
2655 |
msgid "Price"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: widgets/premium-pricing-table.php:109 widgets/premium-pricing-table.php:748
|
2659 |
msgid "Slashed Price"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: widgets/premium-pricing-table.php:118 widgets/premium-pricing-table.php:792
|
2663 |
msgid "Currency"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: widgets/premium-pricing-table.php:138 widgets/premium-pricing-table.php:909
|
2667 |
msgid "Divider"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: widgets/premium-pricing-table.php:148 widgets/premium-pricing-table.php:961
|
2671 |
msgid "Duration"
|
2672 |
msgstr ""
|
2673 |
|
2675 |
msgid "Icon List"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: widgets/premium-pricing-table.php:187 widgets/premium-pricing-table.php:445
|
2679 |
+
#: widgets/premium-pricing-table.php:1059
|
2680 |
msgid "Features"
|
2681 |
msgstr ""
|
2682 |
|
2692 |
msgid "List Item #3"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: widgets/premium-pricing-table.php:272
|
|
|
|
|
|
|
|
|
2696 |
msgid "Get Started"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: widgets/premium-pricing-table.php:344 widgets/premium-pricing-table.php:468
|
2700 |
+
#: widgets/premium-pricing-table.php:1530
|
2701 |
msgid "Badge"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: widgets/premium-pricing-table.php:354
|
2705 |
msgid "Popular"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: widgets/premium-pricing-table.php:571 widgets/premium-pricing-table.php:1007
|
2709 |
+
#: widgets/premium-pricing-table.php:1154
|
2710 |
+
#: widgets/premium-pricing-table.php:1265 widgets/premium-vscroll.php:463
|
2711 |
msgid "Container"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: widgets/premium-pricing-table.php:833
|
2715 |
msgid "Unset"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: widgets/premium-pricing-table.php:1144
|
2719 |
msgid "Vertical Spacing"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: widgets/premium-pricing-table.php:1342
|
2723 |
msgid "Hover Text Color"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: widgets/premium-pricing-table.php:1564
|
2727 |
msgid "Vertical Distance"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: widgets/premium-pricing-table.php:1580
|
2731 |
+
#: widgets/premium-pricing-table.php:1599
|
2732 |
msgid "Horizontal Distance"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: widgets/premium-pricing-table.php:1650
|
2736 |
msgid "Box Settings"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: widgets/premium-progressbar.php:38
|
2740 |
msgid "Progress Bar Settings"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: widgets/premium-progressbar.php:43
|
2744 |
msgid "Number of Labels"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: widgets/premium-progressbar.php:47
|
2748 |
msgid "Left & Right Labels"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: widgets/premium-progressbar.php:48 widgets/premium-progressbar.php:421
|
2752 |
msgid "Multiple Labels"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: widgets/premium-progressbar.php:59
|
2756 |
msgid "My Skill"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: widgets/premium-progressbar.php:70 widgets/premium-progressbar.php:95
|
2760 |
+
#: widgets/premium-progressbar.php:372
|
2761 |
msgid "Percentage"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: widgets/premium-progressbar.php:72
|
2765 |
msgid "50%"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: widgets/premium-progressbar.php:84 widgets/premium-progressbar.php:104
|
2769 |
+
#: widgets/premium-progressbar.php:108
|
2770 |
msgid "Label"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: widgets/premium-progressbar.php:88 widgets/premium-progressbar.php:89
|
2774 |
msgid "label"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: widgets/premium-progressbar.php:121
|
|
|
|
|
|
|
|
|
2778 |
msgid "Enable Percentage"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: widgets/premium-progressbar.php:124
|
2782 |
msgid "Enable percentage for labels"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: widgets/premium-progressbar.php:133
|
2786 |
msgid "Labels Indicator"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: widgets/premium-progressbar.php:138
|
2790 |
msgid "Pin"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: widgets/premium-progressbar.php:139 widgets/premium-progressbar.php:482
|
2794 |
msgid "Arrow"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: widgets/premium-progressbar.php:149
|
2798 |
msgid "Labels Alignment"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: widgets/premium-progressbar.php:192
|
2802 |
msgid "Solid"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: widgets/premium-progressbar.php:193
|
2806 |
msgid "Stripped"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
+
#: widgets/premium-progressbar.php:200
|
2810 |
+
msgid "Speed (milliseconds)"
|
2811 |
+
msgstr ""
|
2812 |
+
|
2813 |
+
#: widgets/premium-progressbar.php:208
|
2814 |
msgid "Animated"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
+
#: widgets/premium-progressbar.php:223
|
2818 |
msgid "Progress Bar"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
+
#: widgets/premium-progressbar.php:267
|
2822 |
msgid "Indicator Background"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
+
#: widgets/premium-progressbar.php:287
|
2826 |
msgid "Main Background"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: widgets/premium-progressbar.php:430
|
2830 |
msgid "Labels' Color"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: widgets/premium-progressbar.php:444
|
2834 |
msgid "Labels' Typography"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: widgets/premium-progressbar.php:453
|
2838 |
msgid "Percentage Color"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: widgets/premium-progressbar.php:470
|
2842 |
msgid "Percentage Typography"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: widgets/premium-progressbar.php:526
|
2846 |
msgid "Indicator"
|
2847 |
msgstr ""
|
2848 |
|
2954 |
msgid "Bottom Icon Position"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: widgets/premium-title.php:40
|
2958 |
msgid "Premium Title"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: widgets/premium-title.php:76
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2962 |
msgid "Font Awesome Icon"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: widgets/premium-title.php:90
|
2966 |
msgid "h2"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: widgets/premium-title.php:134
|
2970 |
msgid "Strip Width (PX)"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: widgets/premium-title.php:154
|
2974 |
msgid "Strip Height (PX)"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: widgets/premium-title.php:174
|
2978 |
msgid "Strip Top Spacing (PX)"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
#: widgets/premium-title.php:190
|
2982 |
msgid "Strip Bottom Spacing (PX)"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: widgets/premium-title.php:206
|
2986 |
msgid "Align"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: widgets/premium-title.php:328 widgets/premium-title.php:359
|
2990 |
msgid "Line Color"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: widgets/premium-title.php:377
|
2994 |
msgid "Triangle Color"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
#: widgets/premium-title.php:395
|
2998 |
msgid "Strip Color"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: widgets/premium-title.php:438
|
3002 |
msgid "Icon Style"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: widgets/premium-videobox.php:36 widgets/premium-videobox.php:285
|
3006 |
msgid "Video Box"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
+
#: widgets/premium-videobox.php:44
|
3010 |
msgid "Choose an image for the video box"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
+
#: widgets/premium-videobox.php:57
|
3014 |
msgid "Video Type"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: widgets/premium-videobox.php:62
|
3018 |
+
msgid "Vimeo"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: widgets/premium-videobox.php:63
|
3022 |
+
msgid "Self Hosted"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: widgets/premium-videobox.php:75
|
3026 |
msgid "ID"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: widgets/premium-videobox.php:76 widgets/premium-videobox.php:100
|
3030 |
msgid "Embed URL"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: widgets/premium-videobox.php:87
|
3034 |
msgid "Video ID"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: widgets/premium-videobox.php:88
|
3038 |
msgid ""
|
3039 |
"Enter the numbers and letters after the equal sign which located in your "
|
3040 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
3041 |
"example, z1hQgVpfTKU"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: widgets/premium-videobox.php:101
|
3045 |
msgid ""
|
3046 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
3047 |
+
"embed/z1hQgVpfTKU"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: widgets/premium-videobox.php:132
|
3051 |
msgid "Show Related Videos"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: widgets/premium-videobox.php:134
|
3055 |
msgid "Enable/Disable related videos after the video"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: widgets/premium-videobox.php:145
|
3059 |
+
msgid "Mute"
|
3060 |
+
msgstr ""
|
3061 |
+
|
3062 |
+
#: widgets/premium-videobox.php:147
|
3063 |
+
msgid "This will play the video muted"
|
3064 |
+
msgstr ""
|
3065 |
+
|
3066 |
+
#: widgets/premium-videobox.php:165
|
3067 |
msgid "Additional Options"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: widgets/premium-videobox.php:173 widgets/premium-videobox.php:327
|
3071 |
msgid "Play Icon"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: widgets/premium-videobox.php:181 widgets/premium-videobox.php:264
|
3075 |
+
msgid "Horizontal Position (%)"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: widgets/premium-videobox.php:198 widgets/premium-videobox.php:247
|
3079 |
+
msgid "Vertical Position (%)"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: widgets/premium-videobox.php:219 widgets/premium-videobox.php:225
|
3083 |
+
#: widgets/premium-videobox.php:468
|
3084 |
msgid "Video Text"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: widgets/premium-videobox.php:235
|
3088 |
msgid "Play Video"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: widgets/premium-videobox.php:438
|
3092 |
msgid "Hover Animation"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: widgets/premium-videobox.php:440
|
3096 |
msgid ""
|
3097 |
"Hover animation works only when you set a background color or image for play "
|
3098 |
"icon"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: widgets/premium-videobox.php:448
|
3102 |
msgid "Hover Padding"
|
3103 |
msgstr ""
|
3104 |
+
|
3105 |
+
#: widgets/premium-vscroll.php:63 widgets/premium-vscroll.php:97
|
3106 |
+
msgid "Section ID"
|
3107 |
+
msgstr ""
|
3108 |
+
|
3109 |
+
#: widgets/premium-vscroll.php:64
|
3110 |
+
msgid "Elementor Templates"
|
3111 |
+
msgstr ""
|
3112 |
+
|
3113 |
+
#: widgets/premium-vscroll.php:67
|
3114 |
+
msgid "Choose which method you prefer to insert sections."
|
3115 |
+
msgstr ""
|
3116 |
+
|
3117 |
+
#: widgets/premium-vscroll.php:84 widgets/premium-vscroll.php:104
|
3118 |
+
msgid "Sections"
|
3119 |
+
msgstr ""
|
3120 |
+
|
3121 |
+
#: widgets/premium-vscroll.php:115
|
3122 |
+
msgid "Dots Tooltips"
|
3123 |
+
msgstr ""
|
3124 |
+
|
3125 |
+
#: widgets/premium-vscroll.php:123
|
3126 |
+
msgid "Dots Tooltips Text"
|
3127 |
+
msgstr ""
|
3128 |
+
|
3129 |
+
#: widgets/premium-vscroll.php:125
|
3130 |
+
msgid "Add text for each navigation dot separated by ','"
|
3131 |
+
msgstr ""
|
3132 |
+
|
3133 |
+
#: widgets/premium-vscroll.php:142 widgets/premium-vscroll.php:509
|
3134 |
+
msgid "Navigation Menu"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: widgets/premium-vscroll.php:144
|
3138 |
+
msgid "This option works only on the frontend"
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: widgets/premium-vscroll.php:165
|
3142 |
+
msgid "Offset Top"
|
3143 |
+
msgstr ""
|
3144 |
+
|
3145 |
+
#: widgets/premium-vscroll.php:179
|
3146 |
+
msgid "Offset Left"
|
3147 |
+
msgstr ""
|
3148 |
+
|
3149 |
+
#: widgets/premium-vscroll.php:194
|
3150 |
+
msgid "Offset Right"
|
3151 |
+
msgstr ""
|
3152 |
+
|
3153 |
+
#: widgets/premium-vscroll.php:211
|
3154 |
+
msgid "List Item"
|
3155 |
+
msgstr ""
|
3156 |
+
|
3157 |
+
#: widgets/premium-vscroll.php:218
|
3158 |
+
msgid "Menu Items"
|
3159 |
+
msgstr ""
|
3160 |
+
|
3161 |
+
#: widgets/premium-vscroll.php:230
|
3162 |
+
msgid "Dots Horizontal Position"
|
3163 |
+
msgstr ""
|
3164 |
+
|
3165 |
+
#: widgets/premium-vscroll.php:242
|
3166 |
+
msgid "Dots Vertical Position"
|
3167 |
+
msgstr ""
|
3168 |
+
|
3169 |
+
#: widgets/premium-vscroll.php:257
|
3170 |
+
msgid "Scroll Settings"
|
3171 |
+
msgstr ""
|
3172 |
+
|
3173 |
+
#: widgets/premium-vscroll.php:263
|
3174 |
+
msgid "Scroll Speed"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: widgets/premium-vscroll.php:265
|
3178 |
+
msgid "Set scolling speed in seconds, default: 0.7"
|
3179 |
+
msgstr ""
|
3180 |
+
|
3181 |
+
#: widgets/premium-vscroll.php:271
|
3182 |
+
msgid "Full Section Scroll"
|
3183 |
+
msgstr ""
|
3184 |
+
|
3185 |
+
#: widgets/premium-vscroll.php:281
|
3186 |
+
msgid "Navigation Dots"
|
3187 |
+
msgstr ""
|
3188 |
+
|
3189 |
+
#: widgets/premium-vscroll.php:290
|
3190 |
+
msgid "Tooltips"
|
3191 |
+
msgstr ""
|
3192 |
+
|
3193 |
+
#: widgets/premium-vscroll.php:299
|
3194 |
+
msgid "Tooltips Text Color"
|
3195 |
+
msgstr ""
|
3196 |
+
|
3197 |
+
#: widgets/premium-vscroll.php:328
|
3198 |
+
msgid "Tooltips Background"
|
3199 |
+
msgstr ""
|
3200 |
+
|
3201 |
+
#: widgets/premium-vscroll.php:419
|
3202 |
+
msgid "Dots Color"
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: widgets/premium-vscroll.php:433
|
3206 |
+
msgid "Active Dot Color"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: widgets/premium-vscroll.php:447
|
3210 |
+
msgid "Dots Border Color"
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: widgets/premium-vscroll.php:549 widgets/premium-vscroll.php:608
|
3214 |
+
msgid "Text Hover Color"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: widgets/premium-vscroll.php:588
|
3218 |
+
msgid "Active"
|
3219 |
+
msgstr ""
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 21+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 2.9.
|
7 |
Author: Leap13
|
8 |
Author URI: http://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -22,12 +22,12 @@ if (! function_exists('add_action')) {
|
|
22 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
23 |
|
24 |
// Define Constants
|
25 |
-
define('PREMIUM_ADDONS_VERSION', '2.9.
|
26 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
27 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
28 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
29 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename(__FILE__));
|
30 |
-
define('PREMIUM_ADDONS_STABLE_VERSION', '2.9.
|
31 |
|
32 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
33 |
/*
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 21+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 2.9.7
|
7 |
Author: Leap13
|
8 |
Author URI: http://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
22 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
23 |
|
24 |
// Define Constants
|
25 |
+
define('PREMIUM_ADDONS_VERSION', '2.9.7');
|
26 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
27 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
28 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
29 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename(__FILE__));
|
30 |
+
define('PREMIUM_ADDONS_STABLE_VERSION', '2.9.6');
|
31 |
|
32 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
33 |
/*
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://premiumaddons.com
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.0.2
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable tag: 2.9.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -137,6 +137,12 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
137 |
|
138 |
== Changelog ==
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
= 2.9.6 =
|
141 |
|
142 |
- Tweak: Added `Whole image lightbox` option in Premium Grid widget.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.0.2
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable tag: 2.9.7
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
137 |
|
138 |
== Changelog ==
|
139 |
|
140 |
+
= 2.9.7 =
|
141 |
+
|
142 |
+
- Tweak: Unnecessary `esc_html()` function removed to enhance performance.
|
143 |
+
- Tweak: Enable adding an icon to the category label by using icon HTML format in Premium Grid widget.
|
144 |
+
|
145 |
+
|
146 |
= 2.9.6 =
|
147 |
|
148 |
- Tweak: Added `Whole image lightbox` option in Premium Grid widget.
|
widgets/premium-grid.php
CHANGED
@@ -1133,7 +1133,7 @@ class Premium_Grid extends Widget_Base {
|
|
1133 |
)
|
1134 |
);
|
1135 |
?>
|
1136 |
-
<li><a href="javascript:;" <?php echo $this->get_render_attribute_string($cat_list_key); ?> data-filter=".<?php echo esc_attr( $cat_filtered ); ?>"><span><?php echo
|
1137 |
<?php }
|
1138 |
} ?>
|
1139 |
</ul>
|
1133 |
)
|
1134 |
);
|
1135 |
?>
|
1136 |
+
<li><a href="javascript:;" <?php echo $this->get_render_attribute_string($cat_list_key); ?> data-filter=".<?php echo esc_attr( $cat_filtered ); ?>"><span><?php echo $category['premium_gallery_img_cat']; ?></span></a></li>
|
1137 |
<?php }
|
1138 |
} ?>
|
1139 |
</ul>
|