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