Version Description
- Tweak: Added Normal/Hover options for navigation arrows in Carousel widget.
- Tweak: Added
srcset
andwidth
attributes to image in Person widget. - Tweak: Load Google maps API script only if API key is set.
- Fixed: Console error
PremiumProSettings is not defined
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 3.7.4 |
Comparing to | |
See all releases |
Code changes from version 3.7.3 to 3.7.4
- admin/includes/version-control.php +3 -3
- admin/settings/maps.php +3 -2
- admin/settings/modules-setting.php +2 -2
- assets/frontend/css/premium-addons.css +4 -4
- assets/frontend/js/premium-addons.js +1 -1
- includes/class-addons-integration.php +33 -32
- languages/premium-addons-for-elementor.pot +1040 -988
- premium-addons-for-elementor.php +3 -3
- readme.txt +8 -1
- widgets/premium-carousel.php +108 -120
- widgets/premium-person.php +38 -27
admin/includes/version-control.php
CHANGED
@@ -45,7 +45,7 @@ class Version_Control {
|
|
45 |
|
46 |
$js_info = array(
|
47 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
48 |
-
'nonce' => wp_create_nonce('
|
49 |
);
|
50 |
|
51 |
wp_localize_script( 'pa-admin-js', 'settings', $js_info );
|
@@ -92,7 +92,7 @@ class Version_Control {
|
|
92 |
<tr class="pa-roll-row">
|
93 |
<th><?php echo __('Rollback Version', 'premium-addons-for-elementor'); ?></th>
|
94 |
<td>
|
95 |
-
<div><?php echo sprintf( '<a target="_blank" href="%1$s" class="button pa-btn pa-rollback-button elementor-button-spinner">%2$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __('Reinstall Version 3.7.
|
96 |
<p class="pa-roll-desc">
|
97 |
<span><?php echo __('Warning: Please backup your database before making the rollback.', 'premium-addons-for-elementor'); ?></span>
|
98 |
</p>
|
@@ -123,7 +123,7 @@ class Version_Control {
|
|
123 |
|
124 |
public function pa_beta_save_settings() {
|
125 |
|
126 |
-
check_ajax_referer('
|
127 |
|
128 |
if( isset( $_POST['fields'] ) ) {
|
129 |
parse_str( $_POST['fields'], $settings );
|
45 |
|
46 |
$js_info = array(
|
47 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
48 |
+
'nonce' => wp_create_nonce( 'pa-version-control' ),
|
49 |
);
|
50 |
|
51 |
wp_localize_script( 'pa-admin-js', 'settings', $js_info );
|
92 |
<tr class="pa-roll-row">
|
93 |
<th><?php echo __('Rollback Version', 'premium-addons-for-elementor'); ?></th>
|
94 |
<td>
|
95 |
+
<div><?php echo sprintf( '<a target="_blank" href="%1$s" class="button pa-btn pa-rollback-button elementor-button-spinner">%2$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __('Reinstall Version 3.7.3', 'premium-addons-for-elementor') ); ?></div>
|
96 |
<p class="pa-roll-desc">
|
97 |
<span><?php echo __('Warning: Please backup your database before making the rollback.', 'premium-addons-for-elementor'); ?></span>
|
98 |
</p>
|
123 |
|
124 |
public function pa_beta_save_settings() {
|
125 |
|
126 |
+
check_ajax_referer('pa-version-control', 'security');
|
127 |
|
128 |
if( isset( $_POST['fields'] ) ) {
|
129 |
parse_str( $_POST['fields'], $settings );
|
admin/settings/maps.php
CHANGED
@@ -41,7 +41,7 @@ class Maps {
|
|
41 |
|
42 |
$js_info = array(
|
43 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
44 |
-
'nonce' => wp_create_nonce('
|
45 |
);
|
46 |
|
47 |
wp_localize_script( 'pa-admin-js', 'settings', $js_info );
|
@@ -152,6 +152,7 @@ class Maps {
|
|
152 |
}
|
153 |
|
154 |
public static function get_enabled_keys() {
|
|
|
155 |
$enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_keys() );
|
156 |
|
157 |
return $enabled_keys;
|
@@ -159,7 +160,7 @@ class Maps {
|
|
159 |
|
160 |
public function pa_save_maps_settings() {
|
161 |
|
162 |
-
check_ajax_referer('
|
163 |
|
164 |
if( isset( $_POST['fields'] ) ) {
|
165 |
parse_str( $_POST['fields'], $settings );
|
41 |
|
42 |
$js_info = array(
|
43 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
44 |
+
'nonce' => wp_create_nonce( 'pa-maps' ),
|
45 |
);
|
46 |
|
47 |
wp_localize_script( 'pa-admin-js', 'settings', $js_info );
|
152 |
}
|
153 |
|
154 |
public static function get_enabled_keys() {
|
155 |
+
|
156 |
$enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_keys() );
|
157 |
|
158 |
return $enabled_keys;
|
160 |
|
161 |
public function pa_save_maps_settings() {
|
162 |
|
163 |
+
check_ajax_referer('pa-maps', 'security');
|
164 |
|
165 |
if( isset( $_POST['fields'] ) ) {
|
166 |
parse_str( $_POST['fields'], $settings );
|
admin/settings/modules-setting.php
CHANGED
@@ -142,7 +142,7 @@ class Modules_Settings {
|
|
142 |
|
143 |
$js_info = array(
|
144 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
145 |
-
'nonce' => wp_create_nonce('
|
146 |
'theme' => $theme_slug
|
147 |
);
|
148 |
|
@@ -699,7 +699,7 @@ class Modules_Settings {
|
|
699 |
|
700 |
public function pa_save_settings() {
|
701 |
|
702 |
-
check_ajax_referer('
|
703 |
|
704 |
if( isset( $_POST['fields'] ) ) {
|
705 |
parse_str( $_POST['fields'], $settings );
|
142 |
|
143 |
$js_info = array(
|
144 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
145 |
+
'nonce' => wp_create_nonce( 'pa-elements' ),
|
146 |
'theme' => $theme_slug
|
147 |
);
|
148 |
|
699 |
|
700 |
public function pa_save_settings() {
|
701 |
|
702 |
+
check_ajax_referer( 'pa-elements', 'security' );
|
703 |
|
704 |
if( isset( $_POST['fields'] ) ) {
|
705 |
parse_str( $_POST['fields'], $settings );
|
assets/frontend/css/premium-addons.css
CHANGED
@@ -713,10 +713,10 @@
|
|
713 |
position: absolute;
|
714 |
z-index: 99;
|
715 |
cursor: pointer;
|
716 |
-
-webkit-transition:
|
717 |
-
-
|
718 |
-
-
|
719 |
-
transition:
|
720 |
-webkit-appearance: inherit;
|
721 |
box-shadow: none;
|
722 |
}
|
713 |
position: absolute;
|
714 |
z-index: 99;
|
715 |
cursor: pointer;
|
716 |
+
-webkit-transition: all 0.3s ease-in-out;
|
717 |
+
-moz-transition: all 0.3s ease-in-out;
|
718 |
+
-o-transition: all 0.3s ease-in-out;
|
719 |
+
transition: all 0.3s ease-in-out;
|
720 |
-webkit-appearance: inherit;
|
721 |
box-shadow: none;
|
722 |
}
|
assets/frontend/js/premium-addons.js
CHANGED
@@ -449,7 +449,7 @@
|
|
449 |
if (undefined !== templateID) {
|
450 |
$.ajax({
|
451 |
type: "GET",
|
452 |
-
url:
|
453 |
dataType: "html",
|
454 |
data: {
|
455 |
action:
|
449 |
if (undefined !== templateID) {
|
450 |
$.ajax({
|
451 |
type: "GET",
|
452 |
+
url: PremiumSettings.ajaxurl,
|
453 |
dataType: "html",
|
454 |
data: {
|
455 |
action:
|
includes/class-addons-integration.php
CHANGED
@@ -169,6 +169,12 @@ class Addons_Integration {
|
|
169 |
true
|
170 |
);
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
wp_register_script(
|
173 |
'prettyPhoto-js',
|
174 |
PREMIUM_ADDONS_URL . 'assets/frontend/js/lib/prettyPhoto.js',
|
@@ -226,9 +232,8 @@ class Addons_Integration {
|
|
226 |
);
|
227 |
}
|
228 |
|
229 |
-
$api
|
230 |
-
|
231 |
-
if( $maps_settings['premium-map-disable-api'] ) {
|
232 |
wp_register_script(
|
233 |
'premium-maps-api-js',
|
234 |
$api,
|
@@ -279,40 +284,36 @@ class Addons_Integration {
|
|
279 |
* @access public
|
280 |
*/
|
281 |
public function enqueue_editor_scripts() {
|
|
|
|
|
282 |
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
$premium_maps_disable_api = self::$maps['premium-map-disable-api'];
|
288 |
-
|
289 |
-
$map_enabled = self::$modules['premium-maps'];
|
290 |
-
|
291 |
-
$premium_maps_enabled = isset( $map_enabled ) ? $map_enabled : 1;
|
292 |
-
|
293 |
-
$api = sprintf ( 'https://maps.googleapis.com/maps/api/js?key=%1$s&language=%2$s', $premium_maps_api, $locale );
|
294 |
|
295 |
-
|
296 |
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
|
|
|
|
306 |
|
307 |
-
|
308 |
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
|
317 |
}
|
318 |
|
169 |
true
|
170 |
);
|
171 |
|
172 |
+
$data = array(
|
173 |
+
'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) )
|
174 |
+
);
|
175 |
+
|
176 |
+
wp_localize_script( 'premium-addons-js', 'PremiumSettings', $data );
|
177 |
+
|
178 |
wp_register_script(
|
179 |
'prettyPhoto-js',
|
180 |
PREMIUM_ADDONS_URL . 'assets/frontend/js/lib/prettyPhoto.js',
|
232 |
);
|
233 |
}
|
234 |
|
235 |
+
if( $maps_settings['premium-map-disable-api'] && '1' !== $maps_settings['premium-map-api'] ) {
|
236 |
+
$api = sprintf ( 'https://maps.googleapis.com/maps/api/js?key=%1$s&language=%2$s', $maps_settings['premium-map-api'], $locale );
|
|
|
237 |
wp_register_script(
|
238 |
'premium-maps-api-js',
|
239 |
$api,
|
284 |
* @access public
|
285 |
*/
|
286 |
public function enqueue_editor_scripts() {
|
287 |
+
|
288 |
+
$map_enabled = isset( self::$modules['premium-maps'] ) ? self::$modules['premium-maps'] : 1;
|
289 |
|
290 |
+
if( $map_enabled ) {
|
291 |
+
|
292 |
+
$premium_maps_api = self::$maps['premium-map-api'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
|
294 |
+
$locale = isset ( self::$maps['premium-map-locale'] ) ? self::$maps['premium-map-locale'] : "en";
|
295 |
|
296 |
+
$premium_maps_disable_api = self::$maps['premium-map-disable-api'];
|
297 |
+
|
298 |
+
if ( $premium_maps_disable_api && '1' !== $premium_maps_api ) {
|
299 |
+
$api = sprintf ( 'https://maps.googleapis.com/maps/api/js?key=%1$s&language=%2$s', $premium_maps_api, $locale );
|
300 |
+
wp_enqueue_script(
|
301 |
+
'premium-maps-api-js',
|
302 |
+
$api,
|
303 |
+
array(),
|
304 |
+
PREMIUM_ADDONS_VERSION,
|
305 |
+
false
|
306 |
+
);
|
307 |
|
308 |
+
}
|
309 |
|
310 |
+
wp_enqueue_script(
|
311 |
+
'premium-maps-address',
|
312 |
+
PREMIUM_ADDONS_URL . 'assets/editor/js/premium-maps-address.js',
|
313 |
+
array( 'jquery' ),
|
314 |
+
PREMIUM_ADDONS_VERSION,
|
315 |
+
true
|
316 |
+
);
|
317 |
|
318 |
}
|
319 |
|
languages/premium-addons-for-elementor.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
@@ -96,8 +96,8 @@ msgid ""
|
|
96 |
"\"><span class=\"dashicons dashicons-dismiss\"></span></a></p>"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/includes/dep/maintenance.php:28 admin/includes/version-control.php:
|
100 |
-
#: admin/settings/modules-setting.php:
|
101 |
msgid "Rollback to Previous Version"
|
102 |
msgstr ""
|
103 |
|
@@ -118,8 +118,8 @@ msgid "About"
|
|
118 |
msgstr ""
|
119 |
|
120 |
#: admin/includes/plugin-info.php:40 admin/includes/reports.php:34
|
121 |
-
#: admin/includes/version-control.php:
|
122 |
-
#: admin/settings/modules-setting.php:
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"Thank you for using %s. This plugin has been developed by %s and we hope you "
|
@@ -180,12 +180,12 @@ msgid "Community Forums"
|
|
180 |
msgstr ""
|
181 |
|
182 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
183 |
-
#: admin/settings/maps.php:
|
184 |
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
185 |
msgstr ""
|
186 |
|
187 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
188 |
-
#: admin/settings/maps.php:
|
189 |
msgid "Click Here to Rate it ★★★★★"
|
190 |
msgstr ""
|
191 |
|
@@ -201,52 +201,52 @@ msgstr ""
|
|
201 |
msgid "Version Control"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin/includes/version-control.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"Experiencing an issue with Premium Addons for Elementor version %s? Rollback "
|
208 |
"to a previous version before the issue appeared."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin/includes/version-control.php:
|
212 |
msgid "Rollback Version"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: admin/includes/version-control.php:
|
216 |
-
msgid "Reinstall Version 3.
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: admin/includes/version-control.php:
|
220 |
msgid "Warning: Please backup your database before making the rollback."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin/includes/version-control.php:
|
224 |
msgid "Become a Beta Tester"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin/includes/version-control.php:
|
228 |
msgid ""
|
229 |
"Turn-on Beta Tester, to get notified when a new beta version of Premium "
|
230 |
"Addons for Elementor. The Beta version will not install automatically. You "
|
231 |
"always have the option to ignore it."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: admin/includes/version-control.php:
|
235 |
msgid "Beta Tester"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: admin/includes/version-control.php:
|
239 |
msgid "Check this box to get updates for beta versions"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: admin/includes/version-control.php:
|
243 |
msgid ""
|
244 |
"Please Note: We do not recommend updating to a beta version on production "
|
245 |
"sites."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin/includes/version-control.php:
|
249 |
-
#: admin/settings/modules-setting.php:
|
250 |
msgid "Save Settings"
|
251 |
msgstr ""
|
252 |
|
@@ -254,289 +254,287 @@ msgstr ""
|
|
254 |
msgid "Google Maps"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin/settings/maps.php:
|
258 |
msgid ""
|
259 |
" Maps Element requires Google API key to be entered below. If you don’t have "
|
260 |
"one, click "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin/settings/maps.php:
|
264 |
msgid "here"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin/settings/maps.php:
|
268 |
msgid " to get your key."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin/settings/maps.php:
|
272 |
msgid "Google Maps API Key:"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin/settings/maps.php:
|
276 |
msgid "Google Maps Localization Language:"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin/settings/maps.php:
|
280 |
msgid "Load Maps API JS File:"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin/settings/maps.php:
|
284 |
msgid ""
|
285 |
"This will load API JS file if it's not loaded by another theme or plugin"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin/settings/maps.php:
|
289 |
msgid "Load Markers Clustering JS File:"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin/settings/maps.php:
|
293 |
msgid "This will load the JS file for markers clusters"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin/settings/modules-setting.php:
|
297 |
msgid "Settings"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin/settings/modules-setting.php:
|
301 |
msgid "Are you sure you want to reinstall version "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin/settings/modules-setting.php:
|
305 |
msgid "Yes"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin/settings/modules-setting.php:
|
309 |
msgid "Cancel"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin/settings/modules-setting.php:
|
313 |
msgid "Banner"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin/settings/modules-setting.php:
|
317 |
msgid "Blog"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin/settings/modules-setting.php:
|
321 |
-
#: widgets/premium-banner.php:678 widgets/premium-button.php:
|
322 |
-
#: widgets/premium-button.php:
|
323 |
#: widgets/premium-contactform.php:182 widgets/premium-contactform.php:439
|
324 |
-
#: widgets/premium-image-button.php:
|
325 |
-
#: widgets/premium-modalbox.php:
|
326 |
-
#: widgets/premium-pricing-table.php:
|
327 |
msgid "Button"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/settings/modules-setting.php:
|
331 |
-
#: widgets/premium-
|
332 |
-
#: widgets/premium-carousel.php:61
|
333 |
msgid "Carousel"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin/settings/modules-setting.php:
|
337 |
msgid "Contact Form7"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin/settings/modules-setting.php:
|
341 |
#: widgets/premium-countdown.php:54
|
342 |
msgid "Countdown"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/settings/modules-setting.php:
|
346 |
-
#: widgets/premium-counter.php:
|
347 |
msgid "Counter"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/settings/modules-setting.php:
|
351 |
#: widgets/premium-dual-header.php:54
|
352 |
msgid "Dual Heading"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/settings/modules-setting.php:
|
356 |
#: widgets/premium-fancytext.php:55 widgets/premium-fancytext.php:85
|
357 |
#: widgets/premium-fancytext.php:339
|
358 |
msgid "Fancy Text"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/settings/modules-setting.php:
|
362 |
-
|
363 |
-
msgid "Grid"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/settings/modules-setting.php:
|
367 |
msgid "Image Button"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/settings/modules-setting.php:
|
371 |
msgid "Image Scroll"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/settings/modules-setting.php:
|
375 |
#: widgets/premium-image-separator.php:28
|
376 |
msgid "Image Separator"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/settings/modules-setting.php:
|
380 |
msgid "Maps"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/settings/modules-setting.php:
|
384 |
-
#: widgets/premium-modalbox.php:
|
385 |
msgid "Modal Box"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin/settings/modules-setting.php:
|
389 |
-
#: widgets/premium-person.php:
|
390 |
msgid "Person"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin/settings/modules-setting.php:
|
394 |
#: widgets/premium-progressbar.php:238
|
395 |
msgid "Progress Bar"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin/settings/modules-setting.php:
|
399 |
-
#: widgets/premium-pricing-table.php:
|
400 |
msgid "Pricing Table"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/settings/modules-setting.php:
|
404 |
msgid "Testimonials"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/settings/modules-setting.php:
|
408 |
-
#: widgets/premium-carousel.php:
|
409 |
msgid "Templates"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin/settings/modules-setting.php:
|
413 |
-
#: widgets/premium-banner.php:554 widgets/premium-blog.php:
|
414 |
-
#: widgets/premium-blog.php:
|
415 |
-
#: widgets/premium-counter.php:
|
416 |
-
#: widgets/premium-grid.php:
|
417 |
-
#: widgets/premium-maps.php:389 widgets/premium-modalbox.php:
|
418 |
-
#: widgets/premium-pricing-table.php:
|
419 |
-
#: widgets/premium-pricing-table.php:
|
420 |
-
#: widgets/premium-progressbar.php:342 widgets/premium-title.php:
|
421 |
-
#: widgets/premium-title.php:
|
422 |
-
#: widgets/premium-title.php:
|
423 |
msgid "Title"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: admin/settings/modules-setting.php:
|
427 |
-
#: widgets/premium-videobox.php:61 widgets/premium-videobox.php:
|
428 |
msgid "Video Box"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/settings/modules-setting.php:
|
432 |
msgid "Vertical Scroll"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/settings/modules-setting.php:
|
436 |
msgid "Premium Alert Box"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/settings/modules-setting.php:
|
440 |
msgid "Premium Icon Box"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/settings/modules-setting.php:
|
444 |
msgid "Premium Twitter Feed"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/settings/modules-setting.php:
|
448 |
msgid "Premium Instagram Feed"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin/settings/modules-setting.php:
|
452 |
msgid "Premium Flip Box"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/settings/modules-setting.php:
|
456 |
msgid "Premium Unfold"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/settings/modules-setting.php:
|
460 |
msgid "Premium Messenger Chat"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/settings/modules-setting.php:
|
464 |
msgid "Premium Tabs"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin/settings/modules-setting.php:
|
468 |
msgid "Premium Chart"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/settings/modules-setting.php:
|
472 |
msgid "Premium Preview Window"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/settings/modules-setting.php:
|
476 |
msgid "Premium Image Hotspots"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/settings/modules-setting.php:
|
480 |
msgid "Premium Facebook Reviews"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/settings/modules-setting.php:
|
484 |
msgid "Premium Image Comparison"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/settings/modules-setting.php:
|
488 |
msgid "Premium Divider"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/settings/modules-setting.php:
|
492 |
msgid "Premium Magic Section"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/settings/modules-setting.php:
|
496 |
msgid "Premium Google Reviews"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/settings/modules-setting.php:
|
500 |
msgid "Premium Behance Feed"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/settings/modules-setting.php:
|
504 |
msgid "Premium Tables"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/settings/modules-setting.php:
|
508 |
msgid "Premium Image Layers"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin/settings/modules-setting.php:
|
512 |
msgid "Premium iHover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/settings/modules-setting.php:
|
516 |
msgid "Premium Content Switcher"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/settings/modules-setting.php:
|
520 |
msgid "Premium Facebook Feed"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/settings/modules-setting.php:
|
524 |
msgid "Premium Whatsapp Chat"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/settings/modules-setting.php:
|
528 |
msgid "Premium Section Parallax"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/settings/modules-setting.php:
|
532 |
msgid "Premium Section Particles"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/settings/modules-setting.php:
|
536 |
msgid "Premium Section Animated Gradient"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/settings/modules-setting.php:
|
540 |
msgid "Premium Section Ken Burns"
|
541 |
msgstr ""
|
542 |
|
@@ -752,274 +750,274 @@ msgstr ""
|
|
752 |
msgid "Chinese (traditional)"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
756 |
msgid "Banner: Title"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
760 |
msgid "Banner: Description"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
764 |
msgid "Banner: Button Text"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
768 |
msgid "Banner: URL"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
772 |
msgid "Banner: Button URL"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
776 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
777 |
msgid "Button: Text"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
781 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
782 |
msgid "Button: URL"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
786 |
msgid "Countdown: Expiration Message"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
790 |
msgid "Countdown: Day Singular"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
794 |
msgid "Countdown: Day Plural"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
798 |
msgid "Countdown: Week Singular"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
802 |
msgid "Countdown: Week Plural"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
806 |
msgid "Countdown: Month Singular"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
810 |
msgid "Countdown: Month Plural"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
814 |
msgid "Countdown: Year Singular"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
818 |
msgid "Countdown: Year Plural"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
822 |
msgid "Countdown: Hour Singular"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
826 |
msgid "Countdown: Hour Plural"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
830 |
msgid "Countdown: Minute Singular"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
834 |
msgid "Countdown: Minute Plural"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
838 |
msgid "Countdown: Second Singular"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
842 |
msgid "Countdown: Second Plural"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
846 |
msgid "Countdown: Direction URL"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
850 |
msgid "Counter: Title Text"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
854 |
msgid "Counter: Thousands Separator"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
858 |
msgid "Counter: Prefix"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
862 |
msgid "Counter: Suffix"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
866 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
867 |
msgid "Advanced Heading: Heading URL"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
871 |
msgid "Dual Heading: First Heading"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
875 |
msgid "Dual Heading: Second Heading"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
879 |
msgid "Fancy Text: Prefix"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
883 |
msgid "Fancy Text: Suffix"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
887 |
msgid "Fancy Text: Cursor Text"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
891 |
msgid "Grid: Load More Button"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
895 |
msgid "Image Scroll: Link Title"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
899 |
msgid "Image Scroll: URL"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
903 |
msgid "Image Separator: Link Title"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
907 |
msgid "Image Separator: URL"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
911 |
msgid "Maps: Center Latitude"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
915 |
msgid "Maps: Center Longitude"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
919 |
msgid "Modal Box: Header Title"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
923 |
msgid "Modal Box: Content Text"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
927 |
msgid "Modal Box: Close Button"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
931 |
msgid "Modal Box: Trigger Button"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
935 |
msgid "Modal Box: Trigger Text"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
939 |
msgid "Person: Name"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
943 |
msgid "Person: Title"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
947 |
msgid "Person: Description"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
951 |
msgid "Pricing Table: Title"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
955 |
msgid "Pricing Table: Slashed Price"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
959 |
msgid "Pricing Table: Currency"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
963 |
msgid "Pricing Table: Price Value"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
967 |
msgid "Pricing Table: Separator"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
971 |
msgid "Pricing Table: Duration"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
975 |
msgid "Pricing Table: Description"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
979 |
msgid "Pricing Table: Button Text"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
983 |
msgid "Pricing Table: Button URL"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
987 |
msgid "Pricing Table: Badge"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
991 |
msgid "Progress Bar: Left Label"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
995 |
msgid "Testimonial: Name"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
999 |
msgid "Testimonial: Company"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
1003 |
msgid "Testimonial: Company Link"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
1007 |
msgid "Testimonial: Content"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
1011 |
msgid "Title: Text"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
1015 |
msgid "Video Box: Link"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
1019 |
msgid "Video Box: Description"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/compatibility/class-premium-addons-wpml.php:
|
1023 |
msgid "Vertical Scroll: Tooltips"
|
1024 |
msgstr ""
|
1025 |
|
@@ -1080,8 +1078,8 @@ msgstr ""
|
|
1080 |
msgid "Get Pro"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/templates/classes/manager.php:189 widgets/premium-blog.php:
|
1084 |
-
#: widgets/premium-grid.php:
|
1085 |
msgid "All"
|
1086 |
msgstr ""
|
1087 |
|
@@ -1099,7 +1097,7 @@ msgid "Back to Library"
|
|
1099 |
msgstr ""
|
1100 |
|
1101 |
#: includes/templates/scripts/template-modal-header.php:9
|
1102 |
-
#: widgets/premium-modalbox.php:
|
1103 |
msgid "Close"
|
1104 |
msgstr ""
|
1105 |
|
@@ -1120,25 +1118,25 @@ msgstr ""
|
|
1120 |
msgid "Loading"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/templates/types/section.php:23 widgets/premium-vscroll.php:
|
1124 |
-
#: widgets/premium-vscroll.php:
|
1125 |
msgid "Sections"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: widgets/premium-banner.php:60 widgets/premium-banner.php:457
|
1129 |
-
#: widgets/premium-blog.php:63 widgets/premium-blog.php:
|
1130 |
-
#: widgets/premium-grid.php:
|
1131 |
#: widgets/premium-image-scroll.php:272 widgets/premium-image-separator.php:59
|
1132 |
-
#: widgets/premium-image-separator.php:227 widgets/premium-modalbox.php:
|
1133 |
-
#: widgets/premium-modalbox.php:
|
1134 |
-
#: widgets/premium-person.php:
|
1135 |
#: widgets/premium-testimonials.php:57 widgets/premium-testimonials.php:229
|
1136 |
-
#: widgets/premium-videobox.php:
|
1137 |
msgid "Image"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: widgets/premium-banner.php:66 widgets/premium-counter.php:
|
1141 |
-
#: widgets/premium-grid.php:
|
1142 |
msgid "Upload Image"
|
1143 |
msgstr ""
|
1144 |
|
@@ -1147,11 +1145,11 @@ msgid "Select an image for the Banner"
|
|
1147 |
msgstr ""
|
1148 |
|
1149 |
#: widgets/premium-banner.php:79 widgets/premium-banner.php:355
|
1150 |
-
#: widgets/premium-blog.php:352 widgets/premium-button.php:
|
1151 |
#: widgets/premium-dual-header.php:119 widgets/premium-dual-header.php:143
|
1152 |
-
#: widgets/premium-grid.php:
|
1153 |
#: widgets/premium-image-scroll.php:110 widgets/premium-image-separator.php:135
|
1154 |
-
#: widgets/premium-pricing-table.php:
|
1155 |
#: widgets/premium-testimonials.php:166 widgets/premium-videobox.php:80
|
1156 |
#: widgets/premium-videobox.php:121
|
1157 |
msgid "Link"
|
@@ -1174,14 +1172,14 @@ msgid "What custom link you want to set to banner?"
|
|
1174 |
msgstr ""
|
1175 |
|
1176 |
#: widgets/premium-banner.php:111 widgets/premium-banner.php:342
|
1177 |
-
#: widgets/premium-banner.php:373 widgets/premium-button.php:
|
1178 |
-
#: widgets/premium-button.php:
|
1179 |
-
#: widgets/premium-dual-header.php:161 widgets/premium-grid.php:
|
1180 |
-
#: widgets/premium-grid.php:
|
1181 |
-
#: widgets/premium-image-button.php:
|
1182 |
#: widgets/premium-image-scroll.php:148 widgets/premium-image-separator.php:147
|
1183 |
#: widgets/premium-image-separator.php:159
|
1184 |
-
#: widgets/premium-pricing-table.php:
|
1185 |
msgid "Existing Page"
|
1186 |
msgstr ""
|
1187 |
|
@@ -1246,64 +1244,63 @@ msgid "Choose if you want the effect to be always triggered"
|
|
1246 |
msgstr ""
|
1247 |
|
1248 |
#: widgets/premium-banner.php:183 widgets/premium-blog.php:69
|
1249 |
-
#: widgets/premium-button.php:
|
1250 |
-
#: widgets/premium-image-button.php:
|
1251 |
msgid "Hover Effect"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#: widgets/premium-banner.php:186 widgets/premium-blog.php:73
|
1255 |
-
#: widgets/premium-blog.php:94 widgets/premium-blog.php:
|
1256 |
-
#: widgets/premium-button.php:
|
1257 |
-
#: widgets/premium-image-button.php:
|
1258 |
-
#: widgets/premium-person.php:
|
1259 |
msgid "None"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
#: widgets/premium-banner.php:187 widgets/premium-blog.php:74
|
1263 |
-
#: widgets/premium-grid.php:
|
1264 |
msgid "Zoom In"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
#: widgets/premium-banner.php:188 widgets/premium-blog.php:75
|
1268 |
-
#: widgets/premium-grid.php:
|
1269 |
msgid "Zoom Out"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: widgets/premium-banner.php:189 widgets/premium-blog.php:76
|
1273 |
-
#: widgets/premium-grid.php:
|
1274 |
msgid "Scale"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
#: widgets/premium-banner.php:190 widgets/premium-blog.php:77
|
1278 |
-
#: widgets/premium-grid.php:
|
1279 |
msgid "Grayscale"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: widgets/premium-banner.php:191 widgets/premium-blog.php:78
|
1283 |
-
#: widgets/premium-grid.php:
|
1284 |
msgid "Blur"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: widgets/premium-banner.php:192 widgets/premium-blog.php:79
|
1288 |
-
#: widgets/premium-grid.php:
|
1289 |
msgid "Bright"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: widgets/premium-banner.php:193 widgets/premium-blog.php:80
|
1293 |
-
#: widgets/premium-grid.php:
|
1294 |
msgid "Sepia"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: widgets/premium-banner.php:201 widgets/premium-contactform.php:130
|
1298 |
-
#: widgets/premium-contactform.php:212 widgets/premium-grid.php:
|
1299 |
-
#: widgets/premium-grid.php:
|
1300 |
-
#: widgets/premium-person.php:
|
1301 |
-
#: widgets/premium-progressbar.php:
|
1302 |
msgid "Height"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: widgets/premium-banner.php:204 widgets/premium-
|
1306 |
-
#: widgets/premium-grid.php:574
|
1307 |
msgid "Default"
|
1308 |
msgstr ""
|
1309 |
|
@@ -1324,22 +1321,22 @@ msgstr ""
|
|
1324 |
msgid "Set a minimum height value in pixels"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: widgets/premium-banner.php:228 widgets/premium-pricing-table.php:
|
1328 |
msgid "Vertical Align"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: widgets/premium-banner.php:234 widgets/premium-button.php:
|
1332 |
-
#: widgets/premium-counter.php:
|
1333 |
-
#: widgets/premium-testimonials.php:193 widgets/premium-vscroll.php:
|
1334 |
msgid "Top"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: widgets/premium-banner.php:235 widgets/premium-vscroll.php:
|
1338 |
msgid "Middle"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: widgets/premium-banner.php:236 widgets/premium-button.php:
|
1342 |
-
#: widgets/premium-pricing-table.php:
|
1343 |
msgid "Bottom"
|
1344 |
msgstr ""
|
1345 |
|
@@ -1347,7 +1344,7 @@ msgstr ""
|
|
1347 |
msgid "Full"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: widgets/premium-banner.php:248 widgets/premium-carousel.php:
|
1351 |
msgid "Extra Class"
|
1352 |
msgstr ""
|
1353 |
|
@@ -1357,11 +1354,11 @@ msgid ""
|
|
1357 |
"this class for your customizations."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: widgets/premium-banner.php:260 widgets/premium-carousel.php:
|
1361 |
-
#: widgets/premium-grid.php:
|
1362 |
-
#: widgets/premium-modalbox.php:
|
1363 |
#: widgets/premium-testimonials.php:208 widgets/premium-testimonials.php:383
|
1364 |
-
#: widgets/premium-vscroll.php:
|
1365 |
msgid "Content"
|
1366 |
msgstr ""
|
1367 |
|
@@ -1374,9 +1371,9 @@ msgid "Premium Banner"
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
#: widgets/premium-banner.php:277 widgets/premium-dual-header.php:83
|
1377 |
-
#: widgets/premium-person.php:
|
1378 |
-
#: widgets/premium-pricing-table.php:
|
1379 |
-
#: widgets/premium-testimonials.php:139 widgets/premium-title.php:
|
1380 |
msgid "HTML Tag"
|
1381 |
msgstr ""
|
1382 |
|
@@ -1386,12 +1383,12 @@ msgid ""
|
|
1386 |
msgstr ""
|
1387 |
|
1388 |
#: widgets/premium-banner.php:296 widgets/premium-banner.php:303
|
1389 |
-
#: widgets/premium-banner.php:624 widgets/premium-grid.php:
|
1390 |
-
#: widgets/premium-grid.php:
|
1391 |
-
#: widgets/premium-maps.php:473 widgets/premium-person.php:
|
1392 |
-
#: widgets/premium-person.php:
|
1393 |
-
#: widgets/premium-pricing-table.php:
|
1394 |
-
#: widgets/premium-pricing-table.php:
|
1395 |
msgid "Description"
|
1396 |
msgstr ""
|
1397 |
|
@@ -1405,93 +1402,93 @@ msgid ""
|
|
1405 |
"definitely fall in love with"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: widgets/premium-banner.php:325 widgets/premium-button.php:
|
1409 |
-
#: widgets/premium-fancytext.php:109 widgets/premium-image-button.php:
|
1410 |
-
#: widgets/premium-modalbox.php:
|
1411 |
-
#: widgets/premium-modalbox.php:
|
1412 |
-
#: widgets/premium-pricing-table.php:
|
1413 |
-
#: widgets/premium-pricing-table.php:
|
1414 |
-
#: widgets/premium-pricing-table.php:
|
1415 |
msgid "Text"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: widgets/premium-banner.php:338 widgets/premium-button.php:
|
1419 |
-
#: widgets/premium-dual-header.php:127 widgets/premium-grid.php:
|
1420 |
-
#: widgets/premium-image-button.php:
|
1421 |
msgid "Link Type"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: widgets/premium-banner.php:341 widgets/premium-button.php:
|
1425 |
-
#: widgets/premium-dual-header.php:130 widgets/premium-grid.php:
|
1426 |
-
#: widgets/premium-image-button.php:
|
1427 |
#: widgets/premium-image-scroll.php:134 widgets/premium-image-separator.php:146
|
1428 |
#: widgets/premium-image-separator.php:173
|
1429 |
-
#: widgets/premium-pricing-table.php:
|
1430 |
msgid "URL"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
#: widgets/premium-banner.php:389 widgets/premium-blog.php:285
|
1434 |
-
#: widgets/premium-blog.php:
|
1435 |
-
#: widgets/premium-button.php:
|
1436 |
#: widgets/premium-dual-header.php:177 widgets/premium-fancytext.php:118
|
1437 |
-
#: widgets/premium-image-button.php:
|
1438 |
-
#: widgets/premium-maps.php:526 widgets/premium-modalbox.php:
|
1439 |
-
#: widgets/premium-person.php:
|
1440 |
-
#: widgets/premium-title.php:
|
1441 |
msgid "Alignment"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
#: widgets/premium-banner.php:393 widgets/premium-blog.php:289
|
1445 |
-
#: widgets/premium-blog.php:
|
1446 |
-
#: widgets/premium-button.php:
|
1447 |
-
#: widgets/premium-countdown.php:126 widgets/premium-counter.php:
|
1448 |
#: widgets/premium-dual-header.php:181 widgets/premium-fancytext.php:122
|
1449 |
-
#: widgets/premium-fancytext.php:311 widgets/premium-grid.php:
|
1450 |
-
#: widgets/premium-grid.php:
|
1451 |
#: widgets/premium-image-separator.php:112 widgets/premium-maps.php:448
|
1452 |
-
#: widgets/premium-maps.php:530 widgets/premium-modalbox.php:
|
1453 |
-
#: widgets/premium-person.php:
|
1454 |
-
#: widgets/premium-pricing-table.php:
|
1455 |
-
#: widgets/premium-title.php:
|
1456 |
-
#: widgets/premium-vscroll.php:
|
1457 |
msgid "Left"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
#: widgets/premium-banner.php:397 widgets/premium-blog.php:293
|
1461 |
-
#: widgets/premium-blog.php:
|
1462 |
-
#: widgets/premium-button.php:
|
1463 |
#: widgets/premium-dual-header.php:185 widgets/premium-fancytext.php:126
|
1464 |
-
#: widgets/premium-fancytext.php:315 widgets/premium-grid.php:
|
1465 |
-
#: widgets/premium-grid.php:
|
1466 |
#: widgets/premium-image-separator.php:116 widgets/premium-maps.php:452
|
1467 |
-
#: widgets/premium-maps.php:534 widgets/premium-modalbox.php:
|
1468 |
-
#: widgets/premium-person.php:
|
1469 |
-
#: widgets/premium-progressbar.php:174 widgets/premium-title.php:
|
1470 |
-
#: widgets/premium-title.php:
|
1471 |
msgid "Center"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
#: widgets/premium-banner.php:401 widgets/premium-blog.php:297
|
1475 |
-
#: widgets/premium-blog.php:
|
1476 |
-
#: widgets/premium-button.php:
|
1477 |
-
#: widgets/premium-countdown.php:134 widgets/premium-counter.php:
|
1478 |
#: widgets/premium-dual-header.php:189 widgets/premium-fancytext.php:130
|
1479 |
-
#: widgets/premium-fancytext.php:319 widgets/premium-grid.php:
|
1480 |
-
#: widgets/premium-grid.php:
|
1481 |
#: widgets/premium-image-separator.php:120 widgets/premium-maps.php:456
|
1482 |
-
#: widgets/premium-maps.php:538 widgets/premium-modalbox.php:
|
1483 |
-
#: widgets/premium-person.php:
|
1484 |
-
#: widgets/premium-pricing-table.php:
|
1485 |
-
#: widgets/premium-title.php:
|
1486 |
-
#: widgets/premium-vscroll.php:
|
1487 |
msgid "Right"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: widgets/premium-banner.php:417 widgets/premium-grid.php:
|
1491 |
msgid "Responsive"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: widgets/premium-banner.php:423 widgets/premium-grid.php:
|
1495 |
msgid "Responsive Controls"
|
1496 |
msgstr ""
|
1497 |
|
@@ -1501,42 +1498,43 @@ msgid ""
|
|
1501 |
"may enable this option which will hide the description text."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: widgets/premium-banner.php:431 widgets/premium-grid.php:
|
1505 |
msgid "Minimum Size"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: widgets/premium-banner.php:433 widgets/premium-grid.php:
|
1509 |
msgid "Note: minimum size for extra small screens is 1px."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: widgets/premium-banner.php:443 widgets/premium-grid.php:
|
1513 |
msgid "Maximum Size"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: widgets/premium-banner.php:445 widgets/premium-grid.php:
|
1517 |
msgid "Note: maximum size for extra small screens is 767px."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
#: widgets/premium-banner.php:464 widgets/premium-banner.php:727
|
1521 |
-
#: widgets/premium-blog.php:
|
1522 |
-
#: widgets/premium-blog.php:
|
1523 |
-
#: widgets/premium-blog.php:
|
1524 |
-
#: widgets/premium-button.php:
|
1525 |
-
#: widgets/premium-carousel.php:
|
1526 |
-
#: widgets/premium-contactform.php:
|
1527 |
-
#: widgets/premium-countdown.php:
|
1528 |
-
#: widgets/premium-
|
1529 |
-
#: widgets/premium-fancytext.php:
|
1530 |
-
#: widgets/premium-grid.php:
|
1531 |
-
#: widgets/premium-
|
1532 |
-
#: widgets/premium-
|
1533 |
-
#: widgets/premium-modalbox.php:
|
1534 |
-
#: widgets/premium-modalbox.php:
|
1535 |
-
#: widgets/premium-
|
1536 |
-
#: widgets/premium-pricing-table.php:
|
1537 |
-
#: widgets/premium-
|
1538 |
-
#: widgets/premium-
|
1539 |
-
#: widgets/premium-vscroll.php:
|
|
|
1540 |
msgid "Background Color"
|
1541 |
msgstr ""
|
1542 |
|
@@ -1553,68 +1551,70 @@ msgid "Hover CSS Filter"
|
|
1553 |
msgstr ""
|
1554 |
|
1555 |
#: widgets/premium-banner.php:541 widgets/premium-banner.php:755
|
1556 |
-
#: widgets/premium-blog.php:
|
1557 |
-
#: widgets/premium-blog.php:
|
1558 |
-
#: widgets/premium-button.php:
|
|
|
1559 |
#: widgets/premium-contactform.php:274 widgets/premium-contactform.php:510
|
1560 |
-
#: widgets/premium-countdown.php:438 widgets/premium-counter.php:
|
1561 |
#: widgets/premium-dual-header.php:353 widgets/premium-dual-header.php:550
|
1562 |
-
#: widgets/premium-grid.php:
|
1563 |
-
#: widgets/premium-grid.php:
|
1564 |
-
#: widgets/premium-grid.php:
|
1565 |
-
#: widgets/premium-grid.php:
|
1566 |
-
#: widgets/premium-
|
|
|
1567 |
#: widgets/premium-image-scroll.php:400 widgets/premium-image-scroll.php:435
|
1568 |
-
#: widgets/premium-maps.php:572 widgets/premium-modalbox.php:
|
1569 |
-
#: widgets/premium-modalbox.php:
|
1570 |
-
#: widgets/premium-modalbox.php:
|
1571 |
-
#: widgets/premium-modalbox.php:
|
1572 |
-
#: widgets/premium-pricing-table.php:
|
1573 |
-
#: widgets/premium-pricing-table.php:
|
1574 |
-
#: widgets/premium-pricing-table.php:
|
1575 |
-
#: widgets/premium-pricing-table.php:
|
1576 |
-
#: widgets/premium-pricing-table.php:
|
1577 |
-
#: widgets/premium-pricing-table.php:
|
1578 |
-
#: widgets/premium-testimonials.php:541 widgets/premium-title.php:
|
1579 |
-
#: widgets/premium-videobox.php:
|
1580 |
-
#: widgets/premium-vscroll.php:
|
1581 |
-
#: widgets/premium-vscroll.php:
|
1582 |
msgid "Border Radius"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
#: widgets/premium-banner.php:561 widgets/premium-banner.php:631
|
1586 |
-
#: widgets/premium-banner.php:689 widgets/premium-blog.php:
|
1587 |
-
#: widgets/premium-blog.php:
|
1588 |
-
#: widgets/premium-blog.php:
|
1589 |
-
#: widgets/premium-blog.php:
|
1590 |
-
#: widgets/premium-blog.php:
|
1591 |
-
#: widgets/premium-
|
|
|
1592 |
#: widgets/premium-countdown.php:371 widgets/premium-countdown.php:459
|
1593 |
-
#: widgets/premium-counter.php:
|
1594 |
-
#: widgets/premium-counter.php:
|
1595 |
#: widgets/premium-fancytext.php:405 widgets/premium-fancytext.php:452
|
1596 |
-
#: widgets/premium-grid.php:
|
1597 |
-
#: widgets/premium-grid.php:
|
1598 |
-
#: widgets/premium-
|
1599 |
-
#: widgets/premium-
|
1600 |
-
#: widgets/premium-modalbox.php:
|
1601 |
-
#: widgets/premium-modalbox.php:
|
1602 |
-
#: widgets/premium-
|
1603 |
-
#: widgets/premium-person.php:
|
1604 |
-
#: widgets/premium-person.php:
|
1605 |
-
#: widgets/premium-pricing-table.php:
|
1606 |
-
#: widgets/premium-pricing-table.php:
|
1607 |
-
#: widgets/premium-pricing-table.php:
|
1608 |
-
#: widgets/premium-pricing-table.php:
|
1609 |
-
#: widgets/premium-pricing-table.php:
|
1610 |
-
#: widgets/premium-pricing-table.php:
|
1611 |
-
#: widgets/premium-pricing-table.php:
|
1612 |
-
#: widgets/premium-pricing-table.php:1361 widgets/premium-progressbar.php:350
|
1613 |
#: widgets/premium-progressbar.php:396 widgets/premium-progressbar.php:509
|
1614 |
#: widgets/premium-progressbar.php:552 widgets/premium-testimonials.php:280
|
1615 |
#: widgets/premium-testimonials.php:305 widgets/premium-testimonials.php:355
|
1616 |
#: widgets/premium-testimonials.php:391 widgets/premium-testimonials.php:447
|
1617 |
-
#: widgets/premium-title.php:
|
1618 |
msgid "Color"
|
1619 |
msgstr ""
|
1620 |
|
@@ -1632,17 +1632,17 @@ msgstr ""
|
|
1632 |
|
1633 |
#: widgets/premium-banner.php:614 widgets/premium-banner.php:668
|
1634 |
#: widgets/premium-banner.php:767 widgets/premium-dual-header.php:366
|
1635 |
-
#: widgets/premium-dual-header.php:563 widgets/premium-grid.php:
|
1636 |
-
#: widgets/premium-grid.php:
|
1637 |
-
#: widgets/premium-grid.php:
|
1638 |
-
#: widgets/premium-modalbox.php:
|
1639 |
-
#: widgets/premium-pricing-table.php:
|
1640 |
-
#: widgets/premium-pricing-table.php:
|
1641 |
-
#: widgets/premium-pricing-table.php:
|
1642 |
-
#: widgets/premium-pricing-table.php:
|
1643 |
-
#: widgets/premium-videobox.php:
|
1644 |
-
#: widgets/premium-vscroll.php:
|
1645 |
-
#: widgets/premium-vscroll.php:
|
1646 |
msgid "Shadow"
|
1647 |
msgstr ""
|
1648 |
|
@@ -1650,52 +1650,52 @@ msgstr ""
|
|
1650 |
msgid "Inner Border Color"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: widgets/premium-banner.php:703 widgets/premium-blog.php:
|
1654 |
-
#: widgets/premium-blog.php:
|
1655 |
-
#: widgets/premium-blog.php:
|
1656 |
-
#: widgets/premium-modalbox.php:
|
1657 |
-
#: widgets/premium-videobox.php:
|
1658 |
msgid "Hover Color"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: widgets/premium-banner.php:737 widgets/premium-blog.php:
|
1662 |
msgid "Hover Background Color"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: widgets/premium-banner.php:775 widgets/premium-blog.php:
|
1666 |
-
#: widgets/premium-blog.php:
|
1667 |
-
#: widgets/premium-blog.php:
|
1668 |
-
#: widgets/premium-button.php:
|
1669 |
#: widgets/premium-contactform.php:456 widgets/premium-dual-header.php:388
|
1670 |
-
#: widgets/premium-dual-header.php:585 widgets/premium-grid.php:
|
1671 |
-
#: widgets/premium-grid.php:
|
1672 |
-
#: widgets/premium-grid.php:
|
1673 |
-
#: widgets/premium-grid.php:
|
1674 |
-
#: widgets/premium-grid.php:
|
1675 |
-
#: widgets/premium-image-button.php:
|
1676 |
#: widgets/premium-maps.php:514 widgets/premium-maps.php:606
|
1677 |
-
#: widgets/premium-modalbox.php:
|
1678 |
-
#: widgets/premium-modalbox.php:
|
1679 |
-
#: widgets/premium-pricing-table.php:
|
1680 |
-
#: widgets/premium-pricing-table.php:
|
1681 |
-
#: widgets/premium-pricing-table.php:
|
1682 |
-
#: widgets/premium-pricing-table.php:
|
1683 |
-
#: widgets/premium-pricing-table.php:
|
1684 |
-
#: widgets/premium-pricing-table.php:
|
1685 |
-
#: widgets/premium-pricing-table.php:
|
1686 |
-
#: widgets/premium-pricing-table.php:
|
1687 |
-
#: widgets/premium-title.php:
|
1688 |
-
#: widgets/premium-videobox.php:
|
1689 |
-
#: widgets/premium-vscroll.php:
|
1690 |
msgid "Padding"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: widgets/premium-blog.php:71 widgets/premium-grid.php:
|
1694 |
msgid "Choose a hover effect for the image"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: widgets/premium-blog.php:81 widgets/premium-grid.php:
|
1698 |
-
#: widgets/premium-person.php:
|
1699 |
msgid "Translate"
|
1700 |
msgstr ""
|
1701 |
|
@@ -1723,12 +1723,13 @@ msgstr ""
|
|
1723 |
msgid "Squares"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: widgets/premium-blog.php:109 widgets/premium-counter.php:
|
1727 |
-
#: widgets/premium-
|
|
|
1728 |
msgid "Display Options"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: widgets/premium-blog.php:115 widgets/premium-grid.php:
|
1732 |
msgid "Skin"
|
1733 |
msgstr ""
|
1734 |
|
@@ -1748,15 +1749,19 @@ msgstr ""
|
|
1748 |
msgid "Select a heading tag for the post title."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
1752 |
msgid "Layout"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: widgets/premium-blog.php:157 widgets/premium-grid.php:
|
1756 |
msgid "Even"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: widgets/premium-blog.php:158 widgets/premium-grid.php:
|
1760 |
msgid "Masonry"
|
1761 |
msgstr ""
|
1762 |
|
@@ -1764,19 +1769,19 @@ msgstr ""
|
|
1764 |
msgid "Number of Columns"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: widgets/premium-blog.php:172 widgets/premium-grid.php:
|
1768 |
msgid "1 Column"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: widgets/premium-blog.php:173 widgets/premium-grid.php:
|
1772 |
msgid "2 Columns"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: widgets/premium-blog.php:174 widgets/premium-grid.php:
|
1776 |
msgid "3 Columns"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: widgets/premium-blog.php:175 widgets/premium-grid.php:
|
1780 |
msgid "4 Columns"
|
1781 |
msgstr ""
|
1782 |
|
@@ -1792,11 +1797,11 @@ msgstr ""
|
|
1792 |
msgid "Thumbnail Fit"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: widgets/premium-blog.php:228 widgets/premium-grid.php:
|
1796 |
msgid "Cover"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: widgets/premium-blog.php:229 widgets/premium-grid.php:
|
1800 |
msgid "Fill"
|
1801 |
msgstr ""
|
1802 |
|
@@ -1808,7 +1813,7 @@ msgstr ""
|
|
1808 |
msgid "Rows Spacing"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: widgets/premium-blog.php:
|
1812 |
msgid "Columns Spacing"
|
1813 |
msgstr ""
|
1814 |
|
@@ -1842,8 +1847,8 @@ msgstr ""
|
|
1842 |
msgid "Excerpt Type"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: widgets/premium-blog.php:351 widgets/premium-carousel.php:
|
1846 |
-
#: widgets/premium-vscroll.php:
|
1847 |
msgid "Dots"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1887,7 +1892,7 @@ msgstr ""
|
|
1887 |
msgid "Display or hide post tags"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: widgets/premium-blog.php:416 widgets/premium-blog.php:
|
1891 |
msgid "Post Format Icon"
|
1892 |
msgstr ""
|
1893 |
|
@@ -1896,145 +1901,145 @@ msgid "Advanced Settings"
|
|
1896 |
msgstr ""
|
1897 |
|
1898 |
#: widgets/premium-blog.php:432
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1899 |
msgid "Filter By Category"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: widgets/premium-blog.php:
|
1903 |
msgid "Get posts for specific category(s)"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: widgets/premium-blog.php:
|
1907 |
msgid "Filter Tabs"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: widgets/premium-blog.php:
|
1911 |
msgid "Filter By Tag"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: widgets/premium-blog.php:
|
1915 |
msgid "Get posts for specific tag(s)"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: widgets/premium-blog.php:
|
1919 |
msgid "Filter By Author"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: widgets/premium-blog.php:
|
1923 |
msgid "Get posts for specific author(s)"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: widgets/premium-blog.php:
|
1927 |
msgid "Posts to Exclude"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: widgets/premium-blog.php:
|
1931 |
msgid "Add post(s) to exclude"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: widgets/premium-blog.php:
|
1935 |
msgid "Order By"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: widgets/premium-blog.php:
|
1939 |
msgid "ID"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: widgets/premium-blog.php:
|
1943 |
#: widgets/premium-testimonials.php:297
|
1944 |
msgid "Author"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: widgets/premium-blog.php:
|
1948 |
-
#: widgets/premium-person.php:
|
1949 |
#: widgets/premium-testimonials.php:127
|
1950 |
msgid "Name"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: widgets/premium-blog.php:
|
1954 |
msgid "Date"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: widgets/premium-blog.php:
|
1958 |
msgid "Last Modified"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: widgets/premium-blog.php:
|
1962 |
msgid "Random"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: widgets/premium-blog.php:
|
1966 |
msgid "Number of Comments"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: widgets/premium-blog.php:
|
1970 |
msgid "Order"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: widgets/premium-blog.php:
|
1974 |
msgid "Descending"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: widgets/premium-blog.php:
|
1978 |
msgid "Ascending"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: widgets/premium-blog.php:
|
1982 |
msgid "Pagination"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: widgets/premium-blog.php:
|
1986 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: widgets/premium-blog.php:
|
1990 |
msgid "Next Page String"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: widgets/premium-blog.php:
|
1994 |
msgid "Next"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: widgets/premium-blog.php:
|
1998 |
msgid "Previous Page String"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: widgets/premium-blog.php:
|
2002 |
msgid "Previous"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: widgets/premium-blog.php:
|
2006 |
msgid "Links in New Tab"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: widgets/premium-blog.php:
|
2010 |
msgid "Enable links to be opened in a new tab"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: widgets/premium-blog.php:615
|
2014 |
-
msgid "Posts Per Page"
|
2015 |
-
msgstr ""
|
2016 |
-
|
2017 |
-
#: widgets/premium-blog.php:616
|
2018 |
-
msgid "Choose how many posts do you want to be displayed per page"
|
2019 |
-
msgstr ""
|
2020 |
-
|
2021 |
-
#: widgets/premium-blog.php:625
|
2022 |
-
msgid "Total Number of Posts"
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#: widgets/premium-blog.php:637
|
2026 |
-
msgid "Offset Count"
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#: widgets/premium-blog.php:638
|
2030 |
-
msgid "The index of post to start with"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
#: widgets/premium-blog.php:658
|
2034 |
msgid "Enable Carousel"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: widgets/premium-blog.php:665 widgets/premium-carousel.php:
|
2038 |
msgid "Fade"
|
2039 |
msgstr ""
|
2040 |
|
@@ -2042,656 +2047,651 @@ msgstr ""
|
|
2042 |
msgid "Auto Play"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: widgets/premium-blog.php:685 widgets/premium-carousel.php:
|
2046 |
msgid "Autoplay Speed"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: widgets/premium-blog.php:686 widgets/premium-carousel.php:
|
2050 |
msgid ""
|
2051 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
2052 |
"in milliseconds (ms)"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: widgets/premium-blog.php:698
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2056 |
msgid "Arrows Position"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: widgets/premium-blog.php:
|
2060 |
-
|
2061 |
-
#: widgets/premium-image-button.php:415 widgets/premium-image-button.php:537
|
2062 |
-
#: widgets/premium-image-button.php:554 widgets/premium-image-scroll.php:279
|
2063 |
-
#: widgets/premium-modalbox.php:563 widgets/premium-title.php:466
|
2064 |
-
msgid "Icon Color"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: widgets/premium-blog.php:
|
2068 |
-
#: widgets/premium-image-button.php:
|
2069 |
-
#: widgets/premium-image-button.php:
|
2070 |
msgid "Overlay Color"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: widgets/premium-blog.php:
|
2074 |
-
#: widgets/premium-contactform.php:554
|
2075 |
msgid "Border Color"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: widgets/premium-blog.php:
|
2079 |
msgid "Meta"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: widgets/premium-blog.php:
|
2083 |
msgid "Tags"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: widgets/premium-blog.php:
|
2087 |
-
#: widgets/premium-button.php:
|
2088 |
-
#: widgets/premium-counter.php:
|
2089 |
-
#: widgets/premium-image-button.php:
|
2090 |
-
#: widgets/premium-pricing-table.php:
|
2091 |
-
#: widgets/premium-pricing-table.php:
|
2092 |
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2093 |
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2094 |
-
#: widgets/premium-videobox.php:
|
2095 |
msgid "Size"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: widgets/premium-blog.php:
|
2099 |
msgid "Choose icon size in (PX, EM)"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: widgets/premium-blog.php:
|
2103 |
msgid "Box"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: widgets/premium-blog.php:
|
2107 |
-
#: widgets/premium-button.php:
|
2108 |
#: widgets/premium-contactform.php:532 widgets/premium-dual-header.php:246
|
2109 |
-
#: widgets/premium-dual-header.php:443 widgets/premium-grid.php:
|
2110 |
-
#: widgets/premium-
|
2111 |
-
#: widgets/premium-
|
2112 |
-
#: widgets/premium-
|
|
|
|
|
2113 |
msgid "Text Color"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: widgets/premium-blog.php:
|
2117 |
msgid "Content Background Color"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: widgets/premium-blog.php:
|
2121 |
msgid "Content Margin"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: widgets/premium-blog.php:
|
2125 |
msgid "Content Padding"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: widgets/premium-blog.php:
|
2129 |
msgid "Pagination Style"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: widgets/premium-blog.php:
|
2133 |
-
#: widgets/premium-
|
2134 |
-
#: widgets/premium-grid.php:
|
|
|
2135 |
#: widgets/premium-image-scroll.php:307 widgets/premium-image-scroll.php:386
|
2136 |
-
#: widgets/premium-modalbox.php:
|
2137 |
-
#: widgets/premium-modalbox.php:
|
2138 |
-
#: widgets/premium-pricing-table.php:
|
2139 |
msgid "Normal"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: widgets/premium-blog.php:
|
2143 |
-
#: widgets/premium-
|
2144 |
-
#: widgets/premium-grid.php:
|
|
|
2145 |
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:340
|
2146 |
-
#: widgets/premium-image-scroll.php:421 widgets/premium-modalbox.php:
|
2147 |
-
#: widgets/premium-modalbox.php:
|
2148 |
-
#: widgets/premium-pricing-table.php:
|
2149 |
-
#: widgets/premium-pricing-table.php:
|
2150 |
msgid "Hover"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: widgets/premium-blog.php:
|
2154 |
-
#: widgets/premium-button.php:
|
2155 |
#: widgets/premium-contactform.php:286 widgets/premium-dual-header.php:375
|
2156 |
-
#: widgets/premium-dual-header.php:572 widgets/premium-grid.php:
|
2157 |
-
#: widgets/premium-grid.php:
|
2158 |
-
#: widgets/premium-grid.php:
|
2159 |
-
#: widgets/premium-grid.php:
|
2160 |
-
#: widgets/premium-grid.php:
|
2161 |
-
#: widgets/premium-image-button.php:
|
2162 |
#: widgets/premium-maps.php:503 widgets/premium-maps.php:594
|
2163 |
-
#: widgets/premium-modalbox.php:
|
2164 |
-
#: widgets/premium-pricing-table.php:
|
2165 |
-
#: widgets/premium-pricing-table.php:
|
2166 |
-
#: widgets/premium-pricing-table.php:
|
2167 |
-
#: widgets/premium-pricing-table.php:
|
2168 |
-
#: widgets/premium-pricing-table.php:
|
2169 |
-
#: widgets/premium-pricing-table.php:
|
2170 |
-
#: widgets/premium-pricing-table.php:
|
2171 |
-
#: widgets/premium-pricing-table.php:
|
2172 |
-
#: widgets/premium-pricing-table.php:
|
2173 |
-
#: widgets/premium-pricing-table.php:
|
2174 |
#: widgets/premium-progressbar.php:376 widgets/premium-progressbar.php:421
|
2175 |
-
#: widgets/premium-testimonials.php:417 widgets/premium-title.php:
|
2176 |
-
#: widgets/premium-title.php:
|
2177 |
-
#: widgets/premium-vscroll.php:
|
2178 |
msgid "Margin"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: widgets/premium-blog.php:
|
2182 |
-
msgid "
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: widgets/premium-blog.php:
|
2186 |
-
#: widgets/premium-
|
2187 |
-
msgid "
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: widgets/premium-blog.php:
|
2191 |
-
|
2192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: widgets/premium-blog.php:
|
2196 |
msgid "Background Active Color"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: widgets/premium-button.php:
|
2200 |
msgid "Click Me"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: widgets/premium-button.php:
|
2204 |
msgid "Slide"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: widgets/premium-button.php:
|
2208 |
msgid "Shutter"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: widgets/premium-button.php:
|
2212 |
msgid "Icon Fade"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: widgets/premium-button.php:
|
2216 |
msgid "Icon Slide"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: widgets/premium-button.php:
|
2220 |
msgid "In & Out"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: widgets/premium-button.php:
|
2224 |
-
#: widgets/premium-image-button.php:
|
2225 |
-
#: widgets/premium-image-button.php:
|
2226 |
msgid "Slide Direction"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: widgets/premium-button.php:
|
2230 |
-
#: widgets/premium-image-button.php:
|
2231 |
msgid "Top to Bottom"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: widgets/premium-button.php:
|
2235 |
-
#: widgets/premium-image-button.php:
|
2236 |
msgid "Bottom to Top"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: widgets/premium-button.php:
|
2240 |
-
#: widgets/premium-image-button.php:
|
2241 |
msgid "Right to Left"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: widgets/premium-button.php:
|
2245 |
-
#: widgets/premium-image-button.php:
|
2246 |
msgid "Left to Right"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: widgets/premium-button.php:
|
2250 |
msgid "Shutter Direction"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: widgets/premium-button.php:
|
2254 |
msgid "Shutter in Horizontal"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: widgets/premium-button.php:
|
2258 |
msgid "Shutter in Vertical"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: widgets/premium-button.php:
|
2262 |
msgid "Shutter out Horizontal"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: widgets/premium-button.php:
|
2266 |
msgid "Shutter out Vertical"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: widgets/premium-button.php:
|
2270 |
msgid "Scaled Shutter Vertical"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: widgets/premium-button.php:
|
2274 |
msgid "Scaled Shutter Horizontal"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: widgets/premium-button.php:
|
2278 |
msgid "Tilted Left"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: widgets/premium-button.php:
|
2282 |
msgid "Tilted Right"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: widgets/premium-button.php:
|
2286 |
-
#: widgets/premium-
|
2287 |
-
#: widgets/premium-title.php:66
|
2288 |
msgid "Style"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: widgets/premium-button.php:
|
2292 |
msgid "Radial In"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: widgets/premium-button.php:
|
2296 |
msgid "Radial Out"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: widgets/premium-button.php:
|
2300 |
msgid "Rectangle In"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: widgets/premium-button.php:
|
2304 |
msgid "Rectangle Out"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: widgets/premium-button.php:
|
2308 |
-
#: widgets/premium-button.php:
|
2309 |
-
#: widgets/premium-counter.php:
|
2310 |
-
#: widgets/premium-image-button.php:
|
2311 |
-
#: widgets/premium-image-scroll.php:230 widgets/premium-modalbox.php:
|
2312 |
-
#: widgets/premium-modalbox.php:
|
2313 |
-
#: widgets/premium-pricing-table.php:
|
2314 |
-
#: widgets/premium-pricing-table.php:
|
2315 |
-
#: widgets/premium-pricing-table.php:
|
2316 |
msgid "Icon"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: widgets/premium-button.php:
|
2320 |
-
#: widgets/premium-modalbox.php:
|
2321 |
msgid "Enable or disable button icon"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: widgets/premium-button.php:
|
2325 |
-
#: widgets/premium-image-button.php:
|
2326 |
msgid "Icon Position"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: widgets/premium-button.php:
|
2330 |
-
#: widgets/premium-modalbox.php:
|
2331 |
msgid "Before"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: widgets/premium-button.php:
|
2335 |
-
#: widgets/premium-modalbox.php:
|
2336 |
msgid "After"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: widgets/premium-button.php:
|
2340 |
-
#: widgets/premium-image-button.php:
|
2341 |
-
#: widgets/premium-image-scroll.php:237 widgets/premium-modalbox.php:
|
2342 |
-
#: widgets/premium-modalbox.php:
|
2343 |
msgid "Icon Size"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: widgets/premium-button.php:
|
2347 |
-
#: widgets/premium-button.php:
|
2348 |
-
#: widgets/premium-button.php:
|
2349 |
-
#: widgets/premium-image-button.php:
|
2350 |
-
#: widgets/premium-modalbox.php:
|
2351 |
-
#: widgets/premium-modalbox.php:
|
2352 |
msgid "Icon Spacing"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: widgets/premium-button.php:
|
2356 |
-
#: widgets/premium-modalbox.php:
|
2357 |
msgid "Small"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: widgets/premium-button.php:
|
2361 |
-
#: widgets/premium-modalbox.php:
|
2362 |
msgid "Medium"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: widgets/premium-button.php:
|
2366 |
-
#: widgets/premium-modalbox.php:
|
2367 |
msgid "Large"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: widgets/premium-button.php:
|
2371 |
-
#: widgets/premium-dual-header.php:107 widgets/premium-image-button.php:
|
2372 |
-
#: widgets/premium-modalbox.php:
|
2373 |
msgid "Block"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: widgets/premium-button.php:
|
2377 |
msgid "onclick Event"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: widgets/premium-button.php:
|
2381 |
msgid "Example: myFunction();"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: widgets/premium-button.php:
|
2385 |
-
#: widgets/premium-button.php:
|
2386 |
-
#: widgets/premium-image-button.php:
|
2387 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2388 |
msgid "Icon Shadow"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: widgets/premium-button.php:
|
2392 |
-
#: widgets/premium-image-button.php:
|
2393 |
msgid "Text Shadow"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: widgets/premium-button.php:
|
2397 |
-
#: widgets/premium-image-button.php:
|
2398 |
msgid "Button Shadow"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: widgets/premium-carousel.php:
|
2402 |
msgid "Content Type"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: widgets/premium-carousel.php:
|
2406 |
msgid "How templates are selected"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: widgets/premium-carousel.php:
|
2410 |
msgid "Select Field"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: widgets/premium-carousel.php:
|
2414 |
msgid "Repeater"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: widgets/premium-carousel.php:
|
2418 |
msgid ""
|
2419 |
"Slider content is a template which you can choose from Elementor library. "
|
2420 |
"Each template will be a slider content"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: widgets/premium-carousel.php:
|
|
|
2424 |
msgid "Type"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: widgets/premium-carousel.php:
|
2428 |
msgid "Set a navigation type"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: widgets/premium-carousel.php:
|
2432 |
#: widgets/premium-image-scroll.php:184
|
2433 |
msgid "Horizontal"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: widgets/premium-carousel.php:
|
2437 |
#: widgets/premium-image-scroll.php:185
|
2438 |
msgid "Vertical"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: widgets/premium-carousel.php:
|
2442 |
msgid "Enable or disable navigation dots"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: widgets/premium-carousel.php:
|
2446 |
-
#: widgets/premium-pricing-table.php:
|
2447 |
msgid "Position"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: widgets/premium-carousel.php:
|
2451 |
msgid "Below Slides"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: widgets/premium-carousel.php:
|
2455 |
msgid "On Slides"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: widgets/premium-carousel.php:
|
2459 |
msgid "Horizontal Offset"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: widgets/premium-carousel.php:
|
2463 |
msgid "Vertical Offset"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: widgets/premium-carousel.php:
|
2467 |
msgid "Arrows"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: widgets/premium-carousel.php:
|
2471 |
msgid "Enable or disable navigation arrows"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: widgets/premium-carousel.php:
|
2475 |
msgid "Appearance"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: widgets/premium-carousel.php:
|
2479 |
msgid "All visible"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: widgets/premium-carousel.php:
|
2483 |
msgid "One at a time"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: widgets/premium-carousel.php:
|
2487 |
msgid "Desktop Slides"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: widgets/premium-carousel.php:
|
2491 |
msgid "Tabs Slides"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: widgets/premium-carousel.php:
|
2495 |
msgid "Mobile Slides"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: widgets/premium-carousel.php:
|
2499 |
msgid "Slides' Settings"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: widgets/premium-carousel.php:
|
2503 |
msgid "Infinite Loop"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: widgets/premium-carousel.php:
|
2507 |
msgid "Restart the slider automatically as it passes the last slide"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: widgets/premium-carousel.php:
|
2511 |
msgid "Enable fade transition between slides"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: widgets/premium-carousel.php:
|
2515 |
msgid "Zoom Effect"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: widgets/premium-carousel.php:
|
2519 |
msgid "Transition Speed"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: widgets/premium-carousel.php:
|
2523 |
msgid ""
|
2524 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: widgets/premium-carousel.php:
|
2528 |
msgid "Autoplay Slides"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: widgets/premium-carousel.php:
|
2532 |
msgid "Slide will start automatically"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: widgets/premium-carousel.php:
|
2536 |
msgid "Animations"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: widgets/premium-carousel.php:
|
2540 |
msgid ""
|
2541 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2542 |
"this class for your customizations."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: widgets/premium-carousel.php:
|
2546 |
msgid "Additional Settings"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: widgets/premium-carousel.php:
|
2550 |
msgid "Draggable Effect"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: widgets/premium-carousel.php:
|
2554 |
msgid "Allow the slides to be dragged by mouse click"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: widgets/premium-carousel.php:
|
2558 |
msgid "Touch Move"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: widgets/premium-carousel.php:
|
2562 |
msgid "Enable slide moving with touch"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: widgets/premium-carousel.php:
|
2566 |
msgid "RTL Mode"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: widgets/premium-carousel.php:
|
2570 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: widgets/premium-carousel.php:
|
2574 |
msgid "Adaptive Height"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: widgets/premium-carousel.php:
|
2578 |
msgid ""
|
2579 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2580 |
"space gaps"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: widgets/premium-carousel.php:
|
2584 |
msgid "Pause on Hover"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: widgets/premium-carousel.php:
|
2588 |
msgid "Pause the slider when mouse hover"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: widgets/premium-carousel.php:
|
2592 |
msgid "Center Mode"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: widgets/premium-carousel.php:
|
2596 |
msgid ""
|
2597 |
"Center mode enables a centered view with partial next/previous slides. "
|
2598 |
"Animations and all visible scroll type doesn't work with this mode"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: widgets/premium-carousel.php:
|
2602 |
msgid "Slides' Spacing"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: widgets/premium-carousel.php:
|
2606 |
msgid "Set a spacing value in pixels (px)"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: widgets/premium-carousel.php:
|
2610 |
msgid "Tablet Breakpoint"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: widgets/premium-carousel.php:
|
2614 |
msgid ""
|
2615 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
2616 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: widgets/premium-carousel.php:
|
2620 |
msgid "Mobile Breakpoint"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: widgets/premium-carousel.php:
|
2624 |
msgid ""
|
2625 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
2626 |
"mobile layout will appear (Default: 768px)."
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: widgets/premium-carousel.php:
|
2630 |
msgid "Helpful Documentations"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: widgets/premium-carousel.php:
|
2634 |
#, php-format
|
2635 |
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: widgets/premium-carousel.php:
|
2639 |
-
msgid "Navigation Arrows"
|
2640 |
-
msgstr ""
|
2641 |
-
|
2642 |
-
#: widgets/premium-carousel.php:437
|
2643 |
msgid "Right Icon"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: widgets/premium-carousel.php:
|
2647 |
msgid "Bottom Icon"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: widgets/premium-carousel.php:
|
2651 |
msgid "Top Icon"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: widgets/premium-carousel.php:
|
2655 |
msgid "Left Icon"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: widgets/premium-carousel.php:
|
2659 |
-
msgid "Circle Background"
|
2660 |
-
msgstr ""
|
2661 |
-
|
2662 |
-
#: widgets/premium-carousel.php:560 widgets/premium-counter.php:278
|
2663 |
-
msgid "Square Background"
|
2664 |
-
msgstr ""
|
2665 |
-
|
2666 |
-
#: widgets/premium-carousel.php:561
|
2667 |
-
msgid "Circle border"
|
2668 |
-
msgstr ""
|
2669 |
-
|
2670 |
-
#: widgets/premium-carousel.php:562
|
2671 |
-
msgid "Square border"
|
2672 |
-
msgstr ""
|
2673 |
-
|
2674 |
-
#: widgets/premium-carousel.php:647
|
2675 |
-
msgid "Border Size"
|
2676 |
-
msgstr ""
|
2677 |
-
|
2678 |
-
#: widgets/premium-carousel.php:670
|
2679 |
msgid "Position (PX)"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: widgets/premium-carousel.php:
|
2683 |
-
msgid "Navigation Dots"
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
#: widgets/premium-carousel.php:765
|
2687 |
msgid "Ripple Effect"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: widgets/premium-carousel.php:
|
2691 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: widgets/premium-carousel.php:
|
2695 |
msgid "Ripple Color"
|
2696 |
msgstr ""
|
2697 |
|
@@ -2708,8 +2708,8 @@ msgid "Fields"
|
|
2708 |
msgstr ""
|
2709 |
|
2710 |
#: widgets/premium-contactform.php:72 widgets/premium-contactform.php:189
|
2711 |
-
#: widgets/premium-grid.php:
|
2712 |
-
#: widgets/premium-modalbox.php:
|
2713 |
msgid "Width"
|
2714 |
msgstr ""
|
2715 |
|
@@ -2939,115 +2939,123 @@ msgstr ""
|
|
2939 |
msgid "Spacing in Between"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: widgets/premium-counter.php:
|
2943 |
msgid "Enter title for stats counter block"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: widgets/premium-counter.php:
|
2947 |
-
msgid "
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: widgets/premium-counter.php:
|
2951 |
-
msgid "
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: widgets/premium-counter.php:
|
2955 |
msgid "Thousands Separator"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: widgets/premium-counter.php:
|
2959 |
msgid "Separator converts 125000 into 125,000"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: widgets/premium-counter.php:
|
2963 |
msgid "Digits After Decimal Point"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: widgets/premium-counter.php:
|
2967 |
msgid "Value Prefix"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: widgets/premium-counter.php:
|
2971 |
msgid "Enter prefix for counter value"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: widgets/premium-counter.php:
|
2975 |
msgid "Value suffix"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: widgets/premium-counter.php:
|
2979 |
msgid "Enter suffix for counter value"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: widgets/premium-counter.php:
|
2983 |
msgid "Rolling Time"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: widgets/premium-counter.php:
|
2987 |
msgid "How long should it take to complete the digit?"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: widgets/premium-counter.php:
|
2991 |
msgid "Icon Type"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: widgets/premium-counter.php:
|
2995 |
msgid "Use a font awesome icon or upload a custom image"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: widgets/premium-counter.php:
|
2999 |
-
#: widgets/premium-modalbox.php:
|
3000 |
msgid "Font Awesome"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: widgets/premium-counter.php:
|
3004 |
-
#: widgets/premium-modalbox.php:
|
3005 |
msgid "Custom Image"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: widgets/premium-counter.php:
|
3009 |
msgid "Select an Icon"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: widgets/premium-counter.php:
|
3013 |
msgid "Choose a position for your icon"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: widgets/premium-counter.php:
|
3017 |
msgid ""
|
3018 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
3019 |
"create your own with various options"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: widgets/premium-counter.php:
|
3023 |
msgid "Simple"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: widgets/premium-counter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3027 |
msgid "Design Your Own"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: widgets/premium-counter.php:
|
3031 |
msgid "Background size"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: widgets/premium-counter.php:
|
3035 |
msgid "Vertical Alignment"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: widgets/premium-counter.php:
|
3039 |
msgid "Value"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: widgets/premium-counter.php:
|
3043 |
msgid "Prefix & Suffix"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: widgets/premium-counter.php:
|
3047 |
msgid "Prefix Color"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: widgets/premium-counter.php:
|
3051 |
msgid "Suffix Color"
|
3052 |
msgstr ""
|
3053 |
|
@@ -3193,7 +3201,7 @@ msgid ""
|
|
3193 |
"5 seconds before backspace effect."
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: widgets/premium-fancytext.php:218 widgets/premium-videobox.php:
|
3197 |
msgid "Loop"
|
3198 |
msgstr ""
|
3199 |
|
@@ -3242,261 +3250,321 @@ msgstr ""
|
|
3242 |
msgid "Cursor Text"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: widgets/premium-grid.php:
|
3246 |
msgid "Grid Layout"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: widgets/premium-grid.php:
|
3250 |
msgid "Metro"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: widgets/premium-grid.php:
|
3254 |
-
msgid "
|
3255 |
-
msgstr ""
|
3256 |
-
|
3257 |
-
#: widgets/premium-grid.php:91
|
3258 |
-
msgid "You may need to click `Apply` button after settings this option"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: widgets/premium-grid.php:
|
3262 |
msgid "Images Fit"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: widgets/premium-grid.php:
|
3266 |
msgid "Columns"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: widgets/premium-grid.php:
|
3270 |
msgid "5 Columns"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: widgets/premium-grid.php:
|
3274 |
msgid "6 Columns"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: widgets/premium-grid.php:
|
3278 |
msgid "12 Columns"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: widgets/premium-grid.php:
|
3282 |
msgid "Load More Button"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: widgets/premium-grid.php:
|
3286 |
msgid "Requires number of images larger than 6"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: widgets/premium-grid.php:
|
3290 |
msgid "Button Text"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: widgets/premium-grid.php:
|
3294 |
msgid "Load More"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: widgets/premium-grid.php:
|
3298 |
msgid "Minimum Number of Images"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: widgets/premium-grid.php:
|
3302 |
msgid "Set the minimum number of images before showing load more button"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: widgets/premium-grid.php:
|
3306 |
msgid "Images to Show"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: widgets/premium-grid.php:
|
3310 |
msgid "Set the minimum number of images to show with each click"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: widgets/premium-grid.php:
|
3314 |
msgid "Button Alignment"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: widgets/premium-grid.php:
|
3318 |
msgid "Categories"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: widgets/premium-grid.php:
|
3322 |
msgid "First Category"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: widgets/premium-grid.php:
|
3326 |
msgid "First Category Label"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: widgets/premium-grid.php:
|
3330 |
msgid "Category"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: widgets/premium-grid.php:
|
3334 |
msgid "Rotation Degrees"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: widgets/premium-grid.php:
|
3338 |
msgid "Set rotation value in degrees"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: widgets/premium-grid.php:
|
3342 |
msgid "Active Category Index"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: widgets/premium-grid.php:
|
3346 |
msgid "Put the index of the default active category, default is 1"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: widgets/premium-grid.php:
|
3350 |
-
msgid "Images"
|
|
|
|
|
|
|
|
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: widgets/premium-grid.php:
|
3354 |
msgid "Works only when layout set to 'Metro'"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3358 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: widgets/premium-grid.php:
|
3362 |
msgid "Whole Image Link"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: widgets/premium-grid.php:
|
3366 |
msgid "Whole Image Lightbox"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: widgets/premium-grid.php:
|
3370 |
-
msgid "
|
|
|
|
|
|
|
|
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: widgets/premium-grid.php:
|
3374 |
msgid "Image Gap"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: widgets/premium-grid.php:
|
3378 |
msgid "Choose a layout style for the gallery"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: widgets/premium-grid.php:
|
3382 |
msgid "Style 1"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: widgets/premium-grid.php:
|
3386 |
msgid "Style 2"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: widgets/premium-grid.php:
|
3390 |
msgid "Style 3"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: widgets/premium-grid.php:
|
3394 |
msgid "Lightbox"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3398 |
msgid "Lightbox Theme"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: widgets/premium-grid.php:
|
3402 |
msgid "Light Rounded"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: widgets/premium-grid.php:
|
3406 |
msgid "Dark Rounded"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: widgets/premium-grid.php:
|
3410 |
msgid "Light Square"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: widgets/premium-grid.php:
|
3414 |
msgid "Dark Square"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: widgets/premium-grid.php:
|
3418 |
msgid "Facebook"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: widgets/premium-grid.php:
|
3422 |
msgid "Overlay Gallery Images"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
|
|
|
|
3426 |
msgid ""
|
3427 |
"This option moves the origin of the grid to the right side. Useful for RTL "
|
3428 |
"direction sites"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: widgets/premium-grid.php:
|
3432 |
msgid "Content Alignment"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: widgets/premium-grid.php:
|
3436 |
msgid ""
|
3437 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3438 |
"enable this option which will hide the description text."
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: widgets/premium-grid.php:
|
3442 |
#, php-format
|
3443 |
msgid "%1$s Getting Started » %2$s"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: widgets/premium-grid.php:
|
3447 |
msgid "General"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: widgets/premium-grid.php:
|
3451 |
msgid "Hover CSS Filters"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: widgets/premium-grid.php:
|
3455 |
msgid "Icons"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: widgets/premium-grid.php:
|
3459 |
-
msgid "
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: widgets/premium-grid.php:
|
3463 |
msgid "Spinner Color"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: widgets/premium-grid.php:
|
3467 |
-
#: widgets/premium-vscroll.php:
|
3468 |
msgid "Text Hover Color"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: widgets/premium-image-button.php:
|
3472 |
msgid "Background Slide"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: widgets/premium-image-button.php:
|
3476 |
msgid "Diagonal Slide"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: widgets/premium-image-button.php:
|
3480 |
msgid "Overlap"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: widgets/premium-image-button.php:
|
3484 |
msgid "Bottom Left to Top Right"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: widgets/premium-image-button.php:
|
3488 |
msgid "Top Right to Bottom Left"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: widgets/premium-image-button.php:
|
3492 |
msgid "Top Left to Bottom Right"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: widgets/premium-image-button.php:
|
3496 |
msgid "Bottom Right to Top Left"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: widgets/premium-image-button.php:
|
3500 |
msgid "Overlap Direction"
|
3501 |
msgstr ""
|
3502 |
|
@@ -3532,7 +3600,7 @@ msgstr ""
|
|
3532 |
msgid "Reverse Direction"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: widgets/premium-image-scroll.php:203 widgets/premium-modalbox.php:
|
3536 |
msgid "Trigger"
|
3537 |
msgstr ""
|
3538 |
|
@@ -3548,8 +3616,8 @@ msgstr ""
|
|
3548 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: widgets/premium-image-scroll.php:260 widgets/premium-videobox.php:
|
3552 |
-
#: widgets/premium-videobox.php:
|
3553 |
msgid "Overlay"
|
3554 |
msgstr ""
|
3555 |
|
@@ -3565,11 +3633,11 @@ msgstr ""
|
|
3565 |
msgid "Opacity"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: widgets/premium-image-scroll.php:377 widgets/premium-pricing-table.php:
|
3569 |
-
#: widgets/premium-pricing-table.php:
|
3570 |
-
#: widgets/premium-pricing-table.php:
|
3571 |
-
#: widgets/premium-pricing-table.php:
|
3572 |
-
#: widgets/premium-vscroll.php:
|
3573 |
msgid "Container"
|
3574 |
msgstr ""
|
3575 |
|
@@ -3600,12 +3668,12 @@ msgid "Image Hovering Title"
|
|
3600 |
msgstr ""
|
3601 |
|
3602 |
#: widgets/premium-image-separator.php:204
|
3603 |
-
#: widgets/premium-pricing-table.php:
|
3604 |
msgid "Link Target"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
#: widgets/premium-image-separator.php:206
|
3608 |
-
#: widgets/premium-pricing-table.php:
|
3609 |
msgid " Where would you like the link be opened?"
|
3610 |
msgstr ""
|
3611 |
|
@@ -3681,10 +3749,6 @@ msgstr ""
|
|
3681 |
msgid "Add an optional description to your map pin"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: widgets/premium-maps.php:244
|
3685 |
-
msgid "Controls"
|
3686 |
-
msgstr ""
|
3687 |
-
|
3688 |
#: widgets/premium-maps.php:250
|
3689 |
msgid "Map Type"
|
3690 |
msgstr ""
|
@@ -3765,247 +3829,243 @@ msgstr ""
|
|
3765 |
msgid "Enable or disable modal header"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: widgets/premium-modalbox.php:
|
3769 |
msgid "Use font awesome icon or upload a custom image"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: widgets/premium-modalbox.php:
|
3773 |
msgid "Add a title for the modal box"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: widgets/premium-modalbox.php:
|
3777 |
msgid "Content to Show"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: widgets/premium-modalbox.php:
|
3781 |
msgid "Text Editor"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: widgets/premium-modalbox.php:
|
3785 |
msgid "Elementor Template"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: widgets/premium-modalbox.php:
|
3789 |
msgid "Modal content is a template which you can choose from Elementor library"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: widgets/premium-modalbox.php:
|
3793 |
msgid "Upper Close Button"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: widgets/premium-modalbox.php:
|
3797 |
msgid "Lower Close Button"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: widgets/premium-modalbox.php:
|
3801 |
msgid "Display Style"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: widgets/premium-modalbox.php:
|
3805 |
msgid "Choose where would you like the modal box appear on"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: widgets/premium-modalbox.php:
|
3809 |
msgid "Page Load"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: widgets/premium-modalbox.php:
|
3813 |
msgid "Premium Modal Box"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: widgets/premium-modalbox.php:
|
3817 |
msgid "Button Size"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: widgets/premium-modalbox.php:
|
3821 |
msgid "Delay in Popup Display (Sec)"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: widgets/premium-modalbox.php:
|
3825 |
msgid ""
|
3826 |
"When should the popup appear during page load? The value are counted in "
|
3827 |
"seconds"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: widgets/premium-modalbox.php:
|
3831 |
msgid "Icon Hover Color"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: widgets/premium-modalbox.php:
|
3835 |
-
#: widgets/premium-modalbox.php:
|
3836 |
-
#: widgets/premium-pricing-table.php:
|
3837 |
-
#: widgets/premium-pricing-table.php:
|
3838 |
msgid "Typography"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: widgets/premium-modalbox.php:
|
3842 |
msgid "Heading"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: widgets/premium-modalbox.php:
|
3846 |
msgid "Max Height"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: widgets/premium-modalbox.php:
|
3850 |
msgid "Footer Background Color"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: widgets/premium-person.php:
|
3854 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: widgets/premium-person.php:
|
3858 |
-
msgid "Choose image height in (PX, EM)"
|
3859 |
-
msgstr ""
|
3860 |
-
|
3861 |
-
#: widgets/premium-person.php:178 widgets/premium-person.php:439
|
3862 |
msgid "Job Title"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: widgets/premium-person.php:
|
3866 |
msgid "Senior Developer"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: widgets/premium-person.php:
|
3870 |
msgid ""
|
3871 |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper "
|
3872 |
"nulla non metus auctor fringilla"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: widgets/premium-person.php:
|
3876 |
msgid "Social Icons"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: widgets/premium-person.php:
|
3880 |
msgid "Twitter"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: widgets/premium-person.php:
|
3884 |
msgid "LinkedIn"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: widgets/premium-person.php:
|
3888 |
msgid "Google+"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: widgets/premium-person.php:
|
3892 |
msgid "Youtube"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#: widgets/premium-person.php:
|
3896 |
msgid "Instagram"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: widgets/premium-person.php:
|
3900 |
msgid "Skype"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: widgets/premium-person.php:
|
3904 |
msgid "Pinterest"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: widgets/premium-person.php:
|
3908 |
msgid "Dribbble"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: widgets/premium-person.php:
|
3912 |
msgid "Behance"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: widgets/premium-person.php:
|
3916 |
msgid "Email Address"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: widgets/premium-person.php:
|
3920 |
msgid "Content Background"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: widgets/premium-pricing-table.php:
|
3924 |
msgid "Select HTML tag for the title"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: widgets/premium-pricing-table.php:
|
3928 |
-
#: widgets/premium-pricing-table.php:
|
3929 |
-
#: widgets/premium-pricing-table.php:
|
3930 |
msgid "Price"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: widgets/premium-pricing-table.php:
|
3934 |
msgid "Slashed Price"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: widgets/premium-pricing-table.php:
|
3938 |
msgid "Currency"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: widgets/premium-pricing-table.php:
|
3942 |
msgid "Divider"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: widgets/premium-pricing-table.php:
|
3946 |
msgid "Duration"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: widgets/premium-pricing-table.php:
|
3950 |
msgid "Icon List"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: widgets/premium-pricing-table.php:
|
3954 |
-
#: widgets/premium-pricing-table.php:
|
3955 |
msgid "Features"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: widgets/premium-pricing-table.php:
|
3959 |
msgid "List Item #1"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: widgets/premium-pricing-table.php:
|
3963 |
msgid "List Item #2"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: widgets/premium-pricing-table.php:
|
3967 |
msgid "List Item #3"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: widgets/premium-pricing-table.php:
|
3971 |
msgid "Get Started"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: widgets/premium-pricing-table.php:
|
3975 |
-
#: widgets/premium-pricing-table.php:
|
3976 |
msgid "Badge"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: widgets/premium-pricing-table.php:
|
3980 |
msgid "Popular"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: widgets/premium-pricing-table.php:
|
3984 |
msgid "Unset"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: widgets/premium-pricing-table.php:
|
3988 |
msgid "Spacing"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: widgets/premium-pricing-table.php:
|
3992 |
msgid "Vertical Spacing"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: widgets/premium-pricing-table.php:
|
3996 |
msgid "Hover Text Color"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: widgets/premium-pricing-table.php:
|
4000 |
msgid "Vertical Distance"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: widgets/premium-pricing-table.php:
|
4004 |
-
#: widgets/premium-pricing-table.php:
|
4005 |
msgid "Horizontal Distance"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: widgets/premium-pricing-table.php:
|
4009 |
msgid "Box Settings"
|
4010 |
msgstr ""
|
4011 |
|
@@ -4223,63 +4283,63 @@ msgstr ""
|
|
4223 |
msgid "Bottom Icon Position"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: widgets/premium-title.php:
|
4227 |
msgid "Premium Title"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: widgets/premium-title.php:
|
4231 |
msgid "Style 4"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: widgets/premium-title.php:
|
4235 |
msgid "Style 5"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: widgets/premium-title.php:
|
4239 |
msgid "Style 6"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: widgets/premium-title.php:
|
4243 |
msgid "Style 7"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: widgets/premium-title.php:
|
4247 |
msgid "Font Awesome Icon"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: widgets/premium-title.php:
|
4251 |
msgid "Stripe Width (PX)"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: widgets/premium-title.php:
|
4255 |
msgid "Stripe Height (PX)"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: widgets/premium-title.php:
|
4259 |
msgid "Stripe Top Spacing (PX)"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: widgets/premium-title.php:
|
4263 |
msgid "Stripe Bottom Spacing (PX)"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: widgets/premium-title.php:
|
4267 |
-
msgid "
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: widgets/premium-title.php:
|
4271 |
msgid "Line Color"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: widgets/premium-title.php:
|
4275 |
msgid "Triangle Color"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: widgets/premium-title.php:
|
4279 |
msgid "Stripe Color"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: widgets/premium-title.php:
|
4283 |
msgid "Icon Style"
|
4284 |
msgstr ""
|
4285 |
|
@@ -4287,14 +4347,6 @@ msgstr ""
|
|
4287 |
msgid "Video Type"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: widgets/premium-videobox.php:72
|
4291 |
-
msgid "Vimeo"
|
4292 |
-
msgstr ""
|
4293 |
-
|
4294 |
-
#: widgets/premium-videobox.php:73
|
4295 |
-
msgid "Self Hosted"
|
4296 |
-
msgstr ""
|
4297 |
-
|
4298 |
#: widgets/premium-videobox.php:85 widgets/premium-videobox.php:108
|
4299 |
msgid "Embed URL"
|
4300 |
msgstr ""
|
@@ -4324,210 +4376,210 @@ msgstr ""
|
|
4324 |
msgid "Show/hide player controls"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: widgets/premium-videobox.php:167
|
4328 |
-
msgid "Mute"
|
4329 |
-
msgstr ""
|
4330 |
-
|
4331 |
#: widgets/premium-videobox.php:169
|
4332 |
msgid "This will play the video muted"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
4336 |
msgid "Start Time"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#: widgets/premium-videobox.php:
|
4340 |
msgid "Specify a start time (in seconds)"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
-
#: widgets/premium-videobox.php:
|
4344 |
msgid "End Time"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: widgets/premium-videobox.php:
|
4348 |
msgid "Specify an end time (in seconds)"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: widgets/premium-videobox.php:
|
4352 |
msgid "Suggested Videos From"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: widgets/premium-videobox.php:
|
4356 |
msgid "Current Channel"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: widgets/premium-videobox.php:
|
4360 |
msgid "Any Channel"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: widgets/premium-videobox.php:
|
4364 |
msgid "Aspect Ratio"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: widgets/premium-videobox.php:
|
4368 |
msgid "Choose an image for the video box"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: widgets/premium-videobox.php:
|
4372 |
-
#: widgets/premium-videobox.php:
|
4373 |
msgid "Play Icon"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
-
#: widgets/premium-videobox.php:
|
4377 |
msgid "Horizontal Position (%)"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
-
#: widgets/premium-videobox.php:
|
4381 |
msgid "Vertical Position (%)"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: widgets/premium-videobox.php:
|
4385 |
msgid "Video Text"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
-
#: widgets/premium-videobox.php:
|
4389 |
msgid "Play Video"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: widgets/premium-videobox.php:
|
4393 |
msgid "Hover Animation"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: widgets/premium-videobox.php:
|
4397 |
msgid ""
|
4398 |
"Hover animation works only when you set a background color or image for play "
|
4399 |
"icon"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: widgets/premium-videobox.php:
|
4403 |
msgid "Hover Padding"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: widgets/premium-vscroll.php:
|
4407 |
msgid "Section ID"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: widgets/premium-vscroll.php:
|
4411 |
msgid "Elementor Templates"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: widgets/premium-vscroll.php:
|
4415 |
msgid "Choose which method you prefer to insert sections."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: widgets/premium-vscroll.php:
|
4419 |
msgid "Dots Tooltips"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: widgets/premium-vscroll.php:
|
4423 |
msgid "Shape"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: widgets/premium-vscroll.php:
|
4427 |
msgid "Circles"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: widgets/premium-vscroll.php:
|
4431 |
msgid "Lines"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: widgets/premium-vscroll.php:
|
4435 |
msgid "Dots Tooltips Text"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: widgets/premium-vscroll.php:
|
4439 |
msgid "Add text for each navigation dot separated by ','"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: widgets/premium-vscroll.php:
|
4443 |
msgid "Navigation"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: widgets/premium-vscroll.php:
|
4447 |
msgid "Navigation Menu"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: widgets/premium-vscroll.php:
|
4451 |
msgid "This option works only on the frontend"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: widgets/premium-vscroll.php:
|
4455 |
msgid "Offset Top"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: widgets/premium-vscroll.php:
|
4459 |
msgid "Offset Left"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: widgets/premium-vscroll.php:
|
4463 |
msgid "Offset Right"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: widgets/premium-vscroll.php:
|
4467 |
msgid "List Item"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: widgets/premium-vscroll.php:
|
4471 |
msgid "Menu Items"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: widgets/premium-vscroll.php:
|
4475 |
msgid "Dots Horizontal Position"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: widgets/premium-vscroll.php:
|
4479 |
msgid "Dots Vertical Position"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: widgets/premium-vscroll.php:
|
4483 |
msgid "Scroll Settings"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: widgets/premium-vscroll.php:
|
4487 |
msgid "Scroll Speed"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: widgets/premium-vscroll.php:
|
4491 |
msgid "Set scolling speed in seconds, default: 0.7"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: widgets/premium-vscroll.php:
|
4495 |
msgid "Full Section Scroll"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: widgets/premium-vscroll.php:
|
4499 |
msgid "Save to Browser History"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: widgets/premium-vscroll.php:
|
4503 |
msgid ""
|
4504 |
"Enabling this option will save the current section ID to the browser history"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: widgets/premium-vscroll.php:
|
|
|
|
|
|
|
|
|
4508 |
msgid "Tooltips"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#: widgets/premium-vscroll.php:
|
4512 |
msgid "Tooltips Text Color"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: widgets/premium-vscroll.php:
|
4516 |
msgid "Tooltips Background"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#: widgets/premium-vscroll.php:
|
4520 |
msgid "Dots Color"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: widgets/premium-vscroll.php:
|
4524 |
msgid "Active Dot Color"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#: widgets/premium-vscroll.php:
|
4528 |
msgid "Dots Border Color"
|
4529 |
msgstr ""
|
4530 |
-
|
4531 |
-
#: widgets/premium-vscroll.php:644
|
4532 |
-
msgid "Active"
|
4533 |
-
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2019-09-22 12:52+0200\n"
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
96 |
"\"><span class=\"dashicons dashicons-dismiss\"></span></a></p>"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: admin/includes/dep/maintenance.php:28 admin/includes/version-control.php:88
|
100 |
+
#: admin/settings/modules-setting.php:57
|
101 |
msgid "Rollback to Previous Version"
|
102 |
msgstr ""
|
103 |
|
118 |
msgstr ""
|
119 |
|
120 |
#: admin/includes/plugin-info.php:40 admin/includes/reports.php:34
|
121 |
+
#: admin/includes/version-control.php:74 admin/settings/maps.php:73
|
122 |
+
#: admin/settings/modules-setting.php:172
|
123 |
#, php-format
|
124 |
msgid ""
|
125 |
"Thank you for using %s. This plugin has been developed by %s and we hope you "
|
180 |
msgstr ""
|
181 |
|
182 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
183 |
+
#: admin/settings/maps.php:137 admin/settings/modules-setting.php:660
|
184 |
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
185 |
msgstr ""
|
186 |
|
187 |
#: admin/includes/plugin-info.php:79 admin/includes/reports.php:56
|
188 |
+
#: admin/settings/maps.php:137 admin/settings/modules-setting.php:660
|
189 |
msgid "Click Here to Rate it ★★★★★"
|
190 |
msgstr ""
|
191 |
|
201 |
msgid "Version Control"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin/includes/version-control.php:89
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"Experiencing an issue with Premium Addons for Elementor version %s? Rollback "
|
208 |
"to a previous version before the issue appeared."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/includes/version-control.php:93
|
212 |
msgid "Rollback Version"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: admin/includes/version-control.php:95
|
216 |
+
msgid "Reinstall Version 3.7.2"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: admin/includes/version-control.php:97
|
220 |
msgid "Warning: Please backup your database before making the rollback."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: admin/includes/version-control.php:103
|
224 |
msgid "Become a Beta Tester"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin/includes/version-control.php:104
|
228 |
msgid ""
|
229 |
"Turn-on Beta Tester, to get notified when a new beta version of Premium "
|
230 |
"Addons for Elementor. The Beta version will not install automatically. You "
|
231 |
"always have the option to ignore it."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin/includes/version-control.php:108
|
235 |
msgid "Beta Tester"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin/includes/version-control.php:110
|
239 |
msgid "Check this box to get updates for beta versions"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/includes/version-control.php:111
|
243 |
msgid ""
|
244 |
"Please Note: We do not recommend updating to a beta version on production "
|
245 |
"sites."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin/includes/version-control.php:115 admin/settings/maps.php:134
|
249 |
+
#: admin/settings/modules-setting.php:655
|
250 |
msgid "Save Settings"
|
251 |
msgstr ""
|
252 |
|
254 |
msgid "Google Maps"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: admin/settings/maps.php:87
|
258 |
msgid ""
|
259 |
" Maps Element requires Google API key to be entered below. If you don’t have "
|
260 |
"one, click "
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/settings/maps.php:87
|
264 |
msgid "here"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: admin/settings/maps.php:87
|
268 |
msgid " to get your key."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin/settings/maps.php:92
|
272 |
msgid "Google Maps API Key:"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin/settings/maps.php:100
|
276 |
msgid "Google Maps Localization Language:"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: admin/settings/maps.php:119
|
280 |
msgid "Load Maps API JS File:"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin/settings/maps.php:122
|
284 |
msgid ""
|
285 |
"This will load API JS file if it's not loaded by another theme or plugin"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: admin/settings/maps.php:127
|
289 |
msgid "Load Markers Clustering JS File:"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin/settings/maps.php:130
|
293 |
msgid "This will load the JS file for markers clusters"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/settings/modules-setting.php:42
|
297 |
msgid "Settings"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/settings/modules-setting.php:56
|
301 |
msgid "Are you sure you want to reinstall version "
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin/settings/modules-setting.php:58
|
305 |
msgid "Yes"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin/settings/modules-setting.php:59
|
309 |
msgid "Cancel"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: admin/settings/modules-setting.php:190 widgets/premium-banner.php:33
|
313 |
msgid "Banner"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: admin/settings/modules-setting.php:197 widgets/premium-blog.php:24
|
317 |
msgid "Blog"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin/settings/modules-setting.php:207 widgets/premium-banner.php:314
|
321 |
+
#: widgets/premium-banner.php:678 widgets/premium-button.php:40
|
322 |
+
#: widgets/premium-button.php:58 widgets/premium-button.php:483
|
323 |
#: widgets/premium-contactform.php:182 widgets/premium-contactform.php:439
|
324 |
+
#: widgets/premium-image-button.php:53 widgets/premium-image-button.php:387
|
325 |
+
#: widgets/premium-modalbox.php:250 widgets/premium-pricing-table.php:292
|
326 |
+
#: widgets/premium-pricing-table.php:499 widgets/premium-pricing-table.php:1356
|
327 |
msgid "Button"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin/settings/modules-setting.php:214 widgets/premium-blog.php:649
|
331 |
+
#: widgets/premium-carousel.php:28 widgets/premium-carousel.php:62
|
|
|
332 |
msgid "Carousel"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin/settings/modules-setting.php:224 widgets/premium-contactform.php:29
|
336 |
msgid "Contact Form7"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/settings/modules-setting.php:231 widgets/premium-countdown.php:23
|
340 |
#: widgets/premium-countdown.php:54
|
341 |
msgid "Countdown"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin/settings/modules-setting.php:241 widgets/premium-counter.php:26
|
345 |
+
#: widgets/premium-counter.php:56
|
346 |
msgid "Counter"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin/settings/modules-setting.php:248 widgets/premium-dual-header.php:30
|
350 |
#: widgets/premium-dual-header.php:54
|
351 |
msgid "Dual Heading"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/settings/modules-setting.php:258 widgets/premium-fancytext.php:23
|
355 |
#: widgets/premium-fancytext.php:55 widgets/premium-fancytext.php:85
|
356 |
#: widgets/premium-fancytext.php:339
|
357 |
msgid "Fancy Text"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/settings/modules-setting.php:266 widgets/premium-grid.php:37
|
361 |
+
msgid "Media Grid"
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/settings/modules-setting.php:276 widgets/premium-image-button.php:26
|
365 |
msgid "Image Button"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/settings/modules-setting.php:284 widgets/premium-image-scroll.php:34
|
369 |
msgid "Image Scroll"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin/settings/modules-setting.php:294
|
373 |
#: widgets/premium-image-separator.php:28
|
374 |
msgid "Image Separator"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin/settings/modules-setting.php:301 widgets/premium-maps.php:30
|
378 |
msgid "Maps"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/settings/modules-setting.php:311 widgets/premium-modalbox.php:37
|
382 |
+
#: widgets/premium-modalbox.php:1121
|
383 |
msgid "Modal Box"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/settings/modules-setting.php:319 widgets/premium-person.php:25
|
387 |
+
#: widgets/premium-person.php:129
|
388 |
msgid "Person"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin/settings/modules-setting.php:329 widgets/premium-progressbar.php:23
|
392 |
#: widgets/premium-progressbar.php:238
|
393 |
msgid "Progress Bar"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/settings/modules-setting.php:337 widgets/premium-pricing-table.php:33
|
397 |
+
#: widgets/premium-pricing-table.php:92
|
398 |
msgid "Pricing Table"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/settings/modules-setting.php:347
|
402 |
msgid "Testimonials"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/settings/modules-setting.php:355 widgets/premium-carousel.php:81
|
406 |
+
#: widgets/premium-carousel.php:104
|
407 |
msgid "Templates"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/settings/modules-setting.php:367 widgets/premium-banner.php:266
|
411 |
+
#: widgets/premium-banner.php:554 widgets/premium-blog.php:554
|
412 |
+
#: widgets/premium-blog.php:811 widgets/premium-counter.php:62
|
413 |
+
#: widgets/premium-counter.php:386 widgets/premium-grid.php:495
|
414 |
+
#: widgets/premium-grid.php:1005 widgets/premium-maps.php:202
|
415 |
+
#: widgets/premium-maps.php:389 widgets/premium-modalbox.php:147
|
416 |
+
#: widgets/premium-pricing-table.php:81 widgets/premium-pricing-table.php:468
|
417 |
+
#: widgets/premium-pricing-table.php:690 widgets/premium-progressbar.php:72
|
418 |
+
#: widgets/premium-progressbar.php:342 widgets/premium-title.php:25
|
419 |
+
#: widgets/premium-title.php:49 widgets/premium-title.php:56
|
420 |
+
#: widgets/premium-title.php:257
|
421 |
msgid "Title"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin/settings/modules-setting.php:375 widgets/premium-videobox.php:28
|
425 |
+
#: widgets/premium-videobox.php:61 widgets/premium-videobox.php:392
|
426 |
msgid "Video Box"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/settings/modules-setting.php:387 widgets/premium-vscroll.php:29
|
430 |
msgid "Vertical Scroll"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/settings/modules-setting.php:402
|
434 |
msgid "Premium Alert Box"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/settings/modules-setting.php:410
|
438 |
msgid "Premium Icon Box"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/settings/modules-setting.php:422
|
442 |
msgid "Premium Twitter Feed"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin/settings/modules-setting.php:430
|
446 |
msgid "Premium Instagram Feed"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/settings/modules-setting.php:441
|
450 |
msgid "Premium Flip Box"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/settings/modules-setting.php:449
|
454 |
msgid "Premium Unfold"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/settings/modules-setting.php:460
|
458 |
msgid "Premium Messenger Chat"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/settings/modules-setting.php:468
|
462 |
msgid "Premium Tabs"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin/settings/modules-setting.php:478
|
466 |
msgid "Premium Chart"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/settings/modules-setting.php:486
|
470 |
msgid "Premium Preview Window"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/settings/modules-setting.php:496
|
474 |
msgid "Premium Image Hotspots"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/settings/modules-setting.php:504
|
478 |
msgid "Premium Facebook Reviews"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/settings/modules-setting.php:514
|
482 |
msgid "Premium Image Comparison"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/settings/modules-setting.php:522
|
486 |
msgid "Premium Divider"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/settings/modules-setting.php:533
|
490 |
msgid "Premium Magic Section"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/settings/modules-setting.php:541
|
494 |
msgid "Premium Google Reviews"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: admin/settings/modules-setting.php:551
|
498 |
msgid "Premium Behance Feed"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: admin/settings/modules-setting.php:559
|
502 |
msgid "Premium Tables"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/settings/modules-setting.php:570
|
506 |
msgid "Premium Image Layers"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/settings/modules-setting.php:578
|
510 |
msgid "Premium iHover"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/settings/modules-setting.php:589
|
514 |
msgid "Premium Content Switcher"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: admin/settings/modules-setting.php:597
|
518 |
msgid "Premium Facebook Feed"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/settings/modules-setting.php:608
|
522 |
msgid "Premium Whatsapp Chat"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/settings/modules-setting.php:619
|
526 |
msgid "Premium Section Parallax"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/settings/modules-setting.php:626
|
530 |
msgid "Premium Section Particles"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/settings/modules-setting.php:636
|
534 |
msgid "Premium Section Animated Gradient"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/settings/modules-setting.php:643
|
538 |
msgid "Premium Section Ken Burns"
|
539 |
msgstr ""
|
540 |
|
750 |
msgid "Chinese (traditional)"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/compatibility/class-premium-addons-wpml.php:94
|
754 |
msgid "Banner: Title"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/compatibility/class-premium-addons-wpml.php:99
|
758 |
msgid "Banner: Description"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/compatibility/class-premium-addons-wpml.php:104
|
762 |
msgid "Banner: Button Text"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/compatibility/class-premium-addons-wpml.php:109
|
766 |
msgid "Banner: URL"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/compatibility/class-premium-addons-wpml.php:114
|
770 |
msgid "Banner: Button URL"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/compatibility/class-premium-addons-wpml.php:125
|
774 |
+
#: includes/compatibility/class-premium-addons-wpml.php:318
|
775 |
msgid "Button: Text"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: includes/compatibility/class-premium-addons-wpml.php:130
|
779 |
+
#: includes/compatibility/class-premium-addons-wpml.php:323
|
780 |
msgid "Button: URL"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/compatibility/class-premium-addons-wpml.php:141
|
784 |
msgid "Countdown: Expiration Message"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/compatibility/class-premium-addons-wpml.php:146
|
788 |
msgid "Countdown: Day Singular"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: includes/compatibility/class-premium-addons-wpml.php:151
|
792 |
msgid "Countdown: Day Plural"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/compatibility/class-premium-addons-wpml.php:156
|
796 |
msgid "Countdown: Week Singular"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: includes/compatibility/class-premium-addons-wpml.php:161
|
800 |
msgid "Countdown: Week Plural"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/compatibility/class-premium-addons-wpml.php:166
|
804 |
msgid "Countdown: Month Singular"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: includes/compatibility/class-premium-addons-wpml.php:171
|
808 |
msgid "Countdown: Month Plural"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/compatibility/class-premium-addons-wpml.php:176
|
812 |
msgid "Countdown: Year Singular"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: includes/compatibility/class-premium-addons-wpml.php:181
|
816 |
msgid "Countdown: Year Plural"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/compatibility/class-premium-addons-wpml.php:186
|
820 |
msgid "Countdown: Hour Singular"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/compatibility/class-premium-addons-wpml.php:191
|
824 |
msgid "Countdown: Hour Plural"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/compatibility/class-premium-addons-wpml.php:196
|
828 |
msgid "Countdown: Minute Singular"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/compatibility/class-premium-addons-wpml.php:201
|
832 |
msgid "Countdown: Minute Plural"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/compatibility/class-premium-addons-wpml.php:206
|
836 |
msgid "Countdown: Second Singular"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/compatibility/class-premium-addons-wpml.php:211
|
840 |
msgid "Countdown: Second Plural"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/compatibility/class-premium-addons-wpml.php:216
|
844 |
msgid "Countdown: Direction URL"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/compatibility/class-premium-addons-wpml.php:227
|
848 |
msgid "Counter: Title Text"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: includes/compatibility/class-premium-addons-wpml.php:232
|
852 |
msgid "Counter: Thousands Separator"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/compatibility/class-premium-addons-wpml.php:237
|
856 |
msgid "Counter: Prefix"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/compatibility/class-premium-addons-wpml.php:242
|
860 |
msgid "Counter: Suffix"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: includes/compatibility/class-premium-addons-wpml.php:247
|
864 |
+
#: includes/compatibility/class-premium-addons-wpml.php:268
|
865 |
msgid "Advanced Heading: Heading URL"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/compatibility/class-premium-addons-wpml.php:258
|
869 |
msgid "Dual Heading: First Heading"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/compatibility/class-premium-addons-wpml.php:263
|
873 |
msgid "Dual Heading: Second Heading"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/compatibility/class-premium-addons-wpml.php:284
|
877 |
msgid "Fancy Text: Prefix"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/compatibility/class-premium-addons-wpml.php:289
|
881 |
msgid "Fancy Text: Suffix"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/compatibility/class-premium-addons-wpml.php:294
|
885 |
msgid "Fancy Text: Cursor Text"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/compatibility/class-premium-addons-wpml.php:306
|
889 |
msgid "Grid: Load More Button"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/compatibility/class-premium-addons-wpml.php:334
|
893 |
msgid "Image Scroll: Link Title"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/compatibility/class-premium-addons-wpml.php:339
|
897 |
msgid "Image Scroll: URL"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/compatibility/class-premium-addons-wpml.php:350
|
901 |
msgid "Image Separator: Link Title"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/compatibility/class-premium-addons-wpml.php:355
|
905 |
msgid "Image Separator: URL"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/compatibility/class-premium-addons-wpml.php:366
|
909 |
msgid "Maps: Center Latitude"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: includes/compatibility/class-premium-addons-wpml.php:371
|
913 |
msgid "Maps: Center Longitude"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: includes/compatibility/class-premium-addons-wpml.php:383
|
917 |
msgid "Modal Box: Header Title"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/compatibility/class-premium-addons-wpml.php:388
|
921 |
msgid "Modal Box: Content Text"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/compatibility/class-premium-addons-wpml.php:393
|
925 |
msgid "Modal Box: Close Button"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/compatibility/class-premium-addons-wpml.php:398
|
929 |
msgid "Modal Box: Trigger Button"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/compatibility/class-premium-addons-wpml.php:403
|
933 |
msgid "Modal Box: Trigger Text"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/compatibility/class-premium-addons-wpml.php:414
|
937 |
msgid "Person: Name"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/compatibility/class-premium-addons-wpml.php:419
|
941 |
msgid "Person: Title"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/compatibility/class-premium-addons-wpml.php:424
|
945 |
msgid "Person: Description"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: includes/compatibility/class-premium-addons-wpml.php:435
|
949 |
msgid "Pricing Table: Title"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/compatibility/class-premium-addons-wpml.php:440
|
953 |
msgid "Pricing Table: Slashed Price"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/compatibility/class-premium-addons-wpml.php:445
|
957 |
msgid "Pricing Table: Currency"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/compatibility/class-premium-addons-wpml.php:450
|
961 |
msgid "Pricing Table: Price Value"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/compatibility/class-premium-addons-wpml.php:455
|
965 |
msgid "Pricing Table: Separator"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/compatibility/class-premium-addons-wpml.php:460
|
969 |
msgid "Pricing Table: Duration"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/compatibility/class-premium-addons-wpml.php:465
|
973 |
msgid "Pricing Table: Description"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/compatibility/class-premium-addons-wpml.php:470
|
977 |
msgid "Pricing Table: Button Text"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/compatibility/class-premium-addons-wpml.php:475
|
981 |
msgid "Pricing Table: Button URL"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/compatibility/class-premium-addons-wpml.php:480
|
985 |
msgid "Pricing Table: Badge"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: includes/compatibility/class-premium-addons-wpml.php:492
|
989 |
msgid "Progress Bar: Left Label"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: includes/compatibility/class-premium-addons-wpml.php:504
|
993 |
msgid "Testimonial: Name"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/compatibility/class-premium-addons-wpml.php:509
|
997 |
msgid "Testimonial: Company"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: includes/compatibility/class-premium-addons-wpml.php:514
|
1001 |
msgid "Testimonial: Company Link"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: includes/compatibility/class-premium-addons-wpml.php:519
|
1005 |
msgid "Testimonial: Content"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: includes/compatibility/class-premium-addons-wpml.php:530
|
1009 |
msgid "Title: Text"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/compatibility/class-premium-addons-wpml.php:541
|
1013 |
msgid "Video Box: Link"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: includes/compatibility/class-premium-addons-wpml.php:546
|
1017 |
msgid "Video Box: Description"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: includes/compatibility/class-premium-addons-wpml.php:557
|
1021 |
msgid "Vertical Scroll: Tooltips"
|
1022 |
msgstr ""
|
1023 |
|
1078 |
msgid "Get Pro"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/templates/classes/manager.php:189 widgets/premium-blog.php:1859
|
1082 |
+
#: widgets/premium-grid.php:277
|
1083 |
msgid "All"
|
1084 |
msgstr ""
|
1085 |
|
1097 |
msgstr ""
|
1098 |
|
1099 |
#: includes/templates/scripts/template-modal-header.php:9
|
1100 |
+
#: widgets/premium-modalbox.php:226
|
1101 |
msgid "Close"
|
1102 |
msgstr ""
|
1103 |
|
1118 |
msgid "Loading"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/templates/types/section.php:23 widgets/premium-vscroll.php:102
|
1122 |
+
#: widgets/premium-vscroll.php:124
|
1123 |
msgid "Sections"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
#: widgets/premium-banner.php:60 widgets/premium-banner.php:457
|
1127 |
+
#: widgets/premium-blog.php:63 widgets/premium-blog.php:748
|
1128 |
+
#: widgets/premium-grid.php:921 widgets/premium-image-scroll.php:72
|
1129 |
#: widgets/premium-image-scroll.php:272 widgets/premium-image-separator.php:59
|
1130 |
+
#: widgets/premium-image-separator.php:227 widgets/premium-modalbox.php:251
|
1131 |
+
#: widgets/premium-modalbox.php:432 widgets/premium-person.php:49
|
1132 |
+
#: widgets/premium-person.php:56 widgets/premium-person.php:360
|
1133 |
#: widgets/premium-testimonials.php:57 widgets/premium-testimonials.php:229
|
1134 |
+
#: widgets/premium-videobox.php:264
|
1135 |
msgid "Image"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: widgets/premium-banner.php:66 widgets/premium-counter.php:168
|
1139 |
+
#: widgets/premium-grid.php:358
|
1140 |
msgid "Upload Image"
|
1141 |
msgstr ""
|
1142 |
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: widgets/premium-banner.php:79 widgets/premium-banner.php:355
|
1148 |
+
#: widgets/premium-blog.php:352 widgets/premium-button.php:87
|
1149 |
#: widgets/premium-dual-header.php:119 widgets/premium-dual-header.php:143
|
1150 |
+
#: widgets/premium-grid.php:534 widgets/premium-image-button.php:82
|
1151 |
#: widgets/premium-image-scroll.php:110 widgets/premium-image-separator.php:135
|
1152 |
+
#: widgets/premium-pricing-table.php:329 widgets/premium-testimonials.php:157
|
1153 |
#: widgets/premium-testimonials.php:166 widgets/premium-videobox.php:80
|
1154 |
#: widgets/premium-videobox.php:121
|
1155 |
msgid "Link"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
#: widgets/premium-banner.php:111 widgets/premium-banner.php:342
|
1175 |
+
#: widgets/premium-banner.php:373 widgets/premium-button.php:78
|
1176 |
+
#: widgets/premium-button.php:104 widgets/premium-dual-header.php:131
|
1177 |
+
#: widgets/premium-dual-header.php:161 widgets/premium-grid.php:523
|
1178 |
+
#: widgets/premium-grid.php:547 widgets/premium-image-button.php:73
|
1179 |
+
#: widgets/premium-image-button.php:99 widgets/premium-image-scroll.php:122
|
1180 |
#: widgets/premium-image-scroll.php:148 widgets/premium-image-separator.php:147
|
1181 |
#: widgets/premium-image-separator.php:159
|
1182 |
+
#: widgets/premium-pricing-table.php:318 widgets/premium-pricing-table.php:348
|
1183 |
msgid "Existing Page"
|
1184 |
msgstr ""
|
1185 |
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#: widgets/premium-banner.php:183 widgets/premium-blog.php:69
|
1247 |
+
#: widgets/premium-button.php:118 widgets/premium-grid.php:670
|
1248 |
+
#: widgets/premium-image-button.php:113 widgets/premium-person.php:105
|
1249 |
msgid "Hover Effect"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
#: widgets/premium-banner.php:186 widgets/premium-blog.php:73
|
1253 |
+
#: widgets/premium-blog.php:94 widgets/premium-blog.php:551
|
1254 |
+
#: widgets/premium-button.php:122 widgets/premium-grid.php:674
|
1255 |
+
#: widgets/premium-image-button.php:117 widgets/premium-modalbox.php:89
|
1256 |
+
#: widgets/premium-person.php:108 widgets/premium-progressbar.php:154
|
1257 |
msgid "None"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
#: widgets/premium-banner.php:187 widgets/premium-blog.php:74
|
1261 |
+
#: widgets/premium-grid.php:675 widgets/premium-person.php:109
|
1262 |
msgid "Zoom In"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
#: widgets/premium-banner.php:188 widgets/premium-blog.php:75
|
1266 |
+
#: widgets/premium-grid.php:676 widgets/premium-person.php:110
|
1267 |
msgid "Zoom Out"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: widgets/premium-banner.php:189 widgets/premium-blog.php:76
|
1271 |
+
#: widgets/premium-grid.php:677 widgets/premium-person.php:111
|
1272 |
msgid "Scale"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
#: widgets/premium-banner.php:190 widgets/premium-blog.php:77
|
1276 |
+
#: widgets/premium-grid.php:678 widgets/premium-person.php:112
|
1277 |
msgid "Grayscale"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: widgets/premium-banner.php:191 widgets/premium-blog.php:78
|
1281 |
+
#: widgets/premium-grid.php:679 widgets/premium-person.php:113
|
1282 |
msgid "Blur"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
#: widgets/premium-banner.php:192 widgets/premium-blog.php:79
|
1286 |
+
#: widgets/premium-grid.php:680 widgets/premium-person.php:114
|
1287 |
msgid "Bright"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: widgets/premium-banner.php:193 widgets/premium-blog.php:80
|
1291 |
+
#: widgets/premium-grid.php:681 widgets/premium-person.php:115
|
1292 |
msgid "Sepia"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: widgets/premium-banner.php:201 widgets/premium-contactform.php:130
|
1296 |
+
#: widgets/premium-contactform.php:212 widgets/premium-grid.php:388
|
1297 |
+
#: widgets/premium-grid.php:650 widgets/premium-maps.php:264
|
1298 |
+
#: widgets/premium-person.php:559 widgets/premium-progressbar.php:246
|
1299 |
+
#: widgets/premium-progressbar.php:581
|
1300 |
msgid "Height"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: widgets/premium-banner.php:204 widgets/premium-grid.php:727
|
|
|
1304 |
msgid "Default"
|
1305 |
msgstr ""
|
1306 |
|
1321 |
msgid "Set a minimum height value in pixels"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: widgets/premium-banner.php:228 widgets/premium-pricing-table.php:864
|
1325 |
msgid "Vertical Align"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: widgets/premium-banner.php:234 widgets/premium-button.php:179
|
1329 |
+
#: widgets/premium-counter.php:186 widgets/premium-pricing-table.php:868
|
1330 |
+
#: widgets/premium-testimonials.php:193 widgets/premium-vscroll.php:283
|
1331 |
msgid "Top"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: widgets/premium-banner.php:235 widgets/premium-vscroll.php:284
|
1335 |
msgid "Middle"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: widgets/premium-banner.php:236 widgets/premium-button.php:180
|
1339 |
+
#: widgets/premium-pricing-table.php:876 widgets/premium-vscroll.php:285
|
1340 |
msgid "Bottom"
|
1341 |
msgstr ""
|
1342 |
|
1344 |
msgid "Full"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: widgets/premium-banner.php:248 widgets/premium-carousel.php:314
|
1348 |
msgid "Extra Class"
|
1349 |
msgstr ""
|
1350 |
|
1354 |
"this class for your customizations."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: widgets/premium-banner.php:260 widgets/premium-carousel.php:96
|
1358 |
+
#: widgets/premium-grid.php:999 widgets/premium-modalbox.php:68
|
1359 |
+
#: widgets/premium-modalbox.php:161 widgets/premium-modalbox.php:181
|
1360 |
#: widgets/premium-testimonials.php:208 widgets/premium-testimonials.php:383
|
1361 |
+
#: widgets/premium-vscroll.php:64
|
1362 |
msgid "Content"
|
1363 |
msgstr ""
|
1364 |
|
1371 |
msgstr ""
|
1372 |
|
1373 |
#: widgets/premium-banner.php:277 widgets/premium-dual-header.php:83
|
1374 |
+
#: widgets/premium-person.php:147 widgets/premium-person.php:176
|
1375 |
+
#: widgets/premium-pricing-table.php:102 widgets/premium-testimonials.php:98
|
1376 |
+
#: widgets/premium-testimonials.php:139 widgets/premium-title.php:108
|
1377 |
msgid "HTML Tag"
|
1378 |
msgstr ""
|
1379 |
|
1383 |
msgstr ""
|
1384 |
|
1385 |
#: widgets/premium-banner.php:296 widgets/premium-banner.php:303
|
1386 |
+
#: widgets/premium-banner.php:624 widgets/premium-grid.php:503
|
1387 |
+
#: widgets/premium-grid.php:1035 widgets/premium-maps.php:211
|
1388 |
+
#: widgets/premium-maps.php:473 widgets/premium-person.php:193
|
1389 |
+
#: widgets/premium-person.php:462 widgets/premium-pricing-table.php:269
|
1390 |
+
#: widgets/premium-pricing-table.php:280 widgets/premium-pricing-table.php:492
|
1391 |
+
#: widgets/premium-pricing-table.php:1262 widgets/premium-videobox.php:329
|
1392 |
msgid "Description"
|
1393 |
msgstr ""
|
1394 |
|
1402 |
"definitely fall in love with"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: widgets/premium-banner.php:325 widgets/premium-button.php:64
|
1406 |
+
#: widgets/premium-fancytext.php:109 widgets/premium-image-button.php:59
|
1407 |
+
#: widgets/premium-modalbox.php:225 widgets/premium-modalbox.php:252
|
1408 |
+
#: widgets/premium-modalbox.php:447 widgets/premium-pricing-table.php:91
|
1409 |
+
#: widgets/premium-pricing-table.php:201 widgets/premium-pricing-table.php:303
|
1410 |
+
#: widgets/premium-pricing-table.php:392 widgets/premium-pricing-table.php:1108
|
1411 |
+
#: widgets/premium-pricing-table.php:1272 widgets/premium-videobox.php:342
|
1412 |
msgid "Text"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: widgets/premium-banner.php:338 widgets/premium-button.php:74
|
1416 |
+
#: widgets/premium-dual-header.php:127 widgets/premium-grid.php:519
|
1417 |
+
#: widgets/premium-image-button.php:69 widgets/premium-pricing-table.php:314
|
1418 |
msgid "Link Type"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: widgets/premium-banner.php:341 widgets/premium-button.php:77
|
1422 |
+
#: widgets/premium-dual-header.php:130 widgets/premium-grid.php:522
|
1423 |
+
#: widgets/premium-image-button.php:72 widgets/premium-image-scroll.php:121
|
1424 |
#: widgets/premium-image-scroll.php:134 widgets/premium-image-separator.php:146
|
1425 |
#: widgets/premium-image-separator.php:173
|
1426 |
+
#: widgets/premium-pricing-table.php:317 widgets/premium-videobox.php:140
|
1427 |
msgid "URL"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: widgets/premium-banner.php:389 widgets/premium-blog.php:285
|
1431 |
+
#: widgets/premium-blog.php:485 widgets/premium-blog.php:610
|
1432 |
+
#: widgets/premium-button.php:437 widgets/premium-countdown.php:122
|
1433 |
#: widgets/premium-dual-header.php:177 widgets/premium-fancytext.php:118
|
1434 |
+
#: widgets/premium-image-button.php:341 widgets/premium-maps.php:444
|
1435 |
+
#: widgets/premium-maps.php:526 widgets/premium-modalbox.php:473
|
1436 |
+
#: widgets/premium-person.php:203 widgets/premium-pricing-table.php:241
|
1437 |
+
#: widgets/premium-title.php:125
|
1438 |
msgid "Alignment"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
#: widgets/premium-banner.php:393 widgets/premium-blog.php:289
|
1442 |
+
#: widgets/premium-blog.php:489 widgets/premium-blog.php:614
|
1443 |
+
#: widgets/premium-button.php:181 widgets/premium-button.php:441
|
1444 |
+
#: widgets/premium-countdown.php:126 widgets/premium-counter.php:188
|
1445 |
#: widgets/premium-dual-header.php:181 widgets/premium-fancytext.php:122
|
1446 |
+
#: widgets/premium-fancytext.php:311 widgets/premium-grid.php:224
|
1447 |
+
#: widgets/premium-grid.php:779 widgets/premium-image-button.php:345
|
1448 |
#: widgets/premium-image-separator.php:112 widgets/premium-maps.php:448
|
1449 |
+
#: widgets/premium-maps.php:530 widgets/premium-modalbox.php:477
|
1450 |
+
#: widgets/premium-person.php:207 widgets/premium-pricing-table.php:245
|
1451 |
+
#: widgets/premium-pricing-table.php:444 widgets/premium-progressbar.php:170
|
1452 |
+
#: widgets/premium-title.php:129 widgets/premium-title.php:228
|
1453 |
+
#: widgets/premium-vscroll.php:190 widgets/premium-vscroll.php:271
|
1454 |
msgid "Left"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: widgets/premium-banner.php:397 widgets/premium-blog.php:293
|
1458 |
+
#: widgets/premium-blog.php:493 widgets/premium-blog.php:618
|
1459 |
+
#: widgets/premium-button.php:445 widgets/premium-countdown.php:130
|
1460 |
#: widgets/premium-dual-header.php:185 widgets/premium-fancytext.php:126
|
1461 |
+
#: widgets/premium-fancytext.php:315 widgets/premium-grid.php:228
|
1462 |
+
#: widgets/premium-grid.php:783 widgets/premium-image-button.php:349
|
1463 |
#: widgets/premium-image-separator.php:116 widgets/premium-maps.php:452
|
1464 |
+
#: widgets/premium-maps.php:534 widgets/premium-modalbox.php:481
|
1465 |
+
#: widgets/premium-person.php:211 widgets/premium-pricing-table.php:249
|
1466 |
+
#: widgets/premium-progressbar.php:174 widgets/premium-title.php:133
|
1467 |
+
#: widgets/premium-title.php:232
|
1468 |
msgid "Center"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
#: widgets/premium-banner.php:401 widgets/premium-blog.php:297
|
1472 |
+
#: widgets/premium-blog.php:497 widgets/premium-blog.php:622
|
1473 |
+
#: widgets/premium-button.php:182 widgets/premium-button.php:449
|
1474 |
+
#: widgets/premium-countdown.php:134 widgets/premium-counter.php:187
|
1475 |
#: widgets/premium-dual-header.php:189 widgets/premium-fancytext.php:130
|
1476 |
+
#: widgets/premium-fancytext.php:319 widgets/premium-grid.php:232
|
1477 |
+
#: widgets/premium-grid.php:787 widgets/premium-image-button.php:353
|
1478 |
#: widgets/premium-image-separator.php:120 widgets/premium-maps.php:456
|
1479 |
+
#: widgets/premium-maps.php:538 widgets/premium-modalbox.php:485
|
1480 |
+
#: widgets/premium-person.php:215 widgets/premium-pricing-table.php:253
|
1481 |
+
#: widgets/premium-pricing-table.php:443 widgets/premium-progressbar.php:178
|
1482 |
+
#: widgets/premium-title.php:137 widgets/premium-title.php:236
|
1483 |
+
#: widgets/premium-vscroll.php:191 widgets/premium-vscroll.php:272
|
1484 |
msgid "Right"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: widgets/premium-banner.php:417 widgets/premium-grid.php:803
|
1488 |
msgid "Responsive"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: widgets/premium-banner.php:423 widgets/premium-grid.php:808
|
1492 |
msgid "Responsive Controls"
|
1493 |
msgstr ""
|
1494 |
|
1498 |
"may enable this option which will hide the description text."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: widgets/premium-banner.php:431 widgets/premium-grid.php:815
|
1502 |
msgid "Minimum Size"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: widgets/premium-banner.php:433 widgets/premium-grid.php:817
|
1506 |
msgid "Note: minimum size for extra small screens is 1px."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: widgets/premium-banner.php:443 widgets/premium-grid.php:826
|
1510 |
msgid "Maximum Size"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: widgets/premium-banner.php:445 widgets/premium-grid.php:828
|
1514 |
msgid "Note: maximum size for extra small screens is 767px."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
#: widgets/premium-banner.php:464 widgets/premium-banner.php:727
|
1518 |
+
#: widgets/premium-blog.php:1004 widgets/premium-blog.php:1063
|
1519 |
+
#: widgets/premium-blog.php:1168 widgets/premium-blog.php:1205
|
1520 |
+
#: widgets/premium-blog.php:1344 widgets/premium-blog.php:1465
|
1521 |
+
#: widgets/premium-button.php:537 widgets/premium-button.php:678
|
1522 |
+
#: widgets/premium-carousel.php:626 widgets/premium-carousel.php:680
|
1523 |
+
#: widgets/premium-contactform.php:487 widgets/premium-contactform.php:543
|
1524 |
+
#: widgets/premium-countdown.php:397 widgets/premium-countdown.php:474
|
1525 |
+
#: widgets/premium-counter.php:292 widgets/premium-fancytext.php:372
|
1526 |
+
#: widgets/premium-fancytext.php:430 widgets/premium-fancytext.php:477
|
1527 |
+
#: widgets/premium-grid.php:1185 widgets/premium-grid.php:1279
|
1528 |
+
#: widgets/premium-grid.php:1387 widgets/premium-grid.php:1434
|
1529 |
+
#: widgets/premium-grid.php:1485 widgets/premium-modalbox.php:605
|
1530 |
+
#: widgets/premium-modalbox.php:706 widgets/premium-modalbox.php:793
|
1531 |
+
#: widgets/premium-modalbox.php:855 widgets/premium-modalbox.php:903
|
1532 |
+
#: widgets/premium-modalbox.php:1014 widgets/premium-modalbox.php:1070
|
1533 |
+
#: widgets/premium-pricing-table.php:557 widgets/premium-pricing-table.php:1652
|
1534 |
+
#: widgets/premium-pricing-table.php:1669 widgets/premium-title.php:305
|
1535 |
+
#: widgets/premium-title.php:327 widgets/premium-videobox.php:605
|
1536 |
+
#: widgets/premium-vscroll.php:536 widgets/premium-vscroll.php:630
|
1537 |
+
#: widgets/premium-vscroll.php:689
|
1538 |
msgid "Background Color"
|
1539 |
msgstr ""
|
1540 |
|
1551 |
msgstr ""
|
1552 |
|
1553 |
#: widgets/premium-banner.php:541 widgets/premium-banner.php:755
|
1554 |
+
#: widgets/premium-blog.php:1232 widgets/premium-blog.php:1358
|
1555 |
+
#: widgets/premium-blog.php:1501 widgets/premium-button.php:559
|
1556 |
+
#: widgets/premium-button.php:701 widgets/premium-carousel.php:644
|
1557 |
+
#: widgets/premium-carousel.php:698 widgets/premium-carousel.php:814
|
1558 |
#: widgets/premium-contactform.php:274 widgets/premium-contactform.php:510
|
1559 |
+
#: widgets/premium-countdown.php:438 widgets/premium-counter.php:365
|
1560 |
#: widgets/premium-dual-header.php:353 widgets/premium-dual-header.php:550
|
1561 |
+
#: widgets/premium-grid.php:878 widgets/premium-grid.php:935
|
1562 |
+
#: widgets/premium-grid.php:1084 widgets/premium-grid.php:1207
|
1563 |
+
#: widgets/premium-grid.php:1301 widgets/premium-grid.php:1405
|
1564 |
+
#: widgets/premium-grid.php:1452 widgets/premium-grid.php:1503
|
1565 |
+
#: widgets/premium-grid.php:1631 widgets/premium-grid.php:1719
|
1566 |
+
#: widgets/premium-image-button.php:459 widgets/premium-image-button.php:646
|
1567 |
#: widgets/premium-image-scroll.php:400 widgets/premium-image-scroll.php:435
|
1568 |
+
#: widgets/premium-maps.php:572 widgets/premium-modalbox.php:633
|
1569 |
+
#: widgets/premium-modalbox.php:731 widgets/premium-modalbox.php:873
|
1570 |
+
#: widgets/premium-modalbox.php:921 widgets/premium-modalbox.php:1036
|
1571 |
+
#: widgets/premium-modalbox.php:1092 widgets/premium-modalbox.php:1198
|
1572 |
+
#: widgets/premium-pricing-table.php:594 widgets/premium-pricing-table.php:637
|
1573 |
+
#: widgets/premium-pricing-table.php:1219
|
1574 |
+
#: widgets/premium-pricing-table.php:1433
|
1575 |
+
#: widgets/premium-pricing-table.php:1511
|
1576 |
+
#: widgets/premium-pricing-table.php:1724
|
1577 |
+
#: widgets/premium-pricing-table.php:1802 widgets/premium-progressbar.php:261
|
1578 |
+
#: widgets/premium-testimonials.php:541 widgets/premium-title.php:514
|
1579 |
+
#: widgets/premium-videobox.php:408 widgets/premium-videobox.php:500
|
1580 |
+
#: widgets/premium-vscroll.php:425 widgets/premium-vscroll.php:550
|
1581 |
+
#: widgets/premium-vscroll.php:723
|
1582 |
msgid "Border Radius"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
#: widgets/premium-banner.php:561 widgets/premium-banner.php:631
|
1586 |
+
#: widgets/premium-banner.php:689 widgets/premium-blog.php:818
|
1587 |
+
#: widgets/premium-blog.php:863 widgets/premium-blog.php:909
|
1588 |
+
#: widgets/premium-blog.php:976 widgets/premium-blog.php:1154
|
1589 |
+
#: widgets/premium-blog.php:1191 widgets/premium-blog.php:1278
|
1590 |
+
#: widgets/premium-blog.php:1319 widgets/premium-blog.php:1389
|
1591 |
+
#: widgets/premium-blog.php:1428 widgets/premium-carousel.php:609
|
1592 |
+
#: widgets/premium-carousel.php:663 widgets/premium-carousel.php:751
|
1593 |
#: widgets/premium-countdown.php:371 widgets/premium-countdown.php:459
|
1594 |
+
#: widgets/premium-counter.php:216 widgets/premium-counter.php:393
|
1595 |
+
#: widgets/premium-counter.php:433 widgets/premium-fancytext.php:347
|
1596 |
#: widgets/premium-fancytext.php:405 widgets/premium-fancytext.php:452
|
1597 |
+
#: widgets/premium-grid.php:1012 widgets/premium-grid.php:1043
|
1598 |
+
#: widgets/premium-grid.php:1171 widgets/premium-grid.php:1265
|
1599 |
+
#: widgets/premium-maps.php:397 widgets/premium-maps.php:480
|
1600 |
+
#: widgets/premium-modalbox.php:513 widgets/premium-modalbox.php:773
|
1601 |
+
#: widgets/premium-modalbox.php:845 widgets/premium-modalbox.php:893
|
1602 |
+
#: widgets/premium-modalbox.php:1000 widgets/premium-modalbox.php:1056
|
1603 |
+
#: widgets/premium-person.php:398 widgets/premium-person.php:434
|
1604 |
+
#: widgets/premium-person.php:470 widgets/premium-person.php:506
|
1605 |
+
#: widgets/premium-person.php:547 widgets/premium-pricing-table.php:530
|
1606 |
+
#: widgets/premium-pricing-table.php:701 widgets/premium-pricing-table.php:795
|
1607 |
+
#: widgets/premium-pricing-table.php:839 widgets/premium-pricing-table.php:911
|
1608 |
+
#: widgets/premium-pricing-table.php:956 widgets/premium-pricing-table.php:1008
|
1609 |
+
#: widgets/premium-pricing-table.php:1115
|
1610 |
+
#: widgets/premium-pricing-table.php:1146
|
1611 |
+
#: widgets/premium-pricing-table.php:1280
|
1612 |
+
#: widgets/premium-pricing-table.php:1367 widgets/premium-progressbar.php:350
|
|
|
1613 |
#: widgets/premium-progressbar.php:396 widgets/premium-progressbar.php:509
|
1614 |
#: widgets/premium-progressbar.php:552 widgets/premium-testimonials.php:280
|
1615 |
#: widgets/premium-testimonials.php:305 widgets/premium-testimonials.php:355
|
1616 |
#: widgets/premium-testimonials.php:391 widgets/premium-testimonials.php:447
|
1617 |
+
#: widgets/premium-title.php:265 widgets/premium-videobox.php:440
|
1618 |
msgid "Color"
|
1619 |
msgstr ""
|
1620 |
|
1632 |
|
1633 |
#: widgets/premium-banner.php:614 widgets/premium-banner.php:668
|
1634 |
#: widgets/premium-banner.php:767 widgets/premium-dual-header.php:366
|
1635 |
+
#: widgets/premium-dual-header.php:563 widgets/premium-grid.php:947
|
1636 |
+
#: widgets/premium-grid.php:1096 widgets/premium-grid.php:1219
|
1637 |
+
#: widgets/premium-grid.php:1313 widgets/premium-maps.php:585
|
1638 |
+
#: widgets/premium-modalbox.php:673 widgets/premium-modalbox.php:746
|
1639 |
+
#: widgets/premium-pricing-table.php:1446
|
1640 |
+
#: widgets/premium-pricing-table.php:1524
|
1641 |
+
#: widgets/premium-pricing-table.php:1737
|
1642 |
+
#: widgets/premium-pricing-table.php:1815 widgets/premium-title.php:445
|
1643 |
+
#: widgets/premium-videobox.php:420 widgets/premium-videobox.php:631
|
1644 |
+
#: widgets/premium-vscroll.php:562 widgets/premium-vscroll.php:645
|
1645 |
+
#: widgets/premium-vscroll.php:704
|
1646 |
msgid "Shadow"
|
1647 |
msgstr ""
|
1648 |
|
1650 |
msgid "Inner Border Color"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: widgets/premium-banner.php:703 widgets/premium-blog.php:840
|
1654 |
+
#: widgets/premium-blog.php:886 widgets/premium-blog.php:931
|
1655 |
+
#: widgets/premium-blog.php:990 widgets/premium-blog.php:1399
|
1656 |
+
#: widgets/premium-modalbox.php:530 widgets/premium-person.php:521
|
1657 |
+
#: widgets/premium-videobox.php:454 widgets/premium-videobox.php:582
|
1658 |
msgid "Hover Color"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: widgets/premium-banner.php:737 widgets/premium-blog.php:1018
|
1662 |
msgid "Hover Background Color"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: widgets/premium-banner.php:775 widgets/premium-blog.php:1092
|
1666 |
+
#: widgets/premium-blog.php:1254 widgets/premium-blog.php:1369
|
1667 |
+
#: widgets/premium-blog.php:1531 widgets/premium-button.php:611
|
1668 |
+
#: widgets/premium-button.php:768 widgets/premium-contactform.php:254
|
1669 |
#: widgets/premium-contactform.php:456 widgets/premium-dual-header.php:388
|
1670 |
+
#: widgets/premium-dual-header.php:585 widgets/premium-grid.php:908
|
1671 |
+
#: widgets/premium-grid.php:986 widgets/premium-grid.php:1123
|
1672 |
+
#: widgets/premium-grid.php:1237 widgets/premium-grid.php:1331
|
1673 |
+
#: widgets/premium-grid.php:1537 widgets/premium-grid.php:1661
|
1674 |
+
#: widgets/premium-grid.php:1749 widgets/premium-image-button.php:512
|
1675 |
+
#: widgets/premium-image-button.php:713 widgets/premium-maps.php:432
|
1676 |
#: widgets/premium-maps.php:514 widgets/premium-maps.php:606
|
1677 |
+
#: widgets/premium-modalbox.php:651 widgets/premium-modalbox.php:937
|
1678 |
+
#: widgets/premium-modalbox.php:1108 widgets/premium-modalbox.php:1228
|
1679 |
+
#: widgets/premium-pricing-table.php:571 widgets/premium-pricing-table.php:668
|
1680 |
+
#: widgets/premium-pricing-table.php:755 widgets/premium-pricing-table.php:1083
|
1681 |
+
#: widgets/premium-pricing-table.php:1249
|
1682 |
+
#: widgets/premium-pricing-table.php:1341
|
1683 |
+
#: widgets/premium-pricing-table.php:1466
|
1684 |
+
#: widgets/premium-pricing-table.php:1544
|
1685 |
+
#: widgets/premium-pricing-table.php:1757
|
1686 |
+
#: widgets/premium-pricing-table.php:1835 widgets/premium-testimonials.php:560
|
1687 |
+
#: widgets/premium-title.php:538 widgets/premium-videobox.php:515
|
1688 |
+
#: widgets/premium-videobox.php:619 widgets/premium-vscroll.php:464
|
1689 |
+
#: widgets/premium-vscroll.php:745
|
1690 |
msgid "Padding"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: widgets/premium-blog.php:71 widgets/premium-grid.php:672
|
1694 |
msgid "Choose a hover effect for the image"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: widgets/premium-blog.php:81 widgets/premium-grid.php:682
|
1698 |
+
#: widgets/premium-person.php:116
|
1699 |
msgid "Translate"
|
1700 |
msgstr ""
|
1701 |
|
1723 |
msgid "Squares"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: widgets/premium-blog.php:109 widgets/premium-counter.php:134
|
1727 |
+
#: widgets/premium-grid.php:611 widgets/premium-modalbox.php:240
|
1728 |
+
#: widgets/premium-pricing-table.php:455
|
1729 |
msgid "Display Options"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: widgets/premium-blog.php:115 widgets/premium-grid.php:634
|
1733 |
msgid "Skin"
|
1734 |
msgstr ""
|
1735 |
|
1749 |
msgid "Select a heading tag for the post title."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: widgets/premium-blog.php:146
|
1753 |
+
msgid "Grid"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: widgets/premium-blog.php:154 widgets/premium-grid.php:75
|
1757 |
msgid "Layout"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: widgets/premium-blog.php:157 widgets/premium-grid.php:84
|
1761 |
msgid "Even"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: widgets/premium-blog.php:158 widgets/premium-grid.php:85
|
1765 |
msgid "Masonry"
|
1766 |
msgstr ""
|
1767 |
|
1769 |
msgid "Number of Columns"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: widgets/premium-blog.php:172 widgets/premium-grid.php:156
|
1773 |
msgid "1 Column"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: widgets/premium-blog.php:173 widgets/premium-grid.php:157
|
1777 |
msgid "2 Columns"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: widgets/premium-blog.php:174 widgets/premium-grid.php:158
|
1781 |
msgid "3 Columns"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: widgets/premium-blog.php:175 widgets/premium-grid.php:159
|
1785 |
msgid "4 Columns"
|
1786 |
msgstr ""
|
1787 |
|
1797 |
msgid "Thumbnail Fit"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: widgets/premium-blog.php:228 widgets/premium-grid.php:124
|
1801 |
msgid "Cover"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: widgets/premium-blog.php:229 widgets/premium-grid.php:123
|
1805 |
msgid "Fill"
|
1806 |
msgstr ""
|
1807 |
|
1813 |
msgid "Rows Spacing"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: widgets/premium-blog.php:264
|
1817 |
msgid "Columns Spacing"
|
1818 |
msgstr ""
|
1819 |
|
1847 |
msgid "Excerpt Type"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: widgets/premium-blog.php:351 widgets/premium-carousel.php:130
|
1851 |
+
#: widgets/premium-vscroll.php:480
|
1852 |
msgid "Dots"
|
1853 |
msgstr ""
|
1854 |
|
1892 |
msgid "Display or hide post tags"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: widgets/premium-blog.php:416 widgets/premium-blog.php:947
|
1896 |
msgid "Post Format Icon"
|
1897 |
msgstr ""
|
1898 |
|
1901 |
msgstr ""
|
1902 |
|
1903 |
#: widgets/premium-blog.php:432
|
1904 |
+
msgid "Posts Per Page"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: widgets/premium-blog.php:433
|
1908 |
+
msgid "Choose how many posts do you want to be displayed per page"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: widgets/premium-blog.php:442
|
1912 |
+
msgid "Total Number of Posts"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: widgets/premium-blog.php:454
|
1916 |
+
msgid "Offset Count"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: widgets/premium-blog.php:455
|
1920 |
+
msgid "The index of post to start with"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: widgets/premium-blog.php:464
|
1924 |
msgid "Filter By Category"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: widgets/premium-blog.php:466
|
1928 |
msgid "Get posts for specific category(s)"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: widgets/premium-blog.php:475 widgets/premium-grid.php:256
|
1932 |
msgid "Filter Tabs"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: widgets/premium-blog.php:514
|
1936 |
msgid "Filter By Tag"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: widgets/premium-blog.php:516
|
1940 |
msgid "Get posts for specific tag(s)"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: widgets/premium-blog.php:525
|
1944 |
msgid "Filter By Author"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: widgets/premium-blog.php:527
|
1948 |
msgid "Get posts for specific author(s)"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: widgets/premium-blog.php:536
|
1952 |
msgid "Posts to Exclude"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: widgets/premium-blog.php:538
|
1956 |
msgid "Add post(s) to exclude"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: widgets/premium-blog.php:547
|
1960 |
msgid "Order By"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: widgets/premium-blog.php:552 widgets/premium-videobox.php:84
|
1964 |
msgid "ID"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: widgets/premium-blog.php:553 widgets/premium-testimonials.php:50
|
1968 |
#: widgets/premium-testimonials.php:297
|
1969 |
msgid "Author"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: widgets/premium-blog.php:555 widgets/premium-person.php:136
|
1973 |
+
#: widgets/premium-person.php:389 widgets/premium-testimonials.php:86
|
1974 |
#: widgets/premium-testimonials.php:127
|
1975 |
msgid "Name"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: widgets/premium-blog.php:556
|
1979 |
msgid "Date"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: widgets/premium-blog.php:557
|
1983 |
msgid "Last Modified"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: widgets/premium-blog.php:558
|
1987 |
msgid "Random"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: widgets/premium-blog.php:559
|
1991 |
msgid "Number of Comments"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: widgets/premium-blog.php:567
|
1995 |
msgid "Order"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: widgets/premium-blog.php:571
|
1999 |
msgid "Descending"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: widgets/premium-blog.php:572
|
2003 |
msgid "Ascending"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: widgets/premium-blog.php:580
|
2007 |
msgid "Pagination"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: widgets/premium-blog.php:582
|
2011 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: widgets/premium-blog.php:588
|
2015 |
msgid "Next Page String"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: widgets/premium-blog.php:590
|
2019 |
msgid "Next"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: widgets/premium-blog.php:599
|
2023 |
msgid "Previous Page String"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: widgets/premium-blog.php:601
|
2027 |
msgid "Previous"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: widgets/premium-blog.php:638
|
2031 |
msgid "Links in New Tab"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: widgets/premium-blog.php:640
|
2035 |
msgid "Enable links to be opened in a new tab"
|
2036 |
msgstr ""
|
2037 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2038 |
#: widgets/premium-blog.php:658
|
2039 |
msgid "Enable Carousel"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: widgets/premium-blog.php:665 widgets/premium-carousel.php:253
|
2043 |
msgid "Fade"
|
2044 |
msgstr ""
|
2045 |
|
2047 |
msgid "Auto Play"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: widgets/premium-blog.php:685 widgets/premium-carousel.php:293
|
2051 |
msgid "Autoplay Speed"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: widgets/premium-blog.php:686 widgets/premium-carousel.php:294
|
2055 |
msgid ""
|
2056 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
2057 |
"in milliseconds (ms)"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: widgets/premium-blog.php:698 widgets/premium-carousel.php:715
|
2061 |
+
#: widgets/premium-vscroll.php:348
|
2062 |
+
msgid "Navigation Dots"
|
2063 |
+
msgstr ""
|
2064 |
+
|
2065 |
+
#: widgets/premium-blog.php:708 widgets/premium-carousel.php:428
|
2066 |
+
msgid "Navigation Arrows"
|
2067 |
+
msgstr ""
|
2068 |
+
|
2069 |
+
#: widgets/premium-blog.php:719
|
2070 |
msgid "Arrows Position"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: widgets/premium-blog.php:755
|
2074 |
+
msgid "Plus Sign Color"
|
|
|
|
|
|
|
|
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: widgets/premium-blog.php:769 widgets/premium-grid.php:1255
|
2078 |
+
#: widgets/premium-image-button.php:579 widgets/premium-image-button.php:596
|
2079 |
+
#: widgets/premium-image-button.php:621 widgets/premium-image-scroll.php:292
|
2080 |
msgid "Overlay Color"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: widgets/premium-blog.php:783 widgets/premium-contactform.php:554
|
|
|
2084 |
msgid "Border Color"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: widgets/premium-blog.php:856
|
2088 |
msgid "Meta"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: widgets/premium-blog.php:902
|
2092 |
msgid "Tags"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: widgets/premium-blog.php:957 widgets/premium-blog.php:1333
|
2096 |
+
#: widgets/premium-button.php:421 widgets/premium-carousel.php:558
|
2097 |
+
#: widgets/premium-counter.php:233 widgets/premium-counter.php:255
|
2098 |
+
#: widgets/premium-image-button.php:325 widgets/premium-modalbox.php:824
|
2099 |
+
#: widgets/premium-pricing-table.php:402 widgets/premium-pricing-table.php:421
|
2100 |
+
#: widgets/premium-pricing-table.php:544 widgets/premium-pricing-table.php:1160
|
2101 |
#: widgets/premium-progressbar.php:527 widgets/premium-progressbar.php:568
|
2102 |
#: widgets/premium-testimonials.php:237 widgets/premium-testimonials.php:459
|
2103 |
+
#: widgets/premium-videobox.php:468
|
2104 |
msgid "Size"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: widgets/premium-blog.php:959
|
2108 |
msgid "Choose icon size in (PX, EM)"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: widgets/premium-blog.php:1034
|
2112 |
msgid "Box"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: widgets/premium-blog.php:1041 widgets/premium-button.php:507
|
2116 |
+
#: widgets/premium-button.php:629 widgets/premium-contactform.php:474
|
2117 |
#: widgets/premium-contactform.php:532 widgets/premium-dual-header.php:246
|
2118 |
+
#: widgets/premium-dual-header.php:443 widgets/premium-grid.php:1373
|
2119 |
+
#: widgets/premium-grid.php:1424 widgets/premium-grid.php:1471
|
2120 |
+
#: widgets/premium-grid.php:1577 widgets/premium-image-button.php:411
|
2121 |
+
#: widgets/premium-image-button.php:530 widgets/premium-pricing-table.php:1579
|
2122 |
+
#: widgets/premium-videobox.php:568 widgets/premium-vscroll.php:602
|
2123 |
+
#: widgets/premium-vscroll.php:661
|
2124 |
msgid "Text Color"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: widgets/premium-blog.php:1073 widgets/premium-modalbox.php:1170
|
2128 |
msgid "Content Background Color"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: widgets/premium-blog.php:1103
|
2132 |
msgid "Content Margin"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: widgets/premium-blog.php:1114
|
2136 |
msgid "Content Padding"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: widgets/premium-blog.php:1127
|
2140 |
msgid "Pagination Style"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: widgets/premium-blog.php:1147 widgets/premium-button.php:501
|
2144 |
+
#: widgets/premium-carousel.php:603 widgets/premium-contactform.php:469
|
2145 |
+
#: widgets/premium-grid.php:1165 widgets/premium-grid.php:1367
|
2146 |
+
#: widgets/premium-grid.php:1571 widgets/premium-image-button.php:405
|
2147 |
#: widgets/premium-image-scroll.php:307 widgets/premium-image-scroll.php:386
|
2148 |
+
#: widgets/premium-modalbox.php:596 widgets/premium-modalbox.php:839
|
2149 |
+
#: widgets/premium-modalbox.php:994 widgets/premium-pricing-table.php:1407
|
2150 |
+
#: widgets/premium-pricing-table.php:1698 widgets/premium-vscroll.php:596
|
2151 |
msgid "Normal"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: widgets/premium-blog.php:1184 widgets/premium-button.php:623
|
2155 |
+
#: widgets/premium-carousel.php:657 widgets/premium-contactform.php:527
|
2156 |
+
#: widgets/premium-grid.php:1249 widgets/premium-grid.php:1418
|
2157 |
+
#: widgets/premium-grid.php:1674 widgets/premium-image-button.php:524
|
2158 |
#: widgets/premium-image-scroll.php:206 widgets/premium-image-scroll.php:340
|
2159 |
+
#: widgets/premium-image-scroll.php:421 widgets/premium-modalbox.php:697
|
2160 |
+
#: widgets/premium-modalbox.php:887 widgets/premium-modalbox.php:1050
|
2161 |
+
#: widgets/premium-pricing-table.php:1485
|
2162 |
+
#: widgets/premium-pricing-table.php:1776
|
2163 |
msgid "Hover"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: widgets/premium-blog.php:1243 widgets/premium-blog.php:1520
|
2167 |
+
#: widgets/premium-button.php:601 widgets/premium-button.php:758
|
2168 |
#: widgets/premium-contactform.php:286 widgets/premium-dual-header.php:375
|
2169 |
+
#: widgets/premium-dual-header.php:572 widgets/premium-grid.php:897
|
2170 |
+
#: widgets/premium-grid.php:975 widgets/premium-grid.php:1112
|
2171 |
+
#: widgets/premium-grid.php:1227 widgets/premium-grid.php:1321
|
2172 |
+
#: widgets/premium-grid.php:1526 widgets/premium-grid.php:1650
|
2173 |
+
#: widgets/premium-grid.php:1738 widgets/premium-image-button.php:502
|
2174 |
+
#: widgets/premium-image-button.php:703 widgets/premium-maps.php:420
|
2175 |
#: widgets/premium-maps.php:503 widgets/premium-maps.php:594
|
2176 |
+
#: widgets/premium-modalbox.php:1217 widgets/premium-pricing-table.php:649
|
2177 |
+
#: widgets/premium-pricing-table.php:736 widgets/premium-pricing-table.php:820
|
2178 |
+
#: widgets/premium-pricing-table.php:890 widgets/premium-pricing-table.php:937
|
2179 |
+
#: widgets/premium-pricing-table.php:982 widgets/premium-pricing-table.php:1034
|
2180 |
+
#: widgets/premium-pricing-table.php:1064
|
2181 |
+
#: widgets/premium-pricing-table.php:1231
|
2182 |
+
#: widgets/premium-pricing-table.php:1322
|
2183 |
+
#: widgets/premium-pricing-table.php:1455
|
2184 |
+
#: widgets/premium-pricing-table.php:1533
|
2185 |
+
#: widgets/premium-pricing-table.php:1746
|
2186 |
+
#: widgets/premium-pricing-table.php:1824 widgets/premium-progressbar.php:318
|
2187 |
#: widgets/premium-progressbar.php:376 widgets/premium-progressbar.php:421
|
2188 |
+
#: widgets/premium-testimonials.php:417 widgets/premium-title.php:432
|
2189 |
+
#: widgets/premium-title.php:526 widgets/premium-vscroll.php:450
|
2190 |
+
#: widgets/premium-vscroll.php:734
|
2191 |
msgid "Margin"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: widgets/premium-blog.php:1267
|
2195 |
+
msgid "Carousel Dots"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: widgets/premium-blog.php:1292 widgets/premium-blog.php:1442
|
2199 |
+
#: widgets/premium-carousel.php:768
|
2200 |
+
msgid "Active Color"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: widgets/premium-blog.php:1308
|
2204 |
+
msgid "Carousel Arrows"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: widgets/premium-blog.php:1382
|
2208 |
+
msgid "Read More Text"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: widgets/premium-blog.php:1419 widgets/premium-grid.php:1347
|
2212 |
+
msgid "Filter"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: widgets/premium-blog.php:1479
|
2216 |
msgid "Background Active Color"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: widgets/premium-button.php:67 widgets/premium-image-button.php:62
|
2220 |
msgid "Click Me"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: widgets/premium-button.php:123
|
2224 |
msgid "Slide"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: widgets/premium-button.php:124
|
2228 |
msgid "Shutter"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: widgets/premium-button.php:125
|
2232 |
msgid "Icon Fade"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: widgets/premium-button.php:126 widgets/premium-image-button.php:120
|
2236 |
msgid "Icon Slide"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: widgets/premium-button.php:127
|
2240 |
msgid "In & Out"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: widgets/premium-button.php:135 widgets/premium-button.php:175
|
2244 |
+
#: widgets/premium-image-button.php:129 widgets/premium-image-button.php:147
|
2245 |
+
#: widgets/premium-image-button.php:165
|
2246 |
msgid "Slide Direction"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: widgets/premium-button.php:139 widgets/premium-image-button.php:133
|
2250 |
+
#: widgets/premium-image-button.php:170
|
2251 |
msgid "Top to Bottom"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: widgets/premium-button.php:140 widgets/premium-image-button.php:134
|
2255 |
+
#: widgets/premium-image-button.php:169
|
2256 |
msgid "Bottom to Top"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: widgets/premium-button.php:141 widgets/premium-image-button.php:135
|
2260 |
+
#: widgets/premium-image-button.php:172
|
2261 |
msgid "Right to Left"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: widgets/premium-button.php:142 widgets/premium-image-button.php:136
|
2265 |
+
#: widgets/premium-image-button.php:171
|
2266 |
msgid "Left to Right"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: widgets/premium-button.php:153
|
2270 |
msgid "Shutter Direction"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: widgets/premium-button.php:157
|
2274 |
msgid "Shutter in Horizontal"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: widgets/premium-button.php:158
|
2278 |
msgid "Shutter in Vertical"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: widgets/premium-button.php:159
|
2282 |
msgid "Shutter out Horizontal"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: widgets/premium-button.php:160
|
2286 |
msgid "Shutter out Vertical"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: widgets/premium-button.php:161
|
2290 |
msgid "Scaled Shutter Vertical"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: widgets/premium-button.php:162
|
2294 |
msgid "Scaled Shutter Horizontal"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: widgets/premium-button.php:163
|
2298 |
msgid "Tilted Left"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: widgets/premium-button.php:164
|
2302 |
msgid "Tilted Right"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: widgets/premium-button.php:193 widgets/premium-countdown.php:61
|
2306 |
+
#: widgets/premium-counter.php:277 widgets/premium-title.php:67
|
|
|
2307 |
msgid "Style"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: widgets/premium-button.php:197
|
2311 |
msgid "Radial In"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: widgets/premium-button.php:198
|
2315 |
msgid "Radial Out"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: widgets/premium-button.php:199
|
2319 |
msgid "Rectangle In"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: widgets/premium-button.php:200
|
2323 |
msgid "Rectangle Out"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: widgets/premium-button.php:211 widgets/premium-button.php:222
|
2327 |
+
#: widgets/premium-button.php:239 widgets/premium-carousel.php:725
|
2328 |
+
#: widgets/premium-counter.php:209 widgets/premium-image-button.php:199
|
2329 |
+
#: widgets/premium-image-button.php:210 widgets/premium-image-button.php:227
|
2330 |
+
#: widgets/premium-image-scroll.php:230 widgets/premium-modalbox.php:85
|
2331 |
+
#: widgets/premium-modalbox.php:275 widgets/premium-modalbox.php:286
|
2332 |
+
#: widgets/premium-pricing-table.php:57 widgets/premium-pricing-table.php:210
|
2333 |
+
#: widgets/premium-pricing-table.php:461 widgets/premium-pricing-table.php:519
|
2334 |
+
#: widgets/premium-pricing-table.php:1138 widgets/premium-title.php:85
|
2335 |
msgid "Icon"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: widgets/premium-button.php:216 widgets/premium-image-button.php:204
|
2339 |
+
#: widgets/premium-modalbox.php:280
|
2340 |
msgid "Enable or disable button icon"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: widgets/premium-button.php:255 widgets/premium-counter.php:181
|
2344 |
+
#: widgets/premium-image-button.php:243 widgets/premium-modalbox.php:303
|
2345 |
msgid "Icon Position"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: widgets/premium-button.php:259 widgets/premium-image-button.php:247
|
2349 |
+
#: widgets/premium-modalbox.php:307
|
2350 |
msgid "Before"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: widgets/premium-button.php:260 widgets/premium-image-button.php:248
|
2354 |
+
#: widgets/premium-modalbox.php:308
|
2355 |
msgid "After"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: widgets/premium-button.php:272 widgets/premium-button.php:286
|
2359 |
+
#: widgets/premium-image-button.php:260 widgets/premium-image-button.php:274
|
2360 |
+
#: widgets/premium-image-scroll.php:237 widgets/premium-modalbox.php:116
|
2361 |
+
#: widgets/premium-modalbox.php:320 widgets/premium-title.php:483
|
2362 |
msgid "Icon Size"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: widgets/premium-button.php:300 widgets/premium-button.php:319
|
2366 |
+
#: widgets/premium-button.php:340 widgets/premium-button.php:359
|
2367 |
+
#: widgets/premium-button.php:379 widgets/premium-button.php:400
|
2368 |
+
#: widgets/premium-image-button.php:287 widgets/premium-image-button.php:306
|
2369 |
+
#: widgets/premium-modalbox.php:335 widgets/premium-modalbox.php:354
|
2370 |
+
#: widgets/premium-modalbox.php:375 widgets/premium-modalbox.php:394
|
2371 |
msgid "Icon Spacing"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: widgets/premium-button.php:425 widgets/premium-image-button.php:329
|
2375 |
+
#: widgets/premium-modalbox.php:417
|
2376 |
msgid "Small"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: widgets/premium-button.php:426 widgets/premium-image-button.php:330
|
2380 |
+
#: widgets/premium-modalbox.php:418
|
2381 |
msgid "Medium"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: widgets/premium-button.php:427 widgets/premium-image-button.php:331
|
2385 |
+
#: widgets/premium-modalbox.php:419
|
2386 |
msgid "Large"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: widgets/premium-button.php:428 widgets/premium-countdown.php:65
|
2390 |
+
#: widgets/premium-dual-header.php:107 widgets/premium-image-button.php:332
|
2391 |
+
#: widgets/premium-modalbox.php:420
|
2392 |
msgid "Block"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: widgets/premium-button.php:462 widgets/premium-image-button.php:366
|
2396 |
msgid "onclick Event"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: widgets/premium-button.php:470 widgets/premium-image-button.php:374
|
2400 |
msgid "Example: myFunction();"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: widgets/premium-button.php:520 widgets/premium-button.php:645
|
2404 |
+
#: widgets/premium-button.php:662 widgets/premium-image-button.php:424
|
2405 |
+
#: widgets/premium-image-button.php:546 widgets/premium-image-button.php:563
|
2406 |
+
#: widgets/premium-image-scroll.php:279 widgets/premium-modalbox.php:547
|
2407 |
+
#: widgets/premium-title.php:468
|
2408 |
+
msgid "Icon Color"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: widgets/premium-button.php:571 widgets/premium-button.php:713
|
2412 |
+
#: widgets/premium-button.php:726 widgets/premium-image-button.php:471
|
2413 |
+
#: widgets/premium-image-button.php:658 widgets/premium-image-button.php:671
|
2414 |
+
#: widgets/premium-title.php:551
|
2415 |
msgid "Icon Shadow"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: widgets/premium-button.php:584 widgets/premium-button.php:738
|
2419 |
+
#: widgets/premium-image-button.php:485 widgets/premium-image-button.php:683
|
2420 |
msgid "Text Shadow"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: widgets/premium-button.php:593 widgets/premium-button.php:750
|
2424 |
+
#: widgets/premium-image-button.php:494 widgets/premium-image-button.php:695
|
2425 |
msgid "Button Shadow"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: widgets/premium-carousel.php:68 widgets/premium-vscroll.php:78
|
2429 |
msgid "Content Type"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: widgets/premium-carousel.php:69
|
2433 |
msgid "How templates are selected"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: widgets/premium-carousel.php:72
|
2437 |
msgid "Select Field"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: widgets/premium-carousel.php:73
|
2441 |
msgid "Repeater"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: widgets/premium-carousel.php:82
|
2445 |
msgid ""
|
2446 |
"Slider content is a template which you can choose from Elementor library. "
|
2447 |
"Each template will be a slider content"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: widgets/premium-carousel.php:117 widgets/premium-grid.php:416
|
2451 |
+
#: widgets/premium-progressbar.php:203
|
2452 |
msgid "Type"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: widgets/premium-carousel.php:118
|
2456 |
msgid "Set a navigation type"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: widgets/premium-carousel.php:121 widgets/premium-image-button.php:187
|
2460 |
#: widgets/premium-image-scroll.php:184
|
2461 |
msgid "Horizontal"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: widgets/premium-carousel.php:122 widgets/premium-image-button.php:188
|
2465 |
#: widgets/premium-image-scroll.php:185
|
2466 |
msgid "Vertical"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: widgets/premium-carousel.php:131
|
2470 |
msgid "Enable or disable navigation dots"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: widgets/premium-carousel.php:140 widgets/premium-grid.php:1142
|
2474 |
+
#: widgets/premium-pricing-table.php:440 widgets/premium-vscroll.php:187
|
2475 |
msgid "Position"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: widgets/premium-carousel.php:144
|
2479 |
msgid "Below Slides"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: widgets/premium-carousel.php:145
|
2483 |
msgid "On Slides"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: widgets/premium-carousel.php:155
|
2487 |
msgid "Horizontal Offset"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: widgets/premium-carousel.php:170
|
2491 |
msgid "Vertical Offset"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: widgets/premium-carousel.php:189
|
2495 |
msgid "Arrows"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: widgets/premium-carousel.php:190
|
2499 |
msgid "Enable or disable navigation arrows"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: widgets/premium-carousel.php:199
|
2503 |
msgid "Appearance"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: widgets/premium-carousel.php:204
|
2507 |
msgid "All visible"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: widgets/premium-carousel.php:205
|
2511 |
msgid "One at a time"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: widgets/premium-carousel.php:212
|
2515 |
msgid "Desktop Slides"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: widgets/premium-carousel.php:220
|
2519 |
msgid "Tabs Slides"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: widgets/premium-carousel.php:228
|
2523 |
msgid "Mobile Slides"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: widgets/premium-carousel.php:238
|
2527 |
msgid "Slides' Settings"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: widgets/premium-carousel.php:244
|
2531 |
msgid "Infinite Loop"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: widgets/premium-carousel.php:246
|
2535 |
msgid "Restart the slider automatically as it passes the last slide"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: widgets/premium-carousel.php:255
|
2539 |
msgid "Enable fade transition between slides"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: widgets/premium-carousel.php:264
|
2543 |
msgid "Zoom Effect"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: widgets/premium-carousel.php:275
|
2547 |
msgid "Transition Speed"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: widgets/premium-carousel.php:276
|
2551 |
msgid ""
|
2552 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: widgets/premium-carousel.php:284
|
2556 |
msgid "Autoplay Slides"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: widgets/premium-carousel.php:285
|
2560 |
msgid "Slide will start automatically"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: widgets/premium-carousel.php:306 widgets/premium-counter.php:198
|
2564 |
msgid "Animations"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: widgets/premium-carousel.php:316
|
2568 |
msgid ""
|
2569 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2570 |
"this class for your customizations."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: widgets/premium-carousel.php:324 widgets/premium-fancytext.php:145
|
2574 |
msgid "Additional Settings"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: widgets/premium-carousel.php:330
|
2578 |
msgid "Draggable Effect"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: widgets/premium-carousel.php:331
|
2582 |
msgid "Allow the slides to be dragged by mouse click"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: widgets/premium-carousel.php:339
|
2586 |
msgid "Touch Move"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: widgets/premium-carousel.php:340
|
2590 |
msgid "Enable slide moving with touch"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: widgets/premium-carousel.php:348 widgets/premium-grid.php:767
|
2594 |
msgid "RTL Mode"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: widgets/premium-carousel.php:349
|
2598 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: widgets/premium-carousel.php:359
|
2602 |
msgid "Adaptive Height"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: widgets/premium-carousel.php:360
|
2606 |
msgid ""
|
2607 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2608 |
"space gaps"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: widgets/premium-carousel.php:367 widgets/premium-fancytext.php:295
|
2612 |
msgid "Pause on Hover"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: widgets/premium-carousel.php:368
|
2616 |
msgid "Pause the slider when mouse hover"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: widgets/premium-carousel.php:375
|
2620 |
msgid "Center Mode"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: widgets/premium-carousel.php:376
|
2624 |
msgid ""
|
2625 |
"Center mode enables a centered view with partial next/previous slides. "
|
2626 |
"Animations and all visible scroll type doesn't work with this mode"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: widgets/premium-carousel.php:383
|
2630 |
msgid "Slides' Spacing"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: widgets/premium-carousel.php:384
|
2634 |
msgid "Set a spacing value in pixels (px)"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: widgets/premium-carousel.php:392
|
2638 |
msgid "Tablet Breakpoint"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: widgets/premium-carousel.php:393
|
2642 |
msgid ""
|
2643 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
2644 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: widgets/premium-carousel.php:401
|
2648 |
msgid "Mobile Breakpoint"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: widgets/premium-carousel.php:402
|
2652 |
msgid ""
|
2653 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
2654 |
"mobile layout will appear (Default: 768px)."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: widgets/premium-carousel.php:412 widgets/premium-grid.php:839
|
2658 |
msgid "Helpful Documentations"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: widgets/premium-carousel.php:419
|
2662 |
#, php-format
|
2663 |
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: widgets/premium-carousel.php:438
|
|
|
|
|
|
|
|
|
2667 |
msgid "Right Icon"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: widgets/premium-carousel.php:468
|
2671 |
msgid "Bottom Icon"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: widgets/premium-carousel.php:498
|
2675 |
msgid "Top Icon"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: widgets/premium-carousel.php:528
|
2679 |
msgid "Left Icon"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: widgets/premium-carousel.php:580
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2683 |
msgid "Position (PX)"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: widgets/premium-carousel.php:785
|
|
|
|
|
|
|
|
|
2687 |
msgid "Ripple Effect"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: widgets/premium-carousel.php:786
|
2691 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: widgets/premium-carousel.php:796
|
2695 |
msgid "Ripple Color"
|
2696 |
msgstr ""
|
2697 |
|
2708 |
msgstr ""
|
2709 |
|
2710 |
#: widgets/premium-contactform.php:72 widgets/premium-contactform.php:189
|
2711 |
+
#: widgets/premium-grid.php:368 widgets/premium-modalbox.php:970
|
2712 |
+
#: widgets/premium-modalbox.php:1128 widgets/premium-person.php:77
|
2713 |
msgid "Width"
|
2714 |
msgstr ""
|
2715 |
|
2939 |
msgid "Spacing in Between"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: widgets/premium-counter.php:65
|
2943 |
msgid "Enter title for stats counter block"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: widgets/premium-counter.php:71
|
2947 |
+
msgid "Starting Number"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: widgets/premium-counter.php:79
|
2951 |
+
msgid "Ending Number"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: widgets/premium-counter.php:87
|
2955 |
msgid "Thousands Separator"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: widgets/premium-counter.php:90
|
2959 |
msgid "Separator converts 125000 into 125,000"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: widgets/premium-counter.php:97
|
2963 |
msgid "Digits After Decimal Point"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: widgets/premium-counter.php:105
|
2967 |
msgid "Value Prefix"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: widgets/premium-counter.php:108
|
2971 |
msgid "Enter prefix for counter value"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: widgets/premium-counter.php:114
|
2975 |
msgid "Value suffix"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: widgets/premium-counter.php:117
|
2979 |
msgid "Enter suffix for counter value"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: widgets/premium-counter.php:123
|
2983 |
msgid "Rolling Time"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: widgets/premium-counter.php:125
|
2987 |
msgid "How long should it take to complete the digit?"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: widgets/premium-counter.php:140
|
2991 |
msgid "Icon Type"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: widgets/premium-counter.php:142
|
2995 |
msgid "Use a font awesome icon or upload a custom image"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: widgets/premium-counter.php:144 widgets/premium-modalbox.php:90
|
2999 |
+
#: widgets/premium-modalbox.php:103
|
3000 |
msgid "Font Awesome"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: widgets/premium-counter.php:145 widgets/premium-modalbox.php:91
|
3004 |
+
#: widgets/premium-modalbox.php:131
|
3005 |
msgid "Custom Image"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: widgets/premium-counter.php:153 widgets/premium-pricing-table.php:66
|
3009 |
msgid "Select an Icon"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: widgets/premium-counter.php:183
|
3013 |
msgid "Choose a position for your icon"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: widgets/premium-counter.php:279
|
3017 |
msgid ""
|
3018 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
3019 |
"create your own with various options"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: widgets/premium-counter.php:281
|
3023 |
msgid "Simple"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: widgets/premium-counter.php:282
|
3027 |
+
msgid "Circle Background"
|
3028 |
+
msgstr ""
|
3029 |
+
|
3030 |
+
#: widgets/premium-counter.php:283
|
3031 |
+
msgid "Square Background"
|
3032 |
+
msgstr ""
|
3033 |
+
|
3034 |
+
#: widgets/premium-counter.php:284
|
3035 |
msgid "Design Your Own"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: widgets/premium-counter.php:309
|
3039 |
msgid "Background size"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: widgets/premium-counter.php:331
|
3043 |
msgid "Vertical Alignment"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: widgets/premium-counter.php:426 widgets/premium-progressbar.php:193
|
3047 |
msgid "Value"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: widgets/premium-counter.php:459 widgets/premium-fancytext.php:444
|
3051 |
msgid "Prefix & Suffix"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: widgets/premium-counter.php:466
|
3055 |
msgid "Prefix Color"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: widgets/premium-counter.php:490
|
3059 |
msgid "Suffix Color"
|
3060 |
msgstr ""
|
3061 |
|
3201 |
"5 seconds before backspace effect."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: widgets/premium-fancytext.php:218 widgets/premium-videobox.php:185
|
3205 |
msgid "Loop"
|
3206 |
msgstr ""
|
3207 |
|
3250 |
msgid "Cursor Text"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: widgets/premium-grid.php:81
|
3254 |
msgid "Grid Layout"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: widgets/premium-grid.php:86
|
3258 |
msgid "Metro"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: widgets/premium-grid.php:94
|
3262 |
+
msgid "Minimum Height"
|
|
|
|
|
|
|
|
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: widgets/premium-grid.php:120
|
3266 |
msgid "Images Fit"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: widgets/premium-grid.php:149
|
3270 |
msgid "Columns"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: widgets/premium-grid.php:160
|
3274 |
msgid "5 Columns"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: widgets/premium-grid.php:161
|
3278 |
msgid "6 Columns"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: widgets/premium-grid.php:162
|
3282 |
msgid "12 Columns"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: widgets/premium-grid.php:176 widgets/premium-grid.php:1550
|
3286 |
msgid "Load More Button"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: widgets/premium-grid.php:177
|
3290 |
msgid "Requires number of images larger than 6"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: widgets/premium-grid.php:184 widgets/premium-modalbox.php:262
|
3294 |
msgid "Button Text"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: widgets/premium-grid.php:186
|
3298 |
msgid "Load More"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: widgets/premium-grid.php:196
|
3302 |
msgid "Minimum Number of Images"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: widgets/premium-grid.php:198
|
3306 |
msgid "Set the minimum number of images before showing load more button"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: widgets/premium-grid.php:208
|
3310 |
msgid "Images to Show"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: widgets/premium-grid.php:210
|
3314 |
msgid "Set the minimum number of images to show with each click"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: widgets/premium-grid.php:220
|
3318 |
msgid "Button Alignment"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: widgets/premium-grid.php:250 widgets/premium-grid.php:310
|
3322 |
msgid "Categories"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: widgets/premium-grid.php:266
|
3326 |
msgid "First Category"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: widgets/premium-grid.php:275
|
3330 |
msgid "First Category Label"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: widgets/premium-grid.php:289 widgets/premium-grid.php:511
|
3334 |
msgid "Category"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: widgets/premium-grid.php:297
|
3338 |
msgid "Rotation Degrees"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: widgets/premium-grid.php:299
|
3342 |
msgid "Set rotation value in degrees"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: widgets/premium-grid.php:328
|
3346 |
msgid "Active Category Index"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: widgets/premium-grid.php:330
|
3350 |
msgid "Put the index of the default active category, default is 1"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: widgets/premium-grid.php:339
|
3354 |
+
msgid "Shuffle Images on Filter Click"
|
3355 |
+
msgstr ""
|
3356 |
+
|
3357 |
+
#: widgets/premium-grid.php:351
|
3358 |
+
msgid "Images/Videos"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: widgets/premium-grid.php:369 widgets/premium-grid.php:389
|
3362 |
msgid "Works only when layout set to 'Metro'"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: widgets/premium-grid.php:408
|
3366 |
+
msgid "Video"
|
3367 |
+
msgstr ""
|
3368 |
+
|
3369 |
+
#: widgets/premium-grid.php:419
|
3370 |
+
msgid "YouTube"
|
3371 |
+
msgstr ""
|
3372 |
+
|
3373 |
+
#: widgets/premium-grid.php:420 widgets/premium-videobox.php:72
|
3374 |
+
msgid "Vimeo"
|
3375 |
+
msgstr ""
|
3376 |
+
|
3377 |
+
#: widgets/premium-grid.php:421 widgets/premium-videobox.php:73
|
3378 |
+
msgid "Self Hosted"
|
3379 |
+
msgstr ""
|
3380 |
+
|
3381 |
+
#: widgets/premium-grid.php:433
|
3382 |
+
msgid "Video URL"
|
3383 |
+
msgstr ""
|
3384 |
+
|
3385 |
+
#: widgets/premium-grid.php:452
|
3386 |
+
msgid "Select Video"
|
3387 |
+
msgstr ""
|
3388 |
+
|
3389 |
+
#: widgets/premium-grid.php:471 widgets/premium-maps.php:244
|
3390 |
+
msgid "Controls"
|
3391 |
+
msgstr ""
|
3392 |
+
|
3393 |
+
#: widgets/premium-grid.php:484 widgets/premium-videobox.php:167
|
3394 |
+
msgid "Mute"
|
3395 |
+
msgstr ""
|
3396 |
+
|
3397 |
+
#: widgets/premium-grid.php:513
|
3398 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: widgets/premium-grid.php:563
|
3402 |
msgid "Whole Image Link"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: widgets/premium-grid.php:573
|
3406 |
msgid "Whole Image Lightbox"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: widgets/premium-grid.php:583
|
3410 |
+
msgid "Images"
|
3411 |
+
msgstr ""
|
3412 |
+
|
3413 |
+
#: widgets/premium-grid.php:602
|
3414 |
+
msgid "Shuffle Images on Page Load"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: widgets/premium-grid.php:617
|
3418 |
msgid "Image Gap"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: widgets/premium-grid.php:636
|
3422 |
msgid "Choose a layout style for the gallery"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: widgets/premium-grid.php:638 widgets/premium-title.php:71
|
3426 |
msgid "Style 1"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: widgets/premium-grid.php:639 widgets/premium-title.php:72
|
3430 |
msgid "Style 2"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: widgets/premium-grid.php:640 widgets/premium-title.php:73
|
3434 |
msgid "Style 3"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: widgets/premium-grid.php:691
|
3438 |
msgid "Lightbox"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: widgets/premium-grid.php:700
|
3442 |
+
msgid "Lightbox Style"
|
3443 |
+
msgstr ""
|
3444 |
+
|
3445 |
+
#: widgets/premium-grid.php:704
|
3446 |
+
msgid "PrettyPhoto"
|
3447 |
+
msgstr ""
|
3448 |
+
|
3449 |
+
#: widgets/premium-grid.php:705
|
3450 |
+
msgid "Elementor"
|
3451 |
+
msgstr ""
|
3452 |
+
|
3453 |
+
#: widgets/premium-grid.php:706
|
3454 |
+
msgid "Other Lightbox Plugin"
|
3455 |
+
msgstr ""
|
3456 |
+
|
3457 |
+
#: widgets/premium-grid.php:716
|
3458 |
+
msgid "Please note Elementor lightbox style is always applied on videos."
|
3459 |
+
msgstr ""
|
3460 |
+
|
3461 |
+
#: widgets/premium-grid.php:724
|
3462 |
msgid "Lightbox Theme"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: widgets/premium-grid.php:728
|
3466 |
msgid "Light Rounded"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: widgets/premium-grid.php:729
|
3470 |
msgid "Dark Rounded"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: widgets/premium-grid.php:730
|
3474 |
msgid "Light Square"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: widgets/premium-grid.php:731
|
3478 |
msgid "Dark Square"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: widgets/premium-grid.php:732 widgets/premium-person.php:239
|
3482 |
msgid "Facebook"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: widgets/premium-grid.php:744
|
3486 |
msgid "Overlay Gallery Images"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: widgets/premium-grid.php:755
|
3490 |
+
msgid "Always Show Play Icon"
|
3491 |
+
msgstr ""
|
3492 |
+
|
3493 |
+
#: widgets/premium-grid.php:768
|
3494 |
msgid ""
|
3495 |
"This option moves the origin of the grid to the right side. Useful for RTL "
|
3496 |
"direction sites"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: widgets/premium-grid.php:775
|
3500 |
msgid "Content Alignment"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: widgets/premium-grid.php:810
|
3504 |
msgid ""
|
3505 |
"If the content text is not suiting well on specific screen sizes, you may "
|
3506 |
"enable this option which will hide the description text."
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: widgets/premium-grid.php:845
|
3510 |
#, php-format
|
3511 |
msgid "%1$s Getting Started » %2$s"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: widgets/premium-grid.php:855
|
3515 |
msgid "General"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: widgets/premium-grid.php:967 widgets/premium-person.php:378
|
3519 |
msgid "Hover CSS Filters"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: widgets/premium-grid.php:1136
|
3523 |
msgid "Icons"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: widgets/premium-grid.php:1465 widgets/premium-vscroll.php:655
|
3527 |
+
msgid "Active"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: widgets/premium-grid.php:1592
|
3531 |
msgid "Spinner Color"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: widgets/premium-grid.php:1680 widgets/premium-vscroll.php:616
|
3535 |
+
#: widgets/premium-vscroll.php:675
|
3536 |
msgid "Text Hover Color"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: widgets/premium-image-button.php:118
|
3540 |
msgid "Background Slide"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: widgets/premium-image-button.php:119
|
3544 |
msgid "Diagonal Slide"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: widgets/premium-image-button.php:121
|
3548 |
msgid "Overlap"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: widgets/premium-image-button.php:151
|
3552 |
msgid "Bottom Left to Top Right"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: widgets/premium-image-button.php:152
|
3556 |
msgid "Top Right to Bottom Left"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: widgets/premium-image-button.php:153
|
3560 |
msgid "Top Left to Bottom Right"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: widgets/premium-image-button.php:154
|
3564 |
msgid "Bottom Right to Top Left"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: widgets/premium-image-button.php:183
|
3568 |
msgid "Overlap Direction"
|
3569 |
msgstr ""
|
3570 |
|
3600 |
msgid "Reverse Direction"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: widgets/premium-image-scroll.php:203 widgets/premium-modalbox.php:503
|
3604 |
msgid "Trigger"
|
3605 |
msgstr ""
|
3606 |
|
3616 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: widgets/premium-image-scroll.php:260 widgets/premium-videobox.php:245
|
3620 |
+
#: widgets/premium-videobox.php:255
|
3621 |
msgid "Overlay"
|
3622 |
msgstr ""
|
3623 |
|
3633 |
msgid "Opacity"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: widgets/premium-image-scroll.php:377 widgets/premium-pricing-table.php:610
|
3637 |
+
#: widgets/premium-pricing-table.php:1046
|
3638 |
+
#: widgets/premium-pricing-table.php:1193
|
3639 |
+
#: widgets/premium-pricing-table.php:1304 widgets/premium-testimonials.php:517
|
3640 |
+
#: widgets/premium-vscroll.php:530
|
3641 |
msgid "Container"
|
3642 |
msgstr ""
|
3643 |
|
3668 |
msgstr ""
|
3669 |
|
3670 |
#: widgets/premium-image-separator.php:204
|
3671 |
+
#: widgets/premium-pricing-table.php:363 widgets/premium-testimonials.php:186
|
3672 |
msgid "Link Target"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
#: widgets/premium-image-separator.php:206
|
3676 |
+
#: widgets/premium-pricing-table.php:365
|
3677 |
msgid " Where would you like the link be opened?"
|
3678 |
msgstr ""
|
3679 |
|
3749 |
msgid "Add an optional description to your map pin"
|
3750 |
msgstr ""
|
3751 |
|
|
|
|
|
|
|
|
|
3752 |
#: widgets/premium-maps.php:250
|
3753 |
msgid "Map Type"
|
3754 |
msgstr ""
|
3829 |
msgid "Enable or disable modal header"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: widgets/premium-modalbox.php:87
|
3833 |
msgid "Use font awesome icon or upload a custom image"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: widgets/premium-modalbox.php:150
|
3837 |
msgid "Add a title for the modal box"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: widgets/premium-modalbox.php:168
|
3841 |
msgid "Content to Show"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: widgets/premium-modalbox.php:171
|
3845 |
msgid "Text Editor"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: widgets/premium-modalbox.php:172 widgets/premium-vscroll.php:93
|
3849 |
msgid "Elementor Template"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: widgets/premium-modalbox.php:182
|
3853 |
msgid "Modal content is a template which you can choose from Elementor library"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: widgets/premium-modalbox.php:206 widgets/premium-modalbox.php:813
|
3857 |
msgid "Upper Close Button"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: widgets/premium-modalbox.php:217 widgets/premium-modalbox.php:950
|
3861 |
msgid "Lower Close Button"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: widgets/premium-modalbox.php:246
|
3865 |
msgid "Display Style"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: widgets/premium-modalbox.php:248
|
3869 |
msgid "Choose where would you like the modal box appear on"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: widgets/premium-modalbox.php:253
|
3873 |
msgid "Page Load"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: widgets/premium-modalbox.php:263 widgets/premium-modalbox.php:451
|
3877 |
msgid "Premium Modal Box"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: widgets/premium-modalbox.php:414
|
3881 |
msgid "Button Size"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: widgets/premium-modalbox.php:460
|
3885 |
msgid "Delay in Popup Display (Sec)"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: widgets/premium-modalbox.php:462
|
3889 |
msgid ""
|
3890 |
"When should the popup appear during page load? The value are counted in "
|
3891 |
"seconds"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: widgets/premium-modalbox.php:564
|
3895 |
msgid "Icon Hover Color"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: widgets/premium-modalbox.php:583 widgets/premium-modalbox.php:785
|
3899 |
+
#: widgets/premium-modalbox.php:961 widgets/premium-pricing-table.php:855
|
3900 |
+
#: widgets/premium-pricing-table.php:928 widgets/premium-pricing-table.php:973
|
3901 |
+
#: widgets/premium-pricing-table.php:1025
|
3902 |
msgid "Typography"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
+
#: widgets/premium-modalbox.php:763
|
3906 |
msgid "Heading"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: widgets/premium-modalbox.php:1143
|
3910 |
msgid "Max Height"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: widgets/premium-modalbox.php:1180
|
3914 |
msgid "Footer Background Color"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: widgets/premium-person.php:79
|
3918 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: widgets/premium-person.php:165 widgets/premium-person.php:426
|
|
|
|
|
|
|
|
|
3922 |
msgid "Job Title"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: widgets/premium-person.php:168
|
3926 |
msgid "Senior Developer"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: widgets/premium-person.php:196
|
3930 |
msgid ""
|
3931 |
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ullamcorper "
|
3932 |
"nulla non metus auctor fringilla"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: widgets/premium-person.php:232 widgets/premium-person.php:498
|
3936 |
msgid "Social Icons"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: widgets/premium-person.php:250
|
3940 |
msgid "Twitter"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: widgets/premium-person.php:261
|
3944 |
msgid "LinkedIn"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: widgets/premium-person.php:272
|
3948 |
msgid "Google+"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: widgets/premium-person.php:283 widgets/premium-videobox.php:71
|
3952 |
msgid "Youtube"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: widgets/premium-person.php:293
|
3956 |
msgid "Instagram"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: widgets/premium-person.php:303
|
3960 |
msgid "Skype"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: widgets/premium-person.php:313
|
3964 |
msgid "Pinterest"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: widgets/premium-person.php:324
|
3968 |
msgid "Dribbble"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: widgets/premium-person.php:335
|
3972 |
msgid "Behance"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: widgets/premium-person.php:346
|
3976 |
msgid "Email Address"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: widgets/premium-person.php:539
|
3980 |
msgid "Content Background"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: widgets/premium-pricing-table.php:103
|
3984 |
msgid "Select HTML tag for the title"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: widgets/premium-pricing-table.php:124 widgets/premium-pricing-table.php:155
|
3988 |
+
#: widgets/premium-pricing-table.php:476 widgets/premium-pricing-table.php:777
|
3989 |
+
#: widgets/premium-pricing-table.php:903
|
3990 |
msgid "Price"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: widgets/premium-pricing-table.php:134 widgets/premium-pricing-table.php:787
|
3994 |
msgid "Slashed Price"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: widgets/premium-pricing-table.php:144 widgets/premium-pricing-table.php:831
|
3998 |
msgid "Currency"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: widgets/premium-pricing-table.php:166 widgets/premium-pricing-table.php:948
|
4002 |
msgid "Divider"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: widgets/premium-pricing-table.php:177 widgets/premium-pricing-table.php:1000
|
4006 |
msgid "Duration"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: widgets/premium-pricing-table.php:190
|
4010 |
msgid "Icon List"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: widgets/premium-pricing-table.php:218 widgets/premium-pricing-table.php:484
|
4014 |
+
#: widgets/premium-pricing-table.php:1098
|
4015 |
msgid "Features"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: widgets/premium-pricing-table.php:223
|
4019 |
msgid "List Item #1"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: widgets/premium-pricing-table.php:227
|
4023 |
msgid "List Item #2"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: widgets/premium-pricing-table.php:231
|
4027 |
msgid "List Item #3"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: widgets/premium-pricing-table.php:304
|
4031 |
msgid "Get Started"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: widgets/premium-pricing-table.php:383 widgets/premium-pricing-table.php:507
|
4035 |
+
#: widgets/premium-pricing-table.php:1569
|
4036 |
msgid "Badge"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: widgets/premium-pricing-table.php:393
|
4040 |
msgid "Popular"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: widgets/premium-pricing-table.php:872
|
4044 |
msgid "Unset"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: widgets/premium-pricing-table.php:1170
|
4048 |
msgid "Spacing"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: widgets/premium-pricing-table.php:1183
|
4052 |
msgid "Vertical Spacing"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: widgets/premium-pricing-table.php:1381
|
4056 |
msgid "Hover Text Color"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: widgets/premium-pricing-table.php:1603
|
4060 |
msgid "Vertical Distance"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: widgets/premium-pricing-table.php:1619
|
4064 |
+
#: widgets/premium-pricing-table.php:1638
|
4065 |
msgid "Horizontal Distance"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: widgets/premium-pricing-table.php:1689
|
4069 |
msgid "Box Settings"
|
4070 |
msgstr ""
|
4071 |
|
4283 |
msgid "Bottom Icon Position"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: widgets/premium-title.php:58
|
4287 |
msgid "Premium Title"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: widgets/premium-title.php:74
|
4291 |
msgid "Style 4"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: widgets/premium-title.php:75
|
4295 |
msgid "Style 5"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: widgets/premium-title.php:76
|
4299 |
msgid "Style 6"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: widgets/premium-title.php:77
|
4303 |
msgid "Style 7"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: widgets/premium-title.php:92
|
4307 |
msgid "Font Awesome Icon"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: widgets/premium-title.php:155
|
4311 |
msgid "Stripe Width (PX)"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: widgets/premium-title.php:174
|
4315 |
msgid "Stripe Height (PX)"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: widgets/premium-title.php:193
|
4319 |
msgid "Stripe Top Spacing (PX)"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: widgets/premium-title.php:208
|
4323 |
msgid "Stripe Bottom Spacing (PX)"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: widgets/premium-title.php:224
|
4327 |
+
msgid "Stripe Alignment"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: widgets/premium-title.php:347 widgets/premium-title.php:378
|
4331 |
msgid "Line Color"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: widgets/premium-title.php:396
|
4335 |
msgid "Triangle Color"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: widgets/premium-title.php:414
|
4339 |
msgid "Stripe Color"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: widgets/premium-title.php:457
|
4343 |
msgid "Icon Style"
|
4344 |
msgstr ""
|
4345 |
|
4347 |
msgid "Video Type"
|
4348 |
msgstr ""
|
4349 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4350 |
#: widgets/premium-videobox.php:85 widgets/premium-videobox.php:108
|
4351 |
msgid "Embed URL"
|
4352 |
msgstr ""
|
4376 |
msgid "Show/hide player controls"
|
4377 |
msgstr ""
|
4378 |
|
|
|
|
|
|
|
|
|
4379 |
#: widgets/premium-videobox.php:169
|
4380 |
msgid "This will play the video muted"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: widgets/premium-videobox.php:175
|
4384 |
+
msgid "Autoplay"
|
4385 |
+
msgstr ""
|
4386 |
+
|
4387 |
+
#: widgets/premium-videobox.php:192
|
4388 |
msgid "Start Time"
|
4389 |
msgstr ""
|
4390 |
|
4391 |
+
#: widgets/premium-videobox.php:194
|
4392 |
msgid "Specify a start time (in seconds)"
|
4393 |
msgstr ""
|
4394 |
|
4395 |
+
#: widgets/premium-videobox.php:203
|
4396 |
msgid "End Time"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: widgets/premium-videobox.php:205
|
4400 |
msgid "Specify an end time (in seconds)"
|
4401 |
msgstr ""
|
4402 |
|
4403 |
+
#: widgets/premium-videobox.php:214
|
4404 |
msgid "Suggested Videos From"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
+
#: widgets/premium-videobox.php:217
|
4408 |
msgid "Current Channel"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: widgets/premium-videobox.php:218
|
4412 |
msgid "Any Channel"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
+
#: widgets/premium-videobox.php:228
|
4416 |
msgid "Aspect Ratio"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: widgets/premium-videobox.php:265
|
4420 |
msgid "Choose an image for the video box"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
+
#: widgets/premium-videobox.php:279 widgets/premium-videobox.php:285
|
4424 |
+
#: widgets/premium-videobox.php:430
|
4425 |
msgid "Play Icon"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: widgets/premium-videobox.php:293 widgets/premium-videobox.php:373
|
4429 |
msgid "Horizontal Position (%)"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: widgets/premium-videobox.php:310 widgets/premium-videobox.php:356
|
4433 |
msgid "Vertical Position (%)"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: widgets/premium-videobox.php:335 widgets/premium-videobox.php:558
|
4437 |
msgid "Video Text"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: widgets/premium-videobox.php:345
|
4441 |
msgid "Play Video"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: widgets/premium-videobox.php:533
|
4445 |
msgid "Hover Animation"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: widgets/premium-videobox.php:535
|
4449 |
msgid ""
|
4450 |
"Hover animation works only when you set a background color or image for play "
|
4451 |
"icon"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: widgets/premium-videobox.php:542
|
4455 |
msgid "Hover Padding"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: widgets/premium-vscroll.php:81 widgets/premium-vscroll.php:116
|
4459 |
msgid "Section ID"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: widgets/premium-vscroll.php:82
|
4463 |
msgid "Elementor Templates"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: widgets/premium-vscroll.php:85
|
4467 |
msgid "Choose which method you prefer to insert sections."
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: widgets/premium-vscroll.php:136
|
4471 |
msgid "Dots Tooltips"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: widgets/premium-vscroll.php:144
|
4475 |
msgid "Shape"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: widgets/premium-vscroll.php:147
|
4479 |
msgid "Circles"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: widgets/premium-vscroll.php:148
|
4483 |
msgid "Lines"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: widgets/premium-vscroll.php:159
|
4487 |
msgid "Dots Tooltips Text"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: widgets/premium-vscroll.php:162
|
4491 |
msgid "Add text for each navigation dot separated by ','"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: widgets/premium-vscroll.php:173
|
4495 |
msgid "Navigation"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: widgets/premium-vscroll.php:179 widgets/premium-vscroll.php:576
|
4499 |
msgid "Navigation Menu"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: widgets/premium-vscroll.php:181
|
4503 |
msgid "This option works only on the frontend"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: widgets/premium-vscroll.php:202
|
4507 |
msgid "Offset Top"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: widgets/premium-vscroll.php:216
|
4511 |
msgid "Offset Left"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: widgets/premium-vscroll.php:231
|
4515 |
msgid "Offset Right"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: widgets/premium-vscroll.php:248
|
4519 |
msgid "List Item"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: widgets/premium-vscroll.php:256
|
4523 |
msgid "Menu Items"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: widgets/premium-vscroll.php:268
|
4527 |
msgid "Dots Horizontal Position"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: widgets/premium-vscroll.php:280
|
4531 |
msgid "Dots Vertical Position"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: widgets/premium-vscroll.php:295
|
4535 |
msgid "Scroll Settings"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: widgets/premium-vscroll.php:301
|
4539 |
msgid "Scroll Speed"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: widgets/premium-vscroll.php:303
|
4543 |
msgid "Set scolling speed in seconds, default: 0.7"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: widgets/premium-vscroll.php:309
|
4547 |
msgid "Full Section Scroll"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: widgets/premium-vscroll.php:317
|
4551 |
msgid "Save to Browser History"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: widgets/premium-vscroll.php:319
|
4555 |
msgid ""
|
4556 |
"Enabling this option will save the current section ID to the browser history"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: widgets/premium-vscroll.php:326
|
4560 |
+
msgid "Enable Full Section Scroll on Touch Devices"
|
4561 |
+
msgstr ""
|
4562 |
+
|
4563 |
+
#: widgets/premium-vscroll.php:357
|
4564 |
msgid "Tooltips"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: widgets/premium-vscroll.php:366
|
4568 |
msgid "Tooltips Text Color"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: widgets/premium-vscroll.php:395
|
4572 |
msgid "Tooltips Background"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: widgets/premium-vscroll.php:486
|
4576 |
msgid "Dots Color"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: widgets/premium-vscroll.php:500
|
4580 |
msgid "Active Dot Color"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: widgets/premium-vscroll.php:514
|
4584 |
msgid "Dots Border Color"
|
4585 |
msgstr ""
|
|
|
|
|
|
|
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 3.7.
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -14,12 +14,12 @@ License: GNU General Public License v3.0
|
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
-
define('PREMIUM_ADDONS_VERSION', '3.7.
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
-
define('PREMIUM_ADDONS_STABLE_VERSION', '3.7.
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 3.7.4
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
+
define('PREMIUM_ADDONS_VERSION', '3.7.4');
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
+
define('PREMIUM_ADDONS_STABLE_VERSION', '3.7.3');
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate Link: https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_c
|
|
5 |
Requires at Least: 4.5
|
6 |
Tested Up To: 5.2.2
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable Tag: 3.7.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -174,6 +174,13 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
174 |
|
175 |
== Changelog ==
|
176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
= 3.7.3 =
|
178 |
|
179 |
- Tweak: Improved plugin security.
|
5 |
Requires at Least: 4.5
|
6 |
Tested Up To: 5.2.2
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable Tag: 3.7.4
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
174 |
|
175 |
== Changelog ==
|
176 |
|
177 |
+
= 3.7.4 =
|
178 |
+
|
179 |
+
- Tweak: Added Normal/Hover options for navigation arrows in Carousel widget.
|
180 |
+
- Tweak: Added `srcset` and `width` attributes to image in Person widget.
|
181 |
+
- Tweak: Load Google maps API script only if API key is set.
|
182 |
+
- Fixed: Console error `PremiumProSettings is not defined`
|
183 |
+
|
184 |
= 3.7.3 =
|
185 |
|
186 |
- Tweak: Improved plugin security.
|
widgets/premium-carousel.php
CHANGED
@@ -8,6 +8,7 @@ use Elementor\Widget_Base;
|
|
8 |
use Elementor\Controls_Manager;
|
9 |
use Elementor\Repeater;
|
10 |
use Elementor\Scheme_Color;
|
|
|
11 |
|
12 |
if( ! defined( 'ABSPATH' ) ) exit; // No access of directly access
|
13 |
|
@@ -551,42 +552,7 @@ class Premium_Carousel extends Widget_Base {
|
|
551 |
'toggle' => false
|
552 |
]
|
553 |
);
|
554 |
-
|
555 |
-
$this->add_control('premium_carousel_arrow_style',
|
556 |
-
[
|
557 |
-
'label' => __( 'Style', 'premium-addons-for-elementor' ),
|
558 |
-
'type' => Controls_Manager::SELECT,
|
559 |
-
'default' => 'default',
|
560 |
-
'options' => [
|
561 |
-
'default' => __( 'Default', 'premium-addons-for-elementor' ),
|
562 |
-
'circle-bg' => __( 'Circle Background', 'premium-addons-for-elementor' ),
|
563 |
-
'square-bg' => __( 'Square Background', 'premium-addons-for-elementor' ),
|
564 |
-
'circle-border' => __( 'Circle border', 'premium-addons-for-elementor' ),
|
565 |
-
'square-border' => __( 'Square border', 'premium-addons-for-elementor' ),
|
566 |
-
],
|
567 |
-
'condition' => [
|
568 |
-
'premium_carousel_navigation_show' => 'yes'
|
569 |
-
]
|
570 |
-
]
|
571 |
-
);
|
572 |
|
573 |
-
$this->add_control('premium_carousel_arrow_color',
|
574 |
-
[
|
575 |
-
'label' => __( 'Color', 'premium-addons-for-elementor' ),
|
576 |
-
'type' => Controls_Manager::COLOR,
|
577 |
-
'scheme' => [
|
578 |
-
'type' => Scheme_Color::get_type(),
|
579 |
-
'value' => Scheme_Color::COLOR_2,
|
580 |
-
],
|
581 |
-
'condition' => [
|
582 |
-
'premium_carousel_navigation_show' => 'yes'
|
583 |
-
],
|
584 |
-
'selectors' => [
|
585 |
-
'{{WRAPPER}} .premium-carousel-wrapper .slick-arrow' => 'color: {{VALUE}};',
|
586 |
-
],
|
587 |
-
]
|
588 |
-
);
|
589 |
-
|
590 |
$this->add_responsive_control('premium_carousel_arrow_size',
|
591 |
[
|
592 |
'label' => __( 'Size', 'premium-addons-for-elementor' ),
|
@@ -608,86 +574,139 @@ class Premium_Carousel extends Widget_Base {
|
|
608 |
],
|
609 |
]
|
610 |
);
|
611 |
-
|
612 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
[
|
614 |
-
'label' => __( '
|
615 |
'type' => Controls_Manager::COLOR,
|
616 |
'scheme' => [
|
617 |
'type' => Scheme_Color::get_type(),
|
618 |
-
'value' => Scheme_Color::
|
619 |
],
|
620 |
'condition' => [
|
621 |
-
'
|
622 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
'selectors' => [
|
624 |
-
'{{WRAPPER}} .
|
625 |
-
'{{WRAPPER}} .premium-carousel-wrapper .square-bg' => 'background: {{VALUE}};',
|
626 |
],
|
627 |
]
|
628 |
);
|
629 |
-
|
630 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
631 |
[
|
632 |
-
'label' => __( '
|
633 |
'type' => Controls_Manager::COLOR,
|
634 |
'scheme' => [
|
635 |
'type' => Scheme_Color::get_type(),
|
636 |
-
'value' => Scheme_Color::
|
637 |
],
|
638 |
'condition' => [
|
639 |
-
'
|
640 |
],
|
641 |
-
'selectors'
|
642 |
-
'{{WRAPPER}} .premium-carousel-wrapper .
|
643 |
-
'{{WRAPPER}} .premium-carousel-wrapper .circle-border' => 'border: solid {{VALUE}};',
|
644 |
],
|
645 |
]
|
646 |
);
|
647 |
-
|
648 |
-
|
649 |
[
|
650 |
-
'label'
|
651 |
-
'type'
|
652 |
-
'default' => [
|
653 |
-
'size' => 1,
|
654 |
-
],
|
655 |
-
'range' => [
|
656 |
-
'px' => [
|
657 |
-
'min' => 0,
|
658 |
-
'max' => 60
|
659 |
-
],
|
660 |
-
],
|
661 |
-
'condition' => [
|
662 |
-
'premium_carousel_arrow_style' => [ 'circle-border', 'square-border' ]
|
663 |
-
],
|
664 |
'selectors' => [
|
665 |
-
'{{WRAPPER}} .
|
666 |
-
'{{WRAPPER}} .premium-carousel-wrapper .circle-border' => 'border-width: {{SIZE}}{{UNIT}};',
|
667 |
],
|
668 |
]
|
669 |
);
|
670 |
-
|
671 |
-
$this->
|
|
|
672 |
[
|
673 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
'type' => Controls_Manager::SLIDER,
|
675 |
-
'
|
676 |
-
'px' => [
|
677 |
-
'min' => -50,
|
678 |
-
'max' => 1,
|
679 |
-
],
|
680 |
-
],
|
681 |
-
'condition' => [
|
682 |
-
'premium_carousel_navigation_show' => 'yes',
|
683 |
-
'premium_carousel_slider_type' => 'horizontal'
|
684 |
-
],
|
685 |
'selectors' => [
|
686 |
-
'{{WRAPPER}} .
|
687 |
-
'{{WRAPPER}} .premium-carousel-wrapper a.carousel-arrow.carousel-prev' => 'left: {{SIZE}}px',
|
688 |
]
|
689 |
]
|
690 |
-
|
|
|
|
|
|
|
|
|
691 |
|
692 |
$this->end_controls_section();
|
693 |
|
@@ -874,21 +893,7 @@ class Premium_Carousel extends Widget_Base {
|
|
874 |
} else {
|
875 |
$vertical_alignment = "carousel-arrow";
|
876 |
}
|
877 |
-
|
878 |
-
$arrow_class = ' circle-bg';
|
879 |
-
}
|
880 |
-
if( $settings['premium_carousel_arrow_style'] == 'square-bg' ) {
|
881 |
-
$arrow_class = ' square-bg';
|
882 |
-
}
|
883 |
-
if( $settings['premium_carousel_arrow_style'] == 'square-border' ) {
|
884 |
-
$arrow_class = ' square-border';
|
885 |
-
}
|
886 |
-
if( $settings['premium_carousel_arrow_style'] == 'circle-border' ) {
|
887 |
-
$arrow_class = ' circle-border';
|
888 |
-
}
|
889 |
-
if( $settings['premium_carousel_arrow_style'] == 'default' ) {
|
890 |
-
$arrow_class = '';
|
891 |
-
}
|
892 |
if( $settings['premium_carousel_slider_type'] == 'vertical' ) {
|
893 |
$icon_next = $settings['premium_carousel_arrow_icon_next_ver'];
|
894 |
if( $icon_next == 'right_arrow_bold' ) {
|
@@ -959,9 +964,9 @@ class Premium_Carousel extends Widget_Base {
|
|
959 |
}
|
960 |
}
|
961 |
|
962 |
-
$next_arrow = '<a type="button" data-role="none" class="'. $vertical_alignment .' carousel-next
|
963 |
|
964 |
-
$left_arrow = '<a type="button" data-role="none" class="'. $vertical_alignment .' carousel-prev
|
965 |
|
966 |
$nextArrow = $next_arrow;
|
967 |
$prevArrow = $left_arrow;
|
@@ -1086,7 +1091,6 @@ class Premium_Carousel extends Widget_Base {
|
|
1086 |
var vertical = 'vertical' === settings.premium_carousel_slider_type ? true : false,
|
1087 |
slidesOnDesk = settings.premium_carousel_responsive_desktop,
|
1088 |
slidesToScroll = 1,
|
1089 |
-
arrowClass = '',
|
1090 |
iconNextClass = '',
|
1091 |
iconPrevClass = '',
|
1092 |
dotIcon = '',
|
@@ -1141,22 +1145,6 @@ class Premium_Carousel extends Widget_Base {
|
|
1141 |
verticalAlignment = "carousel-arrow";
|
1142 |
}
|
1143 |
|
1144 |
-
if( 'circle-bg' === settings.premium_carousel_arrow_style ) {
|
1145 |
-
arrowClass = ' circle-bg';
|
1146 |
-
}
|
1147 |
-
if( 'square-bg' === settings.premium_carousel_arrow_style ) {
|
1148 |
-
arrowClass = ' square-bg';
|
1149 |
-
}
|
1150 |
-
if( 'square-border' === settings.premium_carousel_arrow_style ) {
|
1151 |
-
arrowClass = ' square-border';
|
1152 |
-
}
|
1153 |
-
if( 'circle-border' === settings.premium_carousel_arrow_style ) {
|
1154 |
-
arrowClass = ' circle-border';
|
1155 |
-
}
|
1156 |
-
if( 'default' === settings.premium_carousel_arrow_style ) {
|
1157 |
-
arrowClass = '';
|
1158 |
-
}
|
1159 |
-
|
1160 |
if( 'vertical' === settings.premium_carousel_slider_type ) {
|
1161 |
|
1162 |
var iconNext = settings.premium_carousel_arrow_icon_next_ver;
|
@@ -1234,9 +1222,9 @@ class Premium_Carousel extends Widget_Base {
|
|
1234 |
}
|
1235 |
|
1236 |
|
1237 |
-
var next_arrow = '<a type="button" data-role="none" class="'+ verticalAlignment +' carousel-next
|
1238 |
|
1239 |
-
var left_arrow = '<a type="button" data-role="none" class="'+ verticalAlignment +' carousel-prev
|
1240 |
|
1241 |
var nextArrow = next_arrow,
|
1242 |
prevArrow = left_arrow;
|
8 |
use Elementor\Controls_Manager;
|
9 |
use Elementor\Repeater;
|
10 |
use Elementor\Scheme_Color;
|
11 |
+
use Elementor\Group_Control_Border;
|
12 |
|
13 |
if( ! defined( 'ABSPATH' ) ) exit; // No access of directly access
|
14 |
|
552 |
'toggle' => false
|
553 |
]
|
554 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
$this->add_responsive_control('premium_carousel_arrow_size',
|
557 |
[
|
558 |
'label' => __( 'Size', 'premium-addons-for-elementor' ),
|
574 |
],
|
575 |
]
|
576 |
);
|
577 |
+
|
578 |
+
$this->add_responsive_control('premium_carousel_arrow_position',
|
579 |
+
[
|
580 |
+
'label' => __('Position (PX)', 'premium-addons-for-elementor'),
|
581 |
+
'type' => Controls_Manager::SLIDER,
|
582 |
+
'range' => [
|
583 |
+
'px' => [
|
584 |
+
'min' => -100,
|
585 |
+
'max' => 100,
|
586 |
+
],
|
587 |
+
],
|
588 |
+
'condition' => [
|
589 |
+
'premium_carousel_navigation_show' => 'yes',
|
590 |
+
'premium_carousel_slider_type' => 'horizontal'
|
591 |
+
],
|
592 |
+
'selectors' => [
|
593 |
+
'{{WRAPPER}} a.carousel-arrow.carousel-next' => 'right: {{SIZE}}px',
|
594 |
+
'{{WRAPPER}} a.carousel-arrow.carousel-prev' => 'left: {{SIZE}}px',
|
595 |
+
]
|
596 |
+
]
|
597 |
+
);
|
598 |
+
|
599 |
+
$this->start_controls_tabs('premium_button_style_tabs');
|
600 |
+
|
601 |
+
$this->start_controls_tab('premium_button_style_normal',
|
602 |
+
[
|
603 |
+
'label' => __('Normal', 'premium-addons-for-elementor'),
|
604 |
+
]
|
605 |
+
);
|
606 |
+
|
607 |
+
$this->add_control('premium_carousel_arrow_color',
|
608 |
[
|
609 |
+
'label' => __( 'Color', 'premium-addons-for-elementor' ),
|
610 |
'type' => Controls_Manager::COLOR,
|
611 |
'scheme' => [
|
612 |
'type' => Scheme_Color::get_type(),
|
613 |
+
'value' => Scheme_Color::COLOR_2,
|
614 |
],
|
615 |
'condition' => [
|
616 |
+
'premium_carousel_navigation_show' => 'yes'
|
617 |
],
|
618 |
+
'selectors' => [
|
619 |
+
'{{WRAPPER}} .premium-carousel-wrapper .slick-arrow' => 'color: {{VALUE}};',
|
620 |
+
],
|
621 |
+
]
|
622 |
+
);
|
623 |
+
|
624 |
+
$this->add_control('premium_carousel_arrow_bg_color',
|
625 |
+
[
|
626 |
+
'label' => __( 'Background Color', 'premium-addons-for-elementor' ),
|
627 |
+
'type' => Controls_Manager::COLOR,
|
628 |
'selectors' => [
|
629 |
+
'{{WRAPPER}} a.carousel-arrow.carousel-next, {{WRAPPER}} a.carousel-arrow.carousel-prev' => 'background-color: {{VALUE}};',
|
|
|
630 |
],
|
631 |
]
|
632 |
);
|
633 |
+
|
634 |
+
$this->add_group_control(
|
635 |
+
Group_Control_Border::get_type(),
|
636 |
+
[
|
637 |
+
'name' => 'premium_carousel_arrows_border_normal',
|
638 |
+
'selector' => '{{WRAPPER}} .slick-arrow',
|
639 |
+
]
|
640 |
+
);
|
641 |
+
|
642 |
+
$this->add_control('premium_carousel_arrows_radius_normal',
|
643 |
+
[
|
644 |
+
'label' => __('Border Radius', 'premium-addons-for-elementor'),
|
645 |
+
'type' => Controls_Manager::SLIDER,
|
646 |
+
'size_units' => ['px', '%' ,'em'],
|
647 |
+
'selectors' => [
|
648 |
+
'{{WRAPPER}} .slick-arrow' => 'border-radius: {{SIZE}}{{UNIT}};'
|
649 |
+
]
|
650 |
+
]
|
651 |
+
);
|
652 |
+
|
653 |
+
$this->end_controls_tab();
|
654 |
+
|
655 |
+
$this->start_controls_tab('premium_carousel_arrows_hover',
|
656 |
+
[
|
657 |
+
'label' => __('Hover', 'premium-addons-for-elementor'),
|
658 |
+
]
|
659 |
+
);
|
660 |
+
|
661 |
+
$this->add_control('premium_carousel_hover_arrow_color',
|
662 |
[
|
663 |
+
'label' => __( 'Color', 'premium-addons-for-elementor' ),
|
664 |
'type' => Controls_Manager::COLOR,
|
665 |
'scheme' => [
|
666 |
'type' => Scheme_Color::get_type(),
|
667 |
+
'value' => Scheme_Color::COLOR_2,
|
668 |
],
|
669 |
'condition' => [
|
670 |
+
'premium_carousel_navigation_show' => 'yes'
|
671 |
],
|
672 |
+
'selectors' => [
|
673 |
+
'{{WRAPPER}} .premium-carousel-wrapper .slick-arrow:hover' => 'color: {{VALUE}};',
|
|
|
674 |
],
|
675 |
]
|
676 |
);
|
677 |
+
|
678 |
+
$this->add_control('premium_carousel_arrow_hover_bg_color',
|
679 |
[
|
680 |
+
'label' => __( 'Background Color', 'premium-addons-for-elementor' ),
|
681 |
+
'type' => Controls_Manager::COLOR,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
'selectors' => [
|
683 |
+
'{{WRAPPER}} a.carousel-arrow.carousel-next:hover, {{WRAPPER}} a.carousel-arrow.carousel-prev:hover' => 'background-color: {{VALUE}};',
|
|
|
684 |
],
|
685 |
]
|
686 |
);
|
687 |
+
|
688 |
+
$this->add_group_control(
|
689 |
+
Group_Control_Border::get_type(),
|
690 |
[
|
691 |
+
'name' => 'premium_carousel_arrows_border_hover',
|
692 |
+
'selector' => '{{WRAPPER}} .slick-arrow:hover',
|
693 |
+
]
|
694 |
+
);
|
695 |
+
|
696 |
+
$this->add_control('premium_carousel_arrows_radius_hover',
|
697 |
+
[
|
698 |
+
'label' => __('Border Radius', 'premium-addons-for-elementor'),
|
699 |
'type' => Controls_Manager::SLIDER,
|
700 |
+
'size_units' => ['px', '%' ,'em'],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
701 |
'selectors' => [
|
702 |
+
'{{WRAPPER}} .slick-arrow:hover' => 'border-radius: {{SIZE}}{{UNIT}};'
|
|
|
703 |
]
|
704 |
]
|
705 |
+
);
|
706 |
+
|
707 |
+
$this->end_controls_tab();
|
708 |
+
|
709 |
+
$this->end_controls_tabs();
|
710 |
|
711 |
$this->end_controls_section();
|
712 |
|
893 |
} else {
|
894 |
$vertical_alignment = "carousel-arrow";
|
895 |
}
|
896 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
897 |
if( $settings['premium_carousel_slider_type'] == 'vertical' ) {
|
898 |
$icon_next = $settings['premium_carousel_arrow_icon_next_ver'];
|
899 |
if( $icon_next == 'right_arrow_bold' ) {
|
964 |
}
|
965 |
}
|
966 |
|
967 |
+
$next_arrow = '<a type="button" data-role="none" class="'. $vertical_alignment .' carousel-next" aria-label="Next" role="button" style=""><i class="'.$icon_next_class.'" aria-hidden="true"></i></a>';
|
968 |
|
969 |
+
$left_arrow = '<a type="button" data-role="none" class="'. $vertical_alignment .' carousel-prev" aria-label="Next" role="button" style=""><i class="'.$icon_prev_class.'" aria-hidden="true"></i></a>';
|
970 |
|
971 |
$nextArrow = $next_arrow;
|
972 |
$prevArrow = $left_arrow;
|
1091 |
var vertical = 'vertical' === settings.premium_carousel_slider_type ? true : false,
|
1092 |
slidesOnDesk = settings.premium_carousel_responsive_desktop,
|
1093 |
slidesToScroll = 1,
|
|
|
1094 |
iconNextClass = '',
|
1095 |
iconPrevClass = '',
|
1096 |
dotIcon = '',
|
1145 |
verticalAlignment = "carousel-arrow";
|
1146 |
}
|
1147 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1148 |
if( 'vertical' === settings.premium_carousel_slider_type ) {
|
1149 |
|
1150 |
var iconNext = settings.premium_carousel_arrow_icon_next_ver;
|
1222 |
}
|
1223 |
|
1224 |
|
1225 |
+
var next_arrow = '<a type="button" data-role="none" class="'+ verticalAlignment +' carousel-next" aria-label="Next" role="button" style=""><i class="' + iconNextClass + '" aria-hidden="true"></i></a>';
|
1226 |
|
1227 |
+
var left_arrow = '<a type="button" data-role="none" class="'+ verticalAlignment +' carousel-prev" aria-label="Next" role="button" style=""><i class="' + iconPrevClass + '" aria-hidden="true"></i></a>';
|
1228 |
|
1229 |
var nextArrow = next_arrow,
|
1230 |
prevArrow = left_arrow;
|
widgets/premium-person.php
CHANGED
@@ -9,6 +9,7 @@ use Elementor\Control_Media;
|
|
9 |
use Elementor\Controls_Manager;
|
10 |
use Elementor\Scheme_Color;
|
11 |
use Elementor\Scheme_Typography;
|
|
|
12 |
use Elementor\Group_Control_Typography;
|
13 |
use Elementor\Group_Control_Css_Filter;
|
14 |
|
@@ -61,6 +62,15 @@ class Premium_Person extends Widget_Base {
|
|
61 |
'label_block' => true
|
62 |
]
|
63 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
$this->add_responsive_control('premium_person_image_width',
|
66 |
[
|
@@ -89,29 +99,6 @@ class Premium_Person extends Widget_Base {
|
|
89 |
]
|
90 |
);
|
91 |
|
92 |
-
$this->add_responsive_control('premium_person_image_height',
|
93 |
-
[
|
94 |
-
'label' => __('Height', 'premium-addons-for-elementor'),
|
95 |
-
'type' => Controls_Manager::SLIDER,
|
96 |
-
'description' => __('Choose image height in (PX, EM)', 'premium-addons-for-elementor'),
|
97 |
-
'size_units' => ['px', "em", "vh"],
|
98 |
-
'range' => [
|
99 |
-
'px' => [
|
100 |
-
'min' => 1,
|
101 |
-
'max' => 900,
|
102 |
-
],
|
103 |
-
'em' => [
|
104 |
-
'min' => 1,
|
105 |
-
'max' => 55,
|
106 |
-
],
|
107 |
-
],
|
108 |
-
'label_block' => true,
|
109 |
-
'selectors' => [
|
110 |
-
'{{WRAPPER}} .premium-person-image-container img' => 'height: {{SIZE}}{{UNIT}};',
|
111 |
-
]
|
112 |
-
]
|
113 |
-
);
|
114 |
-
|
115 |
/*Hover Image Effect*/
|
116 |
$this->add_control('premium_person_hover_image_effect',
|
117 |
[
|
@@ -607,13 +594,21 @@ class Premium_Person extends Widget_Base {
|
|
607 |
$title_heading = $settings['premium_person_title_heading'];
|
608 |
|
609 |
$image_effect = $settings['premium_person_hover_image_effect'];
|
610 |
-
|
611 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
612 |
?>
|
613 |
|
614 |
<div class="premium-person-container <?php echo 'premium-person-' . $image_effect . '-effect' ?>">
|
615 |
<div class="premium-person-image-container">
|
616 |
-
|
617 |
</div>
|
618 |
<div class="premium-person-info">
|
619 |
<div class="premium-person-info-container">
|
@@ -663,12 +658,28 @@ class Premium_Person extends Widget_Base {
|
|
663 |
imageEffect = 'premium-person-' + settings.premium_person_hover_image_effect + '-effect' ;
|
664 |
|
665 |
view.addRenderAttribute('container', 'class', [ 'premium-person-container', imageEffect ] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
|
667 |
#>
|
668 |
|
669 |
<div {{{ view.getRenderAttributeString('container') }}} >
|
670 |
<div class="premium-person-image-container">
|
671 |
-
|
672 |
</div>
|
673 |
<div class="premium-person-info">
|
674 |
<div class="premium-person-info-container">
|
9 |
use Elementor\Controls_Manager;
|
10 |
use Elementor\Scheme_Color;
|
11 |
use Elementor\Scheme_Typography;
|
12 |
+
use Elementor\Group_Control_Image_Size;
|
13 |
use Elementor\Group_Control_Typography;
|
14 |
use Elementor\Group_Control_Css_Filter;
|
15 |
|
62 |
'label_block' => true
|
63 |
]
|
64 |
);
|
65 |
+
|
66 |
+
$this->add_group_control(
|
67 |
+
Group_Control_Image_Size::get_type(),
|
68 |
+
[
|
69 |
+
'name' => 'thumbnail',
|
70 |
+
'default' => 'full',
|
71 |
+
'separator' => 'none',
|
72 |
+
]
|
73 |
+
);
|
74 |
|
75 |
$this->add_responsive_control('premium_person_image_width',
|
76 |
[
|
99 |
]
|
100 |
);
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
/*Hover Image Effect*/
|
103 |
$this->add_control('premium_person_hover_image_effect',
|
104 |
[
|
594 |
$title_heading = $settings['premium_person_title_heading'];
|
595 |
|
596 |
$image_effect = $settings['premium_person_hover_image_effect'];
|
597 |
+
|
598 |
+
$image_html = '';
|
599 |
+
if ( ! empty( $settings['premium_person_image']['url'] ) ) {
|
600 |
+
$this->add_render_attribute( 'image', 'src', $settings['premium_person_image']['url'] );
|
601 |
+
$this->add_render_attribute( 'image', 'alt', Control_Media::get_image_alt( $settings['premium_person_image'] ) );
|
602 |
+
$this->add_render_attribute( 'image', 'title', Control_Media::get_image_title( $settings['premium_person_image'] ) );
|
603 |
+
|
604 |
+
$image_html = Group_Control_Image_Size::get_attachment_image_html( $settings, 'thumbnail', 'premium_person_image' );
|
605 |
+
}
|
606 |
+
|
607 |
?>
|
608 |
|
609 |
<div class="premium-person-container <?php echo 'premium-person-' . $image_effect . '-effect' ?>">
|
610 |
<div class="premium-person-image-container">
|
611 |
+
<?php echo $image_html; ?>
|
612 |
</div>
|
613 |
<div class="premium-person-info">
|
614 |
<div class="premium-person-info-container">
|
658 |
imageEffect = 'premium-person-' + settings.premium_person_hover_image_effect + '-effect' ;
|
659 |
|
660 |
view.addRenderAttribute('container', 'class', [ 'premium-person-container', imageEffect ] );
|
661 |
+
|
662 |
+
var imageHtml = '';
|
663 |
+
if ( settings.premium_person_image.url ) {
|
664 |
+
var image = {
|
665 |
+
id: settings.premium_person_image.id,
|
666 |
+
url: settings.premium_person_image.url,
|
667 |
+
size: settings.thumbnail_size,
|
668 |
+
dimension: settings.thumbnail_custom_dimension,
|
669 |
+
model: view.getEditModel()
|
670 |
+
};
|
671 |
+
|
672 |
+
var image_url = elementor.imagesManager.getImageUrl( image );
|
673 |
+
|
674 |
+
imageHtml = '<img src="' + image_url + '"/>';
|
675 |
+
|
676 |
+
}
|
677 |
|
678 |
#>
|
679 |
|
680 |
<div {{{ view.getRenderAttributeString('container') }}} >
|
681 |
<div class="premium-person-image-container">
|
682 |
+
{{{imageHtml}}}
|
683 |
</div>
|
684 |
<div class="premium-person-info">
|
685 |
<div class="premium-person-info-container">
|